@charset "utf-8";
/* CSS Document */

/*　コースの特徴　*/
.course {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
    .courseInner{
        /*background: var(--mainLight);*/
        background: #b6daf290;
    }
}

.course__body {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 0;
}

@media screen and (min-width: 768px) {
  .campaign-padding.course__body {
    max-width: 960px;
    padding: 80px 0;
  }
}

.course__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*margin-bottom: 30px;*/
}

.course__ttl,.faq__ttl {
  font-size: clamp(24px,3.11vw,28px);
  font-weight: 500;
  display: flex;
    flex-direction: column;
    align-items: center;
}
.course__ttl:after,.faq__ttl:after{
    content: "";
    font-size:1rem;
    color: var(--main);
}
.course__ttl:after{
    content: "Courses";
}
.faq__ttl:after{
    content: "FAQ";
}

.course__wrap{
    margin: 0 auto;
    max-width: 574px;
}
@media screen and (min-width: 768px) {
    .course__wrap{
        max-width: none;
        padding: 4vw;
    }
}
@media screen and (min-width: 1281px) {
    .course__wrap{
        padding: 0;
    }
}

/*
@media screen and (max-width: 1023px) {
  .course__wrap {
    overflow-x: scroll;
    margin-bottom: 80px;
  }
  .course__wrap::-webkit-scrollbar {
    height: 14px;
  }
  .course__wrap::-webkit-scrollbar-track {
    background-color: #b3b3b3;
    border-radius: 10px;
  }
  .course__wrap::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 10px;
  }
}
*/

.course__cont {
  position: relative;
  z-index: 1;
  margin: 0 auto;
    /*margin-bottom: 60px;*/
    /*width: 574px;*/
}

.course__table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  }
@media screen and (min-width: 1024px) {
  .course__table {
    width: 100%;
    box-shadow: 2px 2px 10px #aaa;/*20240930*/
  }
}

/*-------
   tr
-------*/
.course__table tr{
    height: clamp(4rem,5.74vw,6rem);
    position: relative;
}
/*強調する*/
.course__table tr.highlight{
    border: 4px solid #c30f0f;
}
/*.course__table tr::before{
    width: 100%;
    text-align: center;
    border-bottom: 2px dotted #ccc;
    position: absolute;
    content: attr(data-label);
    margin: 0 auto;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: .875rem;
    color: #555;}
@media screen and (min-width: 768px) {
    .course__table tr::before{
            display: none;
        }
}
*/


.course__table tr th:nth-child(1) {
    width: 20%;
    border-top: 5px solid #ccc;
  }
@media screen and (min-width: 768px) {
  .course__table tr th:nth-child(1) {
    width: 20%;/*width: 33.3333333%;*/
  }
}

.course__table tr th:nth-child(2) {
  width: 40%;
  text-align: center;
  border-top: 5px solid var(--value);
    /*background: var(--value);*/
  }
@media screen and (min-width: 768px) {
  .course__table tr th:nth-child(2) {
    width: 40%;/*width: 33.3333333%*/
  }
}

.course__table tr th:nth-child(3) {
  width: 40%;
  text-align: center;
  border-top: 5px solid var(--premium);
    /*background: var(--premium);*/
  }
@media screen and (min-width: 768px) {
  .course__table tr th:nth-child(3) {
    width: 40%;/*width: 33.3333333%;*/
  }
}

.course__table tr td {
      
/*padding: 3rem 0 15px;*/
    table-layout: fixed;
    vertical-align: middle;
/*★*/
/*
  border-top-width: 1px;
  border-style: solid;
*/
  }
@media screen and (min-width: 768px) {
  .course__table tr td {
    min-height: 104px;
    font-size: 18px;
    padding: 30px 0;
  }
}
/*
 td::before {
    content: attr(data-label);
    font-weight: bold;
    font-size: .875rem;
    color:#275ba0;
    display: block;
    margin-bottom: 0.25rem;
  }

@media screen and (min-width: 768px) {
 td::before {
    display: none;
  }
}
*/
.course__table tr th {
    padding: clamp(10px,1.56vw,16px) 0;
  }
                              
.tableInner .course_name,.tableInner .course_copy{
line-height: 1.3;
}
.tableInner .course_name{
  margin-bottom: 4px;
  font-weight: bold;
  font-size: clamp(18px,2.75vw,28px);
    line-height: 1.3;
    letter-spacing: 0;
}
@media screen and (min-width: 480px) {
    .tableInner .course_name br{
        display: none;
    }
}

.tableInner .course_copy{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  font-size: clamp(12px,1.67vw,16px);
    line-height: 1.3;
    letter-spacing: 0;
}


.course__table tr th:nth-child(1),.course__table tr td:nth-child(1) {
    font-size: clamp(12px,1.79vw,18px);
    color: #444;
    line-height: 1.2;
    padding-left: 0;
    text-align: center;
    font-weight: bold;
  }
.course__table tr.highlight td:nth-child(1) {/*強調する行のみ .highlight*/
    font-size: clamp(14px,2.148vw,22px);
    color: #c30f0f;
  }

.course__table tr td .price{
    font-size: clamp(1.25rem,2.63vw,1.5rem);
    font-weight: bold;
}


.courseTable__btn a{
    margin: 0 auto 8px;
    display: block;
    width: 100%;
    max-width: 300px;
    background: #aaa;
    border-radius: 5px;
    padding: 8px 16px;
    font-weight: bold;
}
.shine-anim{
    position: relative;
    overflow: hidden;
}
.shine-anim::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine{
    0% {
        left: -20%;
    }
    10% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.courseTable__btn a:hover{
    opacity: .6;
}

.valueCourse .courseTable__btn.year a{
    background: var(--value);
    border: 2px solid var(--value);
    color: #fff;
}

.valueCourse .courseTable__btn.month a{
    background: #fff;
    border: 2px solid var(--value);
    color: var(--value);
}

.premiumCourse .courseTable__btn.year a{
    background: var(--premium);
    border: 2px solid var(--premium);
    color: #fff;
}

.premiumCourse .courseTable__btn.month a{
    background: #fff;
    border: 2px solid var(--premium);
    color: var(--premium);
}



.course__table tr:nth-child(2) td:nth-child(1) {
    border-top: 2px solid #aaa;
  }

.course__table tr:nth-child(2) td:nth-child(2) {
    border-top: 2px solid var(--value);
   /* border-top: 3px dotted var(--value);*//*点線*/
  }
.course__table tr:nth-child(2) td:nth-child(3) {
    border-top: 2px solid var(--premium);
  /*border-top: 3px dotted var(--premium);*//*点線*/
}


.course__table tr td:nth-child(1) {
    border-bottom: 2px solid #aaa;
  }
.course__table tr td:nth-child(2) {
    text-align: center;
    /*position: relative; ★tdにデータラベル表示させる場合に使用*/ 
    border-bottom: 2px solid var(--value);
    /*border-bottom: 3px dotted var(--value);*//*点線*/
    background: var(--valueLight);
  }
.course__table tr td:nth-child(3) {
  text-align: center;
  border-bottom: 2px solid var(--premium);
  /*border-bottom: 3px dotted var(--premium);*//*点線*/
  background: var(--premiumLight);
}




.course__table tr td .courseTable__warn {
  font-size: 10px;
  margin-top: 3px;/*.3rem*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

  .course__table tr td .courseTable__warn {
    position: absolute;
    top: 10%;
    left: 55%;
    font-size: 12px;
  }




.courseTable__maru,.courseTable__batsu {
  margin: 0 auto;
  width: clamp(1.375rem,3.71vw,2.5rem);/*22px-40px*/
}







                  
                  .course__apply{
                      width: 100%;
                      margin-top: 16px;
                      /*margin-bottom: 80px;*/
                  }
                  @media screen and (min-width: 768px){
                      .course__apply{
                          display: flex;
                          gap:1rem;
                      }
                  }
                  
                  .courseApply__item{/*「バリューコース」「プレミアムコ―ス」カード*/
                      background: #fff;
                      width: 100%;
                      border-radius: 5px;
                      margin-top: 2rem;
                      margin-bottom: 0.5rem;
                      text-align: center;
                      padding: 1rem;
                      box-shadow: 2px 2px 10px #aaa;/*20240930*/
                    }
                  .course__apply .courseApply__item:first-child{
                      /*border: 2px solid var(--value);*//*20240930*/
                  }
                  .course__apply .courseApply__item:nth-child(2){
                      /*border: 2px solid var(--premium);*//*20240930*/
                  }
                  .course__table h5,.course__apply h5{
                      margin-bottom: 0.5rem;
                      font-weight: bold;
                      font-size: 26px;
                      /*font-size: clamp(16px, 3.38cqw, 28px);  */                
                  }
/*
                  .course__apply .courseApply__item:first-child h5{
                      color: var(--value);
                  }
                  .course__apply .courseApply__item:nth-child(2) h5{
                      color: var(--premium);
                  }
*/
                .course__apply p,.course__apply p span,.course__apply small{
                    line-height: 1.3;
                }


                    .courseApply__sup{
                        font-size: 16px;
                        margin-bottom: 8px;
                    }
                    .priceWrap .price{
                        padding: 0 0.25rem;
                        font-size: 2rem;
                        font-weight: bold;
                        color: #275ba0;
                    }              
.priceWrap .perMonth/*　/月  */{
    
}
.priceWrap .per/*　あたり */{
    
}



.course__warn {
  margin-bottom: 30px;
}

.course__btm {
    /*border-top: 1px solid #eee;*/
    padding: 80px 1rem;
    /*background: #eee;*/
    text-align: center;
}

