@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
}

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

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

html {
  font-size: 100%;
}

body {
  min-width: 320px;
  color: #333;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  background-color: #f9f8f6;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open {
  overflow: hidden;
}

a:not(.c-button) {
  transition: opacity 0.3s ease;
}
a:not(.c-button):active {
  opacity: 0.85;
}
@media (hover: hover) {
  a:not(.c-button):hover {
    opacity: 0.7;
  }
}

:focus-visible {
  outline: 2px solid #949e33;
  outline-offset: 3px;
}

[hidden] {
  display: none;
}

.l-inner {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.l-header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding-inline: 20px;
  background-color: #f9f8f6;
}
.l-header--top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}
.l-header__logo {
  display: flex;
  align-items: center;
  width: 30px;
  height: 34px;
}
.l-header__logo-image {
  flex: 0 0 auto;
  width: 30px;
  height: 34px;
  object-fit: contain;
}
.l-header__logo-text {
  display: none;
}
.l-header__nav {
  display: none;
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header__link {
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #54372d;
  transition: opacity 0.3s ease;
}
.l-header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 50px;
  padding-inline: 40px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #949e33;
  border-radius: 40px;
}
.l-header__reserve::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
}
.l-header__toggle {
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 101px;
  height: 32px;
  color: #fff;
  background-color: #949e33;
  border-radius: 999px;
  cursor: pointer;
}
.l-header__toggle[aria-expanded=true] {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-label {
  display: none;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-line {
  width: 12px;
  background-color: transparent;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-line::before, .l-header__toggle[aria-expanded=true] .l-header__toggle-line::after {
  width: 12px;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-line::before {
  transform: rotate(45deg);
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-line::after {
  transform: rotate(-45deg);
}
.l-header__toggle-label {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.571;
  letter-spacing: 0.1em;
}
.l-header__toggle-line {
  position: relative;
  display: block;
  width: 17px;
  height: 1px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.l-header__toggle-line::before, .l-header__toggle-line::after {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #fff;
  content: "";
  transition: transform 0.3s ease;
}
.l-header__toggle-line::before {
  transform: translateY(-6px);
}
.l-header__toggle-line::after {
  transform: translateY(5px);
}
@media (min-width: 768px) {
  .l-header {
    height: 80px;
    padding-inline: 32px;
  }
  .l-header__logo, .l-header__logo-image {
    width: 40px;
    height: 46px;
  }
  .l-header__toggle {
    width: 101px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .l-header {
    height: 100px;
    padding-inline: 48px 40px;
  }
  .l-header__logo {
    gap: 16px;
    width: auto;
    height: auto;
  }
  .l-header__logo-image {
    width: 58px;
    height: 58px;
  }
  .l-header__logo-text {
    display: block;
    font-family: "Marcellus", serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.2em;
    color: #54372d;
  }
  .l-header__nav {
    display: block;
  }
  .l-header__toggle {
    display: none;
  }
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-content: start;
  padding: 149px 60px 40px;
  background-color: #d4cebe;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.l-drawer__list {
  display: grid;
  gap: 12px;
}
.l-drawer__link {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.l-drawer__ja {
  display: none;
}

body.is-menu-open .l-header {
  z-index: 1001;
  height: 100px;
  padding-inline: 30px;
  background-color: transparent;
}
body.is-menu-open .l-header__logo, body.is-menu-open .l-header__logo-image {
  width: 32px;
  height: 32px;
}

.l-footer {
  text-align: center;
  background-color: #f9f8f6;
}
.l-footer__links {
  position: relative;
  display: grid;
  width: min(100% - 32px, 315px);
  margin-inline: auto;
}
.l-footer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 200px;
  font-family: "Marcellus", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
  border-bottom: 1px solid #ca7f13;
}
.l-footer__link span {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: -12px;
}
.l-footer__link + .l-footer__link {
  border-top: 0;
}
.l-footer__body {
  min-height: 346px;
  padding: 103px 0 8px;
  margin-left: -18px;
}
.l-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.l-footer__logo {
  width: 48px;
}
.l-footer__brand-text {
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: left;
  color: #54372d;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 0;
  width: 215px;
  margin: 32px 0 32px 99px;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: 0.1em;
  color: #54372d;
}
.l-footer__nav::before {
  order: 1;
  flex-basis: 100%;
  height: 0;
  content: "";
}
.l-footer__nav li + li {
  padding-left: 11px;
  margin-left: 10px;
  border-left: 1px solid rgba(84, 55, 45, 0.45);
}
.l-footer__nav li:nth-child(4) {
  order: 2;
  padding-left: 17px;
  margin-left: 0;
  border-left: 0;
}
.l-footer__nav li:nth-child(5) {
  order: 2;
}
.l-footer__legal {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  margin-left: 68px;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: 0.1em;
  color: #54372d;
}
.l-footer__legal a + a {
  padding-left: 12px;
  border-left: 1px solid rgba(84, 55, 45, 0.45);
}
.l-footer__copyright {
  margin-top: 40px;
  font-family: "Marcellus", serif;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #54372d;
  transform: translateX(34px);
}
.l-footer__page-top {
  position: fixed;
  right: 30px;
  bottom: 22px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 0;
  background-color: #949e33;
  border-radius: 50%;
}
.l-footer__page-top::before {
  font-family: "Font Awesome 6 Free";
  font-size: 1.125rem;
  font-weight: 900;
  content: "\f106";
}
@media (max-width: 374px) {
  .l-footer__body {
    margin-inline: auto;
  }
  .l-footer__nav {
    margin: 32px auto;
  }
  .l-footer__legal {
    margin: 28px 0 0;
  }
  .l-footer__copyright {
    font-size: clamp(0.5625rem, 2.67vw, 0.625rem);
    letter-spacing: 0.01em;
    transform: none;
  }
}
@media (min-width: 376px) {
  .l-footer__body {
    margin-inline: auto;
  }
  .l-footer__nav {
    margin-inline: auto;
  }
  .l-footer__legal {
    margin-left: 0;
  }
  .l-footer__copyright {
    transform: none;
  }
}
@media (min-width: 768px) {
  .l-footer__links {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 64px, 1080px);
    border-bottom: 1px solid #ca7f13;
  }
  .l-footer__links::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 150px;
    background-color: #ca7f13;
    content: "";
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .l-footer__links::after {
    height: 210px;
  }
}
@media (min-width: 768px) {
  .l-footer__link {
    min-height: 200px;
    border-bottom: 0;
  }
  .l-footer__body {
    min-height: 380px;
    padding-top: 82px;
  }
  .l-footer__logo {
    width: 54px;
  }
  .l-footer__nav {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .l-footer__link {
    min-height: 260px;
    font-size: 5rem;
    line-height: 1;
    border-bottom: 0;
  }
  .l-footer__link:nth-child(2) {
    font-size: 4.5rem;
    line-height: 1;
  }
  .l-footer__link span {
    font-size: 1rem;
    line-height: 1;
  }
  .l-footer__link + .l-footer__link {
    border-top: 0;
    border-left: 0;
  }
  .l-footer__body {
    display: grid;
    align-content: center;
    width: min(100% - 32px, 1200px);
    min-height: 420px;
    margin-inline: auto;
    padding: 70px 0 32px;
  }
  .l-footer__logo {
    width: 58px;
  }
  .l-footer__brand {
    gap: 14px;
  }
  .l-footer__brand-text {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .l-footer__nav {
    width: auto;
    margin: 42px auto 0;
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .l-footer__nav::before {
    display: none;
  }
  .l-footer__nav li + li {
    padding-left: 20px;
    margin-left: 20px;
  }
  .l-footer__nav li:nth-child(4) {
    order: initial;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(84, 55, 45, 0.45);
  }
  .l-footer__nav li:nth-child(5) {
    order: initial;
  }
  .l-footer__legal {
    margin-left: 0;
    font-family: "Marcellus", serif;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #54372d;
  }
  .l-footer__copyright {
    margin-left: 0;
    transform: none;
  }
  .l-footer__page-top {
    right: 30px;
    bottom: 30px;
    width: 80px;
    height: 80px;
  }
  .l-footer__page-top::before {
    font-size: 1.5rem;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #949e33;
  border: 1px solid #949e33;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.c-button:active {
  opacity: 0.85;
}
.c-button--outline {
  color: #949e33;
  background-color: transparent;
}
@media (hover: hover) {
  .c-button:hover {
    color: #949e33;
    background-color: #fff;
  }
}

.c-section-title {
  position: relative;
  z-index: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #ca7f13;
}
.c-section-title::after {
  position: absolute;
  top: 50%;
  left: 90px;
  z-index: -1;
  font-family: "Parisienne", cursive;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
  color: rgba(202, 127, 19, 0.08);
  content: attr(data-script);
  transform: translateY(-50%);
  pointer-events: none;
}
.c-section-title__ja {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #54372d;
}
@media (min-width: 1024px) {
  .c-section-title--pc-large {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
}

.c-page-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #ca7f13;
}
.c-page-title__ja {
  display: block;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #54372d;
}

.c-form__required {
  color: #b24737;
}
.c-form__input, .c-form__textarea {
  width: 100%;
  color: #333;
  background-color: #fff;
  border: 1px solid #d4cebe;
  border-radius: 0;
}
.c-form__textarea {
  resize: vertical;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border: 1px solid #b45a4a;
}
.wpcf7 input.wpcf7-not-valid:focus,
.wpcf7 textarea.wpcf7-not-valid:focus {
  outline: 1px solid #b45a4a;
  outline-offset: 1px;
}
.wpcf7-checkbox.wpcf7-not-valid .wpcf7-list-item input, .wpcf7-radio.wpcf7-not-valid .wpcf7-list-item input {
  border: 1px solid #b45a4a;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #b45a4a;
}
.wpcf7 form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 10px 14px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #54372d;
  background-color: transparent;
  border: 1px solid #ca7f13;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output {
  color: #b45a4a;
  border-color: #b45a4a;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #949e33;
}

.c-google-map {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #d4cebe;
}
.c-google-map__frame, .c-google-map__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.c-google-map__fallback {
  object-fit: cover;
}

.p-page-hero {
  overflow: hidden;
}
.p-page-hero picture {
  display: block;
  overflow: hidden;
}
.p-page-hero__heading {
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 30px 16px;
  background-color: #d4cebe;
}
.p-page-hero__visual {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.p-page-hero .c-page-title {
  font-size: 2.25rem;
  line-height: 1.15;
  text-align: center;
}
.p-page-hero .c-page-title__ja {
  margin-top: 9px;
  font-size: 0.6875rem;
}
@media (min-width: 1024px) {
  .p-page-hero__heading {
    min-height: 220px;
  }
  .p-page-hero__visual {
    height: 520px;
    aspect-ratio: auto;
  }
  .p-page-hero .c-page-title {
    font-size: 3.5rem;
  }
}

.l-header--price,
.l-header--news,
.l-header--salon,
.l-header--reserve {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f9f8f6;
}
.l-header--price.is-transparent,
.l-header--news.is-transparent,
.l-header--salon.is-transparent,
.l-header--reserve.is-transparent {
  background-color: transparent;
}

.l-header--price ~ main {
  padding-top: 84px;
}
@media (min-width: 768px) {
  .l-header--price ~ main {
    padding-top: 80px;
  }
}
@media (min-width: 1024px) {
  .l-header--price ~ main {
    padding-top: 174px;
  }
}

.l-header--news ~ main,
.l-header--salon ~ main {
  padding-top: 80px;
}
@media (min-width: 1024px) {
  .l-header--news ~ main,
  .l-header--salon ~ main {
    padding-top: 174px;
  }
}

.l-header--reserve ~ main {
  padding-top: 80px;
}
@media (min-width: 1024px) {
  .l-header--reserve ~ main {
    padding-top: 100px;
  }
}

.p-page-hero--price,
.p-page-hero--news,
.p-page-hero--salon,
.p-page-hero--reserve {
  display: contents;
}
.p-page-hero--price picture,
.p-page-hero--news picture,
.p-page-hero--salon picture,
.p-page-hero--reserve picture {
  position: sticky;
  top: 0;
  z-index: 2;
}

.p-page-content {
  position: relative;
  z-index: 3;
  display: flow-root;
  background-color: #f9f8f6;
}

.p-breadcrumb {
  padding-block: 4px;
  font-size: 0.6875rem;
  color: #54372d;
  background-color: #f9f8f6;
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-breadcrumb__list li {
  display: flex;
  gap: 10px;
}
.p-breadcrumb__list li + li::before {
  content: "｜";
}

.p-reserve-banner {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  min-height: 200px;
  margin-top: 76px;
  background-image: url("../images/reserve-link-sp.webp");
  background-position: center;
  background-size: cover;
}
.p-reserve-banner::before {
  position: absolute;
  inset: 0;
  background-color: rgba(70, 70, 70, 0.8);
  content: "";
}
.p-reserve-banner__title {
  position: relative;
  z-index: 1;
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
  margin-top: -21px;
}
.p-reserve-banner__ja {
  position: relative;
  z-index: 1;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.167;
  letter-spacing: 0.1em;
  color: #ca7f13;
  text-shadow: 4px 4px 10px #333;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-reserve-banner {
    min-height: 280px;
  }
  .p-reserve-banner__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .p-reserve-banner {
    min-height: 400px;
    margin-top: 140px;
    background-image: url("../images/reserve-link-pc.webp");
  }
  .p-reserve-banner__title {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .p-reserve-banner__ja {
    font-size: 1rem;
    line-height: 0.875;
  }
}

.js-fade-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.js-fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-fade-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.p-fv {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 375/809;
  background-image: url("../images/fv_bg-sp.webp");
  background-position: center top;
  background-size: cover;
}
.p-fv__visual-tab {
  display: none;
}
.p-fv__copy-sp span {
  display: block;
}
.p-fv__copy {
  position: absolute;
  top: 48%;
  left: 14px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
}
.p-fv__copy-pc {
  display: none;
}
@media (min-width: 768px) {
  .p-fv {
    height: clamp(600px, 80vw, 820px);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    background-color: #efb99c;
    background-image: none;
  }
  .p-fv::after {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 25.8%;
    width: 120px;
    height: 100%;
    background-image: linear-gradient(to right, #efb99c 0%, rgba(239, 185, 156, 0) 100%);
    content: "";
    pointer-events: none;
  }
  .p-fv__visual-tab {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 74%;
    height: 100%;
    object-fit: cover;
    object-position: 88% center;
  }
  .p-fv__copy {
    z-index: 1;
    top: 50%;
    left: 4%;
    width: 40%;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    transform: translateY(-50%);
  }
  .p-fv__copy span {
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .p-fv {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1440/900;
    background-image: url("../images/fv_bg-pc.webp");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-fv::after {
    display: none;
  }
  .p-fv__visual-tab {
    display: none;
  }
  .p-fv__copy {
    top: 38%;
    left: 2.5%;
    width: auto;
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    transform: none;
  }
  .p-fv__copy-sp {
    display: none;
  }
  .p-fv__copy-pc {
    display: inline;
  }
}

.p-top-news {
  overflow: hidden;
  padding-block: 50px 6px;
  margin-left: 7px;
}
.p-top-news .l-inner {
  width: min(100% - 62px, 1200px);
}
.p-top-news .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-top-news .c-section-title::after {
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-top-news .c-section-title__ja {
  margin-top: 4px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-top-news .c-button {
  display: flex;
  width: 120px;
  min-width: 0;
  min-height: 32px;
  margin: 27px auto 0;
  padding: 4px 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.667;
  letter-spacing: 0.1em;
}
.p-top-news__list {
  display: grid;
  margin-top: 31px;
  border-top: 1px solid rgba(84, 55, 45, 0.7);
}
.p-top-news__item {
  display: grid;
  gap: 9px;
  padding-top: 22px;
  border-bottom: 1px solid rgba(84, 55, 45, 0.7);
  margin-left: -9px;
  padding-bottom: 23px;
}
.p-top-news__item time {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.571;
  letter-spacing: 0.1em;
  color: #54372d;
}
.p-top-news__item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #54372d;
}
.p-top-news__item p {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #54372d;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-top-news {
    padding-block: 90px 120px;
  }
  .p-top-news .c-section-title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .p-top-news .c-button {
    width: 138px;
    margin-top: 28px;
  }
  .p-top-news__list {
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
    border-right: 1px solid rgba(84, 55, 45, 0.55);
  }
  .p-top-news__item {
    min-height: 150px;
    padding: 20px 18px;
    border-bottom: 0;
    border-left: 1px solid rgba(84, 55, 45, 0.55);
  }
}
@media (min-width: 1024px) {
  .p-top-news {
    padding-block: 165px 170px;
  }
  .p-top-news .l-inner {
    position: relative;
    width: min(100% - 32px, 1200px);
  }
  .p-top-news .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
  }
  .p-top-news .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-top-news .c-button {
    position: absolute;
    top: 64px;
    right: 0;
    width: auto;
    min-width: 138px;
    min-height: 35px;
    margin-top: 0;
    padding: 5px 20px;
    font-size: 0.875rem;
  }
  .p-top-news__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 0;
    border-right: 1px solid rgba(84, 55, 45, 0.55);
  }
  .p-top-news__item {
    min-height: 130px;
    padding: 0 18px 16px;
    border-bottom: 0;
    border-left: 1px solid rgba(84, 55, 45, 0.55);
  }
}

.p-top-concept {
  overflow: hidden;
  padding-block: 114px 120px;
  background-color: #f9f8f6;
}
.p-top-concept .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-top-concept .c-section-title::after {
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-top-concept .c-section-title__ja {
  margin-top: 4px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.667;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-top-concept__inner {
  position: relative;
  display: block;
  width: 315px;
}
.p-top-concept__visual {
  width: 100%;
  object-fit: cover;
}
.p-top-concept__heading, .p-top-concept__body {
  display: grid;
}
.p-top-concept__heading {
  position: relative;
  z-index: 1;
  gap: 38px;
  margin-top: 69px;
}
.p-top-concept__lower {
  display: block;
}
.p-top-concept__lower picture {
  position: absolute;
  top: 288px;
  right: 0;
  width: 108px;
  height: 245px;
}
.p-top-concept__body {
  gap: 20px;
  margin-top: 34px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-top-concept__lead {
  width: 155px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ca7f13;
  margin-left: 10px;
  margin-top: 3px;
}
.p-top-concept__more {
  position: relative;
  justify-self: end;
  width: 121px;
  padding-bottom: 2px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #54372d;
  border-bottom: 1px solid #54372d;
}
.p-top-concept__more::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 10px;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: rotate(35deg);
  transform-origin: right center;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-top-concept {
    padding-block: 120px 140px;
  }
  .p-top-concept__inner {
    width: min(100% - 64px, 640px);
  }
  .p-top-concept__main {
    display: block;
    width: 100%;
  }
  .p-top-concept__heading {
    gap: 28px;
    margin-top: 56px;
  }
  .p-top-concept__lead {
    width: auto;
  }
  .p-top-concept__lead-break {
    display: none;
  }
  .p-top-concept__lower {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    align-items: start;
    gap: 32px;
    margin-top: 44px;
  }
  .p-top-concept__lower picture {
    position: static;
    width: 100%;
    height: auto;
  }
  .p-top-concept__body {
    gap: 16px;
    margin-top: 0;
  }
  .p-top-concept__body-break {
    display: none;
  }
  .p-top-concept__visual--sub {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .p-top-concept .c-section-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .p-top-concept {
    padding-block: 198px 250px;
  }
  .p-top-concept .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
  }
  .p-top-concept .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-top-concept .c-section-title__ja {
    font-size: 0.875rem;
    line-height: 1;
  }
  .p-top-concept__inner {
    display: block;
    width: min(100% - 32px, 1200px);
  }
  .p-top-concept__main {
    display: block;
    width: 864px;
    margin-left: auto;
  }
  .p-top-concept__heading {
    position: absolute;
    top: 280px;
    left: 0;
    gap: 22px;
    margin-top: 0;
  }
  .p-top-concept__lead {
    width: auto;
    font-size: 1.75rem;
    line-height: 1.286;
    letter-spacing: 0.1em;
  }
  .p-top-concept__lower {
    display: grid;
    grid-template-columns: 540px 1fr;
    align-items: start;
    gap: 58px;
    margin-top: 78px;
  }
  .p-top-concept__lower picture {
    position: static;
    width: auto;
    height: auto;
  }
  .p-top-concept__body {
    gap: 18px;
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-top-concept__visual--sub {
    width: 540px;
    height: 210px;
  }
}

.p-feature {
  overflow: hidden;
  padding-block: 88px 55px;
  color: #ca7f13;
  background-color: #454545;
}
.p-feature .l-inner {
  position: relative;
  width: 315px;
}
.p-feature .c-section-title {
  position: absolute;
  top: -29px;
  left: 50%;
  z-index: 3;
  width: 100%;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  transform: translateX(-50%);
}
.p-feature .c-section-title::after {
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-feature .c-section-title__ja {
  display: none;
}
.p-feature__stage, .p-feature__nav, .p-feature__panel, .p-feature__body {
  display: grid;
}
.p-feature__stage {
  gap: 0;
  margin-top: 0;
}
.p-feature__nav {
  display: none;
}
.p-feature__tab {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  width: 100%;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: left;
  color: rgba(202, 127, 19, 0.58);
  cursor: pointer;
  transition: color 0.3s ease;
}
.p-feature__tab.is-active {
  color: #ca7f13;
}
.p-feature__panels {
  position: relative;
  width: 315px;
}
.p-feature__panels.slick-initialized {
  width: 375px;
  margin-left: -30px;
}
.p-feature__panels.slick-initialized::before, .p-feature__panels.slick-initialized::after {
  position: absolute;
  top: 275px;
  bottom: 0;
  z-index: 2;
  width: 30px;
  background-color: #454545;
  content: "";
  pointer-events: none;
}
.p-feature__panels.slick-initialized::before {
  left: 0;
}
.p-feature__panels.slick-initialized::after {
  right: 0;
}
.p-feature__panels.slick-initialized .slick-list {
  overflow: hidden;
}
.p-feature__panels.slick-initialized .p-feature__panel {
  position: relative;
  inset: auto;
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  pointer-events: auto;
}
.p-feature__panels.slick-initialized .p-feature__panel::before, .p-feature__panels.slick-initialized .p-feature__panel::after {
  display: none;
}
.p-feature__panels.slick-initialized .p-feature__panel picture {
  display: block;
  padding-inline: 9px;
}
.p-feature__panel {
  position: absolute;
  inset: 0;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s linear 0.5s;
  pointer-events: none;
}
.p-feature__panel::before, .p-feature__panel::after {
  position: absolute;
  top: 0;
  width: 18px;
  height: 275px;
  background-position: center;
  background-size: cover;
  content: "";
}
.p-feature__panel::before {
  right: calc(100% + 18px);
}
.p-feature__panel::after {
  left: calc(100% + 18px);
}
.p-feature__panel.is-active, .p-feature__panel.is-leaving {
  position: relative;
}
.p-feature__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}
.p-feature #feature-panel-01::before {
  background-image: url("../images/feature_03-sp.webp");
}
.p-feature #feature-panel-01::after {
  background-image: url("../images/feature_02-sp.webp");
}
.p-feature #feature-panel-02::before {
  background-image: url("../images/feature_01-sp.webp");
}
.p-feature #feature-panel-02::after {
  background-image: url("../images/feature_03-sp.webp");
}
.p-feature #feature-panel-03::before {
  background-image: url("../images/feature_02-sp.webp");
}
.p-feature #feature-panel-03::after {
  background-image: url("../images/feature_01-sp.webp");
}
.p-feature__nav li {
  display: grid;
}
.p-feature__image {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
.p-feature__body {
  gap: 17px;
  margin-top: 3px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(202, 127, 19, 0.8);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-feature__number, .p-feature__title {
  font-family: "Marcellus", serif;
  color: #ca7f13;
}
.p-feature__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.875rem;
  line-height: 1.929;
  letter-spacing: 0.1em;
}
.p-feature__number::before, .p-feature__number::after {
  display: block;
  flex: 1;
  width: auto;
  max-width: 100px;
  height: 1px;
  background-color: #ca7f13;
  content: "";
}
.p-feature__title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: -7px;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-feature {
    padding-block: 130px 125px;
  }
  .p-feature .l-inner {
    width: 100%;
  }
  .p-feature .c-section-title {
    top: -46px;
    width: min(100% - 64px, 640px);
    font-size: 4rem;
  }
  .p-feature__stage {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .p-feature__panels {
    width: min(100% - 64px, 640px);
    margin-inline: auto;
  }
  .p-feature__panels.slick-initialized {
    width: min(100% - 64px, 640px);
    margin-inline: auto;
  }
  .p-feature__image {
    height: auto;
    aspect-ratio: 315/275;
  }
  .p-feature__body {
    padding-inline: 24px;
  }
}
@media (min-width: 1024px) {
  .p-feature {
    padding-block: 160px 60px;
  }
  .p-feature .l-inner {
    position: relative;
    width: min(100% - 32px, 1200px);
  }
  .p-feature .c-section-title {
    position: absolute;
    top: -44px;
    left: 50%;
    z-index: 2;
    width: 520px;
    font-size: 5.25rem;
    line-height: 1.262;
    text-align: center;
    transform: translateX(-50%);
  }
  .p-feature .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-feature .c-section-title__ja {
    display: none;
  }
  .p-feature__stage {
    grid-template-columns: minmax(0, 1fr) 450px minmax(0, 1fr);
    align-items: center;
    margin-top: 0;
  }
  .p-feature__nav {
    display: grid;
    gap: 38px;
  }
  .p-feature__tab {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-feature__panel {
    grid-template-columns: 450px 1fr;
    align-items: center;
    gap: 40px;
  }
  .p-feature__panel picture {
    padding-inline: 0;
  }
  .p-feature__panel::before, .p-feature__panel::after {
    display: none;
  }
  .p-feature__panels {
    grid-column: 2/-1;
    width: 100%;
  }
  .p-feature__image {
    width: 450px;
    height: 630px;
  }
  .p-feature__body {
    gap: 24px;
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-feature__number {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .p-feature__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (min-width: 1440px) {
  .p-feature .l-inner {
    width: min(100% - 64px, 1305px);
  }
  .p-feature__nav {
    gap: 58px;
  }
  .p-feature__panel {
    gap: 70px;
  }
  .p-feature__body {
    justify-self: start;
    width: 380px;
    font-size: 1.125rem;
    line-height: 2;
  }
  .p-feature__number {
    display: grid;
    gap: 12px;
  }
  .p-feature__number::before {
    display: none;
  }
  .p-feature__number::after {
    justify-self: center;
    flex: none;
    width: 24px;
  }
}

.p-top-price {
  overflow: hidden;
  padding-block: 150px 98px;
}
.p-top-price .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-top-price .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-top-price .c-section-title__ja {
  margin-top: 4px;
  font-size: 0.6875rem;
  color: #ca7f13;
}
.p-top-price .l-inner {
  width: min(100% - 32px, 315px);
}
.p-top-price__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 60px;
}
.p-top-price__list a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-height: 80px;
  padding: 16px 42px 12px 7px;
  font-family: "Marcellus", serif;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ca7f13;
  border-bottom: 1px solid rgba(202, 127, 19, 0.65);
}
.p-top-price__list a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 6 Free";
  font-size: 1.25rem;
  font-weight: 900;
  content: "\f054";
  transform: translateY(-50%);
}
.p-top-price__list a:nth-child(odd) {
  border-right: 0;
}
.p-top-price__list a:nth-child(1) {
  order: 1;
}
.p-top-price__list a:nth-child(2) {
  order: 2;
}
.p-top-price__list a:nth-child(3) {
  order: 4;
}
.p-top-price__list a:nth-child(4) {
  order: 3;
}
.p-top-price__list a:nth-child(5) {
  order: 5;
}
.p-top-price__list a span {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-top-price {
    padding-block: 120px;
  }
  .p-top-price .l-inner {
    width: min(100% - 64px, 640px);
  }
  .p-top-price .c-section-title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .p-top-price .l-inner {
    width: min(100% - 64px, 640px);
  }
  .p-top-price__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-price__list a {
    min-height: 84px;
    padding-inline: 12px 44px;
    font-size: 2rem;
  }
  .p-top-price__list a:nth-child(1), .p-top-price__list a:nth-child(2), .p-top-price__list a:nth-child(3), .p-top-price__list a:nth-child(4), .p-top-price__list a:nth-child(5) {
    order: initial;
  }
  .p-top-price__list a:nth-child(odd) {
    border-right: 1px solid rgba(202, 127, 19, 0.65);
  }
  .p-top-price__list a:nth-child(5) {
    border-bottom: 0;
  }
  .p-top-price__list a::after {
    right: 16px;
  }
}
@media (min-width: 1024px) {
  .p-top-price {
    padding-block: 180px 140px;
  }
  .p-top-price .l-inner {
    position: relative;
    display: block;
    width: min(100% - 32px, 1200px);
  }
  .p-top-price .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .p-top-price .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-top-price__list {
    width: 100%;
    margin-top: 64px;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-price__list a {
    min-height: 84px;
    padding: 14px 48px 10px 12px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .p-top-price__list a:nth-child(1), .p-top-price__list a:nth-child(2), .p-top-price__list a:nth-child(3), .p-top-price__list a:nth-child(4), .p-top-price__list a:nth-child(5) {
    order: initial;
  }
  .p-top-price__list a:nth-child(odd) {
    border-right: 1px solid rgba(202, 127, 19, 0.65);
  }
  .p-top-price__list a::after {
    right: 20px;
    font-size: 1rem;
  }
  .p-top-price__list a span {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1440px) {
  .p-top-price {
    padding-block: 430px 100px;
  }
  .p-top-price .l-inner {
    display: block;
  }
  .p-top-price .c-section-title {
    position: absolute;
    top: -165px;
    left: 0;
    width: 560px;
  }
  .p-top-price__list {
    width: 800px;
    margin-left: 400px;
  }
  .p-top-price__list a {
    min-height: 84px;
    padding: 10px 48px 8px 14px;
    font-size: 3rem;
    border-bottom-color: #ca7f13;
  }
  .p-top-price__list a:nth-child(odd) {
    border-right-color: #ca7f13;
  }
  .p-top-price__list a::after {
    right: 20px;
    font-size: 1.25rem;
  }
}

.p-faq {
  overflow: hidden;
  width: min(100% - 32px, 315px);
  padding-block: 48px 46px;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-faq {
    width: min(100% - 64px, 640px);
    padding-block: 100px 120px;
  }
  .p-faq .c-section-title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .p-faq {
    width: min(100% - 64px, 640px);
  }
}
.p-faq .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-faq .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-faq .c-section-title__ja {
  margin-top: 3px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.667;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-faq__list {
  display: grid;
  gap: 22px;
  margin-top: 45px;
}
.p-faq__list > div {
  background-color: #d4cebe;
}
.p-faq__button {
  display: grid;
  grid-template-columns: 16px 1fr 12px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 70px;
  padding: 15px 12px 14px 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
  color: #ca7f13;
  cursor: pointer;
}
.p-faq__button::before {
  align-self: start;
  font-size: 1.125rem;
  line-height: 0.778;
  content: "Q";
}
.p-faq__button span {
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  font-size: 0;
}
.p-faq__button span::before {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #54372d;
  clip-path: polygon(0 25%, 100% 25%, 50% 75%);
  content: "";
}
.p-faq__button[aria-expanded=true] span::before {
  clip-path: polygon(50% 25%, 100% 75%, 0 75%);
}
.p-faq__answer {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  padding: 0 36px 15px 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-faq__answer::before {
  font-size: 1.125rem;
  line-height: 0.778;
  content: "A";
}
.p-faq__answer[hidden] {
  display: none;
}
@media (min-width: 1024px) {
  .p-faq {
    width: min(100% - 32px, 1200px);
    padding-block: 150px 115px;
  }
  .p-faq .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
  }
  .p-faq .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-faq .c-section-title__ja {
    margin-top: 6px;
    font-size: 0.875rem;
    line-height: 1;
  }
  .p-faq__list {
    max-width: 1080px;
    margin: 70px auto 0;
  }
  .p-faq__button {
    grid-template-columns: 24px 1fr 18px;
    min-height: 100px;
    padding: 24px 22px;
    font-size: 1.125rem;
    line-height: 0.778;
  }
  .p-faq__button::before {
    font-size: 1.5rem;
    line-height: 0.583;
  }
  .p-faq__answer {
    grid-template-columns: 24px 1fr;
    padding: 0 62px 32px 22px;
    font-size: 1.125rem;
    line-height: 0.778;
  }
  .p-faq__answer::before {
    font-size: 1.5rem;
    line-height: 0.583;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-feature__panel {
    transform: none;
    transition: none;
  }
}
.p-concept-page .l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #f9f8f6;
}
.p-concept-page .l-header.is-transparent {
  background-color: transparent;
}
@media (min-width: 1024px) {
  .p-concept-page .l-header {
    height: 100px;
  }
}

.p-concept-parallax {
  position: relative;
}
.p-concept-parallax__visual {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
}
.p-concept-parallax__content {
  position: relative;
  z-index: 3;
  background-color: #d4cebe;
}
@media (min-width: 1024px) {
  .p-concept-parallax__visual .p-page-hero__visual {
    height: 600px;
    aspect-ratio: auto;
  }
}

.p-page-hero--concept .p-page-hero__heading {
  min-height: 280px;
  padding-top: 110px;
}
.p-page-hero--concept .c-page-title {
  font-size: 2rem;
  line-height: 0.438;
  letter-spacing: 0.1em;
}
.p-page-hero--concept .c-page-title__ja {
  display: none;
}
@media (min-width: 768px) {
  .p-page-hero--concept .p-page-hero__heading {
    min-height: 234px;
    padding-top: 110px;
  }
  .p-page-hero--concept .c-page-title {
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: normal;
  }
}
@media (min-width: 1024px) {
  .p-page-hero--concept .p-page-hero__heading {
    min-height: 460px;
    padding-top: 130px;
  }
  .p-page-hero--concept .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

.p-breadcrumb--concept {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 16px;
  font-size: 0.875rem;
  line-height: 2.571;
  letter-spacing: 0.1em;
  color: #ca7f13;
  background-color: #d4cebe;
}
@media (min-width: 1024px) {
  .p-breadcrumb--concept {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    min-height: 120px;
    padding: 30px 38px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.p-concept-about {
  padding-block: 47px 58px;
  background-color: #d4cebe;
}
.p-concept-about .c-section-title {
  display: none;
}
.p-concept-about__inner {
  display: grid;
  gap: 17px;
  width: min(100% - 60px, 315px);
}
.p-concept-about__image {
  width: 100%;
  object-fit: cover;
}
.p-concept-about__body {
  display: grid;
  gap: 0;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-concept-about__lead {
  margin-bottom: 14px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media (min-width: 768px) {
  .p-concept-about {
    padding-block: 64px 76px;
  }
  .p-concept-about__inner {
    gap: 34px;
    width: min(100% - 32px, 1080px);
  }
  .p-concept-about__body {
    gap: 20px;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: normal;
    color: rgba(202, 127, 19, 0.8);
  }
  .p-concept-about__lead {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: normal;
    color: #ca7f13;
  }
}
@media (min-width: 1024px) {
  .p-concept-about {
    padding-block: 6px 78px;
  }
  .p-concept-about__inner {
    position: relative;
    display: block;
    width: min(100% - 32px, 1200px);
  }
  .p-concept-about__image {
    display: block;
    width: 720px;
    height: 405px;
    margin-left: auto;
  }
  .p-concept-about__body {
    display: grid;
    gap: 0;
    margin-top: 50px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
  .p-concept-about__lead {
    position: absolute;
    top: 145px;
    left: 0;
    width: 500px;
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #ca7f13;
  }
}

.p-concept-instagram {
  overflow: hidden;
  padding-block: 106px 86px;
  background-color: #f9f8f6;
}
.p-concept-instagram .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-concept-instagram .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-concept-instagram .c-section-title__ja {
  margin-top: 6px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.667;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-concept-instagram .c-button {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 200px;
  min-height: 50px;
  margin: 30px auto 0;
  padding: 10px 49px 10px 24px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.p-concept-instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 148px);
  justify-content: center;
  gap: 18px 16px;
  margin-top: 64px;
}
.p-concept-instagram__grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.p-concept-instagram__grid a:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 3px;
}
.p-concept-instagram__grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .p-concept-instagram {
    padding-block: 76px;
    text-align: center;
  }
  .p-concept-instagram .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
    text-align: left;
  }
  .p-concept-instagram .c-section-title::after {
    font-family: "AnnabelleJF", "Parisienne", cursive;
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-concept-instagram .c-section-title__ja {
    margin-top: 5px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .p-concept-instagram .c-button {
    width: 195px;
    min-width: 190px;
    min-height: 49px;
    margin-top: 32px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .p-concept-instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 34px;
  }
}
@media (min-width: 1024px) {
  .p-concept-instagram {
    overflow: visible;
    padding-block: 150px 140px;
    text-align: left;
  }
  .p-concept-instagram .l-inner {
    width: min(100% - 32px, 1200px);
  }
  .p-concept-instagram .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
    text-align: left;
  }
  .p-concept-instagram .c-section-title::after {
    font-family: "AnnabelleJF", "Parisienne", cursive;
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-concept-instagram .c-section-title__ja {
    margin-top: 5px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .p-concept-instagram__grid {
    grid-template-columns: repeat(3, 240px);
    gap: 40px;
    width: 800px;
    margin: 55px auto 0;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .p-concept-instagram__grid a:hover {
    opacity: 1;
  }
  .p-concept-instagram__grid a:hover img {
    opacity: 0.82;
  }
}
@media (min-width: 1024px) {
  .p-concept-instagram .c-button {
    display: flex;
    justify-content: center;
    width: 195px;
    min-height: 49px;
    margin: 58px auto 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.p-concept-company {
  overflow: hidden;
  padding-block: 64px 40px;
  background-color: #f9f8f6;
}
.p-concept-company .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-concept-company .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-concept-company .c-section-title__ja {
  margin-top: 6px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.667;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
@media (max-width: 489px), (min-width: 768px) and (max-width: 829px) {
  .p-concept-company .c-section-title::after {
    white-space: pre-line;
    content: "Company\aProfile";
  }
}
.p-concept-company__content {
  display: grid;
  gap: 41px;
  margin-top: 63px;
}
.p-concept-company__image {
  width: 100%;
  object-fit: cover;
}
.p-concept-company__sp-break {
  display: initial;
}
.p-concept-company__table .p-concept-company__operator {
  padding-bottom: 27px;
  padding-top: 30px;
}
.p-concept-company__table .p-concept-company__trade-name {
  padding-bottom: 27px;
  padding-top: 30px;
}
.p-concept-company__table .p-concept-company__representative {
  padding-bottom: 27px;
  padding-top: 30px;
}
.p-concept-company__table .p-concept-company__phone {
  padding-bottom: 27px;
  padding-top: 34px;
}
.p-concept-company__table .p-concept-company__capital {
  padding-bottom: 27px;
  padding-top: 30px;
}
.p-concept-company__table .p-concept-company__employees {
  padding-bottom: 27px;
  padding-top: 30px;
}
.p-concept-company__table .p-concept-company__business {
  padding-bottom: 36px;
  padding-top: 25px;
}
.p-concept-company__table .p-concept-company__location {
  padding-bottom: 27px;
  padding-top: 35px;
}
.p-concept-company__location-label {
  display: inline-block;
  transform: translateY(-8px);
}
.p-concept-company__business-text {
  display: inline-block;
  transform: translateY(10px);
}
.p-concept-company__table {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  border-top: 1px solid #ca7f13;
}
.p-concept-company__table div {
  display: contents;
}
.p-concept-company__table dt,
.p-concept-company__table dd {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding-block: 29px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ca7f13;
}
.p-concept-company__table dt {
  padding-left: 14px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #ca7f13;
}
.p-concept-company__table dd {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.167;
  color: #333;
}
@media (min-width: 768px) {
  .p-concept-company {
    padding-block: 76px;
  }
  .p-concept-company .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
  .p-concept-company .c-section-title::after {
    font-family: "AnnabelleJF", "Parisienne", cursive;
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-concept-company .c-section-title__ja {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .p-concept-company__content {
    gap: 32px;
    margin-top: 36px;
  }
  .p-concept-company__table {
    display: block;
    border-top: 1px solid #ca7f13;
  }
  .p-concept-company__table div {
    display: grid;
    grid-template-columns: 108px 1fr;
    font-size: 0.75rem;
  }
  .p-concept-company__table dt,
  .p-concept-company__table dd {
    display: block;
    min-height: 0;
    padding: 13px 0;
    font-size: inherit;
    line-height: inherit;
    border-bottom: 1px solid #ca7f13;
  }
  .p-concept-company__table dt {
    padding-left: 0;
    font-weight: 600;
    color: #ca7f13;
  }
  .p-concept-company__table .p-concept-company__operator, .p-concept-company__table .p-concept-company__trade-name, .p-concept-company__table .p-concept-company__representative, .p-concept-company__table .p-concept-company__location, .p-concept-company__table .p-concept-company__phone, .p-concept-company__table .p-concept-company__capital, .p-concept-company__table .p-concept-company__employees, .p-concept-company__table .p-concept-company__business {
    padding-block: 13px;
  }
  .p-concept-company__location-label, .p-concept-company__business-text {
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .p-concept-company {
    overflow: visible;
    padding-block: 120px;
  }
  .p-concept-company .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
  .p-concept-company .c-section-title::after {
    font-family: "AnnabelleJF", "Parisienne", cursive;
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-concept-company .c-section-title__ja {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .p-concept-company .l-inner {
    width: min(100% - 32px, 1140px);
  }
  .p-concept-company__content {
    display: block;
    margin-top: 48px;
  }
  .p-concept-company picture, .p-concept-company__image {
    display: block;
    width: 100%;
    max-width: 1080px;
    height: 540px;
    margin-left: auto;
  }
  .p-concept-company__sp-break {
    display: none;
  }
  .p-concept-company__table .p-concept-company__operator, .p-concept-company__table .p-concept-company__trade-name, .p-concept-company__table .p-concept-company__representative, .p-concept-company__table .p-concept-company__location, .p-concept-company__table .p-concept-company__phone, .p-concept-company__table .p-concept-company__capital, .p-concept-company__table .p-concept-company__employees, .p-concept-company__table .p-concept-company__business {
    padding-block: 0;
  }
  .p-concept-company__table {
    display: block;
    width: 100%;
    max-width: 1080px;
    margin: 60px 0 0 auto;
    border-top: 1px solid #ca7f13;
  }
  .p-concept-company__table div {
    display: grid;
    grid-template-columns: 110px minmax(190px, 1fr) 110px minmax(280px, 1.4fr);
    align-items: center;
    gap: 0;
    min-height: 72px;
    padding-inline: 12px;
    font-size: 0.75rem;
    border-bottom: 1px solid #ca7f13;
  }
  .p-concept-company__table dt {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 0.778;
    letter-spacing: 0.1em;
    color: #ca7f13;
  }
  .p-concept-company__table dt,
  .p-concept-company__table dd {
    padding-block: 0;
    border-bottom: 0;
  }
  .p-concept-company__table dd {
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
  .p-concept-company__table div:nth-child(4),
  .p-concept-company__table div:nth-child(5) {
    grid-template-columns: 110px 1fr;
  }
}

.p-page-hero--price .p-page-hero__heading {
  min-height: 200px;
  padding-block: 30px;
}
.p-page-hero--price .c-page-title {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-page-hero--price .c-page-title__ja {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media (min-width: 1024px) {
  .p-page-hero--price .p-page-hero__heading {
    min-height: 360px;
    padding-block: 18px;
  }
  .p-page-hero--price .p-page-hero__visual {
    height: auto;
    aspect-ratio: 12/5;
    object-fit: contain;
  }
  .p-page-hero--price .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
  .p-page-hero--price .c-page-title__ja {
    display: block;
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ca7f13;
  }
}

.l-header--price {
  height: 84px;
}
@media (min-width: 1024px) {
  .l-header--price {
    height: 174px;
  }
}

.p-breadcrumb--price {
  display: flex;
  gap: 10px;
  min-height: 70px;
  font-size: 0.875rem;
  line-height: 2.571;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-breadcrumb--price a {
  color: inherit;
}
@media (min-width: 1024px) {
  .p-breadcrumb--price {
    width: 100%;
    max-width: none;
    min-height: 70px;
    padding: 28px 38px 14px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
}

.p-price-intro {
  padding-block: 36px 73px;
  background-color: #f9f8f6;
}
.p-price-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: calc(100% - 60px);
}
.p-price-intro__text {
  display: grid;
  gap: 28px;
  order: 2;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-price-intro__sp-break {
  display: initial;
}
.p-price-intro__nav {
  display: grid;
  order: 1;
}
.p-price-intro__nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 37px;
  padding: 6px 28px 3px 16px;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ca7f13;
  border-bottom: 1px solid #ca7f13;
}
.p-price-intro__nav a::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 14px;
  font-size: 1rem;
  line-height: 1;
  content: "›";
  transform: translateY(-50%);
}
.p-price-intro__nav a span {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  line-height: 0.417;
  letter-spacing: 0.04em;
  transform: translateY(2px);
}
.p-price-intro__nav a:last-child {
  border-bottom: 0;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-price-intro__inner {
    width: min(100% - 64px, 720px);
  }
}
@media (min-width: 1024px) {
  .p-price-intro {
    min-height: 430px;
    padding-block: 80px 100px;
  }
  .p-price-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 560px);
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    width: min(100% - 80px, 1200px);
    max-width: none;
  }
  .p-price-intro__text {
    gap: 0;
    order: initial;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
  .p-price-intro__sp-break {
    display: none;
  }
  .p-price-intro__nav {
    grid-template-columns: repeat(2, 1fr);
    order: initial;
    padding-inline: 0;
  }
  .p-price-intro__nav a {
    min-height: 54px;
    padding: 8px 34px 8px 8px;
    font-size: 2.0625rem;
    line-height: 1;
    letter-spacing: 0.04em;
    border-bottom: 0;
  }
  .p-price-intro__nav a:not(:last-child) {
    border-bottom: 1px solid #ca7f13;
  }
  .p-price-intro__nav a:nth-child(odd) {
    border-right: 1px solid #ca7f13;
  }
  .p-price-intro__nav a:last-child {
    grid-column: 1;
  }
  .p-price-intro__nav a span {
    font-size: 0.5625rem;
    line-height: 1;
    letter-spacing: 0.04em;
    transform: none;
  }
}

.p-price-tables {
  padding-bottom: 48px;
  background-color: #d4cebe;
}
@media (min-width: 1024px) {
  .p-price-tables {
    padding-bottom: 92px;
  }
}

.p-price-table {
  padding-top: 59px;
  color: #ca7f13;
}
.p-price-table--body {
  padding-top: 59px;
}
.p-price-table--v-line {
  padding-top: 82px;
}
.p-price-table--v-line .p-price-table__title {
  position: relative;
  left: 6px;
}
.p-price-table--set {
  padding-top: 80px;
}
.p-price-table__title {
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  font-weight: 400;
  line-height: 1.262;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ca7f13;
}
.p-price-table__group {
  margin-top: 58px;
  text-align: center;
}
.p-price-table__group h3 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.778;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-price-table__group table {
  display: block;
  width: 100%;
  margin-top: 20px;
  font-size: 0.75rem;
  border-collapse: collapse;
}
.p-price-table__group table thead {
  display: none;
}
.p-price-table__group table tbody {
  display: grid;
  gap: 53px;
}
.p-price-table__group table tr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  overflow-x: clip;
}
.p-price-table__group table tr::before, .p-price-table__group table tr::after {
  grid-row: 2;
  padding-bottom: 34px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: 0.04em;
  text-align: center;
  content: "";
  margin-left: -8px;
}
.p-price-table__group table tr::before {
  grid-column: 1;
  content: "施術回数";
}
.p-price-table__group table tr::after {
  grid-column: 2;
  content: "料金";
  transform: translateX(30px);
}
.p-price-table__group table th {
  grid-column: 1/-1;
  grid-row: 1;
  min-height: 60px;
  padding: 0 3px 39px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.667;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-price-table__group table td {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  padding: 7px 27px 10px 0px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.278;
  letter-spacing: 0.1em;
  border-top: 1px solid #ca7f13;
}
.p-price-table__group table td .p-price-table__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.p-price-table__group table td .p-price-table__unit {
  font-size: 0.875rem;
  line-height: 1.643;
  letter-spacing: 0.1em;
}
.p-price-table__group table td::before {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
.p-price-table__group table td:nth-of-type(1)::before {
  content: "トライアルコース（3回）";
}
.p-price-table__group table td:nth-of-type(2)::before {
  content: "減毛コース（6回）";
}
.p-price-table__group table td:nth-of-type(3)::before {
  content: "脱毛コース（12回）";
}
.p-price-table__group table td:last-child {
  border-bottom: 1px solid #ca7f13;
}
.p-price-table__description {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 2.286;
  letter-spacing: 0.1em;
  text-align: left;
}
.p-price-table__note {
  margin-top: 9px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}
.p-price-table__pc-break {
  display: none;
}
.p-price-table__sp-break {
  display: initial;
}
.p-price-table--body .p-price-table__group {
  margin-top: 53px;
}
.p-price-table--body .p-price-table__group + .p-price-table__group {
  margin-top: 55px;
}
.p-price-table:not(.p-price-table--body) .p-price-table__group {
  margin-top: 43px;
}
.p-price-table:not(.p-price-table--body) .p-price-table__note {
  display: none;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-price-table .l-inner {
    width: min(100% - 64px, 720px);
  }
}
@media (min-width: 1024px) {
  .p-price-table {
    min-height: 650px;
    padding-top: 70px;
  }
  .p-price-table--body {
    min-height: 1380px;
    padding-top: 70px;
  }
  .p-price-table--v-line {
    padding-top: 70px;
  }
  .p-price-table--v-line .p-price-table__title {
    left: auto;
  }
  .p-price-table--set {
    padding-top: 70px;
  }
  .p-price-table__title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
  .p-price-table__group {
    max-width: 800px;
    margin: 54px auto 0;
  }
  .p-price-table__group h3 {
    font-size: 1.5rem;
    line-height: 1.333;
    letter-spacing: 0.1em;
  }
  .p-price-table__group table {
    display: table;
    margin-top: 30px;
    table-layout: fixed;
    font-size: 1.125rem;
  }
  .p-price-table__group table thead {
    display: table-header-group;
  }
  .p-price-table__group table tbody {
    display: table-row-group;
  }
  .p-price-table__group table tr {
    display: table-row;
    overflow-x: visible;
  }
  .p-price-table__group table tr::before, .p-price-table__group table tr::after {
    display: none;
  }
  .p-price-table__group table th,
  .p-price-table__group table td {
    display: table-cell;
    height: 42px;
    min-height: 0;
    padding: 7px 3px;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.667;
    letter-spacing: 0.04em;
    text-align: center;
    border-top: 0;
    border-bottom: 1px solid #ca7f13;
  }
  .p-price-table__group table thead th {
    height: auto;
    padding-bottom: 9px;
    font-size: 1rem;
    line-height: 1.667;
    white-space: nowrap;
  }
  .p-price-table__group table tbody th {
    width: 17%;
    text-align: center;
  }
  .p-price-table__group table tbody td {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
  .p-price-table__group table tbody td .p-price-table__unit {
    font-size: 1.125rem;
    line-height: 1.667;
    letter-spacing: 0.1em;
  }
  .p-price-table__group table tbody td::before {
    display: none;
  }
  .p-price-table__description {
    font-size: 1.125rem;
    line-height: 1.778;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-price-table__note {
    font-size: 0.75rem;
    line-height: 2.5;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .p-price-table__pc-break {
    display: initial;
  }
  .p-price-table__sp-break {
    display: none;
  }
  .p-price-table--body .p-price-table__group {
    margin-top: 54px;
  }
  .p-price-table--body .p-price-table__group + .p-price-table__group {
    margin-top: 78px;
  }
  .p-price-table:not(.p-price-table--body) .p-price-table__group {
    margin: 54px auto 0;
  }
  .p-price-table:not(.p-price-table--body) .p-price-table__note {
    display: block;
  }
}

.p-price-custom {
  padding-block: 79px 40px;
  background-color: #f9f8f6;
  padding-bottom: 0;
}
.p-price-custom__inner {
  display: grid;
  gap: 67px;
}
.p-price-custom__image {
  width: 240px;
  margin-inline: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.p-price-custom__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-price-custom__body {
  padding: 0 14px;
}
.p-price-custom__body p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
@media (min-width: 1024px) {
  .p-price-custom {
    min-height: 620px;
    padding-block: 80px;
  }
  .p-price-custom__inner {
    grid-template-columns: minmax(0, 480px) minmax(0, 560px);
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: min(100% - 80px, 1200px);
    max-width: none;
  }
  .p-price-custom__image {
    width: 100%;
    margin-inline: 0;
  }
  .p-price-custom__title {
    font-size: 3rem;
    line-height: 0.5625;
    letter-spacing: 0.1em;
  }
  .p-price-custom__body p {
    margin-top: 44px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
}
@media (min-width: 1440px) {
  .p-price-custom__inner {
    grid-template-columns: 480px 560px;
  }
}

.p-page-hero--salon .p-page-hero__heading {
  min-height: 154px;
}
@media (min-width: 1024px) {
  .p-page-hero--salon .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--salon .p-page-hero__visual {
    height: auto;
    aspect-ratio: 12/5;
    object-fit: contain;
  }
}

.p-page-hero--salons .p-page-hero__heading {
  min-height: 200px;
}
.p-page-hero--salons .c-page-title {
  font-size: 2rem;
  line-height: 0.438;
  letter-spacing: 0.1em;
}
.p-page-hero--salons .c-page-title__ja {
  display: none;
}
@media (min-width: 1024px) {
  .p-page-hero--salons .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--salons .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

.p-page-hero--salon-detail .p-page-hero__heading {
  min-height: 218px;
}
.p-page-hero--salon-detail .c-page-title {
  font-size: 1.5rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.p-page-hero--salon-detail .c-page-title__ja {
  margin-top: -4px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
@media (min-width: 1024px) {
  .p-page-hero--salon-detail .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--salon-detail .c-page-title {
    font-size: 3rem;
    line-height: 0.292;
    letter-spacing: 0.1em;
  }
  .p-page-hero--salon-detail .c-page-title__ja {
    margin-top: 12px;
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 1024px) {
  .l-header--salon {
    height: 174px;
  }
}

.l-header--salons {
  height: 80px;
}
@media (min-width: 1024px) {
  .l-header--salons {
    height: 174px;
  }
}

.l-header--salon-detail {
  height: 98px;
}
@media (min-width: 1024px) {
  .l-header--salon-detail {
    height: 174px;
  }
}

.p-breadcrumb--salon {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 2.571;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-breadcrumb--salon a {
  color: inherit;
}
@media (min-width: 1024px) {
  .p-breadcrumb--salon {
    width: 100%;
    max-width: none;
    min-height: 70px;
    padding: 28px 38px 14px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
}

.p-salons {
  overflow: hidden;
  padding-block: 97px 100px;
  background-color: #f9f8f6;
  padding-bottom: 5px;
}
.p-salons .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-salons .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-salons .c-section-title__ja {
  margin-top: 7px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.667;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-salons__prefectures {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 14px;
  row-gap: 20px;
  margin-top: 87px;
  margin-left: 13px;
}
.p-salons__prefectures a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding-left: 18px;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  line-height: 0.7;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salons__prefectures a:nth-child(1), .p-salons__prefectures a:nth-child(2), .p-salons__prefectures a:nth-child(7) {
  grid-column: 1/-1;
}
.p-salons__prefectures a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 8px;
  background-color: #54372d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  transform: translateY(-50%);
}
.p-salons__prefectures a span {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  line-height: 1.167;
  letter-spacing: 0.04em;
  margin-left: -3px;
}
.p-salons__prefecture--osaka {
  margin-left: 4px;
}
.p-salons__prefecture--fukuoka {
  margin-left: -16px;
}
.p-salons__prefecture--fukuoka::before {
  top: 50%;
  left: 0;
}
.p-salons__prefecture--fukuoka span {
  margin-left: -3px;
  transform: translateY(0);
}
.p-salons__regions {
  margin: 82px 16px 0;
}
.p-salons__region {
  scroll-margin-top: 20px;
}
.p-salons__region + .p-salons__region {
  margin-top: 80px;
}
.p-salons__region + .p-salons__region--fukuoka {
  margin-top: 93px;
}
.p-salons__region + .p-salons__region--okinawa {
  margin-top: 93px;
}
.p-salons__region-title {
  min-height: 60px;
  padding: 12px;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background-color: #ca7f13;
}
.p-salons__grid {
  display: grid;
  gap: 42px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .p-salons {
    overflow: visible;
    padding-block: 80px 150px;
  }
  .p-salons__inner {
    width: min(100% - 80px, 1200px);
    max-width: none;
  }
  .p-salons .c-section-title {
    width: 100%;
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
  .p-salons .c-section-title::after {
    font-family: "AnnabelleJF", "Parisienne", cursive;
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-salons .c-section-title__ja {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #ca7f13;
  }
  .p-salons__prefectures {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    column-gap: 24px;
    row-gap: 26px;
    margin: 112px 0 0;
  }
  .p-salons__prefectures a {
    gap: 10px;
    padding-left: 26px;
    font-size: 3rem;
    line-height: 0.292;
    letter-spacing: 0.1em;
  }
  .p-salons__prefectures a::before {
    width: 15px;
    height: 18px;
    background-color: #54372d;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
  }
  .p-salons__prefectures a span {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .p-salons__prefectures a:nth-child(1) {
    grid-area: 1/1;
  }
  .p-salons__prefectures a:nth-child(2) {
    grid-area: 1/2;
  }
  .p-salons__prefectures a:nth-child(3) {
    grid-area: 2/1;
  }
  .p-salons__prefectures a:nth-child(4) {
    grid-area: 2/2;
  }
  .p-salons__prefectures a:nth-child(5) {
    grid-area: 2/3;
  }
  .p-salons__prefectures a:nth-child(6) {
    grid-area: 3/1;
  }
  .p-salons__prefectures a:nth-child(7) {
    grid-area: 3/2;
  }
  .p-salons__prefecture--osaka, .p-salons__prefecture--fukuoka {
    margin-top: 0;
    margin-left: 0;
  }
  .p-salons__prefecture--osaka::before, .p-salons__prefecture--fukuoka::before {
    top: 50%;
    left: 0;
  }
  .p-salons__prefecture--osaka span, .p-salons__prefecture--fukuoka span {
    margin-left: -3px;
    transform: translateY(0);
  }
  .p-salons__regions {
    margin: 125px 0 0;
  }
  .p-salons__region {
    scroll-margin-top: 30px;
  }
  .p-salons__region + .p-salons__region {
    margin-top: 86px;
  }
  .p-salons__region + .p-salons__region--fukuoka {
    margin-top: 86px;
  }
  .p-salons__region + .p-salons__region--okinawa {
    margin-top: 86px;
  }
  .p-salons__region-title {
    min-height: 120px;
    padding: 26px;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-salons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 60px;
    margin-top: 60px;
  }
}
@media (min-width: 1440px) {
  .p-salons__prefectures {
    grid-template-columns: repeat(3, max-content);
    column-gap: 66px;
    margin-left: 58px;
  }
}

.p-salon-card__link {
  display: block;
}
.p-salon-card__map {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 568/360;
  background-color: #e5e5e5;
}
.p-salon-card__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-salon-card__body {
  padding-top: 19px;
  color: #ca7f13;
}
.p-salon-card__name {
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.p-salon-card__ja {
  margin-top: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-salon-card address {
  margin-top: 6px;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #333;
}
@media (min-width: 1024px) {
  .p-salon-card__body {
    padding-top: 12px;
  }
  .p-salon-card__name {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  .p-salon-card__ja {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
  .p-salon-card address {
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
.p-salon-card__sp-break {
  display: initial;
}

.p-salon-intro {
  padding-block: 62px 74px;
  background-color: #f9f8f6;
}
.p-salon-intro .l-inner {
  width: min(100% - 64px, 920px);
}
.p-salon-intro__text {
  max-width: 920px;
  margin-inline: auto;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  color: #333;
}
.p-salon-intro__sp-break {
  display: initial;
}
.p-salon-intro__pc-break {
  display: none;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-salon-intro .l-inner {
    width: min(100% - 64px, 620px);
  }
}
@media (min-width: 1024px) {
  .p-salon-intro {
    min-height: 600px;
    padding-block: 112px 128px;
  }
  .p-salon-intro .l-inner {
    width: min(100% - 32px, 1080px);
  }
  .p-salon-intro__text {
    max-width: 960px;
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-salon-intro__sp-break {
    display: none;
  }
  .p-salon-intro__pc-break {
    display: initial;
  }
}

.p-salon-flow {
  overflow: hidden;
  padding-block: 37px 92px;
  background-color: #f9f8f6;
}
.p-salon-flow__inner {
  position: relative;
  width: calc(100% - 37px);
}
.p-salon-flow .c-section-title {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.p-salon-flow .c-section-title::after {
  font-family: "AnnabelleJF", "Parisienne", cursive;
  font-size: 4.5rem;
  line-height: 1.403;
}
.p-salon-flow .c-section-title__ja {
  margin-top: 2px;
  margin-left: -3px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-salon-flow__list {
  display: grid;
  gap: 40px;
  margin-top: 62px;
  counter-reset: salon-flow;
}
.p-salon-flow__item {
  position: relative;
  display: block;
  counter-increment: salon-flow;
}
.p-salon-flow__item:nth-child(2) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-salon-flow__item:nth-child(2) .p-salon-flow__body h3 {
  margin-top: 15px;
}
.p-salon-flow__item:nth-child(2) .p-salon-flow__body p {
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
}
.p-salon-flow__item:nth-child(3) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-salon-flow__item:nth-child(3) .p-salon-flow__body h3 {
  margin-top: 15px;
}
.p-salon-flow__item:nth-child(3) .p-salon-flow__body p {
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
}
.p-salon-flow__item:nth-child(4) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-salon-flow__item:nth-child(4) .p-salon-flow__body h3 {
  margin-top: 15px;
}
.p-salon-flow__item:nth-child(4) .p-salon-flow__body p {
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
}
.p-salon-flow__item:nth-child(5) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-salon-flow__item:nth-child(5) .p-salon-flow__body h3 {
  margin-top: 15px;
}
.p-salon-flow__item:nth-child(5) .p-salon-flow__body p {
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
}
.p-salon-flow__item:nth-child(6) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-salon-flow__item:nth-child(6) .p-salon-flow__body h3 {
  margin-top: 15px;
}
.p-salon-flow__item:nth-child(6) .p-salon-flow__body p {
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
}
.p-salon-flow__item::before {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-inline: auto;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  line-height: 0.844;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #949e33;
  border-radius: 50%;
  content: counter(salon-flow);
}
.p-salon-flow__item::after {
  position: absolute;
  bottom: -33px;
  left: 50%;
  width: 0;
  height: 24px;
  border-left: 1px dashed #949e33;
  content: "";
  transform: translateX(-50%);
}
.p-salon-flow__item:last-child::after {
  content: none;
}
.p-salon-flow__body h3 {
  margin-top: 15px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 0.778;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ca7f13;
}
.p-salon-flow__body p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0 11px;
  padding: 0 11px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salon-flow__sp-break {
  display: initial;
}
.p-salon-flow__image {
  position: absolute;
  z-index: 1;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}
.p-salon-flow__image--counseling {
  top: 0;
  right: -22px;
}
.p-salon-flow__image--treatment {
  top: 0;
  left: -22px;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-salon-flow__inner {
    width: min(100% - 64px, 720px);
  }
}
@media (min-width: 1024px) {
  .p-salon-flow {
    min-height: 1400px;
    padding-block: 82px 110px;
  }
  .p-salon-flow .c-section-title {
    font-size: 5.25rem;
    line-height: 1.262;
    letter-spacing: 0.04em;
  }
  .p-salon-flow .c-section-title::after {
    font-size: 7.5rem;
    line-height: 1.4;
  }
  .p-salon-flow .c-section-title__ja {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .p-salon-flow__inner {
    position: relative;
    width: min(100% - 80px, 1200px);
    max-width: none;
  }
  .p-salon-flow__sp-break {
    display: none;
  }
  .p-salon-flow__list {
    display: grid;
    gap: 34px;
    width: min(760px, 100% - 280px);
    margin: 84px auto 0;
  }
  .p-salon-flow__item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 38px;
  }
  .p-salon-flow__item:nth-child(n+2) {
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-salon-flow__item:nth-child(n+2) .p-salon-flow__body h3 {
    margin-top: 0;
  }
  .p-salon-flow__item:nth-child(n+2) .p-salon-flow__body p {
    margin: 6px 0 0;
    padding: 0;
  }
  .p-salon-flow__item::before {
    width: 62px;
    height: 62px;
    margin-inline: 0;
    font-size: 2rem;
  }
  .p-salon-flow__item::after {
    top: 72px;
    bottom: -24px;
    left: 30px;
    width: 1px;
    height: 72px;
    background-image: repeating-linear-gradient(to bottom, #949e33 0, #949e33 1px, transparent 1px, transparent 6px);
    border-left: 0;
    transform: none;
  }
  .p-salon-flow__body h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: left;
  }
  .p-salon-flow__body p {
    margin-top: 6px;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
  .p-salon-flow__image--counseling {
    top: 0;
    right: auto;
    left: -140px;
    width: 150px;
    height: 150px;
  }
  .p-salon-flow__image--treatment {
    top: 0;
    right: -140px;
    left: auto;
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 1440px) {
  .p-salon-flow__list {
    width: 760px;
    margin-left: 220px;
  }
  .p-salon-flow__image--counseling {
    left: -220px;
  }
  .p-salon-flow__image--treatment {
    right: -220px;
  }
}

.p-salon-staff {
  padding-block: 60px 25px;
  background-color: #3d3d3d;
  border: 1px solid #707070;
}
.p-salon-staff__inner {
  display: grid;
  gap: 32px;
}
.p-salon-staff__image {
  width: 240px;
  margin-inline: auto;
}
.p-salon-staff__title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: "Marcellus", serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salon-staff__title span {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.875rem;
  line-height: 1.929;
  letter-spacing: 0.1em;
}
.p-salon-staff__message {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-salon-staff__name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 22px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salon-staff__name span {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.625rem;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-salon-staff__inner {
    width: min(100% - 64px, 720px);
  }
}
@media (min-width: 1024px) {
  .p-salon-staff {
    min-height: 630px;
    padding-block: 75px;
  }
  .p-salon-staff__inner {
    grid-template-columns: 480px 1fr;
    align-items: center;
    gap: 60px;
    width: min(100% - 80px, 1080px);
    max-width: none;
  }
  .p-salon-staff__image {
    width: 100%;
    margin-inline: 0;
  }
  .p-salon-staff__title {
    font-size: 3rem;
    line-height: 0.563;
    letter-spacing: 0.1em;
  }
  .p-salon-staff__title span {
    font-size: 0.875rem;
    line-height: 1.929;
    letter-spacing: 0.1em;
  }
  .p-salon-staff__message {
    margin-top: 45px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
  .p-salon-staff__name {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.583;
  }
  .p-salon-staff__name span {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.667;
    letter-spacing: 0.1em;
  }
}

.p-salon-access {
  padding-block: 60px 34px;
  background-color: #d4cebe;
  border: 1px solid #707070;
}
.p-salon-access__inner {
  display: grid;
  gap: 60px;
  width: calc(100% - 62px);
}
.p-salon-access__info {
  order: 2;
}
.p-salon-access__info div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #ca7f13;
}
.p-salon-access__info dt {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-salon-access__info dd {
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.p-salon-access .c-google-map {
  order: 1;
  aspect-ratio: 16/10;
}
@media (min-width: 1024px) {
  .p-salon-access {
    min-height: 520px;
    padding-block: 78px;
  }
  .p-salon-access__inner {
    grid-template-columns: minmax(0, 400px) minmax(0, 540px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: min(100% - 80px, 1200px);
    max-width: none;
  }
  .p-salon-access__info {
    order: initial;
  }
  .p-salon-access__info div {
    grid-template-columns: 150px 1fr;
  }
  .p-salon-access__info dt {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-salon-access__info dd {
    font-size: 0.875rem;
    line-height: 2.143;
    letter-spacing: 0.1em;
  }
  .p-salon-access .c-google-map {
    order: initial;
    aspect-ratio: 3/2;
  }
}
@media (min-width: 1440px) {
  .p-salon-access__inner {
    grid-template-columns: 400px 540px;
    gap: 140px;
  }
}

.p-salon-back {
  display: grid;
  place-items: center;
  min-height: 200px;
  background-color: #f9f8f6;
}
.p-salon-back + .p-reserve-banner {
  margin-top: 0;
}
.p-salon-back .c-button {
  min-width: 154px;
  min-height: 41px;
  padding: 8px 28px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.571;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-salon-back {
    min-height: 280px;
  }
  .p-salon-back + .p-reserve-banner {
    margin-top: 140px;
  }
  .p-salon-back .c-button {
    min-width: 168px;
    min-height: 42px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
}

.p-page-hero--news .p-page-hero__heading {
  min-height: 154px;
}
.p-page-hero--news .p-page-hero__visual {
  height: 300px;
}
.p-page-hero--news .c-page-title {
  font-size: 2.25rem;
  letter-spacing: 0.08em;
}
.p-page-hero--news .c-page-title__ja {
  display: none;
}
@media (min-width: 1024px) {
  .p-page-hero--news .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--news .p-page-hero__visual {
    height: auto;
    aspect-ratio: 12/5;
    object-fit: contain;
  }
  .p-page-hero--news .c-page-title {
    font-size: 5rem;
    line-height: 1.2;
  }
}

.p-page-hero--news-archive .p-page-hero__heading {
  min-height: 200px;
}
.p-page-hero--news-archive .c-page-title {
  font-size: 2rem;
  line-height: 0.438;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-page-hero--news-archive .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--news-archive .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

.p-page-hero--news-detail .p-page-hero__heading {
  min-height: 200px;
}
.p-page-hero--news-detail .c-page-title {
  font-size: 2rem;
  line-height: 0.438;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-page-hero--news-detail .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--news-detail .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 1024px) {
  .l-header--news {
    height: 174px;
  }
}

.l-header--news-archive {
  height: 80px;
}
@media (min-width: 1024px) {
  .l-header--news-archive {
    height: 174px;
  }
}

.l-header--news-detail {
  height: 80px;
}
@media (min-width: 1024px) {
  .l-header--news-detail {
    height: 174px;
  }
}

.p-breadcrumb--news {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 2.571;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-breadcrumb--news a {
  color: inherit;
}
@media (min-width: 1024px) {
  .p-breadcrumb--news {
    width: 100%;
    max-width: none;
    min-height: 70px;
    padding: 28px 38px 14px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
}

.p-breadcrumb--news-detail .p-breadcrumb__list {
  display: block;
}
.p-breadcrumb--news-detail .p-breadcrumb__list li {
  display: inline;
}
.p-breadcrumb--news-detail .p-breadcrumb__list li + li::before {
  margin-inline: 10px;
}
@media (min-width: 1024px) {
  .p-breadcrumb--news-detail .p-breadcrumb__list {
    display: flex;
  }
  .p-breadcrumb--news-detail .p-breadcrumb__list li {
    display: flex;
  }
  .p-breadcrumb--news-detail .p-breadcrumb__list li + li::before {
    margin-inline: 0;
  }
}

.p-news {
  min-height: 1060px;
  padding-block: 62px 110px;
  background-color: #f9f8f6;
}
.p-news__layout {
  display: grid;
  gap: 34px;
}
.p-news__list {
  display: grid;
  gap: 12px;
}
.p-news__pagination {
  margin-top: 14px;
  font-family: "Marcellus", serif;
  font-size: 1rem;
  line-height: 0.875;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news__pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-news__pagination-list .fa-chevron-right {
  font-size: 0.625rem;
}
@media (min-width: 1024px) {
  .p-news {
    min-height: 1180px;
    padding-block: 90px 160px;
  }
  .p-news__layout {
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: start;
    justify-content: center;
    gap: 42px;
    width: min(100% - 80px, 1082px);
    max-width: none;
  }
  .p-news__list {
    gap: 20px;
  }
  .p-news__pagination {
    margin-top: 42px;
    font-size: 2rem;
    line-height: 0.438;
    letter-spacing: 0.1em;
  }
  .p-news__pagination-list {
    gap: 18px;
  }
  .p-news__pagination-list .fa-chevron-right {
    font-size: 0.875rem;
  }
}

.p-news-card {
  overflow: hidden;
  background-color: #d4cebe;
}
.p-news-card[hidden] {
  display: none;
}
.p-news-card__link {
  position: relative;
  display: block;
  min-height: 88px;
  padding: 12px 14px;
  color: #ca7f13;
}
.p-news-card__link time {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-news-card__link h2 {
  max-width: calc(100% - 10px);
  margin-top: 5px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-news-card__link span {
  position: absolute;
  right: 0;
  bottom: 8px;
  font-family: "Marcellus", serif;
  font-size: 1rem;
  line-height: 0.875;
  letter-spacing: 0.1em;
  color: rgba(84, 55, 45, 0.2);
}
@media (min-width: 1024px) {
  .p-news-card {
    overflow: visible;
  }
  .p-news-card__link {
    position: static;
    display: grid;
    grid-template-columns: 112px 1fr 120px;
    align-items: center;
    gap: 0;
    min-height: 72px;
    padding: 12px 24px;
  }
  .p-news-card__link time {
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
  .p-news-card__link h2 {
    max-width: none;
    margin-top: 0;
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
  .p-news-card__link span {
    position: static;
    font-size: 2rem;
    line-height: 0.438;
    letter-spacing: 0.04em;
    text-align: right;
  }
}

.p-news-category {
  padding-left: 0;
  border-left: 0;
}
.p-news-category__title {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 0.583;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news-category__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 48px;
  row-gap: 6px;
  margin-top: 22px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news-category__list a {
  color: inherit;
}
.p-news-category__list li:nth-child(2) {
  grid-area: 2/1;
}
.p-news-category__list li:nth-child(3) {
  grid-area: 1/2;
}
@media (min-width: 1024px) {
  .p-news-category {
    padding-left: 18px;
    border-left: 1px solid #ca7f13;
  }
  .p-news-category__title {
    font-size: 2rem;
    line-height: 0.438;
    letter-spacing: 0.1em;
  }
  .p-news-category__list {
    grid-template-columns: 1fr;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
  .p-news-category__list li:nth-child(2), .p-news-category__list li:nth-child(3) {
    grid-area: auto;
  }
}

.p-news-detail {
  min-height: 1300px;
  padding-block: 62px 110px;
  background-color: #f9f8f6;
}
.p-news-detail__layout {
  display: grid;
  gap: 52px;
}
.p-news-detail__title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news-detail__meta {
  display: flex;
  gap: 10px;
  margin-top: 2px;
  font-family: "Marcellus", serif;
  font-size: 0.75rem;
  line-height: 1.167;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news-detail__visual {
  display: block;
  margin-top: 34px;
}
.p-news-detail__image {
  width: 100%;
  object-fit: cover;
}
.p-news-detail__intro {
  margin-top: 18px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-news-detail__sections {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}
.p-news-detail__section h2 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-news-detail__section div {
  display: grid;
  margin-top: 7px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-news-detail__section:last-child div {
  font-size: 1rem;
  line-height: 1.75;
}
.p-news-detail__back {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.p-news-detail__back .c-button {
  min-width: 160px;
  min-height: 40px;
  padding: 7px 24px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-news-detail {
    min-height: 1530px;
    padding-block: 88px 160px;
  }
  .p-news-detail__layout {
    grid-template-columns: 691px 180px;
    align-items: start;
    justify-content: center;
    gap: 120px;
    width: min(100% - 80px, 1100px);
    max-width: none;
  }
  .p-news-detail__title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-news-detail__meta {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .p-news-detail__visual {
    margin-top: 38px;
  }
  .p-news-detail__image {
    aspect-ratio: 691/250;
  }
  .p-news-detail__intro, .p-news-detail__section div {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-news-detail__intro {
    margin-top: 30px;
  }
  .p-news-detail__section h2 {
    font-size: 1.125rem;
    line-height: 1.778;
    letter-spacing: 0.1em;
  }
  .p-news-detail__section:last-child div {
    line-height: 2;
  }
  .p-news-detail__back {
    margin-top: 48px;
  }
  .p-news-detail__back .c-button {
    min-width: 202px;
    min-height: 41px;
    padding: 8px 24px;
  }
}

.p-page-hero--reserve .p-page-hero__heading {
  min-height: 200px;
}
.p-page-hero--reserve .p-page-hero__visual {
  height: 300px;
}
.p-page-hero--reserve .c-page-title {
  font-size: 2rem;
  line-height: 0.438;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-page-hero--reserve .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--reserve .p-page-hero__visual {
    height: auto;
    aspect-ratio: 12/5;
    object-fit: cover;
  }
  .p-page-hero--reserve .c-page-title {
    font-size: 5rem;
    line-height: 0.175;
    letter-spacing: 0.1em;
  }
}

.l-header--reserve {
  height: 80px;
}
@media (min-width: 1024px) {
  .l-header--reserve {
    height: 100px;
  }
}

.p-breadcrumb--reserve {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 2.571;
  letter-spacing: 0.1em;
  color: rgba(202, 127, 19, 0.8);
}
.p-breadcrumb--reserve a {
  color: inherit;
}
@media (min-width: 1024px) {
  .p-breadcrumb--reserve {
    width: 100%;
    max-width: none;
    padding: 20px 38px 0;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(202, 127, 19, 0.8);
  }
}

.p-reserve-guide {
  padding-block: 62px 82px;
  background-color: #f9f8f6;
}
.p-reserve-guide__inner {
  display: grid;
  gap: 64px;
}
.p-reserve-guide__minor, .p-reserve-guide__tel {
  display: grid;
  gap: 28px;
}
.p-reserve-guide__minor-copy {
  order: 2;
}
.p-reserve-guide h2 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve-guide__minor-copy p, .p-reserve-guide__tel-copy p {
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve-guide__download {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  order: 1;
  width: 240px;
  min-height: 145px;
  margin-inline: auto;
  background-color: #d4cebe;
}
.p-reserve-guide__download p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve-guide__download a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  min-height: 40px;
  padding: 7px 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #949e33;
  border-radius: 20px;
}
.p-reserve-guide__tel-contact {
  display: grid;
  justify-items: center;
  gap: 22px;
}
.p-reserve-guide__tel-contact a {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  line-height: 1.333;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve-guide__tel-contact span {
  min-width: 240px;
  min-height: 32px;
  padding: 0 20px;
  font-size: 0.875rem;
  line-height: 2.286;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ca7f13;
  border: 1px solid #ca7f13;
  border-radius: 20px;
}
.p-reserve-guide__tel-copy h2 {
  font-family: "Marcellus", serif;
  text-align: center;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .p-reserve-guide__inner {
    width: min(100% - 64px, 720px);
  }
}
@media (min-width: 1024px) {
  .p-reserve-guide {
    min-height: 720px;
    padding-block: 108px 118px;
  }
  .p-reserve-guide__inner {
    gap: 126px;
    width: min(100% - 80px, 1080px);
    max-width: none;
  }
  .p-reserve-guide__minor {
    grid-template-columns: 1fr 210px;
    align-items: center;
    gap: 110px;
  }
  .p-reserve-guide__minor-copy, .p-reserve-guide__download {
    order: initial;
  }
  .p-reserve-guide__tel {
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 52px;
  }
  .p-reserve-guide h2 {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .p-reserve-guide__tel-copy h2 {
    font-size: 3rem;
    line-height: 0.667;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .p-reserve-guide__download {
    width: 240px;
    min-height: 147px;
  }
  .p-reserve-guide__download a {
    min-width: 147px;
    min-height: 37px;
  }
  .p-reserve-guide__minor-copy p, .p-reserve-guide__tel-copy p {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-reserve-guide__tel-contact {
    min-height: 200px;
    align-content: center;
    border-left: 1px solid #ca7f13;
  }
  .p-reserve-guide__tel-contact a {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.p-reserve {
  min-height: 1540px;
  padding-block: 64px 90px;
  background-color: #efebe7;
}
.p-reserve__header {
  display: grid;
  gap: 44px;
}
.p-reserve__title {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: 0.1em;
  color: #ca7f13;
}
.p-reserve__intro {
  margin-top: 28px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333;
}
.p-reserve__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.p-reserve__steps li {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding-block: 22px;
  font-family: "Marcellus", serif;
  color: #8b8987;
  border-top: 1px solid #8b8987;
  border-bottom: 1px solid #8b8987;
}
.p-reserve__steps li span {
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: 0.1em;
}
.p-reserve__steps li strong {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.188;
  letter-spacing: 0.1em;
}
.p-reserve__steps li.is-current {
  color: #ca7f13;
  border-color: #ca7f13;
}
.p-reserve__form {
  display: grid;
  gap: 26px;
  margin-top: 64px;
}
.p-reserve .c-form__row {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 0;
}
.p-reserve .c-form__label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #333;
}
.p-reserve .c-form__required {
  display: inline-grid;
  place-items: center;
  flex: 0 0 60px;
  min-height: 26px;
  font-size: 0.75rem;
  line-height: 2.333;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #54372d;
  border-radius: 12px;
}
.p-reserve .c-form__required--optional {
  color: #333;
  background-color: #d4cebe;
}
.p-reserve .c-form__input, .p-reserve .c-form__textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 14px;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  border: 0;
  border-radius: 0;
}
.p-reserve .c-form__input {
  min-height: 50px;
}
.p-reserve .c-form__input--name, .p-reserve .c-form__input--email, .p-reserve .c-form__input--contact-method, .p-reserve .c-form__input--salon {
  width: min(315px, 100vw - 32px);
  max-width: 100%;
}
.p-reserve .c-form__input--kana, .p-reserve .c-form__input--tel {
  width: min(328px, 100vw - 32px);
  max-width: 100%;
}
.p-reserve .c-form__date {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  width: 100%;
  max-width: 315px;
}
.p-reserve .c-form__input--date {
  min-width: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  color: #54372d;
}
.p-reserve .c-form__input--date::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.p-reserve .c-form__date-button {
  display: grid;
  place-items: center;
  width: 50px;
  min-height: 50px;
  font-size: 1.375rem;
  color: #fff;
  background-color: #ca7f13;
  border: 0;
  cursor: pointer;
}
.p-reserve .c-form__date-button:focus-visible {
  outline: 2px solid #54372d;
  outline-offset: 2px;
}
.p-reserve .c-form__textarea {
  min-height: 200px;
  resize: vertical;
}
.p-reserve .c-form__checks {
  display: grid;
  gap: 12px;
}
.p-reserve .c-form__checks strong {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-reserve .c-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-reserve .c-form__check input {
  position: relative;
  appearance: none;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
}
.p-reserve .c-form__check input::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #ca7f13;
  border-bottom: 2px solid #ca7f13;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.p-reserve .c-form__check input:checked::after {
  opacity: 1;
}
.p-reserve .c-form__checks--times {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-reserve .c-form__checks--times strong {
  grid-column: 1/-1;
}
.p-reserve .c-form__note {
  margin-top: 8px;
  font-size: 0.75rem;
  line-height: 2.333;
  letter-spacing: 0.1em;
}
.p-reserve .c-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.p-reserve .c-button {
  min-width: 160px;
  min-height: 40px;
  padding: 8px 24px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: 0.1em;
}
.p-reserve--confirm {
  min-height: 1100px;
}
.p-reserve--confirm .p-reserve__form {
  gap: 18px;
}
.p-reserve--confirm .c-form__label {
  min-height: 22px;
}
.p-reserve--confirm .c-form__value {
  min-height: 18px;
  font-size: 0.6875rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333;
}
.p-reserve--thanks {
  min-height: 600px;
}
.p-reserve--thanks .p-reserve__message {
  display: grid;
  justify-items: start;
  margin-top: 64px;
}
.p-reserve--thanks .p-reserve__message-title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  color: #ca7f13;
}
.p-reserve--thanks .p-reserve__message-text, .p-reserve--thanks .p-reserve__message-link {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ca7f13;
}
.p-reserve--thanks .p-reserve__message-text {
  margin-top: 24px;
}
.p-reserve--thanks .p-reserve__message-link {
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .p-reserve .c-form__row {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }
  .p-reserve .c-form__row:is(fieldset) {
    position: relative;
    display: block;
    padding-left: 288px;
  }
  .p-reserve .c-form__row:is(fieldset) .c-form__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
  }
  .p-reserve .c-form__label {
    min-height: 48px;
  }
  .p-reserve .c-form__checks--inquiry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-reserve--confirm .c-form__row {
    align-items: center;
  }
  .p-reserve--confirm .c-form__label {
    min-height: 32px;
  }
  .p-reserve--thanks .p-reserve__message {
    justify-items: center;
  }
  .p-reserve--thanks .p-reserve__message-title {
    text-align: center;
  }
  .p-reserve--thanks .p-reserve__message-text, .p-reserve--thanks .p-reserve__message-link {
    width: 270px;
  }
}
@media (min-width: 1024px) {
  .p-reserve {
    padding-block: 76px 100px;
  }
  .p-reserve__inner {
    width: min(100% - 80px, 1080px);
    max-width: none;
  }
  .p-reserve__header {
    grid-template-columns: 1fr 440px;
    align-items: start;
    gap: 98px;
  }
  .p-reserve__title {
    font-size: 3rem;
    line-height: 0.75;
    letter-spacing: 0.1em;
  }
  .p-reserve__intro {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-reserve__steps {
    gap: 26px;
  }
  .p-reserve__steps li {
    padding-block: 22px 28px;
  }
  .p-reserve__steps li span {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  .p-reserve__steps li strong {
    font-size: 1.5rem;
    line-height: 1.167;
    letter-spacing: 0.1em;
  }
  .p-reserve__form {
    gap: 24px;
    width: 960px;
    margin: 82px auto 0;
  }
  .p-reserve .c-form__row {
    grid-template-columns: 300px 620px;
  }
  .p-reserve .c-form__row:is(fieldset) {
    padding-left: 328px;
  }
  .p-reserve .c-form__row:is(fieldset) .c-form__label {
    width: 300px;
  }
  .p-reserve .c-form__date {
    width: 300px;
    max-width: none;
  }
  .p-reserve .c-form__textarea {
    min-height: 120px;
  }
  .p-reserve .c-form__input--name, .p-reserve .c-form__input--kana, .p-reserve .c-form__input--tel, .p-reserve .c-form__input--email, .p-reserve .c-form__input--contact-method {
    width: 620px;
  }
  .p-reserve .c-form__input--salon {
    width: 300px;
  }
  .p-reserve .c-form__input--date {
    width: 100%;
  }
  .p-reserve .c-form__date.is-flatpickr .c-form__input--date {
    cursor: text;
  }
  .p-reserve .c-form__checks {
    min-height: 48px;
  }
  .p-reserve .c-form__checks--times {
    grid-template-columns: 40px repeat(3, minmax(0, 1fr));
  }
  .p-reserve .c-form__checks--times strong {
    grid-column: auto;
  }
  .p-reserve .c-form__actions {
    margin-left: 328px;
    justify-content: flex-start;
  }
  .p-reserve--confirm {
    min-height: 1260px;
  }
  .p-reserve--confirm .p-reserve__form {
    gap: 24px;
    margin-top: 180px;
  }
  .p-reserve--confirm .c-form__label, .p-reserve--confirm .c-form__value {
    min-height: 32px;
  }
  .p-reserve--confirm .c-form__actions {
    justify-content: center;
    margin-left: 0;
  }
  .p-reserve--thanks {
    min-height: 550px;
  }
  .p-reserve--thanks .p-reserve__message {
    justify-items: center;
    margin-top: 64px;
  }
  .p-reserve--thanks .p-reserve__message-title {
    font-size: 2.25rem;
    line-height: 0.778;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-reserve--thanks .p-reserve__message-text, .p-reserve--thanks .p-reserve__message-link {
    width: 382px;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .p-reserve--thanks .p-reserve__message-text {
    white-space: nowrap;
  }
}

.p-reserve-calendar.flatpickr-calendar {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  color: #54372d;
  background-color: #f9f8f6;
  border: 1px solid #d4cebe;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(84, 55, 45, 0.14);
}
.p-reserve-calendar.flatpickr-calendar::before {
  border-bottom-color: #d4cebe;
}
.p-reserve-calendar.flatpickr-calendar::after {
  border-bottom-color: #f9f8f6;
}
.p-reserve-calendar.flatpickr-calendar.arrowTop::before {
  border-bottom-color: #d4cebe;
}
.p-reserve-calendar.flatpickr-calendar.arrowTop::after {
  border-bottom-color: #f9f8f6;
}
.p-reserve-calendar.flatpickr-calendar.arrowBottom::before {
  border-top-color: #d4cebe;
}
.p-reserve-calendar.flatpickr-calendar.arrowBottom::after {
  border-top-color: #f9f8f6;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-months {
  align-items: center;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-month {
  height: 40px;
  color: #54372d;
  background-color: transparent;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  top: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 0.75rem;
  color: #54372d;
  border-radius: 3px;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover, .p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:focus-visible,
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover,
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-next-month:focus-visible {
  color: #ca7f13;
  background-color: rgba(202, 127, 19, 0.09);
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:focus-visible,
.p-reserve-calendar.flatpickr-calendar .flatpickr-months .flatpickr-next-month:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 1px;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 7px 0 0;
  font-size: 1rem;
  color: #54372d;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month input.cur-year {
  font-family: inherit;
  font-weight: 400;
  color: inherit;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  width: 72px;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp::after {
  border-bottom-color: #ca7f13;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown::after {
  border-top-color: #ca7f13;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-weekdays {
  background-color: transparent;
}
.p-reserve-calendar.flatpickr-calendar span.flatpickr-weekday {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 400;
  color: #54372d;
  background-color: transparent;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-days {
  border: 0;
}
.p-reserve-calendar.flatpickr-calendar .dayContainer {
  padding-block: 4px;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day {
  display: grid;
  place-items: center;
  height: 38px;
  max-width: 38px;
  line-height: 1;
  color: #54372d;
  border-radius: 50%;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day:hover, .p-reserve-calendar.flatpickr-calendar .flatpickr-day:focus {
  color: #ca7f13;
  background-color: rgba(202, 127, 19, 0.09);
  border-color: rgba(202, 127, 19, 0.25);
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day:focus-visible {
  outline: 2px solid #ca7f13;
  outline-offset: 1px;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day.today {
  color: #ca7f13;
  border-color: #ca7f13;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day.selected, .p-reserve-calendar.flatpickr-calendar .flatpickr-day.selected:hover, .p-reserve-calendar.flatpickr-calendar .flatpickr-day.selected:focus {
  color: #fff;
  background-color: #ca7f13;
  border-color: #ca7f13;
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day.prevMonthDay, .p-reserve-calendar.flatpickr-calendar .flatpickr-day.nextMonthDay {
  color: rgba(84, 55, 45, 0.42);
}
.p-reserve-calendar.flatpickr-calendar .flatpickr-day.flatpickr-disabled, .p-reserve-calendar.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(84, 55, 45, 0.24);
  background-color: transparent;
  border-color: transparent;
  cursor: not-allowed;
}

.l-header--error {
  height: 80px;
}
@media (min-width: 1024px) {
  .l-header--error {
    height: 100px;
  }
}

.p-page-hero--error .p-page-hero__heading {
  min-height: 200px;
}
.p-page-hero--error .c-page-title {
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.p-page-hero--error .c-page-title__ja {
  display: block;
  margin-top: 14px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  .p-page-hero--error .p-page-hero__heading {
    min-height: 360px;
  }
  .p-page-hero--error .c-page-title {
    font-size: 5rem;
  }
  .p-page-hero--error .c-page-title__ja {
    margin-top: 20px;
    font-size: 1rem;
  }
}

.p-breadcrumb--error {
  color: #ca7f13;
}
.p-breadcrumb--error a {
  color: inherit;
}

.p-error {
  padding-block: 112px 136px;
  background-color: #f9f8f6;
}
.p-error__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 48px, 680px);
  text-align: center;
}
.p-error__title {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #ca7f13;
}
.p-error__text {
  margin-top: 40px;
  font-size: 0.75rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #333;
}
.p-error__button {
  justify-self: center;
  min-width: 210px;
  min-height: 44px;
  margin-top: 60px;
  padding: 10px 24px;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  .p-error {
    padding-block: 180px 200px;
  }
  .p-error__inner {
    width: min(100% - 80px, 800px);
  }
  .p-error__title {
    font-size: 2.25rem;
  }
  .p-error__text {
    margin-top: 50px;
    font-size: 0.875rem;
  }
  .p-error__button {
    min-width: 240px;
    min-height: 50px;
    margin-top: 72px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */