@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;
}

html,
body {
  height: 100%;
}

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);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
}

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

main {
  flex: 1;
  overflow-x: hidden;
  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 {
  width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 999999;
  padding: 8px 16px;
  background: #333333;
  color: #FFFFFF;
  text-decoration: none;
}
.skip-link:focus {
  top: 6px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@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;
  }
}
@media (max-width: 767px) {
  .header__container {
    height: 60px;
  }
}
@media (max-width: 320px) {
  .header__container {
    height: 55px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.header__logo-image {
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .header__logo-image {
    height: 32px;
  }
}
@media (max-width: 320px) {
  .header__logo-image {
    height: 28px;
  }
}
.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: 0.875rem;
  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: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 2rem;
  position: relative;
  padding-left: 3rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.header__contact .header__reserve-btn::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  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: 8px;
  cursor: pointer;
  background-color: #949E33;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 95px;
  height: 50px;
}
@media (max-width: 767px) {
  .hamburger {
    min-width: 85px;
    height: 45px;
    padding: 10px 16px;
    gap: 6px;
  }
}
.hamburger__text {
  font-size: 12px;
  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: 11px;
  }
}
.hamburger__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
}
@media (max-width: 767px) {
  .hamburger__icon {
    gap: 3px;
  }
}
.hamburger__line {
  width: 18px;
  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: 16px;
    height: 1.5px;
  }
}
.hamburger:hover {
  background-color: rgb(119.1081339713, 127.1559808612, 41.0440191388);
  transform: scale(1.05);
}
.hamburger.is-active .hamburger__icon,
.hamburger.is-active .hamburger__text {
  opacity: 0;
  transform: scale(0);
}
.hamburger.is-active::after {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 767px) {
  .hamburger.is-active::after {
    font-size: 28px;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.3s;
}
.mobile-nav.is-active {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s 0s;
}
.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: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-nav.is-active .mobile-nav__content {
  transform: translateX(0);
}
@media (max-width: 320px) {
  .mobile-nav__content {
    padding: 70px 20px 30px;
  }
}
.mobile-nav__logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}
.mobile-nav__logo a {
  display: block;
}
.mobile-nav__logo-image {
  width: 50px;
  height: auto;
  display: block;
}
.mobile-nav__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #8B9F74;
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}
.mobile-nav__close:hover {
  background-color: rgb(113.429787234, 132.4936170213, 91.5063829787);
  transform: rotate(90deg);
}
.mobile-nav__close:active {
  transform: scale(0.95);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav__link {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  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: -5px;
  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: 22px;
    letter-spacing: 0.06em;
  }
}

.footer {
  background-color: #f9f8f6;
  padding: 80px 40px 60px;
  margin-top: auto;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 30px 50px;
  }
}
@media (max-width: 320px) {
  .footer {
    padding: 50px 20px 40px;
  }
}
@media (min-width: 1920px) {
  .footer {
    padding: 100px 40px 80px;
  }
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__container {
    gap: 35px;
  }
}
@media (max-width: 320px) {
  .footer__container {
    gap: 30px;
  }
}
@media (min-width: 1920px) {
  .footer__container {
    max-width: 1400px;
  }
}
.footer__logo {
  display: flex;
  justify-content: center;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover {
  opacity: 0.8;
}
.footer__logo-image {
  height: 60px;
  width: auto;
}
@media (max-width: 767px) {
  .footer__logo-image {
    height: 50px;
  }
}
.footer__logo-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  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: 14px;
  }
}
.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 18px;
  font-size: 16px;
  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 12px;
    font-size: 14px;
  }
}
.footer__nav-primary .footer__nav-link, .footer__nav-secondary .footer__nav-link {
  font-family: "Times New Roman", serif;
  font-size: 16px;
  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: 14px;
  }
}
.footer__nav-primary {
  margin-top: 10px;
}
.footer__nav-secondary {
  margin-top: -5px;
}
.footer__nav-secondary .footer__nav-link {
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__nav-secondary .footer__nav-link {
    font-size: 13px;
  }
}
.footer__copyright {
  font-family: "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  color: #54372D;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
    margin-top: 5px;
  }
}
.footer__page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background-color: #949E33;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(148, 158, 51, 0.3);
  z-index: 100;
}
.footer__page-top:hover {
  background-color: rgb(111.8851674641, 119.4449760766, 38.5550239234);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(148, 158, 51, 0.4);
}
.footer__page-top svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}
@media (max-width: 767px) {
  .footer__page-top {
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 25px;
  }
  .footer__page-top svg {
    width: 24px;
    height: 24px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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: 500px;
    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: 400px;
    padding: 2.5rem 0.75rem;
  }
}
@media (min-width: 1920px) {
  .hero {
    min-height: 800px;
  }
}
.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: 110px 0 130px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news {
    padding: 70px 0 90px;
  }
}
@media (max-width: 320px) {
  .news {
    padding: 50px 0 70px;
  }
}
@media (min-width: 1920px) {
  .news {
    padding: 140px 0 160px;
  }
}
.news__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news__container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 320px) {
  .news__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1920px) {
  .news__container {
    max-width: 1600px;
  }
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 75px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .news__header {
    flex-direction: column;
    gap: 35px;
    align-items: center;
    text-align: center;
    margin-bottom: 55px;
  }
}
.news__header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.news__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 90px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 5px 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .news__title {
    font-size: 60px;
  }
}
@media (max-width: 320px) {
  .news__title {
    font-size: 48px;
  }
}
@media (min-width: 1920px) {
  .news__title {
    font-size: 110px;
  }
}
.news__title::before {
  content: "News";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 180px;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news__title::before {
    font-size: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 320px) {
  .news__title::before {
    font-size: 80px;
  }
}
@media (min-width: 1920px) {
  .news__title::before {
    font-size: 220px;
  }
}
.news__subtitle {
  font-size: 13px;
  color: #CA7F13;
  margin: 0;
  padding-left: 3px;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.news__view-button {
  text-align: center;
  margin-top: 60px;
}
.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: 60px;
  }
}
.news__view-more {
  font-family: "Times New Roman", serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #949E33;
  padding: 15px 48px;
  border-radius: 50px;
  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: 13px 38px;
    font-size: 15px;
  }
}
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 767px) {
  .news__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.news__item {
  padding: 40px 0 40px 32px;
  border-left: 1px solid #CA7F13;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: transparent;
  min-height: 180px;
}
@media (max-width: 767px) {
  .news__item {
    border-left: none;
    border-bottom: 1px solid #CA7F13;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .news__item:first-child {
    border-top: 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-date {
  font-family: "Times New Roman", serif;
  font-size: 16px;
  color: #54372D;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.2;
}
.news__item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #333333;
  flex: 1;
}
.news__item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.news__item-title a:hover {
  color: #949E33;
}
.news__item-category {
  font-size: 11px;
  color: #a8a8a8;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: auto;
}

.concept {
  background-color: #F9F8F6;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .concept {
    padding: 70px 0;
  }
}
.concept__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 767px) {
  .concept__container {
    padding: 0 25px;
  }
}
.concept__top {
  position: relative;
  margin-bottom: 100px;
  min-height: 550px;
}
@media (max-width: 767px) {
  .concept__top {
    margin-bottom: 60px;
    min-height: 300px;
  }
}
.concept__header {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  width: auto;
}
@media (max-width: 767px) {
  .concept__header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    max-width: 100%;
    margin-bottom: 30px;
    z-index: 1;
  }
}
.concept__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 100px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 5px 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .concept__title {
    font-size: 60px;
  }
}
.concept__title::before {
  content: "CONCEPT";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 180px;
  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: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.concept__subtitle-ja {
  font-size: 13px;
  color: #CA7F13;
  margin: 0 0 30px 0;
  padding-left: 3px;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .concept__subtitle-ja {
    margin-bottom: 20px;
  }
}
.concept__catchphrase {
  font-size: 25px;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .concept__catchphrase {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}
.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: 30px;
  justify-content: space-around;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .concept__bottom {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }
}
.concept__sub-image {
  width: 45%;
  overflow: hidden;
  border-radius: 0;
}
@media (max-width: 767px) {
  .concept__sub-image {
    order: 1;
    height: 300px;
  }
}
.concept__sub-image picture, .concept__sub-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.concept__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 767px) {
  .concept__content {
    order: 2;
    gap: 35px;
  }
}
.concept__description p {
  font-size: 1rem;
  line-height: 2.2;
  color: #333333;
  margin: 0 0 25px 0;
  letter-spacing: 0.08em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .concept__description p {
    font-size: 13px;
    line-height: 2;
    margin: 0 0 20px 0;
  }
}
.concept__description p:last-child {
  margin-bottom: 0;
}
.concept__link {
  font-family: "Times New Roman", serif;
  font-size: 14px;
  color: #333333;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  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: 13px;
  }
}

