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

/*opening-animation*/
.top-op {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  
  z-index: 102;
  background: #00b3ba;
  animation-duration: 1.2s;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  animation-name: top-op;
}
.logo {
  position: absolute;
  width: 150px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@keyframes top-op {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

/*scroll-animation*/
.section_top__scroll-wrapper {
    animation-name: scroll-fade;
    animation-duration: 2.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}  
@keyframes scroll-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

/*h1-animation*/
.section_top__PC-message :last-child {
  animation: slideInY 0.6s ease-out;
  animation-delay: 2s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.section_top__PC-message :nth-child(2) {
  animation: slideInY 0.6s ease-out;
  animation-delay: 3.5s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.section_top__PC-message :first-child {
  animation: slideInY 0.6s ease-out;
  animation-delay: 5s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.section_top__Mobile-message :first-child {
  animation: slideInY 0.6s ease-out;
  animation-delay: 2s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.section_top__Mobile-message :nth-child(2) {
  animation: slideInY 0.6s ease-out;
  animation-delay: 3.5s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.section_top__Mobile-message :last-child {
  animation: slideInY 0.6s ease-out;
  animation-delay: 5s;
  
  opacity: 0;
  animation-duration: 1s;
  animation-name: slideInY;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}



@keyframes slideInX {
  0% {
    
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInY {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/*ボタン類（ゼミ生の声以外）*/
  .section_about-us__detail-button:hover {
    background: #00b3ba;
    border: solid 2px #00b3ba;
    opacity: 0.8;
    transition-duration: 0.3s;
  }

@media(max-width:1039px) {
  .section_about-us__detail-button {
    display: flex;
    border-radius: 5px;
    height: 30px;
    width: 115px;
    border: solid 2px #222;
    margin: 15px 0 30px auto;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .detail-button_arrow {
    position: relative;
    margin-left: 4px;
    width: 23px;
    height: 10px;
    transition: inherit;
  }
  .line01 {
    width: 23px;
    height: 2px;
    margin-top: 8px;
    background-color: #222222;
  }
  .line02 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: right bottom;
    width: 8px;
    height: 2px;
    background-color: #222222;
    transform: rotate(45deg);
  }
  .section-example__detail-button {
    display: flex;
    border-radius: 5px;
    height: 30px;
    width: 115px;
    border: solid 2px #222;
    margin: 40px 0 0 auto;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;

    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .section-example__detail-button:hover {
    background: #00b3ba;
    border: solid 2px #00b3ba;
    opacity: 0.8;
    transition-duration: 0.3s;
  }
  .section-news__detail-button {
    display: flex;
    border-radius: 5px;
    height: 30px;
    width: 115px;
    border: solid 2px #222;
    margin: 30px 0 50px auto;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .section-news__detail-button:hover {
    background: #00b3ba;
    border: solid 2px #00b3ba;
    opacity: 0.8;
    transition-duration: 0.3s;
  }  
}

@media(min-width:1040px) {
  .section_about-us__detail-button {
    display: flex;
    border-radius: 10px;
    height: 50px;
    width: 200px;
    border: solid 2px #222;
    margin: 30px 0 120px auto;
    justify-content: center;
    align-items: center;
    font-size: 2.0rem;
    font-weight: 600;
    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .section-example__detail-button {
    display: flex;
    border-radius: 10px;
    height: 50px;
    width: 200px;
    border: solid 2px #222;
    margin: 30px 0 115px auto;
    justify-content: center;
    align-items: center;
    font-size: 2.0rem;
    font-weight: 600;
    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .section-example__detail-button:hover {
    background: #00b3ba;
    border: solid 2px #00b3ba;
    opacity: 0.8;
    transition-duration: 0.3s;
  }
  .section-news__detail-button {
    display: flex;
    border-radius: 10px;
    height: 50px;
    width: 200px;
    border: solid 2px #222;
    margin: 30px 0 120px auto;
    justify-content: center;
    align-items: center;
    font-size: 2.0rem;
    font-weight: 600;
    color: #222;
    background-color: #FFF;
    text-decoration: none;
    transition: .3s;
  }
  .section-news__detail-button:hover {
    background: #00b3ba;
    border: solid 2px #00b3ba;
    opacity: 0.8;
    transition-duration: 0.3s;
  }


  .detail-button_arrow {
    position: relative;
    margin-left: 10px;
    width: 40px;
    height: 20px;
    transition: inherit;
  }
  .line01 {
    height: 2px;
    margin-top: 18px;
    background-color: #222222;
  }
  .line02 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: right bottom;
    width: 10px;
    height: 2px;
    background-color: #222222;
    transform: rotate(45deg);
  }
  .section_about-us__detail-button {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .section-example__detail-button {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .section-news__detail-button {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
}

/*TOPアニメーションの調整*/
@media(min-width: 200px) and (max-width: 399px) {
  .add-animation {
    animation: zoom-fade 14s both;
  }

  @keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: translateX(10px)
  }

  100% {
    /*transform: scale(1);*/
    transform: translateX(-220px)
  }

  }
}
@media(min-width:400px) and (max-width: 449px) {
  .add-animation {
    animation: zoom-fade 20s both;
  }

  @keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: translateX(10px)
  }

  100% {
    /*transform: scale(1);*/
    transform: translateX(-210px)
  }

  }
}
@media(min-width:450px) and (max-width:499px) {
  .add-animation {
    animation: zoom-fade 26s both;
  }

  @keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: translateX(10px)
  }

  100% {
    /*transform: scale(1);*/
    transform: translateX(-180px)
  }

  }
}
@media(min-width:500px) and (max-width:549px) {
  .add-animation {

    animation: zoom-fade 38s both;
  }

  @keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: translateX(-10px)
  }

  100% {
    /*transform: scale(1);*/
    transform: translateX(-150px)
  }

  }  
}
@media(min-width:550px) and (max-width:589px) {
  .add-animation {
    animation: zoom-fade 48s both;
  }

  @keyframes zoom-fade {

  0% {
    /*transform: scale(1.05);*/
    transform: translateX(-10px)
  }

  100% {
    /*transform: scale(1);*/
    transform: translateX(-80px)
  }
  }  
}

/*TOP*/
@media(max-width:629px)  {
  .section_top {
    padding: 0 0 65px;
  }
  .section_top__PC-message img {
    display: none;
  }
  
  .section_top__message-wrapper {
    width: auto;
    width: 225px;
    padding-left: 30px;
    padding-bottom: 38px;
  }
  .section_top__Mobile-message {
    display: block;
    padding: 50px 0 0 0;
    width: 229px;
    height: 135px;
  }
  .section_top__Mobile-message img {
    object-fit: cover;
    padding-top: 7px;
    width: 229px;
    height: 40px;
  }
  .section_top__Mobile-message img:first-child {
    padding-top: 0;
  }
  .section_top__scroll-wrapper {
    position: absolute;
    top: 150px;
    right: 10px;
    width: 9px;
    padding: 0;
  }
  .section_top__scroll-wrapper img {
    width: 9px;
    height: auto;
  }
  
  .section_top__image {
    object-fit: cover;
    border-top-left-radius: 30px;
    overflow: hidden;
    width: 95%;
    margin-right: 0;
    margin-left: auto;
    height: 400px;
    text-align: right;
  }
  
  .section_top__images {
    height: 400px;
    object-fit: cover;
  }
  .section_top__image img {
    object-fit: cover;
    height: 400px;
  }
}

@media(min-width:630px) and (max-width:1039px) {
  .section_top {
    padding: 0 0 65px;
  }
  .section_top__PC-message img {
    display: none;
  }
  
  .section_top__message-wrapper {
    width: auto;
    width: 225px;
    padding-left: 30px;
    padding-bottom: 38px;
  }
  .section_top__Mobile-message {
    display: block;
    padding: 50px 0 0 0;
    width: 225px;
    height: 135px;
  }
  .section_top__Mobile-message img {
    object-fit: cover;
    padding-top: 7px;
    width: 225px;
    height: 40px;
  }
  .section_top__Mobile-message img:first-child {
    padding-top: 0;
  }
  .section_top__scroll-wrapper {
    position: absolute;
    top: 150px;
    right: 10px;
    width: 9px;
    padding: 0;
  }
  .section_top__scroll-wrapper img {
    width: 9px;
    height: auto;
  }
  
  .section_top__image {
    display: block;
    object-fit: cover;
    border-top-left-radius: 30px;
    margin-left: 30px;
    overflow: hidden;
  }
  .section_top__image img {
    height: 470px;
    width: 100%;
    object-fit: cover;
  }
  .section_top__images {
    height: 470px;
  }
}


@media(min-width:1040px) {
  .section_top {
    width: 100%;
    padding: 35px 0 80px;
  }
  .section_top__wrapper {
    display: flex;
    justify-content: flex-end;
    
    margin: 0 0 0 auto;
    max-height: 530px;
  }
  
  .section_top__message-wrapper {
    margin: 0 auto;
  }
  
  .section_top__Mobile-message {
    display: none;
  }
  .section_top__PC-message {
    display: flex;
    padding: 53px 0 0 0;
    height: 436px;
    width: 195px;
  }
  .section_top__PC-message img {
    object-fit: cover;
    padding-left: 15px;
  }
  .section_top__PC-message img:first-child {
    padding-left: 0;
  } 
  
  .section_top__scroll-wrapper {
    width: 11px;
    padding: 430px 15px 0 0;
  }
  .section_top__scroll-wrapper img {
    width: 11px;
    height: auto;
    position: relative;
  }
  
  .section_top__image {
    display: block;
    object-fit: cover;
    width: 70%;
    border-top-left-radius: 30px;
    overflow: hidden;
  }
  .section_top__image img {
    height: 530px;
    width: 100%;
    object-fit: cover;
  }
  .section_top__images {
    height: 530px;
  }
}


/*ABOUT*/
/*heading*/
.section_about__heading {
  text-align: left;
  position: absolute;
  padding: 0 0 0 25px;
}

@media(min-width: 200px) and (max-width:639px) {
    /*heading*/
  .section_about__heading {
    text-align: left;
    position: absolute;
    padding: 0 0 0 25px;
  }
  .section_about__heading p {
    font: Murecho;
    font-size: 1.0rem;
    font-weight: 600;
    color: #00b3ba;
    padding-bottom: 10px;
  }
  .section_about__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    line-height: 28.8px;
  }
  
  .section_about__sentence {
    background-image: none;
    padding: 0 25px;
  }
  .section_about__sentence p {
    margin: 0 auto;
    padding-top: 30px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 22px;
    text-align: left;
    font-weight: 600;
    max-width: 435px;    
  }
  .section_about__button-wrapper {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 435px;  
  }
  .section_about__wrapper img {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 100px;
  }
}  
@media(min-width: 640px) and (max-width:1039px) {
  /*heading*/
  .section_about__heading {
    text-align: left;
    position: absolute;
    padding: 0 0 0 25px;
  }
  .section_about__heading p {
    font: Murecho;
    font-size: 1.0rem;
    font-weight: 600;
    color: #00b3ba;
    padding-bottom: 10px;
  }
  .section_about__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    line-height: 28.8px;
  }
  
  .section_about__sentence {
    background-image: none;
    padding: 0 25px;
  }
  .section_about__sentence p {
    margin: 0 auto;
    padding-top: 30px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 22px;
    text-align: left;
    font-weight: 600;
    max-width: 500px;    
  }
  .section_about__button-wrapper {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 500px;  
  }
  .section_about__wrapper img {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 100px;
  }  
}

@media(min-width:1040px) {
  .section_about {
    padding-bottom: 180px;
  }
  .section_about__wrapper {
    width: 100%;
    margin: 0 auto;
    height: 575px;    
  }
  .section_about__wrapper {
    height: 634px;
  }
  .section_about__sentence {
    background-image: url("../images/common/aboutus/about_us_img@3x.jpg");
    background-repeat: repeat;
    background-size: cover;
    margin: 0 auto;
    width: 100%;
    max-width: 980px;
    height: 549px; 
    padding: 0;
  }
  .section_about__wrapper img {
    display: none;
  }
  
  /*heading*/
  .section_about__heading {
    text-align: left;
    position: absolute;
    padding: 190px 0 0 6%;
  }
  .section_about__heading p {
    font: Murecho;
    font-size: 1.4rem;
    font-weight: 600;
    color: #00b3ba;
    padding-bottom: 15px;
  }
  .section_about__heading h3 {
    font-size: 3.2rem;
    letter-spacing: 1.6px;
    line-height: 38.4px;
  }
  
  /*sentence*/
  .section_about__sentence {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  .section_about__sentence p {
    padding-top: 300px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 26px;
    text-align: left;
    font-weight: 600;
    max-width: 420px;    
  }
  
  /*button*/
  .section_about__button-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1026px;
  }
  .section_about-us__detail-button {
    height: 50px;
    width: 200px;
    margin: 35px 30px 0 auto;
    font-size: 2.0rem;
  }
  .section_about-us__detail-button img {
    height: 9px;
    width: 40px;
    margin-top: 5px;
    margin-left: 12px;
  }
}

@media(min-width:1200px) {
  .section_about__wrapper {
    height: 665px;
  } 
  
  .section_about__heading {
    padding: 190px 0 0 8%;
  }
  .section_about__sentence {
    padding: 0;
    width: 100%;
    max-width: 1026px;
    height: 575px; 
  }
  .section_about__heading h3 {
    font-size: 4.0rem;
    letter-spacing: 2.5px;
    line-height: 48px;
  }
  
  .section_about-us__detail-button {
    margin: 35px 0 0 auto;
  } 
  .section_about__sentence p {
    padding-top: 300px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 30px;
    text-align: left;
    font-weight: 600;
    max-width: 435px;    
  }
}


/*APEAL*/
@media(min-width: 200px) and (max-width:639px)  {
  .section-apeal {
    padding: 0 25px 50px;
    margin: 0 auto;
    height: 2450px;
  }
  .section-apeal__bg {
    background-color: #daf4f5;
    border-top-left-radius: 30px;
    
    z-index: -999;
    position: absolute;
    right: 0;
    margin-top: 150px;
    width: 94%;
    max-width: 1100px;
    height: 2300px;
  }
  .section-apeal__connection-image img {
    max-width: 320px;
    width: 90%;
  }   
  .section-apeal__area-image img {
    max-width: 320px;
    width: 90%;
  }   
  .section-apeal__attitude-image img {
    max-width: 320px;
    width: 90%;
  }
  .section-apeal__heading {
    writing-mode: vertical-rl;
    height: 130px;
    text-align: end;
  }
  .section-apeal__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  .section-apeal__heading p {
    font-size: 1.0rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  .section-apeal__links ul li {
    list-style: none;
  }
  .section-apeal__sentence {
    padding-top: 20px;
    text-align: left;
  }
  .section-apeal__Mobile-sentence {
    display: flex;
    justify-content: center;
  }
  .section-apeal__main {
    display: block;
  }
  
  .section-apeal__connection {
    display: block;
    padding-bottom: 60px;
  }
  .section-apeal__area {
    display: block;
    padding-bottom: 60px;
  }  
  
  .section-apeal__apeal-point {
    text-align: left;
    width: 95%;
    max-width: 400px;
    padding-left: 20px;
  }
  .section-apeal__apeal-point :first-child {
    margin-top: 0;
  }
  .section-apeal__apeal-point h4 {
    display: inline-block;
    font-size: 2.0rem;
    background: linear-gradient(transparent 70%, #00EDF7 80%); 
  }
  .section-apeal__apeal-point p {
    padding: 20px 0 30px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 20px;
  }
  
  .section-apeal__links {
    text-align: left;
    padding-left: 20px;
  }
  .section-apeal__links-heading {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
  }
  .section-apeal__links-heading span {
    font-size: 1.4rem;
    color: #007f84;
    font-weight: 600;
  }
  .section-apeal__links-heading img {
    width: 40px;
    height: 9px;
    padding-left: 8px;
  }
  .section-apeal__links-1 {
    display: flex;
    padding-bottom: 10px;
  }
  .section-apeal__links-1>div{
    margin-right: 15px;
  }
  .section-apeal__links-wrapper:last-child {
    margin-right: 0;
  }
  .section-apeal__links-wrapper {
    padding: 7px 6px;
    background-color: #FFF;
    border-radius: 5px;
  }
  .section-apeal__links ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #222222;
    font-weight: 600;
  }
  .section-apeal__links-2 {
    display: inline-block;
  }
  
  .section-apeal__word-deco {
    padding: 20px 0 0 10px;
  }
  .section-apeal__word-deco img {
    object-fit: cover;
    width: 16px;
  }
}  

@media(min-width: 640px) and (max-width:1039px) {
  .section-apeal {
    padding: 0 25px 50px;
    margin: 0 auto;
    height: 3200px;
  }
  .section-apeal__bg {
    background-color: #daf4f5;
    border-top-left-radius: 30px;
    
    z-index: -999;
    position: absolute;
    right: 0;
    margin-top: 150px;
    width: 94%;
    max-width: 1100px;
    height: 3050px;
  }
  .section-apeal__connection-image img {
    max-width: 500px;
    width: 90%;
  }   
  .section-apeal__area-image img {
    max-width: 500px;
    width: 90%;
  }   
  .section-apeal__attitude-image img {
    max-width: 500px;
    width: 90%;
  }
  .section-apeal__heading {
    writing-mode: vertical-rl;
    height: 130px;
    text-align: end;
  }
  .section-apeal__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  .section-apeal__heading p {
    font-size: 1.0rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  .section-apeal__links ul li {
    list-style: none;
  }
  .section-apeal__sentence {
    padding-top: 20px;
    text-align: left;
  }
  .section-apeal__Mobile-sentence {
    display: flex;
    justify-content: center;
  }
  .section-apeal__main {
    display: block;
  }
  
  .section-apeal__connection {
    display: block;
    padding-bottom: 60px;
  }
  .section-apeal__area {
    display: block;
    padding-bottom: 60px;
  }  
  
  .section-apeal__apeal-point {
    text-align: left;
    width: 95%;
    max-width: 500px;
    padding-left: 20px;
  }
  .section-apeal__apeal-point :first-child {
    margin-top: 0;
  }
  .section-apeal__apeal-point h4 {
    display: inline-block;
    font-size: 2.8rem;
    background: linear-gradient(transparent 70%, #00EDF7 80%); 
  }
  .section-apeal__apeal-point p {
    padding: 20px 0 30px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 28px;
  }
  
  .section-apeal__links {
    text-align: left;
    padding-left: 20px;
  }
  .section-apeal__links-heading {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
  }
  .section-apeal__links-heading span {
    font-size: 1.4rem;
    color: #007f84;
    font-weight: 600;
  }
  .section-apeal__links-heading img {
    width: 40px;
    height: 9px;
    padding-left: 8px;
  }
  .section-apeal__links-1 {
    display: flex;
    padding-bottom: 10px;
  }
  .section-apeal__links-1>div {
    margin-right: 15px;
  }
  .section-apeal__links-1>div:last-child {
    margin-right: 15px;
  }
  .section-apeal__links ul{
    display: flex;
  }
  .section-apeal__links ul li {
    text-align: center;
  }
  .section-apeal__links-wrapper {
    padding: 7px 6px;
    background-color: #FFF;
    border-radius: 5px;
  }
  .section-apeal__links ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #222222;
    font-weight: 600;
  }
  .section-apeal__links-2 {
    display: inline-block;
  }
  
  .section-apeal__word-deco {
    padding: 20px 0 0 10px;
  }
  .section-apeal__word-deco img {
    object-fit: cover;
    width: 25px;
  }
}


@media(min-width:1040px) {
  .section-apeal {
    height: 2035px;
  }
  .section-apeal__bg {
    background-color: #daf4f5;
    border-top-left-radius: 30px;
    
    z-index: -999;
    position: absolute;
    right: 0;
    margin-top: 35px;
    width: 80%;
    max-width: 1100px;
    height: 2000px;
  }
  .section-apeal__heading {
    writing-mode: vertical-rl;
    height: 220px;
    text-align: end;
  }
  .section-apeal__heading h3 {
    font-size: 3.2rem;
    letter-spacing: 1.6px;
  }
  .section-apeal__heading p {
    font-size: 1.4rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  
  .section-apeal__wrapper {
    width: 100%;
  }
  .section-apeal__main {
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
  }
  
  .section-apeal__connection {
    display: flex;
    padding-bottom: 60px;
  }
  .section-apeal__connection-image {
    width: 511px;
  }
  .section-apeal__connection-image img {
    height: 600px;
    width: 482px;
    padding-right: 29px;
  }
  
  .section-apeal__Mobile-sentence {
    display: flex;
  }
  .section-apeal__area {
    display: flex;
    padding-bottom: 60px;
  }
  .section-apeal__area-image {
    width: 511px;
  }
  .section-apeal__area-image img {
    height: 600px;
    width: 511px;
  }    
  
  .section-apeal__attitude {
    display: flex
  }
  .section-apeal__attitude-image {
    width: 511px;
  }
  .section-apeal__attitude-image img {
    height: 600px;
    width: 496px;
    padding-right: 15px;
  }
  
  .section-apeal__links ul li {
    list-style: none;
  }
  .section-apeal__sentence {
    padding-left: 35px;
    padding-top: 0;
  }
  
  .section-apeal__apeal-point {
    text-align: left;
    width: 100%;
    max-width: 400px;
  }
  .section-apeal__apeal-point :first-child {
    margin-top: 100px;
  }
  .section-apeal__apeal-point h4 {
    display: inline-block;
    font-size: 2.8rem;
    background: linear-gradient(transparent 70%, #00EDF7 80%); 
  }
  .section-apeal__apeal-point p {
    padding: 50px 0 70px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 28px;
  }
  
  .section-apeal__links {
    text-align: left;
    padding-left: 0;
  }
  .section-apeal__links-heading {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .section-apeal__links-heading span {
    font-size: 1.6rem;
    color: #007f84;
    font-weight: 600;
  }
  .section-apeal__links-heading img {
    width: 40px;
    height: 9px;
    padding-left: 8px;
  }
  .section-apeal__links-1 {
    display: flex;
    padding-bottom: 10px;
  }
  .section-apeal__links-1>div {
    margin-right: 20px;
  }
  .section-apeal__links-1>div:last-child {
    margin-right: 0;
  }
  .section-apeal__links ul li {
    text-align: center;
  }
  .section-apeal__links-wrapper {
    padding: 8px 9px;
    background-color: #FFF;
    border-radius: 5px;
  }
  .section-apeal__links ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #222222;
    font-weight: 600;
  }
  .section-apeal__links-2 {
    display: inline-block;
  }
  
  .section-apeal__word-deco {
    padding: 100px 0 0 25px;
  }
  .section-apeal__word-deco img {
    object-fit: cover;
    width: 25px;
  }
}


@media(min-width:1200px) {
  .section-apeal__sentence {
    padding-left: 70px;
  }
  .section-apeal__main {
    padding: 0 8%;
  } 
  .section-apeal__apeal-point :first-child {
    margin-top: 100px;
  }
  .section-apeal__heading h3 {
    font-size: 4.0rem;
    letter-spacing: 2.5px;
  }  
}

@media(min-width:1210px) {
  .section-apeal__connection {
    padding-bottom: 100px;
  }
  .section-apeal__area {
    padding-bottom: 100px;
  }   
}


/*EXAMPLE*/
@media(min-width: 200px) and (max-width:699px) {
  .section-example {
    margin: 0 auto;
    text-align: center;
    max-width: 325px;
  }
  
  .section-example__heading {
    margin: 0 auto;
    writing-mode: vertical-rl;
    height: 110px;
    text-align: end;
    padding-bottom: 20px;
  }
  .section-example__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    padding-left: 10px;
  }
  .section-example__heading p {
    font-size: 1.0rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  
  .section-example__sub-text {
    padding-bottom: 30px;
  }
  .section-example__sub-text span {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .section-example__sub-text p {
    font-size: 1.2rem;
    line-height: 16px;
    padding-top: 20px;
    font-weight: 600;
  }
  
  .section-example__contents {
    margin: 0 auto;
    text-align: center;
  }  
  .section-example__contents-1 {
    margin: 0 auto;
    display: block;
    padding-bottom: 20px;
  }
  .section-example__contents-2 {
    margin: 0 auto;    
    display: block;
  }
  
  .section-example__example-box {
    height: 320px;
    width: 325px;
    text-align: center;
    margin: 0 auto;
    border: solid #b6e9eb 2px;
  }
  
  .section-example__example-box:nth-child(2) {
    margin-top: 20px;
  }
  .section-example__example-box:last-child {
    margin-top: 20px;
  }
   
  .section-example__img-wrapper img {
    padding-top: 10px;
    width: 303px;
    height: 148px;
  }
  .section-example__sentence-wrapper {
    text-align: left;
    margin: 0 auto;
    width: 303px;
  }
  .section-example__sentence-wrapper h4 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 15px 0;
  }
  .section-example__sentence-wrapper p {
    font-size: 1.2rem;
    line-height: 18px;
  }  
  
  .section-example__contents-1 {
    display: block;
  }
  .section-example__contents-2 {
    display: block;
  }  
}  

@media(min-width: 700px) and (max-width:1079px) {
  .section-example {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 670px;
  }
  
  /*heading*/
  .section-example__heading {
    margin: 0 auto;
    writing-mode: vertical-rl;
    height: 110px;
    text-align: end;
    padding-bottom: 20px;
  }
  .section-example__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    padding-left: 10px;
  }
  .section-example__heading p {
    font-size: 1.0rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  
  /*sub-text*/
  .section-example__sub-text {
    padding-bottom: 30px;
  }
  .section-example__sub-text span {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .section-example__sub-text p {
    font-size: 1.2rem;
    line-height: 24px;
    padding-top: 20px;
    font-weight: 600;
  }
  
  /*contents*/
  .section-example__contents-1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
  }
  .section-example__contents-2 {
    display: flex;
    justify-content: space-between;
  }
  
  .section-example__example-box {
    height: 320px;
    width: 325px;
    text-align: center;
    border: solid #b6e9eb 2px;
  }
  .section-example__img-wrapper img {
    padding-top: 10px;
    width: 303px;
    height: 148px;
    object-fit: cover;
  }
  
  .section-example__sentence-wrapper {
    text-align: left;
    margin: 0 auto;
    width: 303px;
  }
  .section-example__sentence-wrapper h4 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 15px 0;
  }
  .section-example__sentence-wrapper p {
    font-size: 1.2rem;
    line-height: 18px;
  }  
} 

@media(min-width:1080px) {
  .section-example {
    margin: 100px auto 0;
    padding: 0 25px;
    text-align: center;
    width: 100%;
    max-width: 1050px;
  }
  
  /*heading*/
  .section-example__heading {
    writing-mode: vertical-rl;
    height: 170px;
    text-align: end;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .section-example__heading h3 {
    font-size: 3.2rem;
    letter-spacing: 1.6px;
    padding-left: 25px;
  }
  .section-example__heading p {
    font-size: 1.4rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  
  /*sub-text*/
  .section-example__sub-text {
    padding-bottom: 70px;
  }
  .section-example__sub-text span {
    font-size: 2.4rem;
    font-weight: 600;
  }
  .section-example__sub-text p {
    font-size: 1.6rem;
    line-height: 24px;
    padding-top: 20px;
    font-weight: 600;
  }
  
  /*contents*/
  .section-example__contents-1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
  }
  .section-example__contents-2 {
    display: flex;
    justify-content: space-between;
  }
  
  .section-example__example-box {
    height: 450px;
    width: 500px;
    text-align: center;
    border: solid #b6e9eb 2px;
  }
  .section-example__img-wrapper img {
    padding-top: 10px;
    height: 230px;
    width: 480px;
    object-fit: cover;
  }
  
  .section-example__sentence-wrapper {
    text-align: left;
    margin: 0 auto;
    width: 480px;
  }
  .section-example__sentence-wrapper h4 {
    font-size: 2.6rem;
    font-weight: 600;
    padding: 25px 0;
  }
  .section-example__sentence-wrapper p {
    font-size: 1.7rem;
    line-height: 28px;
  }  
}

@media(min-width:1200px) {
  .section-example__heading h3 {
    font-size: 4.0rem;
    letter-spacing: 2.5px;
    padding-left: 25px;
  }
}


.section-student__detail-button {
  display: flex;
  border-radius: 5px;
  height: 30px;
  width: 100px;
  border: solid 2px #222;
  margin: 10px 0 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-weight: 600;
  color: #333;
  background-color: #FFF;
  text-decoration: none;
  transition: .3s;
}
.section-student__detail-button:hover {
  background: #00b3ba;
  border: solid 2px #00b3ba;
  opacity: 0.8;
  transition-duration: 0.3s;
}
.section-student__detail-button-text {
  font-size: 1.2rem;
  font-weight: 600;
}
.section-student__detail-button-arrow {
  position: relative;
  margin-left: 5px;
  width: 20px;
  height: 10px;
  transition: inherit;
}
.section-student__line01 {
  height: 2px;
  margin-top: 8px;
  background-color: #222222;
}
.section-student__line02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: right bottom;
  width: 6px;
  height: 2px;
  background-color: #222222;
  transform: rotate(45deg);
}


/*STUDENT*/
@media(max-width:699px) {
  .section-student {
    padding-bottom: 30px;
  }
  .section-student-wrapper {
    width: 100%;
    background-color: #48c8cd;
    height: 600px;
  }
  .section-student__bg-head {
    width: 100%;
    position: absolute;
    margin-top: -1px;
    background-color: #FFF;
    height: 50px;
    border-radius: 0 0 30px 30px;
  }
  
  .section_student__heading {
    text-align: left;
    position: absolute;
    padding: 80px 0 0 25px;
  }
  .section_student__heading p {
    font: Murecho;
    font-size: 1.0rem;
    font-weight: 600;
    color: #FFF;
    padding-bottom: 10px;
  }
  .section_student__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    color: #FFF;
  }
  
  

  
  /*slick*/
  .section-lineup{
    overflow: hidden;
    padding: 80px 0;
  }
  .section_student__inner{
    margin: 0 auto;
    width: 300px;
    transform: translate3d(0px, 0px, 0px);
    padding-top: 160px;
  }
  
  .lineup{
    position: relative;
  }
  .section_student__list-container img{
    height: 200px;
    width: 300px;
    object-fit: cover;
  }
  .lineup ul li {
    text-align: center;
    height: 390px;
    width: 300px;
    background-color: #FFF;
    margin: 0;
  }  
  
  .section_student__intro-container {
    text-align: left;
    padding-top: 20px;
    width: 265px;
    margin: 0 auto;
  }
  .section_student__intro-container h4 {
    font-size: 2.2rem;
    padding-bottom: 8px;
  }
  .section_student__intro-container span {
    font-size: 1.4rem;
    font-weight: 600;
  }  
  .section_student__intro-container p {
    padding-top: 15px;
    font-size: 1.2rem;
    line-height: 18px;
  }    
  
  .slick-list{
    overflow: visible;
  }

  .slick-nav-arrows {
    position: absolute;
    top: 50%;
    right: 50%;
  }
  .slick-arrow {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
  .slick-prev {
    left: -184px;
  }
  [dir='rtl'] .slick-prev {
    right: -70px;
    left: auto;
  }
  .slick-prev:before {
    content: '←';
  }
  [dir='rtl'] .slick-prev:before {
    content: '→';
  }

  .slick-next {
    right: -184px;
  }
  [dir='rtl'] .slick-next {
    right: auto;
    left: -70px;
  }
  .slick-next:before {
    content: '→';
  }
  [dir='rtl'] .slick-next:before {
    content: '←';
  }
}  

@media(min-width:700px) {
  .section-student {
    padding-bottom: 125px;
  }
  .section-student-wrapper {
    width: 100%;
    background-color: #48c8cd;
    height: 800px;
  }
  .section-student__bg-head {
    width: 100%;
    position: absolute;
    margin-top: -1px;
    background-color: #FFF;
    height: 50px;
    border-radius: 0 0 30px 30px;
  }
  
   .section_student__heading {
    text-align: left;
    position: absolute;
    padding: 120px 0 0 25px;
  }
  .section_student__heading p {
    font: Murecho;
    font-size: 1.0rem;
    font-weight: 600;
    color: #FFF;
    padding-bottom: 10px;
  }
  .section_student__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    color: #FFF;
  }
  
  
  /*slick*/
  .section-lineup{
    overflow: hidden;
    padding: 120px 0;
  }
  .section_student__inner{
    margin: 0 0 0 auto;
    width: 80%;
    transform: translate3d(0px, 0px, 0px);
    padding-top: 290px;
  }
  .lineup{
    position: relative;
  }
  .lineup ul li {
    text-align: center;
    height: 460px;
    width: 380px;
    background-color: #FFF;
    margin-right: 25px;
  }
  .section_student__list-container {
    
  }
  .section_student__list-container img{
    height: 250px;
    width: 100%;
    object-fit: cover;
  }
  
  .section_student__intro-container {
    text-align: left;
    padding-top: 20px;
    width: 335px;
    margin: 0 auto;
  }
  .section_student__intro-container h4 {
    font-size: 2.6rem;
    padding-bottom: 10px;
  }
  .section_student__intro-container span {
    font-size: 1.6rem;
    font-weight: 600;
  }  
  .section_student__intro-container p {
    padding-top: 20px;
    font-size: 1.4rem;
    line-height: 20px;
    letter-spacing: 0.5px;
  }    
  
  .slick-list{
    overflow: visible;
  }

  .slick-nav-arrows {
    position: absolute;
    top: -60px;
    right: 18%;
  }
  .slick-arrow {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
  .slick-prev {
    left: -70px;
  }
  [dir='rtl'] .slick-prev {
    right: -70px;
    left: auto;
  }
  .slick-prev:before {
    content: '←';
  }
  [dir='rtl'] .slick-prev:before {
    content: '→';
  }

  .slick-next {
    right: -70px;
  }
  [dir='rtl'] .slick-next {
    right: auto;
    left: -70px;
  }
  .slick-next:before {
    content: '→';
  }
  [dir='rtl'] .slick-next:before {
    content: '←';
  }
}
@media(min-width:1039px) {
  .section_student__heading {
    text-align: left;
    position: absolute;
    padding: 120px 0 0 30px;
  }
  .section_student__heading p {
    font: Murecho;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFF;
    padding-bottom: 15px;
  }
  .section_student__heading h3 {
    font-size: 3.2rem;
    letter-spacing: 1.6px;
    color: #FFF;
    line-height: 38.4px;
  }
}
@media(min-width:1200px) {
  .section_student__heading {
    text-align: left;
    position: absolute;
    padding: 120px 0 0 85px;
  }
  .section_student__heading h3 {
    font-size: 4.0rem;
    letter-spacing: 2.5px;
    color: #FFF;
    line-height: 48px;
  }  
}

@media(max-width:1039px) {
  .section-news {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 600px;
  }
  .section-news__heading {
    margin: 0 auto;
    writing-mode: vertical-rl;
    height: 110px;
    text-align: end;
    padding-bottom: 30px;
  }
  .section-news__heading p {
    font-size: 1.0rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  .section-news__heading h3 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    padding-left: 10px;
  }  
  
 .section-news__contents-container {
    width: 100%;
  }
  .section-news ol {
    width: 100%;
  }
  .section-news ol li {
    border-top: solid #222222 2px;
    padding: 15px 25px;
    list-style: none;
  }
  .section-news ol li:last-child {
    border-bottom: solid #222222 2px;
  }
  
  .section-news__news_contents {
    display: block;
    width: 100%;
  }
  .news-contents__text {
    align-items: center;
    text-align: left;
  }
  .news-contents__time {
    font-size: 1.2rem;
    padding-bottom: 5px;
    font-weight: 600;
    text-align: left;
    margin-right: 35px;
    display: flex;
  }
  .news-contents__day {
    padding-left: 15px;
    width: 55px;
  }
  .news-contents__date {
  }
  .section-news__Mobile-new {
    color: #00b3ba;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 15px;
  }
  .section-news__PC-new {
    display: none;
  }
  .section-news__old {
    width: 53px;
  }
  
  .news-contents__text span {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
  }
  .section-news__all-button {
    height: 60px;
    width: 250px;
    margin: 30px 0 80px auto;
    font-size: 2.2rem;
  }    
}

@media(min-width:1040px) {
  .section-news {
    margin: 0 auto;
    padding: 0 30px;
  }
  .section-news__heading {
    writing-mode: vertical-rl;
    height: 170px;
    text-align: end;
    padding: 0 50px 0 0;
  }
  .section-news__heading p {
    font-size: 1.4rem;
    color: #00b3ba;
    font-weight: 600;
    padding-left: 10px;
  }
  .section-news__heading h3 {
    font-size: 3.2rem;
    letter-spacing: 1.6px;
  }
  .section-news__container {
    display: flex;
  }
  
  .section-news__contents-container {
    width: 100%;
    padding-top: 50px;
  }
  .section-news ol {
    width: 100%;
  }
  .section-news ol li {
    border-top: solid #222222 2px;
    padding: 30px 0;
    width: 100%;
    list-style: none;
  }
  .section-news ol li:last-child {
    border-bottom: solid #222222 2px;
  }
  
  .section-news__news_contents {
    display: block;
    width: 100%;
  }
  .news-contents__text {
    display: flex;
    align-items: center;
    margin-left: 40px;
    text-align: left;
  }
  .news-contents__time {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
    margin-right: 35px;
    display: flex;
  }
  .news-contents__day {
    padding-left: 25px;
    width: 92px;
  }
  .news-contents__date {
    padding-right: 30px;
  }
  .section-news__Mobile-new {
    display: none;
  }
  .section-news__PC-new {
    color: #00b3ba;
    font-weight: 600;
  }
  .section-news__old {
    width: 53px;
  }
  
  .news-contents__text span {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
    margin-left: 35px;
  }
  .section-news__all-button {
    height: 60px;
    width: 250px;
    margin: 30px 0 80px auto;
    font-size: 2.2rem;
  }  
}

@media(min-width:1200px) {
  .section-news {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1186px;
  }
  .section-news__heading {
    writing-mode: vertical-rl;
    height: 170px;
    text-align: end;
    padding: 0 130px 0 0;
  }
  .section-news__heading h3 {
    font-size: 4.0rem;
    letter-spacing: 2.5px;
  }
  .news-contents__date {
    padding-right: 65px;
  }  
}




/*opening-animation fin*/