@charset "UTF-8";
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.3rem;
}

.english-text {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.5rem;
  font-weight: 400;
}

.sub-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #55554F;
}

.caption {
  font-size: 0.875rem;
  color: #302B2E;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F8EFF8;
  background-image: url("../images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2.5s;
}

#splash-logo img {
  width: 200px;
  opacity: 0;
  animation: logoFadeIn 1s ease forwards, logoZoom 2.5s ease-in-out forwards;
  animation-delay: 0.5s, 1.5s;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes logoZoom {
  to {
    transform: scale(1.5);
    opacity: 0.7;
  }
}
@keyframes splashFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* 本文表示遅延調整 */
main {
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded main {
  opacity: 1;
}

.section-title__wrapper {
  position: relative;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.section-title__wrapper .section-title {
  position: relative;
  text-align: center;
  z-index: 2;
  font-size: clamp(2.5rem, 6vw, 3rem);
  line-height: 1.3;
  color: #bba2bb;
  letter-spacing: unset;
}
.section-title__wrapper .section-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #bba2bb;
  text-align: center;
  z-index: 2;
  position: relative;
  line-height: 1.5;
}
.section-title__wrapper .section-title-img {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -65%);
  z-index: 1;
  width: 180px;
  pointer-events: none;
}

.button {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.more-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  font-size: 1.143rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  width: auto;
  white-space: nowrap;
  color: #55554F;
}
.more-btn:hover {
  color: #302B2E;
}
.more-btn:hover svg {
  transform: translateX(4px);
}
.more-btn svg {
  transition: transform 0.3s ease;
  vertical-align: baseline;
}

/* メールボタンのスタイル */
.mail-btn {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans Japanese", sans-serif;
  text-decoration: none;
  color: #302B2E;
  font-weight: 500;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1em;
}
.mail-btn .circle-btn {
  position: relative;
  background: #eee;
  color: #fff;
  padding: 0.7rem;
  border-radius: 100vh;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  transition: 0.3s;
}
.mail-btn .circle-btn::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #302B2E;
  border-right: 1px solid #302B2E;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.mail-btn:hover .circle-btn {
  transform: scale(1.15);
  background: #55554F;
}
.mail-btn:hover .circle-btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #CEA502;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
}

.page-top:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-top__arrow {
  width: 12px;
  height: 12px;
  position: relative;
  display: block;
}
.page-top__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #FCFAFB;
  border-top: 1px solid #FCFAFB;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-menu .nav_toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-10px);
}
.hamburger-menu .nav_toggle.show-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hamburger-menu .nav_toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #44433e 0%, #a8a89f 50%, #44433e 100%);
  border-radius: 2px;
  transition: 0.4s ease;
  transform-origin: center;
}
.hamburger-menu .nav_toggle.show span {
  background-color: #55554F;
}
.hamburger-menu .nav_toggle.show span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 11px);
}
.hamburger-menu .nav_toggle.show span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu .nav_toggle.show span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -12px);
}
.hamburger-menu .nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(248, 239, 248, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  filter: blur(10px);
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-sizing: border-box;
}
.hamburger-menu .nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  filter: blur(0);
}
.hamburger-menu .nav_menu_ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: calc(100vh - 1rem);
}
.hamburger-menu .nav_menu_ul .nav_menu_li a {
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  color: #55554F;
  display: block;
}
.hamburger-menu .nav_menu_ul .nav_menu_li a .menu-en {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  text-align: center;
}
.hamburger-menu .nav_menu_ul .nav_menu_li a .menu-ja {
  font-size: 0.75rem;
  color: #302B2E;
  margin-top: 0.2rem;
  display: block;
  line-height: 1.2;
  text-align: center;
}
.hamburger-menu .nav_menu_ul .nav_menu_li a:hover {
  color: #bba2bb;
}
.hamburger-menu .nav_menu_ul .nav_menu_li a:hover .menu-ja {
  color: #bba2bb;
}
.hamburger-menu .nav_menu_ul .nav_menu_li a:active {
  color: #bba2bb;
}
.hamburger-menu .nav_menu_ul .instagram-icon {
  width: 30px;
}
.hamburger-menu .nav_menu_ul .logo {
  width: 135px;
  height: auto;
}

