@charset "utf-8";
/*
Theme Name: Original Theme

*/

:root {
  --color-black: #333333;
  --color-theme: #000000;
}

html {
  font-style: normal;
  font-size: 62.5%;
  position: relative;
  text-align: justify;
  color: var(--color-black);
  /* scroll-behavior: smooth; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}
.en,
.cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border: none;
  background-color: white;
  padding: 5px;
}


.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  width: calc(100% - 30px);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {

}
h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
}
h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4,h5,h6 {
  font-size: 2.8rem;
}

p,th,td,li,dt,dd {
  font-size: 1.6rem;
  line-height: 1.6;
}



a,button {
  cursor: pointer;
}



a {

  transition: all 0.2s ease;
}

section {
  position: relative;
}

@media screen and (min-width: 901px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }

  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 2.2rem;
  }
  
  
  h4,h5,h6 {
    font-size: 1.6rem;
  }

  p,th,td,li,dt,dd {
    line-height: 1.6;
    font-size: 1.5rem;
  }
  
  .wrapper {
    width: calc(100% - 32px);
  }
}

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

}



/***共通***/

.left_title {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg) translate(40px, 100%);
  font-size: 4rem;

}

.left_title::after {
  content: '';
  height: 1px;
  width: 134px;
  background-color: #000000;
  left: calc(100% + 14px);
  top: calc(50% + 2px);
  transform: translateY(-50%);
  position: absolute;
}


.black_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  height: 70px;
  color: white;
  background-color: var(--color-theme);
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--color-theme);
}


.black_btn a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 24px;
}


.black_btn a img {
  margin-right: 16px;
  width: 36px;
}

.black_btn.white a {
  background-color: white;
  color: var(--color-theme);
  height: 60px;
}


.black_btn.white a::after {
  border-top: 2px solid var(--color-theme);
  border-right: 2px solid var(--color-theme);
}


.sec_title {

}

.sec_title .en {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}


.sec_title .jp {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
}

.normal_title .en {
  display: flex;
  align-items: center;
}

.normal_title .en::after {
  content: '';
  width: 100%;
  flex: 1;
  max-width: 300px;
  height: 1px;
  background-color: var(--color-theme);
  margin-left: 35px;
}

@media screen and (max-width: 900px) {
  .left_title {
    position: relative;
    transform: inherit;
    font-size: 4rem;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transform: none;
    margin: 0 auto;
  }
  
  .left_title::after {
    height: 1px;
    max-width: 134px;
    flex: 1;
    width: 100%;
    left: inherit;
    top: inherit;
    transform: inherit;
    position: relative;
    margin-left: 20px;
  }

}

/***header***/
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(255,255,255,0.8);
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


header .logo {
  max-width: 258px;
}


header .header_menu .contact {
  display: flex;
  height: 70px;
  width: 100px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--color-theme);
  font-size: 1.2rem;
  color: white;
  line-height: 1;
  font-weight: 600;
}
header .header_menu .contact img {
  width: 20px;
  margin-bottom: 8px;
}
@media screen and (min-width: 901px) {
  header .header_menu {
    display: flex;
    gap: 30px;
  }
  
  header .header_menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
  }

    
  header .header_menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-align: center;
  }

  header .header_menu ul li a span {
    font-size: 1.2rem;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }





}


@media screen and (max-width: 900px) {
  header {
    padding: 10px 5px;
  }
  header .logo {
    z-index: 100;
    max-width: 220px;
  }
  header .header_menu {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 80px;
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
    display: none
  }


  .header_menu ul {
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .header_menu ul li {
    padding: 10px 5px;
    border-bottom: 1px solid #E9E9E9;
  }

  header .header_menu ul li a span::before {
    content: '-';
    margin: 0 5px;
  }


header .header_menu .contact {
  width: calc(100% - 60px);
  margin: 0 auto;
  flex-direction: row;
}
header .header_menu .contact img {
  width: 20px;
  margin-bottom: 0px;
  margin-right: 8px;
}



  .openbtn{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 30px;
    height:20px;
    display: block;
    z-index: 10;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 0;
      height: 2px;
    background: var(--color-theme);
      width: 100%;
    }
  
  .openbtn span:nth-of-type(1) {
    top:0px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:10px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:20px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);

  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);

  }


}



/***FV***/
.fv_sec {
  position: relative;
  color: white;
}

.fv_sec .fv_main {
  width: calc(100% - 160px);
  margin: 0 auto;
  position: relative;
  height: 670px;
}

.fv_sec .fv_main img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fv_sec .fv_sub_top {
  max-width: 280px;
  width: 21%;
  top: 40px;
  right: 20px;
  position: absolute;

}

.fv_sec .fv_sub_bottom {
  max-width: 415px;
  width: 31%;
  position: absolute;
  left: 25px;
  bottom: 45px;
}

.fv_sec .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 160px);
  height: 100%;
}



.fv_sec .main_text {
  margin-top: 210px;
  text-align: center;
  margin-bottom: 80px;
}

.fv_sec .main_text .en {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.fv_sec .main_text h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.fv_sec .main_text .jp {
  font-size: 1.8rem;
  font-weight: 500;
}

.fv_sec .sub_text {
  max-width: 370px;
  margin-left: auto;
}


.fv_sec .fv_main img,
.fv_sec .fv_sub_top,
.fv_sec .fv_sub_bottom {
  max-width: 100%;
}

@media screen and (max-width: 900px) {
  .fv_sec .fv_main {
    width: calc(100% - 30px);
    height: 570px;
  }


  .fv_sec .fv_sub_top {
    top: 10px;
    right: 5px;
  }


.fv_sec .fv_sub_bottom {
  width: 31%;
  left: 5px;
  bottom: 10px;
}


.fv_sec .wrapper {
  width: calc(100% - 50px);
}

.fv_sec .main_text {
  margin-top: 60px;
  margin-bottom: 30px;
}

.fv_sec .main_text .en {
  font-size: 2rem;
  margin-bottom: 24px;
}

.fv_sec .main_text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.fv_sec .main_text .jp {
  font-size: 1.8rem;
  font-weight: 600;
}

}


/***SERVICE***/
.sercive_sec {
  margin-top: 94px;
}

.sercive_sec .main_service {
  margin-bottom: 100px;
  position: relative;
}

.service_content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.service_content .image {
  width: 50%;
}

.service_content .text {
  flex: 1;
  max-width: 470px;
}




.service_content .text .sub {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 16px;
}

.service_content .text .title {
  font-size: 2.6rem;
  margin-bottom: 34px;
}


.sercive_sec .main_service .service_content {
  margin-bottom: 30px;
}
.sercive_sec .main_service .service_content .text {
  padding-left: 90px;
}

.service_list .service_content:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.service_list .service_content:not(:last-of-type) {
  margin-bottom: 95px;
}



.sercive_sec .example {

}
.sercive_sec .example h4 {
  font-size: 2.6rem;
  margin-bottom: 35px;
}

.sercive_sec .example_list {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.sercive_sec .example_list li {
  width: calc(100% / 4 - 30px / 4);
}

.sercive_sec .contact_before {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.other_service .sec_title {
  margin-bottom: 35px;
}


@media screen and (max-width: 900px) {

  .sercive_sec {
    margin-top: 60px;
  }
  .sercive_sec .main_service {
    margin-bottom: 60px;
  }
  .service_content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .service_content .image {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }
  
  .service_content .text {
    width: 100%;
    max-width: inherit;
  }

  .service_content .text .sub {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .service_content .text .title {
    font-size: 2.6rem;
    margin-bottom: 16px;
  }
  
  .sercive_sec .main_service .service_content {
    margin-bottom: 40px;
  }

  .sercive_sec .main_service .service_content .text {
    padding-left: 0px;
  }


.service_list .service_content:nth-of-type(2n) {
  flex-direction:column;
}

.sercive_sec .example h4 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.sercive_sec .example_list {
  flex-wrap: wrap;
  justify-content: center;
}

.sercive_sec .example_list li {
  width: 100%;
  max-width: 400px;
}
.sercive_sec .contact_before {
  font-size: 1.6rem;
}

}


/***Voice***/
.voice_sec {
  margin-top: 120px;
  padding: 140px 0;
  overflow-x: hidden;
}

.voice_sec::before {
  content: '';
  width: calc(50vw + 200px);
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.voice_sec .wrapper {
  display: flex;
  align-items: center;
  gap: 64px;
}

.voice_sec .sec_title .en {
  font-size: 6rem;
}

.voice_sec .box {
  flex: 1;
  margin-right: calc(50% - 50vw);
}

.voice_sec .voice_list > li:nth-of-type(n + 2) {
  display: none;
}

.voice_list figure {
  width: 250px;
  height: 315px;
  overflow: hidden;
  position: relative;
  margin-right: 24px;
}

.voice_list figure img,
.voice_list figure video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
}


.voice_list .slick-prev,
.voice_list .slick-next {
  width: 87px;
  height: 87px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.8);
  top: calc(100% + 60px);
}


.voice_list .slick-prev {
  left: -200px;
}
.voice_list .slick-next {
  right: 100%;
}

.voice_list .slick-prev:before,
.voice_list .slick-next:before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;

  position: absolute;
  top: 50%;
  left: 50%;
}

.voice_list .slick-prev:before {
  transform: translate(-50% ,-50%) rotate(-45deg);
  border-left: 2px solid #000;
}
.voice_list .slick-next:before {
  transform: translate(-50% ,-50%) rotate(45deg);
  border-right: 2px solid #000;
}

@media screen and (max-width: 900px) {
  .voice_sec {
    margin-top: 60px;
    padding: 60px 0;
  }

  .voice_sec::before {
    width: 100%;
  }
  .voice_sec .wrapper {
    display: block;
  }
  .voice_sec .sec_title {
    margin-bottom: 20px;
  }

  .voice_sec .sec_title .en {
    font-size: 4rem;
  }
  


.voice_list .slick-prev,
.voice_list .slick-next {
  width: 40px;
  height: 40px;
  top: -50px;
}


.voice_list .slick-prev {
  left: calc(100% - 110px);
}
.voice_list .slick-next {
  right: 10px;
}

}


/***About***/
.about_sec {

  position: relative;
}

.about_sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  z-index: -1;
  background: url(img/original.jpeg) center / cover no-repeat;
}

.about_sec .wrapper {
  background-color: rgba(255 , 255, 255, 0.87);
  padding: 90px 70px 70px;
}

.about_sec .sec_title {
  text-align: center;
  margin-bottom: 60px;
}

.about_sec .sec_title .en {
  font-size: 6rem;
}

.about_sec .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.about_sec .profile .text {
  width: 50%;
}

.about_sec .profile .image {
  flex: 1;
}

.about_sec .profile .text .sub {
  margin-bottom: 10px;
}

.about_sec .profile .text .name {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about_sec .profile .text h4 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}


.about_sec .archive_box {
  padding: 35px 50px;
  background-color: white;
  margin-bottom: 24px;
}


.about_sec .archive_box h3 {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
  margin-bottom: 26px;
}

.about_sec .archive_box .archive_list {
  display: flex;
  justify-content: space-between;
}

.about_sec .archive_box .archive_list ul {
  width: 50%;
}
.about_sec .archive_box .archive_list ul li {
  font-size: 1.5rem;
}

.about_sec .archive_box .archive_list ul li:not(:last-of-type) {
  margin-bottom: 5px;
}
.about_sec .archive_box .archive_list ul li::before {
  content: '-';
}

.about_sec .archive_box .archive_list .image_box {
  width: 40%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about_sec .archive_box .archive_list .image_box figure {
  width: calc(100% / 2 - 16px / 2);
}

@media screen and (max-width: 900px) {

  .about_sec .wrapper {
    padding: 60px 10px;
  }
  .about_sec .sec_title {
    margin-bottom: 30px;
  }
  
  .about_sec .sec_title .en {
    font-size: 4rem;
  }
  .about_sec .profile {
    display: block;
    margin-bottom: 60px;
  }
  .about_sec .profile .image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  .about_sec .profile .text {
    width: 100%;
  }


.about_sec .archive_box {
  padding: 35px 20px;
}
  
.about_sec .archive_box h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

  .about_sec .archive_box .archive_list {
    flex-direction: column;
  }
  
  .about_sec .archive_box .archive_list ul {
    width: 100%;
  }

  .about_sec .archive_box .archive_list .image_box {
    width: 100%;
    margin-top: 20px;
  }

  .about_sec .archive_box .archive_list .image_box figure {
    width: calc(100% / 2 - 16px / 2);
    max-width: 300px;
  }


}


/***イベント***/
.event_sec {
  margin-top: 190px;
  margin-bottom: 200px;
}

.event_sec .sec_title {
  margin-bottom: 35px;
}

.event_list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.event_list > li {
  width: calc(100% / 3 - 90px / 3);
}

.event_list figure {
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.event_list figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.event_list .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.event_sec .black_btn {
  margin-top: 50px;
}
@media screen and (max-width: 900px) {

  .event_sec {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .event_list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
  }
  
  .event_list > li {
    width: 100%;
    max-width: 400px;
  }
  
}


/***Course***/
.course_sec {
  padding: 240px 0 0;
  background: url(img/course_back.png) top left / contain no-repeat;
  margin-bottom: 140px;
}

.course_sec .sec_title {
  text-align: center;
  margin-bottom: 35px;
}

.course_sec .sec_title .en {
  font-size: 6rem;
}

.course_sec .text {
  text-align: center;
  margin-bottom: 120px;
}

.course_sec .course_list {
  margin-bottom: 80px;
}

.course_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 90px;
}

.course_list li {
  width: calc(100% / 2 - 90px / 2);
  position: relative;
}

.course_list li:not(:first-of-type) {
  margin-top: 150px;
}


.course_list li .en {
  position: absolute;
  top: 0;
  right: 10px;
  transform: translate(50%, -40px) rotate(90deg);
  font-size: 4rem;
}

.course_list li .en::after {
  content: '・・・・';
  font-size: 2rem;
  letter-spacing: -8px;
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  left: 100%;
}

.course_list li figure {
  margin-bottom: 15px;
}

.course_list li h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.course_list li .add {
  font-size: 1.2rem;
}


.course_sec .contact_before {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .course_sec {
    padding: 60px 0 0;
    margin-bottom: 60px;
  }
  .course_sec .sec_title .en {
    font-size: 4rem;
  }
  

  .course_sec .course_list {
    margin-bottom: 40px;
  }

.course_list {
  gap: 90px;
  justify-content: center;
}

.course_list li {
  width: 100%;
  max-width: 400px;
}
.course_list li:not(:first-of-type) {
  margin-top: 0;
}
.course_list li .en {
  transform: translate(50%, -30px) rotate(90deg);
  font-size: 3rem;
}


.course_sec .contact_before {
  font-size: 1.6rem;
}
  
}



/***FAQ***/
.faq_sec {
  position: relative;
  padding: 86px 0;
  margin-bottom: 140px;
}

.faq_sec::before {
  content: '';
  width: calc(50% - 50vw + 240px);
  width: calc(50vw - 540px + 240px);
  height: 100%;
  background-color: #F4F4F4;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.faq_sec .two_column {
  display: flex;
}

.faq_sec .two_column .left {
  width: 280px;
  padding-top: 70px;
}

.faq_sec .two_column .right {
  flex: 1;
}

.faq_sec .sec_title .en {
  font-size: 6rem;
}

.faq_sec .faq_list dl:not(:last-of-type) {
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.faq_sec .faq_list dl dt,
.faq_sec .faq_list dl dd {
  padding: 4px 0;
  padding-left: 45px;
  position: relative;
}

.faq_sec .faq_list dl dt {
  margin-bottom: 15px;
}

.faq_sec .faq_list dl dt::before {
  content: 'Q';
  font-family: "Cormorant", serif;
  background-color: var(--color-theme);
  color: white;
  width: 28px;
  height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.faq_sec .faq_list dl dd::before {
  content: 'A';
  font-family: "Cormorant", serif;
  width: 28px;
  height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

@media screen and (max-width: 900px) {
  .faq_sec {
    padding: 60px 0;
    margin-bottom: 60px;
  }


.faq_sec::before {
  width: 30%;
}
.faq_sec .two_column {
  flex-direction: column;
  gap: 30px;
}
.faq_sec .two_column .left {
  width: 100%;
  padding-top: 0px;
}
.faq_sec .sec_title .en {
  font-size: 4rem;
}

.faq_sec .faq_list dl:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 20px;
}



}


/***news***/
.news_sec {
  margin-bottom: 170px;
}

.news_sec .wrapper {
  position: relative;
  padding-left: 200px;
}

.news_sec h3 {
  font-size: 2.2rem;
  margin-bottom: 36px;
}

.news_list li {
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.news_list li a {
  display: flex;
}

.news_list li a .date {
  font-size: 2.7rem;
  width: 130px;
  font-family: "Cormorant", serif;
  line-height: 1;
}

.news_list li a .title {
  padding-top: 4px;
}
@media screen and (max-width: 900px) {
  .news_sec {
    margin-bottom: 60px;
  }
  .news_sec .wrapper {
    padding-left: 0px;
  }
  
.news_sec h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.news_list li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.news_list li a {
  display: block;
}

}



/***SNS***/
.sns_sec {
  padding-bottom: 50px;
  background-color: #F4F4F4;
  margin-bottom: 140px;
}

.sns_sec h2 {
  max-width: 450px;
  margin: 0 auto 70px;
  background-color: white;
  font-size: 4.5rem;
  border: 1px solid var(--color-theme);
  transform: translateY(-50%);
  text-align: center;
  line-height: 1;
  padding: 5px;
  position: relative;

}

.sns_sec h2::after {
  content: '';
  width: 1px;
  height: 55px;
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-theme);
}

.sns_sec .two_column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.sns_sec .two_column .box {
  width: calc(100% / 2 - 80px / 2);
}

.sns_sec .box h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}


.sns_sec .box .x-box {
  width: 100%;
  height: 490px;
  overflow-y: scroll;
}

.sns_list {
  display: flex;
  justify-content: center;
  gap: 45px;
}

@media screen and (max-width: 900px) {
  .sns_sec .two_column {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .sns_sec .two_column .box {
    width: 100%;
  }

  .sns_sec .box .x-box {
    width: 100%;
    height: 40vh;
    overflow-y: scroll;
  }

  .sns_list {
    gap: 25px;
  }
  
  .sns_list figure {
    width: 25px;
  }

}

/***contact***/
.contact_sec {
  margin-bottom: 125px;
}

.contact_sec .two_column {
  display: flex;
}

.contact_sec .two_column .left {
  width: 350px;
}

.contact_sec .two_column .right {
  flex: 1;
}

.contact_sec .sec_title .en {
  font-size: 6rem;
}

.original_form {
  padding: 90px 80px;
  background-color: #F4F4F4;
}

.original_form dl {
  display: flex;
  margin-bottom: 14px;
}

.original_form dl dt {
  width: 210px;
  position: relative;
  padding: 8px 0;
}

.original_form dl dt.req::after {
  content: '必須';
  font-size: 1.1rem;
  background-color: var(--color-theme);
  border-radius: 1px;
  padding: 4px 7px;
  position: absolute;
  top: 8px;
  right: 14px;
  color: white;
} 

.original_form dl dd {
  flex: 1;
}


.original_form dl dd input,
.original_form dl dd textarea {
  width: 100%;
  padding: 13px 20px;
}

.original_form dl dd input.min {
  max-width: 200px;
}

.original_form dl dd input[type="email"] {
  max-width: 300px;
}
 
.original_form dl dd textarea {
  min-height: 200px;
}
.original_form .policy_box {
  background-color: white;
  padding: 34px 32px;
  border: 1px solid #DDDDDD;
  overflow-y: scroll;
  width: 100%;
  height: 125px;
  margin-bottom: 40px;
}

.original_form .policy_box h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.original_form .policy_box h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.original_form .policy_box p,
.original_form .policy_box li {
  font-size: 1.3rem;
}

.original_form .policy_box ol,
.original_form .policy_box ul {
  padding-left: 13px;
}

.original_form .policy_box ol {
  list-style: decimal;

}
.original_form .policy_box ul {
  list-style: disc;
}

.original_form .policy_check label,
.original_form .policy_check p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: 0 auto 40px;
  font-size: 1.6rem;
}

.original_form .policy_check input {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.original_form .submit_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.original_form .submit_box p {
  width: 100%;
}

.original_form .submit_box input {
  border-radius: 2px;
  background-color: var(--color-theme);
  color: white;
  width: 100%;
  max-width: 330px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 auto;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.6rem;
}
@media screen and (max-width: 900px) {
  .contact_sec {
    margin-bottom: 60px;
  }
  .contact_sec .two_column {
    flex-direction: column;
  }
  .contact_sec .two_column .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .contact_sec .sec_title .en {
    font-size: 4rem;
  }

  .original_form {
    padding: 30px 20px;
  }

.original_form dl {
  display: block;
  margin-bottom: 20px;
}
  

.original_form dl dt {
  width: 100%;
  max-width: 400px;
}

.original_form dl dd input.min {
  max-width: 400px;
}

.original_form dl dd input[type="email"] {
  max-width: 400px;
}

.original_form .policy_box {

  padding: 20px 10px;
}


.original_form .policy_box h3 {
  font-size: 1.3rem;
  margin-top: 15px;
  margin-bottom: 5px;
}
.original_form .policy_box p,
.original_form .policy_box li {
  font-size: 1.2rem;
}
.original_form .policy_check input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
  
}


/***特商法***/
.law_sec {
  padding-bottom: 80px;
}

.law_sec h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.law_sec .box {
  display: flex;
  gap: 0 25px;
  flex-wrap: wrap;
}

.law_sec .box dl {
  width: calc(100% / 2 - 25px / 2);
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid #E9E9E9;
}

.law_sec .box dl dt,
.law_sec .box dl dd {
  font-size: 1.4rem;
}

.law_sec .box dl dt {
  width: 140px;
  font-weight: 400;
}

.law_sec .box dl dd {
  flex: 1;
}

@media screen and (max-width: 900px) {

  .law_sec {
    padding-bottom: 60px;
  }
  .law_sec .box {
    display: block;
  }
  .law_sec .box dl {
    width: 100%;
  }

.law_sec .box dl dt {
  width: 100px;
  padding-right: 10px;
}
}

/***footer***/

footer {
  background-color: var(--color-theme);
  text-align: center;
  padding: 18px 0;
  color: white;
}

footer p {
  font-size: 1.4rem;
}

@media screen and (max-width: 900px) {


}


/****アニメーション***/
/* 初期状態で非表示 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

/* アクティブクラスがついたら表示 */
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}


/* 初期状態で非表示 */
.fade-in-parent .child {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
  transition-delay: 0s; /* デフォルトの遅延はなし */
}

/* アクティブクラスがついたら表示 */
.fade-in-parent.active .child {
  opacity: 1;
  transform: translateY(0);
}

/* 初期状態：透明で下に少し移動 */
.fade-in-on-load {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

/* 表示時：透明度と位置をリセット */
.fade-in-on-load.active {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延付きのクラス */
.delay--5s {
  transition-delay: 0.5s;
}
.delay-1s {
  transition-delay: 1s;
}

.delay-1-7s {
  transition-delay: 1.7s;
}


.delay-2s {
  transition-delay: 2s;
}

.delay-2-5s {
  transition-delay: 2.5s;
}

.delay-3s {
  transition-delay: 3s;
}
.delay-3-5s {
  transition-delay: 3.5s;
}

.delay-4s {
  transition-delay: 4s;
}



/***モーダル***/
/* モーダルスタイル */
#modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.hidden {
  display: none !important;
}

#modal_content {
  position: relative;
  width: 80%;
  height: 80%;
  text-align: center;
}

#modal_content img, #modal_content video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;

}

#close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}


@media screen and (max-width: 900px) {

}



/*****下層ページ*****/

/***記事ページ***/
.subpage_fv {
  width: 100%;
  height: 350px;
  background: url(img/fv_main.jpg) center / cover no-repeat;
  position: relative;
}

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

.subpage_fv * {
  color: white;
}
.subpage_fv .en {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.subpage_fv .jp {
  font-size: 1.6rem;
  line-height: 1;
}


.single_sec,
.archive_sec {
  padding: 100px 0;
}

.single_sec .bottom_title {
  border-bottom: 3px solid var(--color-theme);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.single_sec .meta {
  text-align: right;
  margin-bottom: 30px;
}

.single_sec .content {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-theme);
}

.single_sec .content > * {
  margin-bottom: 30px;
}

.single_sec .content img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.event_sec.sub {
  margin: 0;
  padding-top: 0;
  padding-bottom: 100px;
}