@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #0A0248;
  --base-color: #fef1e6;
  --orange-color: #f9d5a7;
  --primary-color: #FF9423;
  --accent-color: #90aacb;
  --white-color: #FFFAF6;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  background-color: var(--base-color);
  color: var(--black-color);
  font-size: 12px;
  font-family: 'Kiwi Maru', serif;
  line-height: 1.8;
  letter-spacing: 0.1em;

}
@media screen and (min-width: 1080px) {
  body {
    font-size: 16px;
  }
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}


/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 48px 0;
}
@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 80px 0;
  }
}
.l_header {
  height: 64px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  position: sticky;
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

/* .l_header_single {
    position: sticky;
    background-color: var(--base-color);
} */

.l_header-logo {
  position: relative;
  height: 50px;
  width: 50px;

}

.l_header-logo_link {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 48px;
    position: static;
    transform: none;
  }
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    color: var(--black-color);
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}
.l_main {
  background-color: var(--base-color);
}

.footer {
  text-align: center;
  padding: 16px 0;
  background: #111;
}

.footer-copyright {
  color: #fff;
}

.l_footer {
  padding: 64px 0 24px;
  text-align: center;
  background-color: var(--base-color);
}

.l_footer_logo {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}

.l_footer_logo_link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_footer_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l_footer_item {
  font-size: 14px;
}

.l_footer_item:not(:first-child) {
  margin-top: 16px;
}

.l_footer_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_footer-copyright {
  margin-top: 48px;
}

.l_footer-copyright_txt {
  font-size: 12px;
  color: var(--gray-color);
}

.l_inst_gallery-photo{
    margin-inline: 24px;
  }


/* ---------- module ---------- */

.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: var(--base-color);
  display: flex;
}

.m_opening_txt {
  text-align: center;
  margin: auto;
}

.m_opening_heading {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_opening_heading {
    font-size: 56px;
  }
}

.m_opening_desc {
  color: var(--black-color);
  font-weight: bold;
  font-size: 24px;
  margin-top: 16px;
}

.m_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  overflow: hidden;
  margin-top: 20px;
  padding: 9px 6px;
  color: var(--base-color);
  background-color: var(--accent-color);
  border-radius: 30px;
}
@media screen and (min-width: 1080px) {
  .m_btn {
    font-size: 24px;
    margin-top: 32px;
  }
}
.m_btn:hover {
  opacity: 0.9;
}

.m_btn_input {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.m_btn__right-arrow {
  position: relative;
}

.m_btn__right-arrow::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--base-color);
}

.m_section_title {
  position: relative;
  font-family: 'Gravitas One', cursive;
}

.m_section_title_main {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_section_title_main {
    font-size: 56px;
  }
}

.m_section_title_sub {
  color: var(--accent-color);
  letter-spacing: 0.3em;
  text-align: center;
}

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);

}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--black-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_btn__news {
  height: 34px;
  width: 110px;
}
@media screen and (min-width: 1080px) {
  .m_btn__news {
    height: 55px;
    width: 180px;
  }
}