@media (min-width: 768px) {
  header {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc--wrapper {
    display: none;
  }
}
.pc--wrapper {
  display: flex;
  align-items: center;
}
.pc--wrapper .nav-pc {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pc--wrapper .nav-pc_menu_ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: calc(100vh - 1rem);
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li {
  white-space: nowrap;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a {
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  color: #55554F;
  display: block;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a .menu-en {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  text-align: center;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a .menu-ja {
  font-size: 0.75rem;
  color: #302B2E;
  margin-top: 0.2rem;
  display: block;
  line-height: 1.2;
  text-align: center;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a:hover {
  color: #bba2bb;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a:hover .menu-ja {
  color: #bba2bb;
}
.pc--wrapper .nav-pc_menu_ul .nav_menu_li a:active {
  color: #bba2bb;
}
.pc--wrapper .nav-pc_menu_ul .instagram-icon {
  width: 30px;
}
.pc--wrapper .nav-pc_menu_ul .logo {
  width: 135px;
  height: auto;
}

.catch-wrapper {
  position: relative;
  padding: 2rem 2rem;
  text-align: center;
  max-width: 400px; /* 最大幅を設定して中央に配置 */
  min-width: 300px;
}
.catch-wrapper .catch-text {
  font-size: 1rem;
  color: #55554F;
  font-weight: bold;
  text-align: center;
}
.catch-wrapper .cross {
  position: absolute;
  width: 30px;
  height: 30px;
}
.catch-wrapper .cross::before, .catch-wrapper .cross::after {
  content: "";
  position: absolute;
  background-color: #CEA502;
}
.catch-wrapper .top-left {
  top: 0;
  left: 0;
}
.catch-wrapper .top-left::before {
  width: 100%;
  height: 1px;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}
.catch-wrapper .top-left::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 30%;
  transform: translateX(-50%);
}
.catch-wrapper .bottom-right {
  bottom: 0;
  right: 0;
}
.catch-wrapper .bottom-right::before {
  width: 100%;
  height: 1px;
  bottom: 30%;
  left: 0;
  transform: translateY(50%);
}
.catch-wrapper .bottom-right::after {
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 30%;
  transform: translateX(50%);
}

/* 少しずらしたボックス */
.box2-6 {
  margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
  padding: 2em; /* 内側余白 */
  background: none; /* 元のボックス背景色なし */
  border: 1px solid #CEA502; /* 線の太さ（1px）、種類（実線）、色（#ccc） */
  position: relative; /* 配置（基準となる位置） */
  max-width: 400px;
}

.box2-6:after {
  background-color: rgba(229, 229, 227, 0.5); /* ずらしたボックスの背景色 */
  border: none; /* 枠線なし */
  content: ""; /* 擬似要素にコンテンツなし */
  position: absolute; /* 配置（ここを動かす） */
  top: 7px; /* 上から7pxずらす */
  left: 7px; /* 左から7pxずらす */
  width: 100%; /* 幅100%（親要素に合わせる） */
  height: 100%; /* 高さ100%（親要素に合わせる） */
  z-index: -1; /* 背景として後ろに表示 */
}

.box2-6 p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.box2-6 p__name {
  text-align: right;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

/* SWELL目次風 */
.box2-9 {
  --border-color-1: variables.$color-accent;
  --border-color-2: #CEA502;
  margin: 0 auto 2em;
  padding: 2em;
  background: linear-gradient(-45deg, transparent 25%, var(--border-color-1) 25%, var(--border-color-1) 50%, transparent 50%, transparent 75%, var(--border-color-1) 75%, var(--border-color-1));
  background-size: 4px 4px;
  background-clip: padding-box;
  max-width: 400px;
  position: relative; /* 必須 */
  border: none; /* border-double は使わない */
}

.box2-9::before,
.box2-9::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color-2);
}

.box2-9::before {
  top: 0; /* 上1本目 */
  box-shadow: 0 4px var(--border-color-2); /* 上2本目との間隔を6pxに */
}

.box2-9::after {
  bottom: 0; /* 下1本目 */
  box-shadow: 0 -4px var(--border-color-2); /* 下2本目との間隔を6pxに */
}

/* pタグの余白 */
.box2-9 p {
  margin: 0;
}

.hero__wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
}

body.loaded .hero__wrapper {
  animation: fadeSlideLeft 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-image {
  height: 100vh;
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 10%;
  left: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-family: "Shippori Mincho", serif;
}
.hero-text h2 {
  color: #FCFAFB;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 1.2rem;
}
.hero-text h2 .line {
  display: block;
  opacity: 0;
  margin-top: 0.8rem;
  transform: translateY(20px);
  filter: blur(6px);
  animation: dreamyFade 2s ease-out forwards;
}
.hero-text h2 .line:nth-child(1) {
  animation-delay: 3.4s;
}
.hero-text h2 .line:nth-child(2) {
  animation-delay: 4s;
}
.hero-text h2 .line:nth-child(3) {
  animation-delay: 5s;
}

@keyframes dreamyFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.section {
  padding: 4rem 1rem;
  text-align: center;
}
.section--light {
  background-color: #F8EFF8;
}
.section--soft {
  background-color: #FCFAFB;
}

.section-divider {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.about {
  background-color: #F8EFF8;
  padding: 6rem 1rem;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}
.about__image {
  text-align: center;
  padding-top: 2rem;
}
.about__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: inline-block;
}
.about__description {
  text-align: center;
  font-size: 0.95rem;
  color: #55554F;
  max-width: 800px;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .about__description {
    font-size: 0.98rem;
  }
}

.policy {
  background-color: #FCFAFB;
  padding: 6rem 0;
}
.policy__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.policy__visual {
  position: relative;
  display: inline-block;
}
.policy__visual .policy__image {
  width: 80%;
  height: auto;
  display: block;
}
.policy__visual .lesson-policy__catchcopy {
  position: absolute;
  top: 2rem;
  right: 1rem;
  color: #55554F;
  background-color: #FCFAFB;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.guide {
  background-color: #F8EFF8;
  padding: 6rem 1rem;
}
.guide__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}
.guide__description {
  text-align: center;
  font-size: 0.98rem;
  color: #55554F;
  max-width: 800px;
  padding: 0 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .guide__description {
    font-size: 1rem;
  }
}

.instructor {
  background-color: #FCFAFB;
  padding: 6rem 1rem;
}
.instructor__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 768px;
  margin: 0 auto;
  padding: 2rem 0;
}

.profile__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.profile__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.profile__role {
  font-size: 0.85rem;
  color: #55554F;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .profile__role {
    font-size: 0.95rem;
  }
}
.profile__name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile__name-ja {
  font-size: 1.3rem;
  color: #302B2E;
  line-height: 1.6;
  text-align: center;
}
.profile__name-ja span {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .profile__name-ja {
    font-size: 1.4rem;
  }
}
.profile__name-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #302B2E;
}
@media (min-width: 768px) {
  .profile__name-en {
    font-size: 1.125rem;
  }
}
.profile__contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__item a {
  color: #302B2E;
  font-size: 0.64rem;
  cursor: pointer;
  word-break: break-word;
}
.contact__item a:hover {
  color: #bba2bb;
  transition: all 0.3s ease;
}
.contact__item p {
  margin: 0.25rem 0;
  font-size: 0.8rem;
  text-align: center;
}
.contact__item span {
  font-size: 0.7rem;
  color: #55554F;
}
.contact__icon {
  width: 30px;
  height: auto;
  margin-top: 0.25rem;
}
.contact__text {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 1rem;
  }
}