.page-concept {
  background-color: #F9F8F6;
}
.page-concept-hero {
  background-color: #f5f0eb;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-concept-hero {
    padding: 80px 20px;
  }
}
@media (max-width: 320px) {
  .page-concept-hero {
    padding: 60px 15px;
  }
}
@media (min-width: 1920px) {
  .page-concept-hero {
    padding: 150px 40px;
  }
}
.page-concept-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-concept-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  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: 32px;
    letter-spacing: 0.1em;
  }
}
.page-concept-breadcrumb {
  background-color: #D4CEBE;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .page-concept-breadcrumb {
    padding: 20px 20px;
  }
}
.page-concept-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-concept-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
    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 {
  background-color: #D4CEBE;
  padding: 80px 80px;
}
@media (max-width: 767px) {
  .page-concept-about {
    padding: 60px 30px;
  }
}
@media (max-width: 320px) {
  .page-concept-about {
    padding: 50px 20px;
  }
}
@media (min-width: 1920px) {
  .page-concept-about {
    padding: 100px 80px;
  }
}
.page-concept-about__container {
  max-width: 1400px;
  margin: 0 auto;
}
.page-concept-about__image-wrapper {
  position: relative;
  margin-bottom: 80px;
  min-height: 520px;
}
@media (max-width: 767px) {
  .page-concept-about__image-wrapper {
    margin-bottom: 50px;
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
}
.page-concept-about__title {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #CA7F13;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.05em;
  z-index: 2;
  width: auto;
}
@media (max-width: 767px) {
  .page-concept-about__title {
    font-size: 24px;
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    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;
  width: 58%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-concept-about__image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
}
.page-concept-about__image picture,
.page-concept-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .page-concept-about__image picture,
  .page-concept-about__image img {
    height: auto;
  }
}
.page-concept-about__text {
  max-width: 100%;
}
.page-concept-about__text p {
  font-size: 14px;
  line-height: 2.2;
  color: #CA7F13;
  margin: 0 0 30px 0;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-concept-about__text p {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
  }
}
.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: 60px 100px;
}
@media (max-width: 767px) {
  .page-concept-instagram {
    padding: 0 30px 60px;
  }
}
.page-concept-instagram__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-concept-instagram #sb_instagram #sbi_load {
  display: none !important;
}
.page-concept-instagram__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: left;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-instagram__title {
    font-size: 36px;
  }
}
.page-concept-instagram__title::before {
  content: "Instagram";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 80px;
  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: 80px;
  }
}
.page-concept-instagram__subtitle {
  font-size: 13px;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 60px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-concept-instagram__subtitle {
    margin-bottom: 40px;
  }
}
.page-concept-instagram__grid {
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-concept-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
  }
}
.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: 14px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .page-concept-instagram__text {
    font-size: 12px;
  }
}
.page-concept-instagram__button-wrapper {
  text-align: center;
}
.page-concept-instagram__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #949E33;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .page-concept-instagram__button {
    padding: 12px 30px;
    font-size: 13px;
  }
}
.page-concept-instagram__button svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .page-concept-instagram__button svg {
    width: 16px;
    height: 16px;
  }
}
.page-concept-instagram__button:hover {
  background-color: #949E33;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-concept-profile {
  background-color: #f5f0eb;
  padding: 0 60px 100px;
}
@media (max-width: 767px) {
  .page-concept-profile {
    padding: 0 30px 60px;
  }
}
.page-concept-profile__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-concept-profile__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-concept-profile__title {
    font-size: 36px;
  }
}
.page-concept-profile__title::before {
  content: "Company Profile";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 80px;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-concept-profile__title::before {
    font-size: 70px;
  }
}
.page-concept-profile__subtitle {
  font-size: 13px;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 60px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-concept-profile__subtitle {
    margin-bottom: 40px;
  }
}
.page-concept-profile__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-concept-profile__image {
    height: 250px;
    margin-bottom: 40px;
  }
}
.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: 14px;
  }
}
.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: 140px 1fr;
  border-bottom: 1px solid #CA7F13;
  min-height: 80px;
}
@media (max-width: 767px) {
  .page-concept-profile__row {
    grid-template-columns: 120px 1fr;
    min-height: 70px;
  }
}
.page-concept-profile__label {
  padding: 25px 30px;
  font-weight: 400;
  color: #CA7F13;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-concept-profile__label {
    padding: 20px 15px;
    font-size: 12px;
  }
}
.page-concept-profile__value {
  color: #333333;
  font-size: 14px;
  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: 20px 15px;
    font-size: 12px;
  }
}

.page-price {
  background-color: #F9F8F6;
}
.page-price-hero {
  background-color: #f5f0eb;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-hero {
    padding: 60px 20px 50px;
  }
}
@media (max-width: 320px) {
  .page-price-hero {
    padding: 50px 15px 40px;
  }
}
@media (min-width: 1920px) {
  .page-price-hero {
    padding: 150px 40px;
  }
}
.page-price-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-price-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  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: 28px;
    letter-spacing: 0.08em;
  }
}
.page-price-main-image {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-price-main-image {
    height: 250px;
  }
}
.page-price-main-image picture,
.page-price-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-price-breadcrumb {
  background-color: #F9F8F6;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .page-price-breadcrumb {
    padding: 20px 20px;
  }
}
.page-price-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-price-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
    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: 30px 20px 50px;
  }
}
.page-price-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 40px 40px;
}
@media (max-width: 767px) {
  .page-price-intro__container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}
.page-price-intro__text {
  line-height: 2.2;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: left;
}
@media (max-width: 767px) {
  .page-price-intro__text {
    font-size: 13px;
    line-height: 2;
    text-align: left;
    letter-spacing: 0.05em;
    order: 2;
    padding: 20px 20px;
  }
  .page-price-intro__text p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .page-price-intro__text br {
    display: none;
  }
}
.page-price-menu {
  background-color: #F9F8F6;
  padding: 0;
}
@media (max-width: 767px) {
  .page-price-menu {
    padding: 0;
  }
}
.page-price-menu__container {
  max-width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .page-price-menu__container {
    order: 1;
  }
}
.page-price-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .page-price-menu__grid {
    grid-template-columns: 1fr;
  }
}
.page-price-menu__item {
  background-color: transparent;
  border-bottom: 1px solid #CA7F13;
  border-right: 1px solid #CA7F13;
  padding: 20px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}
