@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media screen and (max-width: 991px) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 574px) {
  html {
    font-size: 55%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333333;
  background: #FAF8FC;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

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

img {
  width: 100%;
  display: block;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

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

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  section {
    scroll-margin-top: 6rem;
  }
}

.section-ttl {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    margin-bottom: 4.5rem;
  }
}
.section-ttl_en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.45em;
  color: #D4829A;
  text-transform: lowercase;
  margin-bottom: 1rem;
  position: relative;
}
.section-ttl_en::before, .section-ttl_en::after {
  content: "—";
  margin: 0 1rem;
  opacity: 0.5;
}
.section-ttl_ja {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .section-ttl_ja {
    font-size: 2.2rem;
  }
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5B3A8A;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 1.4rem 3.8rem;
  border-radius: 3rem;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(91, 58, 138, 0.25);
}
@media (hover: hover) {
  .btn-reserve:hover {
    background: #3E2760;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 58, 138, 0.35);
    color: #fff;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
}
@media screen and (max-width: 1199px) {
  header .header_inner {
    padding: 0 2rem;
  }
}
header .header_logo {
  width: 16rem;
  transition: opacity 0.2s;
}
header .header_logo a {
  display: block;
}
header .header_logo img {
  border-radius: 0;
}
@media screen and (max-width: 1199px) {
  header .header_logo {
    width: 14rem;
  }
}
@media (hover: hover) {
  header .header_logo:hover {
    opacity: 0.85;
  }
}
header nav {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 1199px) {
  header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 28rem;
    height: 100vh;
    background: #fff;
    padding: 9rem 3rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 99;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.38s, box-shadow 0.38s;
  }
  header nav.open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -4px 0 20px rgba(91, 58, 138, 0.12);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s, box-shadow 0.38s;
  }
  header nav .header_nav-list li {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.28s, transform 0.28s;
  }
  header nav .header_nav-list li:nth-child(1) {
    transition-delay: 0.045s;
  }
  header nav .header_nav-list li:nth-child(2) {
    transition-delay: 0.09s;
  }
  header nav .header_nav-list li:nth-child(3) {
    transition-delay: 0.135s;
  }
  header nav .header_nav-list li:nth-child(4) {
    transition-delay: 0.18s;
  }
  header nav .header_nav-list li:nth-child(5) {
    transition-delay: 0.225s;
  }
  header nav .header_nav-list li:nth-child(6) {
    transition-delay: 0.27s;
  }
  header nav .header_nav-list li:nth-child(7) {
    transition-delay: 0.315s;
  }
  header nav.open .header_nav-list li {
    opacity: 1;
    transform: translateX(0);
  }
  header nav .header_btn {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.28s 0.36s, transform 0.28s 0.36s;
  }
  header nav.open .header_btn {
    opacity: 1;
    transform: translateX(0);
  }
}
header .header_nav-list {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1199px) {
  header .header_nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  header .header_nav-list li {
    border-bottom: 1px solid #DDD3E8;
  }
}
header .header_nav-list a {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #333333;
  transition: color 0.2s;
  position: relative;
}
@media screen and (max-width: 1199px) {
  header .header_nav-list a {
    display: block;
    padding: 1.6rem 0;
    font-size: 1.5rem;
  }
}
header .header_nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #5B3A8A;
  transition: width 0.3s;
}
@media screen and (max-width: 1199px) {
  header .header_nav-list a::after {
    display: none;
  }
}
@media (hover: hover) {
  header .header_nav-list a:hover {
    color: #5B3A8A;
  }
  header .header_nav-list a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  header .header_btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
header .toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
@media screen and (max-width: 1199px) {
  header .toggle {
    display: flex;
  }
}
header .toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #5B3A8A;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
header .toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .toggle.open span:nth-child(2) {
  opacity: 0;
}
header .toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header.scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 16px rgba(91, 58, 138, 0.08);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s, visibility 0s linear 0.38s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s, visibility 0s;
}

