.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #000;
  margin: 15px auto 0;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #000;
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.btn--outline {
  border: 1px solid #000;
  color: #000;
}
.btn--outline:hover {
  background-color: #000;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex, .header__nav-list, .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex--between, .header__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

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

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fadeIn 1s ease-in;
          animation: fadeIn 1s ease-in;
}

.hover-opacity {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hover-opacity:hover {
  opacity: 0.7;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
}
body {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.button {
  display: inline-block;
  min-width: 200px;
  padding: 15px 45px;
  background: linear-gradient(45deg, #98c1b6 0%, #b7d4cc 50%, #98c1b6 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button--nail {
  background: #DCEDC8;
  color: #333333;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #b7d4cc 0%, #98c1b6 50%, #b7d4cc 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}
.button:hover::before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .button {
    min-width: 180px;
    padding: 12px 35px;
    font-size: 15px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 1000;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
}
.header__inner {
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo-link {
  display: block;
  width: 50px;
  height: 50px;
}
.header__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__logo-link:hover {
  opacity: 0.7;
}
.header__nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
}
.header__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.header__nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 120px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-box-shadow: -5px 0 20px rgba(51, 51, 51, 0.1);
          box-shadow: -5px 0 20px rgba(51, 51, 51, 0.1);
}
.header__nav.is-active {
  pointer-events: auto;
}
.header__nav.is-active::before {
  opacity: 1;
}
.header__nav.is-active .header__nav-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__nav-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
.is-active .header__nav-list {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__nav-item {
  width: 100%;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4DBBAC;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.header__nav-item:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__nav-link {
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 20px;
  display: inline-block;
}
.header__nav-link:hover {
  color: #4DBBAC;
}
.header__nav-link--reserve {
  background-color: #4DBBAC;
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 30px;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-link--reserve:hover {
  background-color: #3b9a8d;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.hamburger {
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
  background-color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  -webkit-box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #4DBBAC;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger__line:nth-child(1) {
  top: 17px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hamburger__line:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hamburger__line:nth-child(3) {
  bottom: 17px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(51, 51, 51, 0.15);
          box-shadow: 0 4px 15px rgba(51, 51, 51, 0.15);
}
.hamburger.is-active {
  background-color: #FFFFFF;
}
.hamburger.is-active .hamburger__line {
  background-color: #4DBBAC;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.is-scrolled .hamburger {
  background-color: #FFFFFF;
}
.is-scrolled .hamburger__line {
  background-color: #4DBBAC;
}
.is-scrolled .hamburger:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 1024px) {
  .header__nav-content {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
  .header__logo-link {
    font-size: 20px;
  }
  .header__nav-content {
    width: 70%;
    padding: 80px 20px 40px;
  }
  .header__nav-link {
    font-size: 16px;
  }
  .hamburger {
    width: 44px;
    height: 44px;
  }
  .hamburger__line {
    width: 20px;
  }
  .hamburger__line:nth-child(1) {
    top: 15px;
  }
  .hamburger__line:nth-child(3) {
    bottom: 15px;
  }
}
.fv {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.fv__slider {
  position: relative;
  width: 66.666%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.fv__slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s ease, -webkit-transform 6s ease;
  transition: opacity 2s ease, -webkit-transform 6s ease;
  transition: opacity 2s ease, transform 6s ease;
  transition: opacity 2s ease, transform 6s ease, -webkit-transform 6s ease;
}
.fv__slider-item.is-active {
  opacity: 1;
}
.fv__slider-item.is-active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fv__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 6s ease;
  transition: -webkit-transform 6s ease;
  transition: transform 6s ease;
  transition: transform 6s ease, -webkit-transform 6s ease;
}
.fv__title-wrapper {
  position: absolute;
  top: 50%;
  left: 66.666%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__title-wrapper::before {
  display: none;
}
.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Italiana", serif;
}
.fv__title span {
  display: inline-block;
  font-size: 60px;
  font-weight: bold;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(51, 51, 51, 0.2);
  letter-spacing: 0.05em;
}
.fv__title span:nth-child(1), .fv__title span:nth-child(2) {
  margin-bottom: 20px;
}
.fv__subtitle {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(51, 51, 51, 0.2);
  opacity: 0.9;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
}
.fv__fixed {
  width: 33.334%;
  height: 100%;
  position: relative;
  background-color: rgba(77, 187, 172, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1;
}
.fv__fixed-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  overflow: hidden;
}
.fv__fixed-image::before, .fv__fixed-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-animation: wave 8s infinite linear;
          animation: wave 8s infinite linear;
}
.fv__fixed-image::after {
  animation: wave 12s infinite linear reverse;
  opacity: 0.5;
}
.fv__fixed-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: floating 6s ease-in-out infinite;
          animation: floating 6s ease-in-out infinite;
  -webkit-filter: brightness(1.1) contrast(0.95);
          filter: brightness(1.1) contrast(0.95);
}
.fv__fixed-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(77, 187, 172, 0.2), rgba(140, 212, 203, 0.2));
  mix-blend-mode: overlay;
  -webkit-animation: gradientShift 8s ease-in-out infinite alternate;
          animation: gradientShift 8s ease-in-out infinite alternate;
}
.fv__fixed-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #333333;
  z-index: 1;
}
.fv__fixed-content {
  position: absolute;
  top: 50%;
  left: 66.666%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__catch {
  position: absolute;
  bottom: 20%;
  left: 33.333%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 10;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  padding: 20px;
  background: rgba(51, 51, 51, 0.4);
}
.fv__catch-main {
  display: block;
  font-size: 42px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(45deg, #fff 0%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.3);
}
.fv__catch-sub {
  display: block;
  font-size: 28px;
  letter-spacing: 0.2em;
  font-weight: 300;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8) 0%, #fff 50%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.2);
}
.fv__catch-jp {
  display: block;
  margin-top: 25px;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(51, 51, 51, 0.2);
}
.fv__catch-jp-line {
  display: inline;
}
.fv__catch::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fv {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fv__slider {
    width: 80%;
    height: 100vh;
    margin-left: 0;
    z-index: 2;
    overflow: hidden;
  }
  .fv__title-wrapper {
    left: 80%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .fv__title-wrapper::before {
    width: 100px;
    height: 400px;
  }
  .fv__title span {
    font-size: 42px;
  }
  .fv__subtitle {
    font-size: 14px;
    margin-top: 30px;
  }
  .fv__fixed {
    position: absolute;
    top: 20vh;
    right: 0;
    width: 60%;
    height: 80vh;
    z-index: 1;
  }
  .fv__fixed-image {
    opacity: 0.5;
  }
  .fv__fixed-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 3;
  }
  .fv__fixed-content {
    left: 40%;
    top: 60%;
  }
  .fv__catch {
    left: 40%;
    bottom: 15%;
  }
  .fv__catch-main {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .fv__catch-sub {
    font-size: 24px;
  }
  .fv__catch-jp {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .fv__slider {
    width: 80%;
  }
  .fv__title-wrapper {
    left: 80%;
  }
  .fv__title-wrapper::before {
    width: 80px;
    height: 350px;
  }
  .fv__title span {
    font-size: 36px;
    gap: 8px;
  }
  .fv__subtitle {
    font-size: 12px;
    margin-top: 20px;
  }
  .fv__fixed {
    width: 65%;
  }
  .fv__fixed-content {
    bottom: 15%;
  }
  .fv__fixed-content {
    left: 42.5%;
    top: 65%;
  }
  .fv__catch {
    left: 40%;
    bottom: 12%;
  }
  .fv__catch-main {
    font-size: 32px;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
  }
  .fv__catch-sub {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .fv__catch-jp {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .fv__catch-jp-line {
    display: block;
    line-height: 1.8;
  }
}

@-webkit-keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
  }
  50% {
    -webkit-transform: translateY(-10px) scale(1);
            transform: translateY(-10px) scale(1);
  }
}

@keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
  }
  50% {
    -webkit-transform: translateY(-10px) scale(1);
            transform: translateY(-10px) scale(1);
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(0deg) scale(1.2);
            transform: rotate(0deg) scale(1.2);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.1);
            transform: rotate(180deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1.2);
            transform: rotate(360deg) scale(1.2);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotate(0deg) scale(1.2);
            transform: rotate(0deg) scale(1.2);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.1);
            transform: rotate(180deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1.2);
            transform: rotate(360deg) scale(1.2);
  }
}
@-webkit-keyframes gradientShift {
  0% {
    opacity: 0.3;
    background-position: 0% 0%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.3;
    background-position: 100% 100%;
  }
}
@keyframes gradientShift {
  0% {
    opacity: 0.3;
    background-position: 0% 0%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.3;
    background-position: 100% 100%;
  }
}
.fv__fixed-image::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: lightPass 10s ease-in-out infinite;
          animation: lightPass 10s ease-in-out infinite;
}

