@charset "utf-8";
@viewport { zoom: 1.0; width: extend-to-zoom; }
* { margin: 0; padding: 0; -webkit-margin-before: 0; -webkit-margin-after: 0; -webkit-margin-start: 0; -webkit-margin-end: 0; -webkit-padding-before: 0; -webkit-padding-after: 0; -webkit-padding-start: 0; -webkit-padding-end: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
button {
  border: none;
  -webkit-appearance: none;
  background: none;
  cursor: pointer;
}
img {
  max-width: 100%;
}
ul, li {
  list-style-type: none;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
html, body, :root {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #222222;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  position: relative;
}

@media (min-width:841px) {
  html, body, :root {
    font-size: 16px;
  }
}

@media (min-width:1600px) {
  html, body, :root {
    font-size: 17px;
  }
}


/* リンク */
a {
  text-decoration: none;
  transition: all 0.2s ease;
}


/* ボタン */
.btn {
  display: inline-block;
  min-width: 16em;
  border-radius: 100px;
  line-height: 1;
  text-align: center;
  padding: 1.2rem 2rem;
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  background-color: #00a0b4;
}
.btn span {
  display: inline-block;
  padding: .1rem 2rem .1rem 0;
  background: url("../img/arrow.svg") no-repeat center right;
  background-size: 1.2rem;
}
.btn-red {
  background-color: #ea5161;
}
@media (hover: hover) {
  .btn:hover {
    transform: scale(1.1);
  }
}
@media (max-width:800px) {
  .btn {
    padding: 1.2rem 1rem;
  }
}
@media (min-width:801px) {
  .btn {
    font-size: 1.4rem;
  }
}


/* レイアウト */
.container {
  margin: auto;
  width: 600px;
  max-width: 96%;
}
.sect {
  padding: 0 0 2rem 0;
}
@media (min-width:801px) {
  .container {
    width: 1080px;
  }
  .container.slim {
    width: 900px;
  }
  .sect {
    padding: 0 0 5rem 0;
  }
}


/* 見出し */
.sect-h {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 4rem;
  padding: 2rem 0 0;
  background: url("../img/tuition.png") no-repeat top center;
  background-size: auto 1.2rem;
  position: relative;
  letter-spacing: .2rem;
}
.sect-h::after {
  content: ""; display: block;
  width: 40px;
  height: 6px;
  background-color: #D4C45F;
  position: absolute;
  left: 0; right: 0; bottom: -1.4rem;
  margin: auto;
}
.sect-h small {
  font-size: 1em;
}
@media (max-width:500px) {
  .sect-h small {
    font-size: .8em;
  }
}
@media (min-width:901px) {
  .sect-h {
    font-size: 2rem;
  }
}


/* フッターナビ */
.footer-nav {
  display: none;
}
@media (max-width:900px) {
  .footer-nav {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0; left: 0;
    z-index: 88;
  }
  .footer-nav ul {
    display: flex;
  }
  .footer-nav ul li {
    flex: 1 1 30%;
    margin: 0 .2rem;
  }
  .footer-nav ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #00a0b4;
    border: 2px solid #fff;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: .7rem .2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
  }
  .footer-nav ul a img {
    margin: 0 .5rem 0 0;
  }
  .footer-nav ul li:first-child a {
    letter-spacing: .1rem;
  }
  .footer-nav ul li:last-child a {
    letter-spacing: -.1rem;
    background-color: #ea5161;
  }
}
@media (max-width:400px) {
  .footer-nav ul li {
    flex: auto;
  }
}


/* ヘッダー */
.header-nav {
  display: none;
}
.header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  background-color: #fff;
  z-index: 800;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}
@media (max-width:800px) {
  .header {
    padding: 0 .5rem;
    height: 60px;
    display: flex;
    align-items: center;
  }
  .hero {
    padding: 60px 0 0;
  }
  .header-logo {
    display: block;
    line-height: 0;
  }
  .header-logo img {
    height: 40px;
    width: auto;
  }
}
@media (min-width:801px) {
  .hero {
    padding: 85px 0 0;
  }    
  .header .container {
    height: 85px;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: space-between;
  }
  .header-nav {
    display: flex;
  }
  .header-nav-btn {
    min-width: 10em;
    text-align: center;
    padding: 1rem 2rem 1rem 4rem;
    margin: 0 0 0 1rem;
    border: 2px solid #54ABB6;
    color: #222222;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 88em;
    background-color: #F7F7F7;
    background-image: url("../img/icon-doc.svg");
    background-repeat: no-repeat;
    background-size: 2rem;
    background-position: center left 1rem;
    transition: .2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  }
  .header-nav-btn:last-of-type {
    border-color: #D25865;
    background-image: url("../img/icon-oc.svg");
  }

  .header-nav-btn:hover {
    transform: scale(1.1);
  }
}