footer {
  background: #5B3A8A;
  padding: 7rem 0 3.5rem;
  color: #fff;
}
footer .footer_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
footer .footer_logo {
  width: 12rem;
}
footer .footer_logo a {
  display: block;
}
footer .footer_logo img {
  border-radius: 0;
  opacity: 0.85;
}
footer .footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
footer .footer_nav ul a {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  footer .footer_nav ul a:hover {
    opacity: 1;
  }
}
footer .footer_copy {
  font-size: 1.1rem;
  opacity: 0.45;
  letter-spacing: 0.08em;
}

#pagetop {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  background: #5B3A8A;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(91, 58, 138, 0.3);
  transition: background 0.3s, transform 0.25s;
}
@media (hover: hover) {
  #pagetop a:hover {
    background: #3E2760;
    transform: translateY(-3px);
  }
}

@media screen {
  .fadein {
    opacity: 0;
    transition-duration: 1.1s;
  }
  .fadein.is-show {
    opacity: 1;
  }
  .fadein_bottom {
    opacity: 0;
    transition-duration: 1.2s;
    transform: translateY(28px);
  }
  .fadein_bottom.is-show {
    transform: translateY(0);
    opacity: 1;
  }
  .fadein_left {
    opacity: 0;
    transition-duration: 1.2s;
    transform: translateX(-28px);
  }
  .fadein_left.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .fadein_right {
    opacity: 0;
    transition-duration: 1.2s;
    transform: translateX(28px);
  }
  .fadein_right.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .delay2 {
    transition-delay: 0.2s;
  }
  .delay4 {
    transition-delay: 0.4s;
  }
  .delay6 {
    transition-delay: 0.6s;
  }
  .delay8 {
    transition-delay: 0.8s;
  }
  .delay10 {
    transition-delay: 1s;
  }
}
br.lg {
  display: none;
}
@media screen and (max-width: 991px) {
  br.lg {
    display: block;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 767px) {
  br.md {
    display: block;
  }
}

.mv {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F3FB;
  overflow: hidden;
  text-align: center;
}
.mv_blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mv_blob-1 {
  width: 55rem;
  height: 55rem;
  background: radial-gradient(circle at 40% 50%, rgba(237, 229, 245, 0.9) 0%, transparent 65%);
  top: -18rem;
  right: -12rem;
}
.mv_blob-2 {
  width: 45rem;
  height: 45rem;
  background: radial-gradient(circle at 50% 40%, rgba(212, 130, 154, 0.13) 0%, transparent 65%);
  bottom: -8rem;
  left: -10rem;
  border-radius: 40% 60% 55% 45%/50% 45% 55% 50%;
}
.mv_blob-3 {
  width: 25rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(91, 58, 138, 0.06) 0%, transparent 60%);
  top: 30%;
  left: 8%;
}
.mv_inner {
  position: relative;
  z-index: 1;
  padding: 12rem 2rem 9rem;
  max-width: 70rem;
  margin: 0 auto;
  width: 100%;
}
.mv_logo {
  width: 38rem;
  max-width: 80%;
  margin: 0 auto 4.5rem;
}
.mv_body {
  max-width: 55rem;
  margin: 0 auto;
}
.mv_catch {
  font-family: "Noto Serif JP", serif;
  font-size: 3.8rem;
  font-weight: 500;
  color: #5B3A8A;
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .mv_catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 574px) {
  .mv_catch {
    font-size: 2.4rem;
  }
}
.mv_desc {
  font-size: 1.55rem;
  color: #333333;
  opacity: 0.65;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 3.5rem;
}
.mv_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.mv_cta-more {
  font-size: 1.35rem;
  color: #5B3A8A;
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mv_cta-more i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
}
@media (hover: hover) {
  .mv_cta-more:hover {
    opacity: 1;
  }
}
.mv_scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
}
.mv_scroll span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: #5B3A8A;
  opacity: 0.4;
}
.mv_scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(to bottom, rgba(91, 58, 138, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .mv_scroll {
    display: none;
  }
}

@keyframes mvFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}
.news {
  padding: 8rem 0 7rem;
  background: #F7F3FB;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 6rem 0 5rem;
  }
}
.news_inner {
  max-width: 820px;
}
.news_list {
  border-top: 1px solid #DDD3E8;
}
.news_item {
  border-bottom: 1px solid #DDD3E8;
}
.news_item-link {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2rem 1rem;
  text-decoration: none;
  color: #333333;
  transition: background 0.2s;
}
@media (hover: hover) {
  .news_item-link:hover {
    background: rgba(255, 255, 255, 0.6);
  }
  .news_item-link:hover .news_title {
    color: #5B3A8A;
  }
  .news_item-link:hover .news_arrow {
    opacity: 0.8;
    transform: translateX(5px);
  }
}
@media screen and (max-width: 767px) {
  .news_item-link {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.8rem 0.5rem;
  }
}
.news_date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #888888;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 8rem;
}
@media screen and (max-width: 767px) {
  .news_date {
    min-width: auto;
  }
}
.news_cat {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
  flex-shrink: 0;
}
.news_cat--info {
  background: #EDE5F5;
  color: #5B3A8A;
}
.news_cat--holiday {
  background: #FCE8EF;
  color: #D4829A;
}
.news_title {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  flex: 1;
  line-height: 1.7;
  transition: color 0.2s;
}
@media screen and (max-width: 767px) {
  .news_title {
    width: 100%;
    flex: none;
  }
}
.news_arrow {
  color: #5B3A8A;
  font-size: 1.1rem;
  opacity: 0.3;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.news_more {
  text-align: center;
  margin-top: 4rem;
}
.news_more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #5B3A8A;
  border: 1.5px solid #DDD3E8;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  transition: border-color 0.3s, background 0.3s;
}
@media (hover: hover) {
  .news_more-btn:hover {
    border-color: #5B3A8A;
    background: #fff;
  }
}

