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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4a4a4a;
  background: #fbf9f4;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-padding {
  padding: clamp(2rem, 10vw, 3rem) 0;
}

.en-title {
  font-family: "Noto Serif JP", serif;
}

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

.u-mt-4 {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 50px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #467144;
  color: #ffffff;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .site-header {
    height: 50px;
  }
}
.site-header__bar {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.site-brand {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  z-index: 102;
}

.site-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  justify-content: flex-end;
}
.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0;
}
.site-nav a:hover {
  color: #ffffff;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-50%);
}
.site-nav a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .site-nav {
    display: none;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 0;
}
@media screen and (max-width: 1080px) {
  .site-header__actions {
    gap: 0.4rem;
    margin-left: auto;
  }
}

.header-link--tel {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 1080px) {
  .header-link--tel {
    display: none;
  }
}

.header-link--primary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5em 1.2em;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header-link--primary:hover {
  background: #ffffff;
  color: #467144;
}
@media screen and (max-width: 1080px) {
  .header-link--primary {
    display: none;
    display: none;
  }
}

.hamburger {
  display: none;
  width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  position: relative;
  z-index: 160;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px 0 0 0;
}
.hamburger span:not(.hamburger__label) {
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger__label {
  position: static;
  margin-top: -2px;
  font-size: 0.6rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1080px) {
  .hamburger {
    display: flex;
  }
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 150;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

body.menu-open .drawer-panel {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

body.menu-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .hamburger {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
}
.drawer-close::before, .drawer-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #333;
}
.drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer-nav a {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #467144;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(70, 113, 68, 0.3);
  width: 100%;
  text-align: center;
}

.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.drawer-link {
  padding: 0.8rem;
  border: 1px solid #467144;
  text-align: center;
  letter-spacing: 0.18em;
  border-radius: 4px;
}
.drawer-link--primary {
  background: #467144;
  color: #ffffff;
}

.site-footer {
  background: #467144;
  color: #ffffff;
  padding: 4rem 0;
  font-size: 0.8rem;
}
.site-footer__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    gap: 2rem;
  }
}

.footer-logo {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    gap: 1rem;
  }
}

.footer-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 999px;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

/* Page Top Button */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #467144;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.page-top:hover {
  background: #325131;
  transform: translateY(-5px);
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .page-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  max-height: 800px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 70px;
  color: #ffffff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: rgba(43, 62, 45, 0.6);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 62, 45, 0.35);
  z-index: 1;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-5%);
  width: min(1120px, 92vw);
}
.hero__logo-circle {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c422b;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .hero__logo-circle {
    width: 160px;
    height: 160px;
  }
}
.hero__logo-circle--image {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.hero__logo-circle--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__logo-main {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .hero__logo-main {
    font-size: 1.8rem;
  }
}
.hero__logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #467144;
  margin-top: 0.2rem;
}
.hero__text-box {
  color: #ffffff;
}
.hero__eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 4vw, 0.9rem);
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 1.1rem;
  }
}

