@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Parisienne&display=swap");
/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

@font-face {
  font-family: "Valentine Rose";
  src: url("../fonts/valentine-rose.woff2") format("woff2"), url("../fonts/valentine-rose.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

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

.text-left {
  text-align: left;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #CA7F13;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #949E33;
  transform: translateY(-2px);
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: transparent;
  color: #CA7F13;
  border: 2px solid #CA7F13;
}
.btn--outline:hover {
  background-color: #CA7F13;
  color: #FFFFFF;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.ml-sm {
  margin-left: 0.5rem;
}

.mr-sm {
  margin-right: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.ml-md {
  margin-left: 1rem;
}

.mr-md {
  margin-right: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.ml-lg {
  margin-left: 1.5rem;
}

.mr-lg {
  margin-right: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.ml-xl {
  margin-left: 2rem;
}

.mr-xl {
  margin-right: 2rem;
}

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

.fade-up-delay-1 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}
.fade-up-delay-1.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.fade-up-delay-2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-3 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.fade-up-delay-3.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.fade-up-delay-4.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-5 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.fade-up-delay-5.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-6 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.fade-up-delay-6.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-7 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.7s, transform 1s ease 0.7s;
}
.fade-up-delay-7.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-8 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}
.fade-up-delay-8.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-9 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
}
.fade-up-delay-9.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-10 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 1s, transform 1s ease 1s;
}
.fade-up-delay-10.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-slow-1 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.fade-up-delay-slow-1.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-slow-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.fade-up-delay-slow-2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-slow-3 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.fade-up-delay-slow-3.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-slow-4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}
.fade-up-delay-slow-4.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-slow-5 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 1s, transform 1s ease 1s;
}
.fade-up-delay-slow-5.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.concept__header.fade-up.is-visible {
  transform: translateY(-50%);
}