.trouble {
  padding: 9rem 0 8rem;
  background: #fff;
  position: relative;
}
.trouble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #F7F3FB;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.trouble_head {
  text-align: center;
  margin-bottom: 5rem;
}
.trouble_lead {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 2rem;
}
.trouble_lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 2px;
  background: #D4829A;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .trouble_lead {
    font-size: 1.9rem;
  }
}
.trouble_item {
  background: #F7F3FB;
  border-radius: 2rem;
  padding: 5rem 2.5rem 3.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #DDD3E8;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trouble_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5B3A8A, #D4829A);
  border-radius: 2rem 2rem 0 0;
}
@media (hover: hover) {
  .trouble_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(91, 58, 138, 0.14);
  }
  .trouble_item:hover .trouble_item-icon {
    background: #5B3A8A;
  }
  .trouble_item:hover .trouble_item-icon i {
    color: #fff;
  }
}
.trouble_item-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  box-shadow: 0 4px 16px rgba(91, 58, 138, 0.1);
  transition: background 0.3s;
}
.trouble_item-icon i {
  font-size: 2.2rem;
  color: #D4829A;
  transition: color 0.3s;
}
.trouble_item-num {
  position: absolute;
  bottom: 0.8rem;
  right: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 500;
  color: rgba(91, 58, 138, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.trouble_item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.trouble_item-text {
  font-size: 1.45rem;
  line-height: 1.95;
  color: #333333;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.trouble_resolve {
  text-align: center;
  margin-top: 5.5rem;
}
.trouble_resolve p {
  font-size: 1.7rem;
  color: #333333;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .trouble_resolve p {
    font-size: 1.5rem;
  }
}
.trouble_resolve p strong {
  color: #5B3A8A;
  font-weight: 500;
  background: linear-gradient(transparent 60%, rgba(212, 130, 154, 0.3) 60%);
}
.trouble_resolve i {
  font-size: 1.8rem;
  color: #D4829A;
  animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(7px);
    opacity: 0.6;
  }
}
.about {
  padding: 9rem 0;
  background: #FAF8FC;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "ABOUT";
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  font-weight: 500;
  color: rgba(91, 58, 138, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 7rem 0;
  }
}
.about_inner {
  position: relative;
  z-index: 1;
}
.about_text p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #333333;
  margin-top: 1.6rem;
}
.about_text p:first-child {
  margin-top: 0;
}
.about_highlight {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #5B3A8A;
  background: #EDE5F5;
  border-left: 5px solid #5B3A8A;
  padding: 1.4rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: 0 0.8rem 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .about_highlight {
    font-size: 1.7rem;
  }
}
.about_note {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #D4829A;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.about_image {
  position: relative;
}
.about_image img {
  border-radius: 1.6rem;
  box-shadow: 0 12px 40px rgba(91, 58, 138, 0.1);
}
.about_image-deco {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: #EDE5F5;
  bottom: -2.5rem;
  right: -2.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about_image-deco {
    display: none;
  }
}

