:root {
    --primary-color:linear-gradient(90deg, rgba(0,170,235,1) 0%, rgba(22,115,219,1) 100%);
    --secondary-color: linear-gradient(90deg, rgba(243,142,38,1) 0%, rgba(238,96,74,1) 100%);
}

html {
  font-size: 62.5%;
}
html {
  scroll-padding-top: 68px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 85px;
  }
}
a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover, a:focus {
  color: #000;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
  color: #FFF;
}
.sp{
  display:block;
}
@media (min-width: 768px) {
  .sp{
    display: none;
  }
}
.pc{
  display:none;
}
@media (min-width: 768px) {
  .pc{
    display: block;
  }
}
body {
font-family: 'Segoe UI',SegoeUI,'Microsoft JhengHei',微軟正黑體,"Helvetica Neue",Helvetica,Arial,sans-serif;
  /* font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif; */
  font-size: 1.6rem;
  line-height: 1.4;
  color: #121212;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  font-size: 1.6rem;
}
.bg-primary{
  background: var(--primary-color);
}
.bg-secondary{
  background: var(--secondary-color);
}
.new-line span{
  display: inline-block;
}
.container{
  max-width: 1200px;
}
.infoBtn,
.contactBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF;
  position:relative;
  z-index: 0;
  transition:0.5s;
}
.infoBtn:before,
.contactBtn:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-1;
  left:0;
  transition:0.5s;
  border-radius: 4px;
}
.infoBtn:after,
.contactBtn:after{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-2;
  left:0;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
}
.infoBtn:hover,
.contactBtn:hover{
  color: #FFF;
}
.infoBtn:hover:before,
.contactBtn:hover:before{
  opacity:0;
}
.infoBtn:before{
  background:var(--primary-color);
}
.infoBtn:after{
  background:linear-gradient(90deg, rgba(22,115,219,1) 0%,  rgba(0,170,235,1)100%);
}
.contactBtn:before{
  background:var(--secondary-color);
}
.contactBtn:after{
  background: linear-gradient(90deg, rgba(238,96,74,1) 0%, rgba(243,142,38,1)  100%);
}
/* header */
.header{
    width: 100%;
    height: 75px;
    position: fixed;
    background: #FFF;
    z-index: 3;
}
@media (min-width: 768px) {
  .header{
        height: 90px;
  }
}
.header .logo{
  height: 35px;
}
@media (min-width: 768px) {
  .header .logo{
      height: 60px;
  }
}
.assistantNavi{
  list-style: none;
  margin-top: 10px;
  margin-left: auto;
}
.assistantNavi .infoBtn,
.assistantNavi .contactBtn{
  width: 90px;
  height: 48px;
  font-size: 1.2rem;
}
@media (min-width: 350px) {
  .assistantNavi .infoBtn,
  .assistantNavi .contactBtn{
    width: 110px;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .assistantNavi{
      margin-top: 15px;
  }
  .assistantNavi .infoBtn,
  .assistantNavi .contactBtn{
    width: 155px;
    height: 58px;

  }
}
.assistantNavi .infoBtn{
  margin-right: 15px;
}
/* hero */
.hero{
  background: url(../img/hero-sp.jpg) no-repeat center center;
  width: 100%;
  height:600px;
  background-size:cover;
  padding-top: 75px;
}
@media (min-width: 440px) {
  .hero{
    background: url(../img/hero-sp.jpg) no-repeat 0 35%;
    background-size:cover;
  }
}
@media (min-width: 768px) {
  .hero{
    background: url(../img/hero.jpg) no-repeat top left;
    height: 1024px;
    background-size: cover;
    padding-top:90px;
  }
}
.heroTxt{
  padding-top:200px;
  color: #FFF;
  font-weight: 600;
}
.heroTxt br{
  display: none;
}
@media (min-width: 768px) {
  .heroTxt{
    padding-top: 420px;
  }
  .heroTxt br{
    display: block;
  }
}
.heroTxt h2{
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .heroTxt h2{
    font-size: 4.2rem;
  }
}
.heroTxt .infoBtn{
  width: 155px;
  height: 58px;
  margin-top: 40px;
}
.heroBottomBlock{
  border-radius: 8px;
  background: #FFF;
  margin-top: -100px;
  padding: 40px 15px;
  height: 150px;
  width: 95%;
  box-shadow: 0px 4px 50px 0px rgba(22, 115, 219, 0.1);
}
.heroBottomBlock .infoBtn,
.heroBottomBlock .contactBtn{
  width: 374px;
  height: 60px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .heroBottomBlock{
      padding-top: 60px;
      height: 230px;
  }
  .heroBottomBlock .infoBtn,
  .heroBottomBlock .contactBtn{
      margin-bottom: 60px;
        height: 74px;
  }
}

.heroBottomBlock .infoBtn{
  margin-right: 10px;
}
.heroBottomBlock .contactBtn{
  margin-left:10px;
}
@media (min-width: 768px) {
  .heroBottomBlock .infoBtn{
    margin-right: 20px;
  }
  .heroBottomBlock .contactBtn{
    margin-left:20px;
  }
}
.heroBottomBlock h2{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.heroBottomBlock .messageBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  border: #1673DB solid 1px;
  width: 374px;
  height: 60px;
  margin: 0 15px;
  font-size: 1.6rem;
  color: #1673DB;
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 768px) {
  .heroBottomBlock .messageBtn{
      height: 74px;
      width: 374px;
      margin: 0;
  }
}
.heroBottomBlock .messageBtn:hover{
  background: #1673DB;
  color: #FFF;
}
.advantagesBlock{
  max-width: 980px;
  margin:50px auto 50px;
}
@media (min-width: 768px) {
  .advantagesBlock{
    margin:110px auto 70px;
  }
}
.advantagesBlock h2{
  font-size: 2.6rem;
  margin-bottom:30px;
}
@media (min-width: 768px) {
  .advantagesBlock h2{
      font-size: 3.6rem;
       margin-bottom: 85px;
  }
}
.advantagesBlock h3{
  color: #EE604A;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .advantagesBlock h3{
    font-size: 6.8rem;
  }
}
.advantagesBlock .lead{
  font-weight: 800;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .advantagesBlock .lead{
      font-size: 2rem;
  }
}
.advantagesBlock .txt{
  color: #62778F;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .advantagesBlock .txt{
      margin-bottom:0;
  }
}
/* choose */
.chooseBlock{
  background: #FFFAF4;
  padding:30px 0;
}
@media (min-width: 768px) {
  .chooseBlock{
      padding: 100px 0;
  }
}
.chooseBlock h2{
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .chooseBlock h2{
    font-size: 3.6rem;
    margin-bottom: 85px;
  }
}
.chooseTxtBlock{
  margin-top: 30px;
}
@media (min-width: 768px) {
  .chooseTxtBlock{
    margin-top: 0;
  }
}
.chooseBlock .icon{
  background: #FFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0 ;
}
@media (min-width: 768px) {
  .chooseBlock .icon{
      width: 90px;
      height: 90px;
      padding: 20px;
      margin:0 20px 0 50px;
  }
}
.chooseBlock h3{
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .chooseBlock h3{
    font-size: 1.8rem;
  }
}
.chooseBlock .txt{
  width:calc(100% - 60px - 15px);
  margin:0 0 20px 15px;
}
@media (min-width: 768px) {
  .chooseBlock .txt{
    width:calc(100% - 90px - 25px);
    margin:0 0 40px 25px;
  }
}
/* PrestudyBlock */
.PrestudyBlock{
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .PrestudyBlock{
    padding-bottom: 100px;
  }
}
.PrestudyBlockTop{
  color: #FFF;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .PrestudyBlockTop{
      padding: 100px 0;
  }
}
.PrestudyBlockTop h2{
  font-size: 2.6rem;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .PrestudyBlockTop h2{
    font-size: 3.6rem;
  }
}
.PrestudyBlockTop p{
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .PrestudyBlockTop p{
      font-size: 2.4rem;
  }
}
.PrestudyItem{
  padding:15px 20px;
  margin: 0 10px 30px;
}
@media (min-width: 768px) {
  .PrestudyItem{
    /* height: 630px; */
    padding:30px 40px;
  }
}
.PrestudyItem img{
  margin-bottom: 20px;
}
.PrestudyItem h3{
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .PrestudyItem h3{
      font-size: 2rem;
  }
}
.PrestudyItem p{
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5;
}
.PrestudyItem span{
  font-weight: 600;
}
/* courses */
.coursesBlock{
  padding: 30px 0;
}
@media (min-width: 768px) {
  .coursesBlock{
    padding: 100px 0;
  }
}
.coursesBlock h2{
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .coursesBlock h2{
    font-size: 3.6rem;
    margin-bottom: 85px;
  }
}
.coursesItem{
  margin: 30px 15px 0;
  box-shadow: 0px 4px 20px 0px rgba(50, 116, 211,  0.1);
  align-items: flex-start;
}
.coursesItem img{
  width: 100%;
}
@media (min-width: 768px) {
  .coursesItem{
      margin: 30px 0 0;
  }
  .coursesItem img{
    width: 452px;
  }
}
.coursesTxt{
  width: 100%;
  padding: 10px 15px 15px;
}
@media (min-width: 768px) {
  .coursesTxt{
    width: calc(100% - 452px );
    padding: 15px 55px 0 60px;
  }
}
.coursesTxt h3{
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .coursesTxt h3{
    font-size: 2rem;
  }
}
.coursesTxt p{
  color: #62778F;
  font-size: 1.5rem;
}
.coursesTxt .timeBlock{
  margin-top: 24px;
  border-top: solid 1px #ececec;
  padding-top: 26px;
  position: relative;
  font-weight: 600;
  font-size: 1.6rem;
  padding-left: 34px;
}
.coursesTxt .timeBlock::before{
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/time-icon.svg) no-repeat;
}
.viewBtn{
  position: relative;
  font-weight: 600;
  font-size: 1.4rem;
  border: #121212 solid 1px;
  color: #121212;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 42px;
  border-radius: 40px;
  margin: 0 0 0 auto;
  padding-left:20px ;
  cursor: pointer;
}
.viewBtn::before{
  content: "";
  position: absolute;
  left: 10px;
  display: inline-block;
  background: url(../img/more-icon.svg) no-repeat;
  width: 20px;
  height: 20px;
  transition: all .3s;
}
.viewBtn:hover{
  background: #121212;
  color: #FFF;
}
.viewBtn:hover::before{
  background: url(../img/more-icon-ov.svg) no-repeat;
}
.coursesDetail,
.coursesDetailview{
  box-shadow: 0px 4px 20px 0px rgba(50, 116, 211,  0.1);
  padding:40px 20px;
  margin: 0 15px;
}
.coursesDetail{
  display: none;
}
@media (min-width: 768px) {
  .coursesDetail,
  .coursesDetailview{
      padding:70px 60px;
      margin: 0;
  }
}
.coursesDetail h3{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom:15px;
}
@media (min-width: 768px) {
  .coursesDetail h3{
      margin-bottom: 30px;
  }
}
.coursesDetail p span{
  font-weight: 600;
  color:#121212; 
}
.coursesDetail p,
.coursesDetailview p{
  font-size: 1.5rem;
  color: #62778F;
}
.coursesDetail .closeBtn img{
  cursor: pointer;
  margin-left:auto ;
}
/* Flowup*/
.FlowupBlock{
  background: #F5FAFF;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .FlowupBlock{
    padding: 100px 0;
  }
}
.FlowupBlock h2{
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .FlowupBlock h2{
    font-size: 3.6rem;
      margin-bottom: 95px;
  }
}
.FlowupBlock .container{
  max-width: 1100px;
}
.FlowupBlock{

   margin: 0 15px; 
}
.FlowupBox{
  align-items: flex-start;
}
.FlowupBlock img{
  width: 100%;
}
@media (min-width: 768px) {
  .FlowupBlock img{
    /* width: calc(100% - 550px - 50px); */
    width: 50%;
    max-width: 500px;
  }
}