.m_article-item{ 
  flex-shrink: 0;
  /* width: 320px;
  height: auto; */
  background: var(--white-color);
  box-shadow: 2px 2px 4px var(--orange-color);
  margin: 24px 0px 24px 0px;
  border-radius: 30px;
}
@media screen and (min-width: 768px){
  .m_article-item{
    width: 400px;
    height: auto;
  }
}
@media screen and (min-width: 1080px)  {
  .m_article-item {
    width: 500px;
    height: auto;
  }
}
.m_article-item-photo{
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media screen and (min-width: 1080px){
  .m_article-item-photo{
    height: 400px;
  }
}

.m_article-item_txt {
  text-align: center;
  padding: 24px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: var(--black-color);
}


.m_article-item_comment{
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .m_article-item_txt__col-4 {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.m_article-item_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m_article-item_meta-date {
  color: var(--gray-color);
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .m_article-item_meta-date {
    font-size: 12px;
  }
}

.m_article-item_meta-cat {
  color: var(--white-color);
  font-size: 12px;
  padding: 4px 16px;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 4px;
}

.m_article-item_title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_article-item_title__col-4 {
    margin-top: 8px;
  }
}

.m_article-list {
  display: flex;
  flex-wrap: wrap;
}

.studio-point-container .class-info-container {
  display: flex;
  justify-content: center;
}
/* @media screen and (min-width: 768px) {
  .studio-point-container .class-info-container {
    gap: 32px;
}}
@media screen and (min-width: 1080px) {
  .studio-point-container .class-info-container {
    gap: 40px;
}} */

/* ---------- .top_kv ---------- */
.top_kv{
  position: relative;
}
.top_kv-inner {
  position: relative;
  height: 100%;
}
.top_kv_box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .top_kv_box {
    text-align: left;
    left: 0;
    transform: translate(0, -50%);
  }
}

.top_kv_copy{
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

.top_kv-slideshow_slide{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
}


/* ---------- .top_studio ---------- */

.studio-point-container{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.studio-concept-info{
  text-align: center;
  padding: 24px;
}

.studio_concept_nav {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -104px;
  top: auto;
}

.studio_concept_nav__prev {
  left: auto;
  right: calc(50% + 96px);
}

.studio_concept_nav__next {
  right: auto;
  left: calc(50% + 96px);
}

.studio_concept_nav__prev:after,
.studio_concept_nav__next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
}

.studio_concept_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.studio_concept_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.studio_concept_dots {
  position: absolute;
  left: 50% !important;
  bottom: -90px !important;
  transform: translateX(-50%);
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.studio_concept_dots .swiper-pagination-bullet {
  background: var(--gray-color);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 2px solid var(--white-color);
}

.studio_concept_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}


.aspect-ratio-block1{
  background-image: url(/src0303/img/studio-point1.jpg);
  background-size:cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.aspect-ratio-block2{
  background-image: url(/src0303/img/studio-point2.jpg);
  background-size:cover;
  width: 100%;
  aspect-ratio: 4 / 3;

}

.aspect-ratio-block3{
  background-image: url(/src0303/img/studio-point3.jpg);
  background-size:cover;
  width: 100%;
  aspect-ratio: 4 / 3;

}


/* ---------- .top_instructor---------- */
.instructor-photo {
  margin: auto;
  overflow: hidden;
  width: 250px;
  height: 250px;
  object-fit: contain;
  object-position: 50 100%;
  border-radius: 50%;
  margin-top: 16px;
}

@media screen and (min-width: 720px) {
  .instructor-photo  {
    width: 350px;height: 350px;
    margin-top: 0px 16px;
  }
}

@media screen and (min-width: 1080px) {
  .instructor-photo  {
    width: 500px;height: 500px;
    margin-top: 0px 16px;
  }
}


.instructor_comment{
  text-align: center;
  padding: 16px;
}

/* ---------- class&schedule ---------- */

.class-concept{
  text-align: center;
}
.schedule{
  text-align: center;
}

.class-info-container{
  display: flex;
  justify-content: center;
}


.class-title{
  text-align: center;
  font-weight: bold;
  margin: 8px;
}

.classinfo_attention{
  padding: 0px 16px;
}

.classinfo-1{
  background-color: #fff2bd;
  box-shadow: 2px 2px 2px rgba(0, 1, 0, 0.16);
}
.classinfo-2{
  background-color: #ffc7b9;
  box-shadow: 2px 2px 2px rgba(0, 1, 0, 0.16);
}

.classinfo-3{
  background-color: #d1ad97;
  box-shadow: 2px 2px 2px rgba(0, 1, 0, 0.16);
}
.classinfo-txt{
  padding: 16px;
}

.classinfo_nav {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -104px;
  top: auto;
}

.classinfo_nav__prev {
  left: auto;
  right: calc(50% + 96px);
}

.classinfo_nav__next {
  right: auto;
  left: calc(50% + 96px);
}

.classinfo_nav__prev:after,
.classinfo_nav__next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
}

.classinfo_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.classinfo_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.classinfo_dots {
  position: absolute;
  left: 50% !important;
  bottom: -90px !important;
  transform: translateX(-50%);
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.classinfo_dots .swiper-pagination-bullet {
  background: var(--gray-color);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 2px solid var(--white-color);
}

.classinfo_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.price{
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.price-category1{
  margin-bottom: 24px;
}
.category{
  font-weight: bold;
}

.monthly, .ticket{
  width: 90%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.monthly_type, .ticket_price {
  flex: 0 1 auto;
}

.centerLine{
  padding: 5px 15px;
  flex-grow: 2;}

.monthly_price, .ticket_price {
  flex: 0 1 auto;
}
.ticket_limit{
  font-size: 10px;
}




 /* ---------- Q&A ---------- */
.qalist{
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qa-7 {
  /* max-width: 500px; */
  margin-bottom: 10px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
  background-color: #fff;
}

.qa-7 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.qa-7 summary::before,
.qa-7 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-7 summary::before {
  color: #75bbff;
  content: "Q";
}

.qa-7 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}

.qa-7[open] summary::after {
  transform: rotate(225deg);
}

.qa-7 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  transition: transform .5s, opacity .5s;
}

.qa-7[open] p {
  transform: none;
  opacity: 1;
}

.qa-7 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}
.summare-answer{
  font-family: 'Kiwi Maru', serif;
}


/* ---------- .top_accsess ---------- */
.map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px;
  overflow: hidden;
  height: 200px;
}
@media screen and (min-width: 725px) {
  .map{
    height: 350px;
  }
}
@media screen and (min-width: 1080px) {
  .map{
    height: 350px;
  }
}
.access-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.access-item:not(:first-child) {
  margin-top: 12px;
}
.access-link {
  margin-left: 8px;
}

.concent {
  width: 29px;
  height: 29px;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info {
  display: flex;
  justify-content: center;
  gap: 40px;
}



/* ---------- contact ---------- */
.top_contact_btn-wrapper {
  display: flex;
  justify-content: center;
}
.contact{
  text-align: center;
}



/* ---------- footer ---------- */
.sns-btn {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px;
}

.instagram-btn{
  width: 29px;
  height: 29px;
}
.line-btn{
  width: 29px;
  height: 29px;
}






/*---------- contact form ----------*/

.contact_kv {
  background: url(../img/contact_kv.webp) center top / cover;
}

.contact_kv_logo_backdroud {
  width: 230px;
  height: 60px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  text-align: center;
  border-radius: 40%;
  filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .contact_kv_logo_backdroud {
    width: 400px;
    height: 120px;
  }
}
.contact_form {
  margin-bottom: 40px;
}

.contact_txt {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.contacttxt_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .contacttxt_br {
    display: block;
  }
}

.contact_main {
  background: var(--gray-color);
  padding-bottom: 120px;
}

.contact_form_heading {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact_form_heading:not(:first-child) {
  margin-top: 64px;
}

.contact_form_required {
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 48px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: gray;
  border-radius: 20px;
}

.contact_form_detail {
  margin-top: 8px;
}

.contact_form_detail__other {
  margin-top: 24px;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid gray;
  background: white;
}

.contact_form_example-wrapper {
  text-align: right;
  height: 28px;
  margin-top: 8px;
}

.contact_form_example {
  color: var(--gray-color04);
  font-size: 14px;
}

.contact_form_check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_form_check-item {
  background: var(--gray-color03);
}

.contact_form_request-item-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  cursor: pointer;
}

.top_case_item_txt {
  padding: 16px;
}

.contact_form_request-txt {
  margin-left: 16px;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 8px;
  border: 1px solid gray;
  background: white;
}

.contact_form_btn-wrapper {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m_btn__more {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  overflow: hidden;
  margin-top: 20px;
  padding: 9px 6px;
  color: var(--base-color);
  background-color: var(--accent-color);
  border-radius: 30px;
}
@media screen and (min-width: 1080px) {
  .m_btn__more {
    font-size: 24px;
    margin-top: 32px;
  }
}
.m_btn__more:hover {
  opacity: 0.9;
}



.reserve-button {
  z-index: 150;
  position: fixed;
  right: 0;
  bottom: 0; 
  font-size: 32px;
  border-radius: 50%;
  margin: 8px;
  padding: 8px;
  background: var(--primary-color);
  cursor: pointer;
}

@media screen and (min-width: 727px) {
  .reserve-button {
    font-size: 40px;
  }
  }
@media screen and (min-width: 1080px) {
.reserve-button {
  font-size: 56px;
}
}



/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  background: #fff;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.js_success-swiper {
  position: relative;
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}

/* cf7 style */
.wpcf7-list-item {
    margin: 0;
  }
  
  .wpcf7-list-item:not(:first-child) {
    margin-left: 16px;
  }
  
  .wpcf7-list-item-label {
    font-weight: bold;
    margin-left: 8px;
  }





 


