.flow {
  padding: 9rem 0;
  background: #F7F3FB;
  position: relative;
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #FAF8FC;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.flow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 7rem 0;
  }
}
.flow_inner {
  position: relative;
  z-index: 1;
}

.flow_timeline {
  position: relative;
  max-width: 88rem;
  margin: 0 auto;
}
.flow_timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #DDD3E8 10%, #D4829A 50%, #DDD3E8 90%, transparent);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow_timeline::before {
    left: 2.2rem;
  }
}

.flow_step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.flow_step:last-child {
  margin-bottom: 0;
}
.flow_step-card {
  width: calc(50% - 5rem);
  background: #fff;
  border-radius: 1.6rem;
  padding: 2.8rem 3rem;
  box-shadow: 0 4px 24px rgba(91, 58, 138, 0.07);
  border: 1px solid #DDD3E8;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .flow_step-card:hover {
    box-shadow: 0 8px 32px rgba(91, 58, 138, 0.14);
    transform: translateY(-2px);
  }
}
.flow_step-dot {
  width: 10rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow_step-dot::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #5B3A8A;
  box-shadow: 0 0 0 5px rgba(91, 58, 138, 0.15);
}
.flow_step-blank {
  width: calc(50% - 5rem);
}
.flow_step-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #EDE5F5;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.flow_step-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  color: #5B3A8A;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}
.flow_step-desc {
  font-size: 1.45rem;
  line-height: 1.85;
  color: #333333;
  opacity: 0.75;
}
.flow_step.left .flow_step-card {
  order: 1;
}
.flow_step.left .flow_step-dot {
  order: 2;
}
.flow_step.left .flow_step-blank {
  order: 3;
}
.flow_step.right .flow_step-blank {
  order: 1;
}
.flow_step.right .flow_step-dot {
  order: 2;
}
.flow_step.right .flow_step-card {
  order: 3;
}
@media screen and (max-width: 767px) {
  .flow_step-blank {
    display: none;
  }
  .flow_step-dot {
    width: 4.5rem;
  }
  .flow_step-card {
    width: calc(100% - 4.5rem);
  }
  .flow_step.left .flow_step-dot, .flow_step.right .flow_step-dot {
    order: 1;
  }
  .flow_step.left .flow_step-card, .flow_step.right .flow_step-card {
    order: 2;
  }
}

