@charset "UTF-8";
:root {
  --color-main: #ca7f13;
  --color-accent-1: #54372d;
  --color-accent-2: #949e33;
  --color-text: #333333;
  --color-bg-1: #f9f8f6;
  --color-bg-2: #d4cebe;
  --color-white: #ffffff;
  --font-gothic: Yu Gothic, YuGothic, 游ゴシック, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  --font-mincho: Yu Mincho, YuMincho, 游明朝, Hiragino Mincho ProN, MS PMincho, serif;
  --font-en: Marcellus, serif;
  --font-script: annabelle-jf, Annabelle JF, AnnabelleJF, cursive;
}

@media (max-width: 767px) {
  html {
    font-size: clamp(13.65px, 4.2666666667vw, 18.35px);
  }
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  background-color: #f9f8f6;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

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

.l-inner {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 1.25rem;
  }
}

.l-inner--narrow {
  max-width: 60rem;
}

.l-section {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

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

@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.l-main {
  width: 100%;
  overflow: hidden;
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

.js-parallax-stage + section .breadcrumb.js-reveal {
  transform: none;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .logo:hover {
    opacity: 0.7;
  }
}
.logo__mark {
  width: auto;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .logo__mark {
    height: 2rem;
  }
}
.logo__text {
  font-family: "Marcellus", serif;
  font-size: 1.75rem;
  line-height: 1.25;
  letter-spacing: 0.2em;
  color: #54372d;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .logo__text {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .logo--footer .logo__mark {
    height: 3.125rem;
  }
  .logo--footer .logo__text {
    display: block;
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  background-color: transparent;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 0;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 86.4375rem;
  height: 4.375rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: auto;
    padding: 1rem 1.25rem;
  }
}
.header__logo {
  margin: 0;
  line-height: 1;
}
.header h1.header__logo {
  font-weight: 700;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-link {
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #54372d;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__nav-link:hover {
    opacity: 0.7;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header {
    padding-top: 0;
  }
  .header__inner {
    height: auto;
    padding: 1rem 1.5rem;
  }
  .header__right {
    display: none;
  }
}

.hamburger {
  position: relative;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 94px;
  height: 30px;
  border-radius: 9999px;
  background-color: #949e33;
  color: #ffffff;
  transition: width 0.35s ease, height 0.35s ease, border-radius 0.35s ease;
}
.hamburger__label, .hamburger__lines {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.hamburger__label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
}
.hamburger__lines {
  position: relative;
  width: 14px;
  height: 10px;
}
.hamburger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.hamburger__lines span:nth-child(1) {
  top: 0;
}
.hamburger__lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__lines span:nth-child(3) {
  bottom: 0;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease 0.12s, transform 0.35s ease;
}
.hamburger::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.hamburger::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.hamburger.is-open {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.hamburger.is-open .hamburger__label,
.hamburger.is-open .hamburger__lines {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.hamburger.is-open::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .hamburger,
  .hamburger__label,
  .hamburger__lines,
  .hamburger::before,
  .hamburger::after {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: inline-flex;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header__hamburger {
    display: inline-flex;
  }
}
.is-subpage .l-main {
  padding-top: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .is-subpage .l-main {
    padding-top: 5rem;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background-color: #d4cebe;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}
.drawer.is-active {
  opacity: 1;
}
.drawer__inner {
  height: 100%;
  padding: 9.8125rem 1.5rem 2.5rem 3.75rem;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}
.drawer__link {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ca7f13;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .drawer__link:hover {
    opacity: 0.7;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .drawer {
    display: block;
  }
}
.drawer:not(.is-active) {
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .drawer {
    transition-duration: 0.01ms;
  }
}
.footer__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 75rem;
  margin-inline: auto;
  padding-block: 6rem 3.5rem;
  border-bottom: 1px solid #ca7f13;
}
@media screen and (max-width: 767px) {
  .footer__features {
    grid-template-columns: 1fr;
    gap: 0;
    width: 19.6875rem;
    padding-block: 3.975rem 4.0875rem;
  }
}
.footer__feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__feature:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer__feature {
    gap: 0.25rem;
  }
}
.footer__feature:first-child {
  border-right: 1px solid #ca7f13;
}
@media screen and (max-width: 767px) {
  .footer__feature:first-child {
    border-right: none;
    border-bottom: 1px solid #ca7f13;
    padding-bottom: 4.0875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__feature:nth-child(2) {
    padding-top: 3.8125rem;
  }
}
.footer__feature-en {
  font-family: "Marcellus", serif;
  font-size: 5rem;
  line-height: 1;
  color: #ca7f13;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .footer__feature-en {
    font-size: 3rem;
  }
}
.footer__feature-ja {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .footer__feature-ja {
    font-weight: 600;
    font-size: 0.75rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.75rem;
  padding-block: 6rem 2rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    gap: 0;
    padding-block: 6.375rem 0.11875rem;
  }
}
.footer__logo {
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    align-self: flex-start;
    margin-left: 2.625rem;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  color: #54372d;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 13.125rem;
    row-gap: 0.875rem;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.1em;
    margin-top: 2.5625rem;
  }
}
.footer__nav-link {
  padding-inline: 1.75rem;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}
.footer__nav-link + .footer__nav-link {
  border-left: 1px solid #54372d;
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    padding-inline: 0.71875rem;
  }
  .footer__nav-link:nth-child(4) {
    border-left: none;
  }
}
.footer__sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  color: #54372d;
}
.footer__sub a {
  padding-inline: 1.5rem;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__sub a:hover {
    opacity: 0.7;
  }
}
.footer__sub a + a {
  border-left: 1px solid #54372d;
}
@media screen and (max-width: 767px) {
  .footer__sub {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.1em;
    margin-top: 2rem;
  }
}
.footer__copyright {
  margin-top: 1rem;
  font-family: "Marcellus", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #54372d;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 2.375rem;
  }
}

@media (min-width: 768px) {
  .footer__features {
    position: relative;
    max-width: none;
    border-bottom: none;
    padding-block: 1.90625rem 1.96875rem;
  }
  .footer__features::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    width: min(75rem, 100%);
    height: 1px;
    margin-inline: auto;
    background: #ca7f13;
  }
  .footer__feature {
    justify-content: flex-start;
    min-height: 16.25rem;
    padding-top: 3.84375rem;
    gap: 1.5625rem;
  }
  .footer__feature:nth-child(2) {
    padding-top: 3.78125rem;
    gap: 1.5rem;
  }
  .footer__feature:nth-child(2) .footer__feature-en {
    font-size: 4.5rem;
  }
  .footer__feature-ja {
    line-height: 1;
  }
  .footer__inner {
    gap: 0;
    padding-block: 7.375rem 1.75rem;
  }
  .footer__nav {
    line-height: 1.5rem;
    letter-spacing: 0.1em;
    margin-top: 3rem;
  }
  .footer__sub {
    line-height: 1.5625rem;
    letter-spacing: 0.1em;
    margin-top: 2.03125rem;
  }
  .footer__nav-link {
    padding-inline: 1.953125rem;
  }
  .footer__sub a {
    padding-inline: 1.953125rem;
  }
  .footer__copyright {
    line-height: 1;
    margin-top: 3.40625rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 11.25rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background-color: #949e33;
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    min-width: 10rem;
    padding: 0.75rem 1.75rem;
  }
}

.btn-reserve {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3.125rem;
  border-radius: 9999px;
  background-color: #949e33;
  color: #ffffff;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .btn-reserve:hover {
    opacity: 0.7;
  }
}
.btn-reserve__icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.25rem;
  flex-shrink: 0;
  font-size: 1.125rem;
  transform: translateY(-50%);
}

.btn-more {
  position: relative;
  display: block;
  width: 7.5rem;
  padding-bottom: 0.25rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #54372d;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .btn-more:hover {
    opacity: 0.7;
  }
}
.btn-more::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7.5rem;
  height: 1px;
  background-color: currentColor;
}
.btn-more::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.35625rem;
  height: 1px;
  background-color: currentColor;
  transform: rotate(45deg);
  transform-origin: right center;
}