.button {
  position: relative;
  z-index: 2;
}

.studio {
  background-color: #FCFAFB;
  padding: 6rem 1rem;
}
.studio__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
}
.studio__gallery {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 0.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.studio__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.studio__img.img1 {
  grid-column: 1/5;
  grid-row: 1/3;
}
.studio__img.img2 {
  grid-column: 5/12;
  grid-row: 1/4;
}
.studio__img.img3 {
  grid-column: 12/16;
  grid-row: 2/2;
}
.studio__img.img4 {
  grid-column: 12/16;
  grid-row: 3/4;
}
.studio__description {
  text-align: center;
  font-size: 0.98rem;
  color: #55554F;
  max-width: 800px;
  padding-top: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .studio {
    font-size: 1rem;
  }
}

.price {
  background-color: #F8EFF8;
  padding: 6rem 1rem;
}
.price__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
  max-width: 768px;
  margin: 0 auto;
}
.price__description {
  text-align: center;
  font-size: 0.95rem;
  color: #55554F;
  max-width: 800px;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .price__description {
    font-size: 0.98rem;
  }
}

.access {
  background-color: #F8EFF8;
  padding: 6rem 1rem;
}
.access__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}
.access__map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  display: block;
}
.access__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}
@media (min-width: 768px) {
  .access__description {
    padding: 0 1rem;
  }
}
.access__header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #CEA502;
  padding-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.access__icon {
  width: 24px;
  height: auto;
}
.access__title {
  font-size: 1rem;
  color: #55554F;
}
@media (min-width: 768px) {
  .access__title {
    font-size: 1.125rem;
  }
}
.access__text {
  font-size: 0.9rem;
  color: #302B2E;
}
@media (min-width: 768px) {
  .access__text {
    font-size: 1rem;
  }
}