.salon {
  padding: 10rem 0 0;
  background: #fff;
}
.salon .container {
  max-width: 1100px;
}
.salon_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media screen and (max-width: 574px) {
  .salon_grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.salon_photo-sub {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .salon_photo-sub {
    margin-top: 0;
  }
}
.salon_photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 16px 50px rgba(91, 58, 138, 0.12);
}
.salon_photo-wrap img {
  width: 100%;
  height: 52rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .salon_photo-wrap img {
    height: 35rem;
  }
}
@media screen and (max-width: 574px) {
  .salon_photo-wrap img {
    height: auto;
    max-height: 40rem;
  }
}
@media (hover: hover) {
  .salon_photo-wrap:hover img {
    transform: scale(1.03);
  }
}
.salon_caption {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #888888;
  letter-spacing: 0.1em;
  margin-top: 1.6rem;
  padding-left: 0.5rem;
}
.salon_caption::before {
  content: "— ";
  opacity: 0.5;
}

.price {
  padding: 9rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 7rem 0;
  }
}
.price_inner {
  max-width: 640px;
  margin: 0 auto;
}
.price_box {
  background: #F7F3FB;
  border: 2px solid #DDD3E8;
  border-radius: 2.4rem;
  padding: 5.5rem 4rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .price_box {
    padding: 4.5rem 2.5rem 3.5rem;
  }
}
.price_tag {
  display: inline-block;
  background: #D4829A;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.8rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(212, 130, 154, 0.4);
  position: relative;
}
.price_name {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  position: relative;
}
.price_amount {
  position: relative;
  margin-bottom: 0.5rem;
}
.price_amount strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 500;
  color: #5B3A8A;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .price_amount strong {
    font-size: 6.5rem;
  }
}
.price_amount span {
  font-size: 2.2rem;
  color: #5B3A8A;
  font-weight: 500;
  vertical-align: bottom;
  margin-left: 0.5rem;
}
.price_time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #888888;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  position: relative;
}
.price_note {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 3.5rem;
  position: relative;
}
.price_note li {
  font-size: 1.4rem;
  color: #333333;
  opacity: 0.7;
}
.price_note li i {
  color: #D4829A;
  margin-right: 0.8rem;
}
.price_btn {
  position: relative;
}

.greeting {
  padding: 9rem 0;
  background: #FAF8FC;
}
@media screen and (max-width: 767px) {
  .greeting {
    padding: 7rem 0;
  }
}
.greeting_inner {
  position: relative;
}
.greeting_image {
  position: relative;
}
.greeting_image img {
  border-radius: 65% 35% 55% 45%/50% 60% 40% 50%;
  box-shadow: 0 16px 50px rgba(91, 58, 138, 0.14);
}
.greeting_image::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: #EDE5F5;
  bottom: -3rem;
  left: -3rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .greeting_image::after {
    display: none;
  }
}
.greeting_text p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #333333;
  margin-top: 1.8rem;
  opacity: 0.85;
}
.greeting_text p:first-child {
  margin-top: 0;
}
.greeting_name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.greeting_name em {
  display: block;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: #D4829A;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.voice {
  padding: 9rem 0;
  background: #F7F3FB;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 7rem 0;
  }
}
.voice_inner {
  position: relative;
}
.voice_item {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem 2.5rem 2.5rem;
  height: 100%;
  border: 1px solid #DDD3E8;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
@media (hover: hover) {
  .voice_item:hover {
    transform: rotate(0deg) translateY(-6px) !important;
    box-shadow: 0 14px 36px rgba(91, 58, 138, 0.14);
  }
}
.voice_item-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  color: #EDE5F5;
  line-height: 0.7;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.voice_item p:not(.voice_item-quote) {
  font-size: 1.5rem;
  line-height: 1.95;
  color: #333333;
}
.voice .row > :nth-child(1) .voice_item {
  transform: rotate(-1.5deg);
}
.voice .row > :nth-child(2) .voice_item {
  transform: rotate(0.8deg);
}
.voice .row > :nth-child(3) .voice_item {
  transform: rotate(-1deg);
}
.voice .row > :nth-child(4) .voice_item {
  transform: rotate(1.3deg);
}
.voice .row > :nth-child(5) .voice_item {
  transform: rotate(-0.7deg);
}
@media screen and (max-width: 767px) {
  .voice .row > :nth-child(n) .voice_item {
    transform: none;
  }
}

.instagram {
  padding: 9rem 0;
  background: #FAF8FC;
}
@media screen and (max-width: 767px) {
  .instagram {
    padding: 7rem 0;
  }
}
.instagram_inner {
  position: relative;
}
.instagram_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .instagram_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}
.instagram_placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #EDE5F5 0%, #F9EDF2 100%);
  border-radius: 1.2rem;
  border: 1px solid #DDD3E8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .instagram_placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(91, 58, 138, 0.12);
  }
}
.instagram_placeholder i {
  font-size: 3.6rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
}
.instagram_follow {
  text-align: center;
}
.instagram_follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #5B3A8A;
  border: 1.5px solid #5B3A8A;
  padding: 1.3rem 3.5rem;
  border-radius: 3rem;
  transition: background 0.3s, color 0.3s;
}
.instagram_follow-btn i {
  font-size: 2rem;
}
@media (hover: hover) {
  .instagram_follow-btn:hover {
    background: #5B3A8A;
    color: #fff;
  }
}