/* ヒーロー */
.hero-slider {
  display: none;
}
@media (max-width:800px) {
  .hero-slider.slick-initialized {
    display: block;
  }
  .hero-h {
    width: 80%;
    max-width: 500px;
    margin: -2rem auto 1rem;
    position: relative;
    z-index: 10;
  }
}
@media (min-width:801px) {
  .hero-h {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/mv.jpg) no-repeat center;
    background-size: cover;
  }
  .hero-h div {
    display: block;
    margin: auto;
    width: 60%;
    max-width: 1020px;
  }
  .hero-h img {
    width: 100%;
  }
}


/* イントロ */
.intro {
  background-color: #F7F7F7;
  background-image: url("../img/bg-intro.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 1rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.intro p {
  margin: 0 0 1rem;
}
.intro p.strong {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 2rem 0 0;
  color: #54ABB6;
}
@media (max-width:1000px) {
  .intro {
    flex-direction: column-reverse;
    background-position: bottom left;
    background-size: 60%;
  }
  .intro-side {
    padding: 1rem 0 0;
  }
}
@media (min-width:1001px) {
  .intro {
    align-items: center;
    padding: 2rem 3rem;
    margin: -2rem 0 ;
  }
  .intro-body {
    padding: 0 0 0 3rem;
  }
  .intro p {
    font-size: 1.1rem;
  }
}


/* 「のりものに関するお仕事」に求められている力 */
.tabs-nav {
  width: 700px;
  max-width: 99%;
  margin: auto;
  display: flex;
}
.tabs-nav-btn {
  flex: 1;
  background-color: #F7F7F7;
  border: 2px solid #2DB497;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 1rem .5rem 1rem 3.5rem;
  margin: 0 .5rem;
  line-height: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2DB497;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.tabs-nav-btn.active {
  color: #fff!important;
  background-color: #2DB497;
}
.tabs-nav-btn::before {
  content: ""; display: block;
  width: 3rem; height: 100%;
  background-color: #2DB497;
  background-image: url("../img/tab-01.svg");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  position: absolute;
  top: 0; left: 0;
}
@media (max-width: 400px) {
  .tabs-nav-btn {
    margin: 0 .2rem;
  }
  .sect-jobs .container {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 601px) {
  .tabs-nav-btn {
    font-size: 1.4rem;
    padding: 1rem 1rem 1rem 4.5rem;
  }
  .tabs-nav-btn::before {
    width: 3.5rem; 
  }
}
.tabs-nav-btn:nth-of-type(2) {
  color: #2E62B2;
  border-color: #2E62B2;
}
.tabs-nav-btn.active:nth-of-type(2) {
  background-color: #2E62B2;
}
.tabs-nav-btn:nth-of-type(2):before {
  background-color: #2E62B2;
  background-image: url("../img/tab-02.svg");
}
.tabs-nav-btn:nth-of-type(3) {
  color: #784991;
  border-color: #784991;
}
.tabs-nav-btn.active:nth-of-type(3) {
  background-color: #784991;
}
.tabs-nav-btn:nth-of-type(3):before {
  background-color: #784991;
  background-image: url("../img/tab-03.svg");
}
@media (hover: hover) {
  .tabs-nav-btn:hover {
    background-color: #2DB497;
    color: #fff;
  }
  .tabs-nav-btn:nth-of-type(2):hover {
    background-color: #2E62B2;
    color: #fff;
  }
  .tabs-nav-btn:nth-of-type(3):hover {
    background-color: #784991;
    color: #fff;
  }
}

.tabs-content {
  background-color: #E6F7F4;
  border-radius: 10px;
  border-top: 0 solid #2DB497;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  display: block;
  opacity: 0;
  z-index: 1;
  height: 0;
  overflow: visible;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  pointer-events: none;
}
@media (max-width: 400px) {
  .tabs-content {
    border-radius: 0;
  }
}
.tabs-content.active {
  border-width: 10px;
  opacity: 1;
  z-index: 80;
  height: auto;
  pointer-events: initial;
}
.tab-h {
  text-align: center;
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  font-size: 1.3rem;
  letter-spacing: .1rem;
}
.tab-h strong {
  color: #2DB497;
  font-size: 1.3em;
}

.tabs-content.blue {
  border-color: #2E62B2;
  background-color: #DBE6F5;
}
.blue .tab-h strong {
  color: #2E62B2;
}

.tabs-content.purple {
  border-color: #784991;
  background-color: #ECE3F1;
}
.purple .tab-h strong {
  color: #784991;
}

@media (min-width: 601px) {
  .tab-h {
    margin: 0 0 1rem;
    padding: 2rem 0 0;
    font-size: 1.6em;
  }
  .tab-h strong {
    font-size: 1.4em;
  }
}


/* お仕事 */
.careers {
  width: 700px;
  max-width: 100%;
  margin: auto;
}
.careers-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: .5rem;
  line-height: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: .2s;
  font-size: 1.1rem;
}
.careers-item-h {
  line-height: 1;
  padding: .8rem 1rem;
  background: url("../img/plus-green.svg") no-repeat center right 1rem;
  background-size: 1.2rem;
  text-align: left;
}
.blue .careers-item-h {
  background-image: url("../img/plus-blue.svg");
}
.purple .careers-item-h {
  background-image: url("../img/plus-purple.svg");
}
@media (max-width: 600px) {
  .careers-item {
    display: flex;
    align-items: center;
  }
  .careers-item img {
    width: 35%;
  }
  .careers-item-h {
    flex: 1;
  }
}
@media (min-width: 601px) {
  .careers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .careers-item {
    flex: 0 1 45%;
  }
}
@media (hover: hover) {
  .careers-item:hover {
    transform: scale(1.03);>
  }
}

/* 求められている力 */
.tab-foot {
  padding: 2rem 1rem 2rem;
}
.tab-foot-h {
  text-align: center;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #97DECF;
  position: relative;
  line-height: 1;
  font-size: 1.2rem;
}

.blue .tab-foot-h {
  border-color: #A8C2EA;
}
.purple .tab-foot-h {
  border-color: #BB90D2;
}

.tab-foot-h strong {
  color: #2DB497;
  font-size: 1.2em;
}
.blue .tab-foot-h strong {
  color: #2E62B2;
}
.purple .tab-foot-h strong {
  color: #784991;
}

.tab-foot-h::after {
  content: ""; display: block;
  width: 0; height: 0;
  position: absolute;
  bottom: -15px; left: 0; right: 0;
  margin: auto;
  border: solid 15px #97DECF;
  border-bottom: none;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
.blue .tab-foot-h::after {
  border-top-color: #A8C2EA;
}
.purple .tab-foot-h::after {
  border-top-color: #B490C7;
}

@media (min-width:700px) {
  .tab-foot-h {
    margin: 0 0 3rem;
  }
  .tab-foot {
    padding: 3rem 2rem 2rem;
  }
}

.points-item {
  background-color: #fff;
  border: 1px solid #97DECF;
  border-radius: 5px;
  text-align: left;
}
.blue .points-item {
  border-color: #A8C2EA;
}
.purple .points-item {
  border-color: #BB90D2;
}

.points-h {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  padding: 1rem 0 0 25px;
  margin: 0 0 .5rem;
}
.points-h span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  position: absolute;
  top: -6px; left: -1.5rem;
  text-align: center;
  background-color: #2DB497;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 5px;
  padding: 5px;
  margin: 0 5px 0 0;
}
.blue .points-h span {
  background-color: #2E62B2;
}
.purple .points-h span {
  background-color: #784991;
}
.points-item {
  margin: 0 0 1.5rem;
  padding: 0 1rem 1rem;
}


@media (min-width:1000px) {
  .points {
    display: flex;
    margin: 0 -1rem;
  }
  .points-item {
    flex: 1;
    margin: 0 1rem;
    padding: 0 1rem 1rem;
  }
  
  .points-h {
    padding: 1rem 0 0 30px;
  }
  
  .points-h span {
    width: 45px; height: 45px;
    top: -7px; left: -25px;
  }
  
}


/* こんな人におすすめ！ */
.pickup {
  padding: 1rem .5rem;
  margin: 2rem 0;
  background-color: #FBF7DF;
  border: 1px solid #EADA25;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}
.pickup-h {
  width: fit-content;
  text-align: center;
  margin: 0 auto 1rem;
  padding: 0 2rem;
  position: relative;
  line-height: 1.5;
  font-size: 1.1rem;
}
.pickup-h::after,
.pickup-h::before {
  content: ""; display: block;
  width: 2rem; height: 100%;
  position: absolute;
  top: 0; left: 0;
  background: url("../img/deco.svg") no-repeat center;
  background-size: contain;
}
.pickup-h::after {
  left: auto; right: 0;
  transform: scaleX(-1);
}
.pickup-h strong {
  font-size: 1.2em;
  color: #D25865;
}
.pickup-h strong:nth-of-type(2) {
  font-size: 1.6em;
}
.pickup-body {
  text-align: left;
  width: fit-content;
  background-color: #fff;
  padding: 1rem .5rem;
  border-radius: 10px;
  margin: 0 auto 2rem;
  position: relative;
}

.pickup-body p {
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 3px 0 0 35px;
  background: url("../img/icon-clock.svg") no-repeat top left;
  background-size: 30px;
}
.pickup-body p strong {
  color: #54ABB6;
  font-size: 1.2em;
}
.pickup-foot {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
}
.pickup-foot strong {
  font-size: 1.3em;
  color: #D25865;
}

@media (max-width:800px) {
  .pickup::before {
    content: ""; display: block;
    width: 50px; height: 50px;
    position: absolute;
    top: 0; left: -5px;
    background: url("../img/pickup-red.png") no-repeat center;
    background-size: contain;
    transform: translateY(-30%);
    z-index: 10;
  }
}

@media (min-width:801px) {
  .pickup {
    padding: 2rem;
    margin: 2rem 0;
  }
  .pickup-foot strong {
    font-size: 1.4em;
  }
  .pickup-h::after, .pickup-h::before {   
    width: 4rem; height: 100%;
  }
  .pickup-h strong:nth-of-type(2) {
    font-size: 1.6em;
  }
  .pickup-h {
    padding: 0 4rem;
  }  
  .pickup-body {
    font-size: 1.1rem;
    padding: 2rem 4rem;
    text-align: center;
  }
  .pickup-body p {
    background-position: center left;
    width: fit-content;
    margin: 0 auto 1rem;
  }    
  .pickup-body::before {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
    left: 2rem;
    background: url("../img/pickup-red.png") no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
  }
  
  
}

.pickup-body p:nth-of-type(2) {
  background-image: url("../img/icon-dumbell.svg");
}
.pickup-body p:nth-of-type(3) {
  background-image: url("../img/icon-bling.svg");
}
.pickup-body p:last-of-type {
  margin: 0 auto;
  background-image: url("../img/icon-company.svg");
}

.pickup-body::after {
  content: ""; display: block;
  width: 0; height: 0;
  position: absolute;
  bottom: -15px; left: 0; right: 0;
  margin: auto;
  border: solid 15px #EADA25;
  border-bottom: none;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}


/* 学科紹介 */
.sect-courses {
  background-color: #F7F7F7;
  position: relative;
}

.sect-courses::before {
  display: block; content: "";
  width: 200px; height: 500px;
  background: url("../img/bg-course.png") no-repeat center right;
  background-size: contain;
  position: absolute;
  top: 0; right: 0;
  transform: translateY(-55%);
  z-index: 1;
}

.sect-courses .container {
  position: relative;
  z-index: 40;
}

.sect-courses .sect-h {
  padding: 0;
  margin: 0 0 3rem;
}
.sect-courses .sect-h::after {
  background-color: #784991;
}
.sect-h-sub {
  text-align: center;
  margin: 0 0 4rem;
  font-size: 1.1rem;
}
.sect-h-sub strong {
  font-size: 1.2em;
}
.sect-h-bubble {
  margin: auto;
  width: fit-content;
  padding: 5px 30px 5px 35px;
  background-color: #EADA25;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
  transform: translateY(-50%);
  font-size: 1.1rem;
}
.sect-h-bubble::after {
  content: ""; display: block;
  width: 0; height: 0;
  border: 10px solid transparent;
  border-top-color: #EADA25;
  border-bottom: none;
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  margin: auto;
}

.course {
  background-color: #fff;
  margin: 3rem 0;
  border-radius: 10px;
  border-top: 10px solid #2DB497;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  position: relative;
}
.course.blue {
  margin: 5rem 0 0;
  border-color: #2E62B2;
}
.course-h {
  font-size: 1.4rem;
  width: 13em;
  text-align: center;
  margin: auto;
  background-color: #2DB497;
  color: #fff;
  padding: 1rem 2rem;
  line-height: 1;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(-100%);
  border-radius: 10px 10px 0 0;
}


.course-list {
  padding: 1rem;
  border: 1px solid #97DECF;
  border-radius: 5px;
  line-height: 1;
}
.blue .course-list {
  border-color: #A8C2EA;
}
.course-list strong {
  font-size: 1.2em;
  color: #2DB497;
}

.course-list span {
  background-color: #F6EA64;
  font-size: .9rem;
  border-radius: 2rem;
  padding: 2px 5px;
  margin: 0 5px 0 0;
  line-height: 1;
  display: inline-block;
  vertical-align: bottom;
  font-weight: 600;
}
.course-list li {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
}
.course-list li:last-child {
  margin: 0;
}

.course-copy {
  line-height: 1.4;
  font-size: 1.6rem;
  color: #2DB497;
  margin: 0 0 1rem;
}
.course-body p {
  line-height: 1.6;
}

@media (max-width:800px) {
  .sect-courses {
    padding: 0 0 3rem;
    background: url("../img/bg-courses.png") no-repeat bottom left;
    background-color: #F7F7F7;
    background-size: 50%;
  }
  .course.blue {
    margin: 4rem 0 0;
  }
  .course-side {
    line-height: 0;
    margin: 0 0 1rem;
  }
  .course-list {
    line-height: 1;
    margin: -1rem 1rem 0;
    width: auto;
    z-index: 10;
    position: relative;
    background-color: #fff;
  }
  .course-body {
    padding: 0 1rem 1rem;
  }
}

@media (min-width:801px) {
  .course {
    padding: 2rem;
  }
  .sect-courses::before {
    display: block; content: "";
    width: 300px; height: 600px;    
    transform: translateY(-50%);
  }
  .course-content {
    display: flex;
  }
  .course-side {
    flex: 0 0 50%;
    padding: 0 2rem 0 0;
  }
  .course-side img {
    margin: 0 0 1rem;    
    border-radius: 5px;
  }
}

.blue .course-list strong {
  color: #2E62B2;
}
.course-list li::before {
  content: "●";
  color: #97DECF;
  display: inline-block;
  vertical-align: top;
  padding: 2px 0 0;
  font-size: 10px;
  line-height: 1;
  margin: 0 10px 0 0;
}
.blue .course-list li::before {
  color: #A8C2EA;
}
.blue .course-h {
  background-color: #2E62B2;
}
.blue .course-copy {
  color: #2E62B2;
}



/* リボン見出し */
.ribbon-h {
  color: #fff;
  background: url("../img/ribbon-01.svg") no-repeat center left;
  background-size: contain;
  padding: 8px;
  line-height: 1;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.blue .ribbon-h {
  background-image: url("../img/ribbon-02.svg");
}


/* CTA */
.sect-cta {
  background-color: #E7E7E7;
  padding: 0;
}
.cta {
  padding: 3rem 0;
  text-align: center;
}

.cta-bubble {
  background-color: #fff;
  color: #F0818D;
  font-weight: 600;
  display: inline-block;
  padding: .5rem .5rem .5rem .6rem;
  line-height: 1;
  border-radius: 99px;
  position: relative;
  transform: translateY(-10%);
  font-size: 1.1rem;
}
.cta-bubble::before {
  content: ""; display: block;
  width: 0; height: 0;
  position: absolute;
  bottom: -23px;
  left: 0; right: 0;
  margin: auto;
  border: 15px solid transparent;
  border-top-color: #fff;
}
.cta .btn {
  display: block;
  padding: 0;
  font-size: 1.5rem;
  margin: 0;
}
.cta .btn span {
  display: inline-block;
  padding: 1.5rem 1rem 1.5rem 4rem;
  background-image: url("../img/icon-doc-wh.svg") ;
  background-repeat: no-repeat;
  background-position: center left 0;
  background-size: 2.5rem;
}
.cta li:nth-child(2) .btn span {
  background-image: url("../img/icon-oc-wh.svg") ;
}
li:nth-child(2) .cta-bubble {
  color: #54ABB6;
}
.cta li:first-child .btn {
  letter-spacing: .1rem;
}
@media (max-width:800px) {
  .cta .btn {
    width: 90%;
    margin: 0 auto;
  }
  .cta li:last-child {
    margin: 2rem 0 0;
  }
}

@media (min-width:801px) {
  .cta {
    padding: 5rem 0;
    display: flex;
    text-align: center;
  }
  .cta li {
    flex: 1;
    padding: 0 1rem;
  }
  .cta .btn span {
    background-size: 3rem;
  }

}


/* コメント */
.sect-comments {
  padding: 2rem 0 3rem 0;
}
.sect-comments .sect-h {
  margin: 0 0 3rem;
}
.comment {
  background-color: #DBE6F5;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}
.comment-side img {
  margin: 0 0 1rem;
}
.comment-name {
  font-size: 1.1rem;
}
.comment-body {
  background-color: #fff;
  padding: .5rem;
  border-radius: 5px;
}
.comment-name strong {
  color: #2E62B2;
  font-size: 1.3em;
}
.comment-side img {
  border-radius: 5px;
}
.comment-side span {
  display: inline-block;
  background-color: #fffaae;
  border-radius: 30px;
  padding: 5px 10px;
  line-height: 1;
  margin: 0 10px 0 0;
  font-size: .9em;
  font-weight: bold;
}
.sect-comments .slick-track {
  padding: 1rem 0 ;
}
@media (max-width:800px) {
  .comment-wrapper{
    padding: 0 .5rem ;
    overflow: visible;
  }
  .comment-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .comment-side {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
  }
  .comment-side img {
    width: 9em;
    margin: 0 1rem 0 0;
  }
}
@media (min-width:801px) {
  .sect-comments {
    padding: 3rem 0 7rem;
  }
  .comment-wrapper {
    padding: 0 1rem;
    overflow: visible;
  }
  .comment {
    padding: 1rem;
  }
  .comment-content {
    display: flex;
  } 
  .comment-body {
    flex: 0 0 60%;
    margin: 0 1rem 0 0;
    padding: 1rem;

  }
}
@media (min-width:1101px) {
  .comment {
    padding: 2rem;
  }
}

.comment.green {
  background-color: #D7F0EA;
}
.comment-body strong {
  color: #2E62B2;
}
.green .comment-body strong,
.green .comment-name strong {
  color: #2DB497;
}


/* SLICK SLIDER: DOTS */
.slick-dots {
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding: 1rem 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 .5rem;
}
.slick-dots button {
  font-size: 0;
  line-height: 0;
  background-color: #C0C0C0;
  border-radius: 10px;
  width: 10px; height: 10px;
}
.slick-dots .slick-active button {
  background-color: #EADA25;
}
@media (max-width:800px) {
  .slick-dots {
    margin: 1.5rem 0 0;
    padding: .5rem 0 .7rem;
  }
}


/* SLICK SLIDER: ARROWS */
.slick-arrow {
  font-size: 0; line-height: 0;
  width: 30px; height: 30px;
  background-color: #F2F2F2;
  background-image: url("../img/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  margin: auto;
  z-index: 40;
  transition: .2s;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width:800px) {
  .comments-slider {
    /* padding: 0 0 2rem; */
  }
  .slick-arrow {
    left: 0; right: 0;
  }
  .slick-prev {
    transform: translateX(-300%);
  }
  .slick-next {
    transform: rotate(180deg) translateX(-300%);
  }
}
@media (min-width:801px) {
  .slick-arrow {
    top: 0;
  }
  .slick-prev {
    left: 18%;
  }
  .slick-next {
    right: 18%;
  }
}
@media (min-width:1800px) {
  .slick-prev {
    left: 28.6%;
  }
  .slick-next {
    right: 28.6%;
  }
}
@media (hover: hover) {
  .slick-arrow:hover {
    opacity: .9;
  }
}


/* OPEN CAMPUS */
.sect-oc {
  background-color: #F7F7F7;
  padding: 3rem 0;
}
.sect-info-h,
.sect-oc-h {
  font-size: 2.2rem;
  color: #D25865;
  margin: 0 0 2rem;
  padding: 0;
}
.sect-info-h::after,
.sect-oc-h::after {
  display: none;
}
.sect-oc-sub {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  margin: 0 0 1rem;
}
.sect-oc-sub strong {
  font-size: 1.2em;
  display: inline-block;
  position: relative;
  line-height: 1;
  background: linear-gradient(transparent 50%, #F6EA64 50%);
}
.oc-info {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  overflow: hidden;
}
.oc-info-body {
  text-align: center;
}
.oc-bubble {
  width: fit-content;
  padding: 5px 30px 5px 35px;
  background-color: #F6EA64;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
  font-size: 1.2rem;
  margin: 1rem auto 0;
}
.oc-bubble::after {
  content: ""; display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #F6EA64;
  border-bottom: none;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
.oc-types {
  display: flex;
  justify-content: center;
  margin: 1rem -.5rem;
}
.oc-types-item {
  flex: 1;
  background-color: #F7F7F7;
  border-radius: 5px;
  border: 1px solid #F0818D;
  padding: 1rem;
  text-align: center;
  margin: 0 .5rem;
}
.oc-types-item p {
  font-weight: 600;
  color: #D25865;
  line-height: 1;
  margin: 0 0 .5rem;
}
.oc-type-h {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}
.oc-info .btn {
  display: block;
}
.oc-info-side {
  line-height: 0;
}
@media (max-width:800px) {
  .oc-info-body {
    padding: 1.5rem 1rem 1rem;
    position: relative;
  }
  .oc-bubble {
    position: absolute;
    margin: auto;
    top: 0; right: 0; left: 0;
    transform: translateY(-50%);
  }
  .oc-types-item {
    padding: 1rem 0;
  }
}
@media (min-width:801px) {
  .sect-oc {
    padding: 5rem 0;
    background-image: url("../img/bg-oc.png");
    background-position: top left;
    background-repeat: no-repeat;
  }
  .oc-info {
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .oc-info-side {
    flex: 0 0 45%;
    overflow: hidden;
  }
  .oc-info-side img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .oc-info-body {
    flex: 1;
    text-align: center;
    padding: 0 2rem 1rem;
  }
  .oc-types {
    display: flex;
    justify-content: center;
    margin: 1rem -.5rem 2rem;
  }
}


/* 入試INFORMATION */
.sect-info {
  background: url("../img/bg-info.png") top right no-repeat;
  padding: 3rem 0;
}
.sect-info-h {
  color: #54ABB6;
  padding: 0;
  margin: 0 0 1rem;
}
.entrances {
  display: flex;
  margin: 2rem -.5rem 2rem;
}
.entrances li {
  padding: 1rem 0;
  flex: 1;
  text-align: center;
  background-color: #F7F7F7;
  border-radius: 5px;
  border: 1px solid #97DECF;
  color: #2DB497;
  margin: 0 .5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.entrances li:nth-child(2) {
  color: #2E62B2;
  border-color: #86A6D8;
}
.entrances li:nth-child(3) {
  color: #784991;
  border-color: #B490C7;
}
.info-side img {
  border-radius: 10px;
}
.info-body .btn {
  display: block;
}
@media (max-width:800px) {
  .sect-info {
    background-size: 50%;
  }
  .info {
    display: flex;
    flex-direction: column-reverse;
  }
  .info-body {
    padding: 1rem 0;
    text-align: center;
  }
}
@media (min-width:801px) {
  .sect-info {
    padding: 5rem 0;
  }
  .info {
    display: flex;
  }
  .info-body {
    flex: 1 1 45%;
    padding: 0 3rem 0 0;
  }
  .info-side {
    flex: 1 1 50%;
    line-height: 0;
  }
  .info-body p {
    font-size: 1.1rem;
  }
  .sect-info-h {
    text-align: left;
  }
}


/* AOプレスクール */
.preschool {
  background-color: #F7F7F7;
  margin: 2rem 0 0;
  padding: 1rem;  
  border-radius: 10px;  
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}
.preschool-h {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 .5rem -.3rem;
  padding: 1rem 0 1rem 6rem;
  background: url("../img/pickup-yellow.png") no-repeat center left;
  background-size: 5.5rem;
}
.preschool-h span.strong {
  font-size: 1.2em;
}
.preschool-h strong {
  font-size: 1.3em;
  color: #D25865;
}
@media (max-width:800px) {
  .preschool-side {
    margin: 1rem 0 0;
  }
}
@media (min-width:801px) {
  .preschool {
    display: flex;
    align-items: center;
    padding: 2rem;    
    margin: 4rem 0 0;
  }
  .preschool-body {
    padding: 0 3rem 0 0;
    flex: 0 0 37rem;
  }
  .preschool-side {
    flex: 1;
  }
  .preschool-h {
    background-size: 5rem;
  }
}


/* フッター */
.footer {
  background-color: #2E5176;
  color: #fff;
  padding: 2rem 0;
}
.tel-link {
  color: #fff;
}
@media (max-width:800px) {
  .footer {
    padding: 2rem 0 4rem;
  }
  .footer-sns {
    margin: 2rem 0 0;
  }
  .footer-body {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
@media (min-width:801px) {
  .footer-content {
    display: flex;
    justify-content: space-between;
  }
  .footer-body {
    flex: 0 0 40%;
  }
  .tel-link {
    pointer-events: none;
  }
}


/* SNS */
.sns-links-h {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  text-align: center;
}
.sns-links {
  background-color: #fff;
  border-radius: 90px;
  padding: 1rem;
  line-height: 0;
  font-size: 0;
  margin: 0 0 2rem;
}
.sns-links li {
  display: inline-block;
}
.sns-links li a {
  display: block;
  margin: 0 5px;
  padding: 0 .4rem;
}
@media (max-width:800px) {
  .sns-links {
    display: flex;
  }
  .sns-links img {
    width: 100%; height: auto;
  }
}


/* コピーライト */
.copyright {
  border-top: 1px solid #fff;
  text-align: center;
  font-weight: 500;
  font-size: .9rem;
  padding: 1rem 0;
  margin: 1rem 0 0;
  opacity: .8;
}


/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 4vh;
  right: 0;
  left: 0;
  margin: auto;
  width: 700px;
  max-width: 96%;
  height: fit-content;
  background-color: #D7F0EA;
  padding: 1rem;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .6);
}
.modal img {
  border-radius: 5px;
  max-width: 100%;
}

.modal.blue {
  background-color: #DBE6F5;
}
.modal.purple {
  background-color: #ECE3F1;
}

body.modal-open {
  overflow: hidden;
}

.modal_close {
  display: block;
  width: 13rem;
  margin: 1rem auto 2rem;
  background-color: #3D3D3D;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 99px;
  padding: 1rem;
  line-height: 1;
  font-size: 1.1rem;
  font-weight: 500;
  transform: translateY(50%);
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.modal_bg {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

@media (max-width:800px) {
  .modal {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
  }
  .modal-head {
    display: flex;
    flex-direction: column-reverse;
  }
  
}
@media (min-width:801px) {
  .modal {
    top: 0; bottom: 0;
    right: 0; left: 0;
    padding: 2rem;
  }
  .modal_close {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin: auto;
  }
}

/* モーダル 内容 */
.modal-h {
  text-align: center;
  background-color: #2DB497;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: .7rem 1rem;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.blue .modal-h {
  background-color: #2E62B2;
}
.purple .modal-h {
  background-color: #784991;
}
.modal-head {
  margin: 2.5rem 0 0;
}
@media (min-width:801px) {
  .modal-head {
    margin: 0 0 2rem;
    display: flex;
  }
  .modal-h {
    padding: 1rem;
    transform: translateY(-100%);
  }
  .modal-body {
    flex: 0 0 50%;
    margin: 0 2rem 0 0;
  }
  .modal-head img {
    height: auto;
  }
}


/* 卒業生の声 */
.senior-h {
  text-align: center;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #97DECF;
  position: relative;
  line-height: 1;
  font-size: 1.2rem;
}
.blue .senior-h {
  border-color: #86A6D8;
}
.senior-h::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 15px #97DECF;
  border-bottom: none;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;  
}
.blue .senior-h::after {
  border-top-color: #86A6D8;
}
.senior-name {
  font-size: 1.2rem;
}
.senior-name strong {
  font-size: 1.2em;
  color: #2DB497;
}
.senior-body-h {
  font-size: 1.1rem;
  color: #2DB497;
}
.blue .senior-name strong {
  color: #2E62B2;
}
.blue .senior-body-h {
  color: #2E62B2;
}
.senior {
  margin: 0 0 1rem;
}

@media (max-width:800px) {
  .senior-side {
    display: flex;
    margin: 0 0 1rem;
    align-items: center;
  }
  .senior-side-image {
    flex: 0 0 35%;
    margin: 0 1rem 0 0;
  }
  .senior-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .senior-h {
    margin: 2rem 0 1rem;
  }
}

@media (min-width:801px) {
  .senior {
    display: flex;
  }
  .senior-side {
    flex: 0 0 42%;
    padding: 0 2rem 0 0;
  }
  .senior-side img {
    height: auto;
  }
}





/* 改行 */
.br {
  display: inline-block;
}