@media (max-width: 767px) {
  .page-price-menu__item {
    padding: 15px 20px;
    min-height: 70px;
    border-right: none;
  }
}
.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: 20px;
}
@media (max-width: 767px) {
  .page-price-menu__item-content {
    gap: 15px;
  }
}
.page-price-menu__item-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .page-price-menu__item-title {
    font-size: 24px;
  }
}
.page-price-menu__item-subtitle {
  font-size: 14px;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-menu__item-subtitle {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
.page-price-menu__item-arrow {
  font-size: 40px;
  color: #CA7F13;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .page-price-menu__item-arrow {
    font-size: 24px;
  }
}
.page-price-menu__item:hover .page-price-menu__item-arrow {
  transform: translateX(5px);
}
.page-price-section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.page-price-section-subtitle {
  font-size: 13px;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 60px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-section-subtitle {
    margin-bottom: 40px;
  }
}
.page-price-description {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-description {
    margin-bottom: 40px;
  }
}
.page-price-description p {
  font-size: 14px;
  line-height: 2;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-price-description p {
    font-size: 13px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .page-price-description p br {
    display: none;
  }
}
.page-price-body {
  background-color: #D4CEBE;
  padding: 50px 250px;
}
@media (max-width: 767px) {
  .page-price-body {
    padding: 50px 20px;
  }
}
.page-price-body__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-price-parts-section {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .page-price-parts-section {
    margin-bottom: 50px;
  }
}
.page-price-parts-section:last-child {
  margin-bottom: 0;
}
.page-price-parts-name {
  font-size: 24px;
  color: #CA7F13;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-parts-name {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.page-price-parts-list {
  font-size: 14px;
  line-height: 2;
  color: #CA7F13;
  text-align: center;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 900px;
}
@media (max-width: 767px) {
  .page-price-parts-list {
    font-size: 12px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .page-price-parts-list br {
    display: none;
  }
}
.page-price-vline {
  background-color: #D4CEBE;
  padding: 50px 250px;
}
@media (max-width: 767px) {
  .page-price-vline {
    padding: 50px 20px;
  }
}
.page-price-vline__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-price-set {
  background-color: #D4CEBE;
  padding: 50px 250px;
}
@media (max-width: 767px) {
  .page-price-set {
    padding: 50px 20px;
  }
}
.page-price-set__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-price-custom {
  background-color: #FFFFFF;
  padding: 100px 60px;
}
@media (max-width: 767px) {
  .page-price-custom {
    padding: 50px 20px;
  }
}
.page-price-custom__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .page-price-custom__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-price-custom__image {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-price-custom__image {
    order: 1;
  }
}
.page-price-custom__image picture,
.page-price-custom__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .page-price-custom__content {
    order: 2;
  }
}
.page-price-custom__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 50px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-custom__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.page-price-custom__subtitle {
  font-size: 13px;
  color: #CA7F13;
  margin: 0 0 40px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-price-custom__subtitle {
    margin-bottom: 25px;
    text-align: center;
  }
}
.page-price-custom__text p {
  line-height: 2.2;
  color: #CA7F13;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-price-custom__text p {
    font-size: 12px;
    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: 100px 60px;
}
@media (max-width: 767px) {
  .page-price-all {
    padding: 60px 30px;
  }
}
.page-price-all__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-price-all__sections {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .page-price-all__sections {
    gap: 60px;
  }
}
.page-price-all__section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 30px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-price-all__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.page-price-table {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-price-table {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page-price-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  border-bottom: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .page-price-table table {
    font-size: 11px;
    min-width: 100%;
  }
}
.page-price-table thead {
  background-color: transparent;
}
.page-price-table thead th {
  padding: 25px 15px;
  text-align: center;
  color: #CA7F13;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .page-price-table thead th {
    padding: 12px 6px;
    font-size: 9px;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
}
.page-price-table thead th:first-child {
  width: 140px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-price-table thead th:first-child {
    width: 60px;
    min-width: 60px;
  }
}
.page-price-table tbody tr {
  border-bottom: 1px solid #CA7F13;
}
.page-price-table tbody td {
  padding: 30px 15px;
  text-align: center;
  color: #CA7F13;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-table tbody td {
    padding: 15px 6px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}
.page-price-table tbody td:first-child {
  font-weight: 400;
  background-color: transparent;
  font-size: 14px;
}
@media (max-width: 767px) {
  .page-price-table tbody td:first-child {
    font-size: 10px;
  }
}
.page-price-note {
  font-size: 12px;
  color: #CA7F13;
  margin: 15px 0 0;
  text-align: right;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-note {
    font-size: 9px;
    text-align: left;
    margin-top: 10px;
    line-height: 1.5;
  }
}
.page-price-course {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page-price-course {
    margin-bottom: 40px;
  }
}
.page-price-course:last-child {
  margin-bottom: 0;
}
.page-price-course-name {
  font-size: 20px;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-course-name {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.page-price-parts-title {
  font-size: 16px;
  color: #CA7F13;
  font-weight: 400;
  margin: 30px 0 15px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-price-parts-title {
    font-size: 14px;
    margin: 20px 0 10px;
  }
}
.page-price-parts-desc {
  font-size: 14px;
  line-height: 2;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .page-price-parts-desc {
    font-size: 12px;
    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: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-salons-hero {
    padding: 60px 20px 50px;
  }
}
@media (max-width: 320px) {
  .page-salons-hero {
    padding: 50px 15px 40px;
  }
}
@media (min-width: 1920px) {
  .page-salons-hero {
    padding: 150px 40px;
  }
}
.page-salons-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-salons-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #CA7F13;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-salons-hero__title {
    font-size: 28px;
    letter-spacing: 0.08em;
  }
}
.page-salons-map {
  background-color: #F9F8F6;
  padding: 0;
  width: 100%;
  overflow: hidden;
  margin: 0;
}
.page-salons-map__container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.page-salons-map__image {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.page-salons-map__image img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-salons-prefectures {
  padding: 2.5rem 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-salons-prefectures {
    padding: 50px 20px;
  }
}
.page-salons-prefectures__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-salons-prefectures__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-salons-prefectures__title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.page-salons-prefectures__title::before {
  content: "Prefectures";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 120px;
  color: rgba(202, 127, 19, 0.05);
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-salons-prefectures__title::before {
    font-size: 80px;
  }
}
.page-salons-prefectures__subtitle {
  font-size: 0.75rem;
  color: #CA7F13;
  text-align: left;
  margin: 0 0 60px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-salons-prefectures__subtitle {
    font-size: 11px;
    margin-bottom: 35px;
  }
}
.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 (max-width: 767px) {
  .page-salons-prefectures__list {
    gap: 15px 30px;
    padding: 1.5rem 1rem;
  }
}
.page-salons-prefectures__item {
  margin: 0;
  flex: 0 0 auto;
}
.page-salons-prefectures__link {
  display: flex;
  align-items: center;
  gap: 10px;
  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 (max-width: 767px) {
  .page-salons-prefectures__link::before {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .page-salons-prefectures__link {
    font-size: 13px;
    gap: 6px;
  }
}
.page-salons-prefectures__link span {
  font-size: 13px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .page-salons-prefectures__link span {
    font-size: 11px;
  }
}
.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;
}
.page-salons-area__header {
  background-color: #CA7F13;
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-salons-area__header {
    padding: 15px 20px;
    margin: 0 20px;
  }
}
.page-salons-area__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-salons-area__title {
    font-size: 22px;
  }
}
.page-salons-area__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 60px 80px;
}
@media (max-width: 767px) {
  .page-salons-area__container {
    padding: 35px 20px 40px;
  }
}
.page-salons-area__shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .page-salons-area__shops {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.page-salons-shop {
  display: block;
  background-color: #F9F8F6;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-salons-shop {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
}
.page-salons-shop:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .page-salons-shop:hover {
    transform: translateY(-3px);
  }
}
.page-salons-shop__map {
  width: 100%;
  height: 300px;
  background-color: #e8e4df;
  position: relative;
}
@media (max-width: 767px) {
  .page-salons-shop__map {
    height: 200px;
  }
}
.page-salons-shop__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.page-salons-shop__info {
  padding: 25px 30px;
  background-color: #F9F8F6;
}
@media (max-width: 767px) {
  .page-salons-shop__info {
    padding: 15px 15px 18px;
  }
}
.page-salons-shop__name-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  color: #CA7F13;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-salons-shop__name-en {
    font-size: 24px;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
}
.page-salons-shop__name {
  font-size: 14px;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 8px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-salons-shop__name {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.5;
  }
}
.page-salons-shop__address {
  font-size: 13px;
  color: #333333;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-salons-shop__address {
    font-size: 11px;
    line-height: 1.5;
  }
}

.single-salon {
  background-color: #F9F8F6;
}
.single-salon-hero {
  background-color: #f5f0eb;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .single-salon-hero {
    padding: 60px 20px 50px;
  }
}
.single-salon-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.single-salon-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  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: 20px;
    letter-spacing: 0.05em;
  }
}
.single-salon-main-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-main-image {
    height: 250px;
  }
}
.single-salon-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-salon-description {
  background-color: #f5f0eb;
  padding: 80px 60px;
}
@media (max-width: 767px) {
  .single-salon-description {
    padding: 50px 20px;
  }
}
.single-salon-description__container {
  max-width: 1000px;
  margin: 0 auto;
}
.single-salon-description__content {
  text-align: center;
}
.single-salon-description__content p {
  font-size: 15px;
  line-height: 2.2;
  color: #5a4a3a;
  margin: 0 0 1em 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-description__content p {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}
.single-salon-description__content p:last-child {
  margin-bottom: 0;
}
.single-salon-flow {
  background-color: #F9F8F6;
  padding: 100px 60px;
}
@media (max-width: 767px) {
  .single-salon-flow {
    padding: 50px 20px 60px;
  }
}
.single-salon-flow__container {
  max-width: 1200px;
  margin: 0 auto;
}
.single-salon-flow__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 15px 0;
  letter-spacing: 0.1em;
  position: relative;
}
.single-salon-flow__title::before {
  content: "Flow";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 140px;
  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: 100px;
  }
}
@media (max-width: 767px) {
  .single-salon-flow__title {
    font-size: 42px;
    margin-bottom: 10px;
  }
}
.single-salon-flow__subtitle {
  font-size: 13px;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 80px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .single-salon-flow__subtitle {
    font-size: 11px;
    margin-bottom: 50px;
    position: relative;
  }
}
.single-salon-flow__intro {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .single-salon-flow__intro {
    position: relative;
  }
}
.single-salon-flow__layout {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  .single-salon-flow__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .single-salon-flow__images-left, .single-salon-flow__images-right {
    display: none !important;
  }
}
.single-salon-flow__images-left {
  display: flex;
  align-items: flex-start;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .single-salon-flow__images-left {
    display: none !important;
  }
}
.single-salon-flow__images-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 300px;
}
@media (max-width: 767px) {
  .single-salon-flow__images-right {
    display: none !important;
  }
}
.single-salon-flow__image-item {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-flow__image-item {
    width: 50px;
    height: 50px;
  }
}
.single-salon-flow__image-item img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-salon-flow__images-mobile {
  display: none !important;
}
.single-salon-flow__list {
  display: flex;
  flex-direction: column;
  padding: 0 20px 30px 20px;
}
@media (max-width: 767px) {
  .single-salon-flow__list {
    gap: 35px;
    padding: 0 20px;
  }
}
.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: 34px;
  top: 60px;
  bottom: -30px;
  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: 35px;
  }
}
.single-salon-flow__item-wrapper:last-child::before {
  display: none;
}
.single-salon-flow__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #949E33;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .single-salon-flow__number {
    width: 38px;
    height: 38px;
    font-size: 16px;
    z-index: 2;
  }
}
.single-salon-flow__item {
  flex: 1;
  margin: 0px 30px;
}
@media (max-width: 767px) {
  .single-salon-flow__item {
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center;
  }
}
.single-salon-flow__content {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .single-salon-flow__content {
    padding-top: 0;
  }
}
.single-salon-flow__heading {
  font-size: 20px;
  color: #5a4a3a;
  font-weight: 400;
  margin: 0 0 15px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-flow__heading {
    font-size: 15px;
    margin-bottom: 8px;
    text-align: center;
  }
}
.single-salon-flow__text {
  font-size: 14px;
  line-height: 2;
  color: #5a4a3a;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .single-salon-flow__text {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }
}
.single-salon-flow__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-flow__image {
    max-width: 100%;
    margin-top: 15px;
  }
}
.single-salon-flow__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-salon-staff {
  background-color: #5a4a3a;
  padding: 100px 60px;
}
@media (max-width: 767px) {
  .single-salon-staff {
    padding: 60px 20px;
  }
}
.single-salon-staff__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .single-salon-staff__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.single-salon-staff__image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-staff__image {
    max-width: 300px;
    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: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .single-salon-staff__title {
    font-size: 36px;
    text-align: center;
  }
}
.single-salon-staff__subtitle {
  font-size: 13px;
  color: #CA7F13;
  margin: 0 0 40px 0;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (max-width: 767px) {
  .single-salon-staff__subtitle {
    font-size: 11px;
    margin-bottom: 30px;
    text-align: center;
  }
}
.single-salon-staff__text p {
  font-size: 14px;
  line-height: 2;
  color: #e8e4df;
  margin: 0 0 1.5em 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-staff__text p {
    font-size: 13px;
    line-height: 1.9;
  }
}
.single-salon-staff__text p:last-of-type {
  margin-bottom: 2em;
}
.single-salon-staff__name {
  font-size: 14px;
  color: #CA7F13;
  margin: 0;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .single-salon-staff__name {
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.single-salon-staff__name span {
  font-size: 13px;
  color: #e8e4df;
}
@media (max-width: 767px) {
  .single-salon-staff__name span {
    font-size: 12px;
  }
}
.single-salon-info {
  background-color: #f5f0eb;
  padding: 100px 60px;
}
@media (max-width: 767px) {
  .single-salon-info {
    padding: 60px 20px;
  }
}
.single-salon-info__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .single-salon-info__container {
    grid-template-columns: 1fr;
    gap: 40px;
    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;
}
.single-salon-info__table tr {
  border-bottom: 1px solid #CA7F13;
}
.single-salon-info__table th {
  width: 30%;
  padding: 25px 20px;
  font-weight: 400;
  color: #5a4a3a;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-salon-info__table th {
    width: 35%;
    padding: 18px 10px;
    font-size: 13px;
  }
}
.single-salon-info__table td {
  padding: 25px 20px;
  color: #5a4a3a;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .single-salon-info__table td {
    padding: 18px 10px;
    font-size: 13px;
    line-height: 1.7;
  }
}
.single-salon-info__map {
  width: 100%;
  height: 400px;
  background-color: #e8e4df;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-salon-info__map {
    height: 250px;
    order: 1;
  }
}
.single-salon-info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.single-salon-back {
  background-color: #F9F8F6;
  padding: 0 60px 80px;
}
@media (max-width: 767px) {
  .single-salon-back {
    padding: 0 20px 50px;
  }
}
.single-salon-back__container {
  max-width: 1200px;
  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: 15px 50px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .single-salon-back__button {
    padding: 12px 40px;
    font-size: 13px;
  }
}
.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: #F9F8F6;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .archive-news-hero {
    padding: 60px 20px 50px;
  }
}
.archive-news-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.archive-news-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 64px;
  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: 36px;
    letter-spacing: 0.1em;
  }
}
.archive-news-main-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .archive-news-main-image {
    height: 300px;
  }
}
.archive-news-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.archive-news-breadcrumb {
  background-color: #F9F8F6;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .archive-news-breadcrumb {
    padding: 20px 20px;
  }
}
.archive-news-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .archive-news-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
  }
}
.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 {
  background-color: #F9F8F6;
  padding: 60px 60px 100px;
}
@media (max-width: 767px) {
  .archive-news-content {
    padding: 40px 20px 60px;
  }
}
.archive-news-content__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
@media (max-width: 767px) {
  .archive-news-content__container {
    flex-direction: column;
    gap: 40px;
  }
}
.archive-news-posts {
  flex: 1;
}
.archive-news-posts__list {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .archive-news-posts__list {
    gap: 12px;
  }
}
.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: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 25px 30px;
  gap: 20px;
}
@media (max-width: 767px) {
  .archive-news-card__link {
    padding: 20px 20px;
    gap: 15px;
  }
}
.archive-news-card__left {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .archive-news-card__left {
    gap: 10px;
  }
}
.archive-news-card__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #b3b3b3;
}
.archive-news-card__date {
  font-size: 13px;
  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: 12px;
  }
}
.archive-news-card__title {
  font-size: 15px;
  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: 14px;
    line-height: 1.7;
  }
}
.archive-news-card__category {
  font-size: 13px;
  color: #7a6a5a;
  background-color: transparent;
  padding: 0;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
}
@media (max-width: 767px) {
  .archive-news-card__category {
    font-size: 12px;
  }
}
.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: 200px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .archive-news-sidebar {
    width: 100%;
    order: -1;
  }
}
.archive-news-sidebar__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 300;
  color: #CA7F13;
  letter-spacing: 0.1em;
  padding-left: 15px;
  border-left: 1px solid #CA7F13;
}
@media (max-width: 767px) {
  .archive-news-sidebar__title {
    font-size: 20px;
    margin-bottom: 15px;
    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: 15px;
}
@media (max-width: 767px) {
  .archive-news-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    border-left: none;
    padding-left: 0;
  }
}
.archive-news-sidebar__item {
  margin: 0;
}
.archive-news-sidebar__link {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  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: 8px 15px;
    font-size: 13px;
    border-bottom: 2px solid transparent;
    background-color: #e8e4df;
  }
}
.archive-news-sidebar__link:hover {
  color: #CA7F13;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .archive-news-sidebar__link:hover {
    border-bottom-color: #CA7F13;
    background-color: #ddd8d2;
    opacity: 1;
  }
}
.archive-news-sidebar__link.is-active {
  color: #CA7F13;
  font-weight: 400;
}
@media (max-width: 767px) {
  .archive-news-sidebar__link.is-active {
    border-bottom-color: #CA7F13;
    background-color: #ddd8d2;
  }
}
.archive-news-pagination {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .archive-news-pagination {
    margin-top: 40px;
  }
}
.archive-news-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
  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: 30px;
  height: 40px;
  font-size: 20px;
  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: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.archive-news-pagination a:hover {
  color: #CA7F13;
  transform: translateY(-2px);
}
.archive-news-pagination .current {
  color: #CA7F13;
  font-weight: 400;
  border-bottom: 2px solid #CA7F13;
}
.archive-news-pagination .prev,
.archive-news-pagination .next {
  font-size: 20px;
}
@media (max-width: 767px) {
  .archive-news-pagination .prev,
  .archive-news-pagination .next {
    font-size: 18px;
  }
}
.archive-news-empty {
  text-align: center;
  padding: 80px 20px;
}
@media (max-width: 767px) {
  .archive-news-empty {
    padding: 60px 20px;
  }
}
.archive-news-empty p {
  font-size: 16px;
  color: #7a6a5a;
  margin: 0;
}
@media (max-width: 767px) {
  .archive-news-empty p {
    font-size: 14px;
  }
}

.single-post {
  background-color: #F9F8F6;
}
.single-post-hero {
  background-color: #F9F8F6;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .single-post-hero {
    padding: 60px 20px 50px;
  }
}
.single-post-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.single-post-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 64px;
  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: 36px;
    letter-spacing: 0.1em;
  }
}
.single-post-main-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-post-main-image {
    height: 300px;
  }
}
.single-post-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-post-breadcrumb {
  background-color: #F9F8F6;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .single-post-breadcrumb {
    padding: 20px 20px;
  }
}
.single-post-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .single-post-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
    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-article {
  background-color: #F9F8F6;
  padding: 60px 60px 100px;
}
@media (max-width: 767px) {
  .single-post-article {
    padding: 40px 20px 60px;
  }
}
.single-post-article__container {
  max-width: 900px;
  margin: 0 auto;
}
.single-post-article__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .single-post-article__meta {
    gap: 12px;
    margin-bottom: 20px;
  }
}
.single-post-article__date {
  font-size: 14px;
  color: #CA7F13;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__date {
    font-size: 13px;
  }
}
.single-post-article__category {
  font-size: 12px;
  color: #CA7F13;
  padding: 5px 15px;
  border-radius: 2px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__category {
    font-size: 11px;
    padding: 4px 12px;
  }
}
.single-post-article__category.is-news {
  background-color: #a8956a;
}
.single-post-article__category.is-column {
  background-color: #8a8a6a;
}
.single-post-article__title {
  font-size: 28px;
  color: #CA7F13;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__title {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
}
.single-post-article__subtitle {
  font-size: 16px;
  color: #7a6a5a;
  font-weight: 300;
  line-height: 1.8;
  margin: -25px 0 35px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__subtitle {
    font-size: 15px;
    margin: -20px 0 30px 0;
  }
}
.single-post-article__featured-image {
  margin: 0 0 50px 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-post-article__featured-image {
    margin-bottom: 35px;
  }
}
.single-post-article__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post-article__introduction {
  background-color: #e8e4df;
  padding: 30px 35px;
  margin: 0 0 50px 0;
  border-left: 4px solid #CA7F13;
  font-size: 15px;
  line-height: 2;
  color: #5a4a3a;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__introduction {
    padding: 20px 25px;
    margin-bottom: 35px;
    font-size: 14px;
  }
}
.single-post-article__introduction p {
  margin: 0 0 1em 0;
}
.single-post-article__introduction p:last-child {
  margin-bottom: 0;
}
.single-post-article__content {
  color: #5a4a3a;
  font-size: 15px;
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content {
    font-size: 14px;
    line-height: 2;
  }
}
.single-post-article__content h2 {
  font-size: 22px;
  font-weight: 400;
  color: #CA7F13;
  margin: 60px 0 30px 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content h2 {
    font-size: 19px;
    margin: 45px 0 25px 0;
  }
}
.single-post-article__content h3 {
  font-size: 19px;
  font-weight: 400;
  color: #5a4a3a;
  margin: 50px 0 25px 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content h3 {
    font-size: 17px;
    margin: 40px 0 20px 0;
  }
}
.single-post-article__content h4 {
  font-size: 17px;
  font-weight: 400;
  color: #5a4a3a;
  margin: 40px 0 20px 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__content h4 {
    font-size: 16px;
    margin: 35px 0 18px 0;
  }
}
.single-post-article__content p {
  margin: 0 0 1.8em 0;
}
.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;
  font-style: italic;
  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: 3px;
  font-size: 0.9em;
  font-family: monospace;
}
.single-post-article__content pre {
  background-color: #e8e4df;
  padding: 1.5em;
  border-radius: 5px;
  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: 13px;
  }
}
.single-post-article__content table th, .single-post-article__content table td {
  padding: 12px 15px;
  border: 1px solid #d4d0ca;
  text-align: left;
}
@media (max-width: 767px) {
  .single-post-article__content table th, .single-post-article__content table td {
    padding: 10px 12px;
  }
}
.single-post-article__content table th {
  background-color: #e8e4df;
  font-weight: 400;
}
.single-post-article__gallery {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .single-post-article__gallery {
    margin: 35px 0;
  }
}
.single-post-article__gallery-item {
  margin: 0 0 30px 0;
}
@media (max-width: 767px) {
  .single-post-article__gallery-item {
    margin-bottom: 25px;
  }
}
.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: 13px;
  color: #7a6a5a;
  margin-top: 12px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__gallery-caption {
    font-size: 12px;
    margin-top: 10px;
  }
}
.single-post-article__comment {
  background-color: #e8e4df;
  padding: 30px 35px;
  margin: 50px 0;
  border-radius: 5px;
  font-size: 15px;
  line-height: 2;
  color: #5a4a3a;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 767px) {
  .single-post-article__comment {
    padding: 20px 25px;
    margin: 35px 0;
    font-size: 14px;
  }
}
.single-post-article__comment::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  color: #CA7F13;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .single-post-article__comment::before {
    font-size: 50px;
    top: 5px;
    left: 15px;
  }
}
.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: 50px 0 0 0;
  padding: 30px;
  background-color: #f9f8f6;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .single-post-article__related-links {
    margin-top: 35px;
    padding: 20px;
  }
}
.single-post-article__related-title {
  font-size: 18px;
  color: #5a4a3a;
  font-weight: 400;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-post-article__related-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.single-post-article__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post-article__related-item {
  margin: 0 0 12px 0;
}
@media (max-width: 767px) {
  .single-post-article__related-item {
    margin-bottom: 10px;
  }
}
.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: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .single-post-article__related-link {
    font-size: 13px;
  }
}
.single-post-article__related-link::before {
  content: "→";
  margin-right: 8px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .single-post-article__related-link::before {
    margin-right: 6px;
  }
}
.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 60px 80px;
}
@media (max-width: 767px) {
  .single-post-back {
    padding: 0 20px 50px;
  }
}
.single-post-back__container {
  max-width: 900px;
  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: 15px 50px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .single-post-back__button {
    padding: 12px 40px;
    font-size: 13px;
  }
}
.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: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-contact-hero {
    padding: 60px 20px 50px;
  }
}
@media (max-width: 320px) {
  .page-contact-hero {
    padding: 50px 15px 40px;
  }
}
@media (min-width: 1920px) {
  .page-contact-hero {
    padding: 150px 40px;
  }
}
.page-contact-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-contact-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 64px;
  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: 36px;
    letter-spacing: 0.1em;
  }
}
.page-contact-main-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-contact-main-image {
    height: 250px;
  }
}
.page-contact-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-contact-breadcrumb {
  background-color: #F9F8F6;
  padding: 30px 60px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-contact-breadcrumb {
    padding: 20px 20px;
  }
}
.page-contact-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #7a6a5a;
}
@media (max-width: 767px) {
  .page-contact-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
  }
}
.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 {
  background-color: #F9F8F6;
  padding: 80px 60px;
}
@media (max-width: 767px) {
  .page-contact-tel {
    padding: 50px 20px;
  }
}
.page-contact-tel__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 767px) {
  .page-contact-tel__container {
    flex-direction: column;
    gap: 35px;
  }
}
.page-contact-tel__content {
  flex: 1;
  padding-right: 40px;
  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: 180px;
  background-color: #CA7F13;
}
@media (max-width: 767px) {
  .page-contact-tel__content::after {
    display: none;
  }
}
.page-contact-tel__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 30px 0;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .page-contact-tel__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.page-contact-tel__text {
  font-size: 14px;
  color: #CA7F13;
  line-height: 2;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-tel__text {
    font-size: 13px;
    line-height: 1.9;
  }
}
.page-contact-tel__phone-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .page-contact-tel__phone-box {
    padding-left: 0;
    width: 100%;
  }
}
.page-contact-tel__number {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 35px;
  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: 36px;
  }
}
.page-contact-tel__number:hover {
  color: #a8956a;
}
.page-contact-tel__hours {
  font-size: 14px;
  color: #CA7F13;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 12px 40px;
  border: 1.5px solid #CA7F13;
  border-radius: 25px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-contact-tel__hours {
    font-size: 13px;
    padding: 10px 30px;
  }
}
.page-contact-minors {
  background-color: #F9F8F6;
  padding: 80px 60px;
}
@media (max-width: 767px) {
  .page-contact-minors {
    padding: 50px 20px;
  }
}
.page-contact-minors__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .page-contact-minors__container {
    flex-direction: column;
    gap: 35px;
  }
}
.page-contact-minors__content {
  flex: 1;
}
@media (max-width: 767px) {
  .page-contact-minors__content {
    order: 2;
  }
}
.page-contact-minors__title {
  font-size: 20px;
  font-weight: 400;
  color: #CA7F13;
  margin: 0 0 25px 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-contact-minors__title {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.page-contact-minors__text p {
  font-size: 14px;
  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: 13px;
    line-height: 1.9;
  }
}
.page-contact-minors__text p:last-child {
  margin-bottom: 0;
}
.page-contact-minors__download-box {
  background-color: #d4cebe;
  padding: 30px 25px;
  text-align: center;
  min-width: 300px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-minors__download-box {
    width: 100%;
    min-width: auto;
    padding: 30px 25px;
    order: 1;
  }
}
.page-contact-minors__download-label {
  font-size: 16px;
  color: #CA7F13;
  margin: 0 0 20px 0;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .page-contact-minors__download-label {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.page-contact-minors__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 45px;
  background-color: #a4a869;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  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: 16px;
    padding: 14px 38px;
    gap: 8px;
  }
}
.page-contact-minors__download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-minors__download svg {
    width: 16px;
    height: 16px;
  }
}
.page-contact-minors__download:hover {
  background-color: #939754;
  transform: translateY(-2px);
}
.page-contact-form {
  background-color: #f5f0eb;
  padding: 80px 60px 100px;
}
@media (max-width: 767px) {
  .page-contact-form {
    padding: 50px 20px 60px;
  }
}
.page-contact-form__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-contact-form__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .page-contact-form__header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.page-contact-form__header-left {
  flex: 1;
  max-width: 600px;
  min-width: 400px;
}
@media (max-width: 767px) {
  .page-contact-form__header-left {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-contact-form__header-left {
    min-width: 400px;
    max-width: 400px;
  }
}
.page-contact-form__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  color: #CA7F13;
  margin: 0 0 40px 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-contact-form__title {
    font-size: 36px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
}
.page-contact-form__intro {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
.page-contact-form__intro p {
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-contact-form__intro p {
    font-size: 13px;
    line-height: 1.9;
  }
}
.page-contact-form__intro p:last-child {
  margin-bottom: 0;
}
.page-contact-form__steps {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-contact-form__steps {
    gap: 20px;
    width: 100%;
    justify-content: space-between;
  }
}
.page-contact-form__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  padding: 14px 0;
  min-width: 140px;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .page-contact-form__step {
    gap: 10px;
    padding: 10px 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: 20px;
  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: 10px;
  }
}
.page-contact-form__step-text {
  font-size: 25px;
  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: 13px;
  }
}
.page-contact-form__cf7-wrapper {
  padding: 50px 40px;
}
@media (max-width: 767px) {
  .page-contact-form__cf7-wrapper {
    padding: 30px 20px;
  }
}
.page-contact-form .page-contact-thanks {
  padding: 80px 40px;
  text-align: center;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks {
    padding: 60px 20px;
  }
}
.page-contact-form .page-contact-thanks__message {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__message {
    margin-bottom: 45px;
  }
}
.page-contact-form .page-contact-thanks__title {
  font-size: 35px;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.page-contact-form .page-contact-thanks__text {
  font-size: 15px;
  color: #CA7F13;
  line-height: 2;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
.page-contact-form .page-contact-thanks__button {
  display: flex;
  justify-content: center;
}
.page-contact-form .page-contact-thanks__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 15px 60px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 30px;
  border: 2px solid transparent;
}
@media (max-width: 767px) {
  .page-contact-form .page-contact-thanks__link {
    padding: 12px 50px;
    font-size: 13px;
  }
}
.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 {
  background-color: #F9F8F6;
  padding: 50px 40px;
}
@media (max-width: 767px) {
  .page-contact-confirm {
    padding: 30px 20px;
  }
}
.page-contact-confirm__field {
  border-bottom: 1px solid #e8e4df;
  padding: 25px 0;
}
@media (max-width: 767px) {
  .page-contact-confirm__field {
    padding: 20px 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: 10px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .page-contact-confirm__label {
    gap: 8px;
    margin-bottom: 12px;
  }
}
.page-contact-confirm__label-text {
  font-size: 14px;
  color: #5a4a3a;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-confirm__label-text {
    font-size: 13px;
  }
}
.page-contact-confirm__required, .page-contact-confirm__optional {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact-confirm__required, .page-contact-confirm__optional {
    font-size: 10px;
    padding: 2px 8px;
  }
}
.page-contact-confirm__required {
  background-color: #a8956a;
  color: #fff;
}
.page-contact-confirm__optional {
  background-color: #d4d0ca;
  color: #7a6a5a;
}
.page-contact-confirm__value {
  font-size: 15px;
  color: #5a4a3a;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .page-contact-confirm__value {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 0;
  }
}
.page-contact-confirm__buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-contact-confirm__buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
}
.page-contact-confirm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 60px;
  border: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .page-contact-confirm__button {
    padding: 12px 40px;
    font-size: 14px;
    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: 35px;
}
@media (max-width: 768px) {
  .page-contact-form__field {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
}
.page-contact-form__tag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 12px;
}
@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: 5px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-color: #54372d;
  color: #fff;
  white-space: nowrap;
  margin-right: 10px;
  border-radius: 15px;
  font-family: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__required {
    font-size: 10px;
    padding: 2px 8px;
  }
}
.page-contact-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-color: #d4d0ca;
  color: #333333;
  white-space: nowrap;
  margin-right: 10px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .page-contact-form__optional {
    font-size: 10px;
    padding: 2px 8px;
  }
}
.page-contact-form__label {
  display: flex;
  align-items: center;
  min-width: 200px;
  flex-shrink: 0;
  padding-top: 12px;
  font-family: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__label {
    min-width: auto;
    width: 100%;
    padding-top: 0;
  }
}
.page-contact-form__label label {
  font-size: 14px;
  color: #5a4a3a;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page-contact-form__label label {
    font-size: 13px;
  }
}
.page-contact-form__input-wrapper {
  flex: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .page-contact-form__input-wrapper {
    width: 100%;
  }
}
.page-contact-form__input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d4d0ca;
  background-color: #fff;
  font-size: 14px;
  color: #5a4a3a;
  font-family: inherit;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