.reserve {
  background: #5B3A8A;
  padding: 0 0 9rem;
  position: relative;
}
.reserve_wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.reserve_wave svg {
  width: 100%;
  height: 8rem;
  display: block;
}
.reserve .section-ttl {
  padding-top: 7rem;
}
.reserve .section-ttl_en {
  color: rgba(255, 255, 255, 0.45);
}
.reserve .section-ttl_en::before, .reserve .section-ttl_en::after {
  color: rgba(255, 255, 255, 0.45);
}
.reserve .section-ttl_ja {
  color: #fff;
}
.reserve_lead {
  text-align: center;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
.reserve_inner {
  max-width: 900px;
  margin: 0 auto;
}
.reserve_item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  padding: 4.5rem 3rem;
  text-align: center;
  height: 100%;
  transition: background 0.3s;
}
@media (hover: hover) {
  .reserve_item:hover {
    background: rgba(255, 255, 255, 0.14);
  }
}
.reserve_item-label {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.reserve_item-label i {
  margin-right: 0.8rem;
}
.reserve_item-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .reserve_item-num {
    font-size: 3rem;
  }
}
.reserve_item-note {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
}
.reserve_item-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #06C755;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.4rem 3.5rem;
  border-radius: 3rem;
  letter-spacing: 0.1em;
  transition: filter 0.3s, transform 0.25s;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}
@media (hover: hover) {
  .reserve_item-line:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    color: #fff;
  }
}

.access {
  padding: 9rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 7rem 0;
  }
}
.access_map {
  position: relative;
  padding-top: 62%;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(91, 58, 138, 0.1);
}
.access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access_dl dt {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #D4829A;
  font-weight: 500;
  margin-top: 2.5rem;
}
.access_dl dt:first-child {
  margin-top: 0;
}
.access_dl dd {
  font-size: 1.55rem;
  color: #333333;
  margin: 0.4rem 0 0;
  line-height: 1.85;
}
.access_dl dd a {
  color: #5B3A8A;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) {
  .access_dl dd a:hover {
    color: #3E2760;
  }
}

body.is-subpage header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(91, 58, 138, 0.08);
  backdrop-filter: blur(8px);
}

