@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

:root {
  --color-text: #232323;
  --color-primary: #980046;
  --color-secondary: #efefef;
  --color-background: #f7f7f7;
  --color-border: #c4c4c4;
}

html {
  font-size: 62.5%;
  height: auto;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: var(--color-text);
  height: auto;
  overflow: visible;
  font-weight: 400;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 1;
}
body.is__fix {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show .main {
  position: relative;
}
body.is_show .main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  z-index: 3;
}
body:after {
  content: "" !important;
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fade:after {
  opacity: 1;
}

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  font-weight: 400;
}

img {
  vertical-align: bottom;
}

input,
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}

@supports (-webkit-touch-callout: none) {
  body {
    font-size-adjust: 0.5;
    /* Safariだけ補正 */
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.jsActive {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 960px) {
  .fadein.spAnimationNone {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
}
.fadein.initial-visible {
  -webkit-transition: none;
  transition: none;
}

/* Page transition overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.page-transition-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.is-transitioning {
  pointer-events: none;
}


/* #region LAYOUT */
.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container__ic {
  display: block;
  width: 408px;
  height: auto;
  aspect-ratio: 408 / 128;
  position: absolute;
  z-index: -1;
  background-image: url(../img/ic_bg01.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.container__ic_r {
  left: calc(100% + 35px);
}
.container__ic_l {
  right: calc(100% + 35px);
}
.container__ic01 {
  top: -50px;
}
.container__ic02 {
  top: 760px;
}
.container__ic03 {
  top: 1560px;
}
.container__ic04 {
  top: 2500px;
}
@media screen and (max-width: 768px) {
  .container__ic {
    display: none;
  }
}

.pcnon {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pcnon {
    display: block !important;
  }
}

.spnon {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .spnon {
    display: none !important;
  }
}
/* #endregion */


/* #region COMMON PARTS */
.btn {
  min-width: 240px;
  height: 56px;
  padding: 0 55px;
  color: var(--color-text);
  font-size: 1.4rem;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--color-text);
  position: relative;
}
.btn:hover {
  background-color: var(--color-text);
  color: #fff;
}
.btn__text {
  font-family: inherit;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 768px) {
  .btn {
    min-width: unset;
    width: 100%;
    height: 47px;
  }
}
.btn__type_white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn__type_white:hover {
  background-color: #fff;
  color: var(--color-text);
}
.btn__type_tab {
  min-width: unset;
  height: 42px;
  padding: 0 55px 0 35px;
  background-image: url(../img/ic_tab_black.svg);
  background-repeat: no-repeat;
  background-size: 14px 11px;
  background-position: right 15px center;
}
.btn__type_tab:hover {
  background-image: url(../img/ic_tab_white.svg);
}
@media screen and (max-width: 768px) {
  .btn__type_tab {
    height: 47px;
    padding: 0 20px;
  }
}

.borderTtl {
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 2.4rem;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 768px) {
  .borderTtl {
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 2rem;
  }
}
/* #endregion */


/* #region HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px;
}
.header__logo {
  width: 105px;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.header__logoImg_type_fixed {
  display: none;
}
.header_type_top {
  background-color: transparent;
}
.header_type_top .header__logoImg_type_fixed {
  display: block;
}
.header_type_top .header__logoImg_type_normal {
  display: none;
}
.header.isScrolled2 .header__logoImg_type_fixed {
  display: none;
}
.header.isScrolled2 .header__logoImg_type_normal {
  display: block;
}
@media screen and (max-width: 960px) {
  .header {
    position: fixed;
    display: flex;
    align-items: center;
  }
  .header__inner {
    height: 87px;
    padding: 20px;
    align-items: flex-start;
  }
  .header__logo {
    width: 70px;
  }
  .header.jsActive {
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header.jsActive .header__logo {
    z-index: 3;
    visibility: visible;
    opacity: 1;
  }
  .header.jsActive .header__logoImg_type_fixed {
    display: none;
  }
  .header.jsActive .header__logoImg_type_normal {
    display: block;
  }
}

.gNav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.gNav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.gNav__item {
  position: relative;
}
.gNav__link {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.gNav__link:hover {
  opacity: 0.75;
}
.gNav__link_type_mm {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.gNav__link_type_mm::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background: url(../img/ic_arw_down_black.svg) no-repeat center center/contain;
  margin-bottom: -2px;
  margin-left: 10px;
}
.gNav__link_type_mm.jsActive::after {
  transform: rotate(180deg);
}
.gNav__link_type_btn {
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gNav__link_type_btn:hover {
  background-color: var(--color-text);
  color: #fff;
}
.header_type_top .gNav__link {
  color: #fff;
}
.header_type_top .gNav__link_type_mm::after {
  background-image: url(../img/ic_arw_down_white.svg);
}
.header_type_top .gNav__link_type_btn {
  border-color: #fff;
}
.header_type_top .gNav__link_type_btn:hover {
  background-color: #fff;
  color: var(--color-text);
  opacity: 1;
}
.isScrolled2 .gNav__link {
  color: var(--color-text);
}
.isScrolled2 .gNav__link_type_mm::after {
  background-image: url(../img/ic_arw_down_black.svg);
}
.isScrolled2 .gNav__link_type_btn {
  border-color: var(--color-text);
}
.isScrolled2 .gNav__link_type_btn:hover {
  background-color: var(--color-text);
  color: #fff;
}
@media screen and (min-width: 961px) and (max-width: 1140px) {
  .gNav__item {
    position: static;
  }
}
@media screen and (max-width: 960px) {
  .gNav {
    width: 100%;
    height: calc(100dvh - 87px);
    padding: 40px 30px 100px;
    margin-left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    position: absolute;
    left: 0;
    top: 87px;
    z-index: -2;
    overflow: scroll;
  }
  .gNav__list {
    display: block;
    border-top: 1px solid var(--color-border);
  }
  .gNav__item {
    position: relative;
    border-bottom: 1px solid var(--color-border);
  }
  .gNav__link {
    padding: 19px 0 19px 20px;
    width: 100%;
    line-height: 1;
    color: var(--color-text);
    background: url(../img/ic_nav02.svg) no-repeat left 2px center/8px;
  }
  .gNav__link::before {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url(../img/ic_arw_right_gray.svg) no-repeat center center/contain;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .gNav__link_type_mm::before {
    content: none;
  }
  .gNav__link_type_mm::after {
    content: none;
  }
  .gNav__item_type_btn {
    margin-top: 40px;
    border: none;
  }
  .gNav__link_type_btn {
    height: 50px;
    padding: 0 10px;
    font-size: 1.4rem;
    border: 1px solid var(--color-text);
    background: none;
  }
  .gNav__link_type_btn::before {
    content: none;
  }
  .header_type_top .gNav__link {
    color: var(--color-text);
  }
  .header_type_top .gNav__link_type_btn {
    border-color: var(--color-text);
  }
  .jsActive .gNav {
    display: block;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 901px) {
  .mm {
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    padding-top: 25px;
    width: 710px;
    z-index: -1;
    transition: opacity 0.3s ease-out;
    opacity: 0;
  }
  .mm.jsActive {
    visibility: visible;
    z-index: 1;
    opacity: 1;
  }
  .mm__inner {
    background-color: rgba(255, 255, 255, .7);
    padding: 20px;
    border-radius: 4px;
  }
  .mm__rowList {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .mm__rowListItem {
    width: 33.333%;
    padding: 0 20px;
    border-right: 1px solid #c9c9c9;
  }
  .mm__rowListItem:last-child {
    border-right: none;
  }
  .mm__rowListItemInner {
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .mm__rowListFig {
    width: 160px;
    font-size: 0;
    position: relative;
    overflow: hidden;
  }
  .mm__rowListImg {
    transition: transform 0.6s ease;
  }
  .mm__rowListItemInner:hover .mm__rowListFig::after {
    visibility: visible;
    opacity: 1;
  }
  .mm__rowListItemInner:hover .mm__rowListImg {
    transform: scale(1.2);
    opacity: .75;
  }
  .mm__rowListText {
    width: 26px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .mm__rowListTextEn {
    width: 8px;
    color: #afafaf;
    font-size: .8rem;
    line-height: 1;
    writing-mode: vertical-rl;
  }
  .mm__rowListTextJp {
    width: 14px;
    font-size: 1.4rem;
    line-height: 1;
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 961px) and (max-width: 1140px) {
  .mm {
    top: 60px;
  }
}
@media screen and (max-width: 960px) {
  .mm__inner {
    padding: 0;
  }
  .mm__rowListItem {
    border-top: 1px solid var(--color-border);
  }
  .mm__rowListItemInner {
    padding: 20px;
    width: 100%;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-text);
    display: flex;
    align-items: center;
    position: relative;
  }
  .mm__rowListItemInner:hover {
    opacity: 0.75;
  }
  .mm__rowListItemInner::before {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url(../img/ic_arw_right_gray.svg) no-repeat center center/contain;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mm__rowListFig,
  .mm__rowListTextEn {
    display: none;
  }
}

.ham {
  width: 40px;
  height: 40px;
  padding: 14px 5px;
  margin-left: auto;
  margin-right: -5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  cursor: pointer;
}
.ham__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.ham__bar {
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.ham__bar:nth-of-type(1) {
  top: 0;
}
.ham__bar:nth-of-type(2) {
  top: 100%;
}
.header_type_top .ham__bar {
  background-color: #fff;
}
.isScrolled .ham__bar {
  background-color: var(--color-text);
}
.jsActive .ham__bar {
  background-color: var(--color-text);
}
.jsActive .ham__bar:nth-of-type(1) {
  transform: rotate(30deg);
  top: calc(50% - .5px);
}
.jsActive .ham__bar:nth-of-type(2) {
  transform: rotate(-30deg);
  top: calc(50% - .5px);
}
@media screen and (min-width: 961px) {
  .ham {
    display: none;
  }
}
/* #endregion */


/* #region FOOTER */
.footer {
  padding: 120px 30px 15px;
  background-color: var(--color-primary);
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1060px;
}
.footer__info {
  padding-right: 120px;
  margin-right: 120px;
  min-height: 170px;
  border-right: 1px solid #ba8ca6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__logo {
  width: 136px;
}
.footer__logoLink {
  display: block;
}
.footer__logoLink:hover .footer__logoImg {
  opacity: .75;
}
.footer__logoCopy {
  margin-top: 15px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}
.footer__ex {
  margin-top: 25px;
}
.footer__exList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__exItem {
  line-height: 0;
  font-size: 0;
}
.footer__exLink {
  display: block;
  padding: 5px;
  color: inherit;
  text-decoration: none;
}
.footer__exLink:hover {
  opacity: .75;
}
.footer__exLink::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.footer__exLink_type_instagram::before {
  background-image: url(../img/ic_instagram.svg);
}
.footer__bottom {
  margin-top: 110px;
}
.footer__bottomContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottomPrivacyLink {
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.footer__bottomPrivacyLink:hover {
  text-decoration: underline;
}
.footer__bottomCopyrightText {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .footer {
    padding-top: 70px;
    padding-bottom: 20px;
  }
  .footer__info {
    padding-right: 0;
    margin-right: 0;
    min-height: unset;
    border-right: none;
  }
  .footer__logo {
    width: 120px;
  }
  .footer__logoCopy {
    margin-top: 15px;
    font-size: .9rem;
    line-height: 1.9;
  }
  .footer__ex {
    margin-top: 5px;
  }
  .footer__exLink::before {
    width: 18px;
    height: 18px;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    margin-top: 35px;
  }
  .footer__bottomContainer {
    flex-direction: column;
    justify-content: center;
  }
  .footer__bottomPrivacyLink {
    font-size: 1.2rem;
  }
  .footer__bottomCopyrightText {
    font-size: 1.2rem;
  }
}

.fNav__list {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}
.fNav__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fNav__dtLink {
  display: inline-block;
  padding-left: 24px;
  color: #fff;
  text-decoration: none;
  background: url(../img/ic_nav01.svg) no-repeat left center/12px;
}
a.fNav__dtLink:hover {
  text-decoration: underline;
}
.fNav__dd {
  margin-top: 10px;
}
.fNav__ddList {
  padding-left: 24px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.42;
}
.fNav__ddListLink {
  color: inherit;
  text-decoration: none;
}
.fNav__ddListLink:hover {
  text-decoration: underline;
}
/* #endregion */


/* #region TOP PAGE */
.top {
  overflow: hidden;
}

.topMv {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  padding: 50px;
  position: relative;
}
.topMv__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
}
.topMv__name {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .06em;
  margin-bottom: 15px;
}
.topMv__copy {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.76;
  letter-spacing: .28em;
}
.topMv__subCopy {
  color: #d8d8d8;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-top: 20px;
}
.topMv__scrollDown {
  position: absolute;
  width: 1px;
  height: 80px;
  background: rgba(234, 234, 233, 0.5);
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}
.isScrolled + .top .topMv__scrollDown {
  opacity: 0;
}
.topMv__scrollDownBar {
  content: "";
  width: 2px;
  height: 32px;
  border-radius: 99px;
  background-color: #fff;
  position: absolute;
  left: -.5px;
  top: 0;
  z-index: 2;
  animation: scrollDownBar 1.5s infinite ease-out;
}
.topMv__bg {
  --mv-bg-darkness: 0;
  --mv-bg-blur: 0px;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background: url(../img/top/mv.jpg) no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.topMv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--mv-bg-darkness);
  pointer-events: none;
  z-index: 1;
}
.topMv__bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-inline: auto;
  -webkit-filter: blur(var(--mv-bg-blur));
          filter: blur(var(--mv-bg-blur));
}
@media screen and (max-width: 768px) {
  .topMv {
    min-height: 500px;
    padding: 30px;
  }
  .topMv__inner {
    height: 350px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
  .topMv__name {
    width: 20px;
    font-size: 1.1rem;
    line-height: 1;
    writing-mode: vertical-rl;
  }
  .topMv__copy {
    width: 100px;
    font-size: 2.7rem;
    line-height: 1.85;
    writing-mode: vertical-rl;
  }
  .topMv__subCopy {
    width: 12px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .017em;
    margin: 0 10px 0 0;
    writing-mode: vertical-rl;
  }
  .topMv__scrollDown {
    height: 50px;
  }
  .topMv__scrollDownBar {
    height: 19px;
  }
}
@keyframes scrollDownBar {
  0% {
    top: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.topSection {
  padding: 180px 0;
  outline: none;
}
.topSection__inner {
  position: relative;
}
.topSection__ttl {
  padding-top: 15px;
  width: 72px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.topSection__ttlJp {
  width: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  position: relative;
}
.topSection__ttlJp::before {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  width: 1px;
  height: 102px;
  background: linear-gradient(180deg, rgba(244, 228, 234, 1) 0%, rgba(223, 213, 217, 1) 34.44%, rgba(188, 188, 188, 1) 99.97%);
}
.topSection__ttlEn {
  width: 14px;
  color: #d1d1d1;
  font-size: 1.4rem;
  line-height: 1;
  writing-mode: vertical-rl;
}
.topSection__content {
  width: 100%;
}
.topSection__innerCol {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.topSection__innerCol .topSection__content {
  width: calc(100% - 200px);
}
.topSection__innerCol--rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .topSection {
    padding: 90px 0 65px;
  }
  .topSection__ttl {
    padding-top: 15px;
    width: auto;
    justify-content: center;
    gap: 12px;
  }
  .topSection__ttlJp {
    width: auto;
    font-size: 2.5rem;
    line-height: 1.7;
  }
  .topSection__ttlJp::before {
    top: -65px;
    left: unset;
    right: 22px;
    height: 51px;
  }
  .topSection__ttlEn {
    width: 12px;
    font-size: 1.2rem;
    margin-left: -10px;
  }
  .topSection__innerCol {
    justify-content: center;
    gap: 60px;
  }
  .topSection__innerCol .topSection__content {
    width: 100%;
  }
}

.topStickyFixedTtlSection .topSection__ttlSpacer {
  display: none;
  flex: 0 0 auto;
  pointer-events: none;
}

.topStickyFixedTtlSection .topSection__ttl.is-ttl-fixed,
.topStickyFixedTtlSection .topSection__ttl.is-ttl-bottom {
  z-index: 2;
}

.topAbout {
  color: #fff;
}
.topAbout__inner {
  width: calc(50vw + 530px);
  max-width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
}
.topAbout .topSection__ttl {
  margin-top: -15px;
  margin-left: 90px;
}
.topAbout__txt {
  width: 320px;
  margin-top: 50px;
  margin-bottom: 150px;
  line-height: 1.875;
}
.topAbout__fig {
  width: calc(100% - 72px - 90px - 320px - 150px);
  min-width: 220px;
  height: 630px;
  font-size: 0;
  margin-right: auto;
  margin-left: -30px;
  position: relative;
}
.topAbout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topAbout__fig::after {
  content: "";
  display: block;
  width: 408px;
  height: auto;
  aspect-ratio: 408 / 128;
  background: url(../img/ic_bg01.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -85px;
  right: -255px;
  z-index: -1;
  opacity: .4;
}
.topAbout__fig2 {
  width: calc(100vw - 100% + 300px);
  height: 220px;
  margin-top: -110px;
  margin-right: calc(100% - 100vw);
  font-size: 0;
}
.topAbout__img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topAbout__bg {
  width: 100vw;
  height: 460px;
  background: url(../img/top/img_about03.jpg) no-repeat center center/cover;
}
.topAbout__bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 1060px) {
  .topAbout__fig {
    width: calc(100% - 72px - 90px - 320px - 90px);
  }
}
@media screen and (max-width: 768px) {
  .topAbout {
    padding: 60px 0;
  }
  .topAbout__inner {
    width: 100%;
    padding-right: 55px;
    padding-left: 55px;
    flex-direction: column;
  }
  .topAbout .topSection__ttl {
    margin: 0;
    width: 60px;
    position: absolute;
    top: 50px;
    right: 55px;
  }
  .topAbout__txt {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 35px;
    line-height: 1.875;
    order: 2;
  }
  .topAbout__fig {
    width: calc(100% - 100px + 55px);
    height: 270px;
    order: 1;
    margin-left: -55px;
    margin-right: auto;
  }
  .topAbout__fig2 {
    width: calc(100% + 55px);
    height: 140px;
    margin-top: 0;
    margin-right: -55px;
    order: 3;
  }
  .topAbout__fig::after {
    width: 204px;
    bottom: -30px;
    right: -110px;
  }
  .topAbout__bg {
    height: 175px;
  }
}

.topService {
  background: #fff;
}
.topServiceSection {
  padding-bottom: 0;
  line-height: 1.875;
}
.topSection:last-of-type {
  padding-bottom: 180px;
}
.topServiceSection .topSection__innerCol::before {
  content: "";
  display: block;
  width: 347px;
  height: auto;
  aspect-ratio: 347 / 262;
  background: url(../img/ic_bg03.png) no-repeat center center/contain;
  position: absolute;
  top: 460px;
  left: -250px;
}
.topServiceSection .topSection__innerCol--rev::before {
  transform: scaleX(-1);
  right: -280px;
  left: unset;
}
#Service02 .topSection__innerCol::before {
  top: 400px;
}
#Service03 .topSection__innerCol::before {
  top: 360px;
}
.topServiceSection__gallerySwiper {
  width: calc(50vw + 300px);
  margin-bottom: 80px;
  margin-right: calc(500px - 50vw);
  position: relative;
}
.topServiceSection .topSection__innerCol--rev .topServiceSection__gallerySwiper {
  margin-right: 0;
  margin-left: calc(500px - 50vw);
}
.topServiceSection__galleryItem {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.topServiceSection__galleryItemImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topServiceSection__galleryPagination {
  position: absolute;
  font-size: 0;
  padding: 0 20px;
  bottom: 20px !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topServiceSection .topSection__innerCol--rev .topServiceSection__galleryPagination {
  justify-content: flex-start;
}
.topServiceSection__galleryPagination .swiper-pagination-bullet {
  opacity: 1;
  width: 40px;
  height: 16px;
  padding: 5px;
  background: transparent;
  margin: 0 2px !important;
}
.topServiceSection__galleryPagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  background-color: #fff;
  opacity: 1;
  width: 100%;
  height: 1px;
  border-radius: 2px;
}
.topServiceSection__galleryPagination .swiper-pagination-bullet-active {
  padding: 4px 5px;
}
.topServiceSection__galleryPagination .swiper-pagination-bullet-active::after {
  height: 3px;
}
.topServiceSection__txtNote {
  margin-top: 20px;
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.66;
}
.topServiceSection__btnTab {
  margin-top: 30px;
}
.topServiceSection__tagBlock {
  margin-top: 40px;
  padding: 20px;
  background: var(--color-secondary);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.topServiceSection__tagBlockTtl {
  width: 145px;
}
.topServiceSection__tagList {
  width: calc(100% - 145px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.topServiceSection__tagListItm {
  padding: 0 10px;
  min-width: 60px;
  height: 28px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  border-radius: 99px;
}
.topServiceSection__block {
  margin-top: 45px;
}
.topServiceSection__blockTtl {
  padding-left: 37px;
  margin-bottom: 25px;
  font-size: 2.4rem;
  line-height: 1.5;
  background: url(../img/ic_nav02.svg) no-repeat left 7px top 14px/14px;
}
.topServiceSection__blockList {
  border-top: 1px dashed #edc0dd;
}
.topServiceSection__blockListItm {
  padding: 30px 0 30px 30px;
  line-height: 1.875;
  border-bottom: 1px dashed #edc0dd;
}
.topServiceSection__blockListItmTtl {
  position: relative;
}
.topServiceSection__blockListItmTtl .num {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 2px;
  font-size: 1.4rem;
  font-style: normal;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 99px;
  position: absolute;
  left: -30px;
  top: 6px;
}
.topServiceSection__boxWrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.topServiceSection__box {
  width: calc(50% - 10px);
  padding: 30px;
  line-height: 1.875;
  border-radius: 5px;
  border: 1px solid var(--color-border);
}
.topServiceSection__box--full {
  width: 100%;
}
.topServiceSection__boxTtl {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.topServiceSection__boxTtl::after {
  content: "";
  display: block;
  width: 27px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.topServiceSection__boxDl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
.topServiceSection__boxDt {
  width: 50%;
}
.topServiceSection__boxDd {
  width: 50%;
  text-align: right;
}
.topServiceSection__boxDotTxt {
  position: relative;
  padding-left: 16px;
  line-height: 1.875;
}
.topServiceSection__boxDotTxt::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 13px;
}
.topServiceSection__boxNoteList {
  margin-top: 15px;
}
.topServiceSection__boxNoteListItm {
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.66;
}
.topServiceSection__boxTxt {
  line-height: 1.875;
}
.topServiceSection__boxTxt .underline {
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.topServiceSection__boxTxt .underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  bottom: 2px;
  left: 0;
}
.topServiceSection__blockDotListWrap {
  margin-left: 30px;
}
.topServiceSection__boxBlock {
  margin-top: 15px;
  padding: 12px 20px 15px;
  background: var(--color-secondary);
  border-radius: 5px;
}
.topServiceSection__boxBlockTtl {
  line-height: 1.875;
  margin-top: 5px;
}
.topServiceSection__boxBlockTxt {
  line-height: 1.875;
}
.topServiceSection__boxFlow {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.topServiceSection__boxFlowItm {
  width: calc(25% - 15px);
}
.topServiceSection__boxFlowTtl {
  margin-bottom: 20px;
  text-align: center;
}
.topServiceSection__boxFlowFig {
  margin-bottom: 20px;
  height: 98px;
  text-align: center;
}
.topServiceSection__boxFlowImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topServiceSection__boxFlowTxt {
  font-size: 1.4rem;
  line-height: 1.7;
}
.topServiceSection__btnWrap {
  margin: 60px auto 0;
  text-align: center;
}
.topServiceSection .topSection__innerCol::after {
  content: "";
  display: block;
  width: 408px;
  height: auto;
  aspect-ratio: 408 / 128;
  background: url(../img/ic_bg01.svg) no-repeat center center/contain;
  position: absolute;
}
#Service01 .topSection__innerCol::after {
  bottom: 290px;
  left: -300px;
}
#Service02 .topSection__innerCol::after {
  bottom: 30px;
  right: -310px;
}
#Service03 .topSection__innerCol::after {
  bottom: -45px;
  left: -325px;
}
@media screen and (max-width: 1060px) {
  .topServiceSection__gallerySwiper {
    width: calc(100% + 30px);
    margin-right: -30px;
  }
  .topServiceSection .topSection__innerCol--rev .topServiceSection__gallerySwiper {
    margin-right: 0;
    margin-left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSection {
    padding-top: 105px;
    padding-bottom: 0;
  }
  .topSection:last-of-type {
    padding-bottom: 70px;
  }
  .topServiceSection .topSection__innerCol::before {
    width: 174px;
    top: 55px;
    left: unset;
    right: calc(50% + 65px);
  }
  .topServiceSection .topSection__innerCol--rev::before {
    right: unset;
    left: calc(50% + 80px);
  }
  #Service02 .topSection__innerCol::before {
    top: 60px;
  }
  #Service03 .topSection__innerCol::before {
    top: 30px;
  }
  .topServiceSection__gallerySwiper {
    width: calc(100% + 30px);
    margin-bottom: 35px;
    margin-right: -30px;
  }
  .topServiceSection .topSection__innerCol--rev .topServiceSection__gallerySwiper {
    margin-right: 0;
    margin-left: -30px;
  }
  .topServiceSection__galleryItem {
    height: 173px;
  }
  .topServiceSection__galleryPagination {
    padding: 0 16px;
    bottom: 16px !important;
  }
  .topServiceSection__galleryPagination .swiper-pagination-bullet {
    width: 23px;
    height: 9px;
    padding: 4px;
    margin: 0 !important;
  }
  .topServiceSection__galleryPagination .swiper-pagination-bullet-active {
    padding: 3px 4px;
  }
  .topServiceSection__txtNote {
    margin-top: 15px;
    font-size: 1.2rem;
    line-height: 1.66;
  }
  .topServiceSection__btnTab {
    margin-top: 25px;
    margin-bottom: 5px;
  }
  .topServiceSection__tagBlock {
    margin-top: 25px;
    padding: 25px;
  }
  .topServiceSection__tagBlockTtl {
    width: 100%;
    margin-bottom: 10px;
  }
  .topServiceSection__tagList {
    width: 100%;
    gap: 7px;
  }
  .topServiceSection__tagListItm {
    padding: 0 7px;
    min-width: 42px;
    height: 26px;
    font-size: 1.4rem;
  }
  .topServiceSection__block {
    margin-top: 35px;
  }
  .topServiceSection__blockTtl {
    padding-left: 30px;
    margin-bottom: 25px;
    font-size: 2rem;
    background-position: left 6px top 9px;
    background-size: 12px;
  }
  .topServiceSection__blockListItm {
    padding: 16px 0 16px 39px;
    line-height: 1.56;
  }
  .topServiceSection__blockListItmTtl {
    margin-bottom: 8px;
  }
  .topServiceSection__blockListItmTtl .num {
    width: 20px;
    height: 20px;
    padding-bottom: 2px;
    font-size: 1.25rem;
    left: -35px;
    top: 2px;
  }
  .topServiceSection__boxWrap {
    gap: 16px;
  }
  .topServiceSection__box {
    width: 100%;
    padding: 25px;
    line-height: 1.56;
    border-radius: 3px;
  }
  .topServiceSection__boxTtl {
    margin-bottom: 25px;
  }
  .topServiceSection__boxTtl::after {
    width: 30px;
    height: 1px;
    bottom: -12px;
  }
  .topServiceSection__boxDotTxt {
    padding-left: 14px;
    line-height: 1.56;
  }
  .topServiceSection__boxDotTxt::before {
    width: 4px;
    height: 4px;
    top: 10px;
  }
  .topServiceSection__boxTxt + .topServiceSection__boxDotTxt,
  .topServiceSection__boxDotTxt + .topServiceSection__boxTxt {
    margin-top: 5px;
  }
  .topServiceSection__boxDotTxt--mtsp {
    margin-top: 10px;
  }
  .topServiceSection__boxNoteList {
    margin-top: 12px;
  }
  .topServiceSection__boxTxt {
    line-height: 1.56;
  }
  .topServiceSection__boxTxt .underline::after {
    bottom: -1px;
  }
  .topServiceSection__blockDotListWrap {
    margin-left: 16px;
  }
  .topServiceSection__boxBlock {
    margin-top: 15px;
    padding: 12px 20px 15px;
    border-radius: 3px;
  }
  .topServiceSection__boxBlockTtl {
    line-height: 1.56;
    margin-top: 5px;
  }
  .topServiceSection__boxBlockTxt {
    line-height: 1.56;
  }
  .topServiceSection__boxFlow {
    flex-direction: column;
    gap: 20px;
  }
  .topServiceSection__boxFlowItm {
    width: 100%;
  }
  .topServiceSection__boxFlowTtl {
    margin-bottom: 10px;
    text-align: left;
  }
  .topServiceSection__boxFlowDtl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .topServiceSection__boxFlowFig {
    width: 70px;
    height: 70px;
    margin: 0 15px 0 0;
  }
  .topServiceSection__boxFlowTxt {
    width: calc(100% - 70px - 15px);
    font-size: 1.4rem;
    line-height: 1.42;
  }
  .topServiceSection__btnWrap {
    margin: 40px auto 0;
  }
  .topServiceSection .topSection__innerCol::after {
    content: none;
  }
}

.topProfile {
  padding-top: 165px;
  padding-bottom: 145px;
  color: #fff;
  background: url(../img/top/img_profile02.jpg) no-repeat center center/cover;
}
.topProfile .topSection__ttl {
  margin-top: -15px;
}
.topProfile .topSection__innerCol {
  flex-direction: row-reverse;
  position: relative;
}
.topProfile__texts {
  width: 360px;
  margin-left: auto;
}
.topProfile__copy {
  font-size: 2.4rem;
  line-height: 1.66; 
}
.topProfile__txt {
  margin: 40px 0 30px;
  line-height: 1.875;
}
.topProfile__name {
  font-size: 2rem;
}
.topProfile__nameSub {
  font-size: 1.2rem;
  margin-right: 1em;
}
.topProfile__nameInner {
  padding-right: 20px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.topProfile__nameInner::before {
  content: "";
  display: block;
  width: calc(360px - 100%);
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 100%;
}
.topProfile__list {
  margin-top: 20px;
}
.topProfile__listItem {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.topProfile__listItem::before {
  content: "・";
}
.topProfile__fig {
  width: calc(100% - 200px - 360px - 110px);
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1060px) {
  .topProfile__fig {
    width: calc(100% - 200px - 360px - 30px);
  }
}
@media screen and (max-width: 768px) {
  .topProfile {
    padding: 65px 25px;
  }
  .topProfile .topSection__ttl {
    width: 60px;
    position: absolute;
    top: 40px;
    right: 0;
  }
  .topProfile .topSection__innerCol {
    justify-content: flex-start;
    gap: 35px;
  }
  .topProfile .topSection__content {
    order: 3;
  }
  .topProfile__texts {
    width: 100%;
  }
  .topProfile__copy {
    font-size: 2rem;
    line-height: 1.5; 
  }
  .topProfile__txt {
    margin: 20px 0;
    line-height: 1.875;
  }
  .topProfile__name {
    font-size: 2rem;
  }
  .topProfile__nameSub {
    font-size: 1.2rem;
    margin-right: 1em;
  }
  .topProfile__nameInner {
    padding-right: 18px;
    display: flex;
  }
  .topProfile__nameInner::before {
    width: calc(100% - 163px);
    left: unset;
    right: 0;
  }
  .topProfile__list {
    margin-top: 15px;
  }
  .topProfile__fig {
    width: calc(100% - 100px + 55px);
    height: auto;
    aspect-ratio: 22 / 27;
    border-radius: 0 3px 3px 0;
    overflow: hidden;
    position: relative;
    order: 1;
    margin-left: -55px;
    margin-right: auto;
  }
  .topProfile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

.topGallery {
  background-color: var(--color-background);
}
.topGallery__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0;
}
.topGallery__inner {
  width: calc( (100% - 8px) / 3 );
  height: 960px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px;
}
.topGallery__fig {
  width: 100%;
  overflow: hidden;
}
.topGallery__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.topGallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.topGallery__link:hover .topGallery__img {
  transform: scale(1.1);
}
.topGallery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-inline: auto;
}
.topGallery__fig01 {
  height: 208px;
}
.topGallery__fig02 {
  height: 244px;
}
.topGallery__fig03 {
  height: 500px;
}
.topGallery__fig04 {
  height: 400px;
}
.topGallery__fig05 {
  width: calc(45% - 2px);
  height: 277px;
}
.topGallery__fig06 {
  width: calc(55% - 2px);
  height: 277px;
}
.topGallery__fig07 {
  height: 275px;
}
.topGallery__fig08 {
  height: 734px;
}
.topGallery__fig09 {
  height: 224px;
}
@media screen and (max-width: 768px) {
  .topGallery__wrap {
    gap: 2px;
  }
  .topGallery__inner {
    width: calc(50% - 2px);
    height: 545px;
    gap: 2px;
  }
  .topGallery__fig01 {
    height: 181px;
  }
  .topGallery__fig03 {
    height: 200px;
  }
  .topGallery__fig04 {
    height: 160px;
  }
  .topGallery__fig05 {
    width: calc(45% - 1px);
    height: 114px;
  }
  .topGallery__fig06 {
    width: calc(55% - 1px);
    height: 114px;
  }
  .topGallery__fig08 {
    height: 295px;
  }
  .topGallery__fig09 {
    height: 132px;
  }
}

.lightbox {
  position: fixed!important;
  top: 50vh!important;
  transform: translateY(-50%);
}

.topFaq {
  background-color: var(--color-background);
}
.topFaq__dl {
  border-bottom: 1px solid var(--color-border);
}
.topFaq__dl:first-of-type {
  border-top: 1px solid var(--color-border);
}
.topFaq__dt,
.topFaq__dd {
  padding: 30px 0 30px 60px;
  line-height: 1.85;
  position: relative;
}
.topFaq__dt {
  border-bottom: 1px dashed var(--color-border);
}
.topFaq__dt::before,
.topFaq__dd::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  padding-bottom: 2px;
  position: absolute;
  top: calc(50% - 17.5px);
  left: 0;
  width: 35px;
  height: 35px;
  border: 1px solid #686868;
}
.topFaq__dt::before {
  content: "Q";
  color: #686868;
}
.topFaq__dd::before {
  content: "A";
  color: #fff;
  background-color: #686868;
}
@media screen and (max-width: 768px) {
  .topFaq__dt,
  .topFaq__dd {
    padding: 15px 0 15px 50px;
    line-height: 1.56;
  }
  .topFaq__dt::before,
  .topFaq__dd::before {
    font-size: 1.25rem;
    padding-bottom: 1px;
    top: calc(50% - 12.5px);
    width: 25px;
    height: 25px;
  }
  .topFaq .topSection__ttl::before,
  .topFaq .topSection__ttl::after {
    content: "";
    position: absolute;
    width: 204px;
    height: auto;
    aspect-ratio: 204 / 64;
    background: url(../img/ic_bg01.svg) no-repeat center center/contain;
  }
  .topFaq .topSection__ttl::before {
    top: -40px;
    left: calc(50% + 87px);
  }
  .topFaq .topSection__ttl::after {
    top: 115px;
    right: calc(50% + 60px);
  }
}

.topAccess {
  background: #fff;
}
.topAccess__dl {
  padding: 35px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
}
.topAccess__dl:first-of-type {
  border-top: 1px solid var(--color-border);
}
.topAccess__dt {
  width: 130px;
  line-height: 1.7;
}
.topAccess__dd {
  width: calc(100% - 130px);
}
.topAccess__ddTxt {
  line-height: 1.7;
}
.topAccess__ddmap {
  margin: 30px 0;
  width: 100%;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
}
.topAccess__ddBtn {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .topAccess__dl {
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .topAccess__dt {
    width: 68px;
  }
  .topAccess__dd {
    width: calc(100% - 68px);
  }
  .topAccess__ddmap {
    margin: 10px 0 15px;
    height: 110px;
    border-radius: 3px;
  }
  .topAccess__ddBtn {
    margin-bottom: 3px;
  }
  .topAccess .topSection__ttl::before,
  .topAccess .topSection__ttl::after {
    content: "";
    position: absolute;
    width: 204px;
    height: auto;
    aspect-ratio: 204 / 64;
    background: url(../img/ic_bg01.svg) no-repeat center center/contain;
  }
  .topAccess .topSection__ttl::before {
    top: -50px;
    left: calc(50% + 75px);
  }
  .topAccess .topSection__ttl::after {
    top: 90px;
    right: calc(50% + 62px);
  }
}

.topCvt {
  background: url(../img/top/img_cvt01.jpg) no-repeat center center/cover;
  position: relative;
}
.topCvt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  min-width: calc(290px + 30px + 200px);
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.topCvt .topSection__inner {
  position: relative;
  z-index: 2;
}
.topCvt .topSection__inner::before,
.topCvt .topSection__inner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: auto;
  aspect-ratio: 200 / 90;
  background: url(../img/ic_bg02.svg) no-repeat center center/contain;
}
.topCvt .topSection__inner::before {
  top: -140px;
  left: -190px;
}
.topCvt .topSection__inner::after {
  bottom: -70px;
  right: -155px;
}
.topCvt__inner {
  width: 280px;
}
.topCvt__ttl {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 50px;
}
.topCvt__txt {
  color: #fff;
  line-height: 2.25;
  margin-bottom: 60px;
  margin-right: -20px;
}
.topCvt__btn {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topCvt {
    padding: 90px 0;
  }
  .topCvt::before {
    width: 100%;
    height: 100%;
    min-width: unset;
  }
  .topCvt .topSection__inner::before,
  .topCvt .topSection__inner::after {
    width: 100px;
  }
  .topCvt .topSection__inner::before {
    top: -75px;
    left: -13px;
  }
  .topCvt .topSection__inner::after {
    bottom: -90px;
    right: -50px;
  }
  .topCvt__inner {
    width: 100%;
  }
  .topCvt__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .topCvt__txt {
    line-height: 1.875;
    margin-bottom: 25px;
    margin-right: 0;
    text-align: center;
  }
}
/* #endregion */


/* #region PAGE */
.lowPage {
  padding: 190px 0 180px;
  overflow: hidden;
}
.lowPage__contents {
  position: relative;
}
.lowPage__header {
  width: 100%;
  padding-left: 200px;
  margin-bottom: 120px;
}
.lowPage__headerHero {
  width: 100%;
  height: 392px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/bg_page_head.jpg) no-repeat center center/cover;
}
.lowPage__ttl {
  font-size: 4rem;
  color: #fff;
  text-align: center;
}
.lowPage__main .container {
  max-width: 960px;
}
@media screen and (max-width: 1400px) {
  .lowPage__header {
    padding-left: calc(50vw - 500px);
  }
}
@media screen and (max-width: 1060px) {
  .lowPage__header {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .lowPage {
    padding: 110px 0 100px;
  }
  .lowPage__header {
    margin-bottom: 40px;
  }
  .lowPage__headerHero {
    height: 110px;
  }
  .lowPage__ttl {
    font-size: 2rem;
  }
}
/* #endregion */


/* #region CONTACT */
.pageContact .lowPage__headerHero {
  background-image: url(../img/contact/bg_page_head.jpg);
}

.contact__telBlock {
  padding: 45px;
  margin-bottom: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #c4c4c4;
}
.contact__telBlockTexts {
  width: calc(100% - 324px - 50px);
}
.contact__telBlockTtl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact__telTime {
  font-size: 1.4rem;
}
.contact__telNumber {
  display: block;
  width: 324px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 324 / 32;
  color: inherit;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  text-decoration: none;
  padding-left: 45px;
  font-size: 0;
  line-height: 0;
  background: url(../img/contact/txt_tel.svg) no-repeat center/contain;
}
a.contact__telNumber:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .contact__telBlock {
    padding: 20px 25px;
    margin-bottom:35px;
    display: block;
  }
  .contact__telBlockTexts {
    width: 100%;
    margin-bottom: 15px;
  }
  .contact__telBlockTtl {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .contact__telTime {
    font-size: 1.1rem;
  }
  .contact__telNumber {
    width: 100%;
  }
}

.contact__intro {
  line-height: 1.85;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact__intro {
    line-height: 1.56;
    margin-bottom: 30px;
  }
}

.contactForm {
  position: relative;
}
.contactForm__detail .contactForm__dl:first-of-type {
  border-top: 1px solid var(--color-border);
}
.contactForm__dl {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.contactForm__dl_is_hide {
  display: none;
}
.contactForm__dt {
  width: 325px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactForm__dt_type_req:after {
  content: "必須";
  width: 35px;
  height: 22px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  line-height: 1;
  font-weight: 700;
  padding: 1px 0 2px;
  letter-spacing: .1em;
}
.contactForm__dd {
  width: calc(100% - 325px);
  line-height: 1.85;
  position: relative;
}
.contactForm__dtSm {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-top: 3px;
}
.contactForm__ddCol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contactForm__ddColText {
  width: 30px;
}
.contactForm_type_conf .contactForm__dl {
  padding: 30px 0;
}
.contactForm_type_conf .contactForm__dt {
  width: 270px;
}
.contactForm_type_conf .contactForm__dd {
  width: calc(100% - 270px);
}
@media screen and (max-width: 768px) {
  .contactForm__dl {
    padding: 20px 0 25px;
  }
  .contactForm__dt {
    width: 100%;
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  .contactForm__dt_type_req:after {
    margin-left: 10px;
    font-size: 1rem;
    width: 28px;
    height: 17px;
    border-radius: 2px;
    padding-bottom: 1px;
    position: relative;
    top: 1px;
  }
  .contactForm__dd {
    width: 100%;
    line-height: 1.56;
  }
  .contactForm__ddCol {
    gap: 8px;
  }
  .contactForm__ddColText {
    width: 1em;
  }
  .contactForm_type_conf .contactForm__dl {
    padding: 20px 0;
  }
  .contactForm_type_conf .contactForm__dt {
    width: 100%;
    margin-bottom: 12px;
  }
  .contactForm_type_conf .contactForm__dd {
    width: 100%;
  }
}

.contactForm__select {
  width: 100%;
  max-width: 365px;
  padding: 16px 20px 17px;
  border: 1px solid var(--color-border);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/icon_arrow_bottom.svg) right 20px center no-repeat;
  background-size: 13px 11px;
  background-color: #efefef;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  line-height: 1.85;
  font-size: 1.6rem;
}
.contactForm__select__date {
  max-width: 110px;
}
.contactForm__text {
  width: 100%;
  padding: 16px 20px 17px;
  background-color: #efefef;
  border: 1px solid var(--color-border);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  line-height: 1.85;
  font-size: 1.6rem;
}
.contactForm__text::-webkit-input-placeholder {
  color: #727272;
}
.contactForm__text::-moz-placeholder {
  color: #727272;
}
.contactForm__text:-ms-input-placeholder {
  color: #727272;
}
.contactForm__text::-ms-input-placeholder {
  color: #727272;
}
.contactForm__text::placeholder {
  color: #727272;
}
.contactForm__body {
  padding: 15px 20px;
  width: 100%;
  background-color: #efefef;
  border: 1px solid var(--color-border);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 180px;
  color: inherit;
  font-family: inherit;
  line-height: 1.85;
  font-size: 1.6rem;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .contactForm__select {
    max-width: none;
    background-size: 9px 8px;
    background-position: right 15px center;
  }
  .contactForm__select__date {
    max-width: 72px;
    padding: 16px 14px 17px;
    font-size: 1.4rem;
  }
  .contactForm__text {
    max-width: none;
  }
  .contactForm__body {
    height: 140px;
  }
}

.contactForm__radioList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contactForm__radioList_item {
  width: calc(25% - 15px);
  min-width: calc(4em + 30px);
}
.contactForm__radioList_item:nth-child(4n) {
  width: calc(25% - 35px);
}
.contactForm__radioList_input {
  display: none;
}
.contactForm__radioList_label {
  padding-left: 30px;
  position: relative;
}
.contactForm__radioList_label::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: #efefef;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
}
.contactForm__radioList_input:checked + .contactForm__radioList_label::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: #727272;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 6px);
  left: 5px;
}
@media only screen and (max-width: 768px) {
  .contactForm__radioList_item {
    width: calc(33.33% - 15px);
    min-width: calc(4em + 30px);
  }
  .contactForm__radioList_item:nth-child(4n) {
    width: calc(33.33% - 15px);
  }
  .contactForm__radioList_item:nth-child(3n) {
    width: calc(33.33% - 30px);
  }
}

.contactForm__dd .form-err {
  margin-top: 10px;
  color: #f00;
}

.contactForm__privacy {
  margin-top: 70px;
  text-align: center;
}
.contactForm__privacyLink {
  color: inherit;
  text-decoration: underline;
}
.contactForm__privacyLink:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contactForm__privacy {
    line-height: 1.56;
    margin-top: 35px;
    text-align: center;
  }
}

.contactForm__recaptcha {
  width: 100%;
  text-align: center;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .contactForm__recaptcha {
    margin: 25px auto 0;
  }
}
.contactForm__recaptcha .g-recaptcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contactForm__recaptcha .form-err-recaptcha {
  margin-top: 10px;
  color: #f00;
  text-align: center;
}

.contactForm__bts {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.contactForm__btsButtonWrap {
  position: relative;
  min-width: 290px;
}
.contactForm__btsButtonWrap:hover .contactForm__btsButton {
  background-color: var(--color-text);
  color: #fff;
}
.contactForm__btsButtonWrap_type_submit,
.contactForm__btsButtonWrap_type_submit .contactForm__btsButton {
  background-color: var(--color-text);
  color: #fff;
}
.contactForm__btsButtonWrap_type_submit:hover,
.contactForm__btsButtonWrap_type_submit:hover .contactForm__btsButton {
  background-color: #fff;
  color: var(--color-text);
}
.contactForm_type_conf .contactForm__btsButtonWrap {
  min-width: 210px;
}
@media screen and (max-width: 768px) {
  .contactForm__bts {
    margin-top: 40px;
    gap: 20px;
  }
  .contactForm__btsItem {
    width: 100%;
  }
  .contactForm__btsItem_type_back {
    order: 2;
  }
  .contactForm__btsItem_type_submit {
    order: 1;
  }
  .contactForm__btsButtonWrap {
    min-width: unset;
  }
  .contactForm_type_conf .contactForm__btsButtonWrap {
    min-width: unset;
  }
}

.contactThanks__ttl {
  margin-bottom: 50px;
  padding-bottom: 25px;
}
.contactThanks__desc {
  font-size: 1.6rem;
  line-height: 2;
}
.contactThanks__return {
  margin-top: 70px;
}
.contactThanks .container__ic01 {
  top: -30px;
}
.contactThanks .container__ic02 {
  top: 200px;
}
@media screen and (max-width: 768px) {
  .contactThanks__ttl {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .contactThanks__return {
    margin-top: 40px;
  }
}
/* #endregion */


/* #region PRIVACY POLICY */
.pagePrivacyPolicy .lowPage__headerHero {
  background-image: url(../img/privacypolicy/bg_page_head.jpg);
}
.privacy__intro {
  line-height: 1.875;
  margin-bottom: 30px;
}
.privacy__ol {
  list-style: none;
  counter-reset: number 0;
}
.privacy__olItem {
  display: flex;
  counter-increment: number 1;
  line-height: 1.875;
}
.privacy__olItem:before {
  content: counter(number) ".";
  margin-right: 5px;
}
* + .privacySection {
  margin-top: 70px;
}
.privacySection__desc {
  line-height: 1.875;
}
.privacySection__desc a {
  color: var(--color-text);
  text-decoration: underline;
}
.privacySection__desc a:hover {
  text-decoration: none;
}
.privacySection__list {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
}
.privacySection__item {
  line-height: 1.875;
  display: flex;
}
.privacySection__item:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--color-text);
  position: relative;
  top: 13px;
  margin-right: 10px;
}
.privacySection__note {
  margin-top: 10px;
  line-height: 1.875;
}
.pagePrivacyPolicy .container__ic01 {
  top: -60px;
}
.pagePrivacyPolicy .container__ic02 {
  top: 660px;
}
.pagePrivacyPolicy .container__ic03 {
  top: 1620px;
}
@media screen and (max-width: 768px) {
  .privacy__intro {
    margin-bottom: 20px;
  }
  * + .privacySection {
    margin-top: 50px;
  }
  .privacySection__list {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .privacySection__item:before {
    width: 4px;
    height: 4px;
    margin-right: 10px;
  }
}
/* #endregion */


/* #region 404 NOT FOUND */
.errorPage__ttl {
  margin-bottom: 50px;
  padding-bottom: 25px;
}
.errorPage__desc {
  font-size: 1.6rem;
  line-height: 2;
}
.errorPage__return {
  margin-top: 70px;
}
.pageError404 .container__ic01 {
  top: -80px;
}
.pageError404 .container__ic02 {
  top: 220px;
}
@media screen and (max-width: 768px) {
  .errorPage__ttl {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .errorPage__return {
    margin-top: 40px;
  }
}
/* #endregion */


/* #region FixedBnr */
.fixedBnr {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
}
.fixedBnr .fixedBnr_link {
  display: block;
  text-decoration: none;
}
.fixedBnr .fixedBnr_link:hover {
  opacity: .7;
}
.fixedBnr .fixedBnr_fig {
  width: 224px;
  display: block;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}
.fixedBnr .fixedBnr_img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
.fixedBnr .fixedBnr_close {
  cursor: pointer;
  position: absolute;
  top: -13px;
  right: -13px;
  width: 26px;
  height: 26px;
  display: block;
  background: url(../img/bnr_close1.svg) no-repeat center center/contain;
  font-size: 0;
  line-height: 0;
}
.fixedBnr .fixedBnr_close:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .fixedBnr {
    bottom: calc(85px + 100% - 100lvh);
    right: 16px;
  }
  .fixedBnr .fixedBnr_fig {
    width: 143px;
  }
  .fixedBnr .fixedBnr_close {
    top: -9px;
    right: -9px;
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) and (max-height: 500px) {
  .fixedBnr {
    bottom: calc(85px + 100lvh - 500px);
  }
}
@media screen and (max-width: 768px) and (max-height: 430px) {
  .fixedBnr {
    bottom: 16px;
  }
}
/* #endregion */


/* #region Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: none;
}
.modal * {
  box-sizing: border-box;
}
.modalOver {
  width: 100%;
  height: 100%;
  background-color: #56002b;
  opacity: .8;
  position: absolute;
  top: 0;
  left: 0;
}
.modalWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 600px;
  width: 90%;
}
.modalBox {
  padding: 60px 30px;
  position: relative;
  background: #fff;
}
.modalClose {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/bnr_close2.svg) no-repeat center/22px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.modalClose:hover {
  opacity: .7;
}
.modalTtl {
  font-size: 2.8rem;
  line-height: 1.57;
  text-align: center;
}
.modalContents {
  margin-top: 30px;
}
.modalContentsFig {
  max-width: 224px;
  margin: 0 auto 20px;
}
.modalContentsFig img {
  width: 100%;
  height: auto;
}
.modalContentsTxt {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
/* #endregion */
