*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-bg: #efece0;
  --color-main: #27563e;
  --color-gold: #b79f54;
  --lg-btn: linear-gradient(
    90deg,
    var(--main, #27563e) 0%,
    var(--sub, #92b482) 100%
  );
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--color-white);
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3e3a39;
  line-height: 1.2;
}

.bg {
  background-color: #f4f3ed;
}

.w_100 {
  width: 100% !important;
}

.img-txt {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
@media (max-width: 767px) {
  .img-txt {
    font-size: 10px;
    line-height: 15px;
    left: 10px;
    bottom: 5px;
  }
}

.section {
  padding: 128px 0;
  padding-bottom: 18.75vw !important;
}
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
    padding-bottom: 29.73vw !important;
  }
}

@keyframes crystalClear {
  0% {
    filter: blur(20px);
    transform: translateY(10px);
  }
  100% {
    filter: blur(0);
    transform: translateY(0);
  }
}
.animation {
  opacity: 0;
  transition: all 0.6s ease;
}
.animation.animate {
  opacity: 1;
}

.main-wrapper {
  position: relative;
}

.td-8 {
  transition-delay: 0.8s;
}

.a-blur.animate {
  animation: crystalClear 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.blur {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(10px);
}
.blur.animate {
  animation: blur 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;

  filter: blur(0);
}

.foggy-eff {
  --duration01: 4.5s;
  --duration02: 1.5s;
  /* -webkit-mask-image: url(.././img/top/mask-03.webp);
  mask-image: url(.././img/top/mask-03.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 300%;
  mask-size: 100% 300%;
  -webkit-mask-position: 60% -40%;
  mask-position: 60% -40%; */

  opacity: 1;
  transition:
    transform var(--duration02) linear,
    opacity var(--duration02) linear,
    -webkit-mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    -webkit-mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01);
  transition:
    opacity var(--duration02) linear,
    -webkit-mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    -webkit-mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01);
  transition:
    mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    opacity var(--duration02) linear;
  transition:
    mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    opacity var(--duration02) linear,
    -webkit-mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
    -webkit-mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01);
  /* transform: translateY(10px); */
}
.foggy-eff.animate {
  /* -webkit-mask-size: 300% 200%;
  mask-size: 300% 200%;
  -webkit-mask-position: 0% 85%;
  mask-position: 0% 85%; */
  opacity: 1;
  transform: translateY(0);
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes mvScroll {
  100% {
    -o-object-position: center right;
    object-position: center right;
  }
}
.animation-paused {
  animation-play-state: paused;
}

.top_btn {
  position: fixed;
  bottom: 1.56vw;
  right: 1.93vw;
  width: 4.2vw;
  /*width: 50px;
  height: 50px;*/
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .top_btn {
    bottom: 15.56vw;
    /*width: 48px;
    height: 48px;*/
    width: 10.0vw;
  }
}
.top_btn.visible {
  opacity: 1;
  visibility: visible;
}
.top_btn:hover {
  opacity: 0.75;
}
.top_btn img {
  display: block;
  width: 100%;
  height: 100%;
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

.only-sp {
  display: none;
}
@media (max-width: 767px) {
  .only-sp {
    display: block;
  }
}

.only-pc {
  display: block;
}
@media (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

.section__header {
  max-width: 1490px;
  margin-inline: auto;
  width: 100%;
  font-size: 68px;
  line-height: 73px;
  letter-spacing: 0.3em;
  font-family: "angie-sans", sans-serif;
  color: #3e3a39;
  margin-bottom: 113px;
}
@media (max-width: 767px) {
  .section__header {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 61px;
  }
}

.footer {
  position: relative;
  z-index: 20;
  background: #3e3a39;
  color: #fff;
  font-size: 14px;
  padding-block: 128px 48px;
  padding-inline: 180px;
}
@media (max-width: 991px) {
  .footer {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-inline: 5.95vw 4.22vw;
    padding-block: 64px 24px;
  }
}
.footer a {
  transition: all 0.25s ease;
}
.footer a:hover {
  opacity: 0.7;
  color: #ab895b;
}
.footer__inner {
  max-width: 1100px;
  /* margin-inline: auto; */
}
.footer__logo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer__logo-wrap {
    margin-bottom: 64px;
  }
}


.footer__u {
}

@media (min-width:768px) {
  .footer__u {
   margin-bottom: 80px;
   display: flex;
   flex-direction: row-reverse;
   align-items: stretch;
   justify-content: flex-end;
   width: 100%;
  } 


  .footer__u .footer__sub {
    flex-wrap: wrap;
    /* max-width: 100%; */
    width: 100%;
    gap: 1.51vw;
    max-width: 35.16vw;
  }

  .footer__u .footer__logo-wrap {
    flex-shrink: 0;
    max-width: 30.53vw;
    padding-top: 1.06vw;
  }

  .footer__u .footer__logo img {
    width: 100%;
  }

  .footer__u .footer__logo {
    max-width: 24.53vw;
  }

}

@media (min-width:1500px) {
  .footer__u {
   width: 110%;
  } 
}

.footer__logo {
  /* max-width: 385px; */
  width: 100%;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 301px;
    margin-bottom: 2.5vw;
  }
}
.footer__num {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  color: #fff;
  flex-wrap: wrap;
}
.footer__num:hover {
  color: #ab895b;
}
.footer__num-txt {
  font-weight: 400;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
@media (max-width: 767px) {

  .footer__num {
    flex-wrap: wrap;
  }

  .footer__num-txt {
    font-size: 3.73vw;
    /*line-height: 2;*/
    line-height: 1.7;
  }
  .footer__num .footer__num-txt:first-of-type {
    font-size: 3.73vw;
  }

}

@media (min-width:768px) {
  .footer__num .footer__num-txt:first-of-type {
    font-size: 0.94vw;
    letter-spacing: 0.1em;
    line-height: 2.1111111111;
  }
}

.footer__num-tel {
  font-weight: 500;
  font-size: 1.56vw;
  line-height: 2.2666666667;
}
@media (max-width: 767px) {
  .footer__num-tel {
    font-size: 4.8vw;
    letter-spacing: 0.6px;
    line-height: 1;
  }
}
.footer__sites {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .footer__sites {
    margin-bottom: 32px;
  }
}
.footer__sites-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.28px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .footer__sites-heading {
    font-size: 13px;
    letter-spacing: 1.04px;
    line-height: 26px;
    margin-bottom: 8px;
  }
}
.footer__sites-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 767px) {
  .footer__sites-wrap {
    margin-top: 8px;
  }
}
.footer__sites-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .footer__sites-list {
    gap: 4px;
  }
}
.footer__sites-icon {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .footer__sites-icon {
    letter-spacing: 0.48px;
    font-size: 12px;
    line-height: 17px;
  }
}
.footer__sites-list li a {
  color: #fff;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.12px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .footer__sites-list li a {
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: 17px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer__nav {
    margin-bottom: 32px;
    gap: 12px;
  }
}
.footer__nav li {
  line-height: 0;
}
.footer__nav li:first-of-type {
  padding-left: 0px;
}
.footer__nav li a {
  color: #f5f4ee;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.56px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer__nav li a {
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 15px;
  }
}
.footer__copyright {
  color: #878581;
  font-size: 12px;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.4px;
  }
}
.footer__sub {
  display: flex;
  align-items: center;
  gap: 34px;
  width: fit-content;
}

@media (max-width: 767px) {
  .footer__sub {
    flex-wrap: wrap;
    gap: 32px 64px;
  }
}

.footer__sub a {
  font-size: 1.265vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 1.51vw;
}


@media (min-width:768px) {
  
  .footer__sub a::after {
    content: "/";
    font-size: 1.265vw;
    letter-spacing: 0.15em;
    line-height: 2.6;
  }
  .footer__sub a:nth-of-type(3)::after, .footer__sub a:nth-last-of-type(1)::after {
    content: none;
  }
}

