@charset "UTF-8";

:root{
  /*  kendepot */
  --base-color: #EB6600;
  --light-color: #FFF2E6;
  --light2-color: #FFE5CD;
  --middle-color: #F29741;
}

/* common */
html {
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
}
body{
  font-family: Hiragino Sans, "ヒラギノ角ゴ Pro W6", "メイリオ", sans-serif;
  letter-spacing: 0em;
  transform-origin: left top;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  overflow-y: scroll;
  background: #fff;
  font-size: 1.6em;
  line-height: 1.5;
}
.din_condensed {
  font-family: "din-condensed", 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
  font-weight: 400;
}
strong{
  font-weight: bold;
}

/* animate */
.fade {
  opacity: 0;
  transition: all 0.6s ease;
}
.fade.show {
  opacity: 1;
}
img{
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none ;
  }
}
.is-sp {
  display: none ;
}
@media screen and (max-width: 1000px) {
  .is-sp {
    display: block ;
  }
}
@media only screen and (max-width: 767px) {
  .is-sp-only{
    display: block ;
  }
}
@media only screen and (min-width: 767.1px) {
  .is-sp-only{
    display: none ;
  }
}

/* 読み込み処理エラーの場合 */
.error-message {
  display: none;
  margin: 16px 0;
  padding: 12px;
  border: 2px solid #c33;
  background: #fff;
  color: #c00;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 70px;
  z-index: 1000;
  width: 100%;
}


/* ------------------------------------------------------- */
@media only screen and (max-width: 767px) {}
@media only screen and (min-width: 767.1px) {}
/* ------------------------------------------------------- */

/* ---------------------------------------- */
/* header */
.header{
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 64px;
}
.header-logo{
  display: inline-flex;
  align-items: center;
  padding: 14px 0 14px 20px;
  height: 64px;
}
.header-inner{
  flex-grow: 1;
}
.header-nav{
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}
.header-nav-item a{
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 12px;
}
.header-nav-item a:hover{
  opacity: .7;
}
.header-nav-item.is_disable{
  display: none;
  visibility: hidden;
}