.section-title {
  position: relative;
  display: inline-block;
}
.section-title__en {
  position: relative;
  z-index: 1;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 5.25rem;
  line-height: 1;
  color: #ca7f13;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
.section-title__en--titlecase {
  text-transform: capitalize;
}
.section-title__en--lower {
  text-transform: lowercase;
}
.section-title__deco {
  position: absolute;
  top: -0.375em;
  left: 0.75em;
  z-index: 0;
  font-family: "annabelle-jf", "Annabelle JF", "AnnabelleJF", cursive;
  font-weight: 400;
  font-size: 7.5rem;
  line-height: 1;
  color: rgba(202, 127, 19, 0.08);
  white-space: nowrap;
  pointer-events: none;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section-title__deco {
    font-size: 4.5rem;
    top: -1.3125rem;
    left: 3.4375rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1.25rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}
.section-title--center {
  display: block;
  text-align: center;
}

.news-card {
  display: block;
  min-height: 9.375rem;
  padding: 0.8875rem 1.25rem 1.2375rem;
  border-left: 1px solid rgba(84, 55, 45, 0.75);
  color: #54372d;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-card:hover {
    opacity: 0.7;
  }
}
.news-card:last-child {
  border-right: 1px solid rgba(84, 55, 45, 0.75);
}
@media screen and (max-width: 767px) {
  .news-card {
    padding: 1.25rem 0;
    border-left: none;
    border-bottom: 1px solid rgba(84, 55, 45, 0.75);
  }
  .news-card:first-child {
    border-top: 1px solid rgba(84, 55, 45, 0.75);
  }
  .news-card:last-child {
    border-right: none;
  }
}
.news-card__date {
  display: block;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.375rem;
  letter-spacing: 0.1em;
  color: #54372d;
}
.news-card__title {
  margin-top: 0.64375rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__category {
  display: block;
  margin-top: 0.73125rem;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.1em;
  color: #54372d;
}
@media screen and (max-width: 767px) {
  .news-card__category {
    text-transform: uppercase;
  }
}

.faq {
  background-color: #d4cebe;
  min-height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .faq {
    min-height: 0;
  }
}
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding: 2.3rem 1.25rem 1.275rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__q {
    align-items: flex-start;
    min-height: 0;
    gap: 0.75rem;
    padding: 1.125rem 0.75rem 1rem 1rem;
  }
}
.faq__icon {
  flex-shrink: 0;
  margin-top: 0.1375rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
}
.faq__qtext {
  flex: 1;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .faq__qtext {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.faq__toggle {
  flex-shrink: 0;
  margin-top: 0.45rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #54372d;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__toggle {
    align-self: flex-start;
    margin-top: 0.28125rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__icon {
    margin-top: 0;
  }
}
.faq__q[aria-expanded=true] .faq__toggle {
  transform: rotate(180deg);
}
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq__a-inner {
  display: flex;
  gap: 1.5rem;
  padding: 0 1.25rem 1.975rem;
}
.faq__a-inner p {
  flex: 1;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .faq__a-inner {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.1875rem 1rem 1rem;
  }
  .faq__a-inner p {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.reserve-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 25rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .reserve-cta:hover {
    opacity: 0.85;
  }
}
.reserve-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/reserve-link-pc.jpg");
  background-size: cover;
  background-position: center;
}
.reserve-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(70, 70, 70, 0.8);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .reserve-cta {
    gap: 0.5rem;
    height: 12.5rem;
  }
  .reserve-cta::before {
    background-image: url("../img/reserve-link-sp.jpg");
  }
}
.reserve-cta__en {
  position: relative;
  z-index: 1;
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ca7f13;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .reserve-cta__en {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
.reserve-cta__ja {
  position: relative;
  z-index: 1;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .reserve-cta__ja {
    font-size: 0.75rem;
    text-shadow: 4px 4px 10px rgba(51, 51, 51, 0.6);
  }
}

.pagetop {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #949e33;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .pagetop:hover {
    filter: brightness(0.92);
  }
}
.pagetop__icon {
  font-size: 1.78125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 1.5625rem;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .pagetop .pagetop__icon {
    font-size: 1rem;
  }
}

.page-title {
  --page-title-bg-top-alpha: 1;
  --page-title-bg-bottom-alpha: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 22.5rem;
  background: linear-gradient(to bottom, rgba(212, 206, 190, var(--page-title-bg-top-alpha)) 0%, rgba(212, 206, 190, var(--page-title-bg-bottom-alpha)) 100%);
}
@media screen and (max-width: 767px) {
  .page-title {
    height: 12.5rem;
  }
}
.page-title__en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ca7f13;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-title__en {
    font-size: 2rem;
  }
}

.breadcrumb {
  margin-left: calc(2.25rem - (100vw - 100%) / 2);
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-left: calc(0.9375rem - (100vw - 100%) / 2);
    margin-bottom: 1.75rem;
  }
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb__item:not(:first-child)::before {
  content: "｜";
  color: currentColor;
}
.breadcrumb a.breadcrumb__link {
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .breadcrumb a.breadcrumb__link:hover {
    opacity: 0.7;
  }
}
.breadcrumb__item[aria-current=page] {
  color: inherit;
}

.is-subpage .l-main {
  overflow: clip;
}

.is-subpage :is(.p-concept__visual,
.p-price__visual,
.p-salons__map,
.p-salon-single__fv-img,
.p-news__hero,
.p-reserve__hero) {
  position: sticky;
  top: 0;
  z-index: 1;
}

:where(.is-subpage) :where(.p-concept__visual,
.p-price__visual,
.p-salons__map,
.p-salon-single__fv-img,
.p-news__hero,
.p-reserve__hero) ~ * {
  position: relative;
  z-index: 2;
  background-color: #f9f8f6;
}

.p-top__fv {
  position: relative;
  width: 100%;
  height: 56.25rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #edbc9c 0%, #ebba9a 25%, #eab798 50%, #e8b797 75%, #e6b491 100%);
}
.p-top__fv::before, .p-top__fv::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 0;
  display: none;
  width: max(0px, (100% - 90rem) / 2 + 0.0625rem);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.p-top__fv::before {
  left: 0;
  background-image: url("../img/fv_bg-pc-edge-left.png");
  background-position: right center;
}
.p-top__fv::after {
  right: 0;
  background-image: url("../img/fv_bg-pc-edge-right.png");
  background-position: left center;
}
@media (min-width: 1440px) {
  .p-top__fv::before, .p-top__fv::after {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-top__fv {
    height: 50.5625rem;
  }
}
@media (min-width: 431px) and (max-width: 767px) {
  .p-top__fv {
    height: min(62.5vw, 100svh);
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__fv {
    height: min(62.5vw, 100svh);
  }
}
.p-top__fv-img {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 1;
  width: 90rem;
  height: 56.25rem;
  transform: translateX(-50%);
}
.p-top__fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 767px) {
  .p-top__fv-img {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
@media (min-width: 431px) and (max-width: 767px) {
  .p-top__fv-img {
    right: auto;
    left: 50%;
    width: min(100vw, 160svh);
    height: min(62.5vw, 100svh);
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__fv-img {
    right: auto;
    left: 50%;
    width: min(100vw, 160svh);
    height: min(62.5vw, 100svh);
    transform: translateX(-50%);
  }
}
.p-top__fv-copy {
  position: absolute;
  z-index: 2;
  left: max(2.25rem, 50% - 45rem + 2.25rem);
  top: 22.6875rem;
  width: 43.3125rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.p-top__fv-copy .p-top__fv-char {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  text-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.36);
  animation: fv-copy-char 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.25s + var(--char-index) * 0.06s);
  will-change: opacity, filter;
}
@media screen and (max-width: 767px) {
  .p-top__fv-copy {
    width: auto;
    left: 0.875rem;
    top: 24.6875rem;
    transform: none;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 431px) and (max-width: 767px) {
  .p-top__fv-copy {
    left: calc((100vw - min(100vw, 160svh)) / 2 + min(4.1666666667vw, 6.6666666667svh));
    top: min(25.2083333333vw, 40.3333333333svh);
    bottom: auto;
    transform: none;
    width: min(48.125vw, 77svh);
    font-size: min(4.4444444444vw, 7.1111111111svh);
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .p-top__fv-copy {
    left: calc((100vw - min(100vw, 160svh)) / 2 + min(4.1666666667vw, 6.6666666667svh));
    top: min(25.2083333333vw, 40.3333333333svh);
    transform: none;
    width: min(48.125vw, 77svh);
    font-size: min(4.4444444444vw, 7.1111111111svh);
  }
}
.p-top__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__head {
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .p-top__head .btn {
    min-width: 7.25rem;
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
  }
}
.p-top__news {
  padding-block: 11.0625rem 5.15625rem;
}
.p-top__news .l-inner {
  max-width: 67.5rem;
}
.p-top__news .btn {
  width: 10rem;
  min-width: 0;
  height: 2.5rem;
  padding: 0;
  font-size: 1rem;
  margin-bottom: -0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top__news {
    padding-block: 4rem;
  }
}
.p-top__news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -0.78125rem;
}
@media screen and (max-width: 767px) {
  .p-top__news-list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top__news-btn-pc {
    display: none;
  }
}
.p-top__news-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top__news-btn {
    display: flex;
    width: 10rem;
    height: 2.5rem;
    min-width: 0;
    padding: 0;
    margin: 2rem auto 0;
    font-size: 0.875rem;
  }
}
.p-top__concept {
  position: relative;
  padding-block: 7.5rem 11.875rem;
  background-color: #f9f8f6;
}
.p-top__concept .l-inner {
  position: relative;
  max-width: 75rem;
  padding-inline: 0;
}
@media screen and (max-width: 1199px) {
  .p-top__concept .l-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__concept .l-inner {
    padding-inline: 1.25rem;
  }
}
.p-top__concept .section-title {
  position: absolute;
  top: 16.93125rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top__concept {
    padding-block: 1.5rem 8.4375rem;
  }
  .p-top__concept .l-inner {
    display: flex;
    flex-direction: column;
    max-width: 23.4375rem;
    padding-inline: 1.25rem;
  }
  .p-top__concept .section-title {
    position: relative;
    top: auto;
    left: 0.625rem;
    order: 2;
    width: 19.6875rem;
    max-width: 100%;
    margin-top: 4.375rem;
  }
  .p-top__concept .section-title__en {
    font-size: 3rem;
  }
  .p-top__concept .section-title__deco {
    font-size: 4.5rem;
  }
  .p-top__concept .section-title__ja {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
}
.p-top__concept-copy {
  position: absolute;
  top: 25.43125rem;
  left: 0;
  z-index: 2;
  margin-top: 0;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.75rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-top__concept-copy {
    position: static;
    order: 3;
    width: 8.5625rem;
    height: 5.9375rem;
    margin-top: 2.75rem;
    margin-left: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
  }
}
.p-top__concept-visual {
  position: relative;
  z-index: 1;
  margin-top: 0;
  width: 54.0625rem;
  height: 42.5rem;
  max-width: none;
  margin-left: auto;
  overflow: hidden;
}
.p-top__concept-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(84, 55, 45, 0.4);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top__concept-visual {
    order: 1;
    width: 19.6875rem;
    height: 15.4375rem;
    max-width: 100%;
    margin-top: 1.125rem;
    margin-inline: auto;
  }
}
.p-top__concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top__concept-lower {
  display: grid;
  grid-template-columns: 33.75rem 1fr;
  align-items: start;
  gap: 3.75rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top__concept-lower {
    order: 4;
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }
}
.p-top__concept-img {
  width: 33.75rem;
  height: 13.125rem;
}
.p-top__concept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top__concept-img {
    position: absolute;
    top: 19.25rem;
    right: 1.875rem;
    width: 6.75rem;
    height: 15.3125rem;
    max-width: 6.75rem;
  }
  .p-top__concept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-top__concept-text {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #54372d;
}
.p-top__concept-text .btn-more {
  margin: 1.5rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__concept-text {
    width: 19.6875rem;
    max-width: 100%;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .p-top__concept-text br {
    display: none;
  }
  .p-top__concept-text .p-top__concept-sp-break {
    display: initial;
  }
  .p-top__concept-text p {
    margin-top: 1.4375rem;
  }
  .p-top__concept-text .btn-more {
    margin-top: 1.5rem;
    margin-left: auto;
    width: 7.5rem;
    padding-bottom: 0.25rem;
    font-size: 1.125rem;
    line-height: 1;
    text-align: left;
  }
  .p-top__concept-text .btn-more::after {
    width: 7.5rem;
  }
  .p-top__concept-text .btn-more::before {
    width: 0.35625rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-top__concept-visual {
    width: min(72.083333%, 54.0625rem);
    height: auto;
    aspect-ratio: 865/680;
  }
  .p-top__concept-lower {
    grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
    gap: clamp(2rem, 4.166667vw, 3.75rem);
  }
  .p-top__concept-img {
    width: 100%;
    height: auto;
    aspect-ratio: 540/210;
  }
  .p-top__concept-text {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.9;
  }
}
.p-top__feature {
  padding-block: 6.5rem 3.625rem;
  background-color: #464646;
  color: #ca7f13;
}
.p-top__feature .l-inner {
  max-width: 90rem;
  padding-inline: 0;
}
@media screen and (max-width: 1199px) {
  .p-top__feature .l-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__feature .l-inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__feature {
    padding-block: 3.75rem 3.5rem;
  }
}
.p-top__feature-heading {
  position: relative;
  z-index: 1;
}
.p-top__feature-heading .section-title__en {
  color: #ca7f13;
}
.p-top__feature-heading .section-title__deco {
  top: -3.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top__feature-heading .section-title__deco {
    top: -2.25rem;
  }
}
.p-top__feature-body {
  display: grid;
  grid-template-columns: 5.5rem 19.1875rem 6.25rem 28.125rem 2rem 26rem 2.9375rem;
  align-items: center;
  margin-top: -1.625rem;
}
@media screen and (max-width: 767px) {
  .p-top__feature-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: -1.625rem;
  }
}
.p-top__feature-nav {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__feature-nav {
    display: none;
  }
}
.p-top__feature-navitem {
  list-style: none;
}
.p-top__feature-navbutton {
  display: flex;
  align-items: baseline;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  gap: 1.75rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #ca7f13;
  text-align: left;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.p-top__feature-navbutton.is-active {
  opacity: 1;
  transform: translateX(0.5rem);
}
.p-top__feature-navbutton span {
  flex-shrink: 0;
  font-family: "Marcellus", serif;
  font-size: 1.75rem;
  line-height: 1;
}
.p-top__feature-photo {
  grid-column: 4;
  position: relative;
  z-index: 0;
  width: 28.125rem;
  height: 39.375rem;
  overflow: hidden;
  --feature-slide-pos: 1;
}
@media screen and (max-width: 767px) {
  .p-top__feature-photo {
    grid-column: 1;
    width: 19.6875rem;
    height: 17.1875rem;
    max-width: 19.6875rem;
    margin-inline: auto;
    overflow: visible;
  }
}
.p-top__feature-track {
  display: grid;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__feature-track {
    display: flex;
    gap: 0.625rem;
    width: max-content;
    transform: translateX(calc(var(--feature-slide-pos) * -20.3125rem));
    transition: transform 1s ease;
  }
  .p-top__feature-track.is-jump {
    transition: none;
  }
}
.p-top__feature-slide {
  grid-area: 1/1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(0.625rem);
  transition: opacity 1s ease, transform 1s ease;
}
.p-top__feature-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-top__feature-slide--clone {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top__feature-slide {
    flex: 0 0 19.6875rem;
    width: 19.6875rem;
    height: 17.1875rem;
    opacity: 1;
    transform: none;
  }
  .p-top__feature-slide--clone {
    display: block;
  }
}
.p-top__feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top__feature-detail {
  grid-column: 6;
  display: grid;
  text-align: center;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-top__feature-detail {
    grid-column: 1;
    width: auto;
    margin-inline: 0;
  }
}
.p-top__feature-panel {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(0.5rem);
}
.p-top__feature-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.p-top__feature-num {
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.p-top__feature-num::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 1rem auto 0;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-top__feature-num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    font-size: 0.875rem;
    line-height: 1;
  }
  .p-top__feature-num::before, .p-top__feature-num::after {
    content: "";
    display: block;
    width: 6.25rem;
    height: 1px;
    margin: 0;
    background-color: currentColor;
  }
}
.p-top__feature-title {
  margin: 1.25rem 0 1.75rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top__feature-title {
    margin: 1.25rem 0 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.p-top__feature-text {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.125rem;
  line-height: 1.95;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top__feature-text {
    width: 19.6875rem;
    max-width: 100%;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .p-top__feature-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  .p-top__feature-nav {
    grid-column: 1;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem clamp(1rem, 4vw, 2.5rem);
  }
  .p-top__feature-navbutton {
    width: auto;
    gap: 0.625rem;
    font-size: 1rem;
  }
  .p-top__feature-photo {
    grid-column: 1;
    width: min(100%, 28.125rem);
    height: auto;
    aspect-ratio: 5/7;
    margin-inline: auto;
  }
  .p-top__feature-detail {
    grid-column: 1;
    width: min(100%, 35rem);
    margin-inline: auto;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .p-top__feature-body {
    grid-template-columns: 6.111111fr 21.319444fr 6.944444fr 31.25fr 2.222222fr 28.888889fr 3.263889fr;
  }
  .p-top__feature-nav, .p-top__feature-photo, .p-top__feature-detail {
    min-width: 0;
  }
  .p-top__feature-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 5/7;
  }
}
.p-top__price {
  padding-block: 15.25rem 6.15625rem;
}
.p-top__price .l-inner {
  max-width: 75rem;
  padding-inline: 0;
}
@media screen and (max-width: 1199px) {
  .p-top__price .l-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price .l-inner {
    padding-inline: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price .section-title__deco {
    font-size: 4.5rem;
    top: -1.875rem;
    left: 3.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price .section-title__en {
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price {
    padding-block: 9.4375rem 4.875rem;
  }
}
.p-top__price-list {
  position: relative;
  width: 50rem;
  margin: 2.48125rem 0 0 auto;
}
.p-top__price-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-top__price-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 3rem auto 0;
  }
  .p-top__price-list::after {
    content: none;
  }
}
.p-top__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-top__price-row + .p-top__price-row {
  position: relative;
}
.p-top__price-row + .p-top__price-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background-color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-top__price-row {
    display: contents;
  }
  .p-top__price-row + .p-top__price-row::before {
    content: none;
  }
  .p-top__price-row:nth-child(1) .p-top__price-item:nth-child(1) {
    order: 1;
  }
  .p-top__price-row:nth-child(1) .p-top__price-item:nth-child(2) {
    order: 2;
  }
  .p-top__price-row:nth-child(2) .p-top__price-item:nth-child(2) {
    order: 3;
  }
  .p-top__price-row:nth-child(2) .p-top__price-item:nth-child(1) {
    order: 4;
  }
  .p-top__price-row:nth-child(3) .p-top__price-item:nth-child(1) {
    order: 5;
  }
}
.p-top__price-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  height: 5.3125rem;
  padding-inline: 0.75rem 1.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-top__price-item:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-top__price-item {
    height: 5.25rem;
    gap: 1.25rem;
    padding-inline: 0.3125rem 1.125rem;
    border-bottom: 1px solid #ca7f13;
  }
}
.p-top__price-en {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  line-height: 5.3125rem;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-top__price-en {
    font-size: 2.25rem;
    line-height: 5.25rem;
  }
}
.p-top__price-ja {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: #ca7f13;
}
.p-top__price-arrow {
  align-self: center;
  margin-left: auto;
  font-size: 1.5rem;
  color: #ca7f13;
  transition: transform 0.3s ease;
}
.p-top__price-item:hover .p-top__price-arrow {
  transform: translateX(0.375rem);
}
.p-top__faq {
  padding-block: 3.9375rem 7.5rem;
}
.p-top__faq .l-inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 0;
}
@media screen and (max-width: 1199px) {
  .p-top__faq .l-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__faq .l-inner {
    padding-inline: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    padding-block: 4.5rem 3.8125rem;
  }
}
.p-top__faq-list {
  max-width: 67.5rem;
  margin: 3.575rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top__faq-list {
    max-width: 100%;
    margin: 2.4375rem 0 0;
    gap: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-top__price-list {
    width: min(100%, 50rem);
  }
  .p-top__faq-list {
    width: 100%;
    max-width: 67.5rem;
    margin-inline: auto;
  }
}

@keyframes fv-copy-char {
  0% {
    opacity: 0;
    filter: blur(12px);
    text-shadow: 0 0 1.75rem rgba(255, 255, 255, 0.28);
  }
  34% {
    opacity: 0.38;
    filter: blur(4px);
    text-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.2);
  }
  56% {
    opacity: 0.78;
    filter: blur(1px);
    text-shadow: 0.5rem -0.125rem 1.25rem rgba(255, 255, 255, 0.24);
  }
  82% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 1rem -0.1875rem 1.5rem rgba(255, 255, 255, 0.12);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.08);
  }
}
.p-concept__inner {
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    width: min(100% - 3.75rem, 75rem);
  }
}
.p-concept__visual {
  position: relative;
  width: 100%;
}
.p-concept__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.p-concept__visual img {
  display: block;
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-concept__visual img {
    height: 18.75rem;
  }
}
.p-concept__intro {
  padding-block: 1.5rem 7.56875rem;
  background-color: #d4cebe;
}
@media (min-width: 768px) {
  .p-concept__intro .breadcrumb {
    margin-bottom: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__intro {
    padding-block: 0.71875rem 3.125rem;
  }
  .p-concept__intro .breadcrumb {
    margin-left: 0;
    margin-bottom: 3.5rem;
  }
}
.p-concept__lead {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 25.3125rem;
}
@media screen and (max-width: 991px) {
  .p-concept__lead {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 1.5rem;
  }
}
.p-concept__copy {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media (min-width: 768px) {
  .p-concept__copy {
    margin-top: -0.8125rem;
  }
}
@media screen and (max-width: 991px) {
  .p-concept__copy {
    order: 2;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__copy {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.p-concept__portrait {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45rem;
}
@media screen and (max-width: 991px) {
  .p-concept__portrait {
    order: 1;
    position: static;
    transform: none;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-concept__portrait {
    width: min(100%, 45rem);
  }
}
.p-concept__portrait img {
  display: block;
  width: 100%;
  height: auto;
}
.p-concept__body {
  margin-top: 2.11875rem;
}
@media screen and (max-width: 767px) {
  .p-concept__body {
    margin-top: 0.75rem;
  }
}
.p-concept__body p {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2.1339285625rem;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-concept__body p + p {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-concept__body p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-concept__instagram {
  padding-block: 9.5rem 6.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept__instagram {
    padding-block: 7.2375rem 4.6625rem;
  }
}
.p-concept__instagram .section-title {
  display: block;
  width: fit-content;
  margin-bottom: 3.9375rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-concept__instagram .section-title {
    margin-bottom: 3.96875rem;
    margin-left: -0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__company .section-title__ja {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__instagram .section-title__deco, .p-concept__company .section-title__deco {
    font-size: 4.5rem;
  }
}
.p-concept__insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-concept__insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1875rem;
    max-width: 19.6875rem;
  }
}
.p-concept__insta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #707070;
  color: #ffffff;
}
.p-concept__insta-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-concept__insta-item {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.8125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-concept__insta-item {
    font-size: 0.875rem;
  }
}
.p-concept__insta-btn {
  position: relative;
  width: 12.5rem;
  min-width: 0;
  height: 3.125rem;
  padding: 0;
  margin-top: 3.75rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  gap: 0;
}
.p-concept__insta-btn i {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-concept__insta-btn {
    width: 12.5rem;
    height: 3.125rem;
    margin-top: 1.8375rem;
    font-size: 0.875rem;
  }
  .p-concept__insta-btn i {
    left: 1rem;
    width: 1.125rem;
    height: 1.125rem;
    font-size: 1.125rem;
  }
}
.p-concept__company {
  padding-block: 3.9375rem 7.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept__company {
    padding-block: 5.125rem 7.75rem;
  }
}
.p-concept__company .section-title {
  display: block;
  width: fit-content;
  margin-bottom: 3.25rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-concept__company .section-title {
    margin-bottom: 4.125rem;
    margin-left: -0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__company .section-title__deco {
    top: -1.875rem;
    left: 3.4375rem;
    line-height: 1.22;
  }
}
.p-concept__company-img {
  max-width: 67.5rem;
  margin: 0 auto 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-concept__company-img {
    aspect-ratio: 343/200;
    overflow: hidden;
    margin-bottom: 4.1875rem;
    margin-inline: -0.875rem;
  }
}
.p-concept__company-img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-concept__company-img img {
    height: 100%;
    object-fit: cover;
  }
}

.company-profile {
  display: grid;
  grid-template-columns: 26.4375rem 1fr;
}
@media (min-width: 768px) {
  .company-profile .company-profile__item:nth-child(odd) dt {
    padding-left: 0.78125rem;
  }
}
.company-profile {
  width: 100%;
  max-width: 67.6875rem;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company-profile {
    display: block;
    max-width: none;
  }
}
.company-profile__item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  align-items: center;
  border-top: 1px solid #ca7f13;
}
@media screen and (max-width: 767px) {
  .company-profile__item {
    grid-template-columns: 6.75rem 1fr;
    border-top: none;
    border-bottom: 1px solid #ca7f13;
  }
  .company-profile__item:first-child {
    border-top: 1px solid #ca7f13;
  }
}
.company-profile__item:nth-child(even) {
  grid-template-columns: 7.0625rem 1fr;
}
@media screen and (max-width: 767px) {
  .company-profile__item:nth-child(even) {
    grid-template-columns: 6.75rem 1fr;
  }
}
.company-profile__item--solo, .company-profile__item--solo:nth-child(even) {
  grid-column: 1/-1;
  grid-template-columns: 7.5rem calc(50% - 7.5rem) 1fr;
}
@media screen and (max-width: 767px) {
  .company-profile__item--solo, .company-profile__item--solo:nth-child(even) {
    grid-column: auto;
    grid-template-columns: 6.75rem 1fr;
  }
}
.company-profile dt {
  padding: 1.3125rem 0.34375rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #ca7f13;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company-profile dt {
    padding: 1.4375rem 0.25rem;
    font-size: 0.875rem;
  }
}
.company-profile dd {
  padding: 1.3125rem 0.34375rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .company-profile dd {
    padding: 1.4375rem 0.25rem;
    font-size: 0.75rem;
  }
}
.company-profile__nowrap {
  white-space: nowrap;
}
.company-profile__address {
  font-style: normal;
}

.p-price__cat, .p-price__custom {
  scroll-margin-top: 118px;
}
@media screen and (max-width: 767px) {
  .p-price__cat, .p-price__custom {
    scroll-margin-top: 73px;
  }
}
.p-price__inner {
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-price__inner {
    width: min(100% - 3.75rem, 75rem);
  }
}
.p-price__visual {
  position: relative;
  width: 100%;
}
.p-price__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.p-price__visual img {
  display: block;
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-price__visual img {
    height: 18.75rem;
  }
}
.p-price__intro {
  padding-block: 1.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__intro {
    padding-block: 0.71875rem 6.1875rem;
  }
}
.p-price__intro-grid {
  display: grid;
  grid-template-columns: 37.3125rem 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .p-price__intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-price__intro-grid {
    gap: 1.95625rem;
    padding-top: 2.8125rem;
  }
}
.p-price__lead p {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-price__lead p + p {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-price__lead p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 991px) {
  .p-price__nav {
    order: -1;
  }
}
.p-price__nav {
  position: relative;
}
.p-price__nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-price__nav::after {
    content: none;
  }
}
.p-price__nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-price__nav-row + .p-price__nav-row {
  border-top: 1px solid #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-price__nav-row {
    grid-template-columns: 1fr;
  }
  .p-price__nav-row .p-price__nav-item + .p-price__nav-item {
    border-top: 1px solid #ca7f13;
  }
}
.p-price__nav-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  height: 4.5rem;
  padding-inline: 0.75rem 1.25rem;
  color: #ca7f13;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-price__nav-item:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-price__nav-item {
    height: 2.25rem;
    padding-inline: 1rem 1.25rem;
  }
}
.p-price__nav-en {
  font-family: "Marcellus", serif;
  font-size: 2.0625rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__nav-en {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
.p-price__nav-ja {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-price__nav-ja {
    font-size: 0.75rem;
  }
}
.p-price__nav-arrow {
  margin-left: auto;
  align-self: center;
  font-size: 1rem;
}
.p-price__tables {
  background-color: #d4cebe;
  padding-block: 3.5rem 4.025rem;
}
@media screen and (max-width: 767px) {
  .p-price__tables {
    padding-block: 5rem 3.5rem;
  }
}
.p-price__cat + .p-price__cat {
  margin-top: 7.925rem;
}
@media screen and (max-width: 767px) {
  .p-price__cat + .p-price__cat {
    margin-top: 6.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-price #price-body .p-price__sub:nth-of-type(2) {
    margin-top: 8.0625rem;
  }
  .p-price #price-body .p-price__sub:nth-of-type(3) {
    margin-top: 4.125rem;
  }
}
.p-price__cat-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 5.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ca7f13;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__cat-title {
    font-size: 3rem;
  }
}
.p-price__sub {
  margin-top: 3rem;
  text-align: center;
}
.p-price__sub + .p-price__sub {
  margin-top: 5.45625rem;
}
@media screen and (max-width: 767px) {
  .p-price__sub {
    margin-top: 1.75rem;
  }
  .p-price__sub + .p-price__sub {
    margin-top: 2.5rem;
  }
}
.p-price #price-body .p-price__sub:first-of-type {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-price #price-body .p-price__sub:first-of-type {
    margin-top: 1.75rem;
  }
}
.p-price__sub-title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-price__sub-title {
    font-size: 1.25rem;
  }
}
.p-price__parts {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-price__parts {
    max-width: none;
    margin-inline: -0.875rem;
    font-size: 0.875rem;
    line-height: 2.29;
    text-align: left;
  }
}
.p-price__custom {
  padding-block: 5rem 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-price__custom {
    padding-block: 5rem 4.5625rem;
  }
}
.p-price__custom-grid {
  display: grid;
  grid-template-columns: 30rem 33.75rem;
  gap: 3.75rem;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .p-price__custom-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.p-price__custom-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .p-price__custom-img img {
    max-width: 15rem;
    margin-inline: auto;
  }
}
.p-price__cat-title--left {
  text-align: left;
}
.p-price__custom-body .p-price__cat-title {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-price__custom-body .p-price__cat-title {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-price__custom-body .p-price__cat-title {
    letter-spacing: 0.04em;
  }
}
.p-price__custom-body p {
  margin-top: 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-price__custom-body p:first-of-type {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-price__custom-body p {
    font-size: 0.875rem;
  }
  .p-price__custom-body p:first-of-type {
    margin-top: 1.5rem;
  }
}

.price-table {
  width: 100%;
  max-width: 50rem;
  margin: 2rem auto 0;
  border-collapse: collapse;
  table-layout: fixed;
}
.price-table thead th {
  padding: 1rem 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #ca7f13;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #ca7f13;
}
.price-table thead th:first-child,
.price-table thead td:first-child {
  width: 8.375rem;
  border-bottom: 1px solid #ca7f13;
}
.price-table tbody th {
  padding: 1.14375rem 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #ca7f13;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #ca7f13;
}
.price-table tbody td {
  padding: 1.14375rem 0.5rem;
  color: #ca7f13;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #ca7f13;
}
.price-table__num {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .price-table__num {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.price-table__yen {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-left: 0.25rem;
}
@media screen and (max-width: 767px) {
  .price-table__yen {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
.price-table__note {
  max-width: 50rem;
  margin: 0.75rem auto 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(202, 127, 19, 0.8);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .price-table__note {
    font-size: 0.625rem;
    text-align: left;
    margin-inline: -0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .price-table {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 1rem;
    margin-inline: -0.875rem;
  }
  .price-table thead {
    display: none;
  }
  .price-table tbody, .price-table tr, .price-table th, .price-table td {
    display: block;
    width: auto;
  }
  .price-table tbody tr + tr {
    margin-top: 3.375rem;
  }
  .price-table tbody th {
    position: relative;
    padding: 0.9375rem 0 4.5625rem;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #ca7f13;
  }
  .price-table tbody th::before {
    content: "施術回数";
    position: absolute;
    left: 25%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
  .price-table tbody th::after {
    content: "料金";
    position: absolute;
    left: 80%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
  .price-table tbody td {
    display: flex;
    align-items: baseline;
    padding: 1.3125rem 1.75rem 1.3125rem 0.25rem;
    text-align: left;
    border-bottom: 1px solid #ca7f13;
  }
  .price-table tbody td::before {
    content: "";
    margin-right: auto;
    font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .price-table tbody td:nth-of-type(1)::before {
    content: "トライアルコース(3回)";
  }
  .price-table tbody td:nth-of-type(2)::before {
    content: "減毛コース(6回)";
  }
  .price-table tbody td:nth-of-type(3)::before {
    content: "脱毛コース(12回)";
  }
}

.p-salons__inner {
  width: min(100% - 3rem, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-salons__inner {
    width: min(100% - 3.75rem, 75rem);
  }
}
.p-salons__map {
  overflow: hidden;
  background-color: #e1e1e1;
}
.p-salons__map::before, .p-salons__map::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 0;
  display: none;
  width: max(0px, (100% - 90rem) / 2 + 0.0625rem);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.p-salons__map::before {
  left: 0;
  background-image: url("../img/archive-salons_top-pc-edge-left.png");
  background-position: right center;
}
.p-salons__map::after {
  right: 0;
  background-image: url("../img/archive-salons_top-pc-edge-right.png");
  background-position: left center;
}
@media (min-width: 1440px) {
  .p-salons__map::before, .p-salons__map::after {
    display: block;
  }
}
.p-salons__map picture {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 90rem);
  margin-inline: auto;
}
.p-salons__map img {
  display: block;
  width: 100%;
  max-width: none;
  height: 37.5rem;
  object-fit: cover;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-salons__map img {
    height: 18.75rem;
  }
}
.p-salons__prefectures {
  padding-block: 1.5rem 5.4375rem;
}
@media screen and (max-width: 767px) {
  .p-salons__prefectures {
    padding-block: 0.71875rem 5rem;
  }
}
.p-salons__prefectures .section-title {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-salons__prefectures .section-title {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-salons__prefectures .section-title__deco {
    top: -1.3125rem;
    left: 2.625rem;
  }
}
.p-salons__pref-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: 3.75rem;
  gap: 1.25rem 0;
  align-content: start;
  width: min(56rem, 100% - 7.5rem);
  min-height: 13.75rem;
  margin-top: 6.8875rem;
  margin-left: 3.75rem;
}
.p-salons__pref-nav > .p-salons__pref-link {
  position: static;
  min-width: 0;
}
.p-salons__pref-nav--comp {
  grid-template-columns: 18.8125rem 3.125rem 0.5rem 18.375rem 15.1875rem;
  grid-template-rows: 3.75rem 1.25rem 3.75rem 1.1875rem 3.75rem 0.0625rem;
  grid-auto-rows: auto;
  gap: 0;
}
.p-salons__pref-nav--comp > .p-salons__pref-link {
  justify-self: start;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=tokyo] {
  grid-column: 1;
  grid-row: 1;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=kanagawa] {
  grid-column: 2;
  grid-row: 1;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=saitama] {
  grid-column: 1;
  grid-row: 3;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=osaka] {
  grid-column: 3;
  grid-row: 3;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=kyoto] {
  grid-column: 5;
  grid-row: 3;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=fukuoka] {
  grid-column: 1;
  grid-row: 5;
}
.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=okinawa] {
  grid-column: 4;
  grid-row: 5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-salons__pref-nav.p-salons__pref-nav--comp {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 3.75rem;
    gap: 1.25rem 0;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot] {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (min-width: 768px) and (max-width: 819px) {
  .p-salons__pref-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-salons__pref-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1.5625rem;
    gap: 0.625rem 0.625rem;
    align-content: space-between;
    width: 100%;
    height: auto;
    min-height: 10.3125rem;
    margin-top: 4.6375rem;
    margin-left: 0;
  }
  .p-salons__pref-nav > .p-salons__pref-link {
    position: static;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp {
    grid-template-columns: 9.375rem 0.625rem minmax(0, 1fr);
    grid-template-rows: 1.5625rem 0.625rem 1.5625rem 0.625rem 1.5625rem 0.625rem 1.5625rem 0.625rem 1.5625rem;
    grid-auto-rows: auto;
    gap: 0;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=tokyo] {
    grid-column: 1;
    grid-row: 1;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=kanagawa] {
    grid-column: 1;
    grid-row: 3;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=saitama] {
    grid-column: 1;
    grid-row: 5;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=osaka] {
    grid-column: 3;
    grid-row: 5;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=kyoto] {
    grid-column: 1;
    grid-row: 7;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=fukuoka] {
    grid-column: 3;
    grid-row: 7;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot=okinawa] {
    grid-column: 1;
    grid-row: 9;
  }
}
@media (max-width: 359px) {
  .p-salons__pref-nav {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 1.5625rem;
    gap: 0.625rem;
    align-content: start;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 1.5625rem;
    gap: 0.625rem;
  }
  .p-salons__pref-nav.p-salons__pref-nav--comp > .p-salons__pref-link[data-pref-slot] {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-salons__pref-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  color: #ca7f13;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-salons__pref-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-salons__pref-link {
    gap: 0.5rem;
  }
}
.p-salons__pref-link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5625rem solid transparent;
  border-bottom: 0.5625rem solid transparent;
  border-left: 0.9375rem solid #54372d;
  flex: 0 0 auto;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-salons__pref-link::before {
    border-top-width: 0.25rem;
    border-bottom-width: 0.25rem;
    border-left-width: 0.4375rem;
  }
}
.p-salons__pref-en {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-salons__pref-en {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}
.p-salons__pref-ja {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-salons__group + .p-salons__group {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-salons__group + .p-salons__group {
    margin-top: 5.24375rem;
  }
}
.p-salons__group > .p-salons__inner {
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-salons__group > .p-salons__inner {
    padding-top: 2.375rem;
  }
}
.p-salons__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 3rem, 75rem);
  height: 7.5rem;
  margin-inline: auto;
  background-color: #ca7f13;
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-salons__bar {
    width: calc(100% - 3.75rem);
    height: 3.75rem;
    font-size: 1.5rem;
  }
}
.p-salons__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem 3.75rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-salons__cards {
    grid-template-columns: 1fr;
    gap: 2.61875rem;
    margin-top: 0;
  }
}

.salon-card {
  position: relative;
  display: block;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .salon-card:hover {
    opacity: 0.7;
  }
}
.salon-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.salon-card__link:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 0.25rem;
}
.salon-card__map {
  display: block;
  height: 22.5rem;
  overflow: hidden;
  background-color: #efefef;
}
.salon-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: saturate(0.8) contrast(0.95) brightness(1.04);
}
@media screen and (max-width: 767px) {
  .salon-card__map {
    height: 12.5rem;
  }
}
.salon-card__en {
  display: block;
  margin-top: 0.375rem;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .salon-card__en {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
.salon-card__ja {
  display: block;
  margin-top: 0.25rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.salon-card__address {
  display: block;
  margin-top: 0.125rem;
  font-style: normal;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .salon-card__address {
    font-size: 0.8125rem;
  }
}

.p-salons .p-salons__prefectures .breadcrumb {
  margin-bottom: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-salons .p-salons__prefectures .breadcrumb {
    margin-bottom: 7.125rem;
  }
}

.p-salons > .reserve-cta {
  margin-top: 7.90625rem;
}
@media screen and (max-width: 767px) {
  .p-salons > .reserve-cta {
    margin-top: 5rem;
  }
}

.p-salon-single__inner {
  width: min(100% - 3.75rem, 75rem);
  margin-inline: auto;
}
.p-salon-single__fv-head {
  --page-title-bg-top-alpha: 1;
  --page-title-bg-bottom-alpha: 1;
  --page-title-pin-y: 0px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 22.5rem;
  background: linear-gradient(to bottom, rgba(212, 206, 190, var(--page-title-bg-top-alpha)) 0%, rgba(212, 206, 190, var(--page-title-bg-bottom-alpha)) 100%);
}
.p-salon-single__fv-head.js-parallax-title {
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, var(--page-title-pin-y), 0);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-salon-single__fv-head {
    height: 13.375rem;
    padding-top: 0.9375rem;
    gap: 0.5rem;
  }
}
.p-salon-single__fv-en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ca7f13;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-salon-single__fv-en {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}
.p-salon-single__fv-store {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1.2875;
  letter-spacing: 0.1em;
  color: #ca7f13;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-salon-single__fv-store {
    font-size: 2rem;
    line-height: 1.28125;
    letter-spacing: 0.1em;
  }
}
.p-salon-single__fv-img img {
  display: block;
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-salon-single__fv-img img {
    height: 18.75rem;
  }
}
.p-salon-single__intro {
  padding-block: 1.5rem 6.5rem;
}
.p-salon-single__intro .breadcrumb {
  margin-bottom: 6.3125rem;
}
@media (min-width: 768px) {
  .p-salon-single__intro .breadcrumb {
    margin-bottom: 6.71875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__intro {
    padding-block: 0.78125rem 6.5rem;
  }
  .p-salon-single__intro .breadcrumb {
    margin-bottom: 4.75rem;
  }
  .p-salon-single__intro .breadcrumb__list {
    font-size: 0.75rem;
    color: #ca7f13;
  }
}
.p-salon-single__lead {
  max-width: 67.5rem;
  margin-inline: auto;
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-salon-single__lead {
    width: 19.6875rem;
    margin-inline: auto;
    text-align: left;
    font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-salon-single__lead .p-salon-single__sp-br {
    display: block;
  }
}
.p-salon-single__sp-br {
  display: none;
}
.p-salon-single__flow {
  padding-top: 2.96875rem;
  padding-bottom: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow .section-title__en {
    line-height: 1.25;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow .section-title__ja {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow {
    padding-top: 0;
    padding-bottom: 4.78125rem;
  }
  .p-salon-single__flow .section-title {
    display: inline-block;
    margin-left: calc(1rem - 1.875rem);
    text-align: left;
  }
  .p-salon-single__flow .section-title__deco {
    top: -1.875rem;
    left: 3.4375rem;
    transform: none;
    line-height: 1.4027777778;
  }
}
.p-salon-single__flow-list {
  position: relative;
  max-width: 50rem;
  margin: 4.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-list {
    max-width: 19.6875rem;
    margin: 2.75rem auto 0;
  }
}
.p-salon-single__flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.75rem 43.75rem;
  gap: 2.5rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-salon-single__flow-step {
    grid-template-columns: 3.75rem minmax(0, 43.75rem);
  }
}
.p-salon-single__flow-step:last-child {
  padding-bottom: 0;
}
.p-salon-single__flow-step:nth-child(4) {
  padding-bottom: 1.625rem;
}
.p-salon-single__flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 3.75rem;
  left: 1.875rem;
  height: 5.03125rem;
  border-left: 2px dotted rgba(148, 158, 51, 0.6);
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-step {
    display: block;
    padding-bottom: 0.375rem;
    text-align: center;
  }
  .p-salon-single__flow-step:nth-child(4) {
    padding-bottom: 0.375rem;
  }
  .p-salon-single__flow-step:last-child {
    padding-bottom: 0;
  }
  .p-salon-single__flow-step:not(:last-child)::before {
    content: none;
  }
  .p-salon-single__flow-step:not(:first-child)::before {
    content: none;
  }
  .p-salon-single__flow-step:not(:last-child) .p-salon-single__flow-body::after {
    content: "";
    display: block;
    width: 0.125rem;
    height: 1.5rem;
    margin: 0.5rem auto 0;
    background-image: radial-gradient(circle, rgba(148, 158, 51, 0.7) 1px, transparent 1.3px);
    background-repeat: repeat-y;
    background-size: 0.125rem 0.375rem;
  }
}
.p-salon-single__flow-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #949e33;
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-num {
    width: 3.75rem;
    height: 3.75rem;
    margin-inline: auto;
    margin-bottom: 0.75rem;
    font-size: 2rem;
  }
}
.p-salon-single__flow-title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #ca7f13;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-title {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.p-salon-single__flow-text {
  margin-top: 0.6875rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-text {
    width: 19.6875rem;
    max-width: 19.6875rem;
    margin: 0.625rem auto 0;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: left;
    color: #ca7f13;
  }
  .p-salon-single__flow-text .p-salon-single__sp-br {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .p-salon-single__pc-br {
    display: none;
  }
}
.p-salon-single__flow-img {
  position: absolute;
  top: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-salon-single__flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-salon-single__flow-img--left {
  top: 6.0625rem;
  right: calc(100% + 5.1875rem);
  width: 9.375rem;
  height: 9.375rem;
}
.p-salon-single__flow-img--right {
  top: -1.5rem;
  left: calc(100% + 4.375rem);
  width: 11.25rem;
  height: 11.25rem;
}
@media screen and (max-width: 1199px) {
  .p-salon-single__flow-img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__flow-img {
    display: block;
    z-index: 1;
  }
  .p-salon-single__flow-img--left {
    top: calc(100% + 0.25rem);
    right: -2.875rem;
    width: 5rem;
    height: 5rem;
  }
  .p-salon-single__flow-img--right {
    top: -0.75rem;
    left: -2.5rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.p-salon-single__staff {
  background-color: #464646;
  border: 1px solid #707070;
  border-bottom: 0;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff {
    padding-block: 3.75rem 1.525rem;
  }
}
.p-salon-single__staff-grid {
  display: grid;
  max-width: 67.5rem;
  margin-inline: auto;
  grid-template-columns: 30rem 33.75rem;
  gap: 3.75rem;
  align-items: start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .p-salon-single__staff-grid {
    grid-template-columns: minmax(0, 30rem) minmax(0, 33.75rem);
  }
}
@media screen and (max-width: 991px) {
  .p-salon-single__staff-grid {
    max-width: none;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff-grid {
    gap: 1.46875rem;
  }
}
.p-salon-single__staff-body {
  padding-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff-body {
    padding-top: 0;
  }
}
.p-salon-single__staff-img img {
  display: block;
  width: 100%;
  max-width: 30rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff-img img {
    width: 15rem;
    max-width: 15rem;
    height: 15rem;
    margin-left: 1.8125rem;
    object-fit: cover;
  }
}
.p-salon-single__staff .section-title {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff .section-title {
    gap: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.p-salon-single__staff .section-title__deco {
  display: none;
}
.p-salon-single__staff .section-title__en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff .section-title__en {
    font-size: 2.25rem;
    line-height: 1.25;
  }
}
.p-salon-single__staff .section-title__ja {
  margin-top: 0;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff .section-title__ja {
    font-size: 1rem;
    line-height: 1.125;
  }
}
.p-salon-single__staff-message {
  width: 33.75rem;
  max-width: 100%;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
@media screen and (max-width: 991px) {
  .p-salon-single__staff-message {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff-message {
    font-size: 0.875rem;
  }
}
.p-salon-single__staff-name {
  margin-top: 0.46875rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salon-single__staff-name span {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-salon-single__staff-name {
    margin-top: 0.40625rem;
    font-size: 1.25rem;
  }
}
.p-salon-single__access {
  background-color: #d4cebe;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__access {
    padding-block: 3.75rem 3.625rem;
  }
}
.p-salon-single__access-grid {
  display: grid;
  max-width: 67.5rem;
  min-height: 22.5rem;
  margin-inline: auto;
  grid-template-columns: 25rem 33.75rem;
  gap: 8.75rem;
  align-items: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .p-salon-single__access-grid {
    grid-template-columns: minmax(0, 25rem) minmax(0, 33.75rem);
    gap: 3.75rem;
  }
}
@media screen and (max-width: 991px) {
  .p-salon-single__access-grid {
    max-width: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__access-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 19.6875rem;
    min-height: 25.53125rem;
    gap: 0.35rem;
  }
}
.p-salon-single__map {
  height: 22.5rem;
  background-color: #efefef;
}
.p-salon-single__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-salon-single__map {
    order: 1;
    aspect-ratio: auto;
    height: 13.675rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salon-single__access .store-info {
    order: 2;
    min-height: 9.28125rem;
  }
}
.p-salon-single__access .store-info__address {
  font-style: normal;
}
.p-salon-single__access .store-info__tel {
  color: inherit;
  text-decoration: none;
}
.p-salon-single__btn-wrap {
  background-color: #f9f8f6;
  padding-block: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-salon-single__btn-wrap {
    padding-block: 4.90625rem;
  }
}
.p-salon-single__btn-wrap .btn {
  width: 10.375rem;
  min-width: 0;
  height: 2.5625rem;
  padding: 0;
  border-radius: 1.28125rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-salon-single__btn-wrap .btn {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.p-salon-single .reserve-cta {
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-salon-single .reserve-cta {
    gap: 0.5rem;
    padding-bottom: 0.9375rem;
  }
}
.p-salon-single .reserve-cta__en {
  font-size: 5rem;
  line-height: 1.25;
  letter-spacing: 0.085em;
}
@media screen and (max-width: 767px) {
  .p-salon-single .reserve-cta__en {
    font-size: 3rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}
.p-salon-single .reserve-cta__ja {
  line-height: 1.3125;
}

.store-info {
  width: 100%;
}
.store-info__item {
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  align-items: center;
  border-bottom: 1px solid #ca7f13;
}
@media screen and (max-width: 767px) {
  .store-info__item {
    grid-template-columns: 7.375rem 1fr;
  }
}
.store-info dt {
  padding: 0.875rem 0.5rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .store-info dt {
    font-size: 1rem;
    line-height: 1.875;
    padding: 0.8125rem 0.5rem;
  }
}
.store-info dd {
  padding: 0.875rem 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .store-info dd {
    font-size: 0.75rem;
    line-height: 2.5;
    padding: 0.8125rem 0.5rem;
  }
}

.p-news__inner {
  width: min(100% - 2.5rem, 67.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    width: calc(100% - 2rem);
  }
}
@media screen and (max-width: 991px) {
  .p-news__inner {
    display: flex;
    flex-direction: column;
  }
}
.p-news__hero img {
  display: block;
  width: 100%;
  height: clamp(300px, 194.366px + 28.169vw, 600px);
  object-fit: cover;
}
.p-news__body {
  padding-block: 1.5rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-news__body {
    padding-block: 0.71875rem 5.6875rem;
  }
}
.p-news .breadcrumb {
  margin-bottom: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-news .breadcrumb {
    margin-bottom: 4.875rem;
  }
}
.p-news__layout {
  display: grid;
  grid-template-columns: 1fr 10.84375rem;
  gap: 2.6875rem;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .p-news__layout {
    display: contents;
  }
}
.p-news__list {
  container-type: inline-size;
  container-name: news-list;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    gap: 0.75rem;
  }
}

.news-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: 4.5rem;
  padding: 0 2rem;
  background-color: #d4cebe;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-row:hover {
    opacity: 0.7;
  }
}
@container news-list (max-width: 600px) {
  .news-row {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0.4rem;
    padding: 0.6875rem 0.75rem 0.80625rem;
    overflow: hidden;
  }
}
.news-row__date {
  font-family: "Marcellus", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
@container news-list (max-width: 600px) {
  .news-row__date {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.news-row__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1rem;
  color: #ca7f13;
}
@container news-list (max-width: 600px) {
  .news-row__title {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.news-row__cat {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: rgba(84, 55, 45, 0.2);
}
@container news-list (max-width: 600px) {
  .news-row__cat {
    position: absolute;
    right: 0.375rem;
    bottom: -0.1875rem;
    line-height: 1;
    font-size: 1.125rem;
  }
}

.news-sidebar {
  border-left: 1px solid #ca7f13;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 991px) {
  .news-sidebar {
    order: 1;
    margin-top: 2.4375rem;
    border-left: none;
    padding-left: 0;
  }
}
.news-sidebar__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #ca7f13;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-sidebar__title {
    font-size: 1.5rem;
  }
}
.news-sidebar__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar__list {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .news-sidebar__list {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 0;
    row-gap: 0.25rem;
  }
}
.news-sidebar__link {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ca7f13;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-sidebar__link:hover {
    opacity: 0.7;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  line-height: 1;
  margin-top: 2.1875rem;
  margin-right: 11.81875rem;
}
@media screen and (max-width: 991px) {
  .pagination {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 0.75rem;
    margin-top: 1.125rem;
  }
}
.pagination__link {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: #ca7f13;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .pagination__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .pagination__link {
    font-size: 1rem;
  }
}
.pagination__current {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: #ca7f13;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pagination__current {
    font-size: 1rem;
  }
}

.p-news:has(article) .p-news__hero img {
  height: clamp(300px, 194.366px + 28.169vw, 600px);
}
@media screen and (max-width: 767px) {
  .p-news__body:has(article) {
    padding-bottom: 5rem;
  }
  .p-news__body:has(article) .breadcrumb {
    margin-bottom: 3.875rem;
  }
  .p-news__body:has(article) .news-sidebar__link {
    font-size: 0.875rem;
  }
  .p-news__body:has(article) .breadcrumb__list {
    display: block;
  }
  .p-news__body:has(article) .breadcrumb__item {
    display: inline;
  }
  .p-news__body:has(article) .breadcrumb__item:not(:first-child)::before {
    margin: 0 0.5rem;
  }
}
@media (min-width: 768px) {
  .p-news__body:has(article) .breadcrumb {
    margin-bottom: 5.9375rem;
  }
  .p-news__body:has(article) {
    padding-bottom: 7.5rem;
  }
}
.p-news__layout > article {
  max-width: 43.1875rem;
  margin-inline: auto;
}
.p-news__article-title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #ca7f13;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-news__article-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-news__article-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: -0.4625rem;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-news__article-meta {
    margin-top: 1.0625rem;
  }
}
.p-news__article-cat {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-news__article-cat {
    font-size: 0.75rem;
  }
}
.p-news__article-date {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-news__article-date {
    font-size: 0.75rem;
  }
}
.p-news__article-thumb {
  margin-top: 2.2375rem;
}
@media screen and (max-width: 767px) {
  .p-news__article-thumb {
    margin-top: 0.775rem;
  }
}
.p-news__article-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news__article-body {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-news__article-body {
    margin-top: 1.6875rem;
  }
}
.p-news__article-body h2,
.p-news__article-body h3 {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news__article-body h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-news__article-body h3 {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1.0625rem;
}
.p-news__article-body h3:first-of-type {
  margin-top: 1.1875rem;
}
.p-news__article-body p,
.p-news__article-body ul,
.p-news__article-body ol,
.p-news__article-body blockquote {
  margin-top: 1rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-news__article-body p,
  .p-news__article-body ul,
  .p-news__article-body ol,
  .p-news__article-body blockquote {
    font-size: 0.875rem;
  }
}
.p-news__article-body ul,
.p-news__article-body ol {
  padding-left: 1.5em;
}
.p-news__article-body ul {
  list-style: disc;
}
.p-news__article-body ol {
  list-style: decimal;
}
.p-news__article-body li + li {
  margin-top: 0.5rem;
}
.p-news__article-body a {
  color: #ca7f13;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-news__article-body figure {
  margin-top: 2rem;
}
.p-news__article-body img {
  display: block;
  max-width: 100%;
  height: auto;
}
.p-news__article-body figcaption {
  margin-top: 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #333333;
}
.p-news__article-body h3 + p {
  margin-top: 0.4125rem;
}
@media screen and (max-width: 767px) {
  .p-news__article-body {
    margin-top: 2.4375rem;
  }
  .p-news__article-body h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .p-news__article-body h3:first-of-type {
    margin-top: 1.5rem;
  }
  .p-news__article-body h2 {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
  .p-news__article-body .p-news__article-text--large,
  .p-news__article-body .has-medium-font-size {
    font-size: 1rem;
    line-height: 1.75;
  }
  .p-news__article-body p + p {
    margin-top: 0;
  }
}
.p-news__back {
  margin-top: 1.5625rem;
  margin-bottom: 3.875rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-news__back {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-news__back {
    margin-top: 1.5rem;
  }
}
.p-news__back .btn {
  width: 12.625rem;
  height: 2.5625rem;
  justify-content: center;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news__back .btn {
    width: 10rem;
    height: 2.5rem;
  }
}

.p-reserve {
  overflow-x: clip;
}
.p-reserve__inner {
  width: min(100% - 2.5rem, 67.5rem);
  margin-inline: auto;
  padding-top: 0.6875rem;
}
.p-reserve__inner::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-color: #f9f8f6;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-reserve__inner {
    width: calc(100% - 3.75rem);
    padding-top: 1.5rem;
  }
}
.p-reserve__inner .breadcrumb {
  margin-left: calc(7.5rem - (100vw - 100%) / 2);
  margin-bottom: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__inner .breadcrumb {
    margin-left: calc(0.9375rem - (100vw - 100%) / 2);
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reserve__inner {
    padding-top: 0.71875rem;
  }
  .p-reserve__inner .breadcrumb {
    margin-bottom: 4.875rem;
  }
  .p-reserve__inner .p-reserve__minor {
    padding-bottom: 3.4375rem;
  }
  .p-reserve__inner .p-reserve__minor .p-reserve__lead {
    margin-top: 0.4375rem;
  }
  .p-reserve__inner .p-reserve__minor-grid {
    gap: 1.375rem;
  }
  .p-reserve__inner .p-reserve__download {
    gap: 0.875rem;
    padding-top: 1.875rem;
    padding-bottom: 2.25rem;
  }
  .p-reserve__inner .p-reserve__tel {
    padding-bottom: 5rem;
  }
  .p-reserve__inner .p-reserve__tel .p-reserve__lead {
    margin-top: 0.9375rem;
  }
  .p-reserve__inner .p-reserve__tel-hours {
    margin-top: 1.1875rem;
  }
}
.p-reserve__hero {
  position: relative;
}
.p-reserve__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1490196078);
  pointer-events: none;
}
.p-reserve__hero img {
  display: block;
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-reserve__hero img {
    height: 18.75rem;
  }
}
.p-reserve__en-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reserve__en-title {
    font-size: 2rem;
  }
}
.p-reserve__minor {
  padding-bottom: 7.83125rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__minor {
    padding-bottom: 2rem;
  }
}
.p-reserve__minor-grid {
  display: grid;
  grid-template-columns: 1fr 15rem;
  gap: 3rem;
  align-items: start;
  padding-right: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__minor-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-right: 0;
  }
  .p-reserve__minor-grid .p-reserve__download {
    order: -1;
    width: 15rem;
    margin-top: 0;
    margin-inline: auto;
  }
}
.p-reserve__minor-grid .p-reserve__lead {
  max-width: 45rem;
  margin-top: 2.23125rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__minor-grid .p-reserve__lead {
    max-width: none;
    margin-top: 1rem;
  }
}
.p-reserve__ja-title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-reserve__ja-title {
    font-size: 1.5rem;
  }
}
.p-reserve__lead {
  margin-top: 1.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-reserve__lead {
    font-size: 0.875rem;
  }
}
.p-reserve__download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.83125rem;
  margin-top: 0.75rem;
  padding: 1.91875rem 2.5rem 2.25rem;
  background-color: #d4cebe;
  text-align: center;
}
.p-reserve__download-label {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve__tel {
  padding-bottom: 7.39375rem;
}
.p-reserve__tel .p-reserve__lead {
  margin-top: 1.73125rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__tel {
    padding-bottom: 3.5rem;
  }
  .p-reserve__tel .p-reserve__en-title {
    text-align: center;
    font-size: 1.5rem;
  }
  .p-reserve__tel .p-reserve__lead {
    margin-top: 0.75rem;
  }
}
.p-reserve__tel-grid {
  display: grid;
  grid-template-columns: 1.27fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}
.p-reserve__tel-grid::after {
  content: "";
  position: absolute;
  top: 0.53125rem;
  height: 12.5rem;
  left: 39.90625rem;
  width: 1px;
  background-color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-reserve__tel-grid::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .p-reserve__tel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.p-reserve__tel-right {
  text-align: center;
  font-style: normal;
  margin-top: 3.9375rem;
}
.p-reserve__tel-right p {
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reserve__tel-right {
    margin-top: 0;
  }
}
.p-reserve__tel-num {
  display: block;
  line-height: 1;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-reserve__tel-num {
    font-size: 1.5rem;
  }
}
.p-reserve__tel-hours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 2rem;
  margin-top: 2.5rem;
  border: 1px solid #ca7f13;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve__form-section {
  position: relative;
  isolation: isolate;
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}
.p-reserve__form-section::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: #EDE9E4;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-reserve__form-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
}
.p-reserve__form-section:has(.p-reserve__thanks) {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  margin-bottom: 5.59375rem;
}
.p-reserve__form-section:has(.p-reserve__thanks) .p-reserve__form-head {
  align-items: start;
}
.p-reserve__form-section:has(.p-reserve__thanks) .p-reserve__lead {
  margin-top: 3.0625rem;
}
.p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps {
  margin-top: -0.4375rem;
}
.p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps__item {
  padding-top: 0.35rem;
}
.p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps__label {
  margin-top: 0.275rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__form-section:has(.p-reserve__thanks) {
    margin-top: -1.875rem;
    padding-top: 4rem;
    padding-bottom: 3.625rem;
    margin-bottom: 0;
  }
  .p-reserve__form-section:has(.p-reserve__thanks) .p-reserve__lead {
    margin-top: 1.5rem;
  }
  .p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps__item {
    padding-top: 0.75rem;
  }
  .p-reserve__form-section:has(.p-reserve__thanks) .p-reserve__en-title {
    font-size: 2rem;
  }
  .p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps {
    margin-top: 0.6075rem;
  }
  .p-reserve__form-section:has(.p-reserve__thanks) .reserve-steps__label {
    margin-top: 0.550625rem;
    font-size: 1rem;
  }
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) {
  padding-top: 5.4375rem;
  padding-bottom: 5rem;
  margin-bottom: 5.59375rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .p-reserve__form-head {
  align-items: start;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .p-reserve__lead {
  margin-top: 3.0625rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps {
  margin-top: -0.4375rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps__item {
  padding-top: 0.35rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps__label {
  margin-top: 0.275rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form {
  margin-top: 4.3125rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form__note {
  margin-top: 0.375rem;
}
.p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form__actions {
  margin-top: 1.775rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) {
    padding-top: 4rem;
    padding-bottom: 3.5875rem;
    margin-bottom: 1.40625rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .p-reserve__lead {
    margin-top: 0.9375rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps {
    margin-top: 0;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps__item {
    padding-top: 2.16875rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-steps__label {
    margin-top: 0.515625rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form {
    margin-top: 3.6625rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form__note {
    margin-top: 0.5rem;
  }
  .p-reserve__form-section:has(.reserve-form:not(.reserve-form--confirm)) .reserve-form__actions {
    margin-top: 2.5rem;
  }
}
.p-reserve__form-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .p-reserve__form-head {
    grid-template-columns: 1fr;
    gap: 1.6875rem;
  }
}
.p-reserve__form-head .p-reserve__lead {
  max-width: 33.75rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-reserve__form-head .p-reserve__lead {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
.p-reserve .btn {
  min-width: 10rem;
  height: 2.5rem;
  padding-block: 0;
  padding-inline: 1.25rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.reserve-steps {
  display: flex;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .reserve-steps {
    gap: 1rem;
    justify-content: center;
  }
}
.reserve-steps__item {
  width: 8.1875rem;
  min-height: 11.4375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #707070;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  .reserve-steps__item {
    width: auto;
    min-height: 0;
    flex: 1;
    padding-block: 2.16875rem 1.890625rem;
  }
}
.reserve-steps__num {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .reserve-steps__num {
    font-size: 0.875rem;
  }
}
.reserve-steps__label {
  display: block;
  margin-top: 0.5rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .reserve-steps__label {
    font-size: 1rem;
    margin-top: 0.515625rem;
  }
}
.reserve-steps__item.is-current {
  color: #ca7f13;
  border-color: #ca7f13;
}

.reserve-form {
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .reserve-form {
    margin-top: 2.5rem;
  }
}
.reserve-form__row {
  display: grid;
  grid-template-columns: 24.25rem 38.75rem;
  gap: 2rem;
  align-items: start;
  padding-block: 1rem;
}
@media (min-width: 768px) {
  .reserve-form__row:nth-of-type(n + 6) {
    padding-top: 1.3125rem;
  }
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reserve-form__row {
    grid-template-columns: minmax(13.75rem, 24.25rem) minmax(0, 38.75rem);
    gap: clamp(1rem, 2.2vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .reserve-form__row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding-block: 0;
    margin-top: 1.95rem;
  }
  .reserve-form__row:first-of-type {
    margin-top: 0;
  }
  .reserve-form__row:nth-of-type(n+6) {
    margin-top: 2.2625rem;
  }
}
.reserve-form__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .reserve-form__label {
    padding-top: 0;
    font-size: 1rem;
  }
}
.reserve-form__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 1.625rem;
  border-radius: 9999px;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #ffffff;
}
.reserve-form__badge--required {
  background-color: #54372d;
  color: #f9f8f6;
}
.reserve-form__badge--optional {
  background-color: #d4cebe;
  color: #333333;
}
.reserve-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reserve-form input[type=text],
.reserve-form input[type=tel],
.reserve-form input[type=email],
.reserve-form input[type=date],
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  height: 3.125rem;
  padding: 0 1rem;
  border: none;
  border-radius: 0;
  background-color: #ffffff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: normal;
  color: #333333;
}
.reserve-form input[type=text]:focus-visible,
.reserve-form input[type=tel]:focus-visible,
.reserve-form input[type=email]:focus-visible,
.reserve-form input[type=date]:focus-visible,
.reserve-form select:focus-visible,
.reserve-form textarea:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 1px;
}
@media screen and (max-width: 767px) {
  .reserve-form input[type=text],
  .reserve-form input[type=tel],
  .reserve-form input[type=email],
  .reserve-form input[type=date],
  .reserve-form select,
  .reserve-form textarea {
    font-size: 0.875rem;
  }
}
.reserve-form textarea {
  height: 7.5rem;
  display: block;
  padding: 0.875rem 1rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .reserve-form textarea {
    height: 12.5rem;
  }
}
.reserve-form select {
  appearance: none;
  padding-right: 3.25rem;
  background-image: linear-gradient(45deg, transparent 50%, #333333 50%), linear-gradient(135deg, #333333 50%, transparent 50%);
  background-position: calc(100% - 1.375rem) 50%, calc(100% - 1rem) 50%;
  background-size: 0.4375rem 0.4375rem, 0.4375rem 0.4375rem;
  background-repeat: no-repeat;
  cursor: pointer;
}
.reserve-form select[name=preferred-shop] {
  max-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .reserve-form select[name=preferred-shop] {
    max-width: none;
  }
}
.reserve-form__checks {
  display: grid;
  grid-template-columns: 15.875rem auto;
  gap: 0.625rem 1.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reserve-form__checks {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .reserve-form__checks {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.reserve-form__check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  color: #333333;
  white-space: nowrap;
}
.reserve-form__check input {
  appearance: none;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}
.reserve-form__check input:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 2px;
}
.reserve-form__check input:checked {
  background-color: #54372d;
}
.reserve-form__check input:checked::after {
  content: "✓";
  color: #ffffff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.reserve-form__check-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .reserve-form__check-rows {
    gap: 0.925rem;
  }
}
.reserve-form__check-row {
  display: grid;
  grid-template-columns: 2.1875rem 1fr;
  align-items: center;
  gap: 1rem;
}
.reserve-form__check-row .reserve-form__checks {
  grid-template-columns: 10.4375rem 10.4375rem auto;
  column-gap: 3.5rem;
}
.reserve-form__check-row .reserve-form__check input {
  width: 1.9375rem;
}
@media (min-width: 768px) and (max-width: 1079px) {
  .reserve-form__check-row .reserve-form__checks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .reserve-form__check-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .reserve-form__check-row .reserve-form__checks {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.reserve-form__check-rowlabel {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  color: #333333;
}
.reserve-form__date {
  position: relative;
  max-width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .reserve-form__date {
    max-width: none;
  }
}
.reserve-form__date-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3.125rem;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ca7f13;
  color: #ffffff;
  font-size: 1.714375rem;
  cursor: pointer;
}
.reserve-form__date.is-empty input[type=date] {
  color: transparent;
}
.reserve-form__date input[type=date] {
  padding-right: 3.75rem;
  color: #333333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.reserve-form__date input[type=date]::-webkit-calendar-picker-indicator, .reserve-form__date input[type=date]::-webkit-inner-spin-button, .reserve-form__date input[type=date]::-webkit-clear-button {
  display: none;
  -webkit-appearance: none;
}
.reserve-form__row:has(textarea) {
  padding-bottom: 0;
}
.reserve-form__note {
  margin-top: 0.5rem;
  margin-left: 26.25rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.75rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .reserve-form__note {
    margin-left: 0;
  }
}
.reserve-form__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .reserve-form__actions {
    flex-direction: column;
    align-items: center;
  }
}

.reserve-form--confirm {
  width: 62.1875rem;
  margin-left: 1.3125rem;
  margin-top: 10.1875rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .reserve-form--confirm {
    width: 100%;
    margin-left: 0;
  }
  .reserve-form--confirm .reserve-form__row {
    grid-template-columns: minmax(0, 24.9375rem) minmax(0, 1fr);
  }
}
.reserve-form--confirm .reserve-form__row {
  grid-template-columns: 24.9375rem 1fr;
  gap: 0;
  padding-block: 0.5375rem;
}
.reserve-form--confirm .reserve-form__badge {
  margin-left: 1.15625rem;
}
.reserve-form--confirm .reserve-confirm-value {
  margin-top: -0.2875rem;
}
.reserve-form--confirm .reserve-form__row--message {
  padding-top: 0.2375rem;
}
.reserve-form--confirm .reserve-form__row--message .reserve-form__label {
  margin-top: 1.375rem;
}
.reserve-form--confirm .reserve-form__row--message .reserve-confirm-value {
  font-size: 0.875rem;
  line-height: 2;
}
.reserve-form--confirm .reserve-form__label {
  gap: 0.96875rem;
}
@media screen and (max-width: 767px) {
  .reserve-form--confirm {
    width: auto;
    margin-left: 0;
    margin-top: 4.10625rem;
  }
  .reserve-form--confirm .reserve-form__row {
    grid-template-columns: 1fr;
    padding-block: 0.859375rem;
  }
  .reserve-form--confirm .reserve-form__row + .reserve-form__row {
    margin-top: 0;
  }
  .reserve-form--confirm .reserve-form__row:nth-of-type(n + 6) {
    padding-top: 1.171875rem;
  }
  .reserve-form--confirm .reserve-form__badge {
    margin-left: 0.03125rem;
  }
  .reserve-form--confirm .reserve-form__label {
    gap: 0.96875rem;
  }
  .reserve-form--confirm .reserve-form__row--message {
    padding-top: 1.171875rem;
  }
  .reserve-form--confirm .reserve-form__row--message .reserve-form__label {
    margin-top: 0;
  }
  .reserve-form--confirm .reserve-form__row--message .reserve-confirm-value {
    font-size: 0.875rem;
    line-height: 2;
  }
  .reserve-form--confirm .reserve-confirm-value {
    padding-top: 0;
    margin-top: 0.40625rem;
  }
}

.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor {
  padding-bottom: 7.8125rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor .p-reserve__lead {
  margin-top: 2.25rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor-grid {
  grid-template-columns: 48.3125rem 15rem;
  align-items: start;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor-grid {
    grid-template-columns: minmax(0, 1fr) 15rem;
  }
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__download {
  margin-top: 0.75rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__download-label {
  line-height: 1.5;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel {
  padding-bottom: 7.375rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel .p-reserve__lead {
  margin-top: 1.75rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-grid {
  align-items: start;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-right {
  margin-top: 3.9375rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-hours {
  margin-top: 2.5rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-section {
  padding-top: 4.5rem;
  padding-bottom: 5.9375rem;
  margin-bottom: 5.59375rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-section .p-reserve__lead {
  margin-top: 3.0625rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-head {
  gap: 3.1875rem;
  align-items: start;
}
.p-reserve__inner:has(.reserve-form--confirm) .reserve-steps {
  margin-top: -0.4375rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .reserve-steps__item {
  padding-top: 0.35rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .reserve-steps__label {
  margin-top: 0.275rem;
}
.p-reserve__inner:has(.reserve-form--confirm) .reserve-form__actions {
  margin-top: 3.275rem;
  padding-left: 2.8125rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-reserve__inner:has(.reserve-form--confirm) .reserve-form__actions {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-reserve__inner:has(.reserve-form--confirm) {
    padding-top: 0.71875rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .breadcrumb {
    margin-bottom: 4.875rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor {
    padding-bottom: 3.4375rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor .p-reserve__lead {
    margin-top: 0.4375rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__minor-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.375rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-right {
    margin-top: 0;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__download-label {
    line-height: 1.5;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__download {
    margin-top: 0;
    gap: 0.75rem;
    padding-bottom: 2.25rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__download .btn {
    height: 2.5rem;
    min-height: 0;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-grid {
    align-items: stretch;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-head {
    gap: 1.7875rem;
    align-items: stretch;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .reserve-steps {
    margin-top: 0;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .reserve-steps__item {
    padding-top: 0;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .reserve-steps__label {
    margin-top: 0.5rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .reserve-form__actions {
    margin-top: 1.509375rem;
    padding-left: 0;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel {
    padding-bottom: 4.8125rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel .p-reserve__en-title {
    font-size: 1.5rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel .p-reserve__lead {
    margin-top: 0.9375rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__tel-hours {
    margin-top: 1.4375rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-section .p-reserve__en-title {
    font-size: 2rem;
  }
  .p-reserve__inner:has(.reserve-form--confirm) .p-reserve__form-section {
    padding-top: 4rem;
    padding-bottom: 3.75rem;
    margin-bottom: 1.5625rem;
  }
}

.reserve-cal {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: min(300px, 88vw);
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(84, 55, 45, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(84, 55, 45, 0.18);
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.reserve-cal[hidden] {
  display: none;
}
.reserve-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reserve-cal__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #54372d;
}
.reserve-cal__nav {
  border: 0;
  background: transparent;
  padding: 2px 8px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.15s;
}
.reserve-cal__nav:hover {
  opacity: 0.6;
}
.reserve-cal__nav--prev {
  color: #54372d;
}
.reserve-cal__nav--next {
  color: #ca7f13;
}
.reserve-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.reserve-cal__weekdays span {
  padding: 4px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(84, 55, 45, 0.65);
}
.reserve-cal__weekdays span:first-child {
  color: #c0392b;
}
.reserve-cal__weekdays span:last-child {
  color: #2c6e9b;
}
.reserve-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.reserve-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.reserve-cal__day:hover {
  background-color: #d4cebe;
}
.reserve-cal__day:nth-child(7n+1) {
  color: #c0392b;
}
.reserve-cal__day:nth-child(7n) {
  color: #2c6e9b;
}
.reserve-cal__day.is-today {
  box-shadow: inset 0 0 0 2px #949e33;
  font-weight: 700;
}
.reserve-cal__day.is-selected {
  background-color: #ca7f13;
  color: #ffffff;
  box-shadow: none;
}

.reserve-confirm-value {
  padding-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .reserve-confirm-value {
    font-size: 0.875rem;
    color: #333333;
  }
}

.p-reserve__thanks {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__thanks {
    margin-top: 3.9275rem;
  }
}
.p-reserve__thanks-title {
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-reserve__thanks-title {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: left;
  }
}
.p-reserve__thanks-msg {
  width: fit-content;
  margin: 1.5625rem auto 0;
  text-align: left;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #ca7f13;
}
@media screen and (max-width: 767px) {
  .p-reserve__thanks-msg {
    margin: 0.875rem 0 0;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
}
.p-reserve__thanks-link {
  color: #ca7f13;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-reserve__thanks-link:hover {
    opacity: 0.7;
  }
}

.reserve-form .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}
.reserve-form__checks > p,
.reserve-form__checks .wpcf7-form-control-wrap,
.reserve-form__checks .wpcf7-checkbox {
  display: contents;
}
.reserve-form__checks .wpcf7-list-item > label {
  display: contents;
}
.reserve-form__checks .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  color: #333333;
  white-space: nowrap;
}
.reserve-form__checks .wpcf7-list-item-label {
  font: inherit;
}
.reserve-form__checks input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}
.reserve-form__checks input[type=checkbox]:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 2px;
}
.reserve-form__checks input[type=checkbox]:checked {
  background-color: #54372d;
}
.reserve-form__checks input[type=checkbox]:checked::after {
  content: "✓";
  color: #ffffff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.reserve-form__checks .wpcf7-not-valid-tip {
  grid-column: 1/-1;
}
.reserve-form__check-row .wpcf7-list-item input[type=checkbox] {
  width: 1.9375rem;
}
.reserve-form .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c0392b;
}
.reserve-form .wpcf7-response-output {
  text-align: center;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
}
.reserve-form .wpcf7 form.invalid .wpcf7-response-output,
.reserve-form .wpcf7 form.unaccepted .wpcf7-response-output,
.reserve-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #c0392b;
  color: #c0392b;
}

.reserve-confirm-list {
  margin-top: 4.5rem;
  width: 67.5rem;
  margin-left: 0;
}
.reserve-confirm-list .reserve-form__row {
  grid-template-columns: 24.25rem 38.75rem;
}
@media screen and (max-width: 767px) {
  .reserve-confirm-list {
    margin-top: 2.5rem;
    width: auto;
  }
  .reserve-confirm-list .reserve-form__row {
    grid-template-columns: 1fr;
  }
}

.wpcf7-form.wpcf7cp-form-hide {
  display: none !important;
}

.wpcf7 > div:has(.wpcf7cp-btns) {
  position: static !important;
}

.reserve-confirm-list ~ table {
  display: none !important;
}

.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.wpcf7cp-btns .wpcf7cp-cfm-edit-btn {
  display: none !important;
}
.wpcf7cp-btns .wpcf7cp-cfm-submit-btn {
  margin: 0;
}

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