@media (max-width: 768px) {
  .page-contact-form__input {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.page-contact-form__input:focus {
  outline: none;
  border-color: #CA7F13;
}
.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: 70px;
}
.page-contact-form__input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  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]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  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: 28px 28px;
  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: 45px;
    height: 45px;
    background-size: 24px 24px;
  }
}
.page-contact-form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d4d0ca;
  background-color: #fff;
  font-size: 14px;
  color: #5a4a3a;
  font-family: inherit;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 200px;
  border-radius: 0;
  font-family: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__textarea {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 100px;
  }
}
.page-contact-form__textarea:focus {
  outline: none;
  border-color: #CA7F13;
}
.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] {
  cursor: pointer;
  width: 15px !important;
  height: 15px !important;
  border: none !important;
  outline: none !important;
  border-radius: 0;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-list-item input[type=checkbox] {
    width: 18px !important;
    height: 18px !important;
  }
}
.page-contact-form__checkbox-inquiry {
  display: flex !important;
  gap: 10px;
  flex: 1;
  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: 10px;
  flex: 1;
  width: 100%;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item {
  margin: 0 !important;
  flex: 1;
  display: flex !important;
  min-width: 0;
  font-family: "Marcellus", 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: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  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: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-inquiry .wpcf7-list-item label {
    padding: 10px 15px;
  }
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item input[type=checkbox] {
  gap: 10px;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item label:has(input[type=checkbox]:checked) {
  background-color: #a8956a;
  border-color: #a8956a;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item label:hover {
  border-color: #a8956a;
}
.page-contact-form__checkbox-inquiry .wpcf7-list-item-label {
  font-size: 14px;
  color: #5a4a3a;
  text-align: center;
  padding-left: 10px;
  letter-spacing: 0.05em;
  font-family: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-inquiry .wpcf7-list-item-label {
    font-size: 13px;
  }
}
.page-contact-form__time-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .page-contact-form__time-grid {
    gap: 10px;
  }
}
.page-contact-form__time-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .page-contact-form__time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.page-contact-form__time-row p {
  margin: 0;
  display: flex;
  gap: 12px;
  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: 14px;
  color: #5a4a3a;
  font-weight: 400;
  min-width: 60px;
  text-align: left;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-contact-form__time-label {
    font-size: 13px;
    min-width: auto;
  }
}
.page-contact-form__checkbox-time {
  display: flex !important;
  gap: 25px;
  flex: 1;
  flex-wrap: nowrap;
}
@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: 25px;
  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: 44px;
  padding: 12px 15px;
  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: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time .wpcf7-list-item label {
    padding: 10px 12px;
  }
}
.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;
}
.page-contact-form__checkbox-time .wpcf7-list-item-label {
  font-size: 14px !important;
  color: #5a4a3a !important;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: block !important;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .page-contact-form__checkbox-time .wpcf7-list-item-label {
    font-size: 13px !important;
  }
}
.page-contact-form__radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .page-contact-form__radio {
    gap: 10px;
  }
}
.page-contact-form__radio .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item {
    gap: 6px;
  }
}
.page-contact-form__radio .wpcf7-list-item label {
  cursor: pointer;
  font-size: 14px;
  color: #5a4a3a;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item label {
    font-size: 13px;
  }
}
.page-contact-form__radio .wpcf7-list-item input[type=radio] {
  margin: 0;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .page-contact-form__radio .wpcf7-list-item input[type=radio] {
    width: 16px;
    height: 16px;
  }
}
.page-contact-form__note {
  margin-top: 15px;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  font-family: "Marcellus", serif;
}
@media (max-width: 768px) {
  .page-contact-form__note {
    margin-top: 25px;
    padding: 12px 15px;
  }
}
.page-contact-form__note p {
  margin: 0;
  font-size: 10px;
  color: #333333;
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-contact-form__note p {
    font-size: 11px;
  }
}
.page-contact-form__submit {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-contact-form__submit {
    margin-top: 30px;
  }
}
.page-contact-form__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #949E33;
  color: #fff;
  padding: 10px 60px;
  border: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 300;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 768px) {
  .page-contact-form__submit-btn {
    padding: 12px 60px;
    font-size: 14px;
    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 .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.page-contact-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
  display: block;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-not-valid-tip {
    font-size: 11px;
  }
}
.page-contact-form .wpcf7-response-output {
  border: 2px solid;
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-contact-form .wpcf7-response-output {
    font-size: 13px;
    padding: 12px 15px;
  }
}
.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: 20px;
  height: 20px;
  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: 10px;
  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;
}