* {
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  max-width: 100vw;
}
@media (max-width: 320px) {
  body {
    font-size: 0.875rem;
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

main {
  flex: 1;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 320px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 320px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 320px) {
  h3 {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  transition: all 0.8s;
}
a:hover {
  opacity: 0.8;
}

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

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

address {
  font-style: normal !important;
  line-height: inherit;
}

.page-concept-profile__value address,
.page-salons-shop__address,
.single-salon-info__table address {
  font-style: normal !important;
}

.btn-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CA7F13;
  border-bottom: 1px solid #CA7F13;
  font-weight: 300;
}
@media (max-width: 767px) {
  .btn-back-to-top {
    padding: 0.75rem 3.125rem;
    font-size: 0.8125rem;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.skip-link {
  position: absolute;
  top: -2.5rem;
  left: 0.375rem;
  z-index: 999999;
  padding: 0.5rem 1rem;
  background: #333333;
  color: #FFFFFF;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.375rem;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.parallax-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}
.parallax-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.parallax-section--disabled .parallax-section__image {
  height: 100%;
  transform: none !important;
}

.page-main-image-parallax {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 31.25rem;
}
@media (max-width: 767px) {
  .page-main-image-parallax {
    height: 18.75rem;
  }
}
.page-main-image-parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}
.page-main-image-parallax picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
}
.page-main-image-parallax picture img {
  position: relative;
  height: 100%;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.breadcrumb__container {
  max-width: 75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}
.breadcrumb__separator {
  color: #CA7F13;
  font-weight: 300;
}
.breadcrumb__current {
  color: #CA7F13;
  font-weight: 400;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.home .header {
  position: fixed;
  width: 100%;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 1920px) {
  .header__container {
    max-width: 1400px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .header__container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  margin: 2.8125rem auto;
}
@media (max-width: 767px) {
  .header__container {
    height: 3.75rem;
    position: relative;
    z-index: 999;
  }
}
@media (max-width: 320px) {
  .header__container {
    height: 3.4375rem;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.header__logo-image {
  height: 4rem;
  width: auto;
}
@media (max-width: 767px) {
  .header__logo-image {
    height: 2rem;
  }
}
@media (max-width: 320px) {
  .header__logo-image {
    height: 1.75rem;
  }
}
@media (max-width: 767px) {
  .header__logo-text {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.header__nav-link {
  font-family: "Marcellus", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #CA7F13;
  transition: width 0.3s ease;
}
.header__nav-link:hover {
  color: #CA7F13;
}
.header__nav-link:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}
.header__contact .header__reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: "Marcellus", serif;
  background-color: #949E33;
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 400;
  padding: 0.5rem 2rem;
  position: relative;
  padding-left: 3rem;
  border-radius: 3.125rem;
  letter-spacing: 0.05em;
}
.header__contact .header__reserve-btn::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='6' width='16' height='15' rx='2' stroke='white' stroke-width='2' fill='white'/%3E%3Cline x1='4' y1='10' x2='20' y2='10' stroke='white' stroke-width='2'/%3E%3Cline x1='8' y1='4' x2='8' y2='7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='16' y1='4' x2='16' y2='7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='13' r='1.2' fill='%23949E33'/%3E%3Ccircle cx='12' cy='13' r='1.2' fill='%23949E33'/%3E%3Ccircle cx='16' cy='13' r='1.2' fill='%23949E33'/%3E%3Ccircle cx='8' cy='17' r='1.2' fill='%23949E33'/%3E%3Ccircle cx='12' cy='17' r='1.2' fill='%23949E33'/%3E%3Ccircle cx='16' cy='17' r='1.2' fill='%23949E33'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__contact .header__reserve-btn:hover {
  background-color: rgb(104.6622009569, 111.7339712919, 36.0660287081);
  transform: translateY(-2px);
}
.header__hamburger {
  display: none;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.hamburger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  background-color: #949E33;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 3.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 5.9375rem;
  height: 3.125rem;
}
@media (max-width: 767px) {
  .hamburger {
    min-width: 5.3125rem;
    height: 2.8125rem;
    padding: 0.625rem 1rem;
    gap: 0.375rem;
  }
}
.hamburger__text {
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  line-height: 1;
  order: 1;
}
@media (max-width: 767px) {
  .hamburger__text {
    font-size: 0.6875rem;
  }
}
.hamburger__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
}
@media (max-width: 767px) {
  .hamburger__icon {
    gap: 0.1875rem;
  }
}
.hamburger__line {
  width: 1.125rem;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
@media (max-width: 767px) {
  .hamburger__line {
    width: 1rem;
    height: 1.5px;
  }
}
.hamburger:hover {
  background-color: rgb(119.1081339713, 127.1559808612, 41.0440191388);
  transform: scale(1.05);
}
.hamburger.is-active {
  min-width: 3.125rem;
  padding: 0.75rem;
  gap: 0;
}
@media (max-width: 767px) {
  .hamburger.is-active {
    min-width: 2.8125rem;
    padding: 0.625rem;
  }
}
.hamburger.is-active .hamburger__icon,
.hamburger.is-active .hamburger__text {
  opacity: 0;
  transform: scale(0);
  width: 0;
  overflow: hidden;
}
.hamburger.is-active::after {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
@media (max-width: 767px) {
  .hamburger.is-active::after {
    font-size: 1.75rem;
  }
}
.hamburger::after {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media (max-width: 767px) {
  .hamburger::after {
    font-size: 1.75rem;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: visibility 0s 0s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-active .mobile-nav__overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.mobile-nav__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #D4CFC4;
  padding: 5rem 2.5rem 2.5rem;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-nav.is-active .mobile-nav__content {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 320px) {
  .mobile-nav__content {
    padding: 4.375rem 1.25rem 1.875rem;
  }
}
.mobile-nav__logo {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  z-index: 10;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.mobile-nav.is-active .mobile-nav__logo {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__logo a {
  display: block;
}
.mobile-nav__logo-image {
  width: 3.125rem;
  height: auto;
  display: block;
}
.mobile-nav__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #8B9F74;
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, background-color 0.3s ease;
}
.mobile-nav.is-active .mobile-nav__close {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__close:hover {
  background-color: rgb(113.429787234, 132.4936170213, 91.5063829787);
  transform: translateY(0) rotate(90deg);
}
.mobile-nav__close:active {
  transform: translateY(0) scale(0.95);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2.1875rem;
  align-items: flex-start;
  padding-left: 1.875rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.mobile-nav.is-active .mobile-nav__list {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__link {
  font-family: "Marcellus", serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #CA7F13;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #CA7F13;
  transition: width 0.3s ease;
}
.mobile-nav__link:hover {
  color: #CA7F13;
}
.mobile-nav__link:hover::after {
  width: 100%;
}
.mobile-nav__link:active {
  opacity: 0.7;
}
@media (max-width: 320px) {
  .mobile-nav__link {
    font-size: 1.375rem;
    letter-spacing: 0.06em;
  }
}

.footer {
  background-color: #f9f8f6;
  padding: 5rem 2.5rem 3.75rem;
  margin-top: auto;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 3.75rem 1.875rem 3.125rem;
  }
}
@media (max-width: 320px) {
  .footer {
    padding: 3.125rem 1.25rem 2.5rem;
  }
}
@media (min-width: 1920px) {
  .footer {
    padding: 6.25rem 2.5rem 5rem;
  }
}
.footer__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .footer__container {
    gap: 2.1875rem;
  }
}
@media (max-width: 320px) {
  .footer__container {
    gap: 1.875rem;
  }
}
@media (min-width: 1920px) {
  .footer__container {
    max-width: 87.5rem;
  }
}
.footer__logo {
  display: flex;
  justify-content: center;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover {
  opacity: 0.8;
}
.footer__logo-image {
  height: 3.75rem;
  width: auto;
}
@media (max-width: 767px) {
  .footer__logo-image {
    height: 3.125rem;
  }
}
.footer__logo-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #7a6a5a;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__logo-text {
    font-size: 0.875rem;
  }
}
.footer__nav-primary .footer__nav-list, .footer__nav-secondary .footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-primary .footer__nav-item, .footer__nav-secondary .footer__nav-item {
  display: inline-flex;
  margin: 0;
}
.footer__nav-primary .footer__nav-separator, .footer__nav-secondary .footer__nav-separator {
  color: #54372D;
  margin: 0 1.125rem;
  font-size: 1rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .footer__nav-primary .footer__nav-separator, .footer__nav-secondary .footer__nav-separator {
    margin: 0 0.75rem;
    font-size: 0.875rem;
  }
}
.footer__nav-primary .footer__nav-link, .footer__nav-secondary .footer__nav-link {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #54372D;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer__nav-primary .footer__nav-link:hover, .footer__nav-secondary .footer__nav-link:hover {
  color: #949E33;
}
@media (max-width: 767px) {
  .footer__nav-primary .footer__nav-link, .footer__nav-secondary .footer__nav-link {
    font-size: 0.875rem;
  }
}
.footer__nav-primary {
  margin-top: 0.625rem;
}
.footer__nav-secondary {
  margin-top: -0.3125rem;
}
.footer__nav-secondary .footer__nav-link {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .footer__nav-secondary .footer__nav-link {
    font-size: 0.8125rem;
  }
}
.footer__copyright {
  font-family: "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #54372D;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 0.6875rem;
    margin-top: 0.3125rem;
  }
}
.footer__page-top {
  position: fixed !important;
  right: 2.5rem !important;
  bottom: 2.5rem !important;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #949E33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 125, 107, 0.3);
  z-index: 9999 !important;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.footer__page-top:hover {
  background-color: #7a6a5a;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 125, 107, 0.4);
}
.footer__page-top:active {
  transform: translateY(-3px);
}
.footer__page-top svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 2.5 !important;
  stroke: #FFFFFF !important;
  fill: none;
}
@media (max-width: 767px) {
  .footer__page-top {
    width: 3.125rem;
    height: 3.125rem;
    right: 1.5625rem !important;
    bottom: 1.5625rem !important;
  }
  .footer__page-top svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5 !important;
    stroke: #FFFFFF !important;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 37.5rem;
  background: linear-gradient(135deg, #F9F8F6 0%, #f8f4f0 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .hero {
    min-height: 31.25rem;
    padding: 3.75rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 320px) {
  .hero {
    min-height: 25rem;
    padding: 2.5rem 0.75rem;
  }
}
@media (min-width: 1920px) {
  .hero {
    min-height: 50rem;
  }
}
.hero__title {
  font-family: "Marcellus", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 320px) {
  .hero__title {
    font-size: 2rem;
  }
}
@media (min-width: 1920px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .hero__title br {
    display: none;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.news {
  background-color: #F9F8F6;
  padding: 6.875rem 0 8.125rem;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news {
    padding: 4.375rem 0 5.625rem;
  }
}
@media (max-width: 320px) {
  .news {
    padding: 3.125rem 0 4.375rem;
  }
}
@media (min-width: 1920px) {
  .news {
    padding: 8.75rem 0 10rem;
  }
}
.news__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news__container {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media (max-width: 320px) {
  .news__container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media (min-width: 1920px) {
  .news__container {
    max-width: 100rem;
  }
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.6875rem;
  padding-bottom: 0.3125rem;
}
@media (max-width: 767px) {
  .news__header {
    flex-direction: column;
    gap: 2.1875rem;
    align-items: center;
    text-align: center;
    margin-bottom: 3.4375rem;
  }
}
.news__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
}
.news__title {
  font-family: "annabelle-jf", "Parisienne", cursive;
  font-size: 7.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: #CA7F13;
  margin: 0 0 0.3125rem 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .news__title {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .news__title {
    font-size: 5rem;
  }
}
@media (max-width: 320px) {
  .news__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1920px) {
  .news__title {
    font-size: 9.375rem;
  }
}
.news__title::before {
  content: "News";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 11.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.08);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news__title::before {
    font-size: 7.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 320px) {
  .news__title::before {
    font-size: 6.25rem;
  }
}
@media (min-width: 1920px) {
  .news__title::before {
    font-size: 13.75rem;
  }
}
.news__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  margin: 0;
  padding-left: 0.1875rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.news__view-button {
  text-align: center;
  margin-top: 3.75rem;
}
.news__view-button--header {
  margin-top: 0;
}
@media (max-width: 767px) {
  .news__view-button--header {
    display: none;
  }
}
.news__view-button--bottom {
  display: none;
}
@media (max-width: 767px) {
  .news__view-button--bottom {
    display: block;
    margin-top: 3.75rem;
  }
}
.news__view-more {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  color: #FFFFFF;
  background-color: #949E33;
  padding: 0.9375rem 3rem;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}
.news__view-more:hover {
  background-color: rgb(111.8851674641, 119.4449760766, 38.5550239234);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(148, 158, 51, 0.28);
}
@media (max-width: 767px) {
  .news__view-more {
    padding: 0.8125rem 2.375rem;
    font-size: 0.9375rem;
  }
}
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .news__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.news__item {
  border-left: 1px solid #CA7F13;
  border-top: none;
  border-bottom: none;
  border-right: none;
  transition: all 0.35s ease;
  background-color: transparent;
  min-height: 11.25rem;
}
@media (max-width: 767px) {
  .news__item {
    border: none;
    border-top: 1px solid #CA7F13;
  }
  .news__item:last-child {
    border-bottom: 1px solid #CA7F13;
  }
}
.news__item:hover {
  transform: translateX(10px);
  border-left-color: rgb(178.6923076923, 112.3461538462, 16.8076923077);
  border-left-width: 2px;
}
@media (max-width: 767px) {
  .news__item:hover {
    transform: none;
  }
}
.news__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.news__item-content {
  padding: 2.5rem 0 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  min-height: 11.25rem;
}
@media (max-width: 767px) {
  .news__item-content {
    padding: 1.875rem 0;
  }
}
.news__item-date {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  color: #54372D;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.2;
}
.news__item-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #333333;
  flex: 1;
  transition: color 0.3s ease;
}
.news__item-title:hover {
  color: #949E33;
}
.news__item-category {
  font-size: 0.6875rem;
  color: #a8a8a8;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: auto;
}

.concept {
  background-color: #F9F8F6;
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .concept {
    padding: 4.375rem 0;
  }
}
.concept__container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 5rem;
}
@media (max-width: 767px) {
  .concept__container {
    padding: 0 1.5625rem;
  }
}
.concept__top {
  position: relative;
  margin-bottom: 6.25rem;
  min-height: 34.375rem;
}
@media (max-width: 767px) {
  .concept__top {
    margin-bottom: 3.75rem;
    min-height: 18.75rem;
  }
}
.concept__header {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  width: auto;
  padding: 3.125rem 5rem;
  border-radius: 0;
}
@media (max-width: 767px) {
  .concept__header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: 2.5rem 0;
    z-index: 1;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url("../images/top-concept_02-sp.webp");
    padding: 1.25rem 0 0 0;
    height: 15.3125rem;
  }
}
.concept__title {
  font-family: "Marcellus", serif;
  font-size: 6.25rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.3125rem 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .concept__title {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .concept__title {
    font-size: 3rem;
  }
}
.concept__title::before {
  content: "CONCEPT";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 7.5rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .concept__title::before {
    font-size: 3rem;
    left: 50%;
    transform: translate(-40%, -50%);
  }
}
.concept__subtitle-ja {
  font-size: 0.8125rem;
  color: #CA7F13;
  margin: 0 0 1.875rem 0;
  padding-left: 0.1875rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .concept__subtitle-ja {
    margin-bottom: 1.25rem;
  }
}
.concept__catchphrase {
  font-size: 1.5625rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
}
@media (max-width: 767px) {
  .concept__catchphrase {
    flex-direction: column;
    font-size: 1rem;
    width: 50%;
    letter-spacing: 0.08em;
  }
}
.concept__catchphrase p {
  margin-bottom: 0;
  white-space: nowrap;
}
.concept__main-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
@media (max-width: 767px) {
  .concept__main-image {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.concept__main-image picture, .concept__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .concept__main-image picture, .concept__main-image img {
    height: auto;
  }
}
.concept__bottom {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  margin-top: 6.25rem;
}
@media (max-width: 767px) {
  .concept__bottom {
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
  .concept__bottom .concept__bottom-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}
@media (max-width: 767px) {
  .concept__bottom-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}
@media (max-width: 767px) {
  .concept__bottom-image picture {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
  }
}
@media (max-width: 767px) {
  .concept__bottom-image img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
  }
}
.concept__content {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (max-width: 767px) {
  .concept__content {
    order: 2;
    gap: 2.1875rem;
  }
}
.concept__description p {
  font-size: 1rem;
  line-height: 2.2;
  color: #333333;
  margin: 0 0 1.5625rem 0;
  letter-spacing: 0.08em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .concept__description p {
    font-size: 0.8125rem;
    line-height: 2;
    margin: 0 0 1.25rem 0;
  }
}
.concept__description p:last-child {
  margin-bottom: 0;
}
.concept__link {
  font-family: "Times New Roman", serif;
  font-size: 0.875rem;
  color: #333333;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  transition: all 0.35s ease;
  display: inline-block;
  letter-spacing: 0.15em;
  font-weight: 400;
  white-space: nowrap;
  align-self: flex-end;
}
.concept__link:hover {
  opacity: 0.7;
  transform: translateX(5px);
}
@media (max-width: 767px) {
  .concept__link {
    align-self: flex-end;
    font-size: 0.8125rem;
  }
}

.page-concept {
  background-color: #F9F8F6;
}
.page-concept-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-concept-hero {
    padding: 5rem 1.25rem;
  }
}
@media (max-width: 320px) {
  .page-concept-hero {
    padding: 3.75rem 0.9375rem;
  }
}
@media (min-width: 1920px) {
  .page-concept-hero {
    padding: 9.375rem 2.5rem;
  }
}
.page-concept-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-concept-hero__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-concept-hero__title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.page-concept-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .page-concept-main-image {
    height: 18.75rem;
  }
}
.page-concept-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
}
.page-concept-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-concept-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #D4CEBE;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .page-concept-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.page-concept-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-concept-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.page-concept-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-concept-breadcrumb__link:hover {
  color: #CA7F13;
  opacity: 0.7;
}
.page-concept-breadcrumb__separator {
  color: #CA7F13;
  font-weight: 300;
}
.page-concept-breadcrumb__current {
  color: #CA7F13;
  font-weight: 400;
}
.page-concept-main-image {
  width: 100%;
  overflow: hidden;
}
.page-concept-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-concept-about {
  position: relative;
  z-index: 1;
  background-color: #D4CEBE;
  padding: 5rem 2.5rem;
}
@media (max-width: 767px) {
  .page-concept-about {
    padding: 3.75rem 1.875rem;
  }
}
@media (max-width: 320px) {
  .page-concept-about {
    padding: 3.125rem 1.25rem;
  }
}
@media (min-width: 1920px) {
  .page-concept-about {
    padding: 6.25rem 5rem;
  }
}
.page-concept-about__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-concept-about__image-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 25.3125rem;
}
@media (max-width: 767px) {
  .page-concept-about__image-wrapper {
    margin-bottom: 3.125rem;
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
}
.page-concept-about__title {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #CA7F13;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.1em;
  z-index: 2;
  width: auto;
  font-family: "Yu Mincho", serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-concept-about__title {
    font-size: 1.5rem;
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1.875rem;
    margin-bottom: 0;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .page-concept-about__title br {
    display: none;
  }
}
.page-concept-about__image {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  max-width: 45rem;
  max-height: 25.3125rem;
}
@media (max-width: 767px) {
  .page-concept-about__image {
    position: static;
    width: 100%;
  }
}
.page-concept-about__image picture {
  width: 100%;
  height: 100%;
  display: block;
}
.page-concept-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-concept-about__text {
  max-width: 100%;
}
.page-concept-about__text p {
  font-size: 1.125rem;
  line-height: 2.2;
  color: #CA7F13;
  margin: 0 0 1.875rem 0;
  font-weight: 300;
  letter-spacing: 0.11em;
  font-family: "Yu Gothic", serif;
}
@media (max-width: 767px) {
  .page-concept-about__text p {
    font-size: 0.8125rem;
    line-height: 2;
    margin-bottom: 1.25rem;
  }
}
.page-concept-about__text p:last-child {
  margin-bottom: 0;
}
.page-concept-about__text p span {
  text-decoration: underline;
}
.page-concept-instagram {
  background-color: #f5f0eb;
  padding: 3.75rem 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-instagram {
    padding: 0 1.875rem 3.75rem;
  }
}
.page-concept-instagram #sb_instagram #sbi_load {
  display: none !important;
}
.page-concept-instagram #sb_instagram .sbi_item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.page-concept-instagram #sb_instagram .sbi_item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.page-concept-instagram #sb_instagram .sbi_item .sbi_photo_wrap {
  position: relative;
  overflow: hidden;
}
.page-concept-instagram #sb_instagram .sbi_item .sbi_photo {
  display: block;
  transition: transform 0.3s ease;
}
.page-concept-instagram #sb_instagram .sbi_item .sbi_photo:hover {
  transform: scale(1.1);
}
.page-concept-instagram #sb_instagram .sbi_item img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.page-concept-instagram #sb_instagram .sbi_item:hover img {
  transform: scale(1.1);
}
.page-concept-instagram__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #CA7F13;
  text-align: left;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-instagram__title {
    font-size: 2.25rem;
  }
}
.page-concept-instagram__title::before {
  content: "Instagram";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 5rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-concept-instagram__title::before {
    font-size: 5rem;
  }
}
.page-concept-instagram__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 3.75rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-concept-instagram__subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-concept-instagram__grid {
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 767px) {
  .page-concept-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
    margin-bottom: 2.5rem;
  }
}
.page-concept-instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #d4d0ca;
}
.page-concept-instagram__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.page-concept-instagram__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.page-concept-instagram__item:hover img {
  transform: scale(1.05);
}
.page-concept-instagram__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(90, 74, 58, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.page-concept-instagram__text {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .page-concept-instagram__text {
    font-size: 0.75rem;
  }
}
.page-concept-instagram__button-wrapper {
  text-align: center;
}
.page-concept-instagram__button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #949E33;
  color: #fff;
  padding: 0.9375rem 2.5rem;
  border-radius: 1.875rem;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .page-concept-instagram__button {
    padding: 0.75rem 1.875rem;
    font-size: 0.8125rem;
  }
}
.page-concept-instagram__button svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media (max-width: 767px) {
  .page-concept-instagram__button svg {
    width: 1rem;
    height: 1rem;
  }
}
.page-concept-instagram__button:hover {
  background-color: #949E33;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-concept .page-concept-instagram__grid {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-concept .page-concept-instagram__grid {
    width: 315px;
  }
}
.page-concept .sbi_photo {
  height: auto;
}
@media (max-width: 767px) {
  .page-concept .sbi_photo {
    height: 148px;
  }
}
@media (max-width: 767px) {
  .page-concept #sbi_images {
    gap: 19px !important;
  }
}
.page-concept-profile {
  background-color: #f5f0eb;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-profile {
    padding: 0 1.875rem 3.75rem;
  }
}
.page-concept-profile__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-concept-profile__title {
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  font-weight: 300;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 0.625rem 0;
  letter-spacing: 0.04em;
  line-height: 7rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-profile__title {
    font-size: 3rem;
  }
  .page-concept-profile__title sp-only {
    display: block;
  }
}
.page-concept-profile__title::before {
  content: "Company Profile";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 5rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-concept-profile__title::before {
    font-size: 4.375rem;
  }
}
.page-concept-profile__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 3.75rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-concept-profile__subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-concept-profile__content {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 3.75rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .page-concept-profile__content {
    padding: 0;
    padding-bottom: 0;
  }
}
.page-concept-profile__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3.125rem;
}
@media (max-width: 767px) {
  .page-concept-profile__image {
    height: 15.625rem;
    margin-bottom: 2.5rem;
  }
}
.page-concept-profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-concept-profile__table {
  width: 100%;
  border-top: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .page-concept-profile__table {
    font-size: 0.875rem;
  }
}
.page-concept-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
@media (max-width: 767px) {
  .page-concept-profile__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
}
.page-concept-profile__column {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .page-concept-profile__column {
    display: contents;
  }
}
.page-concept-profile__column:first-child .page-concept-profile__row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:last-child {
    border-bottom: 1px solid #CA7F13;
  }
}
.page-concept-profile__column:last-child .page-concept-profile__row:last-child {
  border-bottom: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .page-concept-profile__column:last-child .page-concept-profile__row:nth-child(4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:nth-child(3) {
    order: 5;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:nth-child(4) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:first-child .page-concept-profile__row:nth-child(5) {
    order: 8;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:last-child .page-concept-profile__row:nth-child(1) {
    order: 2;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:last-child .page-concept-profile__row:nth-child(2) {
    order: 4;
  }
}
@media (max-width: 767px) {
  .page-concept-profile__column:last-child .page-concept-profile__row:nth-child(3) {
    order: 6;
  }
}
.page-concept-profile__row {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  border-bottom: 1px solid #CA7F13;
  min-height: 5rem;
}
@media (max-width: 767px) {
  .page-concept-profile__row {
    grid-template-columns: 7.5rem 1fr;
    min-height: 4.375rem;
  }
}
.page-concept-profile__label {
  padding: 1.5625rem 1.875rem;
  font-weight: 400;
  color: #CA7F13;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-concept-profile__label {
    padding: 1.25rem 0.9375rem;
    font-size: 0.75rem;
  }
}
.page-concept-profile__value {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-concept-profile__value {
    padding: 1.25rem 0.9375rem;
    font-size: 0.75rem;
  }
}
.page-concept .p-instagram__cards #sb_instagram #sbi_images {
  width: 100%;
  float: none !important;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 40px;
}

.page-price {
  background-color: #F9F8F6;
}
.page-price-hero {
  background-color: #D4CEBE;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
@media (max-width: 320px) {
  .page-price-hero {
    padding: 3.125rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 1920px) {
  .page-price-hero {
    padding: 9.375rem 2.5rem;
  }
}
.page-price-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-price-hero__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-price-hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
}
.page-price-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .page-price-main-image {
    height: 18.75rem;
  }
}
.page-price-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.page-price-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-price-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .page-price-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.page-price-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-price-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.page-price-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-price-breadcrumb__link:hover {
  color: #CA7F13;
  opacity: 0.7;
}
.page-price-breadcrumb__separator {
  color: #CA7F13;
  font-weight: 300;
}
.page-price-breadcrumb__current {
  color: #CA7F13;
  font-weight: 400;
}
.page-price-intro {
  background-color: #F9F8F6;
}
@media (max-width: 767px) {
  .page-price-intro {
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
.page-price-intro__container {
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.5rem;
}
@media (max-width: 767px) {
  .page-price-intro__container {
    padding: 0;
    flex-direction: column;
  }
}
.page-price-intro__text {
  flex: 1;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1125rem;
  line-height: 2;
  color: #CA7F13;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .page-price-intro__text {
    width: 19.6875rem !important;
    flex: none;
    font-size: 0.8125rem;
    line-height: 2;
    text-align: left;
    letter-spacing: 0.05em;
    order: 2;
    padding: 1.25rem 0;
  }
  .page-price-intro__text p {
    text-align: center;
  }
}
.page-price-menu {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 0;
}
@media (max-width: 767px) {
  .page-price-menu {
    padding: 0;
  }
}
.page-price-menu__container {
  flex: 1;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-price-menu__container {
    flex: none;
    width: 100%;
    order: 1;
  }
}
.page-price-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 18.75rem);
  gap: 0;
  justify-content: center;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .page-price-menu__grid {
    grid-template-columns: 19.6875rem;
    padding: 0;
  }
}
.page-price-menu__item {
  background-color: transparent;
  border-bottom: 1px solid #CA7F13;
  border-right: 1px solid #CA7F13;
  padding: 0.33125rem 1.1rem 0.60625rem 0.54375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .page-price-menu__item {
    width: 100%;
    border-right: none;
  }
}
.page-price-menu__item:nth-child(-n+2) {
  padding-top: 0;
}
.page-price-menu__item:nth-child(2n) {
  border-right: none;
}
@media (max-width: 767px) {
  .page-price-menu__item:nth-child(2n) {
    border-right: none;
  }
}
.page-price-menu__item:hover {
  background-color: rgba(202, 127, 19, 0.03);
}
.page-price-menu__item--full {
  border-bottom: none;
}
@media (max-width: 767px) {
  .page-price-menu__item--full {
    grid-column: 1;
  }
}
.page-price-menu__item-content {
  display: flex;
  align-items: baseline;
  gap: 0.80625rem;
}
@media (max-width: 767px) {
  .page-price-menu__item-content {
    gap: 0.625rem;
  }
}
.page-price-menu__item-title {
  font-family: "Marcellus", regular;
  font-size: 2.0625rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .page-price-menu__item-title {
    font-size: 1.25rem;
  }
}
.page-price-menu__item-subtitle {
  font-size: 0.5625rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-menu__item-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }
}
.page-price-menu__item-arrow {
  font-size: 2.5rem;
  color: #CA7F13;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .page-price-menu__item-arrow {
    font-size: 1.5rem;
  }
}
.page-price-menu__item:hover .page-price-menu__item-arrow {
  transform: translateX(5px);
}
.page-price-section-title {
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  font-weight: 300;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 0.625rem 0;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .page-price-section-title {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
}
.page-price-section-subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 3.75rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-section-subtitle {
    margin-bottom: 2.5rem;
  }
}
.page-price-description {
  max-width: 56.25rem;
  margin: 0 auto 3.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-description {
    margin-bottom: 2.5rem;
  }
}
.page-price-description p {
  font-size: 0.875rem;
  line-height: 2;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-price-description p {
    font-size: 0.8125rem;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .page-price-description p br {
    display: none;
  }
}
.page-price-body {
  background-color: #D4CEBE;
  padding: 3.125rem 9.375rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-price-body {
    padding: 3.125rem 1.25rem;
  }
}
.page-price-body__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-price-parts-section {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .page-price-parts-section {
    margin-bottom: 3.125rem;
  }
}
.page-price-parts-section:last-child {
  margin-bottom: 0;
}
.page-price-parts-name {
  font-size: 1.5rem;
  color: #CA7F13;
  font-weight: 400;
  text-align: center;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-parts-name {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
.page-price-parts-list {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #CA7F13;
  text-align: center;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  max-width: 56.25rem;
}
@media (max-width: 767px) {
  .page-price-parts-list {
    font-size: 0.75rem;
    margin-bottom: 1.5625rem;
    text-align: center;
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .page-price-parts-list br {
    display: none;
  }
}
.page-price-parts-list__sp-only {
  display: none;
  font-size: 0.875rem;
  line-height: 2;
  color: #CA7F13;
  text-align: center;
  margin: 0 auto 1.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-price-parts-list__sp-only {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.9375rem;
  }
}
.page-price-vline {
  background-color: #D4CEBE;
  padding: 3.125rem 9.375rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-price-vline {
    padding: 3.125rem 1.25rem;
  }
}
.page-price-vline__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-price-vline__table--pc {
  display: block;
}
@media (max-width: 767px) {
  .page-price-vline__table--pc {
    display: none;
  }
}
.page-price-vline__section--mobile {
  display: none;
}
@media (max-width: 767px) {
  .page-price-vline__section--mobile {
    display: block;
  }
}
.page-price-vline__section--mobile:last-child {
  margin-bottom: 0;
}
.page-price-set {
  background-color: #D4CEBE;
  padding: 3.125rem 9.375rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-price-set {
    padding: 3.125rem 1.25rem;
  }
}
.page-price-set__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-price-custom {
  background-color: #FFFFFF;
  padding: 6.25rem 3.75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-price-custom {
    padding: 3.125rem 1.25rem;
  }
}
.page-price-custom .section__inner {
  max-width: 67.5rem;
  width: 100%;
  margin: 0 auto;
}
.page-price-custom__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3.75rem;
  align-items: center;
}
@media (max-width: 767px) {
  .page-price-custom__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.page-price-custom__image {
  width: 30rem;
  height: 30rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-price-custom__image {
    order: 1;
    width: 15rem;
    height: 15rem;
    margin: 0 auto;
  }
}
.page-price-custom__image picture,
.page-price-custom__image img {
  width: 30rem;
  height: 30rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .page-price-custom__image picture,
  .page-price-custom__image img {
    width: 15rem;
    height: 15rem;
  }
}
.page-price-custom__content {
  width: 33.75rem;
}
@media (max-width: 767px) {
  .page-price-custom__content {
    order: 2;
    width: 100%;
  }
}
.page-price-custom__title {
  font-family: "Marcellus", regular;
  font-size: 3rem;
  font-weight: 400;
  color: #CA7F13;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-custom__title {
    font-size: 2rem;
    margin-bottom: 0.625rem;
  }
}
.page-price-custom__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-custom__subtitle {
    margin-bottom: 1.5625rem;
    text-align: center;
  }
}
.page-price-custom__text p {
  font-size: 1.125rem;
  letter-spacing: 1.8px;
  line-height: 36px;
  color: #CA7F13;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-custom__text p {
    font-size: 0.75rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}
.page-price-custom__text p:last-child {
  margin-bottom: 0;
}
.page-price-all {
  background-color: #D4CEBE;
  padding: 6.25rem 3.75rem;
}
@media (max-width: 767px) {
  .page-price-all {
    padding: 3.75rem 1.875rem;
  }
}
.page-price-all__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-price-all__sections {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 767px) {
  .page-price-all__sections {
    gap: 3.75rem;
  }
}
.page-price-all__section-title {
  font-family: "Marcellus", serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-all__section-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
.page-price-table {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .page-price-table {
    margin-bottom: 1.875rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page-price-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  border-bottom: 1px solid #CA7F13;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
@media (max-width: 767px) {
  .page-price-table table {
    font-size: 0.6875rem;
    min-width: 100%;
    writing-mode: vertical-lr;
    table-layout: fixed;
  }
}
.page-price-table__header-content {
  display: none;
}
@media (max-width: 767px) {
  .page-price-table__header-content {
    display: table-cell;
    border-bottom: 1px solid #CA7F13;
    width: 25%;
    padding: 0.75rem 0.375rem;
    font-size: 0.5625rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .page-price-table__header-content span {
    writing-mode: horizontal-tb;
    white-space: nowrap;
    display: inline-block;
  }
}
.page-price-table__pc-only {
  display: table-cell;
}
@media (max-width: 767px) {
  .page-price-table__pc-only {
    display: none;
  }
}
.page-price-table thead {
  background-color: transparent;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
.page-price-table thead th {
  padding: 1.5625rem 0.9375rem;
  text-align: center;
  color: #CA7F13;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #CA7F13;
  line-height: 1;
  height: 1em;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
@media (max-width: 767px) {
  .page-price-table thead th {
    padding: 0.75rem 0.375rem;
    font-size: 0.5625rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    width: 25%;
  }
  .page-price-table thead th span {
    writing-mode: horizontal-tb;
    white-space: nowrap;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .page-price-table thead th {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
  }
  .page-price-table thead th.page-price-table__pc-only {
    padding: 1.5625rem 0.9375rem;
    line-height: 1;
    height: 1em;
    writing-mode: horizontal-tb !important;
    -ms-writing-mode: lr-tb !important;
  }
  .page-price-table thead th span {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    white-space: nowrap;
    display: inline-block;
  }
}
.page-price-table thead th:first-child {
  width: 11.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-table thead th:first-child {
    width: 11.25rem;
  }
}
.page-price-table tbody {
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
.page-price-table tbody tr {
  border-bottom: 1px solid #CA7F13;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
@media (max-width: 767px) {
  .page-price-table tbody tr {
    border-bottom: none;
  }
}
.page-price-table tbody td {
  padding: 1.875rem 0.9375rem;
  text-align: center;
  color: #CA7F13;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  height: 1em;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
}
@media (max-width: 767px) {
  .page-price-table tbody td {
    padding: 0.75rem 0.375rem;
    font-size: 0.5625rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #CA7F13;
    width: 25%;
    line-height: 1.4;
  }
  .page-price-table tbody td span {
    writing-mode: horizontal-tb;
    white-space: nowrap;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .page-price-table tbody td {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
  }
  .page-price-table tbody td.page-price-table__pc-only {
    padding: 1.875rem 0.9375rem;
    line-height: 1;
    height: 1em;
    writing-mode: horizontal-tb !important;
    -ms-writing-mode: lr-tb !important;
  }
  .page-price-table tbody td span {
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    white-space: nowrap;
    display: inline-block;
  }
}
.page-price-table tbody td:first-child {
  font-weight: 400;
  background-color: transparent;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .page-price-table tbody td:first-child {
    font-size: 0.5625rem;
    width: 25%;
  }
}
.page-price-table tbody td .price-num {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.4px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .page-price-table tbody td .price-num {
    font-size: 0.6875rem;
  }
}
.page-price-table tbody td .price-unit {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1.8px;
}
@media (max-width: 767px) {
  .page-price-table tbody td .price-unit {
    font-size: 0.5625rem;
  }
}
.page-price-note {
  font-size: 0.75rem;
  color: #CA7F13;
  margin: 0.78125rem 0 0;
  text-align: right;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-note {
    font-size: 0.5625rem;
    text-align: left;
    margin-top: 0.625rem;
    line-height: 1.5;
  }
}
.page-price-course {
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .page-price-course {
    margin-bottom: 2.5rem;
  }
}
.page-price-course:last-child {
  margin-bottom: 0;
}
.page-price-course-name {
  font-size: 1.25rem;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-course-name {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.page-price-parts-title {
  font-size: 1rem;
  color: #CA7F13;
  font-weight: 400;
  margin: 1.875rem 0 0.9375rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-parts-title {
    font-size: 0.875rem;
    margin: 1.25rem 0 0.625rem;
  }
}
.page-price-parts-desc {
  font-size: 0.875rem;
  line-height: 2;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .page-price-parts-desc {
    font-size: 0.75rem;
    line-height: 1.9;
  }
}
@media (max-width: 767px) {
  .page-price-parts-desc br {
    display: none;
  }
}

.page-salons {
  background-color: #F9F8F6;
}
.page-salons-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
@media (max-width: 767px) {
  .page-salons-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
@media (max-width: 320px) {
  .page-salons-hero {
    padding: 3.125rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 1920px) {
  .page-salons-hero {
    padding: 9.375rem 2.5rem;
  }
}
.page-salons-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-hero__container {
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
.page-salons-hero__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 767px) {
  .page-salons-hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
}
.page-salons-map {
  background-color: #F9F8F6;
  padding: 0;
  width: 100%;
  overflow: hidden;
  margin: 0;
  height: 31.25rem;
  position: sticky;
  top: 0;
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-map {
    height: 18.75rem;
  }
}
@media (max-width: 767px) {
  .page-salons-map {
    height: 18.75rem;
  }
}
.page-salons-map__container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #F9F8F6;
}
.page-salons-map__image {
  width: 100%;
  height: 130%;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.page-salons-map__image picture {
  width: 100%;
  height: 100%;
  display: block;
}
.page-salons-map__image img {
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-salons-prefectures {
  padding: 2.5rem 6rem;
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures {
    padding: 3.125rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures {
    padding: 3.125rem 1.25rem;
  }
}
.page-salons-prefectures__container {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__container {
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
.page-salons-prefectures__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 0.625rem 0;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.page-salons-prefectures__title::before {
  content: "Prefectures";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 7.5rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__title::before {
    font-size: 5rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__title::before {
    font-size: 5rem;
  }
}
.page-salons-prefectures__subtitle {
  font-size: 0.75rem;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 3.75rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__subtitle {
    font-size: 0.6875rem;
    margin-bottom: 2.1875rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__subtitle {
    font-size: 0.6875rem;
    margin-bottom: 2.1875rem;
  }
}
.page-salons-prefectures__list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding: 1.875rem 9rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__list {
    gap: 0.9375rem 1.875rem;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__list {
    gap: 0.9375rem 1.875rem;
    padding: 1.5rem 1rem;
  }
}
.page-salons-prefectures__item {
  margin: 0;
  flex: 0 0 auto;
}
.page-salons-prefectures__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.75rem;
  color: #CA7F13;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.page-salons-prefectures__link::before {
  content: "▸";
  font-size: 1.75rem;
  color: #333333;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__link::before {
    font-size: 0.8125rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__link::before {
    font-size: 0.8125rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__link {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__link {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
}
.page-salons-prefectures__link span {
  font-size: 0.8125rem;
  color: #CA7F13;
  letter-spacing: 0.1em;
  margin-left: 0.3125rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-prefectures__link span {
    font-size: 0.6875rem;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__link span {
    font-size: 0.6875rem;
  }
}
.page-salons-prefectures__link:hover {
  color: rgb(155.3846153846, 97.6923076923, 14.6153846154);
  transform: translateX(5px);
}
.page-salons-prefectures__link:hover::before {
  color: rgb(155.3846153846, 97.6923076923, 14.6153846154);
}
.page-salons-prefectures__link:focus, .page-salons-prefectures__link:active {
  outline: none;
  transform: none;
}
.page-salons-area {
  background-color: #F9F8F6;
  margin-bottom: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-salons-area__header {
  background-color: #CA7F13;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5625rem 3.75rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-area__header {
    max-width: 100%;
    padding: 0.9375rem 1.25rem;
    margin: 0 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-salons-area__header {
    padding: 0.9375rem 1.25rem;
    margin: 0 1.25rem;
  }
}
.page-salons-area__title {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-area__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .page-salons-area__title {
    font-size: 1.375rem;
  }
}
.page-salons-area__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.75rem 0rem 5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-area__container {
    max-width: 100%;
    padding: 2.1875rem 1.25rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .page-salons-area__container {
    padding: 2.1875rem 1.25rem 2.5rem;
  }
}
.page-salons-area__shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-area__shops {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}
@media (max-width: 767px) {
  .page-salons-area__shops {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}
.page-salons-shop {
  display: block;
  background-color: #F9F8F6;
  border-radius: 0;
  overflow: hidden;
}
.page-salons-shop__map {
  width: 100%;
  height: 18.75rem;
  background-color: #e8e4df;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-shop__map {
    height: 12.5rem;
  }
}
@media (max-width: 767px) {
  .page-salons-shop__map {
    height: 12.5rem;
  }
}
.page-salons-shop__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}
.page-salons-shop__info {
  padding: 1.5625rem 0rem;
  background-color: #F9F8F6;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-shop__info {
    padding: 0.9375rem 0rem 1.125rem;
  }
}
@media (max-width: 767px) {
  .page-salons-shop__info {
    padding: 0.9375rem 0rem 1.125rem;
  }
}
.page-salons-shop__name-en {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  color: #CA7F13;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-shop__name-en {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .page-salons-shop__name-en {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
    letter-spacing: 0.05em;
  }
}
.page-salons-shop__name {
  font-size: 0.875rem;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-shop__name {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .page-salons-shop__name {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    line-height: 1.5;
  }
}
.page-salons-shop__address {
  font-size: 0.8125rem;
  color: #333333;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-salons-shop__address {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .page-salons-shop__address {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
}

.single-salon {
  background-color: #F9F8F6;
}
.single-salon-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .single-salon-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
.single-salon-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.single-salon-hero__title {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .single-salon-hero__title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}
.single-salon-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .single-salon-main-image {
    height: 18.75rem;
  }
}
.single-salon-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.single-salon-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-salon-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  padding: 1.25rem 3.75rem;
  color: #CA7F13;
  background-color: rgba(202, 127, 19, 0.0784313725);
}
@media (max-width: 767px) {
  .single-salon-breadcrumb {
    padding: 0.9375rem 1.25rem;
  }
}
.single-salon-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #CA7F13;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .single-salon-breadcrumb__container {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
}
.single-salon-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.single-salon-breadcrumb__link:hover {
  opacity: 0.7;
}
.single-salon-breadcrumb__separator {
  color: #CA7F13;
  margin: 0 0.125rem;
}
.single-salon-breadcrumb__current {
  color: #CA7F13;
}
.single-salon-description {
  position: relative;
  z-index: 1;
  background-color: #f5f0eb;
  padding: 5rem 3.75rem;
}
@media (max-width: 767px) {
  .single-salon-description {
    padding: 3.125rem 1.25rem;
  }
}
.single-salon-description__container {
  max-width: 61.25rem;
  margin: 0 auto;
}
.single-salon-description__content {
  text-align: center;
}
.single-salon-description__content p {
  font-size: 1.25rem;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  line-height: 2.2;
  color: #333333;
  margin: 0 0 1em 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-description__content p {
    font-size: 0.875rem;
    line-height: 2;
    text-align: left;
  }
}
.single-salon-description__content p:last-child {
  margin-bottom: 0;
}
.single-salon-flow {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 6.25rem 3.75rem;
}
@media (max-width: 767px) {
  .single-salon-flow {
    padding: 3.125rem 1.25rem 3.75rem;
  }
}
.single-salon-flow__container {
  max-width: 75rem;
  margin: 0 auto;
}
.single-salon-flow__title {
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.9375rem 0;
  letter-spacing: 0.1em;
  position: relative;
}
.single-salon-flow__title::before {
  content: "Flow";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 8.75rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  font-style: normal;
}
@media (max-width: 767px) {
  .single-salon-flow__title::before {
    font-size: 6.25rem;
  }
}
@media (max-width: 767px) {
  .single-salon-flow__title {
    font-size: 2.625rem;
    margin-bottom: 0.625rem;
  }
}
.single-salon-flow__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 5rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .single-salon-flow__subtitle {
    font-size: 0.6875rem;
    margin-bottom: 3.125rem;
    position: relative;
  }
}
.single-salon-flow__intro {
  max-width: 75rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .single-salon-flow__intro {
    position: relative;
  }
}
.single-salon-flow__layout {
  max-width: 47.5rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .single-salon-flow__layout {
    align-items: center;
  }
}
.single-salon-flow__image-item {
  position: absolute;
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  overflow: hidden;
}
.single-salon-flow__image-item.first {
  top: 0;
  right: -10rem;
}
.single-salon-flow__image-item.second {
  top: 30%;
  left: -11.25rem;
}
.single-salon-flow__image-item.third {
  bottom: 30%;
  right: -10rem;
}
@media (max-width: 767px) {
  .single-salon-flow__image-item {
    width: 4.375rem;
    height: 4.375rem;
  }
  .single-salon-flow__image-item.first {
    top: 0;
    right: auto;
    left: 10%;
  }
  .single-salon-flow__image-item.second {
    top: 30%;
    left: auto;
    right: 10%;
  }
  .single-salon-flow__image-item.third {
    bottom: 30%;
    right: auto;
    left: 10%;
  }
}
.single-salon-flow__image-item img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-salon-flow__list {
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem 1.875rem 1.25rem;
}
@media (max-width: 767px) {
  .single-salon-flow__list {
    gap: 2.1875rem;
    padding: 0 1.25rem;
  }
}
.single-salon-flow__item-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .single-salon-flow__item-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.single-salon-flow__item-wrapper::before {
  content: "";
  position: absolute;
  left: 1.875rem;
  top: 3.75rem;
  bottom: -1.875rem;
  width: 1px;
  border-left: 1px dashed #CA7F13;
}
@media (max-width: 767px) {
  .single-salon-flow__item-wrapper::before {
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    bottom: auto;
    height: 2.1875rem;
  }
}
.single-salon-flow__item-wrapper:nth-last-child(2)::before {
  display: none;
}
.single-salon-flow__number {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #949E33;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .single-salon-flow__number {
    width: 2.375rem;
    height: 2.375rem;
    font-size: 1rem;
    z-index: 2;
  }
}
.single-salon-flow__item {
  flex: 1;
  margin: 0 1.875rem;
}
@media (max-width: 767px) {
  .single-salon-flow__item {
    margin: 0.625rem 0 0 0;
    width: 100%;
    text-align: center;
  }
}
.single-salon-flow__content {
  padding-top: 1.25rem;
}
@media (max-width: 767px) {
  .single-salon-flow__content {
    padding-top: 0;
  }
}
.single-salon-flow__heading {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 0.9375rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-flow__heading {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
.single-salon-flow__text {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.1125rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .single-salon-flow__text {
    font-size: 0.75rem;
    line-height: 1.8;
    text-align: left;
  }
}
.single-salon-flow__image {
  width: 100%;
  max-width: 25rem;
  height: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-flow__image {
    max-width: 100%;
    margin-top: 0.9375rem;
  }
}
.single-salon-flow__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-salon-staff {
  position: relative;
  z-index: 1;
  background-color: #464646;
  padding: 6.25rem 3.75rem;
}
@media (max-width: 767px) {
  .single-salon-staff {
    padding: 3.75rem 1.25rem;
  }
}
.single-salon-staff__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .single-salon-staff__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.single-salon-staff__image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-staff__image {
    max-width: 18.75rem;
    margin: 0 auto;
  }
}
.single-salon-staff__image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-salon-staff__content {
  color: #fff;
}
.single-salon-staff__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.625rem 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .single-salon-staff__title {
    font-size: 2.25rem;
    text-align: center;
  }
}
.single-salon-staff__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .single-salon-staff__subtitle {
    font-size: 0.6875rem;
    margin-bottom: 1.875rem;
    text-align: center;
  }
}
.single-salon-staff__text .single-salon-staff__name {
  font-size: 1.5rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  color: #CA7F13;
  font-weight: 700;
  margin: 0;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .single-salon-staff__text .single-salon-staff__name {
    font-size: 0.8125rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3125rem;
  }
}
.single-salon-staff__text .single-salon-staff__name span {
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .single-salon-staff__text .single-salon-staff__name span {
    font-size: 0.75rem;
  }
}
.single-salon-staff__text p {
  font-size: 0.875rem;
  line-height: 2;
  color: #CA7F13;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-staff__text p {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.single-salon-staff__text p:last-of-type {
  margin-bottom: 2em;
}
.single-salon-info {
  position: relative;
  z-index: 1;
  background-color: #D4CEBE;
  padding: 6.25rem 3.75rem;
}
@media (max-width: 767px) {
  .single-salon-info {
    padding: 3.75rem 1.25rem;
  }
}
.single-salon-info__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .single-salon-info__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
}
.single-salon-info__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .single-salon-info__details {
    order: 2;
  }
}
.single-salon-info__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #D4CEBE;
}
.single-salon-info__table tr {
  border-bottom: 1px solid #CA7F13;
}
.single-salon-info__table th {
  width: 30%;
  padding: 1.25rem 0.625rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: #CA7F13;
  text-align: left;
  vertical-align: top;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-info__table th {
    width: 35%;
    padding: 1.125rem 0.625rem;
    font-size: 0.8125rem;
  }
}
.single-salon-info__table td {
  padding: 1.25rem 1.25rem;
  color: #5a4a3a;
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .single-salon-info__table td {
    padding: 1.125rem 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}
.single-salon-info__map {
  width: 100%;
  height: 25rem;
  background-color: #e8e4df;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-info__map {
    height: 15.625rem;
    order: 1;
  }
}
.single-salon-info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.single-salon-back {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 0 3.75rem 5rem;
}
@media (max-width: 767px) {
  .single-salon-back {
    padding: 0 1.25rem 3.125rem;
  }
}
.single-salon-back__container {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
}
.single-salon-back__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 0.9375rem 3.125rem;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 1.875rem;
  margin-top: 3.125rem;
}
@media (max-width: 767px) {
  .single-salon-back__button {
    padding: 0.75rem 2.5rem;
    font-size: 0.8125rem;
  }
}
.single-salon-back__button:hover {
  background-color: #CA7F13;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.archive-news {
  background-color: #F9F8F6;
}
.archive-news-hero {
  background-color: #D4CEBE;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .archive-news-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
.archive-news-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.archive-news-hero__title {
  font-family: "Marcellus", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .archive-news-hero__title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }
}
.archive-news-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .archive-news-main-image {
    height: 18.75rem;
  }
}
.archive-news-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.archive-news-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.archive-news-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .archive-news-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.archive-news-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .archive-news-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}
.archive-news-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-news-breadcrumb__link:hover {
  color: #CA7F13;
  opacity: 0.8;
}
.archive-news-breadcrumb__separator {
  color: #CA7F13;
}
.archive-news-breadcrumb__current {
  color: #CA7F13;
}
.archive-news-content {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 3.75rem 3.75rem 6.25rem;
}
@media (max-width: 767px) {
  .archive-news-content {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}
.archive-news-content__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .archive-news-content__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.archive-news-posts {
  flex: 1;
}
.archive-news-posts__list {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media (max-width: 767px) {
  .archive-news-posts__list {
    gap: 0.75rem;
  }
}
.archive-news-card {
  background-color: #D4CEBE;
  transition: all 0.3s ease;
  overflow: hidden;
}
.archive-news-card:hover {
  background-color: #ddd8d2;
  transform: translateX(5px);
}
.archive-news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.archive-news-card__content {
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.6875rem 0rem 0.75rem;
  gap: 1.25rem;
  width: 100%;
  min-height: 5rem;
}
@media (max-width: 767px) {
  .archive-news-card__content {
    padding: 0.75rem 0.6875rem 0rem 0.75rem;
    gap: 0.9375rem;
    min-height: 4.375rem;
  }
}
.archive-news-card__left {
  flex: 1;
  flex-direction: row;
  align-items: center;
  gap: 0.9375rem;
}
@media (max-width: 767px) {
  .archive-news-card__left {
    gap: 0.625rem;
  }
}
.archive-news-card__right {
  flex-shrink: 0;
  text-align: right;
  font-size: 1rem;
  color: #b3b3b3;
}
.archive-news-card__date {
  font-size: 0.8125rem;
  color: #CA7F13;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: block;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .archive-news-card__date {
    font-size: 0.75rem;
  }
}
.archive-news-card__title {
  font-size: 0.9375rem;
  color: #CA7F13;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.05em;
  flex: 1;
}
@media (max-width: 767px) {
  .archive-news-card__title {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.archive-news-card__category {
  color: #b3b3b3;
  background-color: transparent;
  padding: 0;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .archive-news-card__category {
    font-size: 0.75rem;
  }
}
.archive-news-card__category.is-all {
  color: #7a6a5a;
}
.archive-news-card__category.is-news {
  color: #7a6a5a;
}
.archive-news-card__category.is-column {
  color: #7a6a5a;
}
.archive-news-sidebar {
  width: 12.5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .archive-news-sidebar {
    width: 100%;
  }
}
.archive-news-sidebar__title {
  font-family: "Marcellus", serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: #CA7F13;
  letter-spacing: 0.1em;
  padding-left: 0.9375rem;
  border-left: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .archive-news-sidebar__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
    padding-left: 0;
    border-left: none;
  }
}
.archive-news-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid #CA7F13;
  padding-left: 0.9375rem;
}
@media (max-width: 767px) {
  .archive-news-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    border-left: none;
    padding-left: 0;
  }
}
.archive-news-sidebar__item {
  margin: 0;
}
@media (max-width: 767px) {
  .archive-news-sidebar__item {
    width: 40%;
  }
}
.archive-news-sidebar__link {
  display: block;
  padding: 0.3125rem 0;
  font-size: 0.875rem;
  color: #CA7F13;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .archive-news-sidebar__link {
    padding: 0.5rem 0.9375rem;
    font-size: 0.8125rem;
  }
}
.archive-news-sidebar__link:hover {
  color: #CA7F13;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .archive-news-sidebar__link:hover {
    opacity: 1;
  }
}
.archive-news-sidebar__link.is-active {
  color: #CA7F13;
  font-weight: 400;
}
.archive-news-pagination {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .archive-news-pagination {
    margin-top: 2.5rem;
  }
}
.archive-news-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.archive-news-pagination li {
  margin: 0;
}
.archive-news-pagination a,
.archive-news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 2.5rem;
  font-size: 1.5625rem;
  font-weight: 400;
  color: #CA7F13;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 300;
}
@media (max-width: 767px) {
  .archive-news-pagination a,
  .archive-news-pagination span {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }
}
.archive-news-pagination a:hover {
  color: #CA7F13;
  transform: translateY(-2px);
}
.archive-news-pagination .current {
  color: #CA7F13;
  font-weight: 400;
}
.archive-news-pagination .prev,
.archive-news-pagination .next {
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  .archive-news-pagination .prev,
  .archive-news-pagination .next {
    font-size: 1.125rem;
  }
}
.archive-news-empty {
  text-align: center;
  padding: 5rem 1.25rem;
}
@media (max-width: 767px) {
  .archive-news-empty {
    padding: 3.75rem 1.25rem;
  }
}
.archive-news-empty p {
  font-size: 1rem;
  color: #7a6a5a;
  margin: 0;
}
@media (max-width: 767px) {
  .archive-news-empty p {
    font-size: 0.875rem;
  }
}

.single-post {
  background-color: #F9F8F6;
}
.single-post-hero {
  background-color: #F9F8F6;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .single-post-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
.single-post-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.single-post-hero__title {
  font-family: "Marcellus", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .single-post-hero__title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }
}
.single-post-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .single-post-main-image {
    height: 18.75rem;
  }
}
.single-post-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
}
.single-post-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-post-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .single-post-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.single-post-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .single-post-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.single-post-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post-breadcrumb__link:hover {
  color: #CA7F13;
  opacity: 0.8;
}
.single-post-breadcrumb__separator {
  color: #CA7F13;
}
.single-post-breadcrumb__current {
  color: #CA7F13;
}
.single-post-content {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 3.75rem 3.75rem 6.25rem;
}
@media (max-width: 767px) {
  .single-post-content {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}
.single-post-content__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  gap: 3.75rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .single-post-content__container {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .single-post-content__container {
    flex-direction: column;
    gap: 3.125rem;
  }
}
.single-post-article {
  flex: 1;
  max-width: 50rem;
}
@media (max-width: 767px) {
  .single-post-article {
    max-width: 100%;
  }
}
.single-post-article__meta {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 1.875rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .single-post-article__meta {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
}
.single-post-article__date {
  font-size: 0.875rem;
  color: #CA7F13;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__date {
    font-size: 0.8125rem;
  }
}
.single-post-article__category {
  font-size: 0.75rem;
  color: #CA7F13;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__category {
    font-size: 0.6875rem;
    padding: 0.25rem 0.75rem;
  }
}
.single-post-article__category.is-news {
  background-color: #a8956a;
}
.single-post-article__category.is-column {
  background-color: #8a8a6a;
}
.single-post-article__title {
  font-size: 1.75rem;
  color: #CA7F13;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__title {
    font-size: 1.375rem;
    line-height: 1.7;
    margin-bottom: 1.875rem;
  }
}
.single-post-article__subtitle {
  font-size: 1rem;
  color: #7a6a5a;
  font-weight: 300;
  line-height: 1.8;
  margin: -1.5625rem 0 2.1875rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__subtitle {
    font-size: 0.9375rem;
    margin: -1.25rem 0 1.875rem 0;
  }
}
.single-post-article__featured-image {
  margin: 0 0 3.125rem 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-post-article__featured-image {
    margin-bottom: 2.1875rem;
  }
}
.single-post-article__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post-article__introduction {
  padding: 1.875rem 0;
  font-size: 1rem;
  line-height: 2;
  color: #5a4a3a;
  font-weight: 400;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__introduction {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}
.single-post-article__introduction p {
  margin: 0 0 1em 0;
}
.single-post-article__introduction p:last-child {
  margin-bottom: 0;
}
.single-post-article__content {
  padding: 1.875rem 0;
  color: #5a4a3a;
  font-size: 0.9375rem;
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content {
    padding: 1.25rem 0;
    font-size: 0.875rem;
    line-height: 2;
  }
}
.single-post-article__content h2 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #CA7F13;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767px) {
  .single-post-article__content h2 {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}
.single-post-article__content h3 {
  font-size: 1.1875rem;
  font-weight: 400;
  color: #5a4a3a;
  margin: 3.125rem 0 1.5625rem 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content h3 {
    font-size: 1.0625rem;
    margin: 2.5rem 0 1.25rem 0;
  }
}
.single-post-article__content h4 {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #5a4a3a;
  margin: 2.5rem 0 1.25rem 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content h4 {
    font-size: 1rem;
    margin: 2.1875rem 0 1.125rem 0;
  }
}
.single-post-article__content p {
  margin: 0 0 1.8em 0;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 1rem;
}
.single-post-article__content p:last-child {
  margin-bottom: 0;
}
.single-post-article__content ul, .single-post-article__content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
@media (max-width: 767px) {
  .single-post-article__content ul, .single-post-article__content ol {
    padding-left: 1.5em;
  }
}
.single-post-article__content li {
  margin: 0.8em 0;
}
.single-post-article__content a {
  color: #CA7F13;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.single-post-article__content a:hover {
  color: #a8956a;
}
.single-post-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}
.single-post-article__content blockquote {
  border-left: 4px solid #CA7F13;
  padding: 1.5em 2em;
  margin: 2em 0;
  background-color: #e8e4df;
  color: #7a6a5a;
}
@media (max-width: 767px) {
  .single-post-article__content blockquote {
    padding: 1em 1.5em;
    margin: 1.5em 0;
  }
}
.single-post-article__content code {
  background-color: #e8e4df;
  padding: 0.2em 0.5em;
  border-radius: 0.1875rem;
  font-size: 0.9em;
  font-family: monospace;
}
.single-post-article__content pre {
  background-color: #e8e4df;
  padding: 1.5em;
  border-radius: 0.3125rem;
  overflow-x: auto;
  margin: 2em 0;
}
@media (max-width: 767px) {
  .single-post-article__content pre {
    padding: 1em;
  }
}
.single-post-article__content pre code {
  background-color: transparent;
  padding: 0;
}
.single-post-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
@media (max-width: 767px) {
  .single-post-article__content table {
    font-size: 0.8125rem;
  }
}
.single-post-article__content table th, .single-post-article__content table td {
  padding: 0.75rem 0.9375rem;
  border: 1px solid #d4d0ca;
  text-align: left;
}
@media (max-width: 767px) {
  .single-post-article__content table th, .single-post-article__content table td {
    padding: 0.625rem 0.75rem;
  }
}
.single-post-article__content table th {
  background-color: #e8e4df;
  font-weight: 400;
}
.single-post-article__gallery {
  margin: 3.125rem 0;
}
@media (max-width: 767px) {
  .single-post-article__gallery {
    margin: 2.1875rem 0;
  }
}
.single-post-article__gallery-item {
  margin: 0 0 1.875rem 0;
}
@media (max-width: 767px) {
  .single-post-article__gallery-item {
    margin-bottom: 1.5625rem;
  }
}
.single-post-article__gallery-item:last-child {
  margin-bottom: 0;
}
.single-post-article__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post-article__gallery-caption {
  font-size: 0.8125rem;
  color: #7a6a5a;
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__gallery-caption {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}
.single-post-article__comment {
  background-color: #e8e4df;
  padding: 1.875rem 2.1875rem;
  margin: 3.125rem 0;
  border-radius: 0.3125rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: #5a4a3a;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 767px) {
  .single-post-article__comment {
    padding: 1.25rem 1.5625rem;
    margin: 2.1875rem 0;
    font-size: 0.875rem;
  }
}
.single-post-article__comment::before {
  content: '"';
  font-family: "Marcellus", serif;
  font-size: 3.75rem;
  color: #CA7F13;
  position: absolute;
  top: 0.625rem;
  left: 1.25rem;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .single-post-article__comment::before {
    font-size: 3.125rem;
    top: 0.3125rem;
    left: 0.9375rem;
  }
}
.single-post-article__comment p {
  margin: 0 0 1em 0;
  position: relative;
  z-index: 1;
}
.single-post-article__comment p:last-child {
  margin-bottom: 0;
}
.single-post-article__related-links {
  margin: 3.125rem 0 0 0;
  padding: 1.875rem;
  background-color: #f9f8f6;
  border-radius: 0.3125rem;
}
@media (max-width: 767px) {
  .single-post-article__related-links {
    margin-top: 2.1875rem;
    padding: 1.25rem;
  }
}
.single-post-article__related-title {
  font-size: 1.125rem;
  color: #5a4a3a;
  font-weight: 400;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__related-title {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }
}
.single-post-article__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post-article__related-item {
  margin: 0 0 0.75rem 0;
}
@media (max-width: 767px) {
  .single-post-article__related-item {
    margin-bottom: 0.625rem;
  }
}
.single-post-article__related-item:last-child {
  margin-bottom: 0;
}
.single-post-article__related-link {
  display: inline-flex;
  align-items: center;
  color: #CA7F13;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .single-post-article__related-link {
    font-size: 0.8125rem;
  }
}
.single-post-article__related-link::before {
  content: "→";
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .single-post-article__related-link::before {
    margin-right: 0.375rem;
  }
}
.single-post-article__related-link:hover {
  border-bottom: 2px solid #FFFFFF;
}
.single-post-article__related-link:hover::before {
  transform: translateX(5px);
}
.single-post-back {
  background-color: #F9F8F6;
  padding: 0 3.75rem 5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .single-post-back {
    padding: 0 1.25rem 3.125rem;
  }
}
.single-post-back__container {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}
.single-post-back__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 0.9375rem 3.125rem;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 1.875rem;
}
@media (max-width: 767px) {
  .single-post-back__button {
    padding: 0.75rem 2.5rem;
    font-size: 0.8125rem;
  }
}
.single-post-back__button:hover {
  background-color: rgb(104.6622009569, 111.7339712919, 36.0660287081);
  transform: translateY(-2px);
}

.page-contact {
  background-color: #F9F8F6;
}
.page-contact-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-contact-hero {
    padding: 3.75rem 1.25rem 3.125rem;
  }
}
@media (max-width: 320px) {
  .page-contact-hero {
    padding: 3.125rem 0.9375rem 2.5rem;
  }
}
@media (min-width: 1920px) {
  .page-contact-hero {
    padding: 9.375rem 2.5rem;
  }
}
.page-contact-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-contact-hero__title {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-contact-hero__title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }
}
.page-contact-main-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .page-contact-main-image {
    height: 18.75rem;
  }
}
.page-contact-main-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.page-contact-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-contact-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 1.875rem 3.75rem;
  color: #CA7F13;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .page-contact-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.page-contact-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #7a6a5a;
}
@media (max-width: 767px) {
  .page-contact-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}
.page-contact-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-contact-breadcrumb__link:hover {
  color: #CA7F13;
}
.page-contact-breadcrumb__separator {
  color: #CA7F13;
}
.page-contact-breadcrumb__current {
  color: #CA7F13;
}
.page-contact-tel {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 5rem 3.75rem;
}
@media (max-width: 767px) {
  .page-contact-tel {
    padding: 3.125rem 1.25rem;
  }
}
.page-contact-tel__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 767px) {
  .page-contact-tel__container {
    flex-direction: column;
    gap: 2.1875rem;
  }
}
.page-contact-tel__content {
  flex: 1;
  padding-right: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-contact-tel__content {
    padding-right: 0;
  }
}
.page-contact-tel__content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11.25rem;
  background-color: #CA7F13;
}
@media (max-width: 767px) {
  .page-contact-tel__content::after {
    display: none;
  }
}
.page-contact-tel__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .page-contact-tel__title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
}
.page-contact-tel__text {
  font-size: 0.875rem;
  color: #CA7F13;
  line-height: 2;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-tel__text {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.page-contact-tel__phone-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .page-contact-tel__phone-box {
    padding-left: 0;
    width: 100%;
  }
}
.page-contact-tel__number {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 2.1875rem;
  color: #CA7F13;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .page-contact-tel__number {
    font-size: 2.25rem;
  }
}
.page-contact-tel__number:hover {
  color: #a8956a;
}
.page-contact-tel__hours {
  font-size: 0.875rem;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.5rem;
  border: 1.5px solid #CA7F13;
  border-radius: 1.5625rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-contact-tel__hours {
    font-size: 0.8125rem;
    padding: 0.625rem 1.875rem;
  }
}
.page-contact-minors {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 5rem 3.75rem;
}
@media (max-width: 767px) {
  .page-contact-minors {
    padding: 3.125rem 1.25rem;
  }
}
.page-contact-minors__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .page-contact-minors__container {
    flex-direction: column;
    gap: 2.1875rem;
  }
}
.page-contact-minors__content {
  flex: 1;
}
@media (max-width: 767px) {
  .page-contact-minors__content {
    order: 2;
  }
}
.page-contact-minors__title {
  font-size: 2rem;
  font-weight: 400;
  color: #CA7F13;
  margin: 0 0 1.5625rem 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-contact-minors__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}
