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



/*==============================
共通
==============================*/

#headWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  border: 100px solid #fff;
  background-image: url("../img/headWrap.jpg");
  background-position: center center;
  background-size: cover;
}

#headWrap .titleBox{
  margin-bottom: 0;
}

#headWrap .titleBox h2,
#headWrap .titleBox h3{
  color: #fff;
}

.titleBox{
  margin-bottom: 50px;
  text-align: center;
}
.titleBox h2{
  font-size: 40px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.titleBox hr{
  border: none;
  margin: 0 auto;
  width: 50px;
  height: 5px;
  background-color: #84b9e1;
  margin-bottom: 20px;
}
.titleBox h3{
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1000px){
  
  #headWrap{
    border: none;
    height: 300px;
    margin-top: 60px;
  }
}

/*==============================
メイン
==============================*/

#courselinkWrap{
  width: 100%;
  background-image: url("../img/courseBack01.jpg");
  background-position: center center;
  background-size: cover;
  padding: 100px 20px;
}
#courselinkWrap > div{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
}

#courselinkWrap > div > a{
  position: relative;
  width: 49%;
  display: flex;
  background-color: rgba(255,255,255,.7);
  padding: 40px 40px;
}

#courselinkWrap > div > a h4{
  color: #fff;
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0;
  margin-right: 10px;
}

#courselinkWrap > div > a p{
  color: #fff;
  line-height: 26px;
  letter-spacing: 0;
  color: #84b9e1;
}

#courselinkWrap > div > a::before{
  content: "";
  position: absolute;
  top: 54px;
  right: 40px;
  width: 20px;
  height: 1px;
  background-color: #84b9e1;
  transition: all .3s;
}

#courselinkWrap > div > a::after{
  content: "";
  position: absolute;
  top: 50px;
  right: 40px;
  width: 10px;
  height: 1px;
  background-color: #84b9e1;
  transform: rotate(45deg);
  transition: all .3s;
}

#courseWrap{
  padding: 100px 100px;
}

.courseBox:nth-of-type(2){
  flex-flow: row-reverse;
  margin-bottom: 100px;
}