.feature__container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding: 3.75rem 0;
  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: 200px 450px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3.75rem;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
}
@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: 30px;
}

.feature_step_text {
  font-size: 1rem;
  color: #CA7F13;
  line-height: 1.6;
  padding-top: 5px;
}
@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: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 90px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  z-index: 2;
}
.feature_title::before {
  content: "FEATURE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 90px;
  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: 100px;
  }
}
@media (max-width: 767px) {
  .feature_title {
    font-size: 60px;
    margin-bottom: 1rem;
  }
}

.feature_image_container {
  width: 100%;
  height: auto;
  aspect-ratio: 45/63;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media (max-width: 767px) {
  .feature_image_container {
    height: 300px;
  }
}
.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: 500px;
  padding: 1.5rem 0;
  margin-top: 5rem;
  color: #CA7F13;
  text-align: center;
}
@media (max-width: 767px) {
  .feature_text_container {
    min-height: 400px;
    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-size: 1.5rem;
  font-weight: 700;
}

.price {
  background-color: #F9F8F6;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .price {
    padding: 70px 0;
  }
}
.price__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .price__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.price__header {
  text-align: left;
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .price__header {
    margin-bottom: 50px;
  }
}
.price__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 90px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 5px 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .price__title {
    font-size: 60px;
  }
}
.price__title::before {
  content: "Menu";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 180px;
  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: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.price__subtitle {
  font-size: 13px;
  color: #CA7F13;
  margin: 0;
  padding-left: 3px;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.price .page-price-menu__container {
  max-width: 600px;
  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: 60px 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  min-height: 200px;
}
@media (max-width: 767px) {
  .price__category {
    padding: 40px 30px;
    min-height: 150px;
    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: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 60px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 8px 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .price__category-title {
    font-size: 48px;
  }
}
.price__category-subtitle {
  font-size: 14px;
  color: #CA7F13;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.price__category-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #CA7F13;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 767px) {
  .price__category-arrow {
    right: 30px;
    font-size: 40px;
  }
}

.faq {
  background-color: #F9F8F6;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .faq {
    padding: 70px 0;
  }
}
.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .faq__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.faq__header {
  text-align: left;
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .faq__header {
    margin-bottom: 50px;
  }
}
.faq__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 90px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 5px 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 60px;
  }
}
.faq__title::before {
  content: "FAQ";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Parisienne", cursive;
  font-size: 180px;
  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: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.faq__subtitle {
  font-size: 13px;
  color: #CA7F13;
  margin: 0;
  padding-left: 3px;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq__item {
  background-color: #D4CEBE;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item.is-active .faq__answer {
  max-height: 500px;
  padding: 25px 30px 30px 30px;
}
.faq__item.is-active .faq__toggle-icon {
  content: "▲";
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq__question:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.faq__question-text {
  font-size: 16px;
  font-weight: 400;
  color: #CA7F13;
  line-height: 1.7;
  flex: 1;
}
.faq__q-label {
  font-family: "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #CA7F13;
  flex-shrink: 0;
  margin-top: -2px;
}
.faq__toggle-icon {
  font-size: 16px;
  color: #54372D;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 2px;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq__answer-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.faq__answer-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #54372D;
  margin: 0;
  flex: 1;
}
.faq__a-label {
  font-family: "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #CA7F13;
  flex-shrink: 0;
  margin-top: -2px;
}

.reserve {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .reserve {
    min-height: 400px;
  }
}
.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 40px;
}
@media (max-width: 767px) {
  .reserve__container {
    padding: 0 20px;
  }
}
.reserve__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 120px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 20px 0;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .reserve__title {
    font-size: 72px;
    margin-bottom: 15px;
  }
}
.reserve__subtitle {
  font-size: 16px;
  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;
}
@media (max-width: 767px) {
  .reserve__subtitle {
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}

.salons-sns {
  background-color: #F9F8F6;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 767px) {
  .salons-sns {
    padding: 70px 0;
  }
}
.salons-sns__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .salons-sns__container {
    padding: 0 20px;
  }
}
.salons-sns__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media (max-width: 767px) {
  .salons-sns__layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
.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: -50px;
  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 40px;
  position: relative;
}
@media (max-width: 767px) {
  .salons {
    padding: 0 20px 80px;
  }
}
@media (max-width: 767px) {
  .salons::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    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: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 15px 0;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .salons__title {
    font-size: 56px;
  }
}
.salons__subtitle {
  font-size: 14px;
  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 40px;
  position: relative;
}
@media (max-width: 767px) {
  .sns {
    padding: 0 20px 80px;
  }
}
@media (max-width: 767px) {
  .sns::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    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: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: #CA7F13;
  margin: 0 0 15px 0;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .sns__title {
    font-size: 56px;
  }
}
.sns__subtitle {
  font-size: 14px;
  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: 500px;
}
@media (max-width: 767px) {
  .placeholder-image.concept-placeholder, .placeholder-image.feature-placeholder {
    height: 300px;
  }
}

.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.25rem;
}