.page-hero {
  background: #F7F3FB;
  padding: 13rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 50%, rgba(237, 229, 245, 0.8) 0%, transparent 65%);
  top: -15rem;
  right: -10rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding: 11rem 0 4rem;
  }
}
.page-hero_inner {
  position: relative;
  z-index: 1;
}
.page-hero_en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.45em;
  color: #D4829A;
  text-transform: lowercase;
  margin-bottom: 1rem;
}
.page-hero_en::before, .page-hero_en::after {
  content: "—";
  margin: 0 1rem;
  opacity: 0.5;
}
.page-hero_ja {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .page-hero_ja {
    font-size: 2.4rem;
  }
}
.page-hero--article {
  text-align: left;
  padding-bottom: 5rem;
}
.page-hero--article h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.08em;
  line-height: 1.55;
  margin: 0;
  max-width: 820px;
}
@media screen and (max-width: 767px) {
  .page-hero--article h1 {
    font-size: 2rem;
  }
}
.page-hero--article .page-hero_meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.page-hero--article .page-hero_meta time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #888888;
  letter-spacing: 0.05em;
}

.breadcrumb {
  margin-bottom: 3rem;
  text-align: center;
}
.breadcrumb ol {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.8rem;
  color: #DDD3E8;
}
.breadcrumb a {
  color: #5B3A8A;
  opacity: 0.7;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .breadcrumb a:hover {
    opacity: 1;
  }
}
.breadcrumb [aria-current=page] {
  color: #888888;
}
.page-hero--article .breadcrumb {
  text-align: left;
  margin-bottom: 4rem;
}
.page-hero--article .breadcrumb ol {
  display: flex;
}

.news-archive {
  padding: 7rem 0 9rem;
  background: #FAF8FC;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding: 5rem 0 7rem;
  }
}
.news-archive .container {
  max-width: 820px;
}
.news-archive_list {
  border-top: 1px solid #DDD3E8;
}
.news-archive_item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #DDD3E8;
  text-decoration: none;
  color: #333333;
  transition: background 0.25s;
}
.news-archive_item time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: #888888;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 8rem;
}
.news-archive_item p {
  flex: 1;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  transition: color 0.2s;
}
.news-archive_item .arrow {
  color: #5B3A8A;
  font-size: 1.1rem;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
@media (hover: hover) {
  .news-archive_item:hover {
    background: #F7F3FB;
  }
  .news-archive_item:hover p {
    color: #5B3A8A;
  }
  .news-archive_item:hover .arrow {
    opacity: 0.8;
    transform: translateX(5px);
  }
}
@media screen and (max-width: 767px) {
  .news-archive_item {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 2rem 0.5rem;
  }
  .news-archive_item time {
    min-width: auto;
  }
  .news-archive_item p {
    width: 100%;
    flex: none;
  }
  .news-archive_item .arrow {
    display: none;
  }
}

.news-single {
  padding: 7rem 0 9rem;
  background: #FAF8FC;
}
@media screen and (max-width: 767px) {
  .news-single {
    padding: 5rem 0 7rem;
  }
}
.news-single .container {
  max-width: 820px;
}
.news-single_body {
  background: #fff;
  border-radius: 2rem;
  padding: 5rem;
  box-shadow: 0 4px 24px rgba(91, 58, 138, 0.07);
  border: 1px solid #DDD3E8;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .news-single_body {
    padding: 3rem 2rem;
  }
}
.news-single_body p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #333333;
  margin-bottom: 2rem;
}
.news-single_body p:last-child {
  margin-bottom: 0;
}
.news-single_body h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #5B3A8A;
  letter-spacing: 0.08em;
  margin: 4rem 0 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #EDE5F5;
}
.news-single_body ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}
.news-single_body ul li {
  list-style: disc;
  font-size: 1.55rem;
  line-height: 2;
  color: #333333;
  margin-bottom: 0.5rem;
}
.news-single_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .news-single_nav {
    justify-content: center;
  }
}
.news-single_back {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #5B3A8A;
  border: 1.5px solid #DDD3E8;
  padding: 1rem 2.4rem;
  border-radius: 3rem;
  transition: border-color 0.3s, background 0.3s;
}
.news-single_back i {
  font-size: 1.2rem;
}
@media (hover: hover) {
  .news-single_back:hover {
    border-color: #5B3A8A;
    background: #EDE5F5;
  }
}