@charset "UTF-8";

:root {
  --bg: #FFFCF2;
  --ink: #1A1717;
  --line: #D9D7D7;
  --mint: #a8c7ba;
  --blue: #2f5e7e;
}

@font-face {
  font-family: "Arizona Flare";
  src: url("../fonts/ABCArizonaFlare-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #F7F6F0;
  color: var(--ink);
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 300;
  font-feature-settings: "palt";
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.arrow::after {
  content: "↗";
  font-size: 0.85em;
  margin-left: 0.35em;
}

.grid_wrap {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .grid_wrap {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

.wrap {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .wrap {
    padding-inline: 0;
  }
}

.mono-svg {
  height: 0.8em;
  width: auto;
}

.sp_br {
  display: none;
}

@media (max-width: 820px) {
  .sp_br {
    display: block;
  }
}

header {
  --hp: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.3888888889vw 1.3888888889vw;
}

@media (max-width: 820px) {
  header {
    padding: 4.2666666667vw 6.4vw 4.2666666667vw 2.6666666667vw;
    align-items: center;
  }
}

header {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header_left {
  width: 50%;
}

.logo {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-weight: 400;
  width: calc(37.1527777778vw - 24.1493055556vw * var(--hp));
  letter-spacing: 0.08em;
  line-height: 1;
  transform-origin: left top;
  transition: transform 0.3s linear;
  will-change: transform;
  display: block;
}

@media (max-width: 820px) {
  .logo {
    font-size: clamp(25.5px, 8vw, 45px);
    transform: none;
    width: 33.8666666667vw;
    transition: 0.3s ease-out;
    position: absolute;
    left: 2.6666666667vw;
    top: 4.2666666667vw;
  }
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .menu-open .page-header .logo {
    width: 50.1333333333vw;
  }
}

.menu-open .page-header .sp-reserve {
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.menu-open #muteToggle {
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

nav.gnav {
  display: flex;
  gap: 2.5vw;
}

@media (max-width: 820px) {
  nav.gnav {
    display: none;
  }
}

nav.gnav a {
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  transition: 0.4s;
  opacity: 0.6;
}

nav.gnav a:hover {
  opacity: 1;
}

nav.gnav a .mono-svg {
  height: 0.8em;
  width: auto;
}

nav.gnav a .gnav01 {
  height: 1em;
}

.hamburger,
.sp-reserve {
  display: none;
}

.hamburger span {
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(3.25px) rotate(20deg);
}

body.menu-open .hamburger span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-20deg);
}

@media (max-width: 820px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 95;
    height: 30px;
    justify-content: center;
  }

  .hamburger span {
    width: 8.2666666667vw;
    height: 1px;
    background: var(--ink);
  }

  .sp-reserve {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    transition: 0.4s;
    margin: 0 4vw 0 0;
  }

  .sp-reserve .dot {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    border-radius: 50%;
    background: var(--mint);
  }

  .sp-reserve .mono-svg {
    height: auto;
    width: 13.8666666667vw;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: #F7F6F0;
  padding: 24vw 0 10.6666666667vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s;
  overflow-y: auto;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu-overlay .m-sub {
  text-align: right;
  margin-bottom: 8vw;
  padding: 0 6.4vw;
}

.menu-overlay .m-sub a {
  display: block;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
}

.menu-overlay .m-sub a .t {
  font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
}

.menu-overlay .m-sub a .t .mono-svg {
  height: 0.85em;
  width: auto;
}

.menu-overlay .m-sub a:nth-child(2) .t .mono-svg {
  height: 1em;
}

.menu-overlay .m-contact {
  justify-content: flex-end;
  font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
  display: flex;
  align-items: center;
  margin: 0 6.4vw 6.6666666667vw 0;
}

.menu-overlay .m-contact a {
  display: flex;
  align-items: center;
}

.menu-overlay .m-contact a img {
  width: 29.3333333333vw;
  margin: 0 0 0 5px;
}

.menu-overlay .m-nav a {
  display: flex;
  align-items: flex-start;
  gap: 3.2vw;
  border-top: 1px solid rgba(26, 23, 23, 0.2);
}

.menu-overlay .m-nav a:last-child {
  border-bottom: 1px solid rgba(26, 23, 23, 0.2);
}

.menu-overlay .m-nav a .thumb {
  width: 25.6vw;
  flex-shrink: 0;
  overflow: hidden;
}

.menu-overlay .m-nav a span {
  display: block;
  line-height: 1.5;
}

.menu-overlay .m-nav a .en {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(13.6px, 4.2666666667vw, 24px);
  display: block;
}

.menu-overlay .m-nav a .jp {
  font-size: clamp(10px, 2.9333333333vw, 16.5px);
  opacity: 0.6;
}

.sp-reserve.is-hidden,
.mute-toggle.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page {
  position: relative;
}

.page-header {
  --hp: 0;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.3888888889vw 1.3888888889vw;
}

@media (max-width: 820px) {
  .page-header {
    padding: 4.2666666667vw 6.4vw 4.2666666667vw 2.6666666667vw;
    align-items: center;
  }
}

.page-header .header_left {
  width: 50%;
}

.page-header .logo {
  display: block;
  width: calc(37.1527777778vw - 24.1493055556vw * var(--hp));
  transform-origin: left top;
  transition: width 0.3s linear;
  line-height: 1;
}

@media (max-width: 820px) {
  .page-header .logo {
    width: 33.8666666667vw;
  }
}

.page-header .logo img {
  width: 100%;
  height: auto;
  display: block;
}

.page:not(.loop-clone) .page-header {
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page:not(.loop-clone) .page-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.page:not(.loop-clone) .content-zone {
  padding-top: 10.4166666667vw;
}

@media (max-width: 820px) {
  .page:not(.loop-clone) .content-zone {
    padding-top: 18.6666666667vw;
  }
}

.hero.loop-zone-pc {
  cursor: auto;
}

@media (max-width: 820px) {
  .hero.loop-zone-pc {
    cursor: auto;
  }
}

@media (min-width: 821px) {
  .backtop {
    min-height: 15.2777777778vw;
  }
}

.hero-backtop-label {
  position: fixed;
  left: -50px;
  top: -20px;
  z-index: 200;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform;
}

.hero-backtop-label .mono-svg {
  height: 1em;
  width: auto;
}

@media (max-width: 820px) {
  .hero-backtop-label {
    display: none;
  }
}

.hero-backtop-label.is-following {
  opacity: 1;
}

.m-nav_01 {
  width: 17.6vw;
}

.m-nav_02 {
  width: 17.6vw;
}

.m-nav_03 {
  width: 12.5333333333vw;
}

.m-nav_04 {
  width: 17.6vw;
}

@media (max-width: 820px) {
  .page.loop-clone:not(.loop-start) .page-header .logo {
    width: 50.1333333333vw;
    transition: width 0.5s ease 1s;
  }
}

.hero {
  position: relative;
  padding: 16vw 0 15.2777777778vw 0;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 23vw 0 18.6666666667vw 0;
  }
}

.hero .hero-backtop {
  grid-column: 1/-1;
  min-height: 0;
  text-align: center;
}

.hero .hero-backtop a {
  display: none;
}

@media (max-width: 820px) {
  .hero .hero-backtop {
    margin-top: -3vw;
    margin-bottom: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .hero-backtop a {
    display: inline-block;
  }

  .hero .hero-backtop a .mono-svg {
    width: 28.2666666667vw;
    height: auto;
  }
}

.hero_inner {
  grid-column: 5/21;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 820px) {
  .hero_inner {
    width: auto;
    grid-column: 3/13;
  }
}

.hero_inner .hero-vert {
  position: absolute;
  top: -10.0694444444vw;
  right: 10%;
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
  z-index: 2;
  width: 12.0138888889vw;
  height: 20.8333333333vw;
}

@media (max-width: 820px) {
  .hero_inner .hero-vert {
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    top: -11.4666666667vw;
    right: -8%;
    width: 33.3333333333vw;
    height: 72vw;
  }
}

.hero_inner .hero-vert span.ch {
  position: absolute;
}

.hero_inner .hero-vert span.q {
  font-size: clamp(11.52px, 1.1111111111vw, 24px);
}

@media (max-width: 820px) {
  .hero_inner .hero-vert span.q {
    font-size: clamp(11.9px, 3.7333333333vw, 21px);
  }
}

.hero_inner .hero-vert .c0 {
  top: 0;
  left: 0;
}

.hero_inner .hero-vert .c1 {
  top: 1.25vw;
  left: 1.4583333333vw;
}

.hero_inner .hero-vert .c2 {
  top: 4.1666666667vw;
  left: 3.0555555556vw;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
}

.hero_inner .hero-vert .c3 {
  top: 8.6805555556vw;
  left: 5.2083333333vw;
}

.hero_inner .hero-vert .c4 {
  top: 10.4166666667vw;
  left: 5.2083333333vw;
}

.hero_inner .hero-vert .c5 {
  top: 13.5416666667vw;
  left: 6.9444444444vw;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
}

.hero_inner .hero-vert .c6 {
  top: 18.0555555556vw;
  left: 8.6805555556vw;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
}

.hero_inner .hero-vert .c7 {
  top: 20.1388888889vw;
  left: 10.4166666667vw;
}

@media (max-width: 820px) {
  .hero_inner .hero-vert .c0 {
    top: 0;
    left: 0;
  }

  .hero_inner .hero-vert .c1 {
    top: 4vw;
    left: 4.5333333333vw;
  }

  .hero_inner .hero-vert .c2 {
    top: 13.3333333333vw;
    left: 9.6vw;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
  }

  .hero_inner .hero-vert .c3 {
    top: 26.6666666667vw;
    left: 16vw;
  }

  .hero_inner .hero-vert .c4 {
    top: 33.3333333333vw;
    left: 16vw;
  }

  .hero_inner .hero-vert .c5 {
    top: 45.3333333333vw;
    left: 21.3333333333vw;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
  }

  .hero_inner .hero-vert .c6 {
    top: 58.6666666667vw;
    left: 28.8vw;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
  }

  .hero_inner .hero-vert .c7 {
    top: 66.6666666667vw;
    left: 32vw;
  }
}

.hero_inner .hero-vert .mono-svg {
  height: 0.4em;
  width: auto;
}

.hero-img {
  width: 100%;
  height: auto;
}

.hero-loop {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .hero-loop {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

.hero-loop {
  cursor: pointer;
  height: 22vh;
  padding-block: 0;
  overflow: hidden;
}

@media (max-width: 820px) {
  .hero-loop {
    height: 15vh;
  }
}

.hero-loop .hero_inner {
  grid-column: 5/21;
  margin: 0 auto;
  margin-top: 0;
  position: relative;
}

@media (max-width: 820px) {
  .hero-loop .hero_inner {
    width: auto;
    grid-column: 3/13;
  }
}

.page:not(.loop-clone) .hero-backtop {
  display: none;
}

.hero-backtop {
  transition: opacity 0.6s ease;
}

.loop-start .hero-backtop {
  opacity: 0;
  pointer-events: none;
}

.content-zone {
  position: relative;
}

.reserve-side {
  position: fixed;
  left: 2.0833333333vw;
  bottom: 2.0833333333vw;
  z-index: 20;
  display: block;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .reserve-side {
    display: none;
  }
}

.reserve-side.is-pinned {
  position: absolute;
  bottom: auto;
}

.reserve-side .jp {
  font-size: clamp(11.52px, 1.1111111111vw, 24px);
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", sans-serif;
  margin: 0 0 -1px 0;
}

.reserve-side .en {
  font-size: clamp(11.52px, 1.1111111111vw, 24px);
  padding: 0 0 3px 0;
}

.reserve-side .en:after {
  bottom: 3px;
}

.reserve-side .t {
  font-size: clamp(11.52px, 1.1111111111vw, 24px);
  display: inline-block;
}

.reserve-side .t .mono-svg {
  height: auto;
  width: 4.8611111111vw;
  vertical-align: baseline;
  margin: 0;
}

.reserve-side .dot {
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-radius: 50%;
  background: var(--mint);
  margin-top: 5px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reserve-side:hover .en.link-arrow::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.reserve-side:hover .en.link-arrow .arr .a1 {
  transform: translate(120%, -120%);
}

.reserve-side:hover .en.link-arrow .arr .a2 {
  transform: translate(0, 0);
}

.eyebrow {
  font-weight: 300;
  display: flex;
  align-items: center;
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
}

@media (max-width: 820px) {
  .eyebrow {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

.eyebrow .mono-svg {
  height: auto;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}

.section_lead {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(20.16px, 1.9444444444vw, 42px);
  font-weight: 300;
}

@media (max-width: 820px) {
  .section_lead {
    font-size: clamp(17.85px, 5.6vw, 31.5px);
  }
}

.concept {
  padding: 2.7777777778vw 0 9.7222222222vw;
}

@media (max-width: 820px) {
  .concept {
    padding: 2.6666666667vw 6.4vw 21.3333333333vw;
  }
}

.concept-grid {
  width: 100%;
}

.concept-grid .eyebrow {
  grid-column: span 24;
}

@media (max-width: 820px) {
  .concept-grid .eyebrow {
    margin-bottom: 6.6666666667vw;
  }
}

.concept-grid .concept-lead {
  grid-column: 13/24;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(20.16px, 1.9444444444vw, 42px);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .concept-grid .concept-lead {
    font-size: clamp(17.85px, 5.6vw, 31.5px);
    grid-column: 1/15;
    line-height: 1.5;
  }
}

.concept .concept_sub {
  align-items: center;
  margin: 6vw 0;
}

@media (max-width: 820px) {
  .concept .concept_sub {
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}

.concept .dandelion {
  grid-column: 6/10;
}

@media (max-width: 820px) {
  .concept .dandelion {
    width: 44vw;
    margin: 21.3333333333vw 0;
  }
}

.concept-body {
  grid-column: 15/24;
}

.concept .concept-body {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
  line-height: 225%;
  /* 33.75px */
}

@media (max-width: 820px) {
  .concept .concept-body {
    width: 100%;
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    gap: 8.5333333333vw;
  }
}

.concept .concept-body .concept-body-border {
  position: relative;
}

.concept .concept-body .concept-body-border:after {
  content: "";
  position: absolute;
  background: var(--ink);
  height: 1px;
  width: 45px;
  top: 50%;
  transform: translate(100, -50%);
}

@media (max-width: 820px) {
  .concept .concept-body .concept-body-border:after {
    width: 40px;
  }
}

.service-band {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .service-band {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

.service-band {
  align-items: start;
  padding-inline: 0;
  border-bottom: 1px solid var(--line);
}

.service-sticky {
  grid-column: 1/15;
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc(100% + 1.3888888889vw);
}

@media (max-width: 820px) {
  .service-sticky {
    grid-column: 1/24;
    position: static;
    height: auto;
  }
}

.service-sticky .service-sticky-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 820px) {
  .service-sticky .service-sticky-inner {
    display: none;
  }
}

.service-sticky .sv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-sticky .sv-img.is-active {
  opacity: 1;
}

@media (max-width: 820px) {
  .service-sticky .sv-img {
    position: absolute;
  }
}

.service-sticky__sp {
  display: none;
}

@media (max-width: 820px) {
  .service-sticky__sp {
    display: block;
  }
}

.service-text {
  grid-column: 15/25;
}

@media (max-width: 820px) {
  .service-text {
    grid-column: 1/15;
    padding-top: 10.6666666667vw;
  }
}

.service-head {
  padding: 0 0 0 1.3888888889vw;
}

@media (max-width: 820px) {
  .service-head {
    padding: 0 6.4vw 0 6.4vw;
  }
}

.service-head .service-head__ttl {
  padding: 1.3888888889vw 0 1.3888888889vw 0;
  margin: 4.1666666667vw 0 0 0;
}

@media (max-width: 820px) {
  .service-head .service-head__ttl {
    margin: 32vw 0 6.6666666667vw 0;
  }
}

.service-head .service-head__ttl__jp {
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
}

@media (max-width: 820px) {
  .service-head .service-head__ttl__jp {
    font-size: clamp(12.75px, 4vw, 22.5px);
  }
}

.menu-row {
  display: grid;
  grid-template-columns: 19.4444444444vw 1fr;
  gap: 2.7777777778vw;
  position: relative;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .menu-row {
    grid-template-columns: 49.8666666667vw 1fr;
    gap: 4vw;
  }
}

.menu-row.mr-desc {
  grid-template-columns: 1fr;
  border: none;
}

.menu-row .thumb {
  aspect-ratio: 280/220;
}

@media (max-width: 820px) {
  .menu-row .thumb {
    max-width: 100%;
    aspect-ratio: 1/1;
  }
}

.menu-row .menu-label .serif {
  font-size: clamp(12.96px, 1.25vw, 27px);
  line-height: 1.5;
  margin: 10px 0 5px 0;
  display: block;
}

@media (max-width: 820px) {
  .menu-row .menu-label .serif {
    font-size: clamp(13.6px, 4.2666666667vw, 24px);
    margin: 5px 0 5px 0;
  }
}

.menu-row .menu-label .serif .mono-svg {
  height: auto;
  width: auto;
}

.menu-row .menu-label .jp {
  font-size: clamp(10px, 0.8333333333vw, 18px);
  opacity: 0.6;
}

@media (max-width: 820px) {
  .menu-row .menu-label .jp {
    font-size: clamp(10px, 2.9333333333vw, 16.5px);
  }
}

.menu_content__body {
  padding: 6.9444444444vw 8.3333333333vw 8.3333333333vw 6.9444444444vw;
}

@media (max-width: 820px) {
  .menu_content__body {
    padding: 16vw 6.4vw 26.6666666667vw 6.4vw;
  }
}

.menu_content__body .menu_content__desc {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

@media (max-width: 820px) {
  .menu_content__body .menu_content__desc {
    gap: 13.3333333333vw;
  }
}

.menu_content__body .menu-intro {
  font-size: clamp(12.96px, 1.25vw, 27px);
  margin-bottom: 2.5vw;
  font-feature-settings: "palt";
}

@media (max-width: 820px) {
  .menu_content__body .menu-intro {
    font-size: clamp(13.6px, 4.2666666667vw, 24px);
    margin-bottom: 13.3333333333vw;
  }
}

.menu_content__body h3 {
  font-size: clamp(11.52px, 1.1111111111vw, 24px);
}

@media (max-width: 820px) {
  .menu_content__body h3 {
    font-size: clamp(11.9px, 3.7333333333vw, 21px);
  }
}

.menu_content__body p {
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
  opacity: 0.6;
}

@media (max-width: 820px) {
  .menu_content__body p {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

.salon {
  padding: 9.7222222222vw 0;
}

@media (max-width: 820px) {
  .salon {
    padding: 0 0 21.3333333333vw 0;
  }
}

.salon-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .salon-grid {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

.salon-grid {
  align-items: start;
  padding-inline: 0;
  row-gap: 2.7777777778vw;
}

@media (max-width: 820px) {
  .salon-grid {
    row-gap: 0vw;
  }
}

.salon-water {
  grid-column: 1/7;
  grid-row: 1;
}

@media (max-width: 820px) {
  .salon-water {
    grid-column: 6/15;
    grid-row: 1;
  }
}

.salon-info {
  grid-column: 7/15;
  grid-row: 1;
}

@media (max-width: 820px) {
  .salon-info {
    grid-column: 1/15;
    grid-row: 3;
    margin-top: 5.3333333333vw;
    padding: 0 6.4vw;
  }
}

.salon-info .serif {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(20.16px, 1.9444444444vw, 42px);
  margin: 0 0 0.6944444444vw;
}

.salon-info .salon-desc {
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  line-height: 1.9;
  margin-bottom: 2.0833333333vw;
}

@media (max-width: 820px) {
  .salon-info .salon-desc {
    font-size: clamp(10.2px, 3.2vw, 18px);
    margin-bottom: 8vw;
  }
}

.salon-portrait {
  grid-column: 17/25;
  grid-row: 1;
  aspect-ratio: 3/4;
}

@media (max-width: 820px) {
  .salon-portrait {
    grid-column: 1/9;
    grid-row: 2;
    aspect-ratio: 1/1;
  }
}

.salon-ttl__pc {
  display: block;
}

@media (max-width: 820px) {
  .salon-ttl__pc {
    display: none;
  }
}

.salon-ttl__sp {
  display: none;
}

@media (max-width: 820px) {
  .salon-ttl__sp {
    display: block;
    grid-column: 10/15;
    grid-row: 2;
    margin: 0 0 0 -15px;
  }
}

.salon-ttl__sp .serif {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(23.8px, 7.4666666667vw, 42px);
  line-height: 1.2;
}

.info-row {
  display: grid;
  grid-template-columns: 8.3333333333vw 1fr;
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
  padding: 0.9722222222vw 0 1.3888888889vw 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}

@media (max-width: 820px) {
  .info-row {
    font-size: clamp(10.2px, 3.2vw, 18px);
    display: block;
    padding: 2.6666666667vw 0 4vw 0;
  }
}

.info-row:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.info-row .k {
  line-height: 1;
}

@media (max-width: 820px) {
  .info-row .k {
    display: block;
    margin-bottom: 1.3333333333vw;
  }
}

.block {
  margin-top: 2.4305555556vw;
}

.block .eyebrow {
  margin-bottom: 0.4861111111vw;
  padding-left: 8.3333333333vw;
}

@media (max-width: 820px) {
  .block .eyebrow {
    padding-left: 0vw;
    margin-bottom: 2.6666666667vw;
  }
}

.block .line {
  padding-left: 8.3333333333vw;
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
  line-height: 1.8;
}

@media (max-width: 820px) {
  .block .line {
    padding-left: 0vw;
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

.block .link-arrow__google_map {
  margin-bottom: 0.8333333333vw;
}

@media (max-width: 820px) {
  .block .link-arrow__google_map {
    margin-bottom: 4.8vw;
  }
}

@media (max-width: 820px) {
  .block:last-child {
    margin-top: 6.6666666667vw;
  }
}

.link-arrow {
  width: fit-content;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  cursor: pointer;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.link-arrow .t {
  position: relative;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

@media (max-width: 820px) {
  .link-arrow::after {
    display: none;
  }
}

.link-arrow .arr {
  position: relative;
  display: inline-block;
  width: 0.4861111111vw;
  height: 0.4861111111vw;
  overflow: hidden;
  flex: 0 0 auto;
  align-self: center;
}

@media (max-width: 820px) {
  .link-arrow .arr {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}

.link-arrow .arr img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.link-arrow .arr .a2 {
  transform: translate(-120%, 120%);
}

.link-arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.link-arrow:hover .arr .a1 {
  transform: translate(120%, -120%);
}

.link-arrow:hover .arr .a2 {
  transform: translate(0, 0);
}

.link-arrow .mono-svg {
  height: 0.9em;
  width: auto;
}

.recruit {
  padding: 9.7222222222vw 0 13.8888888889vw;
}

.recruit .recruit-card__img>img,
.recruit .recruit-person>img,
.recruit .recruit-green>img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .recruit {
    padding: 0 0 18.6666666667vw;
  }
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: 1.3888888889vw;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .recruit-grid {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
    padding-inline: 0;
  }
}

.recruit-grid {
  align-items: start;
  padding-inline: 0;
  position: relative;
}

@media (max-width: 820px) {
  .recruit-grid {
    display: block;
  }
}

.recruit .recruit-top {
  display: contents;
  background: transparent;
}

@media (max-width: 820px) {
  .recruit .recruit-top {
    display: block;
    background: url("../img/recruit_bg.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}

.recruit-blue {
  position: absolute;
  left: 0;
  top: 0;
  width: calc((100% - 1.3888888889vw * 23) / 24 * 14 + 1.3888888889vw * 13);
  height: 97.9166666667vw;
  z-index: 1;
}

@media (max-width: 820px) {
  .recruit-blue {
    position: static;
    height: auto;
  }
}

.recruit-blue>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 820px) {
  .recruit-blue>img {
    display: none;
  }
}

.recruit-blue__head {
  position: relative;
  z-index: 1;
  padding: 0 2.0833333333vw 0;
  color: #ffffff;
}

@media (max-width: 820px) {
  .recruit-blue__head {
    padding: 0 6.6666666667vw 0;
  }
}

.recruit-blue__head .eyebrow {
  color: #ffffff;
}

.recruit .recruit-copy {
  margin-top: 10.4166666667vw;
}

@media (max-width: 820px) {
  .recruit .recruit-copy {
    margin-top: 26.6666666667vw;
    margin-bottom: 13.3333333333vw;
    width: 100%;
  }
}

.recruit .recruit-copy .serif {
  display: block;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-weight: 300;
  font-size: clamp(20.16px, 1.9444444444vw, 42px);
  margin-bottom: 0.6944444444vw;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .recruit .recruit-copy .serif {
    font-size: clamp(17.85px, 5.6vw, 31.5px);
    white-space: nowrap;
  }
}

.recruit .recruit-copy .jp {
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
}

@media (max-width: 820px) {
  .recruit .recruit-copy .jp {
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    white-space: nowrap;
  }
}

.recruit-rcol {
  grid-column: 14/25;
  grid-row: 1;
  margin-top: 11.4583333333vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 820px) {
  .recruit-rcol {
    grid-column: auto;
    margin-top: 0;
    width: 100vw;
    align-items: stretch;
  }
}

.recruit-person {
  flex: none;
  width: calc((100% - 1.3888888889vw * 10) / 11 * 6 + 1.3888888889vw * 6);
}

@media (max-width: 820px) {
  .recruit-person {
    width: 93.6vw;
  }
}

.recruit-green {
  flex: none;
  width: 100%;
}

@media (max-width: 820px) {
  .recruit-green {
    width: 62vw;
    margin-left: auto;
  }
}

.recruit-card {
  grid-column: 9/19;
  grid-row: 1;
  position: relative;
  background: #F7F6F0;
  z-index: 3;
}

@media (max-width: 820px) {
  .recruit-card {
    position: relative;
    grid-column: auto;
    width: calc(100% - 6.4vw);
    margin: 0 0 0 auto;
    padding: 0 0 21.3333333333vw 14.6666666667vw;
  }
}

.recruit-card__img {
  margin-left: 6.9444444444vw;
}

@media (max-width: 820px) {
  .recruit-card__img {
    margin-left: 0;
  }
}

.recruit-card__body {
  padding: 4.1666666667vw 2.7777777778vw 7.6388888889vw 6.9444444444vw;
}

@media (max-width: 820px) {
  .recruit-card__body {
    padding: 10.6666666667vw 0 5.3333333333vw;
  }
}

.recruit-card__body p {
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
  line-height: 2.1;
  margin-bottom: 2.2222222222vw;
}

@media (max-width: 820px) {
  .recruit-card__body p {
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    margin-bottom: 10.6666666667vw;
  }
}

.recruit .recruit-link {
  margin-top: 0.4166666667vw;
  padding: 8px 16px 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  overflow: hidden;
  color: var(--ink);
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 820px) {
  .recruit .recruit-link {
    padding: 8px 16px 8px 16px;
  }
}

.recruit .recruit-link::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #332C29;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}

.recruit .recruit-link .t {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  line-height: 1.2;
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
}

.recruit .recruit-link .t .t1,
.recruit .recruit-link .t .t2 {
  display: block;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.recruit .recruit-link .t .t2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(110%);
}

.recruit .recruit-link .t .mono-svg {
  height: auto;
  width: 5.0694444444vw;
}

@media (max-width: 820px) {
  .recruit .recruit-link .t .mono-svg {
    height: auto;
    width: 19.4666666667vw;
  }
}

.recruit .recruit-link .arr {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  align-self: center;
  overflow: hidden;
  width: 0.625vw;
  height: 0.625vw;
}

@media (max-width: 820px) {
  .recruit .recruit-link .arr {
    width: 2.4vw;
    height: 2.4vw;
  }
}

.recruit .recruit-link .arr img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.63155 6.38517L5.36694 7.09228L8.59842 3.8608L8.60549 3.23148L5.37401 0L4.63155 0.714178L7.04278 3.0547H0L0 4.05879L7.03571 4.05172L4.63155 6.38517Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.63155 6.38517L5.36694 7.09228L8.59842 3.8608L8.60549 3.23148L5.37401 0L4.63155 0.714178L7.04278 3.0547H0L0 4.05879L7.03571 4.05172L4.63155 6.38517Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.recruit .recruit-link .arr .a2 {
  transform: translateX(-130%);
}

.recruit .recruit-link:hover {
  color: #F7F6F0;
}

.recruit .recruit-link:hover::after {
  opacity: 1;
}

.recruit .recruit-link:hover .t .t1 {
  transform: translateY(-110%);
}

.recruit .recruit-link:hover .t .t2 {
  transform: translateY(0);
}

.recruit .recruit-link:hover .arr .a1 {
  transform: translateX(130%);
}

.recruit .recruit-link:hover .arr .a2 {
  transform: translateX(0);
}

.link-arrow .foot_reserve {
  width: 10.1388888889vw;
  height: auto;
}

@media (max-width: 820px) {
  .link-arrow .foot_reserve {
    width: 36.8vw;
    height: auto;
  }
}

.link-arrow .foot_instagram {
  width: 5.2777777778vw;
  height: auto;
}

@media (max-width: 820px) {
  .link-arrow .foot_instagram {
    width: 19.4666666667vw;
    height: auto;
  }
}

.link-arrow .foot_recruitsite {
  width: 7.0833333333vw;
  height: auto;
}

@media (max-width: 820px) {
  .link-arrow .foot_recruitsite {
    width: 26.6666666667vw;
    height: auto;
  }
}

.link-arrow .foot_mail {
  width: 7.8472222222vw;
  height: auto;
}

@media (max-width: 820px) {
  .link-arrow .foot_mail {
    width: 30.1333333333vw;
    height: auto;
  }
}

.flink {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 7.6388888889vw;
  box-sizing: border-box;
  padding: 5.9027777778vw 0;
}

@media (max-width: 820px) {
  .flink {
    text-align: center;
    padding: 10.6666666667vw 0;
    min-height: 0;
  }
}

.flink:first-child {
  padding: 2.5vw 0;
}

@media (max-width: 820px) {
  .flink:first-child {
    padding: 6.6666666667vw 0;
  }
}

.flink:last-child {
  padding: 2.5vw 0;
}

@media (max-width: 820px) {
  .flink:last-child {
    padding: 6.6666666667vw 0;
  }
}

.flink .k {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  position: absolute;
  left: 2.0833333333vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(10.8px, 1.0416666667vw, 22.5px);
}

@media (max-width: 820px) {
  .flink .k {
    font-size: clamp(11.9px, 3.7333333333vw, 21px);
    position: static;
    transform: none;
    display: block;
    margin-bottom: 0vw;
  }
}

.flink .v {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

@media (max-width: 820px) {
  .flink .v {
    position: static;
    transform: none;
    display: inline-flex;
    font-size: clamp(10px, 0.9027777778vw, 19.5px);
  }
}

.flink:hover .v {
  color: var(--ink);
}

.flink:hover .v.link-arrow::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.flink:hover .v.link-arrow .arr .a1 {
  transform: translate(120%, -120%);
}

.flink:hover .v.link-arrow .arr .a2 {
  transform: translate(0, 0);
}

.foot-logo {
  padding: 2.7777777778vw 1.3888888889vw 2.7777777778vw 1.3888888889vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.foot-logo a {
  display: inline-block;
}

.foot-logo img {
  display: block;
  width: 37.1527777778vw;
  height: auto;
}

@media (max-width: 820px) {
  .foot-logo img {
    width: 49.8666666667vw;
    height: auto;
  }
}

@media (max-width: 820px) {
  .foot-logo {
    padding: 10.6666666667vw 0 8vw 6.4vw;
  }
}

.backtop {
  position: relative;
  min-height: 15.2777777778vw;
  cursor: pointer;
}

@media (max-width: 820px) {
  .backtop {
    min-height: 26.6666666667vw;
    cursor: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.backtop a {
  position: fixed;
  left: -30px;
  top: -27px;
  z-index: 200;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform;
}

@media (max-width: 820px) {
  .backtop a {
    position: static;
    opacity: 1;
  }
}

.backtop a.is-following {
  opacity: 1;
}

.backtop .mono-svg {
  height: 1em;
  width: auto;
}

.loop-cover {
  position: fixed;
  inset: 0;
  z-index: 9999;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
  overflow: hidden;
  background: #fff;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.loop-cover .hero_inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.loop-cover .hero-img {
  width: 100%;
  height: 100%;
}

.loop-cover .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loop-cover .hero-vert {
  display: none;
}

.loop-cover.is-gone {
  opacity: 0;
}

.content-zone.loop-peek {
  overflow: hidden;
  max-height: calc(23vw + 14vh);
}

@media (max-width: 820px) {
  .content-zone.loop-peek {
    max-height: calc(23vw + 22vh);
  }
}

.footer-zone.loop-hidden {
  display: none;
}

.loop-fade-start {
  opacity: 0 !important;
  transition: none !important;
}

.loop-fade-in {
  animation: loopFadeIn 1.2s ease both;
}

@keyframes loopFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5555555556vw;
  margin-top: 1.25vw;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
}

@media (max-width: 820px) {
  .view-more {
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    gap: 1.3333333333vw;
  }
}

.view-more .vm-arrow {
  display: inline-flex;
  flex: none;
  transition: 0.1s;
  padding: 5px 0;
  overflow: hidden;
}

@media (max-width: 820px) {
  .view-more .vm-arrow {
    overflow: visible;
    padding: 0;
  }
}

.view-more .vm-arrow img {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  display: block;
  transition: 0.1s;
}

@media (max-width: 820px) {
  .view-more .vm-arrow img {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.view-more .vm-label {
  position: relative;
  background: #F7F6F0;
}

.view-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease-out;
}

.view-more:hover .vm-arrow img {
  transform: translateY(125%);
  transition: transform 0.2s ease-in;
}

@media (max-width: 820px) {
  .view-more:hover .vm-arrow img {
    transform: translateY(0);
  }
}

.view-more:hover .vm-arrow--corner {
  opacity: 1;
  margin-right: -1.25vw;
  transition: 0.15s ease-out;
}

@media (max-width: 820px) {
  .view-more:hover .vm-arrow--corner {
    margin-right: 0vw;
  }
}

.view-more:hover::after {
  transform: scaleX(1);
  transition: 0.15s ease-out;
  transition-delay: 0.15s;
}

@media (max-width: 820px) {
  .view-more:hover::after {
    transform: scaleX(0);
  }
}

@media (max-width: 820px) {
  .view-more {
    font-size: clamp(11.05px, 3.4666666667vw, 19.5px);
    gap: 2.1333333333vw;
    margin-top: 3.7333333333vw;
  }

  .view-more .vm-arrow {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }

  .view-more:hover .vm-arrow--right {
    width: 2.9333333333vw;
    margin-left: 2.1333333333vw;
  }
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  /*background: rgba(0,0,0,.28);*/
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: #F7F6F0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 820px) {
  .service-modal__panel {
    width: 85%;
  }
}

.service-modal.is-open .service-modal__panel {
  transform: translateX(0);
}

.service-modal__hero {
  width: 100%;
  height: 52vh;
  overflow: hidden;
}

.service-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 820px) {
  .service-modal__hero {
    height: 38vh;
  }
}

.service-modal__cap {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.9444444444vw;
}

@media (max-width: 820px) {
  .service-modal__cap {
    padding-inline: 0;
  }
}

.service-modal__cap {
  margin-top: 1.7361111111vw;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .service-modal__cap {
    margin-top: 6.4vw;
    font-size: clamp(10.2px, 3.2vw, 18px);
    padding: 0 6.4vw;
  }
}

.service-modal__grid {
  display: grid;
  grid-template-columns: 1fr 14.5833333333vw;
  gap: 5.5555555556vw;
  align-items: start;
  padding: 6.9444444444vw 9.0277777778vw 12.5vw 6.9444444444vw;
}

@media (max-width: 820px) {
  .service-modal__grid {
    display: block;
    margin-top: 18.6666666667vw;
    padding: 0 6.4vw 24vw;
  }
}

.service-modal__main {
  min-width: 0;
}

.service-modal__lead {
  font-size: clamp(15.12px, 1.4583333333vw, 31.5px);
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 6.25vw;
}

@media (max-width: 820px) {
  .service-modal__lead {
    font-size: clamp(13.6px, 4.2666666667vw, 24px);
    margin-bottom: 18.6666666667vw;
  }
}

.service-modal__lead-body {
  max-width: 52.7777777778vw;
  margin-bottom: 8.3333333333vw;
}

@media (max-width: 820px) {
  .service-modal__lead-body {
    margin-bottom: 18.6666666667vw;
  }
}

.service-modal__lead-body p {
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  line-height: 2;
}

.service-modal__lead-body p+p {
  margin-top: 1.7361111111vw;
}

@media (max-width: 820px) {
  .service-modal__lead-body p {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

@media (max-width: 820px) {
  .service-modal__lead-body {
    max-width: none;
    margin-bottom: 14.9333333333vw;
  }

  .service-modal__lead-body p {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }

  .service-modal__lead-body p+p {
    margin-top: 4.8vw;
  }
}

.service-modal__index {
  position: sticky;
  top: 30px;
}

@media (max-width: 820px) {
  .service-modal__index {
    display: none;
  }
}

.service-modal__index .service-modal__index-inner {
  position: sticky;
  top: 2.7777777778vw;
}

.service-modal__index .eyebrow {
  margin-bottom: 3.4722222222vw;
}

.service-modal__index .smodal-index__nav {
  display: flex;
  flex-direction: column;
  gap: 1.7361111111vw;
}

.service-modal__index .smodal-index__nav a {
  display: block;
  text-decoration: none;
}

.service-modal__index .smodal-index__nav a .en {
  display: block;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  font-size: clamp(10px, 0.7638888889vw, 16.5px);
}

.service-modal__index .smodal-index__nav a .jp {
  display: block;
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  transition: 0.4s;
}

.smodal-sec+.smodal-sec {
  margin-top: 6.6666666667vw;
}

.smodal-sec {
  scroll-margin-top: 2.7777777778vw;
}

.smodal-sec__ttl {
  font-size: clamp(20.16px, 1.9444444444vw, 42px);
  font-weight: 300;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
}

@media (max-width: 820px) {
  .smodal-sec__ttl {
    font-size: clamp(15.12px, 1.4583333333vw, 31.5px);
  }
}

.smodal-sec__sub {
  font-size: clamp(10px, 0.9027777778vw, 19.5px);
  margin: 0 0 2.4305555556vw;
}

@media (max-width: 820px) {
  .smodal-sec__sub {
    font-size: clamp(10.2px, 3.2vw, 18px);
    margin-bottom: 6.4vw;
  }
}

.smodal-sec__body {
  max-width: 52.7777777778vw;
}

.smodal-sec__body p {
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  line-height: 2;
}

@media (max-width: 820px) {
  .smodal-sec__body p {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

.smodal-sec__body p+p {
  margin-top: 1.7361111111vw;
}

@media (max-width: 820px) {
  .smodal-sec+.smodal-sec {
    margin-top: 14.9333333333vw;
  }

  .smodal-sec__ttl {
    font-size: clamp(17px, 5.3333333333vw, 30px);
    margin-bottom: 1.6vw;
  }

  .smodal-sec__body {
    max-width: none;
  }

  .smodal-sec__body p {
    font-size: clamp(10.2px, 3.2vw, 18px);
    line-height: 2;
  }

  .smodal-sec__body p+p {
    margin-top: 4.8vw;
  }
}

.smodal-list {
  list-style: disc;
  padding-left: 1em;
  margin: 1.6666666667vw 0;
}

.smodal-list li {
  font-size: clamp(10.08px, 0.9722222222vw, 21px);
  line-height: 2;
}

@media (max-width: 820px) {
  .smodal-list {
    margin: 4.2666666667vw 0;
  }

  .smodal-list li {
    font-size: clamp(10.2px, 3.2vw, 18px);
  }
}

body.modal-open {
  overflow: hidden;
}

.intro {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background: #dfe4dc;
  align-items: center;
  justify-content: center;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
}

.intro #introNum {
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
}

.intro-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #9db3a4 0%, #a9bdb0 18%, #c3cfc4 40%, #e4e3da 70%, #efede4 100%);
  opacity: 0;
  animation: introGradFade 1.2s ease both;
}

.intro-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.23;
  mix-blend-mode: multiply;
  image-rendering: pixelated;
}

.intro-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #1A1717;
  height: 100%;
  width: 100%;
}

.intro-count {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", serif;
  animation: introGradFade 0.6s ease 1.2s both;
}

@media (max-width: 820px) {
  .intro-count {
    font-size: 15px;
  }
}

.intro-choice {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
}

.intro-choice.show {
  display: flex;
  animation: fadeUp 0.8s ease both;
}

.intro-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #1A1717;
  font-family: "Arizona Flare", "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 300;
}

.intro-btn.primary {
  font-size: 18px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1A1717;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .intro-btn.primary {
    font-size: 15px;
  }
}

.intro-btn.ghost {
  position: fixed;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  font-size: 15px;
  letter-spacing: 0.03em;
  opacity: 0.85;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .intro-btn.ghost {
    font-size: 12px;
  }
}

body.intro-done .intro {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes introNoiseScroll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 200px;
  }
}

@keyframes introNoiseFall {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(200px);
  }
}

@keyframes introGradFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mute-toggle {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 252, 243, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding: 0;
}

@media (max-width: 820px) {
  .mute-toggle {
    right: 16px;
    bottom: 16px;
  }
}

body.intro-done .mute-toggle {
  display: flex;
  opacity: 1;
}

.mute-toggle .sound-ellipse {
  width: 44px;
  height: 44px;
  display: block;
}

.mute-toggle .wave-scroll {
  animation: muteWaveShift 1.4s linear infinite;
}

.mute-toggle .wave-morph {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mute-toggle .wave-path {
  vector-effect: non-scaling-stroke;
}

.mute-toggle .mute-line {
  display: none;
}

.mute-toggle.muted .wave-scroll {
  animation-play-state: paused;
}

.mute-toggle.muted .wave-morph {
  transform: scaleY(0.0007);
}

@keyframes muteWaveShift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-22px);
  }
}

@keyframes loopFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.loop-fade nav.gnav a {
  opacity: 0;
  animation: loopFadeUp 0.7s ease forwards;
  animation-delay: 0.5s;
}

.hero.loop-fade .hero-vert .ch {
  opacity: 0;
  animation: loopFadeUp 0.7s ease forwards;
  animation-delay: 0.5s;
}

/*# sourceMappingURL=style.css.map */