@media (max-width: 767px) { 
  .footer__sub a {
    line-height: 1;
    font-size: 4.27vw;
  }
}
.footer__sub a span {
  font-size: 1.2rem;
  line-height: 1;
}
.footer__sub-t {
  margin-top: 32px;
  margin-bottom: 64px;
}
.footer__sub-t a {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__sub-t {
    margin-bottom: 32px;
  }

  .footer__sub-t a {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.03em;
  }
  .footer__sub-t .title {
    font-size: 4.27vw;
    line-height: 2;
  }

  .footer__sub a span {
    font-size: 10px;
  }

  .footer__sub-t.m a:nth-of-type(2) {
    letter-spacing: 0.02em;
  }

    .footer__sub-t.m a:nth-of-type(5), .footer__sub-t.m a:nth-of-type(6), .footer__sub-t.m a:nth-of-type(7), .footer__sub-t.m a:nth-of-type(8) {
    font-size: 3.41vw;
  }

  .footer__sub-m a::after {
    content: none !important;
  }
}
.footer__sub-t a span {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .footer__sub-t a span {
    font-size: 1rem;
  }
}
.footer__sub-t .title {
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer__sub-t .title {
    font-size: 1.265vw;
  }
}
.footer__sub-t.m {
  margin-bottom: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 767px) {
  .footer__sub-t.m {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.footer__sub-m {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 0px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__sub-m {
    gap: 4px 24px;
    margin-top: 4px;
  }
}
.footer__sub-m a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__sub-m a::after {
  content: "/";
  font-size: 16.5px;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
}
.footer__sub-m a:last-of-type::after {
  content: none;
}

body.is-menu-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.header {
  transition: background 0.8s ease;
}

.header--scrolled {
  background-color: #f4f3ed;
  z-index: 20 !important;
}
.header--scrolled .header__logo .mgc-txt {
  opacity: 0;
  display: none;
}
.header--scrolled .mgc-norm {
  display: none;
}
.header--scrolled .mgc-black {
  display: block;
}
.header--scrolled .header__link.contact, .header--scrolled .header__links li p {
  color: #3f3a39;
}
.header--scrolled .header__toggle span {
  background-color: #3f3a39;
}

.mgc-black {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.56vw 0;
}
@media (max-width: 767px) {
  .header {
    padding: 4.05vw 0;
  }
}
.header.faq-header .header__link {
  color: #3e3a39;
}

.header.faq-header .mgc-txt {
  width: 33.13vw;
}

@media (max-width: 767px) {
  .header.faq-header .mgc-txt {
    display: block;
    width: 66.89vw;
  }

  .header__logo {
    gap: 4.46vw;
  }
}

.header.faq-header .header__toggle span {
  background-color: #3e3a39;
}
.header.faq-header:has(.header__overlay.active) .header__link {
  color: #fff;
}
.header.faq-header:has(.header__overlay.active) .header__toggle span {
  background-color: #fff;
}

.header.faq-header:has(.header__overlay.active) .mgc-white {
  display: block;
}
.header.faq-header:has(.header__overlay.active) .mgc-norm {
  display: none;
}

.header.-hidden {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2.6vw 4.17vw;
}
@media (max-width: 767px) {
  .header__nav {
    padding-inline: 4.73vw;
    gap: 15px;
  }
}
.header__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.6vw;
}
@media (max-width: 767px) {
  .header__links {
    gap: 2.297vw;
  }
}
.header__link {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  font-weight: 400;
  color: #fff;
  font-family: "angie-sans", sans-serif;
  transition: opacity 0.3s;
}

.header__links li p {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  font-weight: 400;
  color: #fff;
  font-family: "angie-sans", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header__links li p span {
  opacity: 0.5;
}

.header__links li p .selected{
  opacity: 1;
}

.header__links li p .selected:hover {
  opacity: 1;
}

.header__links li p span:hover {
  opacity: 0.7;
}

@media (max-width:767px) {
  .header-lang {
    position: absolute;
    top: 6.13vw;
    right: 16vw;
    list-style: none;
    opacity: 0;
    transition: 0.8s transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s,
    opacity 0.8s ease 0s,
    visibility 0s linear 0s;
  }

  .header-lang p {
      font-size: 3.73vw;
      line-height: 1.7391304348;
      width: 100%;
      letter-spacing: 0.1em;
      text-align: start;
      color: #fff;
  transition: all 0.3s ease;

  }

  .header__overlay.active .header-lang {
    opacity: 1;
  }

  .header-lang p span {
    opacity: 0.5;
    cursor: pointer;
  }

  .header-lang p .selected{
    opacity: 1;
  }
}

@media (min-width:768px) {
  .faq-header .header__links li p {
    color: rgb(62, 58, 57);
  }
}

.header__link:hover {
  opacity: 0.7;
}
.header__link.top {
  opacity: 1 !important;
  visibility: visible !important;
}

.header .mgc--txt-black {
  display: none;
}

.lower-page .mgc-txt {
  display: block;
  width: 68.36vw;
}

.lower-page .mgc--txt-black {
  display: none;
}

.header.header--scrolled .mgc--txt-black {
  display: block;
  opacity: 1;
}

@media (max-width: 767px) {
  .header__link {
    font-size: 2.733vw;
  }

  .header__link.top {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease;
  }
  .header__link.page {
    display: none;
    position: absolute;
  }
  .header__link.contact {
    display: none;
    position: absolute;
  }

  .mgc--txt-black {
    /* display: none !important; */
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 2.6vw;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(50, 46, 45, 0.9);
  display: flex;
  justify-content: center;
  z-index: 50;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s,
    opacity 0.5s ease 0.5s,
    visibility 0s linear 2s;
  overflow: hidden;
}
.header__overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s,
    opacity 0.8s ease 0s,
    visibility 0s linear 0s;
}
.header__overlay .header__content {
  transition: opacity 0.2s ease;
  opacity: 0;
}
@media (max-width: 767px) {
  .header__overlay .header__content {
    min-height: 100%;
    display: block;
  }
}
.header__overlay.active .header__content {
  opacity: 1;
}
.header__overlay:not(.active) .header__content {
  opacity: 0;
  transition-delay: 1.5s;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.27vw;
  height: 1.18vw;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}
@media (max-width: 767px) {
  .header__toggle {
    width: 6.05vw;
    height: 3.73vw;
  }
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 0.1vw;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .header__toggle span {
    height: 0.47vw;
  }
}
.header__toggle span:nth-child(1) {
  top: 0;
}
.header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__toggle span:nth-child(3) {
  bottom: 0;
}
.header__toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(33deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(-10px);
}
.header__toggle.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-33deg);
}
.header__container {
  max-width: 86.15vw;
  margin: 0 auto;
  padding: 12.6vw 2.6vw 0 2.6vw;
  width: 100%;
  display: block;
  overflow-y: auto;
  /* Firefox */
  scrollbar-width: none;
  /* IE and Edge */
  -ms-overflow-style: none;
}
.header__container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .header__container {
    max-height: 100%;
    max-width: 100%;
    padding: 18.115vw 5.41vw 16.22vw;
  }

  .header__menu-title.support {
    letter-spacing: 0.04em;
  }
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 35px;
  transition: opacity 0.4s ease;
  opacity: 1;
}
@media (max-width: 992px) {
  .header__content {
    flex-direction: column;
    gap: 50px;
  }
}
.header__info {
  width: 26.302vw;
  color: #fff;
  opacity: 0;
  filter: blur(10px);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__info {
    display: none;
  }
}
.header__info-title {
  font-size: 1.25vw;
  letter-spacing: 0.5em;
  line-height: 1.08;
  font-weight: 400;
  font-family: "angie-sans", sans-serif;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 34px;
  max-width: 470px;
  width: 100%;
}
.header__info-main {
  margin-bottom: 40px;
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
}
.header__info-main:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.header__info-date {
  font-size: 1.875vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-family: "source-han-serif-jp-subset", sans-serif;
  display: inline-block;
  padding: 0 10px;
}
.header__info-text {
  font-size: 1.042vw;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-family: "source-han-serif-jp-subset", sans-serif;
}
.header__info-image {
  width: 100%;
  max-width: 24.635vw;
  margin-top: 25px;
  opacity: 0;
  filter: blur(10px);
}
.header__info-image img {
  width: 100%;
  height: auto;
  display: block;
}
.header__info-list {
  list-style: none;
  padding: 0;
}
.header__info-list li span {
  margin-right: 15px;
  text-decoration: underline;
}
.header__info-list a {
  font-size: 1.042vw;
  line-height: 2.15;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "source-han-serif-jp-subset", sans-serif;
  color: #fff;
  transition: all 0.3s ease;
}
.header__info-list a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.header__menu {
  flex: 1;
  text-align: right;
}
@media (max-width: 767px) {
  .header__menu {
    width: 100%;
  }
}
.header__menu-group {
  margin-bottom: 5.21vw;
  min-width: 14.06vw;
}
@media (max-width: 767px) {
  .header__menu-group {
    margin-bottom: 8.65vw;
    min-width: 36.49vw;
  }
}
.header__menu-group span {
  display: flex;
  align-items: center;
  gap: 0.52vw;
}
@media (max-width: 767px) {
  .header__menu-group span {
    gap: 1.35vw;
  }
}
.header__menu-group span::after {
  content: "";
  background-image: url(".././img/top/arrow-r-w.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.46vw;
  height: 0.72vw;
}
@media (max-width: 767px) {
  .header__menu-group span::after {
      width: 1.68vw;
      height: 2.35vw;
  }
}
.header__menu-group span.header__menu-no-arrow::after {
  display: none;
}
.header__menu-title {
  font-size: 1.56vw;
  line-height: 1.13;
  letter-spacing: 0.1em;
  font-family: "angie-sans", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 0.4vw;
}
.header__menu-title:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header__menu-title {
    font-size: 4.8vw;
    gap: 1.08vw;
  }
}
.header__menu-title span {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
}
@media (max-width: 767px) {
  .header__menu-title span {
    font-size: 3.73vw;
    line-height: 1.5;
  }
}
.header__menu-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78vw 1.82vw;
  list-style: none;
  margin-top: 1.56vw;
  width: 84%;
}
@media (max-width: 767px) {
  .header__menu-sub {
    gap: 5.14vw 7.81vw;
    width: 100%;
    margin-bottom: 3.11vw;
    margin-top: 3.11vw;
    width: 78.6%;
  }
}
.header__menu-sub li {
  width: calc(25% - 1.365vw);
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .header__menu-sub li {
    width: calc((100% / 2) - (7.81vw * 1) / 2);
  }

  .header__menu-sub li:nth-of-type(7) a {
    letter-spacing: 0;
    text-align: start;
  }
}
.header__menu-sub li a {
  color: #ffffff;
  text-decoration: none;
font-size: 1.09vw;
letter-spacing: 0.15em;
line-height: 2.6;
  font-weight: 400;
  font-family: "angie-sans", sans-serif;
  display: flex;
  transition: all 0.3s ease;
}
.header__menu-sub li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header__menu-sub li a {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 2.86vw;
}
.header__logo-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.header__logo img {
  width: 3.44vw;
  position: relative;
  z-index: 60;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 9.05vw;
  }
}
.header__logo .mgc-txt {
  width: 31.56vw;
}