@-webkit-keyframes lightPass {
  0% {
    -webkit-transform: rotate(45deg) translateY(0%);
            transform: rotate(45deg) translateY(0%);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    -webkit-transform: rotate(45deg) translateY(100%);
            transform: rotate(45deg) translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(45deg) translateY(100%);
            transform: rotate(45deg) translateY(100%);
    opacity: 0;
  }
}

@keyframes lightPass {
  0% {
    -webkit-transform: rotate(45deg) translateY(0%);
            transform: rotate(45deg) translateY(0%);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    -webkit-transform: rotate(45deg) translateY(100%);
            transform: rotate(45deg) translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(45deg) translateY(100%);
            transform: rotate(45deg) translateY(100%);
    opacity: 0;
  }
}
.about {
  padding: 100px 0;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__catch {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
.about__catch-text {
  display: block;
  font-size: 20px;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #4DBBAC;
}
.about__catch-text + .about__catch-text {
  margin-top: 5px;
}
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.about__image {
  width: 45%;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about__content {
  width: 50%;
}
.about__title {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.about__description {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.about__symptoms {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #4DBBAC;
  letter-spacing: 0.1em;
}
.about__message {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  color: rgba(51, 51, 51, 0.8);
}
.about__button {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 80px 0;
  }
  .about__catch {
    margin-bottom: 60px;
  }
  .about__catch-text {
    font-size: 18px;
  }
  .about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .about__image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .about__content {
    width: 100%;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .about__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .about__symptoms {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .about__message {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
  .about__catch {
    margin-bottom: 40px;
  }
  .about__catch-text {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .about__body {
    gap: 30px;
  }
  .about__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .about__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .about__symptoms {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .about__message {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.js-fade-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.js-fade-up.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-delay-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-delay-3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js-delay-4 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js-delay-5 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.campaign {
  padding: 100px 0;
  overflow: hidden;
  background: #f8f8f8;
}
.campaign__slider {
  width: 100%;
  position: relative;
}
.campaign__slider-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
}
.campaign__slider-inner:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.campaign__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 40px;
}
.campaign__item {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
}
.campaign__item:last-child {
  margin-right: 40px;
}
.campaign__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .campaign {
    padding: 80px 0;
  }
  .campaign__items {
    padding: 0 30px;
  }
  .campaign__item {
    width: 300px;
    margin-right: 40px;
  }
  .campaign__item:last-child {
    margin-right: 30px;
  }
  .campaign__item img {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .campaign {
    padding: 60px 0;
  }
  .campaign__items {
    padding: 0 20px;
  }
  .campaign__item {
    width: 260px;
    margin-right: 30px;
  }
  .campaign__item:last-child {
    margin-right: 20px;
  }
  .campaign__item img {
    height: 130px;
  }
}
.menu {
  padding: 100px 0;
}
.menu__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  font-family: "Italiana", serif;
}
.menu__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu__item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  text-decoration: none;
}
.menu__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(51, 51, 51, 0.15);
          box-shadow: 0 5px 15px rgba(51, 51, 51, 0.15);
}
.menu__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.menu__item--coming-soon {
  position: relative;
  cursor: default;
}
.menu__item--coming-soon:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}
.menu__item--coming-soon:hover img {
  -webkit-transform: none;
          transform: none;
}
.menu__item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.menu__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.menu__item-coming-soon {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(51, 51, 51, 0.5);
  background: rgba(77, 187, 172, 0.8);
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid #FFFFFF;
}
.menu__item-content {
  padding: 25px;
}
.menu__item-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  color: #4DBBAC;
  line-height: 1.6;
}
.menu__item-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.8);
}
.menu__nail-card {
  margin: 60px auto;
  max-width: 400px;
}
.menu__nail-link {
  display: block;
  background: #FFFFFF;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 20px rgba(51, 51, 51, 0.1);
          box-shadow: 0 5px 20px rgba(51, 51, 51, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-decoration: none;
}
.menu__nail-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
          box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}
.menu__nail-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.menu__nail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.menu__nail-link:hover .menu__nail-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.menu__nail-content {
  padding: 30px;
  text-align: center;
}
.menu__nail-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}
.menu__nail-text {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.6);
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .menu {
    padding: 80px 0;
  }
  .menu__title {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .menu__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  .menu__item-content {
    padding: 20px;
  }
  .menu__item-title {
    font-size: 16px;
  }
  .menu__nail-card {
    margin: 40px auto;
    max-width: 350px;
  }
  .menu__nail-content {
    padding: 25px;
  }
  .menu__nail-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    padding: 60px 0;
  }
  .menu__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .menu__items {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .menu__item-image {
    height: 180px;
  }
  .menu__item-content {
    padding: 15px;
  }
  .menu__item-title {
    font-size: 15px;
  }
  .menu__item-text {
    font-size: 13px;
  }
  .menu__item-coming-soon {
    font-size: 18px;
    padding: 8px 16px;
  }
  .menu__nail-card {
    margin: 30px auto;
    max-width: 300px;
  }
  .menu__nail-image {
    height: 200px;
  }
  .menu__nail-content {
    padding: 20px;
  }
  .menu__nail-title {
    font-size: 20px;
  }
  .menu__nail-text {
    font-size: 14px;
  }
}
.menu__flow {
  margin-top: 80px;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .menu__flow {
    margin-top: 60px;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .menu__flow {
    margin-top: 40px;
    padding: 20px;
  }
}

.voice {
  padding: 100px 0;
  background: #f8f8f8;
  overflow: hidden;
}
.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.voice__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  font-family: "Italiana", serif;
}
.voice__slider {
  width: 100%;
  overflow: hidden;
}
.voice__slider-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: voiceSlide 30s linear infinite;
          animation: voiceSlide 30s linear infinite;
}
.voice__slider-inner:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.voice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.voice__item {
  width: 300px;
  height: 300px;
  background: #FFFFFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.voice__item-inner {
  padding: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.voice__text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 30px;
}
.voice__info {
  font-size: 14px;
  color: #4DBBAC;
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@-webkit-keyframes voiceSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes voiceSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .voice {
    padding: 80px 0;
  }
  .voice__title {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .voice__item {
    width: 260px;
    height: 260px;
  }
  .voice__item-inner {
    padding: 25px;
  }
  .voice__text {
    font-size: 14px;
  }
  .voice__info {
    bottom: 25px;
    right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 60px 0;
  }
  .voice__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .voice__item {
    width: 240px;
    height: 240px;
  }
  .voice__item-inner {
    padding: 20px;
  }
  .voice__text {
    font-size: 13px;
  }
  .voice__info {
    bottom: 20px;
    right: 20px;
  }
}
.footer {
  padding: 80px 0 30px;
  background: linear-gradient(135deg, #98c1b6 0%, #b7d4cc 100%);
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.footer__left {
  width: 300px;
}
.footer__logo {
  width: 400px;
  height: auto;
}
.footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__right {
  width: 500px;
}
.footer__info {
  margin-bottom: 40px;
}
.footer__info-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.footer__info-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin-bottom: 15px;
}
.footer__info-list dt {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer__info-list dd {
  color: #FFFFFF;
}
.footer__info-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__buttons .button {
  background: #FFFFFF;
  color: #98c1b6;
}
.footer__buttons .button::before {
  background: rgba(255, 255, 255, 0.9);
}
.footer__faq-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 15px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__faq-link:hover {
  opacity: 0.8;
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
}
.footer__baridon {
  text-align: center;
  padding-top: 20px;
}
.footer__baridon-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__baridon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__baridon-link img {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__baridon-link:hover {
  opacity: 0.8;
}
.footer__baridon-logo {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  font-family: "Arial", sans-serif;
}
.footer__baridon-image {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 60px 0 25px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer__left {
    width: 100%;
    text-align: center;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }
  .footer__inner {
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer__logo {
    width: 300px;
  }
  .footer__info-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer__info-list {
    grid-template-columns: 80px 1fr;
    font-size: 14px;
  }
  .footer__info-note {
    font-size: 13px;
  }
  .footer__faq-link {
    font-size: 14px;
  }
  .footer__baridon {
    padding-top: 15px;
  }
  .footer__baridon-text {
    font-size: 9px;
  }
  .footer__baridon-logo {
    font-size: 14px;
  }
  .footer__baridon-image {
    height: 18px;
  }
  .footer__baridon-link img {
    width: 100px;
  }
}

.news {
  padding: 100px 0;
}
.news__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  font-family: "Italiana", serif;
}
.news__items {
  max-width: 800px;
  margin: 0 auto 50px;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  text-decoration: none;
}
.news__item + .news__item {
  margin-top: 20px;
}
.news__item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(51, 51, 51, 0.15);
          box-shadow: 0 5px 15px rgba(51, 51, 51, 0.15);
}
.news__item-image {
  width: 200px;
  height: 130px;
  border-radius: 5px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news__item-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 30px;
}
.news__item-date {
  display: block;
  font-size: 14px;
  color: #4DBBAC;
  margin-bottom: 10px;
  font-family: "Italiana", serif;
}
.news__item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
.news__more {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .news {
    padding: 80px 0;
  }
  .news__title {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .news__items {
    padding: 0 20px;
  }
  .news__item {
    padding: 15px;
  }
  .news__item-image {
    width: 160px;
    height: 110px;
  }
  .news__item-content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding: 60px 0;
  }
  .news__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
  .news__item + .news__item {
    margin-top: 15px;
  }
  .news__item-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
  }
  .news__item-content {
    padding-left: 0;
  }
  .news__item-date {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .news__item-title {
    font-size: 15px;
  }
}

.about-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 193, 182, 0.8) 0%, rgba(183, 212, 204, 0.8) 100%);
}
.about-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 70vh;
  background: url(../img/ajisai.jpg) no-repeat center center/cover;
  opacity: 0.5;
}
.about-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}
.about-hero__subtitle {
  font-family: "Italiana", serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.about-hero__title {
  font-family: "Italiana", serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .about-hero__subtitle {
    font-size: 20px;
  }
  .about-hero__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about-hero__overlay {
    width: 90%;
  }
  .about-hero__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .about-hero__title {
    font-size: 48px;
  }
}

.about-content {
  padding: 80px 0;
  background: #f8f8f8;
}
.about-content .container {
  max-width: 800px;
}
.about-content__salon {
  margin-bottom: 80px;
}
.about-content__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Italiana", serif;
  color: #4DBBAC;
}
.about-content__text {
  line-height: 2;
}
.about-content__catch {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}
.about-content__symptoms {
  text-align: center;
  margin: 30px 0;
  font-size: 18px;
}
.about-content__benefits {
  list-style: none;
  margin: 20px 0;
  text-align: center;
}
.about-content__benefits li {
  font-size: 18px;
  margin-bottom: 10px;
}
.about-content__emphasis {
  font-size: 24px;
  text-align: center;
  margin: 30px 0;
  color: #4DBBAC;
  font-family: "Italiana", serif;
}
.about-content__therapist {
  background: #FFFFFF;
  padding: 60px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}