.concept {
  position: relative;
  overflow: hidden;
  background: #fbf9f4;
}
.concept__bg-text {
  position: absolute;
  top: 40px;
  left: 60px;
  display: flex;
  flex-direction: column;
  line-height: 0.8;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  color: #2c422b;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .concept__bg-text {
    display: none;
  }
}
.concept__bg-num {
  font-size: 16rem;
  font-style: italic;
  display: block;
}
.concept__bg-label {
  font-size: 8rem;
  margin-top: -60px;
  margin-left: 40px;
  display: block;
}
.concept__intro-wrapper {
  width: 100%;
  max-width: none;
  margin: 4rem 0 6rem;
  display: flex;
  align-items: flex-start;
  padding-right: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .concept__intro-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
.concept__intro {
  flex: 0 0 45%;
  max-width: none;
  padding-left: max(4vw, 50% - min(1120px, 92vw) / 2);
  padding-right: 4rem;
  padding-top: 2vh;
}
@media screen and (max-width: 1080px) {
  .concept__intro {
    flex: 1;
    width: 100%;
    max-width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 0 4vw;
  }
}
.concept__intro-text {
  position: relative;
}
.concept .section-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  color: #467144;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .concept .section-eyebrow {
    font-size: 2.5rem;
  }
}
.concept .section-title {
  font-size: clamp(1.2rem, 3vw, 1.2rem);
  margin-bottom: 2rem;
  color: #2c422b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.concept .section-copy {
  line-height: 2.2;
  color: #4a4a4a;
  font-size: 1rem;
}
.concept__intro-img {
  flex: 0 0 55%;
  width: 55%;
  max-width: none;
  position: relative;
}
.concept__intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 10px 40px -10px rgba(70, 113, 68, 0.15);
  min-height: 400px;
}
@media screen and (max-width: 1080px) {
  .concept__intro-img {
    flex: auto;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .concept__intro-img img {
    border-radius: 20px;
    min-height: auto;
  }
}
.concept__grid {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.concept-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 1.7rem);
  min-width: 300px;
}
@media screen and (max-width: 1080px) {
  .concept-card {
    width: calc(50% - 1.25rem);
  }
}
@media screen and (max-width: 768px) {
  .concept-card {
    width: 100%;
  }
}
.concept-card:hover .concept-card__media img {
  transform: scale(1.05);
}
.concept-card__media {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.concept-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
.concept-card__label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #467144;
  border-radius: 999px;
}
.concept-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.concept-card__meta {
  margin-bottom: 1rem;
}
.concept-card__num {
  font-family: "Noto Serif JP", serif;
  color: #8ea58d;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}
.concept-card__title {
  font-size: 1.2rem;
  color: #2c422b;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.concept-card__desc {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.concept-card__more {
  margin-top: auto;
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #467144;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.concept-card__more:hover {
  opacity: 0.7;
}

.staff-section {
  background: #ffffff;
}
.staff-section__banner {
  width: 100%;
  height: 400px;
  background-image: url("https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
  color: #ffffff;
}
.staff-section__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 66, 43, 0.8);
}
.staff-section__title {
  position: relative;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 5rem;
  z-index: 1;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .staff-section__title {
    font-size: 2.5rem;
  }
}
.staff-section__sub {
  position: relative;
  font-size: 1rem;
  z-index: 1;
  letter-spacing: 0.3em;
  opacity: 0.9;
}
.staff-section__content {
  width: min(1120px, 92vw);
  margin: 0 auto;
  transform: translateY(-160px);
  margin-bottom: -100px;
  position: relative;
  z-index: 2;
}
.staff-section .staff__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff-section .staff__grid {
    flex-direction: column;
    max-width: 400px;
  }
}

.staff-card {
  background: #ffffff;
  padding: 0.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px -10px rgba(70, 113, 68, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  flex: 1 1 280px;
  max-width: 340px;
}
.staff-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
}
.staff-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-card__body {
  text-align: center;
  padding-bottom: 0.5rem;
}
.staff-card__role {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #467144;
  margin-bottom: 0.8rem;
  display: block;
}
.staff-card__name {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #2c422b;
  line-height: 1.4;
}

.btn-text-link {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #2c422b;
  border-bottom: 1px solid #d6e0d5;
  padding-bottom: 5px;
  transition: 0.3s;
  margin-top: 2rem;
}
.btn-text-link:hover {
  color: #467144;
  border-color: #467144;
}

.contents {
  background: #f2efe6;
  padding-bottom: 8rem;
}
.contents .section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.contents .section-heading .section-eyebrow {
  font-family: "Noto Serif JP", serif;
  color: #467144;
  letter-spacing: 0.3em;
  margin-top: 0;
  display: block;
  font-size: 1rem;
}
.contents .section-heading .section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  color: #2c422b;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contents .section-heading .section-title {
    font-size: 2rem;
  }
}
.contents__grid {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1080px) {
  .contents__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .contents__grid {
    grid-template-columns: 1fr;
  }
}