@media (max-width: 767px) {
  .lower-page .mgc-txt {
    width: 69.26vw;
  }
}
.header__menu-g-in {
  display: flex;
  align-items: flex-start;
  gap: 1.82vw;
}
.header__menu-g-in.g1 {
  gap: 1.82vw;
}
.header__menu-links {
  display: flex;
  align-items: center;
  padding-bottom: 8.33vw;
  gap: 2.19vw;
}
@media (max-width: 767px) {
  .header__menu-links {
    flex-wrap: wrap;
    gap: 4.05vw 8.11vw;
    width: 78.6%;
  }

  .header__menu-links li:last-of-type {
    width: 100%;
  }  
  .header__menu-g-in {
    gap: 2.03vw;
    flex-wrap: wrap;
  }

  .header__menu-g-in.g1 {
    gap: 2.03vw;
  }
}
.header__menu-links li {
  display: flex;
  align-items: center;
  gap: 2.19vw;
}
@media (max-width: 767px) {
  .header__menu-links li {
    width: calc(50% - 4.055vw);
  }
}
.header__menu-links li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header__menu-links li::after {
    content: none;
  }
}
.header__menu-links li:last-child::after {
  display: none;
}
.header__menu-links li a {
  color: #fff;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-family: "angie-sans", sans-serif;
}
@media (max-width: 767px) {
  .header__menu-links li a {
    font-size: 3.73vw;
    line-height: 1.7391304348;
    width: 100%;
    letter-spacing: 0.1em;
    text-align: start;
  }
}
.th .header__logo {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.th .header__logo.is-visible {
  opacity: 1;
}

@media (max-width: 767px) {
  .header:has(.header__overlay.active) .header__link.top {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.header:has(.header__overlay.active) .header__links {
  transition: all 0.5s ease;
  opacity: 0;
}

.header:has(.header__overlay.active) .mgc-txt {
  position: relative;
  z-index: 0;
}

.mgc-txt {
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .mgc-txt {
    display: none;
  }

  .header__menu-links li:last-of-type {
    /* width: 100%; */
  }
}

.header.header:has(.header__overlay.active) .mgc-txt {
  opacity: 0;
  transition: all 0.5s ease;
}

.header.header:has(.header__overlay.active) .header__logo img {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

@keyframes revealText {
  0% {
    opacity: 0;
    background-position: 100% 0;
  }
  100% {
    opacity: 1;
    background-position: 0 0;
  }
}
.u-reveal {
  position: relative;
  opacity: 0;
  display: flex;
  color: #fff;
  flex-direction: column;
  transition: opacity 0.5s ease;
}

.header__overlay.active .u-reveal {
  opacity: 1;
  animation: smooth-wipe 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: opacity 0.8s ease;
}

@keyframes smooth-wipe {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
.header__overlay.active .header__info {
  opacity: 1;
  transition: all 1s ease;
  transition-delay: 0.55s;
  filter: blur(0);
}

.header__overlay .header__info-image {
  opacity: 1;
  transition: all 1s ease;
  filter: blur(0);
}

.header__toggle:not(.is-active) ~ .header__content {
  opacity: 0;
}

.header__overlay:not(.active) .header__info,
.header__overlay:not(.active) .header__info-image {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.5s ease;
}

/* Base: hidden on desktop */
.menu-utility {
  display: none; /* stays hidden on desktop */
  align-items: stretch;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 40;
  bottom: 0;
  background-color: #f4f3ed;
  color: #332c2b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* Mobile: show the bar, but still hidden until scroll */
@media (max-width: 767px) {
  .menu-utility {
    display: flex; /* override display:none on mobile */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .menu-utility.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.menu-utility__item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4.05vw 0;
}

.menu-utility__item.img {
  /* width: 18.92vw; */
  /* background-color: #332c2b; */
  border-left: 1px solid #000;

}

.menu-utility__item.contact {
  border-left: 1px solid #000;
}

.menu-utility__item.img img {
  width: 4.864vw;
}

.menu-utility__link {
  color: #332c2b;
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: 0.2em;
  font-family: "angie-sans", sans-serif;
}

.header__link.top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.header.is-active .header__link.top {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s;
}

.btn-primary {
  width: 174px;
  height: 53px;
  background: #3e3a39;
  color: #fff;
  font-family: "angie-sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #fff;
  color: #ab895b;
}
@media (max-width: 767px) {
  .btn-primary {
    width: 91px;
    height: 41px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 0.52px;
  }
}

.login {
  padding: 405px 60px 315px;
  background: #f5f4ef;
}
@media (max-width: 767px) {
  .login {
    padding: 252px 38px 196px;
  }
}
.login__logo {
  max-width: 1036px;
  width: 100%;
  margin-inline: auto;
}
.login__wrap {
  max-width: 370px;
  width: 100%;
  margin-inline: auto;
  margin-top: 136px;
}
@media (max-width: 767px) {
  .login__wrap {
    max-width: 215px;
    margin-top: 85px;
  }
}
.login__title {
  font-weight: 400;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.58em;
  text-align: center;
  color: #333;
  margin-bottom: 62px;
  font-size: 25px;
}
@media (max-width: 767px) {
  .login__title {
    font-size: 16px;
    letter-spacing: 0.38em;
    margin-bottom: 40px;
  }
}
.login__input-group {
  margin-bottom: 46px;
  border-bottom: 1px solid #352b27;
  display: flex;
  align-items: baseline;
}
@media (max-width: 767px) {
  .login__input-group {
    margin-bottom: 30px;
  }
}
.login__input-group label {
  font-size: 18px;
  letter-spacing: 0.2em;
  font-family: "angie-sans", sans-serif;
  color: #332c2b;
  font-weight: 600;
  height: 31px;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .login__input-group label {
    font-size: 12px;
    height: 20px;
    padding-bottom: 5px;
  }
}
.login__input-group input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.2em;
  font-family: "angie-sans", sans-serif;
  color: #332c2b;
  font-weight: 600;
}
@media (max-width: 767px) {
  .login__input-group input {
    font-size: 12px;
  }
}

.faq {
  background-color: #f5f4ee;
  padding: 11.72vw 2.6vw 13.07vw;
}
@media (max-width: 767px) {
  .faq {
    padding: 39.59vw 6.76vw 15.54vw;
  }
}
.faq__block {
  max-width: 65.83vw;
  width: 100%;
  margin-inline: auto;
  margin-top: 8.7vw;
}
@media (max-width: 767px) {
  .faq__block {
    max-width: 100%;
    margin-top: 18.92vw;
  }
}
.faq__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6vw;
  margin-bottom: 5.47vw;
  max-width: 43.75vw;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .faq__nav {
    margin-bottom: 15vw;
    gap: 8.46vw;
    max-width: 100%;
  }
}
.faq__nav-item {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
  color: #332c2b;
  font-family: "source-han-serif-jp-subset", sans-serif;
}
.faq__nav-item.active {
  position: relative;
}
.faq__nav-item.active::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  position: absolute;
  bottom: -10px;
  background-color: #332c2b;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .faq__nav-item.active::after {
    bottom: -1.35vw;
  }
}
@media (max-width: 767px) {
  .faq__nav-item {
    font-size: 3.73vw;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.faq__title {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  letter-spacing: 0.03em;
  text-align: left;
  color: #332c2b;
  font-family: "angie-sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 0.05vw solid #332c2b;
  padding: 6.42vw 0 1.56vw 4.17vw;
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 4.8vw;
    line-height: 2;
    margin-bottom: 0;
    padding: 14.86vw 0 6.76vw 0;
    line-height: 1.6;
    flex-direction: column;
    align-items: center;
    gap: 2.7vw;
    text-align: center;
    letter-spacing: 0.4em;
  }
}
.faq__title.fst {
  padding-top: 0;
}
.faq__title .jp {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-family: "source-han-serif-jp-subset", sans-serif;
  margin-left: 1.3vw;
}
@media (max-width: 767px) {
  .faq__title .jp {
    font-size: 3.73vw;
    line-height: 2;
    margin-left: 0;
    line-height: 1.6;
  }
}
.faq__wrapper {
  border-bottom: 0.05vw dotted #332c2b;
  padding: 0 3.91vw 0 3.8vw;
}
@media (max-width: 767px) {
  .faq__wrapper {
    padding: 0 0 5.41vw 0;
  }
}
.faq__question {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.41vw 0 ;
  gap: 10px;
}
@media (max-width: 767px) {
  .faq__question {
    padding: 7.84vw 0 0 2.43vw;
  }
}
.faq__question-text {
  flex: 1;
  color: #332c2b;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
  font-family: "source-han-serif-jp-subset", sans-serif;
  text-align: justify;
  padding: 0px 0.78vw 0px 0px;
}
@media (max-width: 767px) {
  .faq__question-text {
    padding-inline: 0;
    font-size: 3.73vw;
    line-height: 1.25;
  }
}
.faq__que {
  color: #332c2b;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
  font-family: "source-han-serif-jp-subset", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .faq__que {
    font-size: 3.73vw;
    line-height: 4.05vw;
  }
}
.faq__icon {
  background-image: url(".././img/faq/faq-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 0.83vw;
  height: 0.42vw;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .faq__icon {
    width: 2.16vw;
    height: 1.08vw;
  }
}
.faq__icon.active {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.3s;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.2s ease-out;
   display: flex;
   align-items: center; */
  /* padding: 20px 0; */
  transition: max-height 0.4s;
}
.faq__answer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  padding-bottom: 1.04vw;
  padding-left: 1.82vw;
}
@media (max-width: 767px) {
  .faq__answer-inner {
    padding-left: 5.41vw;
    padding-top: 6.35vw;
  }
}
.faq__answer-text {
  flex: 1;
  color: #332c2b;
  font-size: 1.15vw;
  font-family: "source-han-serif-jp-subset", sans-serif;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .faq__answer-text {
    font-size: 3.73vw;
    line-height: 2;
    padding: 0;
  }
}
.faq__ans {
  color: #332c2b;
  font-size: 1.15vw;
  font-family: "source-han-serif-jp-subset", sans-serif;
  line-height: 1.61vw;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding-right: 0.83vw;
  text-align: center;
}
@media (max-width: 767px) {
  .faq__ans {
    font-size: 3.73vw;
    line-height: 2;
    padding-right: 0.68vw;
  }
}

.mv {
  position: sticky;
  height: 100dvh;
  top: 0;
}
.mv__txt {
  position: absolute;
  max-width: 41.67vw;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  display: flex;
  flex-direction: column;
  gap: 0.7vw;
}

.mv__club {
  font-size: 1.72vw;
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  line-height: 1.2727272727;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.mv__club.mt {
    margin-top: 2.19vw;
}

@media (max-width: 767px) {
  .mv__txt {
    max-width: 100%;
  }

  .mv__club {
    font-size: 4.46vw;
  }

  .mv__club.mt {
    margin-top: 3.11vw;
  }
}

.mv__txt.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.mv__txt .norm {
  transition: opacity 0.3s ease;
  /* opacity: 0; */
}

.mv__txt .load {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.mv__txt img {
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: opacity 0.3s ease; */
  padding-inline: 1.04vw;
}
@media (max-width: 767px) {
  .mv__txt img {
    padding-inline: 8.11vw;
  }
}
.mv__swiper {
  width: 100%;
  height: 100%;
  transition-timing-function: linear;
  opacity: 0;
  transition: opacity 1s ease;
}
.mv__swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv__swiper-pagination {
  left: 36.4% !important;
  bottom: 1.25vw !important;
}
@media (max-width: 767px) {
  .mv__swiper-pagination {
    bottom: 3.24vw !important;
  }
}
.mv .swiper-pagination-bullet {
  margin: 0 1.04vw !important;
}
@media (max-width: 767px) {
  .mv .swiper-pagination-bullet {
    margin: 0 2.7vw !important;
  }
}
.mv .swiper-pagination-bullet {
  background: #c8c8c3;
}
.mv .swiper-pagination-bullet-active {
  background: #fff;
  width: 8px;
  height: 8px;
}

.top .information {
  padding-block: 6.51vw 8.33vw;
}
@media (max-width: 767px) {
  .top .information {
    padding-block: 20.27vw;
  }
}
.top .information-block {
  max-width: 60.47vw;
  margin: 0 auto;
  padding: 10.42vw 0px;
}
@media (max-width: 767px) {
  .top .information-block {
    max-width: 100%;
    padding: 20.27vw 0;
  }
}
.top .information-ttl {
  font-family: "angie-sans", sans-serif;
  font-size: 1.46vw;
  line-height: 1.75;
  letter-spacing: 0.5em;
  font-weight: 400;
  padding-bottom: 0.78vw;
  border-bottom: 0.05vw solid #000000;
}
@media (max-width: 767px) {
  .top .information-ttl {
    font-size: 3.78vw;
    border-bottom: 0.14vw solid #000000;
    padding-bottom: 2.03vw;
  }
}
.top .information-box {
  margin-top: 10.42vw;
}
@media (max-width: 767px) {
  .top .information-box {
    margin-top: 20.27vw;
  }
}
.top .information-more {
  display: inline-flex;
  align-items: center;
  gap: 0.78vw;
  margin-top: 4.53vw;
  font-size: 0.94vw;
  line-height: 2.1111111111;
  letter-spacing: 0.1em;
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  color: #342c2b;
}
@media (max-width: 767px) {
  .top .information-more {
    font-size: 3.2vw;
    line-height: 1.75;
    letter-spacing: 0.3em;
    gap: 2.3vw;
    margin-top: 12.16vw;
  }
}
.top .information-more::after {
  content: "";
  background-image: url(".././img/top/arrow-r.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.36vw;
  height: 0.73vw;
}
@media (max-width: 767px) {
  .top .information-more::after {
    width: 1.08vw;
    height: 1.89vw;
  }
}
.top .information-date {
  font-size: 0.94vw;
  line-height: 2.1111111111;
}
@media (max-width: 767px) {
  .top .information-date {
    font-size: 3.2vw;
    display: block;
  }
}
.top .information-list {
  list-style-type: none;
}
.top .information-list:not(:last-of-type) {
  margin-bottom: 1.75vw;
}
.top .information-list a {
  display: inline-flex;
  align-items: flex-start;
  color: #3e3a39;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  transition: all 0.3s ease;
  flex-direction: column;
  border-bottom: 1px dotted #3e3a39;
  gap: 1.04vw;
  padding-bottom: 1.04vw;
  width: 100%;
}

.top .information-list a .txt {
  position: relative;
  padding-right: 2.6vw;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  line-height: 2;
}

.top .information-list a .txt::after {
  content: "";
  background-image: url(../img/info/allow_btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75vw;
  width: 1.04vw;
  height: 1.04vw;
}

.top .information-list.pdf a .txt::after {
  background-image: url(../img/info/PDF.svg);
}

.top .information-list.window a .txt::after {
  background-image: url(../img/info/window.svg);
}

@media (max-width: 767px) {
  .top .information-list a .txt {
    padding-right: 4vw;
    
  }

  .top .information-list a .txt::after {
    width: 2.7vw;
    height: 2.7vw;
  }

  .top .information-list a {
    font-size: 3.73vw;
    line-height: 2;
    gap: 1.35vw;
    padding-bottom: 6.08vw;
  }

  .top .information-list:not(:last-of-type) {
    margin-bottom: 6.76vw;
  }

}
.top .information-list a:hover {
  opacity: 0.75;
}
.top-row {
  display: flex;
  align-items: center;
  max-width: calc(50% + 40.63vw);
  margin-left: auto;
  gap: 4.32vw;
  height: 100%;
}
@media (max-width: 767px) {
  .top-row {
    height: unset;
    max-width: 100%;
    flex-direction: column-reverse;
    gap: 13.51vw;
  }
}
.top-img {
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .top-img {
    height: auto;
  }
}
.top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-content {
  max-width: 36.46vw;
  width: 100%;
}

@media (max-width: 767px) {
  .top-content {
    max-width: 100%;
    padding-inline: 5.95vw;
    padding-bottom: 33.78vw;
  }
}
.top-sec-ttl {
  font-size: 2.19vw;
  line-height: 1;
  font-weight: 400;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .top-sec-ttl {
    font-size: 6.93vw;
    line-height: 1.1;
    letter-spacing: 0.1em;
  }
}
.top-sec-txt {
  font-size: 1.04vw;
  font-weight: 400;
  line-height: 2.5;
  margin-top: 6.51vw;
}
@media (max-width: 767px) {
  .top-sec-txt {
    font-size: 2.7vw;
  }
}
.top-sec-btm {
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  padding-left: 15.99vw;
  margin-top: 6.46vw;
}
.top-sec-sub {
  font-size: 2.19vw;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-family: "angie-sans", sans-serif;
  margin-top: 5.21vw;
}
@media (max-width: 767px) {
  .top-sec-sub {
    font-size: 6.93vw;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
.top-linet {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  font-weight: 600;
  font-family: "source-han-serif-jp-subset", sans-serif;
  margin-top: 5.21vw;
}
@media (max-width: 767px) {
  .top-linet {
    margin-top: 27.03vw;
    font-size: 4.8vw;
    line-height: 2.1;
  }
}

.top-linet span {
  letter-spacing: -3px;
}

.top-anchor {
  font-size: 1.93vw;
  line-height: 2;
  letter-spacing: 0.3em;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1.35vw;
  margin-top: 2.6vw;
  padding-left: 15.99vw;
  cursor: pointer;
  transition: all 0.3s ease;
}
.top-anchor:hover {
  opacity: 0.7;
}
.top-anchor::before {
  content: "";
  background-image: url(".././img/top/i-chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.15vw;
  height: 1.15vw;
}

/* .mv:has(.loading-mask.is-hidden) .mv__txt .norm {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mv:has(.loading-mask.is-hidden) .mv__txt .load {
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.mv:has(.loading-mask.is-hidden) .mv__swiper {
  opacity: 1;
  transition: opacity 2s ease;
}

.experience__header {
  max-width: 83.333vw;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .experience__header {
    max-width: 100%;
    flex-direction: column;
  }
}
.experience__tabs {
  display: flex;
  gap: 3.75vw;
}
@media (max-width: 767px) {
  .experience__tabs {
    text-align: center;
    padding-inline: 8.11vw;
  }
}
.experience__tab {
  font-size: 1.302vw;
  line-height: 1.08;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.1em;
  color: #3e3a39;
  font-weight: 400;
}
@media (max-width: 767px) {
  .experience__tab {
    font-size: 3.38vw;
  }
}
.experience__tab.border {
  padding-bottom: 0.52vw;
  border-bottom: 0.1vw solid #332c2b;
}
@media (max-width: 767px) {
  .experience__tab.border {
    border-bottom: 0.14vw solid #332c2b;
    padding-bottom: 2.03vw;
  }
}
.experience__lead-en {
  font-size: 1.979vw;
  line-height: 1.07;
  letter-spacing: 0.15em;
  font-family: "angie-sans", sans-serif;
  color: #3e3a39;
  font-weight: 400;
  margin-bottom: 1.35vw;
}
@media (max-width: 767px) {
  .experience__lead-en {
    font-size: 5.64vw;
    margin-bottom: 3.38vw;
  }
}
.experience__lead-jp {
  font-size: 1.146vw;
  line-height: 1.18;
  letter-spacing: 0.5em;
  font-weight: 400;
  font-family: "source-han-serif-jp-subset", sans-serif;
  color: #3e3a39;
}
@media (max-width: 767px) {
  .experience__lead-jp {
    font-size: 3.24vw;
  }
}
.experience__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 53.13vw;
  width: 100%;
  margin-inline: auto;
  gap: 1.77vw;
  margin-top: 3.96vw;
}
@media (max-width: 767px) {
  .experience__row {
    flex-direction: column-reverse;
    max-width: 100%;
    gap: 6.76vw;
    margin-top: 5.41vw;
  }
}
@media (max-width: 767px) {
  .experience__col:first-of-type {
    padding-inline: 7.43vw;
  }
}
.experience__timeline {
  margin-top: 4.58vw;
}
@media (max-width: 767px) {
  .experience__timeline {
    margin-top: 4.59vw;
  }
}
.experience__item {
  margin-bottom: 1.25vw;
  display: flex;
}
@media (max-width: 767px) {
  .experience__item {
    margin-bottom: 4.05vw;
  }
}
.experience__time {
  font-size: 1.406vw;
  line-height: 1.33;
  letter-spacing: 0.1em;
  font-family: "source-han-serif-jp-subset", sans-serif;
  color: #3e3a39;
  font-weight: 400;
  padding-right: 1.563vw;
  border-right: 0.87px solid #333333;
  width: 5.313vw;
}
@media (max-width: 767px) {
  .experience__time {
    font-size: 2.97vw;
    width: 11.22vw;
    padding-right: 2.97vw;
    border-right: 0.14vw solid #333;
  }
}
.experience__text {
  font-size: 0.885vw;
  line-height: 1.89;
  letter-spacing: 0.041em;
  font-family: "source-han-serif-jp-subset", sans-serif;
  color: #3e3a39;
  font-weight: 400;
  padding-left: 1.563vw;
  padding-bottom: 1.61vw;
  flex: 1;
}
@media (max-width: 767px) {
  .experience__text {
    padding-left: 3.38vw;
    font-size: 2.7vw;
  }
}
.experience__image-list {
  display: flex;
  flex-direction: column;
  gap: 0.73vw;
}
@media (max-width: 767px) {
  .experience__image-list {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .philosophy .top-content {
    padding-bottom: 38.65vw;
  }
}
@media (max-width: 767px) {
  .philosophy-slider .top-sec-ttl {
    width: 100%;
    padding-left: 6.49vw;
  }
  .philosophy-slider .top-sec-btm {
    font-size: 3.24vw;
    padding-left: 9.05vw;
    margin-top: 0;
    margin-bottom: 9.46vw;
  }
  .philosophy-slider .top-sec-btm span {
    letter-spacing: 0.5em;
  }
}

@media (max-width: 767px) {
  .experince-head .top-sec-ttl {
    width: 100%;
    padding-left: 6.49vw;
  }
  .experince-head .top-sec-btm {
    font-size: 3.24vw;
    padding-left: 9.05vw;
    margin-top: 0;
    margin-bottom: 9.46vw;
  }
  .experince-head .top-sec-btm span {
    letter-spacing: 0.5em;
  }
}

.loading-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.loading-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.loading-mask::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #332c2b;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transform-origin: top;
  transition: opacity 2s ease;
}
.loading-mask.is-loaded::after {
  transform: scaleY(0);
  opacity: 0;
  transition: opacity 2s ease;
  visibility: hidden;
}
.loading-mask.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 2s ease,
    visibility 0.5s ease;
}

.prev-wrap.swiper-button-disabled,
.next-wrap.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.control {
  position: relative;
}

.prev-wrap {
  position: absolute;
  left: 5%;
  top: 49%;
  writing-mode: vertical-rl;
  font-size: 1.042vw;
  font-weight: 400;
  color: #3e3a39;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .prev-wrap {
    left: 0;
    top: 69%;
    width: 5.27vw;
    height: 10.68vw;
  }
}
.prev-wrap:hover {
  opacity: 0.7;
}

.next-wrap {
  position: absolute;
  right: 5%;
  top: 49%;
  writing-mode: vertical-rl;
  font-size: 1.042vw;
  font-weight: 400;
  color: #fff;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 99;
}
.next-wrap.-blc {
  color: #3e3a39;
}
.next-wrap:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .next-wrap {
    right: 0;
    top: 69%;
    width: 5.27vw;
    height: 10.68vw;
  }
}
.next-wrap .blc {
  display: none;
}

.philosophy-slider:has(.experience.swiper-slide-active) .next-wrap {
  color: #3e3a39;
}
.philosophy-slider:has(.experience.swiper-slide-active) .next-wrap .norm {
  display: none;
}
.philosophy-slider:has(.experience.swiper-slide-active) .next-wrap .blc {
  display: block;
}

#horizontal .swiper-slide {
  height: auto !important;
}

.facilities__block {
  max-width: calc(50% + 37.76vw);
  margin-left: auto;
  display: flex;
  align-items: stretch;
  gap: 3.65vw;
}
@media (max-width: 767px) {
  .facilities__block {
    max-width: 100%;
    flex-direction: column;
  }
}
.facilities-bg {
  position: sticky;
  top: 0;
  background-color: #332c2b;
}

@media (min-width: 768px) {
  .facilities-bg img {
    height: 28.13vw;
    object-fit: cover;
  }
}

.facilities__left {
  max-width: 34.22vw;
  width: 100%;
  padding: 0 0 5.21vw;
  /* padding: 6.25vw 0 5.21vw; */
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .facilities__left {
    max-width: 100%;
    padding: 11.35vw 0 16.76vw;
  }

  .facilities__left .top-sec-ttl {
    padding-inline: 5.95vw;
  }
}
/* .facilities__left::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  background: #f4f3ed;
  height: 100%;
  top: 0;
  right: -3.65vw;
  z-index: -1;
} */
.facilities__p {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 600;
  font-size: 1.56vw;
  line-height: 2.2666666667;
  /* letter-spacing: 0.2em; */
  color: #3f3a39;
  margin-top: 0;
  /* margin-top: 4.69vw; */
}
@media (max-width: 767px) {
  .facilities__left::after {
    right: 0;
  }

  .facilities__p {
    font-size: 4.8vw;
    padding-inline: 5.95vw 4.22vw;
    margin-bottom: 13.51vw;
    margin-top: 27.03vw;
  }
}
.facilities__link {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4.17vw 2.6vw;
  margin-top: 6.51vw;
}
@media (max-width: 767px) {
  .facilities__link {
    gap: 12.16vw 7.43vw;
    padding-inline: 5.95vw 4.22vw;
    margin-top: 13.51vw;
  }
}
.facilities__link li {
  width: calc(50% - 1.3vw);
  position: relative;
}
@media (max-width: 767px) {
  .facilities__link li {
    width: calc(50% - 3.715vw);
  }
}
.facilities__link li::after {
  content: "";
  background-image: url(".././img/top/arrow-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.36vw;
  height: 0.72vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .facilities__link li::after {
    width: 1.36vw;
    height: 1.72vw;
  }
}
.facilities__link li a {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 1.41vw;
  letter-spacing: 0.03em;
  line-height: 0.8076923077;
  color: #342c2b;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .facilities__link li a {
    font-size: 4.8vw;
  }
}

.facilities .top-sec-ttl {
  letter-spacing: 0.2em;
  line-height: 1.7;
}

@media (max-width:767px) {
  .facilities .top-sec-ttl {
    line-height: 1.5;
  }
}

@media (min-width:768px) {
  .facilities .top-sec-ttl {
    position: sticky;
    top:5.29vw;
    background-color: #f4f3ed;
    padding: 6.25vw 0 4.69vw;
    z-index: 1;
  }
}

.facilities__link li a:hover {
  opacity: 0.75;
}
.facilities__link li a span {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
}
@media (max-width: 767px) {
  .facilities__link li a span {
    font-size: 4.27vw;
  }
}

@media (max-width: 767px) {
  .facilities__right {
    display: none;
  }
}

.facilities__img {
  height: 100%;
  opacity: 1;
  visibility: visible;
  /* position: absolute;
  top: 0;
  left: 0; */
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.facilities__img.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s ease,
    visibility 0.3s ease;
}

@media (max-width: 767px) {
  .facilities__img.active {
    position: relative;
  }
}

.facilities__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.message {
  position: relative;
  z-index: 0;
}

.message .top-img {
  position: sticky;
  top: 0;
}
@media (max-width: 767px) {
  .message .top-img {
    position: unset;
  }
}
.message .top-row {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .message .top-row {
    gap: 0;
  }
}

@media (min-width: 768px) {
  .facilities__right {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .facilities {
    z-index: 0;
    position: relative;
  }

  .facilities_slider  {
    height: 100%;
  }

  .facilities_slider .swiper-slide img {
    width: 100%;
    height: 100%;
  }
}

.time {
  padding-top: 6.25vw;
  padding-bottom: 10.42vw;
}
@media (max-width: 767px) {
  .time {
    padding: 0;
    padding-top: 20.27vw;
  }
}
.time .top-sec-sub {
  margin-top: 0;
}
.time-sm-txt {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 2.29vw;
}
@media (max-width: 767px) {
  .time-sm-txt {
    margin-top: 5.41vw;
    font-size: 3.73vw;
    line-height: 2;
  }
}

.phylosophy {
  position: relative;
}
.phylosophy .top-content {
  position: relative;
  z-index: 1;
  max-width: 44.69vw;
  padding-left: 4.32vw;
}
@media (max-width: 767px) {
  .phylosophy .top-content {
    max-width: 100%;
    padding: 0;
  }
}
.phylosophy .top-row {
  flex-direction: row-reverse;
  margin-right: auto;
  margin-left: 0;
  align-items: flex-start;
  max-width: calc(50% + 44.69vw);
  gap: 0;
}
@media (max-width: 767px) {
  .phylosophy .top-row {
    flex-direction: column-reverse;
    /* gap: 14.73vw; */
    gap: 0;
    max-width: 100%;
  }
}
.phylosophy .top-img {
  position: sticky;
  top: 0;
}
@media (max-width: 767px) {
  .phylosophy .top-img {
    position: unset;
  }
}
.phylosophy-content {
  padding: 8.33vw 0;
}
@media (max-width: 767px) {
  .phylosophy-content {
    padding: 0;
    padding-top: 14.86vw;
    padding-left: 3.13vw;
  }
}
@media (min-width: 768px) {
  .phylosophy .top-sec-ttl {
    padding-right: 0;
    line-height: 1.7;
  }
}
.phylosophy .top-linet {
  margin-top: 2.76vw;
}
@media (max-width: 767px) {
  .phylosophy .top-linet {
    margin-top: 7.16vw;
  }
}
.phylosophy .top-sec-txt {
  font-size: 1.35vw;
  font-weight: 500;
  line-height: 3.5384615385;
  letter-spacing: 0.15em;
  margin-top: 5.36vw;
}
@media (max-width: 767px) {
  .phylosophy .top-sec-txt {
    font-size: 3.51vw;
    line-height: 3.5384615385;
  }
}
.phylosophy .top-sec-sub {
  margin-top: 12.14vw;
}
@media (max-width: 767px) {
  .phylosophy .top-sec-sub {
    margin-top: 27.03vw;
    font-size: 5.41vw;
  }
}

#scene002 .scene-tab-container {
  /* padding-bottom: 8.21vw; */
}

#scene003 .scene-tab-container {
  /* padding-bottom: 1.71vw; */
}

.scene-content {
  padding: 4.95vw 0 16.67vw;
}

@media (max-width: 767px) {
  .scene-content .top-sec-ttl {
    /* font-size: 3.78vw; */
    padding-left: 5.95vw;
    line-height: 1.5;
  }

  .facilities {
    z-index: 0;
    position: relative;
  }

  .scene-content {
    max-width: 52%;
    margin-left: auto;
    padding-bottom: 0;
    padding-right: 4.22vw;
  }
}
.scene .top-sec-ttl {
  text-align: end;
}
.scene-links {
  margin-top: 5.21vw;
  max-width: 52%;
  margin-left: auto;
}


@media (max-width: 767px) {
  .scene-links {
    max-width: 52%;
    margin-top: 27.03vw;
  }

  .scene-content {
    max-width: 100%;
  }
}
.scene-links li:not(:last-of-type) {
  margin-bottom: 1.09vw;
}
.scene-links li a {
  font-family: "angie-sans", sans-serif;
  font-size: 1.51vw;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #3f3a39;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.04vw;
}

.scene-tab .scene-links li a {
  opacity: 0.5;
}

.scene-tab .scene-links li a.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .scene-links li a {
    font-size: 4.8vw;
    gap: 0;
  }

  .scene-links li:not(:last-of-type) {
    margin-bottom: 13.33vw;
  }
}
.scene-links li a::after {
  content: "";
  background-image: url(".././img/top/arrow-r.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.36vw;
  flex-shrink: 0;
  height: 0.73vw;
}
@media (max-width: 767px) {
  .scene-links li a::after {
    width: 1.95vw;
    height: 4.03vw;
  }
}
.scene-links li a:hover {
  opacity: 0.75;
}
.scene-links li a .jp {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.1111111111;
}
@media (max-width: 767px) {
  .scene-links li a .jp {
    font-size: 3.73vw;
    line-height: 2;
  }
}

.scene-links li a .num {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 1.56vw !important;
  line-height: 1.5;
  /* letter-spacing: 0.1em; */
}

@media (max-width: 767px) {
  .scene-links li a .num {
    font-size: 3.73vw !important;
    line-height: 2;
  }
}

.scene-tab {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  /* transition:
    opacity 0.4s ease,
    visibility 0.4s ease; */
  z-index: 1;
}
.scene-tab.is-active {
  opacity: 1;
  visibility: visible;
}
.scene-tab-container {
  padding-top: 13.02vw;
  padding-bottom: 14.91vw;
}

.scene-tab-row {
  display: flex;
  gap: 2.51vw;
  align-items: flex-start;
  padding-left: 7.81vw;
  max-width: 71.48vw;
  width: 100%;
}
.scene-tab-imgs {
  max-width: 20.47vw;
  display: flex;
  flex-direction: column;
  gap: 1.56vw;
  width: 100%;
}
.scene-tab-block {
  display: flex;
  align-items: baseline;
}
.scene-tab-block:not(:last-of-type) .scene-tab-content-para {
  padding-bottom: 2.86vw;
}
.scene-tab-content {
  font-family: "source-han-serif-jp-subset", sans-serif;
  width: 100%;
}
.scene-tab-content-para {
  padding-left: 2.34vw;
  font-weight: 400;
  border-left: 1px dashed #000;
  font-size: 1.15vw;
  line-height: 1.9090909091;
  letter-spacing: 0.15em;
}
.scene-tab-content-time {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 600;
  flex-shrink: 0;
  max-width: 5.83vw;
  width: 100%;
}
.scene-return {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  color: #342c2b;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
.scene-return-conten {
  text-align: end;
  /* padding-right: 1.56vw; */
  margin-top: 4.17vw;
}
.scene-return {
  display: inline-flex;
  align-items: center;
  gap: 0.78vw;
}
.scene-return::before {
  content: "";
  background-image: url(".././img/top/arrow-r.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.05vw;
  height: 0.68vw;
  transform: rotate(-180deg);
}
.scene-return {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.has-active .scene-return {
  opacity: 1;
  visibility: visible;
}
.scene-content.has-active {
  /* position: relative;
  z-index: 0; */
}
.scene-content.has-active .scene-links li a {
  opacity: 0.35;
}
.scene-content.has-active .scene-links li.is-active a {
  opacity: 1;
}

@media (max-width: 767px) {
  .scene-tab.is-active {
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
  }

  .scene-c {
    overflow-y: scroll;
    height: 100%;
  }

  .scene-tab-container {
    --duration01: 4.5s;
    --duration02: 1.5s;
    mask-image: url(.././img/top/mask-03.webp);
    mask-repeat: no-repeat;
    mask-size: 100% 300%;
    mask-position: 60% -40%;
    opacity: 0;
    transition:
      transform var(--duration02) linear,
      opacity var(--duration02) linear,
      -webkit-mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
      -webkit-mask-position var(--duration01)
        cubic-bezier(0.11, 0.58, 0.26, 1.01);
    transition:
      mask-size var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
      mask-position var(--duration01) cubic-bezier(0.11, 0.58, 0.26, 1.01),
      opacity var(--duration02) linear;
    transform: translateY(10px);
  }

  .scene-tab.is-active .scene-tab-container {
    mask-size: 300% 200%;
    mask-position: 0% 85%;
    opacity: 1;
    transform: translateY(0);
  }

  .scene-tab-row {
    flex-direction: column-reverse;
    max-width: 100%;
    padding-left: 0;
    padding-inline: 6.76vw;
    gap: 10.81vw;
  }

  .scene-tab-imgs {
    max-width: 100%;
    gap: 4.05vw;
  }

  .scene-tab-block:not(:last-of-type) .scene-tab-content-para {
    padding-bottom: 4.05vw;
  }

  .scene-tab-content-para {
    border-left: 0;
    padding-left: 0;
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .scene-tab-content-time {
    font-size: 4.27vw;;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .scene-tab-block {
    flex-direction: column;
  }

  .scene-tab .scene-links {
    margin-top: 6.76vw;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .scene-return {
    font-size: 3.24vw;
  }

  .scene-return::before {
    width: 3.05vw;
    height: 2.68vw;
  }

  .scene-tab.is-active .scene-return {
    opacity: 1;
    visibility: visible;
  }

  .scene-tab-head {
    text-align: center;
    margin-bottom: 6.76vw;
  }

  .scene-tab-head-eng {
    font-size: 4.8vw;
    line-height: 1.6532049777;
    letter-spacing: 0.1em;
    font-family: "angie-sans", sans-serif;
    font-weight: 400;
  }

  .scene-tab-head-jp {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 400;
  }

  .scene-close {
    width: 10.81vw;
    height: 10.81vw;
    position: absolute;
    right: 1.35vw;
    top: 1.35vw;
    cursor: pointer;
    z-index: 9;
  }

  .scene-close::after {
    content: "";
    width: 100%;
    height: 0.14vw;
    background-color: #332c2b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .scene-close::before {
    content: "";
    width: 100%;
    height: 0.14vw;
    background-color: #332c2b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media (min-width: 768px) {
  .scene-close {
    display: none;
  }
}

.mv__video {
  height: 100vh;
  position: relative;
}

.mv__logo {
  position: absolute;
  width: 47px;
  left: 50%;
  top: 65%;   /* adjust as needed */
  transform: translate(-50%, -50%);
  z-index: 50;
}

@media (min-width:768px) {
  .mv__logo {
    display: none;
    }
}

.mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.floor-img {
  max-width: 37.24vw;
  width: 100%;
}
.floor-container {
  display: flex;
  align-items: flex-start;
  max-width: 81.77vw;
  margin: 0 auto;
  padding: 8.33vw 0 14.58vw;
  gap: 6.6vw;
}
.floor .floor-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.floor .floor-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2.6vw;
}
.floor .floor-block {
  padding: 0.83vw 0 0.83vw 0;
  max-width: 7.55vw;
  width: 100%;
}
.floor .floor-block.fd {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  height: auto;
}
.floor .floor-block.fd .floor-block {
  margin-block: auto;
}
.floor .floor-block.spa {
  max-width: 100%;
}
.floor .floor-block.fitness {
  max-width: 10.94vw;
}
.floor .floor-block h2 {
  color: #3f3a39;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  margin-bottom: 0vw;
}
.floor .floor-block p {
  display: flex;
  align-items: baseline;
  gap: 0.9vw;
  margin-bottom: 0.3vw;
}
.floor .num {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
}
.floor .name {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  letter-spacing: 0.03em;
} /*# sourceMappingURL=app.css.map */

@media (max-width: 767px) {
  .floor .floor-content {
    flex-direction: row;
  }

  .floor-container {
    flex-direction: column;
    gap: 8.65vw;
    margin-inline: 5.95vw 4.22vw;
    max-width: unset;
  }

  .floor-img {
    max-width: 100%;
  }

  .floor .floor-row {
    gap: 3.36vw;
    flex-direction: column;
    width: 100%;
  }

  .floor .floor-block h2 {
    font-size: 4.27vw;
    line-height: 2;
  }

  .floor .num {
    font-size: 3.73vw;
  }

  .floor .name {
    font-size: 3.73vw;
    letter-spacing: 0;
  }

  .floor .floor-block {
    max-width: 100%;
  }

  .floor .floor-block.fitness {
    max-width: 100%;
  }
}

.page-title {
  text-align: center;
}

.page-title-eng {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 2.89vw;
  line-height: 1.0892857143;
  color: #332c2b;
  letter-spacing: 0.3em;
}

.page-title-jp {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-size: 1.56vw;
  line-height: 1.9;
  letter-spacing: 0.15em;
  color: #3e3a39;
  margin-top: 1.3vw;
}

@media screen and (max-width: 767px) {
  .page-title-eng {
    font-size: 7.47vw;
  }

  .page-title-jp {
    font-size: 4.05vw;
    line-height: 1.669;
    margin-top: 4.05vw;
  }

  .sp-sticky {
    position: sticky !important;
    top: 0;
  }

  .sp-sticky.z1 {
    z-index: 1;
  }
}

/* INFOMRATION */
.information {
  padding: 10.42vw 2.6vw 18.75vw;
}

.information__container {
  max-width: 65.83vw;
  margin: 8.7vw auto 0;
}

.information__item:not(:last-of-type) {
  margin-bottom: 1.75vw;
}

.information__item a {
  color: #3f3a39;
  display: flex;
  align-items: center;
  gap: 1.56vw;
  border-bottom: 0.05vw dashed #3f3a39;
  padding-bottom: 1.04vw;
  transition: all 0.3s ease;
  position: relative;
}

.information__item a::after {
  content: "";
  background-image: url("../img/info/allow_btn.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  right: 1.3vw;
  width: 1.04vw;
  height: 1.04vw;
}

.information__item.pdf a::after {
  background-image: url("../img/info/PDF.svg");
}

.information__item.window a::after {
  background-image: url("../img/info/window.svg");
}

@media (max-width: 767px) {
  .information__item a::after {
        width: 4.7vw;
        height: 4.7vw;
  }
}

.information__item a:hover {
  opacity: 0.75;
}

.information__item a .date {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
}

.information__item a .txt {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 2.6vw;
}

.information__btn {
  margin-top: 7.55vw;
}

.scene-tab-links {
  display: none;
}

@media (min-width: 768px) {
  .scene-tab-container {
    padding-bottom: 0;
    padding-top: 4.17vw;
    display: flex;
    align-items: flex-start;
  }

  .scene-tab {
    padding-top: 5.21vw;
    display: flex;
    align-items: flex-start;
  }

  .scene-tab-row {
    flex-shrink: 0;
  }

  .scene-tab-links .scene-links {
    margin-top: -1.17vw;
    max-width: 100%;
  }

  .scene-tab-links {
    display: block;
    flex-shrink: 0;
    max-width: 21.3vw;
    width: 100%;
    padding-left: 5.73vw;
  }

  .scene-c {
    width: 100%;
  }

  .scene-tab .top-sec-ttl {
    max-width: max-content;
    margin-left: auto;
    padding-right: 5.73vw;
  }

  .scene-return-conten .scene-return {
    opacity: 1;
    visibility: visible;
  }

  .scene-tab {
    height: 100%;
  }
  #scene002 .scene-tab-container {
    padding-bottom: 11.31vw;
  }

  #scene003 .scene-tab-container {
    padding-bottom: 5.51vw;
  }
  .scene-tab-head{
    padding-left: 7.81vw;
  }

  .scene-tab-head-t {
    font-family: "angie-sans", sans-serif;
    font-weight: 400;
    font-size: 1.51vw;
    line-height: 2.1724137931;
    letter-spacing: 0.1em;
    color: #332c2b;
  }

  .scene-tab-head-row {
    display: flex;
    align-items: center;
    gap: 1.56vw;
  }

  .scene-tab-head-eng {
    font-family: "angie-sans", sans-serif;
    font-weight: 400;
    line-height: 2.1724137931;
    letter-spacing: 0.1em;
    font-size: 1.51vw;
    color: #322e2d;
  }

  .scene-tab-head-jp {
    font-size: 1.15vw;
    line-height: 1.7272727273;
    letter-spacing: 0.15em;
    color: #332c2b;
  }

}

.information__btn a {
  max-width: 25.1vw;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.49vw;
  background-color: #332c2b;
  color: #fff;
  font-size: 1.25vw;
  line-height: 0.875;
  letter-spacing: 0.03em;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease;
}

.information__btn a:hover {
  opacity: 0.7;
}

.information__btn a::after {
  content: "";
  background-image: url("../img/top/arrow-r-w.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.47vw;
  height: 0.89vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.78vw;
}

.information__pagination ul {
  display: flex;
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  gap: 2.08vw;
  margin-top: 4.43vw;
}

.information__pagination li {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  color: #3f3a39;
  text-align: center;
  cursor: pointer;
}

.information__pagination li.active {
  position: relative;
  pointer-events: none;
}

.information__pagination li.active::after {
  content: "";
  width: 100%;
  background-color: #332c2b;
  height: 0.16vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.16vw;
}

@media (max-width: 767px) {
  .top-content-sm-img {
    margin-inline: 0;
  }

  .message .top-img img {
    height: 100%;
    object-fit: cover;
    object-position: 0 70%;
  }

  .message .top-content {
    padding-inline: 0;
    padding-bottom: 0;
  }

  .information-block {
    position: relative;
    z-index: 100;
    background-color: #f4f3ed;
    padding-inline: 5.95vw 4.22vw !important;
  }

  .time {
    padding-inline: 5.95vw 4.22vw !important;
  }
}

.information-single {
  max-width: 65.83vw;
  margin: 0 auto;
  padding: 10.42vw 0 18.75vw;
}

.information-single .page-title {
  margin-bottom: 8.7vw;
}
@media (max-width: 767px) {
  .information-single .page-title {
    margin-bottom: 18.92vw;
  }
}

.information-top {
  display: flex;
  align-items: center;
  gap: 1.82vw;
}

.information-date {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
  color: #3f3a39;
}

.information-tag {
  font-family: "angie-sans", sans-serif;
  color: #fff;
  font-size: 1.09vw;
  line-height: 1.1828571429;
  letter-spacing: 0.1em;
  background-color: #8b8988;
  padding: 0.36vw 0;
  min-width: 8.02vw;
  text-align: center;
}

.information-detail-title {
font-size: 1.56vw;
line-height: 2.2666666667;
  /* letter-spacing: 0.25em; */
  color: #3f3a39;
  margin-top: 3.7vw;
}

.information-detail-sub {
  margin-top: 1.56vw;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 2.1739130435;
  letter-spacing: 0.1em;
  color: #3f3a39;
}

.information-detail-img {
  margin-top: 3.91vw;
}

.information-single .information__btn {
  margin-top: 3.13vw;
}

.single-wp-content {
  margin-top: 3.65vw;
}

.single-wp-content p {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
  color: #3f3a39;
  margin-top: 2.08vw;
}

.single-wp-content a {
  font-size: 1.2vw;
  line-height: 2.1739130435;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #3e3a39;
  margin-top: 2.08vw;
  text-decoration: underline;
  display: inline-block;
}

.single-wp-content h2 {
  color: #3f3a39;
  font-size: 1.09vw;
  letter-spacing: 0.03em;
  line-height: 0.8076923077;
  font-weight: 400;
  margin-top: 3.91vw;
}

.information__btm-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6vw;
  margin-top: 9.38vw;
  /* padding-bottom: 5.21vw; */
  /* border-bottom: 0.05vw dashed #332c2b; */
}

.information__btm-link li {
  list-style: none;
}

.information__btm-link li a {
  color: #332c2b;
font-size: 1.09vw;
letter-spacing: 0.15em;
line-height: 2.6;
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}

.information__btm-link li a:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .information {
    padding: 37.84vw 7.43vw 29.73vw;
  }

  .information__container {
    max-width: 100%;
    margin-top: 18.92vw;
  }

  .information__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35vw;
    padding-bottom: 6.08vw;
  }

  .information__item a .date {
    font-size: 3.2vw;
    line-height: 1.7272727273;
    letter-spacing: 0.01em;
  }

  .information__item a .txt {
    font-size: 3.73vw;
    line-height: 2;
    -webkit-line-clamp: 2;
    letter-spacing: 0.15em;
    padding-right: 5.41vw;
  }

  .information__btn a {
    max-width: 65.14vw;
    height: 9.05vw;
    font-size: 4.27vw;
    letter-spacing: 0.03em;
    line-height: 1.1428571429;
  }

  .information__btn a::after {
    width: 1.08vw;
    height: 2.3vw;
    right: 2.03vw;
  }

  .information__item:not(:last-of-type) {
    margin-bottom: 6.76vw;
  }

  .information__btn {
    margin-top: 20.27vw;
  }

  .information__pagination li {
    font-size: 3.73vw;
    line-height: 2;
  }

  .information__pagination ul {
    margin-top: 13.51vw;
    gap: 5.41vw;
  }
}

@media (max-width: 767px) {
  .information-single {
    max-width: 100%;
    padding: 39.59vw 6.76vw 29.73vw;
  }

  .information-detail-title {
    font-size: 4.8vw;
    line-height: 1.8823529412;
    letter-spacing: 0.25em;
    margin-top: 9.46vw;
  }

  .information-detail-sub {
    margin-top: 8.11vw;
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .information-detail-img {
    margin-top: 13.51vw;
  }

  .single-wp-content p {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 5.41vw;
  }

  .single-wp-content a {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 5.41vw;
  }

  .single-wp-content h2 {
    font-size: 4.27vw;
    line-height: 2;
    margin-top: 9.46vw;
  }

  .information__btm-link {
    gap: 6.76vw;
  }

  .information__btm-link li a {
    font-size: 3.73vw;
    line-height: 2;
  }

  .information__btm-link {
    /* padding-bottom: 10.81vw; */
  }

  .information-tag {
    font-size: 2.7vw;
    min-width: 20.27vw;
    padding: 0.68vw 0;
    line-height: 1.5;
  }

  .information-date {
    font-size: 3.73vw;
    line-height: 2;
  }
}

.member_head {
  margin-bottom: 3.13vw;
  text-align: center;
  margin-top: 8.85vw;
}

.member-head-eng {
  font-family: "angie-sans", sans-serif;
  font-size: 1.98vw;
  line-height: 0.9473684211;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #3e3a39;
}

.member-head-jp {
  font-size: 1.25vw;
  line-height: 0.875;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #3e3a39;
  margin-top: 1.2vw;
}

.member-btm-txt {
  text-align: center;
  font-size: 1.04vw;
  line-height: 2.5;
  color: #3f3a39;
  letter-spacing: 0;
  margin-top: 3.13vw;
}

/* MEMEBRSHIP */

.membership {
  max-width: 65.83vw;
  margin: 0 auto;
  padding-bottom: 8.65vw;
  padding-top: 11.98vw;
}

.membership-block {
  margin-top: 8.7vw;
}
@media (max-width: 767px) {
  .membership-block {
    margin-top: 18.92vw;
  }
}

.membership-row {
  display: flex;
  align-items: flex-start;
}

.membership-row:not(:last-of-type) {
  margin-bottom: 7.81vw;
}

.membership-left {
  max-width: 16.51vw;
  width: 100%;
}

.membership-left-t {
  font-family: "angie-sans", sans-serif;
  font-weight: 400;
  font-size: 2.19vw;
  letter-spacing: 0.1em;
  line-height: 1;
}

.membership-left-b {
  font-weight: 400;
  font-size: 1.41vw;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 2.6vw;
}

.membership-right {
  border-left: 1px solid #332c2b;
  padding-left: 3.65vw;
  width: 100%;
}

.membership-right-txt {
  font-size: 2.19vw;
  letter-spacing: 0.1em;
  line-height: 1.6076923077;
  font-weight: 400;
  color: #3f3a39;
}

.membership-right-txt .link {
  color: #3f3a39;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.membership-right-txt .link:hover {
  opacity: 0.75;
}



.membership-right-txt .md {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2;
}

.membership-right-txt .no-ls {
  /* letter-spacing: 0; */
}

.membership-right-txt sup {
  font-size: 0.94vw;
  vertical-align: super;
}

.membership-right-txt .information__btn {
  margin-block: 2.08vw 4.17vw;
  display: block;
}

.membership-right-txt .information__btn a {
  max-width: 19.06vw;
}

@media (max-width: 767px) {
  .membership {
    max-width: 100%;
    padding-inline: 5.68vw;
    padding-top: 37.84vw;
    padding-bottom: 23.65vw;
  }

  .membership-row {
    flex-direction: column;
    align-items: center;
  }

  .membership-left {
    padding-bottom: 3.46vw;
    max-width: 100%;
    text-align: start;
  }

  .membership-right {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #332c2b;
    padding-top: 9.46vw;
  }

  .membership-row:not(:last-of-type) {
    margin-bottom: 24.32vw;
  }

  .membership-left-t {
    font-size: 6.93vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .membership-left-b {
    font-size: 4.27vw;
    line-height: 2;
    letter-spacing: 0;
    margin-top: 0;
  }

  .membership-right-txt {
    font-size: 4.27vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .membership-right-txt sup {
    font-size: 2.43vw;
  }
  .membership-right-txt .md {
    font-size: 3.73vw;
    line-height: 2;
  }

  .membership-right-txt .information__btn {
    margin-block: 10.81vw;
  }

  .membership-right-txt .information__btn a {
    max-width: 59.46vw;
  }

  .member-btm-txt {
    font-size: 2.7vw;
    line-height: 2.5;
    margin-top: 8.11vw;
  }

  .member-head-eng {
    font-size: 5.14vw;
    line-height: 1.0555555556;
  }

  .member-head-jp {
    font-size: 3.24vw;
    line-height: 1.1428571429;
    margin-top: 2.7vw;
  }

  .information-single .information__btn {
    margin-top: 6.76vw;
  }
}

/* access */
.access {
  padding-top: 10.42vw;
}

@media (max-width: 767px) {
  .access {
    padding-top: 39.59vw;
  }
}

.access-row {
  max-width: 81.77vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  color: #332c2b;
  gap: 2.92vw;
  margin-top: 8.7vw;
}

.access-info {
  max-width: 36.15vw;
  width: 100%;
  flex-shrink: 0;
}

.access-info-block {
  margin-bottom: 4.17vw;
}

.access-info-block.mb0 {
  margin-bottom: 0;
}

.access-parking {
  /* margin-top: 2.19vw; */
  display: inline-flex;
  /* display: inline-block; */
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  /* margin-right: 2.21vw; */
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  gap: 0.68vw;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: underline;
  padding-left: 0.31vw;
  position: relative;
}

.access-parking:hover {
  opacity: 0.75;
}

.access-parking::before {
  content: "";
  background-image: url("../img/top/arrow-r.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.31vw;
  height: 0.68vw;
}

.access-t {
  font-family: "angie-sans", sans-serif;
  font-size: 1.46vw;
  line-height: 1.6071428571;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.access-tr {
  display: flex;
  align-items: flex-start;
  font-size: 1.04vw;
  line-height: 2.25;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.access-th {
  width: 6.77vw;
}

.access-td {
  width: calc(100% - 6.77vw);
}

.access-td sup{
  vertical-align: super;
  font-size: 0.52vw;
}

@media (max-width:767px) {
  .access-td sup {
    font-size: 2.52vw;
  }
}

.access-map-txt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.04vw;
  font-weight: 400;
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  gap: 0.42vw;
  text-decoration: underline;
}

.access-map-txt::before {
  content: "";
  background-image: url("../img/access/map-pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.83vw;
  height: 1.25vw;
}

.access-map-txt::after {
  content: "";
  background-image: url("../img/info/window.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.83vw;
  height: 1.25vw;
}
@media (max-width: 767px) {
  .access-map-txt::after {
    width: 3.7vw;
    height: 3.7vw;
  }
}


.access-parking-btm {
  display: flex;
  justify-content: flex-end;
}

.access-conta-t {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
}

@media (max-width: 767px) {
  .access-row {
    flex-direction: column;
    max-width: 100%;
    gap: 13.51vw;
    margin-top: 18.92vw;
  }

  .access-info {
    max-width: 100%;
    padding-inline: 8.11vw;
  }

  .access-t {
    font-size: 4.05vw;
    line-height: 1.6071428571;
    font-family: "angie-sans", sans-serif;
    letter-spacing: 0.2em;
  }

  .access-tr {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.01em;
    margin-bottom: 3.24vw;
  }

  .access-th {
    width: 27.57vw;
  }

  .access-td {
    width: calc(100% - 26.57vw);
  }

  .access-info-block {
    margin-bottom: 10.81vw;
  }

  .access-parking {
    font-size: 3.73vw;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 400;
    /* margin-top: 5.41vw; */
    gap: 2.03vw;
  }

  .access-parking::before {
    width: 0.81vw;
    height: 1.76vw;
    top: 50%;

  }

  .access-map-txt {
    gap: 1.08vw;
    font-size: 3.2vw;
    line-height: 2.6470588235;
    letter-spacing: 0.1em;
    margin-right: 8.11vw;
  }

  .access-map-txt::before {
    width: 2.16vw;
    height: 3.24vw;
  }

  .access-conta-t {
    font-size: 3.2vw;
  }
}

.access-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #322e2d;
  z-index: 110;
  /* Add these ↓ */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: auto;
}

.access-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.access-modal img{
  width: 100%;
}

.access-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.access-modal-content {
  max-width: 58.33vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  height: 100%;
  padding-top: 3.65vw;
  align-items: flex-end;
}



@media (max-width: 767px) {
  .access-modal-content {
    max-width: 100%;
    margin: 0 auto;
    gap: 3.04vw;
    padding-top: 0;
    justify-content: center;
  }

  .top-sticky {
    position: relative;
  }

  /* Ensure image stays on top */
  .top-content-sm-img {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff; /* or whatever your bg color is */
  }

  .top-sticky-img {
    position: sticky;
    top: 0;
    /* height: 100vh; */
    width: 100%;
    z-index: 1;
  }

  .access-modal-content .header__toggle {
    margin-right: 2.67vw;
  }

  .top-content {
    position: relative;
    z-index: 2;
  }

  .top-row {
    position: relative;
  }

  .sticky-shrink-img {
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 10;
  }

  .sticky-shrink-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Content blocks sit below */
  .top-sticky-content {
    position: relative;
    z-index: 1;
    padding-bottom: 33.78vw;
  }

  /* .spa .top-sticky-content {
    padding-bottom: 0;
  } */

  .phylosophy .top-img img {
    height: 100%;
    object-fit: cover;
  }

  .top-row {
    min-height: auto; /* ← gives sticky room to work within the row */
  }

  .pin-spacer {
    padding: 0 !important;
    margin: 0 !important;
    z-index: 5 !important;
  }

  .scene-content {
    /* padding-top: 33.78vw; */
    padding-top: 20.27vw;
    padding-bottom: 16.67vw !important;
  }

  .scene-tab .scene-links li a {
    /* line-height: 1.5; */
    gap: 2.03vw;
    opacity: 0.75;
  }

  .scene-tab .scene-links li a.active {
    opacity: 1;
  }

  .scene-tab .scene-return-conten{
    margin-top: 0;
  }

  .scene-tab .scene-links {
    max-width: 100%;
  }

  .scene-tab-head-t {
    font-family: "angie-sans", sans-serif;
    font-size: 4.8vw;
    line-height: 1.1071428571;
    letter-spacing: 0.1em;
    color: #332c2b;
    margin-bottom: 3.24vw;
  }

  .scene-tab .scene-return-conten.t {
    margin-top: 3.78vw;
    padding-right: 4.05vw;
  } 
}

.page-lower-title {
  text-align: center;
  padding-top: 8.63vw;
  padding-bottom: 7.98vw;
}

.page-lower-title.bg {
  background-color: rgba(244, 243, 237, 0.95);
}

.page-lower-eng {
  font-family: "angie-sans", sans-serif;
  font-size: 2.89vw;
  letter-spacing: 0.3em;
  line-height: 1.0892857143;
  font-weight: 400;
}

.page-lower-jp {
  font-size: 1.41vw;
  letter-spacing: 0.03em;
  line-height: 0.8076923077;
  font-weight: 400;
  margin-top: 2.08vw;
}

/* SPA */

.spa {
}

.spa .mv img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.spa-content {
  width: 100%;
  padding-left: 8.23vw;
}

/* .spa-content::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #f4f3ed;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 0;
} */

.spa-content-txt {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #322e2d;
  position: relative;
  z-index: 1;
}

.spa-row .top-row {
  max-width: 50%;
}

.spa-row .top-content {
  max-width: 100%;
}

.spa-row .spa-content {
  display: flex;
  /* align-items: center;
  justify-content: flex-start; */
  height: 100vh;
}

.spa-row .spa-content .spa-content-txt {
  padding-top: 7.98vw;
}

.thermal .top-row {
  align-items: flex-start;
  position: relative;
  max-width: calc(50% + 40.94vw);
  gap: 6.66vw;
}

.thermal .top-content::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #f4f3ed;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}

.thermal.style .top-right {
  width: 100%;
}

.thermal.style .top-right img {
  width: 100%;
}

.bottom .thermal .top-content::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #f4f3ed;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}

.bottom .thermal {
  position: relative;
}

.bottom .top-row {
  /* gap: 0; */
}

.bottom .spa-row .spa-content {
  align-items: center;
}

.thermal .top-content,
.thermal .top-img {
  position: relative;
  z-index: unset;
}

@media (min-width: 768px) {
  .thermal .top-content,
  .thermal .top-img {
    z-index: unset;
    overflow: hidden;
  }
}

.thermal .top-content {
  max-width: 34.29vw;
  padding-top: 6.76vw;
}

.bottom .thermal .top-content {
  max-width: 34.39vw;
}

.bottom .thermal .top-content {
  position: sticky;
  top: 0;
}

.page-sec-title {
  font-family: "angie-sans", sans-serif;
  color: #322e2d;
  font-size: 2.19vw;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
  border-bottom: 1.5px solid #332c2b;
  max-width: fit-content;
  width: 100%;
  padding-bottom: 0.78vw;
  padding-right: 3.13vw;
}

.page-sec-sub {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  font-weight: 600;
  /* letter-spacing: 0.2em; */
  color: #3f3a39;
  margin-top: 1.56vw;
}

.page-sec-sub sup {
  vertical-align: super;
  font-size: 0.94vw;
}

.page-sec-sub .ml-5 {
  margin-left: -0.52vw;
}

@media (max-width:767px) {
  .page-sec-sub .ml-5 {
    margin-left: -2.12vw;
}

  .page-sec-sub sup {
    vertical-align: super;
    font-size: 3.2vw;
  }

  .bottom .spa-row .spa-content .thermal-content {
    width: 100%;
  }
}

.page-sec-sub span {
  font-weight: 400;
  font-size: 1.35vw;
  letter-spacing: 0.15em;
  line-height: 1.23;
}

.thermal-txt {
  font-weight: 400;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 8.06vw;
}

.thermal-sm {
  font-size: 1.04vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin-top: 2.6vw;
}

.bottom .thermal .thermal-content {
  padding-top: 10.42vw;
  padding-bottom: 16.41vw;
}

.bottom-bg {
  position: sticky;
  top: 0;
}

.bottom-bg.pbg {
  padding-top: 5px;
  background-color: #f4f3ed;
}

.bottom-bg img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.bottom .spa-row {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .bottom .spa-row {
    z-index: unset;
  }

  .page-sec-title.lengthy2 {
    max-width: 23vw;
  }

    .page-sec-title.lengthy3 {
    max-width: 16vw;
  }

  .sauna .page-sec-title {
    padding-right: 6.53vw;
  }
  .page-sec-title.lengthy-p {
    padding-right: 12.53vw;
  }
}

.bottom .spa-content::after {
  z-index: -1;
  right: 0;
}

.page-links {
  padding: 11.2vw 0 18.23vw;
}

.page-link-head {
  text-align: center;
}

.page-link-ttl {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  font-family: "angie-sans", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  padding-bottom: 1.04vw;
  border-bottom: 1px solid #332c2b;
  display: inline-block;
}

.page-link-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8.33vw 4.17vw;
  max-width: 81.77vw;
  margin: 0 auto;
  margin-top: 6.77vw;
}

.page-link-list li {
  width: calc((100% / 4) - (4.17vw * 3) / 4);
  list-style-type: none;
}

.page-link-list li a {
  color: #362c2b;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
  position: relative;
  transition: all 0.3s ease;
}

.page-link-list li a:hover {
  opacity: 0.75;
}

.page-link-list li a::after {
  content: "";
  background-image: url("../img/top/arrow-r.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.36vw;
  height: 0.73vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.page-link-list li a .eng {
  font-family: "angie-sans", sans-serif;
  font-size: 1.09vw;
  letter-spacing: 0.03em;
  line-height: 0.8076923077;
  font-weight: 400;
}

.page-link-list li a .eng.no-ls {
  letter-spacing: 0;
}

.page-link-list li a .jp {
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  font-weight: 400;
}

@media (max-width: 767px) {
  .spa-row .spa-content .spa-content-txt {
    padding-top: 0;
  }
 

  .thermal .top-row {
    max-width: 100%;
    gap: 0;
  }

  .thermal-sm {
    font-size: 3.51vw;
    margin-top: 4.05vw;
  }

  .thermal .top-row::after {
    left: 0;
  }

  .spa-row .top-row {
    max-width: 100%;
  }

  .spa-content-txt {
    width: 100%;
    font-size: 4.27vw;
  }

  .thermal .top-content {
    max-width: 100%;
    padding-top: 20.27vw;
  }

  .bottom .thermal .thermal-content {
    padding-top: 0;
  }
  .page-links {
    position: relative;
    z-index: 0;
  }

  .page-sec-title {
    font-size: 6.93vw;
    line-height: 2;
    letter-spacing: 0.1em;
    max-width: 100%;
    /* padding-bottom: 2.7vw; */
  }

  .page-sec-title.lh-sp {
    line-height: 1.4;
  }

  .page-sec-sub span {
    font-size: 3.73vw;
    line-height: 2;
  }

  .page-link-list {
    gap: 12.16vw 7.43vw;
    margin-top: 13.51vw;
    max-width: 100%;
    padding-inline: 5.95vw 4.22vw;
  }

  .page-link-list li {
    width: calc((100% / 2) - (7.43vw * 1) / 2);
  }

  .page-link-list li a .eng {
    font-size: 3.78vw;
    line-height: 1.1;
  }

  .page-link-list li a .jp {
    font-size: 2.97vw;
    line-height: 2.4545454545;
  }

  .page-link-list li a::after {
    width: 2.36vw;
    height: 2.72vw;
  }

  .page-link-ttl {
    font-size: 4.8vw;
  }

  .page-lower-eng {
    font-size: 6.93vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .page-lower-jp {
    font-size: 4.27vw;
    line-height: 2;
  }

  .page-lower-title {
    padding-top: 14.27vw;
    padding-bottom: 14.27vw;
  }

  .spa-content::after {
    content: none;
  }

  .spa-row .spa-content {
    height: auto;
    padding-top: 20.27vw;
    padding-left: 0;
  }

  .spa .top-row {
    min-height: unset;
  }

  .bottom .thermal .top-content {
    max-width: 100%;
  }

  .thermal-txt {
    font-size: 3.73vw;
    line-height: 2;
  }

  .page-sec-sub {
    font-size: 4.8vw;
  }

  .bottom {
    position: sticky;
    /* z-index: 1; */
  }

  .bottom .thermal .top-content {
    padding-bottom: 0;
  }

  .style .top-row {
    flex-direction: column-reverse;
  }
}

.header.lower .header__link {
  color: #fff;
}

.header.lower .header__toggle span {
  background-color: #fff;
}

@media (min-width: 768px) {
}

.phylosophy:has(.scene-tab.active) .top-row {
  background-color: red;
}

.gap01 {
  margin-top: 3.6px;
}

.hospitality .spa-row .top-row {
  margin-left: 0;
}

.sauna .spa-row .top-row {
  margin-left: 0;
}

@media (min-width: 768px) {
  .hospitality .thermal .top-content {
    padding-top: 0;
  }

  .hospitality .wellness .top-content {
    max-width: 33.25vw;
  }

  .sticky-pc {
    position: sticky !important;
    top: 0;
  }

  .hospitality .wellness .top-row {
    flex-direction: row-reverse;
    margin-left: 0;
    gap: 7.66vw;
  }
}

.reception-block {
  padding-top: 12.24vw;
  padding-bottom: 10.42vw;
}

.guest-block {
  padding-top: 13.02vw;
  padding-bottom: 14.06vw;
}

.wellness-block {
  padding-top: 11.98vw;
  padding-bottom: 11.98vw;
}

.item-block {
  padding-top: 13.02vw;
  padding-bottom: 10.42vw;
}

@media (max-width: 767px) {
  .reception-block {
    padding-top: 0;
    padding-bottom: 20.42vw;
  }

  .guest-block {
    padding-top: 13.02vw;
    padding-bottom: 0;
  }

  .wellness-block {
    padding-top: 0;
    padding-bottom: 0;
  }

  .item-block {
    padding-top: 13.02vw;
    padding-bottom: 10.42vw;
  }

  .spa-content {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .thermal.rr .top-row {
    flex-direction: row-reverse;
    margin-left: 0;
  }

  .sauna .thermal .top-content {
    padding-top: 0;
  }

  .sauna .thermal .top-row {
    align-items: center;
  }

  .hospitality .spa-row .spa-content {
    padding-left: 12.76vw;
  }

  .sauna .spa-row .spa-content {
    padding-left: 11.98vw;
  }

  .gym .spa-row.t .spa-content {
    padding-left: 13.54vw;
  }

  .gym .spa-row .top-row {
    margin-left: 0;
  }

  .dining .spa-row .spa-content {
    padding-left: 13.28vw;
  }

  .dining .spa-row .top-row {
    margin-left: 0;
  }

  .comfort .spa-row .spa-content {
    padding-left: 13.23vw;
  }

  .comfort .spa-row .top-row {
    margin-left: 0;
  }

  .pool .thermal .top-content {
    padding-top: 0;
  }

  .pool .thermal .top-row {
    align-items: center;
  }

  .dining .thermal .top-row {
    align-items: center;
  }

  .dining .thermal .top-content {
    padding-top: 0;
  }

  .gym .thermal .top-row {
    align-items: center;
  }

  .gym .thermal .top-content {
    padding-top: 0;
  }

  .comfort .thermal .top-row {
    align-items: center;
  }

  .comfort .thermal .top-content {
    padding-top: 0;
  }

  .treatment .thermal .top-content {
    padding-top: 0;
  }

  .treatment .thermal .top-row {
    align-items: center;
  }

  .treatment .aroma .top-row {
    gap: 0;
  }

  .treatment .aroma .top-content {
    max-width: 41vw;
    padding-right: 2.29vw;
  }

  .treatment .aroma .top-content .page-sec-title {
    padding-right: 0.13vw;
  }

  .spa-row.studio {
    .top-row {
      margin-left: auto;
    }
  }
}

.thermal-files li a {
  display: inline-flex;
  align-items: center;
  line-height: 2;
  font-size: 1.15vw;
  letter-spacing: 0.1em;
  color: #332c2b;
  gap: 1.3vw;
  transition: all 0.3s ease;
}

.thermal-files li a:hover {
  opacity: 0.75;
}

.thermal-files {
  margin-top: 6.51vw;
}

.thermal-files li:not(:last-of-type) {
  margin-bottom: 1.67vw;
}

.thermal-files li a::before {
  content: "";
  background-image: url("../img/treatment/icon-file.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.04vw;
  height: 1.56vw;
}

@media (max-width: 767px) {
  .thermal-files li a {
    font-size: 3.15vw;
    letter-spacing: 0.1em;
    gap: 2.3vw;
  }

  .thermal-files {
    margin-top: 10.51vw;
  }

  .thermal-files li:not(:last-of-type) {
    margin-bottom: 2.67vw;
  }

  .thermal-files li a::before {
    content: "";
    background-image: url("../img/treatment/icon-file.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 5.04vw;
    height: 4.56vw;
  }
}

.facilities-bg-logo {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  padding-inline: 5.04vw;
  padding-block: 21.4vw;
  text-align: center;
}

.facilities-bg-logo img {
  height: auto;
  width: 100%;
}

.facilities-bg-logo .top-sec-ttl {
  color: #fff;
  text-align: center;
  margin-top: 5.6vw;
}

@media (min-width: 768px) {
  .facilities-bg-logo {
    padding-block: 11.4vw;
    padding-inline: 1.04vw;
  }

  .facilities-bg-logo .top-sec-ttl {
    margin-top: 2.6vw;
  }

  .facilities-bg-logo img {
    height: auto;
    width: 41.67vw;
  }
}

@media (max-width: 767px) {
  .new-content-imgn {
    height: 76.22vw !important;
    object-fit: cover;
  }
}

hr {
  color: #fff;
}

.spa .mv .mv-text {
  position: absolute;
    bottom: 4.64vw;
    right: 4.4vw;
  color: #fff;
}

.spa .mv .mv-text h1 {
  font-size: 1.56vw;
  line-height: 2.2666666667;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "angie-sans", sans-serif;
}

.spa .mv .mv-text p {
  font-size: 1.41vw;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-top: 1.56vw;
  line-height: 1.8076923077;

}

@media (max-width: 767px) {
  .spa .mv .mv-text {
    bottom: 9.64vw;
    right: 8.4vw;
  }

  .spa .mv .mv-text h1 {
    font-size: 4.8vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .spa .mv .mv-text p {
    font-size: 4.27vw;
    line-height: 2;
    margin-top: 3.92vw;
  }

  #preview-wovn-translate-widget[wovn].type-floating.wovn--position-bottom,
  #wovn-translate-widget[wovn].type-floating.wovn--position-bottom {
    bottom: 15.92vw !important;
  }
}

.spa .mv .mv-text {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.spa .mv .mv-text.hidden {
  opacity: 0;
  pointer-events: none;
}

.main.notfound {
  padding-top: 14.06vw;
}

.notfound-title {
  font-size: 1.41vw;
  letter-spacing: 0.03em;
  line-height: 0.8076923077;
  color: #3f3a39;
  font-family: "angie-sans", sans-serif;
  text-align: center;
}

.notfound-txt {
  text-align: center;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
  margin-top: 3.65vw;
}

.notfound-btn .information__btn {
  margin-top: 2.6vw;
}

.notfound-btn .information__btn a {
  max-width: 21.15vw;
  font-size: 1.09vw;
  letter-spacing: 0.15em;
  line-height: 2.6;
}

.header.notfound .header__link {
  color: #3f3a39;
}

.header.notfound .header__toggle span {
  background-color: #3f3a39;
}

.header.notfound:has(.header__overlay.active) .header__toggle span {
  background-color: #fff;
}

.header.notfound:has(.header__overlay.active) .mgc-norm {
  display: none;
}

.header.notfound:has(.header__overlay.active) .mgc-black {
  display: block;
}

.notfound .mv {
  height: unset;
}

@media (max-width: 767px) {
  .main.notfound {
    padding-top: 24.06vw;
    padding-inline: 5vw;
  }

  .notfound-title {
    font-size: 4.27vw;
    line-height: 2;
  }

  .notfound-txt {
    font-size: 3.73vw;
    line-height: 2;
    margin-top: 6.65vw;
  }

  .notfound-btn .information__btn {
    margin-top: 6.6vw;
  }

  .notfound-btn .information__btn a {
    max-width: 60.15vw;
    font-size: 3.73vw;
    line-height: 2;
  }
}

.header.notfound.header--scrolled .mgc-black {
  display: none;
}

.header.notfound.header--scrolled .mgc-norm {
  display: block;
}


.header--scrolled .mgc-norm.d-md-block {
  display: none !important;
}

.header--scrolled .header__logo .mgc-txt.d-md-block {
  display: none !important;
}

@media (max-width:767px) {
  /* .access-modal-content .header__toggle {
    top: -10% !important;
    right: 2% !important;
  } */
}

.bottom .spa-row .top-content.bg {
  background-color: rgba(244, 243, 237, 0.95);
}

@media (min-width:768px) {
  .spa-row .top-content.bg {
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: rgba(244, 243, 237, 0.95);
  }


  .thermal .page-sec-title.lengthy {
    max-width: 28vw;
  }

  .thermal.ai-c .top-row {
    align-items: center;
  }
}

.bottom {
  padding-top: 5px;
  background-color: #f4f3ed;
}

.thermal-e {
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  margin-top: 2.51vw;
}

.thermal-e  a {
  flex-direction: row-reverse;
  border-bottom: 1px solid #322e2d;
  gap: 0.7vw;
  display: inline-flex;
  align-items: center;
  color: #332c2b;
  transition: all 0.3s ease;
}

.thermal-e  a::before {
  content: "";
  background-image: url(../img/info/window.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.04vw;
  height: 1.56vw;
}

.thermal-e a:hover {
  opacity: 0.75;
}

.thermal-files.mt1 {
  margin-top: 2.51vw;
}

.thermal-files.mt1 li a{
  font-size: 0.94vw;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
  flex-direction: row-reverse;
  border-bottom: 1px solid #322e2d;
  gap: 0.7vw;
}

.thermal-files.mt1 li a::before {
  background-image: url(../img/info/window.svg);
}

.bottom .thermal .thermal-content.pt{
  padding-top: 0;
  padding-bottom: 0;
}


.shower .top-content.pt .thermal-content{
     padding-top: 5.42vw;
     padding-bottom: 12.41vw;
}

.bottom .thermal.style .top-content{
  position: static;
  padding-top: 4.76vw;
}

.bottom .thermal.shower .top-content{
  position: static;
}

@media (max-width:767px) {
  .thermal-e {
    font-size: 3.2vw;
    letter-spacing: 0.1em;
    line-height: 2.1111111111;
  }


  .thermal-files.mt1 {
    margin-top: 2.51vw;
  }

  .thermal-files.mt1 li a{
    font-size: 3.2vw;
  }

  .bottom .thermal .thermal-content.pt{
    padding-top:  10.42vw;
    padding-bottom: 12.41vw;
  }

  .shower .top-content.pt .thermal-content{
    padding-top:  10.42vw;
    padding-bottom: 16.41vw;
}

  .thermal-e  a::before {
    content: "";
    background-image: url(../img/info/window.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 5.04vw;
    height: 4.56vw;
}

}

.top_btn .norm {
    display: block;
}
.top_btn .inverted {
    display: none;
}

.top_btn.is-inverted .norm {
    display: none;
}
.top_btn.is-inverted .inverted {
    display: block;
}



/*wovnタグ非表示*/
#wovn-translate-widget[wovn].type-default {
  display: none !important;
}


.footer__sub-m {
  gap: 0 15px;
}

@media (min-width: 768px) {
  .footer__u {
    margin-bottom: 1.51vw;
    gap: 7.05vw;
  }
}


a.footer__num:visited {
  color: #fff;
}
a.footer__num:hover {
  color: #fff;
  opacity: 1;
}
@media (min-width: 768px) {
  .footer__num {
    pointer-events: none;
  }
}


.page-title h1 span {
  display: block;
}