.footer {
  position: relative;
  background-color: #F8EFF8;
  padding: 3rem 1rem;
  overflow: hidden;
  width: 100vw;
  box-sizing: border-box;
}
.page-about .footer {
  background-color: #F8EFF8;
}
.page-policy .footer {
  background-color: #FCFAFB;
}
.page-guide .footer {
  background-color: #F8EFF8;
}
.page-instructor .footer {
  background-color: #FCFAFB;
}
.page-price .footer {
  background-color: #F8EFF8;
}
.page-studio .footer {
  background-color: #FCFAFB;
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-nav .nav_menu_li {
  display: flex;
  align-items: center;
}
.footer .footer-nav .nav_menu_li a {
  text-decoration: none;
  font-size: 1rem;
  color: #55554F;
}
.footer .footer-nav .nav_menu_li a:hover {
  color: #bba2bb;
  transition: 0.3s;
}
.footer .footer-nav .nav_menu_li .instagram-icon {
  width: 24px;
  height: auto;
}
.footer__img {
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 150px;
  pointer-events: none;
  z-index: 0;
}
.footer .copyright {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #55554F;
  margin-top: 1rem;
}

.about-detail {
  background-color: #F8EFF8;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.about-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.about-detail__gallery {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 0.25rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-detail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-detail__img.img2 {
  grid-column: 1/10;
  grid-row: 1/3;
}
.about-detail__img.img3 {
  grid-column: 7/16;
  grid-row: 3/4;
}
.about-detail__img.img4 {
  grid-column: 1/11;
  grid-row: 4/5;
}
.about-detail .about-detail-text p {
  color: #302B2E;
  padding: 0 1rem;
  max-width: 500px;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .about-detail .about-detail-text p {
    font-size: 0.98rem;
  }
}
.about-detail .about-detail-image {
  width: 80%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem;
}
.about-detail .margin-top {
  margin-top: 1em;
}

.policy-detail {
  background-color: #FCFAFB;
  padding-block: 4rem;
}
.policy-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 1rem;
}
.policy-detail__text {
  color: #302B2E;
  padding: 0 1rem;
  max-width: 500px;
}
.policy-detail__text p {
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .policy-detail__text p {
    font-size: 0.98rem;
  }
}
.policy-detail__text__image {
  width: 80%;
  max-width: 500px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem;
}
.policy-detail__image-top {
  width: 60%;
  max-width: 350px;
}
.policy-detail .margin-top {
  margin-top: 1em;
}

