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

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

.courseInner {
    background: var(--mainLight);
  }

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

.course__body {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px;
}
@media screen and (min-width: 768px) {
  .campaign-padding.course__body {
    max-width: 960px;
  }
}
@media screen and (min-width: 1281px) {
  .campaign-padding.course__body {
    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{
  font-size: clamp(24px, 3.11vw, 28px);
  text-align: center;
  color: var(--premium);
}

.faq__ttl {
  font-size: clamp(24px, 3.11vw, 28px);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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; */
    padding: 3.5vw;
  }
}

@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%;
  }
}

/*-------
   tr
-------*/
.course__table tr {
  height: clamp(4rem, 5.74vw, 6rem);
  position: relative;
}

/*.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 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;
}

.course__apply .courseApply__item:first-child {
  /*background: var(--value);*/
  border: 2px solid var(--value);
}

.course__apply .courseApply__item:nth-child(2) {
  /* background: var(--premium);*/
  border: 2px solid var(--premium);
}

.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: var(--blue);
}

.priceWrap .perMonth

/*　/月  */
  {}

.priceWrap .per

/*　あたり */
  {}



.course__warn {
  margin-bottom: 30px;
}

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


/* 202603追記 */


.btn_wrap {
	margin: 60px auto 0;
}

.course__price{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: white;
  box-shadow: 0px 0px 14px #c9c9c978;
  padding: 0 4% 0 5%;
  margin-top: 20px;
  border-radius: 5px;
}

.course__price .monthly{
  background-color: #ef9b00;
  border-radius: 20px;
  padding: 8px 2px;
  color: white;
  font-weight: bold;

  writing-mode: vertical-rl;
  white-space: pre;
}

.course__price .price {
	font-size: 18px;
	letter-spacing: 1px;
	position: relative;
}
.course__price .price span {
	font-size: 64px;
	font-weight: 800;
	margin-right: 5px;
  color: #333;
  background-clip: text;
}
@media screen and (min-width: 768px) {
  .course__price .price span {
    font-size: 68px;
  }
}

.course__price .price.shine-anim::after{
  top: 30%;
  height: 40%;
}


.other__title{
  text-align: center;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: bold;
}

.other__list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.other__item{
  background-color: white;
  border: 1px solid #ef9b00;
  border-radius: 15px;
  text-align: center;
  width: min(96%, 360px);
  margin: 0 auto;
}

.other__item-top{
  background-color: #ef9b00;
  border-radius: 13px 13px 0 0;
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding: 10px 0;
}

.other__item-wrap{
  padding: 8px;
}

.other__item-wrap p{
  font-size: 0.9em;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .other__list{
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .other__item{
    width: 32%;
  }
}

.other__item-img{
  padding: 0 10%;
}



.next-apply_box ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	align-items: center;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .next-apply_box ul {
    padding-bottom: 0;
  }
}

.next-apply_box ul li {
	padding: 25px;
	box-shadow: 0px 0px 14px #c9c9c978;
	border-radius: 5px;
	width: min(96%, 360px);
	aspect-ratio: 1/1;
	background: #fff;
}

.next-apply_box .course {
	font-size: 20px;
	color: #626262;
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 12px;
}

.next-apply_box .plan {
	font-size: 36px;
	font-weight: 800;
	color: #626262;
	line-height: 1.19;
	margin-bottom: 15px;
}
.next-apply_box .per {
	font-size: 12px;
	line-height: 1.2;
	margin-bottom: 25px;
}


.next-apply_box .price__wrap {
	display: grid;
	place-items: center;
	
}

.next-apply_box ul li:first-child .merit span {
	width: 18px;
	height: 20px;
	background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><defs><style>.cls-1{fill:%238e8e8e;}</style></defs><path class="cls-1" d="M26.03,30.08H9.97c-1.59,0-2.89-1.3-2.89-2.89v-9.87c0-1.59,1.3-2.89,2.89-2.89H26.03c1.59,0,2.89,1.3,2.89,2.89v9.87c0,1.59-1.3,2.89-2.89,2.89ZM9.97,16.43c-.49,0-.89,.4-.89,.89v9.87c0,.49,.4,.89,.89,.89H26.03c.49,0,.89-.4,.89-.89v-9.87c0-.49-.4-.89-.89-.89H9.97Z"/><path class="cls-1" d="M25.87,15.13h-2.5v-1.33c0-2.97-2.42-5.39-5.39-5.39s-5.39,2.42-5.39,5.39v1.27h-2.5v-1.27c0-4.35,3.54-7.89,7.89-7.89s7.89,3.54,7.89,7.89v1.33Z"/><path class="cls-1" d="M18.99,23.05v2.48h-1.85v-2.48c-.75-.35-1.28-1.11-1.28-1.99,0-1.22,.99-2.2,2.2-2.2s2.2,.99,2.2,2.2c0,.89-.53,1.64-1.28,1.99Z"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}
	
.next-apply_box .merit {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	gap: 2px;
	align-items: center;
	position: relative;
}
.next-apply_box .merit::before,
.next-apply_box .merit::after {
	content:"｜";
	font-size: 1em;
}
.next-apply_box .merit::before {
	transform: rotate(-30deg);
}

.next-apply_box .merit::after {
	transform: rotate(30deg);
}

.next-apply_box .price {
	font-size: 15px;
	margin-bottom: 25px;
	letter-spacing: 1px;
	position: relative;
}
.next-apply_box .price span {
	font-size: 56px;
	font-weight: 800;
	margin-right: 5px;
}
.next-apply_box .annual-plan .price span {
	color: #FF5C5C;
}

.next-apply_btn {
	font-size: 18px;
	letter-spacing: 2px;
	line-height: 1.2;
	text-align: center;
	border-radius: 5px;
	background: linear-gradient(90deg, rgb(52 113 214), rgb(46 160 255) 95%);
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	display: inline-block;
	font-weight: 800;
	width: 100%;
	padding: 22px 5px;
  color: white;
}
.annual-plan .next-apply_btn {
	background: linear-gradient(90deg, rgb(255 92 92), rgb(245 156 102) 95%);
}
.next-apply_btn:hover {
	opacity: 1;
	background:#a2a2a2;
}

.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 3s ease-in-out infinite;
}
@keyframes shine {
    0% { left: -20%; }
    10% { left: 120%; }
    100% { left: 120%; }
}


@media (min-width: 768px) {
	.next-apply_box ul {
		flex-direction: row;
		gap: min(4vw, 50px);
	}
	.next-apply_box ul li {
		padding: min(2.6041vw, 30px);
	}
	.next-apply_box .course {
		font-size: min(2.5vw, 20px)
	}
	.next-apply_box .plan {
		font-size: min(4vw, 36px);
	}
	.next-apply_box .price span {
		font-size: min(6vw, 56px);
	}
	.next-apply_box .merit {
		font-size: min(2vw, 16px);
	}
}

/* .extra-action-area {
	text-align: center;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.extra-action-area .paper_link a {
	color: green;
	font-size: 20px;
	font-weight: 700;
	border-bottom: 1px solid green;
	padding-bottom: 2px;
	transition: 0.3s;
}

.extra-action-area .paper_link a:hover {
	opacity: 0.5;
} */

.paper_link a {
	color: green;
	font-size: clamp(16px, 2.5vw, 20px);
	font-weight: 700;
	border-bottom: 1px solid green;
	padding-bottom: 2px;
	transition: 0.3s;
}

.paper_link a:hover {
	opacity: 0.5;
}

/* .extra-action-area .detail_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: min(100%, 340px);
	padding: 18px 10px;
	border: 2px solid #3471d6;
	border-radius: 40px;
	background-color: #fff;
	color: #3471d6;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.extra-action-area .detail_btn:hover {
	background-color: #3471d6;
	color: #fff;
	opacity: 1;
} */

.extra-action-area .member_link a {
	color: #626262;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #626262;
	padding-bottom: 2px;
	transition: 0.3s;
}

.extra-action-area .member_link a:hover {
	opacity: 0.5;
}

.hidden{
  display: none;
}