.contents-card {
  position: relative;
  height: 175px;
  border-radius: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 10px 40px -10px rgba(70, 113, 68, 0.15);
  transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.contents-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px -15px rgba(70, 113, 68, 0.25);
}
.contents-card:hover .contents-card__bg img {
  transform: scale(1.05);
}
.contents-card:hover .contents-card__overlay {
  background: rgba(44, 66, 43, 0.4);
}
.contents-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contents-card__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
.contents-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.4s;
  padding: 2rem;
}
.contents-card__overlay p {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.contents-card__overlay span {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.gallery-strip {
  padding: 8rem 0 4rem 0;
  overflow: hidden;
  max-width: 100vw;
  min-height: 350px;
  background: #fbf9f4;
}
@media screen and (max-width: 768px) {
  .gallery-strip {
    min-height: 250px;
    padding: 3rem 0 0 0;
  }
}
.gallery-strip__track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
  align-items: flex-start;
  padding: 0;
  background: #fbf9f4;
}
@media screen and (max-width: 1080px) {
  .gallery-strip__track {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .gallery-strip__track {
    padding: 0;
  }
}
.gallery-strip__item {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  overflow: hidden;
  background: #fbf9f4;
}
.gallery-strip__item--even {
  margin-top: 3rem;
}
@media screen and (max-width: 1080px) {
  .gallery-strip__item {
    width: 220px;
    height: 180px;
  }
  .gallery-strip__item--even {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .gallery-strip__item {
    width: 180px;
    height: 150px;
  }
  .gallery-strip__item--even {
    margin-top: 2.5rem;
  }
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.6s ease;
  background: transparent;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6B8E23, #9ACD32);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

.concept-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.concept-card.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.staff-card.animate-slide-in {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.staff-card.animate-slide-in.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.staff-card.animate-slide-in:nth-child(even) {
  transform: translateX(80px);
}
.staff-card.animate-slide-in:nth-child(even).is-visible {
  transform: translateX(0);
}

.contents-card.animate-scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contents-card.animate-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.contents-card {
  position: relative;
  overflow: hidden;
}
.contents-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.3), rgba(154, 205, 50, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.contents-card:hover::before {
  opacity: 1;
}
.contents-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.contents-card:hover .contents-card__bg img {
  transform: scale(1.2);
}
.contents-card .contents-card__bg img {
  transition: transform 0.6s ease;
}
.contents-card .contents-card__overlay {
  position: relative;
  z-index: 2;
}

.concept__intro.animate-slide-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.concept__intro.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.concept__intro-img.animate-slide-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.concept__intro-img.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gallery-strip__item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.gallery-strip__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

.concept-card,
.staff-card,
.contents-card,
.gallery-strip__item {
  will-change: transform, opacity;
}

.is-visible {
  will-change: auto;
}

@media (max-width: 768px) {
  .concept-card.animate-on-scroll {
    transform: translateY(40px) scale(0.98);
  }
  .staff-card.animate-slide-in {
    transform: translateX(-40px);
  }
  .staff-card.animate-slide-in:nth-child(even) {
    transform: translateX(40px);
  }
  .concept__intro.animate-slide-left,
  .concept__intro-img.animate-slide-right {
    transform: translateY(40px);
  }
  .concept__intro.animate-slide-left.is-visible,
  .concept__intro-img.animate-slide-right.is-visible {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*------------------------------------------------------------
 * Page Concept Styles
 *-------------------------------------------------------------*/
.page-concept {
  background: #fbf9f4;
}

/* Page Header */
.page-header {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 0;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 62, 45, 0.5);
}
.page-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header__title {
  font-size: 4.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.page-header__sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page-header {
    height: 400px;
    margin-top: 0;
  }
  .page-header__title {
    font-size: 2rem;
  }
}

/* Intro */
.concept-intro {
  padding-top: 5em;
  text-align: center;
}
.concept-intro__inner {
  width: min(800px, 92vw);
  margin: 0 auto;
}
.concept-intro__lead {
  color: #467144;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.concept-intro__text {
  text-align: center;
  display: inline-block;
  max-width: 600px;
  margin: 2em auto;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .concept-intro__title {
    font-size: 1.5rem;
  }
  .concept-intro .u-sp-only {
    display: block;
  }
}

/* Nav */
.concept-nav {
  width: min(1120px, 92vw);
  margin: 0 auto 5rem;
}
.concept-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  list-style: none;
  flex-wrap: nowrap;
  width: 100%;
}
.concept-nav__list li {
  width: 19%;
  flex-shrink: 0;
}
.concept-nav__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #467144;
  text-decoration: none;
  padding: 1.5rem 0.5rem;
  position: relative;
  height: 100%;
  text-align: center;
  transition: opacity 0.3s;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background-image: linear-gradient(to bottom, #dcdcdc 15px, transparent 15px), linear-gradient(to top, #dcdcdc 15px, transparent 15px), linear-gradient(to bottom, #dcdcdc 15px, transparent 15px), linear-gradient(to top, #dcdcdc 15px, transparent 15px);
  background-position: left top, left bottom, right top, right bottom;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}
.concept-nav__list li a::before, .concept-nav__list li a::after {
  display: none;
}
.concept-nav__list li a:hover {
  opacity: 0.7;
}
.concept-nav__list li a .num {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  border: none;
}
.concept-nav__list li a .label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #2c422b;
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .concept-nav {
    margin-bottom: 3rem;
  }
  .concept-nav__list {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .concept-nav__list li {
    width: calc(50% - 0.5rem);
  }
}

/* Concept List Structure */
.concept-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .concept-container {
    gap: 6rem;
    padding-bottom: 3rem;
  }
}

.concept-section {
  width: 100%;
}

/* Main Visual Header */
.concept-main-visual {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .concept-main-visual {
    margin-bottom: 3rem;
  }
}
.concept-main-visual__img {
  width: 100%;
  height: 480px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .concept-main-visual__img {
    height: 300px;
  }
}
.concept-main-visual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-main-visual__box {
  position: absolute;
  bottom: 50px;
  left: 10%;
  background: rgba(44, 66, 43, 0.85);
  color: #fff;
  padding: 3rem;
  width: 600px;
  max-width: 90%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 768px) {
  .concept-main-visual__box {
    position: static;
    width: 90%;
    margin: -50px auto 0;
    padding: 2rem;
    text-align: center;
  }
}
.concept-main-visual__box .concept-label {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.concept-main-visual__box .concept-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .concept-main-visual__box .concept-title {
    font-size: 1.5rem;
  }
}
.concept-main-visual__box .concept-sub {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0.9;
}

/* Child Sections */
.concept-children {
  width: min(1120px, 92vw);
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .concept-children {
    gap: 2rem;
  }
}

.concept-child {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.concept-child--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .concept-child {
    flex-direction: column !important;
    gap: 2rem;
  }
}
.concept-child__content {
  flex: 1;
}
.concept-child__image {
  width: 45%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .concept-child__image {
    width: 100%;
  }
}
.concept-child__image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .concept-child__image img {
    height: 280px;
  }
}
.concept-child .child-en-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  color: #467144;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(70, 113, 68, 0.3);
  display: block;
  padding-bottom: 0.2rem;
}
.concept-child .child-jp-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.concept-child .child-list-box {
  background: #f7f7f7;
  padding: 1.5rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
}
.concept-child .child-list-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.concept-child .child-list-box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
.concept-child .child-list-box ul li:last-child {
  margin-bottom: 0;
}
.concept-child .child-list-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4a373;
}
.concept-child .child-list-box ul li.is-bold {
  font-weight: 700;
}
.concept-child .child-list-box ul li.no-check {
  padding-left: 0.5rem;
}
.concept-child .child-list-box ul li.no-check::before {
  display: none;
}
.concept-child .child-list-box ul li.is-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}
.concept-child .child-text {
  font-size: 1rem;
  line-height: 2;
  color: #4a4a4a;
  margin-bottom: 1.4rem;
}
.concept-child .child-text:last-child {
  margin-bottom: 0;
}