.guide-detail {
  background-color: #F8EFF8;
  padding-block: 4rem;
}
.guide-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 1rem;
}
.guide-detail__accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.guide-detail__accordion {
  text-align: center;
}
.guide-detail__accordion-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: #55554F;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.guide-detail__accordion-toggle:hover {
  opacity: 0.7;
}
.guide-detail__accordion-content {
  display: none;
  padding: 1rem;
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .guide-detail__accordion-content__content {
    font-size: 0.98rem;
  }
}
.guide-detail__accordion-content ul {
  list-style: none;
  padding-left: 1.5em;
}
.guide-detail__accordion-content ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
  font-size: 0.95rem;
  line-height: 1.6;
}
.guide-detail__accordion-content ul li::before {
  content: "・";
  margin-right: 0.5em;
}
.guide-detail__accordion__image-bottom {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.guide-detail__accordion__image-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-detail .more-voices-wrapper {
  margin-top: 1rem;
  text-align: center;
}
.guide-detail .more-voices-wrapper .more-voices-button {
  display: block;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: bold;
  font-size: 0.95rem;
  color: #55554F;
  cursor: pointer;
  transition: opacity 0.3s;
}
.guide-detail .more-voices-wrapper .more-voices-button:hover {
  opacity: 0.7;
}
.guide-detail .more-voices-wrapper .more-voices-content {
  display: none;
  padding-top: 1rem;
}

.instructor-detail {
  background-color: #FCFAFB;
  padding-block: 4rem;
}
.instructor-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 1rem;
}
.instructor-detail__image {
  max-width: 500px;
  height: auto;
  margin: 2rem;
}
.instructor-detail__gallery {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.instructor-detail__image-top {
  width: 80%;
  max-width: 500px;
}
.instructor-detail .skill__header {
  align-self: flex-start;
  text-align: left;
  margin-left: 1rem;
}
.instructor-detail .skill__header .skill__title {
  text-align: left;
}
.instructor-detail .info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instructor-detail .info-wrapper ul {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1000px;
}
.instructor-detail .info-wrapper .info-block {
  display: flex;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.instructor-detail .info-wrapper .info-block__p {
  flex: 1;
  padding: 0.6rem;
}
.instructor-detail .info-wrapper .info-block__p p {
  position: relative;
  font-size: 0.95rem;
  padding-left: 1.2em;
  text-indent: 0;
}
.instructor-detail .info-wrapper .info-block__p p::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .instructor-detail .info-wrapper .info-block__p p {
    font-size: 0.98rem;
  }
}
.instructor-detail .info-wrapper .info-block__p a {
  color: #55554F;
  text-decoration: none;
  font-weight: bold;
}
.instructor-detail .info-wrapper .info-block__p a:hover {
  text-decoration: underline;
}
.instructor-detail .studio__gallery .instructor-detail__info1 {
  grid-column: 1/8;
  grid-row: 1/3;
}
.instructor-detail .studio__gallery .instructor-detail__info2 {
  grid-column: 8/17;
  grid-row: 2/4;
}
.instructor-detail .policy-detail__text {
  color: #302B2E;
  padding: 0 1rem;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .instructor-detail .policy-detail__text {
    font-size: 0.98rem;
  }
}

.price-detail {
  background-color: #F8EFF8;
  padding-block: 4rem;
}
.price-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding: 4rem 1rem;
}
.price-detail .price-card--trial {
  width: 350px;
  aspect-ratio: 1/1;
  padding: 1.5rem;
  border: 1px solid #CEA502;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  background-color: #F8EFF8;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: scale(1.02);
  transition: all 0.3s ease;
}
.price-detail .price-card--trial__title {
  font-size: 1.2rem;
  border-bottom: 1px solid #CEA502;
}
.price-detail .price-card--trial .price-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.price-detail .price-card--trial .price-card__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.price-detail .price-card--trial .price-card__label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.price-detail .price-card--trial .price-card__value {
  font-size: 1rem;
}
.price-detail .price-card--trial .price-card__note {
  font-size: 0.8rem;
  color: #666;
}
.price-detail .price-card {
  width: 350px;
  aspect-ratio: 1/1;
  padding: 1.5rem;
  border: 1px solid #CEA502;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  background-color: #FCFAFB;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price-detail .price-card__title {
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 0.3rem;
  letter-spacing: 0.2em;
}
.price-detail .price-card__time {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-align: center;
}
.price-detail .price-card__time span {
  font-size: 1rem;
}
.price-detail .price-card__desc {
  font-size: 1rem;
}
.price-detail .price-card__list p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 0.3rem 0;
  text-align: center;
}
.price-detail .price-card__memo {
  font-size: 0.9rem;
  color: #666;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(102, 102, 102, 0.4);
  font-style: italic;
}
.price-detail .price-note {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 700px;
  padding: 0 1rem;
  color: #302B2E;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
.price-detail .price-note__fee {
  font-size: 1rem;
}
.price-detail .price-note__section .price-note__title {
  font-size: 1rem;
}
.price-detail .price-note__section hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 60%;
  margin: 0 auto 1rem;
}
.price-detail .price-note__section p {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.price-detail .price-note .event-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 2rem 1rem;
}
.price-detail .price-note .event-price__block {
  background-color: rgba(252, 250, 251, 0.6);
  border-radius: 10px;
  padding: 0.5rem;
  width: 230px;
  text-align: center;
}
.price-detail .price-note .event-price__label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.price-detail .price-note .event-price__line {
  margin: 0.2rem 0;
}
.price-detail .price-note .event-price__plus {
  font-size: 1.2rem;
}
.price-detail .price-note .event-price__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
.price-detail__gallery .price-detail__img1 {
  grid-column: 1/8;
  grid-row: 1/3;
}
.price-detail__gallery .price-detail__img2 {
  grid-column: 8/16;
  grid-row: 2/4;
}