.header-mkt-apply{
  display: flex;
}
.header-mkt-apply a{
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: all 0.3s ease;
  height: 64px;
  color: #eee;
  background: #404040;
}
.header-mkt-apply a:hover{
  opacity: 0.7;
}
.header-mkt-apply a.header-houjin-link{
  background: none;
  position: relative;
  color:#ccc;
}
.header-mkt-apply a.header-houjin-link::before{
  content: "";
  height: 60%;
  width: 1px;
  background: #666;
  position: absolute;
  left: 0;
}
.header-mkt-apply a.header-apply-button{
  font-weight: 600;
  background: #de0020;
  color: #fff;
}
.header-mkt-apply a.header-apply-button:hover{
  background: #fff;
  color: #de0020;
  opacity: 1;
}
@media screen and (max-width: 639px) {
  .header-mkt-apply a{
    padding: 0 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1090px) {
  .header-mkt-apply a.header-houjin-link{
    display: none;
    visibility: hidden;
  }
}

.js-header-scroll{
  cursor: pointer;
}

/* ---------------------------------------- */
/* footer */
.footer{
  position: relative;
}
.footer-sub{
  display: flex;
  gap: 20px 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 40px;
  background: #222;
}
@media screen and (max-width: 639px) {
  .footer-sub{
    flex-direction: column;
    padding: 24px 16px;
  }
}
.footer-sub-link-group {
  display: flex;
  gap: 12px 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 639px) {
  .footer-sub-link-group {
    gap: 12px 20px;
  }
}
.footer-sub-link {
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: underline;
  color: #bbb;
}
.footer-sub-link:hover {
  opacity: .8;
}
.footer-sub-copyright {
  font-size: 1.2rem;
  color: #aaa;
}
.footer-pagetop {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: flex;
  width: 70px;
  height: 70px;
  background: #000;
}
@media screen and (max-width: 639px) {
  .footer-pagetop {
    width: 60px;
    height: 60px;
  }
}
.footer-pagetop:hover {
  opacity: .8;
}
.footer-pagetop-angle {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

/* ---------------------------------------- */
/* main */
.gakuin-main{
  margin-top: 64px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-size: 16px;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  .gakuin-main{
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

/* ---------------------------------------- */
/* section */
.gakuin-section{
  clear: both;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .gakuin-section{
    padding: 40px 15px;
  }
}
.section_inner{
  max-width: 1100px;
  margin: 0 auto;
}
.bg-white{
  background: #fff;
}
.has-bg{
  /*background: url(/gakuin/assets/img/common/bg-gakuin01.webp) no-repeat center center / cover;*/
  color: #fff;
}
.has-bg .section_inner{
  max-width: 1040px;
}

.bg-kendepot{
  background: var(--base-color);
  color: #fff;
}
.bg-kendepot .gakuin-attract-text a,
.bg-kendepot a{
  color: #fff;
}

.bg-kendepot-lite{
  background: var(--light-color);
}


/* ---------------------------------------- */
/* title */
.gakuin-content-title{
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 20px;
}
.gakuin-content-title::before{
  content: "";
  width: 14px;
  height: 14px;
  border: solid 8px var(--base-color);
  border-radius: 60px;
}
@media only screen and (max-width: 767px) {
  .gakuin-content-title{
    font-size: 20px;
  }
}

/* ---------------------------------------- */
/* article */
.js-include-container,
.gakuin-content + .gakuin-content{
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .js-include-container,
  .gakuin-content + .gakuin-content{
    padding-top: 40px;
  }
}

/* ---------------------------------------- */
/* cta */
.gakuin-cta{
  background: #FABD00;
  padding: 0;
}
.gakuin-cta-block{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .gakuin-cta-block{
    align-items: normal;
    padding: 0 15px;
  }
}

.gakuin-cta-shoulder{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  line-height: 1.15;
}
.gakuin-cta-shoulder::after,
.gakuin-cta-shoulder::before{
  display: inline-block;
  content: "";
  width: 1px;
  height: 40px;
  background: #000;
}
.gakuin-cta-shoulder::before {
  transform: rotate(-30deg);
}
.gakuin-cta-shoulder::after{
  transform: rotate(30deg);
}
.has-bg .gakuin-cta-shoulder::after,
.has-bg .gakuin-cta-shoulder::before{
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .gakuin-cta-shoulder{
    font-size: 13px;
  }
}

.gakuin-cta-link{
  position: relative;
  display: flex;
  padding: 20px 60px 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 60px;
  background: #de0020;
  color: #fff;
  font-size: 30px;
  font-size: max(min(3vw, 32px), 20px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.9px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.gakuin-cta-link:hover{
  background: #fff;
  color: #de0020;
}
.gakuin-cta-link::after{
  content:"";
  width: 16px;
  height: 25px;
  position: absolute;
  right: 30px;
  mask-image: url(/gakuin/assets/img/common/icon_arw_white.svg);
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: 100%;
  background-color: #fff;
}
.gakuin-cta-link:hover::after{
  background-color: #de0020;
}

@media only screen and (max-width: 767px){
  .gakuin-cta-link{
    padding: 10px 30px 10px 15px;
    gap:10px;
  }
  .gakuin-cta-link::after{
    width: 8px;
    height: 12px;
    right: 12px;
  }
}
.gakuin-cta-figure{
  margin: 0;
  padding: 0;
}
.gakuin-cta-figure img{
  max-height: 280px;
  position: relative;
  top: -20px;
  z-index: 5;
}
.gakuin-cta .section_inner{
  max-width: 1040px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px){
  .gakuin-cta .section_inner{
    flex-direction: column;
    padding-bottom: 20px;
    gap: 0;
    justify-content: center;
  }
  .gakuin-cta-figure{
    margin-bottom: -20px;
  }
  .gakuin-cta-figure img{
    max-height: 140px;
    top: -20px;
    left: calc( 50% - 110px );
  }
}

/* ---------------------------------------- */
/* hero */
.gakuin-hero{
  padding: 20px 10vw 10px;
  min-height: 430px;
  box-sizing: border-box;
  position: relative;
  background-size: contain;
  display: flex;
  align-items: center;
}
.gakuin-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 390px;
  width :100%;
  background-color: var(--base-color);
  background: url(../img/bg_hero_pc.svg) no-repeat 0 0 var(--middle-color);
  background-size: cover;
  border-bottom: solid 20px #5E5959;
}
@media only screen and (max-width: 767px) {
  .gakuin-hero{
    align-items: flex-start;
    padding: 20px 5vw 10px;
  }
  .gakuin-hero::before{
    height: 420px;
    background-image: url(../img/bg_hero_SP.svg);
  }
}

.gakuin-hero-inner{
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 8;
  text-align: left;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .gakuin-hero-inner{
    justify-content: space-between;
    height: 400px;
  }
}

/*__ ロゴ __*/
.hero-logo-block{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero-logo-block{
    gap: 4px;
    margin-bottom: 20px;
  }

  .hero-logo-block svg,
  .hero-logo-block img{
    height: 20px;
  }
}

/*__ テキストタイトル __*/
.gakuin-hero-title{
  font-size: min(6.4vw,78px);
  line-height: 1.12;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}
.gakuin-hero-title strong{
  display: block;
  font-weight: 800;
}
.gakuin-hero-title strong small{
  font-size: 60%;
}
@media only screen and (max-width: 767px) {
  .hero-title-block{
    gap: 2px;
    justify-content: space-between;
  }
  .gakuin-hero-title{
    font-size: max(5vw, 42px);
    margin-bottom: 5vw;
    margin-top: 10px;
  }
}

/* ポイント */
.hero-points{
  display: flex;
  gap: 10px;
  margin-bottom: -20px;
}
.hero-point-item{
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  background: #fff;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.hero-point-item p{
  text-align: center;
}
.hero-point-item strong{
  color: var(--base-color);
}
.hero-point-item strong b{
  font-size: 32px;
}
.hero-point-item-inner{
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media only screen and (max-width: 767px){
  .hero-points{
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    align-self: flex-end;
  }
  .hero-point-item{
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-self: baseline;
    padding: 10px 20px;
    font-size: 16px;
  }
  .hero-point-item p{
    text-align: left;
  }
  .hero-point-item strong{
    display: inline;
  }
  .hero-point-item strong b{
    font-size: 20px;
  }
  .hero-point-item-inner{
    flex-direction: column;
  }
  .hero-point-item-inner{
    align-items: flex-start;
  }
   .hero-point-item-inner br{
    display: none;
   }
}

/* 人物写真 */
.hero-figure{
  position: absolute;
  right: min( 120px, 20vw);
  bottom: 40px;
  /*width: min( 467px , 32vw );*/
  height: min( 410px , 40vw );
  width: auto;
}
.hero-figure img{
  height: 100%;
}
.hero-figure-device{
  position: absolute;
  z-index: 3;
  right: min( 150px , 34vw );
  bottom: min( -30px , -1.5vw );
  width: min( 430px, 42vw );
}

@media only screen and (max-width: 767px){
  .hero-figure{
    bottom: 10px;
    height: 370px;
    right: 0;
  }
  .hero-figure-device{
    right: 0;
    display: none;
  }
}


/* 最安値バッジ */
.hero-badge{
  position: absolute;
  top: min( 30px , 3vw);
  right: max(5vw,10px);
  z-index: 2;
  background: #000;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  border-radius: 240px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(8deg);
}
.hero-badge span{
  display: block;
}
.oem-badge-text{
  font-size: 130%;
}

@media only screen and (max-width: 767px){
  .hero-badge{
    border-radius: 110px;
    width: 80px;
    height: 80px;
    padding: 10px;
    font-size: 15px;
    transform: rotate(4deg);
    right: -10px;
  }
  .oem-badge-text{
    font-size: 120%;
  }
}

.oem-footnote{
  color: #666;
  padding: 0 10vw 10px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px){
  .oem-footnote{
    padding: 20px 10px 10px;
  }
}


/* ---------------------------------------- */
/* lead */
.gakuin-lead{
  padding-top: min(20px , 5vw);
}
.gakuin-lead .section_inner{
  max-width: 1080px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.oem-shoulder-title{
  position: relative;
  color: #fff;
  z-index: 4;
  display: inline-block;
  font-size: min( 36px , 5vw);
}
.oem-shoulder-title::after{
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 30px);
  height: calc(100% + 10px);
  background: #000;
  left: -20px;
  top: -5px;
  transform: skew(-18deg);
}

.oem-lead-text{
  line-height: 1.45;
}
.oem-lead-text strong{
  font-size: min(30px, 5vw);
  font-weight: 800;
}
.oem-lead-text small{
  font-size: 16px;
}

@media only screen and (max-width: 767px){
  .oem-lead-text small{
    font-size: 14px;
  }
}

.has-marker{
  position: relative;
  z-index: 1;
  font-size: 120%;
}
.has-marker::after{
  content: "";
  height: 90%;
  width: calc( 100% + 6px );
  position: absolute;
  left: -4px;
  bottom: 0;
  background: #FAF600;
  opacity: 0.8;
  z-index: -1;
}

.gakuin-article-text{
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1.6em;
}

.oem-lead-coution{
  display: block;
  background: #eee;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}
.oem-lead-coution-title{
  font-size: 14px;
  margin-bottom: 8px;
}
.oem-lead-coution-list{
  font-size: 13px;
  line-height: 1.15;
  margin-left: 1em;
}
.oem-lead-coution-list li{
  list-style-type: disc;
}
.oem-lead-coution-list li + li{
  margin-top: 8px;
}

/* ---------------------------------------- */
/* merit */
.gakuin-merit{
  padding: 40px 0 60px;
}
.gakuin-merit-title{
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 800;
}
.gakuin-merit-list{
	display: flex;
	justify-content: space-between;
}
.gakuin-merit-item{
	width: 30.91%;
	text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.gakuin-merit-img{
	width: 58.82%;
	margin: 0 auto;
}
.gakuin-merit-subtitle{
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.gakuin-merit-text{
  font-size: 14px;
  font-weight: 300;
	margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .gakuin-merit{
    padding: 40px 15px 60px;
  }
  .gakuin-merit-title{
    font-size: 30px;
  }
  .gakuin-merit-list{
    flex-direction: column;
    gap: 30px;
  }
  .gakuin-merit-item{
    width: 100%;
    text-align: left;
    flex-direction: row;
  }
  .gakuin-merit-head{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .gakuin-merit-img{
    width: 26.87%;
    margin: 0;
  }
  .gakuin-merit-subtitle{
    font-size: 16px;
    margin-top: 0;
    min-height: auto;
    display: block;
  }
  .gakuin-merit-textarea{
    width: calc(73.13% - 20px);
  }
  .gakuin-merit-text{
    margin-top: 8px;
    line-height: 1.2;
  }
}

/* ---------------------------------------- */
/* about */
.gakuin-about .section_inner{
  max-width: 880px;
}

/* column */
.gakuin-content-column{
  padding: 30px;
  border-radius: 10px;
  margin-top: 24px;
  border: solid 10px var(--light2-color);
}
.gakuin-content-column p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}
.gakuin-content-column h4{
  font-size: 16px;
  letter-spacing: 0;
}
.gakuin-content-column p + h4{
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .gakuin-content-column{
    padding: 15px 10px;
  }
  .gakuin-content-column h4{
    font-size: 13px;
  }
  .gakuin-content-column p{
    font-size: 13px;
  }
}


/* ---------------------------------------- */
/* flow */
.gakuin-flow-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 20px;
}
.gakuin-flow-item{
	width: 13.825%;
	text-align: center;
	position: relative;
}
.gakuin-flow-item:not(:first-child)::after{
  display: inline-block;
  content: "";
  width: min(1.56vw, 15px);
  height: min(2.7vw, 26px);
  background: url("../img/gakuin-flow-arrow.svg") no-repeat center center/contain;
  position: absolute;
  left: max(-2.29vw,-22px);
  top: min(4.06vw, 60px);
}
.gakuin-flow-img{
	width: 86.3%;
	margin: 0 auto;
}
.gakuin-flow-img img{
	width: 100%;
}
.gakuin-flow-title{
	line-height: 1.5;
	font-weight: 600;
	margin-top: 12px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .gakuin-flow-item{
    width: 29.85%;
  }
  .gakuin-flow-item:nth-child(3n+1)::after{
    content: none;
  }
  .gakuin-flow-item:nth-child(n+4){
    margin-top: 20px;
  }
  .gakuin-flow-item:not(:first-child)::after{
      width: 3.47vw;
      height: 5.33vw;
    left:-3.8vw;
    top: 8.8vw;
  }
  .gakuin-flow-img{
    width: 85%;
  }
  .gakuin-flow-title{
    margin-top: 10px;
  }
}
.gakuin-flow-list + .gakuin-couton-text{
  padding-top: 20px;
  font-size: 14px;
  text-align: center;
}
.gakuin-attract-text.is_coution_text{
  font-size: 88%;
}


/* ---------------------------------------- */
/* attract */
.gakuin-attract{
  padding: 20px 20px 10px;
}
.gakuin-attract .section_inner{
  max-width: 1040px;
}
.gakuin-certificate{
  display: flex;
  align-items: center;
  gap: 20px;
}
.gakuin-attract-img{
  margin-right: -80px;
}
.gakuin-attract-img img{
   max-width: 480px;
}
.gakuin-attract-title{
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 1em;
}
.gakuin-attract-text + .gakuin-attract-text{
  margin-top: 1em;
}
.gakuin-attract-text a{
  text-decoration: none;
  color: #000;
}
.gakuin-attract-text a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .gakuin-certificate{
    flex-direction: column;
  }
  .gakuin-attract-title{
    font-size: 18px;
  }
  .gakuin-attract-img{
    max-width: 280px;
    order: 0;
    margin: 0 auto;
  }
  .gakuin-attract-img img{
    max-width: 280px;
  }
}


/* ---------------------------------------- */
/* faq */
.gakuin-faq{
	padding: 60px 0 120px;
}
.gakuin-faq .section_inner{
  max-width: 880px;
}
.gakuin-faq-article{
	border-bottom: 1px solid #D4D4D4;
}
.gakuin-faq-title{
	padding: 30px 60px 30px 0;
	display: flex;
	cursor: pointer;
	position: relative;
}
.gakuin-faq-title::after{
	display: inline-block;
	content: "";
	width: 20px;
	height: 12px;
	background: url("/gakuin/assets/img/common/gakuin-faq-arrow.svg") no-repeat center center/contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
}
.gakuin-faq-title.is_open::after{
	transform: rotate(180deg);
}
.gakuin-faq-title_head,
.gakuin-faq-content_head{
	display: block;
	font-size: 30px;
	line-height: 1.25;
	flex-shrink: 0;
	padding-right: 20px;
}
.gakuin-faq-title_inner{
	padding-top: 1px;
	font-size: 20px;
	font-weight: 600;
}
.gakuin-faq-content{
	display: none;
	padding-bottom: 30px;
}
.gakuin-faq-content_inner{
	display: flex;
}
.gakuin-faq-content_txt{
	padding-top: 5px;
}
.gakuin-faq-content_txt a{
	text-decoration: underline;
}
@media only screen and (max-width: 767px){
  .gakuin-faq{
    padding: 60px 15px 120px;
  }
  .gakuin-faq-title{
    padding: 20px 36px 20px 0;
  }
  .gakuin-faq-title::after{
    width: 16px;
    height: 10px;
    right: 0;
  }
  .gakuin-faq-title_head,
  .gakuin-faq-content_head{
    font-size: 24px;
  }
  .gakuin-faq-title_inner{
    font-size: 16px;
  }
  .gakuin-faq-content{
    padding-bottom: 20px;
  }
  .gakuin-faq-content_txt{
    padding-top: 3px;
  }
}


/* ---------------------------------------- */
/* apply */
.gakuin-cta_header{
  text-align: center;
}
.gakuin-cta_title{
  font-size: 30px;
  line-height: 1.2;
}
.gakuin-cta_container{
  display: flex;
  justify-content: center;
  gap: 40px;
}
.gakuin-cta_container{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}
@media screen and (max-width: 767px) {
  .gakuin-cta_title{
    font-size: 18px;
  }
}

.gakuin-cta_block{
	width: min(45vw,410px);
}
.gakuin-cta_subtitle{
	font-size: 16px;
	font-weight: 800;
	text-align: center;
	line-height: 1.2;
	position: relative;
	z-index: 3;
}
@media screen and (max-width: 767px) {
  .gakuin-cta_subtitle{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
  }
}

.gakuin-cta_detail{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gakuin-cta_btn_link{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: #fff;
  background: #de0020;
  padding: 24px 40px;
  border-radius: 9999px;
  box-sizing: border-box;
  text-align: center;
  font-size: min(1.72vw, 20px);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
	transition: all .3s;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
.gakuin-cta_btn_link span{
  font-size: 14px;
}
.gakuin-cta_btn_link::after{
  content:"";
  width: 12px;
  height: 20px;
  position: absolute;
  right: 20px;
  mask-image: url(/gakuin/assets/img/common/icon_arw_black.svg);
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: 100%;
  background-color: #fff;
}
.gakuin-cta_btn_link:hover{
  background: #fff;
  color: #de0020;
}
.gakuin-cta_btn_link:hover::after{
  background-color: #de0020;
}

@media screen and (max-width: 767px) {
	.gakuin-cta_container{
		display: block;
	}
	.gakuin-cta_block{
		width: 100%;
    position: relative;
	}
	.gakuin-cta_block + .gakuin-cta_block{
		margin-top: 30px;
	}
  .gakuin-cta_block + .gakuin-cta_block::before{
    content: "";
    position: absolute;
    height: 0;
    width: 100%;
    top: -15px;
    border-top: dotted 1px #ccc;
  }

	.gakuin-cta_detail{
		margin-bottom: 5px;
	}
  .gakuin-cta_btn_link{
    font-size: 16px;
    margin: 0 15px;
    width: auto;
  }
  .gakuin-cta_btn_link::after{
    width: 8px;
    height: 12px;
  }
}
.gakuin-cta_detail_text{
	text-align: center;
}
.gakuin-cta_detail_text p{
	font-size: 36px;
	font-weight: 600;
	line-height: 1.15;
}
.gakuin-cta_detail_text p small{
	font-size: 14px;
}
.gakuin-cta_detail_text p + p{
	margin-top: 10px;
}
.gakuin-cta_block .gakuin-cta_btn_link{
	padding: 12px 20px;
}
@media screen and (max-width: 767px) {
	.gakuin-cta_detail_text p{
		font-size: 30px;
		text-align: left;
	}
}

/* ---------------------------------------- */
/* course */
.gakuin-course{
  padding: 40px 0 60px;
  background: var(--Linear, linear-gradient(103deg, var(--middle-color) 50.17%, var(--base-color) 50.17%));
}
.gakuin-course-title{
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .gakuin-course{
    padding: 40px 15px 60px;
  }
  .gakuin-course-title{
    font-size: 30px;
  }
}

.oem-course-block{
  background: #fff;
  padding: min(40px, 3.8vw);
}
.oem-course-list{
  /*max-width: 1020px;*/
  width: 100%;
}

/* table Header PC画面のみ */
.oem-course-list-theader{
  background: #5E5959;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.oem-course-list-theader th{
  padding: 10px;
  text-align: center;
  white-space: nowrap;
}
.oem-course-list-theader th+th{
  border-left: solid 1px #fff;
}
.oem-course-list-theader th.th-title{
  text-align: left;
}
.oem-course-list-theader th.th-time{
  width: 120px;
}
.oem-course-list-theader th.th-price{
  width: 190px;
  position: relative;
}
.oem-course-list-theader th.th-detail{
  width: 50px;
}

.oem-course-list-theader th.th-price::before{
  content: "建デポ会員様向け特別優待";
  font-size: 12px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f00;
  color: #fff;
  position: absolute;
  top: -14px;
  left: 20px;
}

@media screen and (max-width: 767px) {
  .oem-course-list-theader{
    display: none;
    visibility: hidden;
  }
}

/* 講座詳細ブロック */
.gakuin-oem-course{
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 0 20px;
  border-bottom: solid 1px #D9D9D9;
  line-height: 1.4;
}

.oem-course-button{
  position: absolute;
  width: 45px;
  height: 45px;
  right: 10px;
  background: #e3e3e3;
  border-radius: 8px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.5s 0s ease;
}
.oem-course-button::after{
  display: inline-block;
  content: "";
  width: 20px;
  height: 12px;
  position: absolute;
  top: calc( 50% - 6px );
  left: calc( 50% - 10px );
  margin: auto 0;
  mask-image: url(/gakuin/assets/img/common/gakuin-faq-arrow.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  background-color: #444;
}
.oem-course-button:hover{
  background: #444;
}
.oem-course-button:hover::after{
  background-color: #fff;
}
.is-open .oem-course-button::after{
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px){
  .oem-course-button{
    width: 38px;
    height: 38px;
    right: -24px;
    top: 42px;
    background: var(--base-color);
  }
  .oem-course-button::after{
    background-color: #fff;
  }
}


.oem-course-header{
  display: flex;
  gap: 16px;
  padding-right: 64px;
}
.oem-course-figure{
  overflow: hidden;
  width: 180px;
}
.oem-course-figure.js-toggle-button{
  cursor: pointer;
}
.oem-course-header-text{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.oem-course-title{
  flex-grow: 1;
  font-size: 18px;
}
.oem-course-tags{
  display: flex;
  align-items: center;
  font-weight: 600;
}
.tag-time-item{
  width: 120px;
}
.tag-price-item{
  width: 190px;
}
.tag-price-item strong{
  font-size: 120%;
}

@media only screen and (max-width: 767px){
  .oem-course-header{
    flex-direction: column;
    padding-right: 0;
    gap: 8px;
  }
  .oem-course-figure{
    width: 100%;
    height: 100px;
  }
  .oem-course-figure img{
    object-fit: contain;
  }
  .oem-course-title span{
    display: block;
  }
  .oem-course-tags{
    width: 100%;
    display: flex;
    gap: 2px;
    margin-top: 10px;
  }
  .oem-course-tags > div{
    background: #eee;
  }
  .tag-time-item,
  .tag-price-item{
    width: 50%;
    display: flex;
    padding: 8px 4px;
    align-items: center;
    justify-content: center;
  }
}

.oem-course-summary{
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  border-top: solid 1px #d9d9d9;
  font-size: 14px;
}
.oem-course-body{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 min(40px,2vw);
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
}
.is-open .oem-course-body{
  padding: 20px min(40px,2vw) 30px;
  max-height: 2000px;
  opacity: 1;
}
.oem-course-lead{
  margin: 10px 0;
  padding: min(30px, 3vw);
  background: #eee;
  border-radius: 8px;
}
.oem-course-lead p{
  font-size: 14px;
}

.oem-course-details{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.oem-course-detail-item{
  width: calc( 50% - 15px );
  position: relative;
  box-sizing: border-box;
}
.oem-course-detail-item.has-figure{
  width: 100%;
  padding-left: 100px;
  min-height: 80px;
}
.oem-course-detail-item.has-figure::before{
  content: url(../img/fig-lead-01.svg);
  position: absolute;
  left: 0;
  width: 80px;
}
.oem-course-detail-item.detail-regulations::before{
  content: url(../img/fig-lead-02.svg);
}
@media screen and (max-width: 767px) {
  .oem-course-details{
    flex-direction: column;
    gap: 20px;
  }
  .oem-course-detail-item{
    width: 100%;
  }
  .oem-course-detail-item.has-figure{
    padding-left: 70px;
  }
  .oem-course-detail-item.has-figure::before{
    width: 60px;
  }
}

.oem-course-detail-item p{
  font-size: 14px;
}
.oem-course-detail-item h4{
  font-size: 18px;
  font-weight: 800;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.oem-course-detail-item h5{
  font-size: 16px;
  font-weight: 600;
}
.oem-course-detail-item p + h5{
  margin-top: 12px;
}

.oem-course-detail-title::before{
  content: "";
  width: 14px;
  height: 14px;
  border: solid 8px var(--base-color);
  border-radius: 60px;
}

.gakuin-content-table thead th{
  background: #FFE5CD;
}
.gakuin-content-table th,
.gakuin-content-table td{
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 10px;
}
.gakuin-content-table .time{
  text-align: center;
}
.gakuin-content-table tbody tr{
  border-bottom: solid 1px #C3C2C2;
}
@media screen and (max-width: 767px) {
  .gakuin-content-table td{
    padding: 10px 0px;
  }
}

.oem-course-apply{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 min(40px,2vw);
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.is-open .oem-course-apply{
  max-height: 1000px;
  opacity: 1;
}

.oem-course-apply-title{
  background: #5E5959;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 4px;
}
.gakuin-cta_container{
  background: #eee;
  padding:20px min(20px,3vw);
  border-radius: 0 0 20px 20px;
}
.gakuin-cta_detail_text{
  font-weight: 800;
  font-size: 38px;
}
.gakuin-cta_detail_text small{
  font-size:18px;
}

/* 通常価格→優待価格 */
.oem-cta_detail_price{
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
}
.oem-cta_price_text{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  position: relative;
}
.oem-cta_price_text small{
  font-size: 14px;
  font-weight: 400;
}
.oem-cta_price_text::before{
  content: "通常価格";
  position: absolute;
  top: -14px;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  padding:2px 4px;
  color:  #fff;
  background: #7C7D7D;
  border-radius: 4px;
}
.oem-cta_price_text::after{
  content:url(../img/price_arrow.svg);
  margin-left: 8px;
}
.oem-pricedown{
  position: relative;
}
.oem-pricedown::before{
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: calc( 100% + 8px );
  height: 2px;
  background: #f00;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .gakuin-cta_detail_text{
    font-size: 28px;
  }
  .gakuin-cta_detail_text small{
    font-size:14px;
  }
  .oem-cta_detail_price{
    gap: 4px;
  }
  .oem-cta_price_text{
    font-size: 16px;
  }
}


.oem-course-close-button{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.is-open .oem-course-close-button{
  padding: 20px 0;
  max-height: 200px;
  opacity: 1;
}
.oem-course-close-button::before{
  content: "";
  height: 1px;
  width: 100%;
  background: #7C7D7D;
  position: absolute;
  z-index: -1;
}
.oem-course-close-button span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 8px 30px;
  border-radius: 40px;
  font-size: 14px;
  border: solid 1px #7C7D7D;
  background: #fff;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: all 0.5s 0s ease;
}
.oem-course-close-button span::before{
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: calc( 50% - 6px );
  mask-image: url(../img/icon_close.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  background-color: #7c7d7d;
}
.oem-course-close-button span:hover{
  background: #7C7D7D;
  color: #fff;
}
.oem-course-close-button span:hover::before{
  background-color: #fff;
}


/* ---------------------------------------- */
/* 脚注 */
.gakuin-footnote{
  color: #666;
  background: #eee;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: min( 40px, 5vw );
}
.gakuin-footnote a{
  color: #000;
}

.gakuin-footnote .section_inner{
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .gakuin-footnote .section_inner{
    flex-direction: column;
  }
}
.gakuin-footnote-text{
  font-size: 13px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;
}
.gakuin-footnote-text.has-indent{
  padding-left: 2em;
  text-indent: -1.65em;
}

/* ---------------------------------------- */

/* ---------------------------------------- */