.page-contact-minors__text p {
  font-size: 0.875rem;
  color: #CA7F13;
  line-height: 2;
  margin: 0 0 0.8em 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-minors__text p {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.page-contact-minors__text p:last-child {
  margin-bottom: 0;
}
.page-contact-minors__download-box {
  background-color: #d4cebe;
  padding: 1.875rem 1.5625rem;
  text-align: center;
  min-width: 18.75rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-minors__download-box {
    min-width: auto;
    padding: 1.875rem 1.5625rem;
    order: 1;
    align-self: center;
  }
}
.page-contact-minors__download-label {
  font-size: 1rem;
  color: #CA7F13;
  margin: 0 0 1.25rem 0;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-contact-minors__download-label {
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
  }
}
.page-contact-minors__download {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.8125rem;
  background-color: #a4a869;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 3.125rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: "Times New Roman", serif;
}
@media (max-width: 767px) {
  .page-contact-minors__download {
    font-size: 1rem;
    padding: 0.875rem 2.375rem;
    gap: 0.5rem;
  }
}
.page-contact-minors__download svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-minors__download svg {
    width: 1rem;
    height: 1rem;
  }
}
.page-contact-minors__download:hover {
  background-color: #939754;
  transform: translateY(-2px);
}
.page-contact-form {
  position: relative;
  z-index: 1;
  background-color: #EDE9E4;
  padding: 5rem 3.75rem 6.25rem;
}
@media (max-width: 767px) {
  .page-contact-form {
    padding: 3.125rem 1.25rem 3.75rem;
  }
}
.page-contact-form__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-contact-form__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.875rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-contact-form__header {
    flex-direction: column;
    gap: 1.875rem;
  }
}
@media (max-width: 767px) {
  .page-contact-form__header {
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.page-contact-form__header-left {
  flex: 1;
  max-width: 37.5rem;
  min-width: 25rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-contact-form__header-left {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .page-contact-form__header-left {
    min-width: 100%;
    max-width: 100%;
  }
}
.page-contact-form__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-contact-form__title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.875rem;
  }
}
.page-contact-form__intro {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
.page-contact-form__intro p {
  font-size: 0.75rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-contact-form__intro p {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.page-contact-form__intro p:last-child {
  margin-bottom: 0;
}
.page-contact-form__steps {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-form__steps {
    gap: 1.25rem;
    width: 100%;
    justify-content: space-between;
  }
}
.page-contact-form__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  position: relative;
  padding: 0.875rem 0;
  min-width: 8.75rem;
  padding: 3.75rem 0;
}
@media (max-width: 767px) {
  .page-contact-form__step {
    gap: 0.625rem;
    padding: 0.625rem 0;
    flex: 1;
    min-width: auto;
  }
}
.page-contact-form__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d4d0ca;
  transition: background-color 0.3s ease;
}
.page-contact-form__step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d4d0ca;
  transition: background-color 0.3s ease;
}
.page-contact-form__step.is-active::before, .page-contact-form__step.is-active::after {
  background-color: #CA7F13;
}
.page-contact-form__step.is-active .page-contact-form__step-number,
.page-contact-form__step.is-active .page-contact-form__step-text {
  color: #CA7F13;
}
.page-contact-form__step:not(.is-active) .page-contact-form__step-number,
.page-contact-form__step:not(.is-active) .page-contact-form__step-text {
  color: #808080;
}
.page-contact-form__step-number {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-contact-form__step-number {
    font-size: 0.625rem;
  }
}
.page-contact-form__step-text {
  font-size: 1.5625rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-contact-form__step-text {
    font-size: 0.8125rem;
  }
}
.page-contact-form__cf7-wrapper {
  padding: 3.125rem 2.5rem;
}
@media (max-width: 767px) {
  .page-contact-form__cf7-wrapper {
    padding: 1.875rem 1.25rem;
  }
}
.page-contact-form .page-contact-thanks {
  padding: 5rem 2.5rem;
  text-align: left;
  border-radius: 0.625rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks {
    padding: 3.75rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__message {
    margin-bottom: 2.8125rem;
  }
}
.page-contact-form .page-contact-thanks__title {
  font-family: "Marcellus", serif;
  font-size: 2.1875rem;
  color: #CA7F13;
  font-weight: 300;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    white-space: normal;
  }
}
.page-contact-form .page-contact-thanks__text {
  font-size: 0.9375rem;
  color: #CA7F13;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__text {
    font-size: 0.875rem;
    line-height: 1.9;
    text-align: center;
  }
}
.page-contact-form .page-contact-thanks__button {
  display: block;
  padding-left: calc(50% - 10rem);
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__button {
    padding-left: calc(50% - 8.125rem);
  }
}
.page-contact-form .page-contact-thanks__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 0.9375rem 3.75rem;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 1.875rem;
  border: 2px solid transparent;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__link {
    padding: 0.75rem 3.125rem;
    font-size: 0.8125rem;
  }
}
.page-contact-form .page-contact-thanks__link:hover {
  background-color: #7a8229;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-contact-confirm {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  padding: 3.125rem 2.5rem;
}
@media (max-width: 767px) {
  .page-contact-confirm {
    padding: 1.875rem 1.25rem;
  }
}
.page-contact-confirm__field {
  border-bottom: 1px solid #e8e4df;
  padding: 1.5625rem 0;
}
@media (max-width: 767px) {
  .page-contact-confirm__field {
    padding: 1.25rem 0;
  }
}
.page-contact-confirm__field:first-child {
  padding-top: 0;
}
.page-contact-confirm__field:last-of-type {
  border-bottom: none;
}
.page-contact-confirm__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
}
@media (max-width: 767px) {
  .page-contact-confirm__label {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
}
.page-contact-confirm__label-text {
  font-size: 0.875rem;
  color: #5a4a3a;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-confirm__label-text {
    font-size: 0.8125rem;
  }
}
.page-contact-confirm__required, .page-contact-confirm__optional {
  font-size: 0.6875rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 0.1875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-confirm__required, .page-contact-confirm__optional {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
}
.page-contact-confirm__required {
  background-color: #a8956a;
  color: #fff;
}
.page-contact-confirm__optional {
  background-color: #d4d0ca;
  color: #7a6a5a;
}
.page-contact-confirm__value {
  font-size: 0.9375rem;
  color: #5a4a3a;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-left: 0.625rem;
}
@media (max-width: 767px) {
  .page-contact-confirm__value {
    font-size: 0.875rem;
    line-height: 1.7;
    padding-left: 0;
  }
}
.page-contact-confirm__buttons {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media (max-width: 767px) {
  .page-contact-confirm__buttons {
    flex-direction: column;
    gap: 0.9375rem;
    margin-top: 2.5rem;
  }
}
.page-contact-confirm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 3.75rem;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 1.875rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .page-contact-confirm__button {
    padding: 0.75rem 2.5rem;
    font-size: 0.875rem;
    width: 100%;
  }
}
.page-contact-confirm__button--back {
  background-color: #d4d0ca;
  color: #5a4a3a;
}
.page-contact-confirm__button--back:hover {
  background-color: #c4c0bc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-contact-confirm__button--submit {
  background-color: #949E33;
  color: #fff;
}
.page-contact-confirm__button--submit:hover {
  background-color: #7a8229;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-contact-form__field {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.1875rem;
}
@media (max-width: 768px) {
  .page-contact-form__field {
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
  }
}
.page-contact-form__tag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 0.75rem;
}
@media (max-width: 768px) {
  .page-contact-form__tag {
    padding-top: 0;
  }
}
.page-contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-color: #54372d;
  color: #fff;
  white-space: nowrap;
  margin-right: 0.625rem;
  border-radius: 0.9375rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  width: 60px;
}
@media (max-width: 768px) {
  .page-contact-form__required {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
}
.page-contact-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-color: #d4d0ca;
  color: #333333;
  white-space: nowrap;
  margin-right: 0.625rem;
  border-radius: 0.9375rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  width: 60px;
}
@media (max-width: 768px) {
  .page-contact-form__optional {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
}
.page-contact-form__label {
  display: flex;
  align-items: center;
  min-width: 12.5rem;
  flex-shrink: 0;
  padding-top: 0.75rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 768px) {
  .page-contact-form__label {
    min-width: auto;
    width: 100%;
    padding-top: 0;
  }
}
.page-contact-form__label label {
  font-size: 1rem;
  color: #5a4a3a;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.page-contact-form__label label:hover, .page-contact-form__label label:focus {
  color: #CA7F13;
}
@media (max-width: 768px) {
  .page-contact-form__label label {
    font-size: 0.8125rem;
  }
}
.page-contact-form__input-wrapper {
  max-width: 620px;
  flex: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .page-contact-form__input-wrapper {
    width: 100%;
  }
}
.page-contact-form__input {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: none;
  background-color: #fff;
  font-size: 0.875rem;
  color: #5a4a3a;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  border-radius: 0;
}
.page-contact-form__input[type=date] {
  color: transparent;
}
@media (max-width: 768px) {
  .page-contact-form__input {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.page-contact-form__input:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
  color: #5a4a3a;
}
.page-contact-form__input:hover {
  background-color: #fff;
}
.page-contact-form__input::-moz-placeholder {
  color: #ccc8c3;
  opacity: 0.6;
}
.page-contact-form__input::placeholder {
  color: #ccc8c3;
  opacity: 0.6;
}
.page-contact-form__input[type=date] {
  position: relative;
  padding-right: 4.375rem;
  color: transparent;
  background-color: #fff;
  border: none !important;
  box-shadow: none !important;
}
.page-contact-form__input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 3.75rem;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.page-contact-form__input[type=date]::-moz-calendar-picker-indicator {
  opacity: 0;
}
.page-contact-form__input[type=date]::-webkit-datetime-edit-text, .page-contact-form__input[type=date]::-webkit-datetime-edit-month-field, .page-contact-form__input[type=date]::-webkit-datetime-edit-day-field, .page-contact-form__input[type=date]::-webkit-datetime-edit-year-field {
  color: transparent;
}
.page-contact-form__input[type=date].has-value::-webkit-datetime-edit-text, .page-contact-form__input[type=date].has-value::-webkit-datetime-edit-month-field, .page-contact-form__input[type=date].has-value::-webkit-datetime-edit-day-field, .page-contact-form__input[type=date].has-value::-webkit-datetime-edit-year-field {
  color: #5a4a3a;
}
.page-contact-form__input[type=date]:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
}
.page-contact-form__input[type=date]:hover {
  border: none !important;
  background-color: #fff;
}
.page-contact-form__input[type=date]:valid {
  background-color: #fff;
}
.page-contact-form__input[type=date]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 3.125rem;
  background-color: #CA7F13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='6' width='16' height='15' rx='2' stroke='white' stroke-width='2' fill='white'/%3E%3Cline x1='4' y1='10' x2='20' y2='10' stroke='white' stroke-width='2'/%3E%3Cline x1='8' y1='4' x2='8' y2='7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='16' y1='4' x2='16' y2='7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='13' r='1.2' fill='%23c9a668'/%3E%3Ccircle cx='12' cy='13' r='1.2' fill='%23c9a668'/%3E%3Ccircle cx='16' cy='13' r='1.2' fill='%23c9a668'/%3E%3Ccircle cx='8' cy='17' r='1.2' fill='%23c9a668'/%3E%3Ccircle cx='12' cy='17' r='1.2' fill='%23c9a668'/%3E%3Ccircle cx='16' cy='17' r='1.2' fill='%23c9a668'/%3E%3C/svg%3E");
  background-size: 1.75rem 1.75rem;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-contact-form__input[type=date]::after {
    width: 2.8125rem;
    height: 2.8125rem;
    background-size: 1.5rem 1.5rem;
  }
}
.page-contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: none;
  background-color: #fff;
  font-size: 0.875rem;
  color: #5a4a3a;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  resize: vertical;
  min-height: 12.5rem;
  border-radius: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 768px) {
  .page-contact-form__textarea {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    min-height: 6.25rem;
  }
}
.page-contact-form__textarea:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
  color: #5a4a3a;
}
.page-contact-form__textarea:hover {
  background-color: #fff;
}
.page-contact-form__textarea::-moz-placeholder {
  color: #ccc8c3;
  opacity: 0.6;
}
.page-contact-form__textarea::placeholder {
  color: #ccc8c3;
  opacity: 0.6;
}
.page-contact-form .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer !important;
  width: 1.875rem !important;
  height: 1.875rem !important;
  border: none !important;
  background-color: #fff !important;
  border-radius: 0;
  margin-right: 0.625rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-list-item input[type=checkbox] {
    width: 1.875rem !important;
    height: 1.875rem !important;
  }
}
.page-contact-form .wpcf7-list-item input[type=checkbox]:checked {
  background-color: #a8956a !important;
  border: none !important;
}
.page-contact-form .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M5.5 12L0 6.5L1.4 5.1L5.5 9.2L14.6 0.1L16 1.5L5.5 12Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.page-contact-form .wpcf7-list-item input[type=checkbox]:hover {
  background-color: rgba(168, 149, 106, 0.1) !important;
  border-color: #a8956a !important;
}
.page-contact-form__checkbox-inquiry {
  display: flex !important;
  gap: 0.625rem;
  width: 100%;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-inquiry {
    width: 100%;
    flex-direction: column;
  }
}
.page-contact-form__checkbox-inquiry.wpcf7-checkbox {
  display: flex !important;
  gap: 0.625rem;
  width: 100%;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item {
  margin: 0 !important;
  display: flex !important;
  min-width: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-inquiry .wpcf7-list-item {
    width: 100%;
  }
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item:first-child:has(.wpcf7-list-item-label:contains("サービス")) {
  flex: 1.5;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item label {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.9375rem;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  position: relative;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item label:hover {
  background-color: rgba(168, 149, 106, 0.05) !important;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item input[type=checkbox] {
  flex-shrink: 0;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item-label {
  font-size: 0.875rem;
  color: #5a4a3a;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-inquiry .wpcf7-list-item-label {
    font-size: 0.8125rem;
  }
}
.page-contact-form__time-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .page-contact-form__time-grid {
    gap: 0.625rem;
  }
}
.page-contact-form__time-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .page-contact-form__time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.page-contact-form__time-row p {
  margin: 0;
  display: flex;
  gap: 0.75rem;
  flex: 1;
}
.page-contact-form__time-row p br {
  display: none;
}
@media (max-width: 768px) {
  .page-contact-form__time-row p {
    width: 100%;
  }
}
.page-contact-form__time-label {
  font-size: 0.875rem;
  color: #5a4a3a;
  font-weight: 400;
  min-width: 3.75rem;
  text-align: left;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-contact-form__time-label {
    font-size: 0.8125rem;
    min-width: auto;
  }
}
.page-contact-form__checkbox-time {
  display: flex !important;
  gap: 1.5625rem;
  flex: 1;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time {
    width: 100%;
    flex-direction: column;
  }
}
.page-contact-form__checkbox-time.wpcf7-checkbox {
  display: flex !important;
  gap: 1.5625rem;
  flex: 1;
}
.page-contact-form__checkbox-time .wpcf7-list-item {
  margin: 0 !important;
  flex: 1;
  display: flex !important;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time .wpcf7-list-item {
    width: 100%;
  }
}
.page-contact-form__checkbox-time .wpcf7-list-item label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 0.9375rem;
  background-color: #fff !important;
  border: 1px solid #d4d0ca !important;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time .wpcf7-list-item label {
    padding: 0.625rem 0.75rem;
  }
}
.page-contact-form__checkbox-time .wpcf7-list-item input[type=checkbox] {
  cursor: pointer;
}
.page-contact-form__checkbox-time .wpcf7-list-item label:has(input[type=checkbox]:checked) {
  background-color: #a8956a !important;
  border-color: #a8956a !important;
}
.page-contact-form__checkbox-time .wpcf7-list-item label:hover {
  border-color: #a8956a !important;
  background-color: rgba(168, 149, 106, 0.1) !important;
}
.page-contact-form__checkbox-time .wpcf7-list-item-label {
  font-size: 0.875rem !important;
  color: #5a4a3a !important;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: block !important;
  padding-left: 0.625rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time .wpcf7-list-item-label {
    font-size: 0.8125rem !important;
  }
}
.page-contact-form__radio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .page-contact-form__radio {
    gap: 0.625rem;
  }
}
.page-contact-form__radio .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item {
    gap: 0.375rem;
  }
}
.page-contact-form__radio .wpcf7-list-item label {
  cursor: pointer;
  font-size: 0.875rem;
  color: #5a4a3a;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item label {
    font-size: 0.8125rem;
  }
}
.page-contact-form__radio .wpcf7-list-item input[type=radio] {
  margin: 0;
  cursor: pointer;
  width: 1.125rem;
  height: 1.125rem;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item input[type=radio] {
    width: 1rem;
    height: 1rem;
  }
}
.page-contact-form__note {
  margin-top: 0.9375rem;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 768px) {
  .page-contact-form__note {
    margin-top: 1.5625rem;
    padding: 0.75rem 0.9375rem;
  }
}
.page-contact-form__note p {
  margin: 0;
  font-size: 0.625rem;
  color: #333333;
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-contact-form__note p {
    font-size: 0.6875rem;
  }
}
.page-contact-form__submit {
  text-align: center;
}
@media (max-width: 768px) {
  .page-contact-form__submit {
    margin-top: 3.75rem;
    padding-top: 1.875rem;
  }
}
.page-contact-form__submit-btn {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 0.625rem 3.75rem;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 1.875rem;
  cursor: pointer;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
@media (max-width: 880px) {
  .page-contact-form__submit-btn {
    padding: 0.75rem 3.75rem;
    font-size: 0.875rem;
    width: auto;
  }
}
.page-contact-form__submit-btn:hover {
  background-color: #7a8229;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.page-contact-form select.wpcf7-select {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: none;
  background-color: #fff;
  font-size: 0.875rem;
  color: #5a4a3a;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 768px) {
  .page-contact-form select.wpcf7-select {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.page-contact-form select.wpcf7-select:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
  color: #5a4a3a;
}
.page-contact-form select.wpcf7-select:hover {
  background-color: #fff;
}
.page-contact-form input[name=your-request],
.page-contact-form input[name=your-preferred-date-1],
.page-contact-form input[name=your-preferred-date-2] {
  max-width: 18.75rem;
}
@media (max-width: 768px) {
  .page-contact-form input[name=your-request],
  .page-contact-form input[name=your-preferred-date-1],
  .page-contact-form input[name=your-preferred-date-2] {
    max-width: 100%;
  }
}
.page-contact-form {
  /*.wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
  }
  */
}
.page-contact-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.75rem;
  margin-top: 0.375rem;
  display: block;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-not-valid-tip {
    font-size: 0.6875rem;
  }
}
.page-contact-form .wpcf7-response-output {
  border: 2px solid;
  margin: 1.25rem 0;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-response-output {
    font-size: 0.8125rem;
    padding: 0.75rem 0.9375rem;
  }
}
.page-contact-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #dc3545;
  background-color: #f8d7da;
  color: #721c24;
}
.page-contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #949E33;
  background-color: #d4edda;
  color: #155724;
}
.page-contact-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: #dc3545;
  background-color: #f8d7da;
  color: #721c24;
}
.page-contact-form .wpcf7-spinner {
  visibility: visible;
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(148, 158, 51, 0.3);
  border-radius: 50%;
  border-top-color: #949E33;
  animation: wpcf7-spin 0.8s linear infinite;
  margin-left: 0.625rem;
  vertical-align: middle;
}
@keyframes wpcf7-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-template-page-contact .page-contact-form .wpcf7-response-output,
.page-template-page-contact-confirm .page-contact-form .wpcf7-response-output,
.page-template-page-contact-thanks .page-contact-form .wpcf7-response-output {
  display: none !important;
}