.price-detail {
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .price-detail {
    font-size: 0.98rem;
  }
}
.price-detail .price-card .price-card__label,
.price-detail .price-card .price-card__value,
.price-detail .price-card .price-card__desc,
.price-detail .price-card .price-card__time,
.price-detail .price-card .price-card__list p,
.price-detail .price-card .price-card__memo,
.price-detail .price-card .price-card__note,
.price-detail .price-card--trial .price-card__label,
.price-detail .price-card--trial .price-card__value,
.price-detail .price-card--trial .price-card__desc,
.price-detail .price-card--trial .price-card__time,
.price-detail .price-card--trial .price-card__list p,
.price-detail .price-card--trial .price-card__memo,
.price-detail .price-card--trial .price-card__note {
  font-size: inherit;
}
.price-detail .price-note {
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .price-detail .price-note {
    font-size: 0.98rem;
  }
}
.price-detail .price-note .price-note__fee {
  font-size: 1.05rem;
}
@media (min-width: 768px) {
  .price-detail .price-note .price-note__fee {
    font-size: 1.2rem;
  }
}
.price-detail .price-note .event-price {
  font-size: 1.05rem;
}
@media (min-width: 768px) {
  .price-detail .price-note .event-price {
    font-size: 1.1rem;
  }
}
.price-detail .price-note .event-price__plus {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .price-detail .price-note .event-price__plus {
    font-size: 1.2rem;
  }
}
.price-detail .price-note .event-price__note {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .price-detail .price-note .event-price__note {
    font-size: 0.95rem;
  }
}

/* 背景用の固定画像エリア */
.studio-hero {
  position: relative;
  z-index: -1;
  transition: all 0.6s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none; /* 背景にしてクリックを無効化 */
  /* 背景化されたとき */
}
.studio-hero__image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.6s ease;
}
.studio-hero.is-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.studio-hero.is-background .studio-hero__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* メインコンテンツは上に重ねる */
.studio-detail {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9); /* 背景と馴染ませる */
  background-color: #FCFAFB;
  padding-block: 4rem;
  /* フェードイン共通 */
}
.studio-detail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  padding: 4rem 1rem;
}
.studio-detail .button {
  position: relative;
  z-index: 2;
}
.studio-detail .fadein-target {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.studio-detail .fadein-target.visible {
  opacity: 1;
  transform: translateY(0);
}
.studio-detail__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130vh;
  padding-top: 70vh;
  padding-bottom: 10vh;
  font-size: 1rem;
}
.studio-detail__image {
  padding: 0 1rem;
}
.studio-detail__text p {
  max-width: 500px;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .studio-detail__text p {
    font-size: 0.98rem;
  }
}
.studio-detail__text p a {
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #55554F;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-left: 1.2em;
}
.studio-detail__text p a::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  color: #55554F;
}
.studio-detail__text p a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

body {
  background-color: #F8EFF8;
  position: relative;
  /* background-image: url('../images/background.png'); // 画像パスを適宜変更
  background-size: cover;           // 画面全体に広げる
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed; */
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  body {
    background-image: none;
  }
}

body::before {
  content: "";
  position: fixed;
  background-image: url("../images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  box-sizing: border-box;
}

.pc--wrapper__wrapper {
  position: fixed;
  width: 40%;
  top: 0;
  left: 3%;
}
@media screen and (min-width: 768px) and (max-width: 940px) {
  .pc--wrapper__wrapper {
    left: -2%;
  }
}

.device-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .device-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
  }
}

.pc--wrapper {
  display: none;
}
@media (min-width: 769px) {
  .pc--wrapper {
    display: block;
    height: 100vh;
    position: relative;
    padding: 1rem;
  }
}

.sp--wrapper {
  width: 100%;
}
@media (min-width: 769px) {
  .sp--wrapper {
    width: 60%;
    max-width: 400px;
    margin: 0 10% 0 auto;
  }
}

@media (min-width: 769px) {
  .footer {
    display: none;
  }
}

.wave {
  background-color: transparent;
}
.wave svg {
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;
}/*# sourceMappingURL=style.css.map */