.FlowupTxt{
  margin: 30px 0 15px 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .FlowupTxt{
    margin-top: 0;
    max-width: 550px;
    width:calc(50% - 50px - 15px);
    margin-left: 50px;
    margin-right: 15px;
    /* width: auto; */
  }
}
.FlowupTxtItem{
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  margin-left:auto;
  padding-left: 60px;
  padding-right: 15px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 20px 0px rgba(50, 116, 211,  0.1);
  width: 100%;
  min-height: 120px;
}
@media (min-width: 768px) {
  .FlowupTxtItem{
    max-width: 480px;
    height: 120px;
  }
}
.FlowupTxtItem span{
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 2;
  color:#FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
/* Testimonials */
.testimonialsBlock {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .testimonialsBlock {
    padding: 100px 0;
  }
}
.testimonialsBlock h2{
  font-size: 2.6rem;
  margin-bottom:30px;
}
@media (min-width: 768px) {
  .testimonialsBlock h2{
      font-size: 3.6rem;
      margin-bottom: 60px;
  }
}
.testimonialsItem{
  max-width: 950px;
  box-shadow: 0px 4px 20px 0px rgba(50, 116, 211,  0.1);
  padding: 30px 15px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .testimonialsItem{
    padding: 60px 100px 50px;
  }
}
.quotationBlock img{
  width: 35px;
}
.testimonialsItem h3{
  margin: 30px 0;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .testimonialsItem h3{
      font-size: 2rem;
  }
}
.testimonialsItem p{
  color: #62778F;
}
.profileBlock{
  margin: 30px auto 0;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.profileBlock img{
  width: 120px;
  margin-right: 24px;
}
.movie{
  margin: 30px auto;
}
@media (min-width: 768px) {
  .movie{
    margin: 100px auto;
  }
}
/* Schoolinfo */
.SchoolinfoBlock{
  padding:30px 0;
}
@media (min-width: 768px) {
  .SchoolinfoBlock{
      padding: 100px 0;
  }
}
.SchoolinfoBlock .container{
  max-width: 1100px;
  margin: 0 auto;
}
.SchoolinfoTop h2{
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .SchoolinfoTop h2{
    font-size: 3.6rem;
  }
}
.SchoolinfoTop p{
  font-size: 1.8rem;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .SchoolinfoTop p{
      font-size: 2.4rem;
  }
}

.map {
 display: flex;
 justify-content: center;
 align-items: center;
 margin:0 auto 50px;
 max-width: 80%;
}
.schoolDetailItem.hidden-box {
  display: none;
}
.schoolDetailItem.hidden-box::before{
  background: var(--primary-color);
}
.schoolDetailItem {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(50, 116, 211,  0.1);
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .schoolDetailItem {
      max-width: 510px;
  }
  .schoolDetailItem:nth-child(odd){
    margin-right: 30px;
  }
}
.schoolDetailItem::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background: var(--secondary-color);
}

.schoolDetailItem .detaiTop{
  background: #FCF8F3;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}
.schoolDetailItem .detaiTop h3{
  margin-left: 30px;
  font-weight: 600;
  font-size: 2.2rem;
}
.schoolDetailItem img{
  width: 50%;
  max-width: 256px;
}
.schoolDetailItem a{
  text-decoration: none;
  color:#121212;
}
.detailBottom{
  padding: 20px 26px;
}
.detailBottom .tel{
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  display: inline-block;
}
.detailBottom .tel::before{
  content: "";
  background: url(../img/tel-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
.detailBottom .mail{
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  display: inline-block;
}
.detailBottom .mail::before{
  content: "";
  background: url(../img/email-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
.detailBottom .access{
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}
.detailBottom .access::before{
  content: "";
  background: url(../img/map-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  top:1px;
}
.detailBottom ul{
  list-style: none;
}
.detailBottom ul a{
  text-decoration: underline;
  color: #1673DB;
}
.detailBottom ul a:hover{
  text-decoration: none;
}
.detailBottom ul li{
  position: relative;
}
.detailBottom ul li:first-child{
  padding-right: 30px;
}
.detailBottom ul li:first-child::before{
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/open-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.detailBottom ul li:nth-child(2){
  padding:0 30px ;
}
.detailBottom ul li:nth-child(2)::before{
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/review-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
/* faq */
.faqBlock{
  background: #F5FAFF;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .faqBlock{
    padding: 100px 0;
  }
}
.faqBlock h2{
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .faqBlock h2{
    font-size: 3.2rem;
    margin-bottom: 85px;
  }
}
.faqBlock .container{
  max-width: 750px;
}
.faqQuestion {
  background: #F5FAFF;
  padding: 20px 20px 20px 0;
  cursor: pointer;
  background-image: url('../img/faq-icon01.svg');
  background-repeat: no-repeat;
  background-position: right center;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .faqQuestion {
    padding: 40px 0;
  }
}
.faq.active .faqQuestion {
  background-image: url('../img/faq-icon02.svg');
}
.faqAnswer {
  display: none;
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .faqAnswer {
      padding: 40px 0;
  }
}
.faqAnswer h3{
  color: #1673DB;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.faqAnswer p{
  font-size: 1.5rem;
  color: #62778F;
  font-weight: normal;
}
.faqAnswer p a{
  text-decoration: none;
  color: #62778F;
}
/* footer */
footer{
  margin: 10px auto;
  color: #62778F;
}

/*250106*/
.programBox {
  /*background-color: #5b9bd5;*/ /* base */
  /*background: #f783ac;*/ /* spring */
  background: #F36C21; /* summer */
  color: #FFF;
  padding: 20px;
  margin: 20px 0;
}
.programBox .-title {
  font-weight: 700;
  font-size: 2.6rem;
  margin: 0 0 6px;
}
@media (max-width: 767px) {
  .programBox {
    margin: 16px 0 0;
  }
  .programBox .-title {
    font-size: 2.2rem;
  }
}