.about-content__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.about-content__profile-image {
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
.about-content__profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content__profile-text {
  text-align: center;
}
.about-content__profile-name {
  font-size: 24px;
  margin-bottom: 10px;
}
.about-content__profile-role {
  color: #4DBBAC;
}
@media screen and (max-width: 1024px) {
  .about-content__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .about-content__profile-image {
    width: 240px;
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .about-content__profile-image {
    width: 200px;
    height: 267px;
  }
}
@media screen and (max-width: 1024px) {
  .about-content {
    padding: 60px 0;
  }
  .about-content__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .about-content__catch {
    font-size: 18px;
  }
  .about-content__therapist {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-content {
    padding: 40px 0;
  }
  .about-content__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .about-content__catch {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .about-content__symptoms {
    font-size: 16px;
  }
  .about-content__benefits li {
    font-size: 16px;
  }
  .about-content__emphasis {
    font-size: 20px;
  }
  .about-content__therapist {
    padding: 30px 20px;
  }
  .about-content__profile-name {
    font-size: 20px;
  }
}

.menu-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.menu-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 193, 182, 0.8) 0%, rgba(183, 212, 204, 0.8) 100%);
}
.menu-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 70vh;
  background: url(../img/ajisai.jpg) no-repeat center center/cover;
  opacity: 0.5;
}
.menu-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}
.menu-hero__subtitle {
  font-family: "Italiana", serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.menu-hero__title {
  font-family: "Italiana", serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .menu-hero__subtitle {
    font-size: 20px;
  }
  .menu-hero__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .menu-hero__overlay {
    width: 90%;
  }
  .menu-hero__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .menu-hero__title {
    font-size: 48px;
  }
}

.menu-content {
  padding: 80px 0;
  background: #f8f8f8;
}
.menu-content__items {
  max-width: 800px;
  margin: 0 auto;
}
.menu-content__item {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}
.menu-content__item + .menu-content__item {
  margin-top: 30px;
}
.menu-content__item-title {
  font-size: 24px;
  font-weight: 500;
  color: #4DBBAC;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.menu-content__item-body {
  margin-top: 20px;
}
.menu-content__item-note {
  font-size: 14px;
  color: #4DBBAC;
  margin-bottom: 10px;
}
.menu-content__item-price {
  font-size: 24px;
  font-weight: 700;
  color: #4DBBAC;
  margin-bottom: 20px;
  font-family: "Italiana", serif;
}
.menu-content__item-list {
  list-style: none;
  margin-bottom: 20px;
}
.menu-content__item-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.menu-content__item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4DBBAC;
}
.menu-content__item-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(51, 51, 51, 0.1);
}
.menu-content__item-description p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 15px;
}
.menu-content__item-description p:last-child {
  margin-bottom: 0;
}
.menu-content__flow {
  margin-top: 80px;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .menu-content__flow {
    margin-top: 60px;
    padding: 30px;
  }
  .menu-content__flow-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .menu-content__flow {
    margin-top: 40px;
    padding: 20px;
  }
  .menu-content__flow-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .menu-content {
    padding: 60px 0;
  }
  .menu-content__item {
    padding: 25px;
  }
  .menu-content__item + .menu-content__item {
    margin-top: 25px;
  }
  .menu-content__item-title {
    font-size: 20px;
  }
  .menu-content__item-price {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu-content {
    padding: 50px 0;
  }
  .menu-content__item {
    padding: 20px;
  }
  .menu-content__item + .menu-content__item {
    margin-top: 20px;
  }
  .menu-content__item-title {
    font-size: 18px;
    padding-bottom: 12px;
  }
  .menu-content__item-note {
    font-size: 13px;
  }
  .menu-content__item-price {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .menu-content__item-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .menu-content__item-description p {
    font-size: 13px;
  }
}

.archive-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.archive-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 193, 182, 0.8) 0%, rgba(183, 212, 204, 0.8) 100%);
}
.archive-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 70vh;
  background: url(../img/ajisai.jpg) no-repeat center center/cover;
  opacity: 0.5;
}
.archive-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}
.archive-hero__subtitle {
  font-family: "Italiana", serif;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.archive-hero__title {
  font-family: "Italiana", serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .archive-hero__subtitle {
    font-size: 20px;
  }
  .archive-hero__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .archive-hero__overlay {
    width: 90%;
  }
  .archive-hero__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .archive-hero__title {
    font-size: 48px;
  }
}

.archive-content {
  padding: 80px 0;
  background: #f8f8f8;
}
.archive-content__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .archive-content__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .archive-content__items {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.archive-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.archive-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.archive-card__link {
  text-decoration: none;
  color: inherit;
}
.archive-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.archive-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.archive-card__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .archive-card__image {
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .archive-card__image {
    height: 160px;
  }
}
.archive-card__body {
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .archive-card__body {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .archive-card__body {
    padding: 15px;
  }
}
.archive-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .archive-card__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .archive-card__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.archive-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .archive-card__text {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.archive-card__date {
  display: block;
  font-size: 14px;
  color: #4DBBAC;
  font-family: "Italiana", serif;
}
@media screen and (max-width: 767px) {
  .archive-card__date {
    font-size: 12px;
  }
}

.flow-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.flow-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 193, 182, 0.8) 0%, rgba(183, 212, 204, 0.8) 100%);
}
.flow-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 70vh;
  background: url(../img/ajisai.jpg) no-repeat center center/cover;
  opacity: 0.5;
}
.flow-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}
.flow-hero__subtitle {
  font-family: "Italiana", serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.flow-hero__title {
  font-family: "Italiana", serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .flow-hero__subtitle {
    font-size: 20px;
  }
  .flow-hero__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .flow-hero__overlay {
    width: 90%;
  }
  .flow-hero__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .flow-hero__title {
    font-size: 48px;
  }
}

.flow-content {
  padding-top: 100px;
  margin-bottom: 100px;
}
.flow-content__intro {
  text-align: center;
  margin-bottom: 60px;
}
.flow-content__title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #4DBBAC;
}
.flow-content__description {
  font-size: 16px;
  line-height: 1.8;
}
.flow-content__steps {
  max-width: 700px;
  margin: 0 auto;
}
.flow-content__step {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}
.flow-content__step + .flow-content__step {
  margin-top: 40px;
}
.flow-content__step-number {
  font-family: "Italiana", serif;
  font-size: 20px;
  color: #4DBBAC;
  margin-bottom: 10px;
}
.flow-content__step-title {
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.flow-content__step-body p {
  line-height: 1.8;
}
.flow-content__step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .flow-content__step-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.flow-content__step-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flow-content__step-image {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.flow-content__step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .flow-content__step-image {
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .flow-content__step-image {
    height: 180px;
  }
}
.flow-content__step:nth-child(even) .flow-content__step-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .flow-content__step:nth-child(even) .flow-content__step-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .flow-content__title {
    font-size: 28px;
  }
  .flow-content__step {
    padding: 30px;
  }
  .flow-content__step + .flow-content__step {
    margin-top: 30px;
  }
  .flow-content__step-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow-content__title {
    font-size: 24px;
  }
  .flow-content__description {
    font-size: 14px;
  }
  .flow-content__step {
    padding: 25px;
  }
  .flow-content__step + .flow-content__step {
    margin-top: 25px;
  }
  .flow-content__step-number {
    font-size: 16px;
  }
  .flow-content__step-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .flow-content__step-body {
    font-size: 14px;
  }
}

.single {
  padding: 80px 0;
  background: #f8f8f8;
}
.single .container {
  max-width: 800px;
}
.single__content {
  background: #FFFFFF;
  padding: 60px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
}
.single__header {
  margin-bottom: 40px;
}
.single__date {
  display: block;
  font-family: "Italiana", serif;
  color: #4DBBAC;
  margin-bottom: 15px;
}
.single__title {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;
}
.single__image {
  margin-bottom: 40px;
}
.single__image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.single__body h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #4DBBAC;
}
.single__body p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.single__body ul {
  margin: 20px 0;
  padding-left: 20px;
}
.single__body ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.single__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4DBBAC;
}
.single__footer {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .single {
    padding: 60px 0;
  }
  .single__content {
    padding: 40px;
  }
  .single__title {
    font-size: 24px;
  }
  .single__body h3 {
    font-size: 18px;
    margin: 30px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .single {
    padding: 40px 0;
  }
  .single__content {
    padding: 30px 20px;
  }
  .single__header {
    margin-bottom: 30px;
  }
  .single__title {
    font-size: 20px;
  }
  .single__image {
    margin-bottom: 30px;
  }
  .single__body h3 {
    font-size: 16px;
    margin: 25px 0 12px;
  }
  .single__body p {
    font-size: 14px;
  }
  .single__body ul li {
    font-size: 14px;
  }
  .single__footer {
    margin-top: 40px;
  }
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.faq-item__question {
  width: 100%;
  padding: 20px 50px 20px 20px;
  text-align: left;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}
.faq-item__question .faq-item__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.faq-item__question .faq-item__icon::before, .faq-item__question .faq-item__icon::after {
  content: "";
  position: absolute;
  background: #4DBBAC;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq-item__question .faq-item__icon::before {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}
.faq-item__question .faq-item__icon::after {
  width: 20px;
  height: 2px;
  left: 0;
  top: 9px;
}
.faq-item__question[aria-expanded=true] .faq-item__icon::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-item__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s, padding 0.3s;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item__answer p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq-item__answer[aria-hidden=false] {
  padding: 0 20px 20px;
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .faq-item__question {
    font-size: 14px;
    padding: 15px 40px 15px 15px;
  }
  .faq-item__answer {
    font-size: 14px;
  }
  .faq-item__answer[aria-hidden=false] {
    padding: 0 15px 15px;
  }
}

.faq-item__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.faq-item__question-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: #4DBBAC;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Italiana", serif;
  font-weight: bold;
}
.faq-item__question-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
.faq-item__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.faq-item__answer-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  color: #4DBBAC;
  font-family: "Italiana", serif;
  font-weight: bold;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 3px;
}
.faq-item__answer-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.faq-item__answer-text p {
  margin-bottom: 15px;
}
.faq-item__answer-text p:last-child {
  margin-bottom: 0;
}
.faq-item__answer[aria-hidden=false] {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .faq-item__question {
    gap: 10px;
  }
  .faq-item__question-label {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .faq-item__answer {
    gap: 10px;
  }
  .faq-item__answer-label {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.page-nail__hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.page-nail__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 193, 182, 0.8) 0%, rgba(183, 212, 204, 0.8) 100%);
}
.page-nail__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-nail__hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 70vh;
  background: url(../img/ajisai.jpg) no-repeat center center/cover;
  opacity: 0.5;
}
.page-nail__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}
.page-nail__hero-subtitle {
  font-family: "Italiana", serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.page-nail__hero-title {
  font-family: "Italiana", serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
.page-nail__menu {
  padding: 80px 0;
  background: #f8f8f8;
}
.page-nail__menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-nail__menu-item {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 15px rgba(51, 51, 51, 0.1);
}
.page-nail__menu-item-title {
  text-align: center;
  font-size: 24px;
  font-family: "Italiana", serif;
  color: #4DBBAC;
  margin-bottom: 30px;
}
.page-nail__menu-item-title span {
  display: block;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  margin-top: 5px;
  color: #333333;
}
.page-nail__menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.page-nail__menu-row:last-child {
  border-bottom: none;
}
.page-nail__menu-row dt {
  font-size: 15px;
}
.page-nail__menu-row dd {
  font-size: 16px;
  font-weight: 500;
}
.page-nail__gallery {
  padding: 80px 0;
}
.page-nail__gallery-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-nail__gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 15px rgba(51, 51, 51, 0.1);
          box-shadow: 0 3px 15px rgba(51, 51, 51, 0.1);
}
.page-nail__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-nail__gallery-item img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .page-nail__hero {
    height: 35vh;
  }
  .page-nail__hero-subtitle {
    font-size: 20px;
  }
  .page-nail__hero-title {
    font-size: 60px;
  }
  .page-nail__hero-overlay {
    width: 90%;
  }
  .page-nail__menu {
    padding: 60px 0;
  }
  .page-nail__menu-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  .page-nail__menu-item {
    padding: 30px;
  }
  .page-nail__gallery {
    padding: 60px 0;
  }
  .page-nail__gallery-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-nail__hero {
    height: 30vh;
  }
  .page-nail__hero-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .page-nail__hero-title {
    font-size: 48px;
  }
  .page-nail__menu {
    padding: 40px 0;
  }
  .page-nail__menu-items {
    grid-template-columns: 1fr;
  }
  .page-nail__menu-item {
    padding: 25px;
  }
  .page-nail__menu-item-title {
    font-size: 20px;
  }
  .page-nail__menu-row dt {
    font-size: 14px;
  }
  .page-nail__menu-row dd {
    font-size: 15px;
  }
  .page-nail__gallery {
    padding: 40px 0;
  }
  .page-nail__gallery-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}