.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: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-privacy-policy-hero {
    padding: 80px 20px;
  }
}
.page-privacy-policy-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-privacy-policy-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  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: 28px;
    letter-spacing: 0.08em;
  }
}
.page-privacy-policy-breadcrumb {
  background-color: #D4CEBE;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .page-privacy-policy-breadcrumb {
    padding: 20px 20px;
  }
}
.page-privacy-policy-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-privacy-policy-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
    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: 80px 60px 100px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content {
    padding: 60px 30px 80px;
  }
}
.page-privacy-policy-content__container {
  max-width: 900px;
  margin: 0 auto;
}
.page-privacy-policy-content__inner {
  background-color: #fff;
  padding: 60px 80px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__inner {
    padding: 40px 30px;
  }
}
.page-privacy-policy-content__section {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__section {
    margin-bottom: 40px;
  }
}
.page-privacy-policy-content__section:last-child {
  margin-bottom: 0;
}
.page-privacy-policy-content__heading {
  font-size: 20px;
  color: #CA7F13;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  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: 18px;
    margin-bottom: 15px;
  }
}
.page-privacy-policy-content__text {
  font-size: 14px;
  line-height: 2;
  color: #333333;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__text {
    font-size: 13px;
    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: 20px 0 0 0;
}
.page-privacy-policy-content__list li {
  font-size: 14px;
  line-height: 2;
  color: #333333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__list li {
    font-size: 13px;
    line-height: 1.9;
    padding-left: 15px;
  }
}
.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: 30px;
  margin-top: 20px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__contact {
    padding: 20px;
  }
}
.page-privacy-policy-content__contact p {
  font-size: 14px;
  line-height: 2;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__contact p {
    font-size: 13px;
  }
}
.page-privacy-policy-content__date {
  margin-top: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__date {
    margin-top: 40px;
  }
}
.page-privacy-policy-content__date p {
  font-size: 13px;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-privacy-policy-content__date p {
    font-size: 12px;
  }
}

