:root {
  --color-main: #faf6ed;
  --color-base: #cadbc9;
  --color-accent: #99bf97;
  --color-text: #3f3b37;
  --color-muted: #606060;
  --color-white: #fff;
  --font-serif:
    "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
    serif;
  --font-sans:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
    sans-serif;
  --inner: min(100% - 48px, 1120px);
  --wide: min(100% - 64px, 1780px);
  --font-base-size: 40px;
  --content-body-size: 40px;
  --intro-body-size: 40px;
  --service-body-size: 40px;
  --profile-body-size: 36px;
  --font-title-size: 60px;
  --font-profile-name-size: 48px;
  --font-profile-label-size: 33px;
  --font-profile-detail-size: 30px;
  --section-pad-x: 200px;
  --menu-pad-x: 556px;
  --section-space: 160px;
  --hero-image-height: 872px;
  --header-nav-font-size: clamp(19px, calc(2.1875vw - 7px), 35px);
  --header-nav-gap: 70px;
  --header-nav-en-size: clamp(16px, calc(1.875vw - 6px), 30px);
  --footcare-note-size: 34px;
  --intro-bg-width: min(1145px, 82vw);
  --intro-heading-gap: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-main);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: var(--font-base-size);
  line-height: 1.9;
  letter-spacing: -1px;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: relative;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(250, 246, 237, 0.94);
  overflow: visible;
}

.site-header__inner {
  width: calc(100% - 40px);
  height: 212px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}

.site-header__logo {
  display: block;
  width: 170px;
}

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

.global-nav {
  justify-self: end;
  width: min(1120px, calc(100vw - 460px));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.global-nav__list {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--header-nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__list a {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #707070;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.global-nav__list span {
  font-size: var(--header-nav-font-size);
}

.global-nav__list small {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: var(--header-nav-en-size);
  font-weight: 700;
}

.global-nav__sns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.global-nav__sns a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.global-nav__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-nav__close,
.global-nav__reserve,
.global-nav__logo,
.menu-button {
  display: none;
}

.reserve-circle {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 25;
  width: 220px;
  display: block;
}

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

.hero {
  padding-top: 0;
}

.hero__image {
  width: auto;
  height: var(--hero-image-height);
  margin-left: clamp(80px, 7.2917vw, 140px);
  margin-right: 0;
  overflow: hidden;
}

.hero__image img {
  max-width: none;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: scale(1.02);
  transform-origin: left top;
}

.section {
  padding: calc(var(--section-space) / 2) 0;
}

.section__inner {
  width: auto;
  margin-left: var(--section-pad-x);
  margin-right: var(--section-pad-x);
}

.section-heading {
  position: relative;
  margin-bottom: 28px;
}

.section-heading--center {
  text-align: center;
}

.section-heading__mark {
  position: absolute;
  left: 50%;
  top: -80px;
  width: min(620px, 82vw);
  height: 280px;
  object-fit: contain;
  transform: translateX(-50%);
  opacity: 0.55;
  pointer-events: none;
}

.section-heading__en {
  display: none;
}

.section-heading__ja {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: var(--font-title-size);
  font-weight: 600;
  line-height: 1.45;
}

.intro .section-heading__ja {
  color: #606060;
}

.intro {
  padding-top: clamp(74px, 6.8vw, 128px);
  min-height: 760px;
  display: grid;
  align-items: center;
}

.intro .section__inner {
  position: relative;
}

.intro .section__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: var(--intro-bg-width);
  aspect-ratio: 1144.916 / 598.013;
  background: url("../images/int.svg") center top / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.intro .section-heading__mark {
  display: none;
}

.intro .section-heading,
.intro .intro__body {
  position: relative;
  z-index: 1;
}

.intro .section-heading {
  max-width: var(--intro-bg-width);
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.intro__body {
  max-width: var(--intro-bg-width);
  margin: var(--intro-heading-gap) auto 0;
  padding: 0;
  text-align: center;
}

.service__content,
.profile__content {
  width: 100%;
  padding: 0;
}

.intro__body p,
.service__content p,
.profile__content p,
.section-lead {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
}

.intro__body p {
  font-size: var(--intro-body-size);
}

.service__content p,
.section-lead {
  font-size: var(--service-body-size);
}

.profile__content p {
  font-size: var(--profile-body-size);
}

.intro__body p + p {
  margin-top: 0;
}

.service__content p + p {
  margin-top: 12px;
}

.intro__hello {
  margin-bottom: 4px;
}

.service {
  background: var(--color-main);
  min-height: 900px;
  display: grid;
  align-items: center;
}

.service__grid,
.profile__grid {
  display: grid;
  grid-template-columns: clamp(390px, 30.42vw, 584px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 4.48vw, 86px);
  margin-top: 56px;
}

.service__image img,
.profile__image img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.footcare {
  background: var(--color-main);
  min-height: 900px;
  display: grid;
  align-items: center;
}

.footcare .section__inner {
  display: grid;
  grid-template-columns: clamp(390px, 30.42vw, 584px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 4.48vw, 86px);
}

.footcare .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-lead {
  grid-column: 2;
  max-width: none;
  margin: 0;
  text-align: left;
}

.section-note {
  display: block;
  margin-top: 0.6em;
  font-size: var(--footcare-note-size);
}

.case-grid {
  grid-column: 1;
  grid-row: 2;
  max-width: 584px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-grid img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.profile {
  min-height: 1050px;
  display: grid;
  align-items: center;
}

.profile__content h3 {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: var(--font-profile-name-size);
  font-weight: 500;
  line-height: 1.35;
}

.profile-list {
  display: grid;
  gap: 8px;
  margin: 34px 0 0;
  color: var(--color-muted);
}

.profile-list div {
  display: block;
  font-size: 14px;
}

.profile-list dt {
  color: #606060;
  font-size: var(--font-profile-label-size);
  font-weight: 400;
}

.profile-list dd {
  margin: 0;
  font-size: var(--font-profile-detail-size);
}

.price {
  min-height: 0;
  display: block;
  background: var(--color-main);
}

.price .section-heading__ja {
  color: var(--color-accent);
}

.price .section__inner {
  margin-left: 0;
  margin-right: 0;
}

.price .section-heading {
  margin-left: var(--section-pad-x);
  margin-right: var(--section-pad-x);
}

.price-board {
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 48px);
  margin-left: 0;
  margin-right: 0;
  padding: clamp(36px, 5vw, 96px) var(--menu-pad-x);
  display: grid;
  justify-items: center;
  gap: clamp(28px, 3.2vw, 62px);
  background:
    linear-gradient(rgba(250, 246, 237, 0.06), rgba(250, 246, 237, 0.06)),
    url("../images/menu_bg.png") center / cover no-repeat;
}

.price-card {
  width: 100%;
  max-width: 100%;
  justify-self: center;
  padding: clamp(18px, 2.5vw, 42px) clamp(24px, 3.2vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  color: #606060;
}

.price-card h3 {
  margin: 0 0 14px;
  color: #606060;
  font-size: clamp(18px, 1.8vw, 34px);
  font-weight: 700;
  text-align: center;
}

.price-card h4 {
  margin: clamp(15px, 1.4vw, 26px) 0 4px;
  color: #606060;
  font-size: clamp(16px, 1.45vw, 28px);
  font-weight: 600;
  text-align: left;
}

.price-line {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: baseline;
  gap: clamp(7px, 0.8vw, 14px);
  color: #606060;
  font-size: clamp(13px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.price-name {
  min-width: 0;
}

.price-dots {
  min-width: 18px;
  border-bottom: clamp(2px, 0.18vw, 4px) dotted currentColor;
  transform: translateY(-0.22em);
}

.price-value {
  white-space: nowrap;
}

.price-sub {
  margin: 0;
  color: #606060;
  font-size: clamp(11px, 0.8vw, 15px);
  font-weight: 500;
  line-height: 1.8;
}

.price-rule {
  margin: clamp(12px, 1.4vw, 24px) 0;
  border: 0;
  border-top: 1px dotted rgba(96, 96, 96, 0.7);
}

.price-simple {
  display: flex;
  justify-content: center;
  color: #606060;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.75;
}

.price-line em,
.price-simple em {
  display: inline-block;
  min-width: 34px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 99px;
  background: #b8dfb7;
  color: #606060;
  font-size: 10px;
  font-style: normal;
  line-height: 1.6;
  text-align: center;
}

.price-card__note {
  margin: 0.4em 0 0;
  color: #606060;
  font-size: clamp(11px, 0.8vw, 15px);
  font-weight: 400;
  text-align: center;
}

.price-card__note--right {
  text-align: right;
}

@media (min-width: 521px) {
  .price-board {
    padding-right: min(var(--menu-pad-x), calc((100vw - 400px) / 2));
    padding-left: min(var(--menu-pad-x), calc((100vw - 400px) / 2));
  }

  .price-card {
    min-width: 400px;
  }

  .price-card h3 {
    font-size: clamp(20px, calc(1.8vw + 2px), 36px);
  }

  .price-card h4 {
    font-size: clamp(18px, calc(1.45vw + 2px), 30px);
  }

  .price-line {
    font-size: clamp(15px, calc(1.05vw + 2px), 22px);
  }

  .price-sub,
  .price-card__note {
    font-size: clamp(13px, calc(0.8vw + 2px), 17px);
  }

  .price-simple {
    font-size: clamp(16px, calc(1.25vw + 2px), 26px);
  }

  .price-travel {
    font-size: clamp(12px, calc(0.75vw + 2px), 16px);
  }
}

@media (min-width: 901px) {
  .price-board {
    padding-right: min(var(--menu-pad-x), calc((100vw - 580px) / 2));
    padding-left: min(var(--menu-pad-x), calc((100vw - 580px) / 2));
  }

  .price-card {
    min-width: 580px;
  }
}

.price-line--traffic {
  margin-top: clamp(14px, 1.8vw, 30px);
  font-size: clamp(14px, 1.35vw, 26px);
}

.price-travel {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 10px;
  margin-top: clamp(8px, 1vw, 16px);
  color: #606060;
  font-size: clamp(10px, 0.75vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 521px) {
  .price-line--traffic {
    font-size: clamp(16px, calc(1.35vw + 2px), 28px);
  }

  .price-travel {
    font-size: clamp(12px, calc(0.75vw + 2px), 16px);
  }
}

.instagram {
  min-height: 0;
  background: var(--color-main);
  text-align: center;
}

.instagram__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  margin: 0 0 clamp(28px, 3.2vw, 62px);
  color: #606060;
  font-family: var(--font-sans);
  font-size: clamp(23px, 2.35vw, 45px);
  font-weight: 700;
  line-height: 1.2;
}

.instagram__title img {
  width: clamp(24px, 2.2vw, 42px);
  height: auto;
}

.instagram-grid {
  max-width: 1385px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.instagram-grid img {
  aspect-ratio: 1;
  object-fit: cover;
}

.instagram-feed {
  width: 100%;
  max-width: 1385px;
  margin: 0 auto;
}

.instagram-feed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 18vw, 340px);
  padding: clamp(24px, 3vw, 56px);
  border: 1px solid rgba(96, 96, 96, 0.28);
  background: rgba(255, 255, 255, 0.45);
  color: #606060;
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.05vw, 20px);
  line-height: 1.8;
  text-align: center;
}

.instagram-feed-placeholder p {
  margin: 0;
}

.instagram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(112px, 23.4375vw, 450px);
  min-height: clamp(34px, 3.6458vw, 70px);
  margin-top: clamp(18px, 2vw, 38px);
  padding: 0 24px;
  border: 1px solid var(--color-muted);
  background: var(--color-white);
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  min-height: clamp(250px, 19vw, 360px);
  padding: clamp(34px, 3.4vw, 64px) 0;
  background: #c9ddca;
}

.site-footer__inner {
  width: min(100% - 72px, 1848px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(180px, 15.5vw, 300px) 1fr minmax(340px, 560px);
  align-items: center;
  gap: clamp(36px, 5.5vw, 104px);
}

.site-footer__logo {
  width: clamp(176px, 14vw, 270px);
}

.footer-reserve {
  justify-self: end;
  align-self: end;
  width: min(31vw, 560px);
  min-width: 340px;
  display: block;
}

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

.footer-info {
  justify-self: start;
  color: rgba(63, 59, 55, 0.74);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.55vw, 30px);
  font-weight: 600;
  line-height: 1.72;
  text-align: left;
  white-space: nowrap;
}

.footer-info p {
  margin: 0;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.6vw, 30px);
  margin-top: clamp(18px, 1.6vw, 30px);
}

.footer-sns a {
  display: grid;
  place-items: center;
  width: clamp(38px, 3vw, 58px);
  height: clamp(38px, 3vw, 58px);
}

.footer-sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.simple-page {
  padding: 160px 24px 80px;
}

@media (max-width: 1280px) {
  :root {
    --font-base-size: 28px;
    --content-body-size: 28px;
    --intro-body-size: 28px;
    --service-body-size: 28px;
    --profile-body-size: 25px;
    --font-title-size: 45px;
    --font-profile-name-size: 33px;
    --font-profile-label-size: 33px;
    --font-profile-detail-size: 20px;
    --section-pad-x: 78px;
    --menu-pad-x: 258px;
    --section-space: 148px;
    --hero-image-height: 667px;
    --header-nav-font-size: clamp(19px, calc(2.1875vw - 7px), 21px);
    --header-nav-gap: 42px;
    --header-nav-en-size: clamp(16px, calc(1.875vw - 6px), 18px);
    --footcare-note-size: 25px;
    --intro-heading-gap: 32px;
  }

  .site-header__inner {
    height: 120px;
    grid-template-columns: 150px 1fr;
  }

  .site-header__logo {
    width: 118px;
  }

  .reserve-circle {
    top: 125px;
    right: 0;
    width: 220px;
    font-size: 18px;
  }

  .global-nav__sns a {
    width: 34px;
    height: 34px;
  }

  .global-nav__sns img {
    width: 100%;
    height: 100%;
  }

  .hero {
    padding-top: 0;
  }

  .service__grid,
  .profile__grid,
  .footcare .section__inner {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 60px;
  }

  .case-grid {
    max-width: 390px;
    gap: 20px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .section {
    padding: 70px 0;
  }

  .intro,
  .service,
  .footcare,
  .profile {
    min-height: 0;
    display: block;
  }

  .intro {
    padding-top: 70px;
  }
}

@media (min-width: 901px) {
  .profile-list dt {
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --inner: min(100% - 34px, 680px);
    --wide: min(100% - 34px, 680px);
    --font-base-size: 18px;
    --content-body-size: 25px;
    --intro-body-size: 19px;
    --service-body-size: 25px;
    --profile-body-size: 23px;
    --font-title-size: 42px;
    --font-profile-name-size: 40px;
    --font-profile-label-size: 20px;
    --font-profile-detail-size: 19px;
    --section-pad-x: 60px;
    --menu-pad-x: 160px;
    --section-space: 100px;
    --hero-image-height: 450px;
    --footcare-note-size: 18px;
    --intro-heading-gap: 26px;
  }

  .site-header {
    position: relative;
  }

  .site-header__inner {
    width: 100%;
    height: 150px;
    grid-template-columns: 150px 1fr auto;
    gap: 12px;
    padding: 0 14px;
  }

  .site-header__logo {
    width: auto;
    height: 100%;
  }

  .site-header__logo img {
    max-width: none;
    width: auto;
    height: 100%;
  }

  .hero {
    padding-top: 30px;
  }

  .hero__image {
    width: 100%;
    margin: 0 auto;
  }

  .intro,
  .service,
  .footcare,
  .profile,
  .price,
  .instagram {
    min-height: 0;
    display: block;
  }

  .reserve-circle {
    display: none;
  }

  .menu-button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    justify-self: end;
    width: clamp(54px, 14.45vw, 104px);
    height: clamp(54px, 14.45vw, 104px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(6px, 1.4vw, 10px);
    padding: 0 clamp(13px, 3.25vw, 24px);
    border: 0;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: clamp(2px, 0.42vw, 3px);
    background: var(--color-white);
    border-radius: 99px;
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100vw;
    height: 100dvh;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: clamp(30px, 4.2vw, 34px);
    overflow-y: auto;
    padding: clamp(42px, 7.4vw, 58px) var(--section-pad-x);
    background: #dfece0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .global-nav__close {
    position: absolute;
    top: 25px;
    right: 14px;
    width: clamp(54px, 14.45vw, 104px);
    height: clamp(54px, 14.45vw, 104px);
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #606060;
    cursor: pointer;
    font-size: clamp(34px, 8vw, 62px);
    line-height: 1;
  }

  .global-nav__logo {
    display: block;
    justify-self: center;
    width: clamp(178px, 39vw, 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .global-nav__reserve {
    width: min(100%, 430px);
    display: block;
  }

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

  .global-nav__list {
    display: grid;
    gap: clamp(19px, 3.5vw, 28px);
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .global-nav__list a {
    padding: 0;
    gap: 2px;
  }

  .global-nav__list span {
    color: #707070;
    font-family: var(--font-sans);
    font-size: var(--header-nav-font-size);
    font-weight: 400;
    line-height: 1.15;
  }

  .global-nav__list small {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: var(--header-nav-en-size);
    font-weight: 700;
    line-height: 1.08;
  }

  .global-nav__sns {
    gap: clamp(20px, 4vw, 30px);
  }

  .global-nav__sns a {
    width: clamp(42px, 7vw, 58px);
    height: clamp(42px, 7vw, 58px);
  }

  .global-nav__sns img {
    width: 100%;
    height: 100%;
  }

  .service__grid,
  .profile__grid {
    display: contents;
  }

  .footcare .section__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service .section__inner,
  .profile .section__inner {
    display: flex;
    flex-direction: column;
  }

  .service .section-heading {
    order: 2;
    width: 100%;
    margin-top: 42px;
    text-align: left;
  }

  .service__image {
    order: 1;
  }

  .service__content {
    order: 3;
  }

  .footcare .section-heading {
    order: 2;
    width: 100%;
    margin-top: 42px;
    margin-bottom: 28px;
    text-align: left;
  }

  .section-lead {
    order: 3;
    grid-column: auto;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .case-grid {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .service__image,
  .profile__image {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .profile .section-heading {
    order: 1;
    width: 100%;
  }

  .profile__image {
    order: 2;
    margin-top: 28px;
  }

  .profile__content {
    order: 3;
    margin-top: 25px;
  }

  .profile-list {
    order: 4;
  }

  .profile__content,
  .service__content {
    text-align: left;
  }

  .profile-list div {
    display: block;
  }

  .profile-list dt {
    text-align: left;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(18px, 3.3vw, 28px);
    width: min(100% - 72px, 720px);
  }

  .site-footer__logo {
    order: 1;
    width: clamp(158px, 42vw, 306px);
  }

  .site-footer__content {
    display: contents;
  }

  .footer-info {
    order: 3;
    justify-self: center;
    font-size: clamp(14px, 3.4vw, 25px);
    line-height: 1.72;
    text-align: left;
  }

  .footer-sns {
    order: 4;
    gap: clamp(18px, 4vw, 30px);
    margin-top: 0;
  }

  .footer-sns a {
    width: clamp(30px, 6vw, 48px);
    height: clamp(30px, 6vw, 48px);
  }

  .footer-sns img {
    width: 100%;
    height: 100%;
  }

  .footer-reserve {
    order: 2;
    justify-self: center;
    align-self: center;
    width: clamp(230px, 42vw, 300px);
    min-width: 0;
  }
}

@media (min-width: 521px) and (max-width: 900px) {
  .global-nav__list span {
    font-size: 30px;
  }

  .global-nav__list small {
    font-size: 25px;
  }
}

@media (max-width: 520px) {
  :root {
    --inner: min(100% - 28px, 375px);
    --wide: 100%;
    --font-base-size: 14px;
    --content-body-size: 11px;
    --intro-body-size: 11px;
    --service-body-size: 15px;
    --profile-body-size: 12px;
    --font-title-size: 23px;
    --font-profile-name-size: 21px;
    --font-profile-label-size: 15px;
    --font-profile-detail-size: 12px;
    --section-pad-x: 36px;
    --menu-pad-x: 28px;
    --section-space: 64px;
    --hero-image-height: 218px;
    --footcare-note-size: 11px;
    --intro-bg-width: 90vw;
    --intro-heading-gap: 13px;
  }

  .global-nav__reserve {
    width: min(100%, 260px);
  }

  .site-header__inner {
    width: 100%;
    height: 92px;
    grid-template-columns: 92px 1fr auto;
  }

  .site-header__logo {
    width: 80px;
    height: auto;
  }

  .site-header__logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .service .section-heading,
  .footcare .section-heading {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .hero {
    padding-top: 20px;
  }

  .profile__image {
    margin-top: 22px;
  }

  .profile__content {
    margin-top: 19px;
  }

  .hero__image {
    width: 100%;
  }

  .hero__image img {
    object-position: left top;
  }

  .section {
    padding: calc(var(--section-space) / 2) 0;
  }

  .intro {
    padding-top: 40px;
  }

  .intro .section__inner::before {
    top: 30px;
  }

  .footer-reserve {
    width: 146px;
  }

  .section-heading__mark {
    top: -42px;
    height: 150px;
  }

  .case-grid {
    gap: 10px;
  }

  .case-grid img {
    border-radius: 18px;
  }

  .price-card {
    padding: 20px 18px;
  }

  .price-line {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .price-name {
    overflow-wrap: anywhere;
  }

  .price-dots {
    display: none;
  }

  .price-travel {
    grid-template-columns: 1fr;
    justify-items: center;
    white-space: normal;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}