/* Bottom Area */
.concept-bottom {
  background: #d6e0d5;
  text-align: center;
}
.concept-bottom__inner {
  width: min(600px, 92vw);
  margin: 0 auto;
}
.concept-bottom h2 {
  color: #467144;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.concept-bottom p {
  line-height: 2;
}

/* Animation Styles */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/*------------------------------------------------------------
 * Page Menu Styles
 *-------------------------------------------------------------*/
.page-menu {
  background: #fbf9f4;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .page-menu {
    padding-bottom: 5rem;
  }
}

/* Header Override for Menu */
.page-header--menu {
  background: none;
  height: auto;
  padding: 120px 0 120px;
  color: #467144;
}
.page-header--menu::after {
  display: none;
}
.page-header--menu .page-header__inner {
  text-align: center;
}
.page-header--menu .page-header__title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-header--menu .page-header__title {
    font-size: 2.5rem;
  }
}
.page-header--menu .page-header__sub {
  color: #4a4a4a;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

.page-menu__note {
  text-align: center;
  font-size: 0.8rem;
  color: #7a7a7a;
  margin-bottom: 4rem;
}

/* Menu List */
.menu-list {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .menu-list {
    gap: 5rem;
  }
}

.menu-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
}
.menu-section--reverse .menu-section__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .menu-section__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .menu-section--reverse .menu-section__inner {
    flex-direction: column;
    /* Force stack */
  }
}

.menu-visual {
  width: 45%;
}
.menu-visual img {
  width: 100%;
  height: 340px;
  /* Consistent height */
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .menu-visual {
    width: 100%;
  }
  .menu-visual img {
    height: 200px;
  }
}

.menu-content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .menu-content {
    width: 100%;
  }
}

.menu-title {
  font-size: 2rem;
  color: #2c422b;
  margin-bottom: 3rem;
  display: block;
  text-align: center;
  line-height: 1;
  width: 100%;
}
.menu-title .jp {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  letter-spacing: 0.2em;
  color: #7a7a7a;
  font-weight: 400;
  border-bottom: 1px solid rgba(122, 122, 122, 0.3);
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .menu-title {
    align-items: center;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item-note {
  font-size: 0.8rem;
  color: #7a7a7a;
  text-align: left;
  margin-top: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
.menu-item__name {
  font-size: 0.95rem;
  color: #000;
  font-weight: bold;
  flex: 1;
}
.menu-item__price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #2c422b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Contact Area */
.menu-contact {
  margin-top: 8rem;
}
.menu-contact__inner {
  width: min(800px, 92vw);
  margin: 0 auto;
  border: 1px solid #467144;
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}
.menu-contact h2 {
  font-size: 2.5rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.menu-contact .ja-sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.menu-contact__actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .menu-contact__actions {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.menu-contact__note {
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #467144;
  min-width: 240px;
}
.contact-btn .main {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #467144;
  line-height: 1.2;
}
.contact-btn .sub {
  font-size: 0.7rem;
  color: #467144;
  letter-spacing: 0.1em;
}
.contact-btn--web {
  border: 1px solid #467144;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.3s;
}
.contact-btn--web:hover {
  background: #467144;
}
.contact-btn--web:hover .main,
.contact-btn--web:hover .sub {
  color: #ffffff;
}

/*------------------------------------------------------------
 * Page Salon Styles
 *-------------------------------------------------------------*/
.page-salon {
  background: #fbf9f4;
}

/* Header Override for Salon */
.page-header--salon {
  background: none;
  height: auto;
  padding: 120px 0 120px;
  color: #467144;
}
.page-header--salon::after {
  display: none;
}
.page-header--salon .page-header__inner {
  text-align: center;
}
.page-header--salon .page-header__title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-header--salon .page-header__title {
    font-size: 2.5rem;
  }
}
.page-header--salon .page-header__sub {
  color: #4a4a4a;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

/* Gallery */
.salon-gallery {
  width: 100%;
  margin-bottom: 5rem;
}
.salon-gallery__inner {
  width: min(1120px, 92vw);
  max-width: 1120px;
  margin: 0 auto;
}
.salon-gallery .salon-slider {
  position: relative;
  width: 100%;
  margin: 0;
}
.salon-gallery .salon-slider .swiper-slide {
  height: clamp(260px, 60vh, 320px);
  display: flex;
  align-items: center;
}
.salon-gallery__item {
  position: relative;
  width: 100%;
  height: clamp(260px, 60vh, 320px);
  overflow: hidden;
}
.salon-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.salon-gallery .salon-thumbs {
  width: 50%;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .salon-gallery .salon-thumbs {
    width: 96%;
  }
}
.salon-gallery .salon-thumbs__item {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.salon-gallery .salon-thumbs__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Info */
.salon-info {
  width: min(1120px, 92vw);
  margin: 120px auto 120px;
}
.salon-info__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr;
  gap: 0;
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .salon-info__grid {
    display: block;
    gap: 2rem;
  }
}
.salon-info__col {
  padding: 0 3rem;
  border-right: 1px solid #ddd;
}
.salon-info__col:first-child {
  padding-left: 0;
}
.salon-info__col:last-child {
  border-right: none;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .salon-info__col {
    padding: 0;
    border-right: none;
    margin-bottom: 3rem;
  }
  .salon-info__col:last-child {
    margin-bottom: 0;
  }
}
.salon-info__title {
  font-size: 1.25rem;
  color: #467144;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.salon-info__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.u-mt-4 {
  margin-top: 2rem;
}

.btn-green-block {
  display: block;
  background: #1a3c0e;
  /* Darker green from image */
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.btn-green-block:hover {
  opacity: 0.8;
}

/* Map */
.salon-map {
  margin-bottom: 5rem;
}
.salon-map__iframe {
  width: 100%;
  height: 400px;
}
.salon-map__iframe iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2);
}
@media screen and (max-width: 768px) {
  .salon-map__iframe {
    height: 300px;
  }
}
.salon-map__link {
  text-align: center;
  margin-top: 1rem;
}
.salon-map__link a {
  font-size: 0.8rem;
  color: #7a7a7a;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Origin */
.salon-origin {
  background: #eff3ef;
  /* Light green/gray tint */
  margin-top: 120px;
  padding: 5rem 0;
  text-align: left;
}
.salon-origin__inner {
  width: min(800px, 90vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  /* Image shows left aligned text block centered on screen? Actually image text looks left aligned but box centered. */
}
.salon-origin__logo {
  font-size: 2rem;
  color: #7a7a7a;
  margin-bottom: 3rem;
  text-align: center;
  width: 100%;
}
.salon-origin__content {
  width: 100%;
  max-width: 600px;
}
.salon-origin__heading {
  font-size: 1.5rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
.salon-origin__heading .en {
  display: block;
}
.salon-origin__heading .jp {
  font-size: 0.8rem;
  color: #7a7a7a;
  margin-left: 0;
  font-weight: normal;
  display: block;
  border-bottom: 1px solid #ddd;
  padding-bottom: 16px;
}
.salon-origin__text {
  font-size: 0.9rem;
  line-height: 2;
  color: #4a4a4a;
}

/* Contact CTA */
.salon-contact {
  padding: 8rem 0;
}
.salon-contact__box {
  width: min(800px, 90vw);
  margin: 0 auto;
  border: 1px solid #7a7a7a;
  padding: 4rem 2rem;
  text-align: center;
}
.salon-contact__title {
  font-size: 2.5rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.salon-contact__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.salon-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .salon-contact__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.salon-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 100px;
  border: 1px solid #7a7a7a;
  background: #ffffff;
  color: #467144;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .salon-contact__btn {
    width: 100%;
    height: 80px;
  }
}
.salon-contact__btn .en {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}
.salon-contact__btn .jp {
  font-size: 0.8rem;
}
.salon-contact__btn:hover {
  border-color: #467144;
  background: #467144;
  color: #ffffff;
}
.salon-contact__tel p {
  font-size: 0.8rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.salon-contact__tel .tel-number {
  font-size: 1.5rem;
  color: #467144;
}

/*------------------------------------------------------------
 * Page Staff Styles
 *-------------------------------------------------------------*/
.page-staff {
  background: #fbf9f4;
}

/* Header Override for Staff */
.page-header--staff {
  background: none;
  height: auto;
  padding: 120px 0 120px;
  color: #467144;
}
.page-header--staff::after {
  display: none;
}
.page-header--staff .page-header__inner {
  text-align: center;
}
.page-header--staff .page-header__title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-header--staff .page-header__title {
    font-size: 2.5rem;
  }
}
.page-header--staff .page-header__sub {
  color: #4a4a4a;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

/* Staff List */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .staff-list {
    gap: 6rem;
    padding-bottom: 3rem;
  }
}

.staff-member {
  width: min(1000px, 92vw);
  margin: 0 auto;
}
.staff-member__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 
  	Grid Areas:
  	visual info
  	skill hobby
  */
  grid-template-areas: "visual info" "skill hobby";
}
@media screen and (max-width: 768px) {
  .staff-member__inner {
    display: flex;
    flex-direction: column;
  }
}

/* 1. Visual (Top Left) */
.staff-visual {
  grid-area: visual;
  width: 115%;
  height: 480px;
  position: relative;
  z-index: 5;
  margin-bottom: -60px;
}
.staff-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .staff-visual {
    width: 100%;
    height: 400px;
    box-shadow: none;
    margin-bottom: 0;
  }
}

/* 2. Info (Top Right) */
.staff-info {
  grid-area: info;
  padding: 4rem 4rem 4rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .staff-info {
    padding: 2rem;
  }
}

.staff-role {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #4a4a4a;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d0d0d0;
  display: block;
  padding-bottom: 0.5rem;
}

.staff-name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  color: #4a4a4a;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.staff-name .jp {
  display: block;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  color: #7a7a7a;
}

.staff-message {
  font-size: 0.95rem;
  line-height: 2;
  color: #4a4a4a;
}

/* 3. Skill (Bottom Left) */
.staff-skill {
  grid-area: skill;
  padding: 5rem 4rem 4rem 1rem;
}
@media screen and (max-width: 768px) {
  .staff-skill {
    padding: 0 2rem 2rem;
  }
}

/* 4. Hobby (Bottom Right) */
.staff-hobby {
  grid-area: hobby;
  background: #f4efef;
  padding: 5rem 4rem 4rem;
  margin-top: 0;
  margin-left: -50px;
  position: relative;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .staff-hobby {
    padding: 2rem;
    margin: 0 auto;
    width: 90%;
    z-index: 10;
  }
}

/* Titles and Text for Details */
.staff-details__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  display: block;
}

.staff-details__text {
  font-size: 0.95rem;
  line-height: 2;
  color: #4a4a4a;
}

/* Contact CTA (Reuse from Salon) */
.staff-contact {
  padding: 0 0 8rem;
}
.staff-contact__box {
  width: min(800px, 90vw);
  margin: 0 auto;
  border: 1px solid #d0d0d0;
  padding: 4rem 2rem;
  text-align: center;
}
.staff-contact__title {
  font-size: 2.5rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.staff-contact__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.staff-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .staff-contact__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.staff-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 100px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #467144;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .staff-contact__btn {
    width: 100%;
    height: 80px;
  }
}
.staff-contact__btn .en {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}
.staff-contact__btn .jp {
  font-size: 0.8rem;
}
.staff-contact__btn:hover {
  border-color: #467144;
  background: #467144;
  color: #ffffff;
}
.staff-contact__tel p {
  font-size: 0.8rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.staff-contact__tel .tel-number {
  font-size: 1.5rem;
  color: #467144;
}

/*------------------------------------------------------------
 * Page Privacy Policy Styles
 *-------------------------------------------------------------*/
.page-privacy {
  background: #ffffff;
  background: #fbf9f4;
}

/* Header Override for Privacy */
.page-header--privacy {
  background: none;
  height: auto;
  padding: 120px 0 120px;
  color: #467144;
}
.page-header--privacy::after {
  display: none;
}
.page-header--privacy .page-header__inner {
  text-align: center;
}
.page-header--privacy .page-header__title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-header--privacy .page-header__title {
    font-size: 2rem;
  }
}
.page-header--privacy .page-header__sub {
  color: #4a4a4a;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

/* Content */
.privacy-content {
  padding-bottom: 5rem;
}
.privacy-content__inner {
  width: min(900px, 90vw);
  margin: 0 auto;
}
.privacy-content__inner h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 1rem;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5rem;
  display: block;
  margin-top: 3rem;
}
.privacy-content__inner p {
  font-size: 0.9rem;
  line-height: 2;
  color: #4a4a4a;
  margin-bottom: 1rem;
}
.privacy-content__inner p:first-child {
  font-size: 0.95rem;
  margin-bottom: 4rem;
}
.privacy-content__inner ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content__inner ul li {
  position: relative;
  font-size: 0.9rem;
  line-height: 2;
  color: #4a4a4a;
}
.privacy-content__inner ul li::before {
  content: "・";
  position: absolute;
  left: -1rem;
}

.privacy-intro {
  font-size: 0.95rem;
  line-height: 2;
  color: #4a4a4a;
  margin-bottom: 4rem;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  /* Thin separation line visible in design? Actually looks like just bold text, maybe small border */
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dcdcdc;
  display: block;
}

.privacy-text {
  font-size: 0.9rem;
  line-height: 2;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: none;
  padding-left: 1.5rem;
}
.privacy-list li {
  position: relative;
  font-size: 0.9rem;
  line-height: 2;
  color: #4a4a4a;
}
.privacy-list li::before {
  content: "・";
  position: absolute;
  left: -1rem;
}

/* Contact CTA (Reuse from others) */
.privacy-contact {
  padding: 0 0 8rem;
}
.privacy-contact__box {
  width: min(800px, 90vw);
  margin: 0 auto;
  border: 1px solid #d0d0d0;
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}
.privacy-contact__title {
  font-size: 2.5rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.privacy-contact__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.privacy-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .privacy-contact__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.privacy-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 100px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #467144;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .privacy-contact__btn {
    width: 100%;
    height: 80px;
  }
}
.privacy-contact__btn .en {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}
.privacy-contact__btn .jp {
  font-size: 0.8rem;
}
.privacy-contact__btn:hover {
  border-color: #467144;
  background: #467144;
  color: #ffffff;
}
.privacy-contact__tel p {
  font-size: 0.8rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.privacy-contact__tel .tel-number {
  font-size: 1.5rem;
  color: #467144;
}

/*------------------------------------------------------------
 * Common Contact Section Styles
 *-------------------------------------------------------------*/
.common-contact {
  padding: 8em 0 8rem;
  background: #fbf9f4;
  /* Default, can be overridden by page context if needed, but usually white box on white/beige bg */
}
.common-contact__box {
  width: min(800px, 90vw);
  margin: 0 auto;
  border: 1px solid #d0d0d0;
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}
.common-contact__title {
  font-size: 2.5rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.common-contact__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: -1rem;
  margin-bottom: 3rem;
  color: #4a4a4a;
}
.common-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .common-contact__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.common-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 100px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #467144;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .common-contact__btn {
    width: 100%;
    height: 80px;
  }
}
.common-contact__btn:first-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .common-contact__btn:first-child {
    border-right: 1px solid #d0d0d0;
  }
}
.common-contact__btn .en {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}
.common-contact__btn .jp {
  font-size: 0.8rem;
  color: #4a4a4a;
  transition: 0.3s;
}
.common-contact__btn:hover {
  border-color: #467144;
  background: #467144;
  color: #ffffff;
}
.common-contact__btn:hover .jp {
  color: #ffffff;
}
.common-contact__tel p {
  font-size: 0.8rem;
  color: #467144;
  margin-bottom: 0.5rem;
}
.common-contact__tel .tel-number {
  font-size: 1.5rem;
  color: #467144;
  font-family: "Noto Serif JP", serif;
}/*# sourceMappingURL=style.css.map */
  font-size: 1.5rem;
  color: #467144;
  font-family: "Noto Serif JP", serif;
}/*# sourceMappingURL=style.css.map */
  font-size: 1.5rem;
  color: #467144;
  font-family: "Noto Serif JP", serif;
}/*# sourceMappingURL=style.css.map */