.courseBox{
  position: relative;
  width: 100%;
  max-width: calc(100vw - 200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.courseText{
  width: 50%;
  padding: 50px;
}

.courseText h3{
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-weight: 500;
}

.courseText h4{
  font-size: 22px;
  letter-spacing: 0;
  color: #84b9e1;
  margin-bottom: 30px;
}

.courseText h5{
  font-family: 'Hannari';
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.courseText p{
  line-height: 36px;
  margin-bottom: 30px;
}

.courseText > div{
  padding: 30px;
  background-color: #f1f1f1;
}

.courseText > div h6{
  font-size: 20px;
  letter-spacing: 2px;
  color: #84b9e1;
  font-weight: 500;
  margin-bottom: 10px;
}

.courseText > div h6::before{
  content: "-";
  font-weight: bold;
}

.courseText > div p,
.courseText > div span{
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  margin-bottom: 0;
}

.courseText > div span{
  font-weight: bold;
  background: linear-gradient(transparent 75%, #ffe050 25%);
}

.courseBox > img{
  width: 50%;
}

.courseBox:nth-of-type(2) > span{
  position: absolute;
  right: -60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 60px;
  line-height: 37px;
  letter-spacing: 0;
  color: #84b9e1;
  border-left: 2px solid #84b9e1;
}

.courseBox:nth-of-type(4) > span{
  position: absolute;
  left: -60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 60px;
  line-height: 37px;
  letter-spacing: 0;
  color: #84b9e1;
  border-left: 2px solid #84b9e1;
}

.loop_wrap{
  position: relative;
  left: -100px;
  display: flex;
  width: 100vw;
  overflow: hidden;
  margin-bottom: 100px;
}

.loop_wrap ul {
  width: auto;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
}

.loop_wrap:last-of-type{
  margin-bottom: 0;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.loop_wrap ul:first-child {
  animation: loop 70s -35s linear infinite;
}

.loop_wrap ul:last-child {
  animation: loop2 70s linear infinite;
}

.loopslow ul:first-child {
  animation: loop 40s -20s linear infinite;
}

.loopslow ul:last-child {
  animation: loop2 40s linear infinite;
}

.loop_wrap:hover ul {
  animation-play-state: paused;
}

.loop_wrap ul li{
  position: relative;
}

.loop_wrap ul li img{
  position: relative;
  width: 640px;
}

.loop_wrap ul li p{
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 10px;
  background-color: #fff;
  letter-spacing: 0;
  font-size: 14px;
}

#afterWrap{
  width: 100%;
  padding:0 20px 100px;
}

.afterBox{
  width: 100%;
  max-width: calc(100% - 200px);
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

.afterBox > div{
  width: 33%;
  background-color: #f2f5f8;
  text-align: center;
  padding: 50px;
}

.afterBox > div h4{
  color: #84b9e1;
  font-size: 20px;
  letter-spacing: 0;
}

.afterBox > div h3{
  font-size: 20px;
  font-weight: 500;
}

.afterBox > div h2{
  display: inline-block;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 10px;
  font-weight: normal;
  font-family: 'Hannari';
  background: linear-gradient(transparent 90%, #ffe050 10%);
}

.afterBox > div p{
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}

.cautionBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f1f1f1;
  padding: 50px;
}

.cautionBox h3{
  font-size: 20px;
  margin-bottom: 5px;
}

.cautionBox h3::before{
  content: "-";
  color: #84b9e1;
}

.cautionBox p{
  margin-bottom: 20px;
}

.cautionBox p:last-of-type{
  margin-bottom: 0;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1400px) {
  .afterBox{
    max-width: 100%;
  }
}

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

@media screen and (max-width: 1200px) {
  .courseText{
    padding: 20px;
  }
  
  .designtextBox{
    display: block;
  }
  
  .afterBox{
    display: block;
    width: 100%;
    max-width: 600px;
  }
  
  .afterBox > div{
    width: 100%;
    margin-bottom: 10px;
  }
  
  .afterBox > div:last-of-type{
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  
  .headCover{
    display: none;
  }
  
  #courselinkWrap > div{
    display: block;
    width: 100%;
    max-width: 600px;
  }
  
  #courselinkWrap > div > a{
    width: 100%;
    margin-bottom: 10px;
  }
  
  .courseBox{
    display: block;
    max-width: 800px;
  }
  
  .courseText{
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
    padding-right: 30px;
  }
  
  .courseBox > img{
    width: 100%;
  }
  
  .courseBox:nth-of-type(2) > span{
    top: 0;
    right: -20px;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: 0;
  }
  
  .courseBox:nth-of-type(4) > span{
    top: 0;
    right: -20px;
    left: auto;
    font-size: 40px;
    line-height: 24px;
    letter-spacing: 0;
  }
  
  .courseText > div{
    width: calc(100% + 30px);
  }
}

@media screen and (max-width: 800px) {
  #headWrap > img{
    width: 40%;
  }
  
  #headWrap > h1{
    top: 100px;
    font-size: 22px;
    letter-spacing: 2px;
  }
  
  #courseWrap{
    padding: 100px 20px;
  }
  
  .courseText{
    padding-right: 50px;
  }
  
  .courseBox:nth-of-type(2) > span,
  .courseBox:nth-of-type(4) > span{
    right: 10px;
  }
  
  .courseText > div{
    width: calc(100% + 50px);
  }
  
  .loop_wrap{
    left: -20px;
  }
  
  .loop_wrap ul li img{
    width: 350px;
  }
  
  .designtextBox{
    max-width: 100%;
  }
  
  .sliderArea{
    max-width: 100%;
  }
}

@media screen and (max-width: 600px){
  
  
  #courselinkWrap > div > a{
    display: block;
  }
  
  .courseText h3{
    font-size: 26px;
    letter-spacing: 3px;
  }
  
  .courseText h5{
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .slick-slide{
    margin-right: 0;
  }
  
  .slick-next{
    margin-right: -25px;
  }
  
  .afterBox > div h2{
    font-size: 45px;
  }
}

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