/* 読み取り専用フィールドのスタイル */
.page-contact-form__input--readonly,
.page-contact-form__textarea--readonly {
  border: none !important;
  background-color: transparent !important;
  pointer-events: none;
}

.page-contact-form__input--readonly::-moz-placeholder, .page-contact-form__textarea--readonly::-moz-placeholder {
  color: inherit !important;
  opacity: 1 !important;
}

.page-contact-form__input--readonly::placeholder,
.page-contact-form__textarea--readonly::placeholder {
  color: inherit !important;
  opacity: 1 !important;
}

.page-contact-form__checkbox--readonly {
  pointer-events: none;
}

.page-contact-form__inquiry-row {
  margin-bottom: 0.625rem;
}
.page-contact-form__inquiry-row .page-contact-form__checkbox-inquiry {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 100%;
}
.page-contact-form__inquiry-row .page-contact-form__checkbox-inquiry .wpcf7-list-item {
  width: 48%;
  margin: 0 0 0.625rem 0;
}
@media (max-width: 768px) {
  .page-contact-form__inquiry-row .page-contact-form__checkbox-inquiry .wpcf7-list-item {
    width: 100%;
  }
}
.page-contact-form__inquiry-row .page-contact-form__checkbox-inquiry .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.page-contact-form__inquiry-row .page-contact-form__checkbox-inquiry .wpcf7-list-item label input[type=checkbox] {
  margin-right: 0.5rem;
}

body .page-contact-form input[type=date].page-contact-form__input,
body .wpcf7-form input[type=date].wpcf7-date {
  color: transparent !important;
}
body .page-contact-form input[type=date].page-contact-form__input::-moz-placeholder, body .wpcf7-form input[type=date].wpcf7-date::-moz-placeholder {
  color: transparent !important;
}
body .page-contact-form input[type=date].page-contact-form__input::placeholder,
body .wpcf7-form input[type=date].wpcf7-date::placeholder {
  color: transparent !important;
}
body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit {
  color: transparent !important;
  opacity: 0 !important; /* 透明度も追加 */
}
body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit-fields-wrapper, body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit-text, body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit-month-field, body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit-day-field, body .page-contact-form input[type=date].page-contact-form__input::-webkit-datetime-edit-year-field,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit-fields-wrapper,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit-text,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit-month-field,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit-day-field,
body .wpcf7-form input[type=date].wpcf7-date::-webkit-datetime-edit-year-field {
  color: transparent !important;
}
body .page-contact-form input[type=date].page-contact-form__input.has-value,
body .wpcf7-form input[type=date].wpcf7-date.has-value {
  color: #5a4a3a !important;
}
body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit {
  color: #5a4a3a !important;
  opacity: 1 !important;
}
body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit-fields-wrapper, body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit-text, body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit-month-field, body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit-day-field, body .page-contact-form input[type=date].page-contact-form__input.has-value::-webkit-datetime-edit-year-field,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit-fields-wrapper,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit-text,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit-month-field,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit-day-field,
body .wpcf7-form input[type=date].wpcf7-date.has-value::-webkit-datetime-edit-year-field {
  color: #5a4a3a !important;
}

.feature__container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .feature__container {
    min-height: auto;
    padding: 1.875rem 0;
  }
}
@media (max-width: 320px) {
  .feature__container {
    padding: 2rem 0;
  }
}
@media (min-width: 1920px) {
  .feature__container {
    min-height: 120vh;
    padding: 6rem 0;
  }
}

.feature__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 28.125rem 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3.75rem;
  border-radius: 12px;
  width: 100%;
  max-width: 75rem;
}
@media (max-width: 767px) {
  .feature__content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* 左：手順リスト */
.feature_step_list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem 0;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .feature_step_list {
    display: none;
  }
}

.feature_step_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.5s ease;
}
.feature_step_item.active {
  opacity: 1;
}
.feature_step_item:hover {
  opacity: 0.7;
}

.feature_step_number {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #CA7F13;
  flex-shrink: 0;
  min-width: 1.875rem;
}

.feature_step_text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #CA7F13;
  line-height: 1.6;
  padding-top: 0.3125rem;
}
@media (max-width: 767px) {
  .feature_step_text {
    font-size: 0.875rem;
  }
}

/* 中央：画像セクション */
.feature_image_section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature_title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Marcellus", serif;
  font-size: 5.625rem;
  font-weight: 300;
  color: #CA7F13;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .feature_title {
  opacity: 1;
}
.feature_title::before {
  content: "FEATURE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 5.625rem;
  font-weight: 300;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .feature_title::before {
    font-size: 6.25rem;
  }
}
@media (max-width: 767px) {
  .feature_title {
    font-size: 3.75rem;
    margin-bottom: 1rem;
  }
}

.feature_image_container {
  width: 100%;
  height: auto;
  aspect-ratio: 45/63;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media (max-width: 767px) {
  .feature_image_container {
    height: 18.75rem;
  }
}
.feature_image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.feature_image_container img.active {
  opacity: 1;
  z-index: 1;
}

/* 右：テキスト（フェード切替） */
.feature_text_container {
  position: relative;
  min-height: 31.25rem;
  padding: 1.5rem 0;
  margin-top: 5rem;
  color: #CA7F13;
  text-align: center;
}
@media (max-width: 767px) {
  .feature_text_container {
    min-height: 25rem;
    padding: 1rem 0;
  }
}
.feature_text_container > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.feature_text_container > div.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.feature_text_container > div:not(.active) {
  pointer-events: none;
}

.feature_text_divider {
  width: 10%;
  height: 2px;
  background-color: #CA7F13;
  margin: 0 auto;
}

.feature_text_heading {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.price {
  background-color: #F9F8F6;
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .price {
    padding: 4.375rem 0;
  }
}
.price__container {
  max-width: 75rem;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .price__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.price__header {
  text-align: left;
  margin-bottom: 4.375rem;
  position: relative;
}
@media (max-width: 767px) {
  .price__header {
    margin-bottom: 3.125rem;
  }
}
.price__title {
  font-family: "Marcellus", serif;
  font-size: 5.625rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.3125rem 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .price__title {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .price__title {
    font-size: 3.75rem;
  }
}
.price__title::before {
  content: "Menu";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 11.25rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .price__title::before {
    font-size: 6.25rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.price__subtitle {
  font-size: 0.8125rem;
  color: #CA7F13;
  margin: 0;
  padding-left: 0.1875rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.price .page-price-menu__container {
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 767px) {
  .price .page-price-menu__container {
    max-width: 100%;
    margin: 0 auto;
  }
}
.price__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  position: relative;
}
@media (max-width: 767px) {
  .price__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.price__grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #CA7F13;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .price__grid::before {
    display: none;
  }
}
.price__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 33.333%;
  height: 1px;
  background-color: #CA7F13;
  box-shadow: 0 100% 0 #CA7F13;
}
@media (max-width: 767px) {
  .price__grid::after {
    display: none;
  }
}
.price__category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3.75rem 3.125rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  min-height: 12.5rem;
}
@media (max-width: 767px) {
  .price__category {
    padding: 2.5rem 1.875rem;
    min-height: 9.375rem;
    border-bottom: 1px solid #CA7F13;
  }
  .price__category:last-child {
    border-bottom: none;
  }
}
.price__category:hover {
  background-color: rgba(202, 127, 19, 0.08);
}
.price__category-title {
  font-family: "Marcellus", serif;
  font-size: 3.75rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.5rem 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .price__category-title {
    font-size: 3rem;
  }
}
.price__category-subtitle {
  font-size: 0.875rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.price__category-arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.125rem;
  color: #CA7F13;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 767px) {
  .price__category-arrow {
    right: 1.875rem;
    font-size: 2.5rem;
  }
}

.faq {
  background-color: #F9F8F6;
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .faq {
    padding: 4.375rem 0;
  }
}
.faq__container {
  max-width: 75rem;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .faq__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.faq__header {
  text-align: left;
  margin-bottom: 4.375rem;
  position: relative;
}
@media (max-width: 767px) {
  .faq__header {
    margin-bottom: 3.125rem;
  }
}
.faq__title {
  font-family: "Marcellus", serif;
  font-size: 5.625rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.3125rem 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.is-visible .faq__title {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 3.75rem;
  }
}
.faq__title::before {
  content: "FAQ";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 11.25rem;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .faq__title::before {
    font-size: 6.25rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.faq__subtitle {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #CA7F13;
  margin: 0;
  padding-left: 0.1875rem;
  letter-spacing: 0.15em;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.faq__item {
  background-color: #D4CEBE;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item.is-active .faq__answer {
  max-height: 31.25rem;
  padding: 1.5625rem 1.875rem 1.875rem 1.875rem;
}
.faq__item.is-active .faq__answer-content {
  opacity: 1;
  transform: translateY(0);
}
.faq__item.is-active .faq__toggle-icon {
  content: "▲";
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  padding: 1.5625rem 1.875rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq__question-text {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #CA7F13;
  line-height: 1.7;
  flex: 1;
}
.faq__q-label {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #CA7F13;
  flex-shrink: 0;
  margin-top: -0.125rem;
}
.faq__toggle-icon {
  font-size: 1rem;
  color: #54372D;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 0.125rem;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  cursor: pointer;
}
.faq__answer:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.faq__answer-content {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.faq__answer-content p {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #CA7F13;
  margin: 0;
  flex: 1;
}
.faq__a-label {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #CA7F13;
  flex-shrink: 0;
  margin-top: -0.125rem;
}

.reserve {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .reserve {
    min-height: 25rem;
  }
}
.reserve__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
}
.reserve__link:hover .reserve__overlay {
  background-color: rgba(0, 0, 0, 0.45);
}
.reserve__link:hover .reserve__title,
.reserve__link:hover .reserve__subtitle {
  transform: translateY(-5px);
}
.reserve__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: background-color 0.3s ease;
}
.reserve__container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .reserve__container {
    padding: 0 1.25rem;
  }
}
.reserve__title {
  font-family: "Marcellus", serif;
  font-size: 7.5rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 1.25rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.8s ease;
  opacity: 0;
}
.is-visible .reserve__title {
  opacity: 1;
}
@media (max-width: 767px) {
  .reserve__title {
    font-size: 4.5rem;
    margin-bottom: 0.9375rem;
  }
}
.reserve__subtitle {
  font-size: 1rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.25em;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.8s ease 0.1s;
  opacity: 0;
}
.is-visible .reserve__subtitle {
  opacity: 1;
}
@media (max-width: 767px) {
  .reserve__subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
  }
}

.salons-sns {
  background-color: #F9F8F6;
  padding: 6.25rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .salons-sns {
    padding: 4.375rem 0;
  }
}
.salons-sns__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .salons-sns__container {
    padding: 0 1.25rem;
  }
}
.salons-sns__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media (max-width: 767px) {
  .salons-sns__layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.salons-sns__layout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #CA7F13;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .salons-sns__layout::before {
    display: none;
  }
}
.salons-sns__layout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.125rem;
  height: 1px;
  background-color: #CA7F13;
}
@media (max-width: 767px) {
  .salons-sns__layout::after {
    display: none;
  }
}

.salons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .salons {
    padding: 0 1.25rem 5rem;
  }
}
@media (max-width: 767px) {
  .salons::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    height: 1px;
    background-color: #CA7F13;
  }
}
.salons a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.salons a:hover {
  transform: translateY(-5px);
}
.salons a:hover .salons__title {
  color: rgb(164.7076923077, 103.5538461538, 15.4923076923);
}
.salons__title {
  font-family: "Marcellus", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.9375rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .salons__title {
    font-size: 3.5rem;
  }
}
.salons__subtitle {
  font-size: 0.875rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .sns {
    padding: 0 1.25rem 5rem;
  }
}
@media (max-width: 767px) {
  .sns::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    height: 1px;
    background-color: #CA7F13;
  }
}
.sns a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.sns a:hover {
  transform: translateY(-5px);
}
.sns a:hover .sns__title {
  color: rgb(164.7076923077, 103.5538461538, 15.4923076923);
}
.sns__title {
  font-family: "Marcellus", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.9375rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .sns__title {
    font-size: 3.5rem;
  }
}
.sns__subtitle {
  font-size: 0.875rem;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F9F8F6 0%, #F9F8F6 100%);
  border: 2px dashed #D4CEBE;
  border-radius: 12px;
  color: #666666;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
.placeholder-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(202, 127, 19, 0.1) 10px, rgba(202, 127, 19, 0.1) 20px);
}
.placeholder-image span {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  text-align: center;
}
.placeholder-image.concept-placeholder, .placeholder-image.feature-placeholder {
  height: 31.25rem;
}
@media (max-width: 767px) {
  .placeholder-image.concept-placeholder, .placeholder-image.feature-placeholder {
    height: 18.75rem;
  }
}

.header__logo-text,
.footer__logo-text,
.hero__logo-text {
  font-family: "Marcellus", serif;
  color: #54372D;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.header__logo-text {
  font-size: 1.75rem;
}

.footer__logo-text {
  font-size: 1.125rem;
  text-align: left;
}

.hero__logo-text {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #CA7F13 0%, #949E33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .hero__logo-text {
    font-size: 1.5rem;
  }
}

.page-privacy-policy {
  background-color: #F9F8F6;
}
.page-privacy-policy-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-privacy-policy-hero {
    padding: 5rem 1.25rem;
  }
}
.page-privacy-policy-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-privacy-policy-hero__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-privacy-policy-hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
}
.page-privacy-policy-breadcrumb {
  background-color: #D4CEBE;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .page-privacy-policy-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.page-privacy-policy-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-privacy-policy-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.page-privacy-policy-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-privacy-policy-breadcrumb__link:hover {
  opacity: 0.7;
}
.page-privacy-policy-breadcrumb__separator {
  color: #CA7F13;
  font-weight: 300;
}
.page-privacy-policy-breadcrumb__current {
  color: #CA7F13;
  font-weight: 400;
}
.page-privacy-policy-content {
  background-color: #D4CEBE;
  padding: 5rem 3.75rem 6.25rem;
}
@media (max-width: 767px) {
  .page-privacy-policy-content {
    padding: 3.75rem 1.875rem 5rem;
  }
}
.page-privacy-policy-content__container {
  max-width: 56.25rem;
  margin: 0 auto;
}
.page-privacy-policy-content__inner {
  background-color: #fff;
  padding: 3.75rem 5rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__inner {
    padding: 2.5rem 1.875rem;
  }
}
.page-privacy-policy-content__section {
  margin-bottom: 3.125rem;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__section {
    margin-bottom: 2.5rem;
  }
}
.page-privacy-policy-content__section:last-child {
  margin-bottom: 0;
}
.page-privacy-policy-content__heading {
  font-size: 1.25rem;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(202, 127, 19, 0.2);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__heading {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
.page-privacy-policy-content__text {
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__text {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.page-privacy-policy-content__text:last-child {
  margin-bottom: 0;
}
.page-privacy-policy-content__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
}
.page-privacy-policy-content__list li {
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.625rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__list li {
    font-size: 0.8125rem;
    line-height: 1.9;
    padding-left: 0.9375rem;
  }
}
.page-privacy-policy-content__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #CA7F13;
}
.page-privacy-policy-content__list li:last-child {
  margin-bottom: 0;
}
.page-privacy-policy-content__contact {
  background-color: #f9f8f6;
  padding: 1.875rem;
  margin-top: 1.25rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__contact {
    padding: 1.25rem;
  }
}
.page-privacy-policy-content__contact p {
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__contact p {
    font-size: 0.8125rem;
  }
}
.page-privacy-policy-content__date {
  margin-top: 3.75rem;
  text-align: right;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__date {
    margin-top: 2.5rem;
  }
}
.page-privacy-policy-content__date p {
  font-size: 0.8125rem;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__date p {
    font-size: 0.75rem;
  }
}

.page-sitemap {
  background-color: #F9F8F6;
}
.page-sitemap-hero {
  background-color: #f5f0eb;
  padding: 7.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page-sitemap-hero {
    padding: 5rem 1.25rem;
  }
}
.page-sitemap-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.page-sitemap-hero__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-sitemap-hero__title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
}
.page-sitemap-breadcrumb {
  background-color: #D4CEBE;
  padding: 1.875rem 3.75rem;
}
@media (max-width: 767px) {
  .page-sitemap-breadcrumb {
    padding: 1.25rem 1.25rem;
  }
}
.page-sitemap-breadcrumb__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-sitemap-breadcrumb__container {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.page-sitemap-breadcrumb__link {
  color: #CA7F13;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-sitemap-breadcrumb__link:hover {
  opacity: 0.7;
}
.page-sitemap-breadcrumb__separator {
  color: #CA7F13;
  font-weight: 300;
}
.page-sitemap-breadcrumb__current {
  color: #CA7F13;
  font-weight: 400;
}
.page-sitemap-content {
  background-color: #D4CEBE;
  padding: 5rem 3.75rem 6.25rem;
}
@media (max-width: 767px) {
  .page-sitemap-content {
    padding: 3.75rem 1.875rem 5rem;
  }
}
.page-sitemap-content__container {
  max-width: 56.25rem;
  margin: 0 auto;
}
.page-sitemap-content__inner {
  background-color: #fff;
  padding: 3.75rem 5rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-sitemap-content__inner {
    padding: 2.5rem 1.875rem;
  }
}
.page-sitemap-content__section {
  margin-bottom: 3.125rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(202, 127, 19, 0.1);
}
@media (max-width: 767px) {
  .page-sitemap-content__section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.875rem;
  }
}
.page-sitemap-content__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.page-sitemap-content__heading {
  font-size: 1.5rem;
  margin: 0 0 0.9375rem 0;
}
@media (max-width: 767px) {
  .page-sitemap-content__heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.page-sitemap-content__main-link {
  font-family: "Marcellus", serif;
  color: #CA7F13;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.page-sitemap-content__main-link:hover {
  opacity: 0.7;
}
.page-sitemap-content__description {
  font-size: 0.875rem;
  color: #333333;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-sitemap-content__description {
    font-size: 0.8125rem;
    margin-bottom: 0.9375rem;
  }
}
.page-sitemap-content__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .page-sitemap-content__sub-list {
    gap: 0.5rem;
  }
}
.page-sitemap-content__sub-list li {
  padding-left: 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-sitemap-content__sub-list li {
    padding-left: 0.9375rem;
  }
}
.page-sitemap-content__sub-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #CA7F13;
}
.page-sitemap-content__sub-link {
  font-size: 0.875rem;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .page-sitemap-content__sub-link {
    font-size: 0.8125rem;
  }
}
.page-sitemap-content__sub-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.page-404 {
  min-height: 100vh;
  background-color: #F9F8F6;
}

.page-404-hero {
  background-color: #F9F8F6;
  padding: 7.5rem 0 3.75rem;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .page-404-hero {
    padding: 5rem 0 2.5rem;
  }
}
.page-404-hero__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .page-404-hero__container {
    padding: 0 1.25rem;
  }
}
.page-404-hero__title {
  font-family: "Marcellus", serif;
  font-size: 11.25rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-404-hero__title {
    font-size: 6.25rem;
  }
}

.page-404-content {
  background-color: #F9F8F6;
  padding: 5rem 0 7.5rem;
}
@media (max-width: 767px) {
  .page-404-content {
    padding: 3.75rem 0 5rem;
  }
}
.page-404-content__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .page-404-content__container {
    padding: 0 1.25rem;
  }
}
.page-404-content__message {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .page-404-content__message {
    margin-bottom: 3.75rem;
  }
}
.page-404-content__title {
  font-size: 1.75rem;
  color: #CA7F13;
  margin: 0 0 1.875rem 0;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-404-content__title {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
  }
}
.page-404-content__text {
  font-size: 1rem;
  color: #333333;
  margin: 0 0 1.25rem 0;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-404-content__text {
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .page-404-content__text br {
    display: none;
  }
}
.page-404-content__text:last-child {
  margin-bottom: 0;
}

.page-404-nav {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .page-404-nav {
    margin-bottom: 3.75rem;
  }
}
.page-404-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (max-width: 767px) {
  .page-404-nav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.page-404-nav__item {
  background-color: #fff;
  border: 1px solid rgba(202, 127, 19, 0.2);
  padding: 2.5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .page-404-nav__item {
    padding: 1.875rem 0.9375rem;
    min-height: 8.75rem;
  }
}
.page-404-nav__item:hover {
  background-color: rgba(202, 127, 19, 0.03);
  border-color: #CA7F13;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(202, 127, 19, 0.1);
}
.page-404-nav__item-title {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 0.625rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .page-404-nav__item-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.page-404-nav__item-subtitle {
  font-size: 0.8125rem;
  color: #333333;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-404-nav__item-subtitle {
    font-size: 0.6875rem;
  }
}

.page-404-button {
  text-align: center;
}
.page-404-button__link {
  display: inline-block;
  background-color: #CA7F13;
  color: #fff;
  padding: 1.125rem 3.75rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  border: 2px solid #CA7F13;
}
@media (max-width: 767px) {
  .page-404-button__link {
    padding: 0.9375rem 2.5rem;
    font-size: 0.875rem;
  }
}
.page-404-button__link:hover {
  background-color: transparent;
  color: #CA7F13;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(202, 127, 19, 0.2);
}/*# sourceMappingURL=style.css.map */