.page-sitemap {
  background-color: #F9F8F6;
}
.page-sitemap-hero {
  background-color: #f5f0eb;
  padding: 120px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-sitemap-hero {
    padding: 80px 20px;
  }
}
.page-sitemap-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-sitemap-hero__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  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: 28px;
    letter-spacing: 0.08em;
  }
}
.page-sitemap-breadcrumb {
  background-color: #D4CEBE;
  padding: 30px 60px;
}
@media (max-width: 767px) {
  .page-sitemap-breadcrumb {
    padding: 20px 20px;
  }
}
.page-sitemap-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #CA7F13;
}
@media (max-width: 767px) {
  .page-sitemap-breadcrumb__container {
    font-size: 12px;
    gap: 8px;
    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: 80px 60px 100px;
}
@media (max-width: 767px) {
  .page-sitemap-content {
    padding: 60px 30px 80px;
  }
}
.page-sitemap-content__container {
  max-width: 900px;
  margin: 0 auto;
}
.page-sitemap-content__inner {
  background-color: #fff;
  padding: 60px 80px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .page-sitemap-content__inner {
    padding: 40px 30px;
  }
}
.page-sitemap-content__section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(202, 127, 19, 0.1);
}
@media (max-width: 767px) {
  .page-sitemap-content__section {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
}
.page-sitemap-content__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.page-sitemap-content__heading {
  font-size: 24px;
  margin: 0 0 15px 0;
}
@media (max-width: 767px) {
  .page-sitemap-content__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.page-sitemap-content__main-link {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  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: 14px;
  color: #333333;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-sitemap-content__description {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.page-sitemap-content__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .page-sitemap-content__sub-list {
    gap: 8px;
  }
}
.page-sitemap-content__sub-list li {
  padding-left: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .page-sitemap-content__sub-list li {
    padding-left: 15px;
  }
}
.page-sitemap-content__sub-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #CA7F13;
}
.page-sitemap-content__sub-link {
  font-size: 14px;
  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: 13px;
  }
}
.page-sitemap-content__sub-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */