@charset "UTF-8";

/* ****************************************
common
**************************************** */
* {
  box-sizing: border-box;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", ヒラギノ角ゴシック, Meiryo, sans-serif;
}
body.modal {
  position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
.mincho {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
img {
  vertical-align: bottom;
}
.inner {
  max-width: 1030px;
  margin: auto;
}
.line {
  position: fixed;
  right: 0;
  top: 0;
  width: 10%;
  height: 100vh;
  background: url(/lp/konanscience/img/line.png);
  background-repeat: repeat-y;
  background-position: top 0 right 0;
}
.black {
  background-color: #000;
  overflow: hidden;
}

/* 追従ボタン */
.btn__fixed img {
  position: fixed;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  bottom: 5%;
  right: 0;
  z-index: 99;
  width: calc(146vw / 24);
}
.subpage .btn__fixed img {
  bottom: 20%;
}
.btn__fixed .pagetop {
  font-size: 11px;
  position: fixed;
  bottom: 3%;
  right: 50px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
  z-index: 99;
}
.btn__fixed .pagetop .arrow1 {
  width: 20px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 90px;
}
.btn__fixed .pagetop .arrow2 {
  width: 1px;
  height: 8px;
  background: #000;
  position: absolute;
  top: calc(50% + 1px);
  right: 109px;
  transform: rotate(-55deg);
  transform-origin: top left;
}
.btn__fixed__bottom a {
  position: fixed;
  bottom: 1px;
  left: 50%;
  display: block;
  width: 45%;
  height: 64px;
  max-width: 388px;
  background-color: #c71126;
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 64px;
  letter-spacing: 0.16em;
  border-radius: 20px 20px 0 0;
  z-index: 100;
}
.btn__fixed__bottom .btn__fixed-request {
  transform: translateX(-165%);
}
.btn__fixed__bottom .btn__fixed-course {
  transform: translateX(-60%);
}
.btn__fixed__bottom .btn__fixed-evo {
  transform: translateX(45%);
}

.btn__fixed__pagetop {
  position: fixed;
  bottom: 7%;
  right: 2%;
  z-index: 1;
}
.btn__fixed__pagetop img {
  width: 20px;
  height: 152px;
}

/* ボタンのアニメーション */
.btn-animation {
  position: relative;
  margin:0 10px;
  width: fit-content;
  overflow: hidden;
  margin: 0 auto;
  max-width: 90%;
}
.btn-animation::before,
.btn-animation::after,
.btn-animationlink::before,
.btn-animationlink::after {
  content:"";
  position: absolute;
  background: #fff;
  transition: all 0.2s linear;
}
.btn-animation::before,
.btn-animation::after {
  width: 0;
  height:2px;
  animation: widthAnim 0.3s ease-in-out 0s forwards;
}
.btn-animation::before {
  right: 0;
  bottom: 0;
  animation-delay: 0.85s;
}
.btn-animation::after {
  left: 0;
  top: 0;
  animation-delay: 0.3s;
}
.btn-animationlink {
  display: block;
  padding: 10px;
}
.btn-animationlink::before,
.btn-animationlink::after {
  width: 2px;
  height:0;
  animation: heightAnim 0.3s ease-in-out 0s forwards;
}
.btn-animationlink::before {
  left: 0;
  bottom: 0;
  animation-delay: 1.2s;
}
.btn-animationlink::after {
  right: 0;
  top: 0;
  animation-delay: 0.6s;
}
@keyframes widthAnim {
  0% {width: 0}
  100% {width: 100%;}
}
@keyframes heightAnim {
  0% {height:0;}
  100% {height:100%;}
}
.btn-fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.is-btn-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1.4s, visibility 1.4s, transform 1.4s ease-out;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.for-sp {
  display: none;
}
.for-sp-portrait {
  display: none;
}
.top-sec__ttl {
  margin-bottom: 40px;
}
.top-sec__ttlimg{
  width: 410px;
  height: 132px;
}
.top-sec__lead {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}

@media screen and (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 1000px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: inline;
  }
  .inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 2000px) {
  .btn__fixed__bottom a {
    height: 56px;
    font-size: 24px;
    line-height: 56px;
  }
}
@media screen and (max-width: 1400px) {
  .btn__fixed__pagetop img {
    width: 15px;
    height: 114px;
  }
}
@media screen and (max-width: 767px) {
  .line.line-sp {
    background: url(/lp/konanscience/img/line-sp.png);
    background-repeat: repeat-y;
    background-position: top 0 right 0;
  }
  .for-sp {
    display: inline;
  }
  .btn__fixed img {
    width: calc(78vw / 3.75);
  }
  .subpage .btn__fixed img {
    top: calc(400vh / 6.67);
  }
  .btn__fixed .pagetop {
    top: calc(580vh / 6.67);
    bottom: auto;
  }
  .top-sec__ttl {
    margin-bottom: 20px;
  }
  .top-sec__ttlimg {
    width: 100%;
    max-width: 410px;
    height: auto;
  }
  .btn__fixed__bottom a {
    height: 32px;
    font-size: 15px;
    line-height: 32px;
    border-radius: 8px 8px 0 0;
  }
  .top-sec__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .btn__fixed__pagetop {
    right: 4%;
  }
  .btn__fixed__pagetop img {
    width: 8px;
    height: 75px;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .for-sp-portrait {
    display: inline;
  }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
  .btn__fixed img {
    width: calc(78vw / 6.67);
  }
}

/* ****************************************
header
**************************************** */
.header {
  background-color: #fff;
  width: 100%;
  height: 105px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__nav {
  width: 100%;
  position: relative;
}
.header__inner {
  max-width: 1300px;
  margin: auto;
}
.header__logo {
  display: flex;
  align-items: center;
  padding: 28px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.header__logo-img {
  width: 192px;
  height: auto;
}
.header__logo-txt {
  font-size: 20px;
  letter-spacing: 0.11em;
  margin-left: 30px;
}
.header__nav-right {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.header__nav-btn {
  position: relative;
  cursor: pointer;
  width: 53px;
  height: 50px;
}
.header__nav-btn span {
  display: inline-block;
  position: absolute;
  width: 53px;
  height: 2px;
  background-color: #000;
  transition: 0.4s;
}
.header__nav-btn span:nth-of-type(1) {
  top: 0;
}
.header__nav-btn span:nth-of-type(2) {
  top: 50%;
}
.header__nav-btn span:nth-of-type(3) {
  bottom: 0;
}
.header__nav-btn.is-active span {
  background-color: #fff;
}
.header__nav-btn.is-active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) rotate(-45deg);
}
.header__nav-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header__nav-btn.is-active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
}
.header__menu {
  position: fixed;
  top: 0;
  right: -110%;
  width: 100%;
  max-width: 610px;
  height: 100vh;
  background: #000;
  padding: 8em 6em;
  transition: all 0.5s;
}
.header__menu.is-active {
  right: 0;
}
.header__menu ul {
  margin-bottom: 55px;
}
.header__menu-list span {
  display: inline-block;
  font-size: 32px;
  letter-spacing: 0.1em;
  padding: 10px;
  margin-top: 50px;
  width: 100%;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.header__menu-list:first-of-type span {
  margin-top: 0;
}
.header__menu-child {
  font-size: 25px;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 30px;
  padding-left: 3rem;
  position: relative;
}
.header__menu-child::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 74%;
  width: 18px;
  height: 4px;
  background-color: #fff;
}

.header__menu-link {
  display: inline-block;
  width: 100%;
  position: relative;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border: 10px solid transparent;
  border-left: 18px solid #D01126;
}

.header__menu-btn img {
  width: 100%;
  margin-bottom: 35px;
}

@media screen and (max-width: 2000px) {
  .header {
    height: 90px;
  }
  .header__logo-img {
    width: 170px;
  }
  .header__logo-txt {
    font-size: 16px;
  }
  .header__nav-btn {
    width: 50px;
    height: 39px;
  }
  .header__menu {
    max-width: 550px;
    padding: 4em 8em;
  }
  .header__menu ul {
    margin-bottom: 30px;
  }
  .header__menu-list span {
    font-size: 18px;
    margin-top: 20px;
  }
  .header__menu-child {
    font-size: 16px;
    padding-top: 20px;
  }
  .header__menu-child::before {
    height: 2px;
  }
  .header__menu-btn img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 47px;
  }
  .header__logo {
    padding: 12px;
  }
  .header__logo-img {
    width: 95px;
  }
  .header__logo-txt {
    font-size: 10px;
    margin-left: 10px;
  }
  .header__nav-right {
    right: 5%;
  }
  .header__nav-btn {
    width: 20px;
    height: 20px;
  }
  .header__nav-btn span {
    width: 20px;
  }
  .header__nav-btn span:nth-of-type(2) {
    top: 9px;
  }
  .header__menu {
    padding: 4em 3.5em;
  }
  .header__menu-list span {
    padding: 5px 0;
    letter-spacing: 0.2em;
  }
  .header__menu-link::after {
    border: 6px solid transparent;
    border-left: 10px solid #D01126;
  }
  .header__menu-child::before {
    width: 10px;
    left: 8%;
  }
}

/* ****************************************
footer
**************************************** */
.footer {
  padding: 100px 0 450px;
  background: url(/lp/konanscience/img/footer_bg01.jpg), #000;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: bottom left, center center;
}

.footer__inner {
  max-width: 800px;
  margin: auto;
}

.news__ttl {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.footer__links {
  margin-bottom: 100px;
}

.footer__links-btn {
  display: block;
  width: 100%;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.8em 1em;
  margin-bottom: 30px;
  background-color: #000;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.footer__links-btn span {
  position: relative;
  z-index: 3;
  color: #fff;
  transition: 0.5s;
}
.footer__links-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer__links-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15%;
  left: 10%;
  height: 57px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 3;
  transition: 0.4s;
}
.footer__links-btn.btn-canpas::after {
  background-image: url(/lp/konanscience/img/icon_canpas.svg);
  width: 77px;
}
.footer__links-btn.btn-exam::after {
  background-image: url(/lp/konanscience/img/icon_exam.svg);
  width: 58px;
}
.footer__links-btn.btn-document::after {
  background-image: url(/lp/konanscience/img/icon_document.svg);
  width: 52px;
}

@media (hover: hover) {
  .footer__links-btn:hover span {
    color: #D01126;
  }
  .footer__links-btn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .footer__links-btn:hover.btn-canpas::after {
    background: url(/lp/konanscience/img/icon_canpas_red.svg);
  }
  .footer__links-btn:hover.btn-exam::after {
    background: url(/lp/konanscience/img/icon_exam_red.svg);
  }
  .footer__links-btn:hover.btn-document::after {
    background: url(/lp/konanscience/img/icon_document_red.svg);
  }
}
.footer__links-bnr img {
  width: 100%;
  margin-top: 20px;
}

.footer__canpas {
  text-align: center;
}

.footer__canpas-ttl {
  font-size: 30px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 20px;
}

.footer__canpas-en {
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 60px;
}

.footer__canpas-name {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 30px;
}

.footer__canpas-link {
  display: flex;
  justify-content: center;
}

.footer__canpas-faculty {
  font-size: 34px;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.footer__canpas-faculty.faculty-science {
  color: #84C0C7;
  border-bottom: 2px solid #84C0C7;
}
.footer__canpas-faculty.faculty-ii {
  color: #8878B2;
  border-bottom: 2px solid #8878B2;
}
.footer__canpas-faculty.faculty-first {
  color: #5F9BD6;
  border-bottom: 2px solid #5F9BD6;
}
.footer__canpas-faculty:nth-of-type(2n) {
  margin-left: 50px;
}

.footer-logo {
  width: 100%;
  padding: 40px 0 120px;
  text-align: center;
}
.footer-logo .footer-logo-link {
  display: block;
}
.footer-logo .footer-logo-img {
  width: 50%;
  min-width: 150px;
  max-width: calc(360vw / 24);
  max-height: 68px;
  margin-bottom: 25px;
}
.footer-logo .footer-copy {
  color: #727171;
}

@media screen and (max-width: 2000px) {
  .footer {
    padding: 100px 0 350px;
  }
}
@media screen and (max-width: 1000px) {
  .footer__inner {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 200px;
    background: url(/lp/konanscience/img/footer_bg01-sp.png), #000;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%;
    background-position: bottom left, center center;
  }
  .footer__links-btn {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .footer__links-btn::after {
    height: 30px;
    top: 20%;
  }
  .footer__canpas-ttl {
    font-size: 18px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }
  .footer__canpas-en {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .footer__canpas-name {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer__canpas-faculty {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 25px;
  }
  .footer-logo {
    padding: 30px 0 50px;
  }
  .footer-logo .footer-logo-img {
    margin-bottom: 10px;
  }
}

/* ****************************************
kv
**************************************** */
.kv {
  width: 100%;
  height: calc(1280vw / 24);
  background: url(/lp/konanscience/img/kv_bg02.png);
  background-position: right 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  text-align: center;
}

.kv__bg {
  background: url(/lp/konanscience/img/kv_bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1500px;
  margin: auto;
  padding: 240px 0;
}

.kv__img {
  display: block;
  margin: auto;
  max-width: 840px;
}

.kv__subttl {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 80px;
}

/* kv レスポンシブ
================================== */
@media screen and (max-width: 2000px) {
  .kv {
    height: calc(880vw / 20);
    min-height: 760px;
  }
  .kv__bg {
    padding: 180px 0;
  }
  .kv__img {
    width: 70%;
    max-width: 680px;
  }
  .kv__subttl {
    font-size: 24px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1410px) {
  .kv__bg {
    padding: 160px 0;
  }
  .kv__img {
    max-width: 580px;
  }
  .kv__subttl {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .kv {
    height: calc(500vw / 7.68);
    min-height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    min-height: auto;
    height: 60vh;
    background-image: url(/lp/konanscience/img/kv_bg02_sp.png);
    background-position: right 0 top 50px;
  }
  .kv__bg {
    padding: 120px 0 80px;
    background-image: url(/lp/konanscience/img/kv_bg01_sp.png);
  }
  .kv__img {
    width: 95%;
  }
  .kv__subttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) and (min-width: 440px) {
  .kv {
    height: 50vh;
  }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
  .kv {
    height: 100vh;
  }
  .kv__img {
    width: 65%;
  }
}

/* ****************************************
about
**************************************** */
.about {
  background: linear-gradient(rgba(0,114,167,0) 0,rgba(0,128,167,0.3) 53%,rgba(0,0,0,0) 100%);
  margin-top: calc(-400vw / 24);
  /* height: 840px; */
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about__bg {
  padding: 120px 0;
  background: url(/lp/konanscience/img/about_bg01.png),url(/lp/konanscience/img/science01_bg01.png);
  background-repeat: no-repeat;
  background-position: top center,bottom -10% left;
  background-size: 60%, 60%;
  /* max-width: 1500px; */
  margin: auto;
}

.about__txtarea {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.about__ttl {
  font-size: 34px;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
}

.about__txt {
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-mission-link {
  margin-bottom: 40px;
}

@media screen and (max-width: 2000px) {
  .about {
    margin-top: calc(-200vw / 20);
    /* height: 720px; */
  }
  .about__txt {
    font-size: 18px;
  }
  .about__bg {
    background-size: 70%,80%;
  }
}
@media screen and (max-width: 1410px) {
  .about {
    margin-top: calc(-220vw / 14);
    /* height: 660px; */
  }
  .about__bg {
    background-position: top center,bottom left;
    background-size: 100%,100%;
  }
}
@media screen and (max-width: 1000px) {
  .about {
    margin-top: 0;
    padding-top: 0;
  }
  .about__bg {
    background: url(/lp/konanscience/img/about_bg01.png),url(/lp/konanscience/img/science01_bg01_sp.png);
    background-repeat: no-repeat;
    background-position: top center,bottom left;
    background-size: 100%, 100%;
  }
}
@media screen and (max-width: 767px) {
  .about {
    background: linear-gradient(rgba(0,114,167,0) 0,rgba(0,128,167,0.4) 44%,rgba(0,0,0,0) 100%);
    margin-top: calc(-50vw / 3.75);
    /* height: auto; */
  }
  .about__bg {
    padding: 30px 0;
  }
  .about__ttl {
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.13em;
    padding-left: 0.8em;
    margin-bottom: 40px;
  }
  .about__txt {
    font-size: 14px;
  }
  .about__txtarea {
    margin-bottom: 30px;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .about__bg {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 767px) and (min-width: 440px) {
  .about {
    margin-top: 50px;
  }
}

/* ****************************************
KONAN SCIENCE
**************************************** */
.science__box-ttl {
  position: relative;
  text-align: center;
}

.science__box {
  padding: 40px 90px 20px;
  color: #fff;
}

.science__ttlimg {
  width: 414px;
  height: 153px;
}

.fade_image_effect {
  position: relative;
  width: 0;
  height: 153px;
	overflow: hidden;
  margin: 0 auto 20px;
  transition: 1s ease-in-out;
}

.fade_image_effect.is-imgshow {
  width: 414px;
}

.science__lead {
  color: #fff;
  font-size: 32px;
  line-height: 1.78;
  letter-spacing: 0.15em;
  text-align: center;
  padding-bottom: 30px;
}

.science__description {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.science__description .font-l {
  font-size: 30px;
  line-height: 1;
}

.science__ttl {
  padding: 60px 0;
  background-image: url(/lp/konanscience/img/science_bg_title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-bottom: 1px solid #808080;
}
.science__ttl-img {
  display: block;
  width: 400px;
  height: auto;
  max-width: 65%;
  margin: auto;
}
.science__ttl-arrow {
  display: block;
  width: 66px;
  height: 52px;
  max-width: 12%;
  margin: auto;
}
.science__accordion {
  display: none;
}
.science__accordion__trigger {
  position: relative;
}
.science__accordion__icon {
  position: absolute;
  right: 15%;
  top: 50%;
}
.accordion__icon {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 2em;
  height: 2em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  cursor: pointer;
}
.accordion__icon > span {
  width: 52%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.accordion__icon > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: .3s;
}
.accordion__icon.is-open > span::before {
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .science__accordion__icon {
    right: 10%;
  }
  .accordion__icon {
    width: 1.5em;
    height: 1.5em;
  }
  .science__ttl {
    padding: 40px 0 20px;
    background-size: 140%;
  }
}


/* ==================================
.science01　KONAN SCIENCE
================================== */
.science01,.science02,.science03 {
  padding-top: 60px;
  border-bottom: 1px solid #808080;
}
.science01 .science__accordion__trigger {
  background: url(/lp/konanscience/img/science01_bg05.png);
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 15%;
}
.science01 .science__accordion {
  margin-top: -50px;
  padding-top: 80px;
  padding-bottom: 30em;
  background: url(/lp/konanscience/img/science01_bg02.png), 
              url(/lp/konanscience/img/science01_bg03.png), 
              url(/lp/konanscience/img/science01_bg04.png);
  background-repeat: no-repeat;
  background-position: right -30px top -80px, 
                      left 400px bottom 260px, 
                      left 0 bottom -80px;
  background-size: 45%, 20%, 100%;
}
.science01 .science__description {
  margin-bottom: 80px;
}

.science01__contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.science01__contents_ttl {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 60px;
}

.science01__btn {
  max-width: 100%;
}

.science01__item {
  width: 48%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 60px;
}
.science01__item:nth-of-type(even) {
  margin-left: 20px;
}

.science01__item-ttl {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.science01__item-note {
  display: inline-block;
  font-size: 18px;
  margin-top: 1rem;
}

.science01__item:nth-of-type(2) .science01__item-note {
  letter-spacing: -0.03em;
}

.science01__item-img {
  width: auto;
}

/* science01 レスポンシブ
================================== */
@media screen and (max-width: 2000px) {
  .science01 .science__accordion {
    padding-bottom: 20em;
  }
  .science__lead {
    font-size: 28px;
    line-height: 1.7;
  }
  .science__description {
    font-size: 18px;
  }
  .science__description .font-l {
    font-size: 27px;
  }
  .science01__item-ttl {
    font-size: 16px;
  }
  .science01__item-note {
    font-size: 14px;
  }
  .science01__item {
    width: 45%;
  }
}
@media screen and (max-width: 1400px) {
  .science01 .science__accordion {
    padding-bottom: 15em;
    background-position: right -30px top -50px, left 200px bottom 150px, left 0 bottom -60px;
    background-size: 45%, 25%, 100%;
  }
}
@media screen and (max-width: 1000px) {
  .science01__item {
    width: 80%;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .science01__item:nth-of-type(even) {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .science01,.science02,.science03 {
    padding-top: 30px;
  }
  .science__ttlimg {
    width: 230px;
    height: 85px;
  }
  .fade_image_effect {
    height: 85px;
  }
  .fade_image_effect.is-imgshow {
    width: 230px;
  }
  .science__box {
    padding: 0 24px 30px;
  }
  .science__lead {
    font-size: 18px;
    letter-spacing: 0.06em;
  }
  .science01 .science__description {
    margin-bottom: 100px;
  }
  .science__description {
    font-size: 14px;
  }
  .science__description .font-l {
    font-size: 21px;
  }
  .science01__item {
    width: 100%;
  }
  .science01__item-ttl {
    font-size: 14px;
  }
  .science01__item-note {
    font-size: 12px;
  }
  .science01__item:nth-of-type(2) .science01__item-note {
    letter-spacing: -0.05em;
  }
  .science01__item-img {
    max-height: 104px;
  }
  .science01__item:last-of-type .science01__item-img {
    max-height: 175px;
  }
  .science01__contents_ttl {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
}
/* デバイス　縦長 */
@media screen and (orientation: portrait) and (max-width: 767px) {
  .science01 .science__accordion__trigger {
    background: none;
  }
  .science01 .science__lead {
    background-image: url(/lp/konanscience/img/science01_bg05.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 25%;
  }
  .science01 .science__accordion {
    padding-top: 40px;
    padding-bottom: 12em;
    background-image: url(/lp/konanscience/img/science01_bg02.png), 
                      url(/lp/konanscience/img/science01_bg03.png), 
                      url(/lp/konanscience/img/science01_bg04_sp.png);
    background-position: right -20px top 130px, left 0 bottom 80px, left 0 bottom -20px;
    background-size: 115%, 55%, 100%;
  }
}
/* デバイス　横長 */
@media screen and (orientation: landscape) and (max-width: 767px) {
  .science__box {
    padding: 0 80px 20px;
  }
  .science__box-ttl {
    height: 80px;
  }
  .science__ttlimg {
    top: -55%;
  }
}
/* ==================================
.science02　KONAN SCIENCE
================================== */
.science02 {
  background: url(/lp/konanscience/img/science02_bg04.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 30%;
}
.science02 .science__accordion {
  padding-bottom: 15em;
  background-image: url(/lp/konanscience/img/science02_bg01.png), 
                    url(/lp/konanscience/img/science02_bg02.png),
                    url(/lp/konanscience/img/science02_bg03.png),
                    url(/lp/konanscience/img/science02_bg05.png);
  background-repeat: no-repeat;
  background-size: 12%, 33%, 22%, 30%;
  background-position: bottom 0 right 30%, 
                      bottom 0 left 40%, 
                      left 21% bottom 43%,
                      top center;
}
.science02 .science__description {
  margin-bottom: 30px;
}
.science02 .science__box {
  padding: 60px 90px 30px;
}

.science02__item-img {
  display: block;
  max-width: 100%;
  margin: auto;
}

/* science02 レスポンシブ
================================== */
@media screen and (max-width: 2000px) {
  .science02 .science__accordion {
    background-size: 12%, 33%, 25%, 30%;
    background-position: bottom 0 right 30%, 
                        bottom 0 left 40%, 
                        left 20% bottom 30%,
                        top center;
  }
}
@media screen and (max-width: 1800px) {
  .science02 .science__accordion {
    background-size: 12%, 40%, 25%, 30%;
  }
}
@media screen and (max-width: 1400px) {
  .science02 {
    background-size: 40%;
  }
  .science02 .science__accordion {
    background-size: 18%, 50%, 35%, 40%;
    background-position: bottom 0 right 20%, 
                          bottom 0 left 40%, 
                          left 15% bottom 27%,
                          top center;
  }
}
@media screen and (max-width: 1000px) {
  .science02 {
    background-size: 50%;
  }
  .science02 .science__accordion {
    background-size: 18%, 60%, 40%, 50%;
    background-position: bottom 0 right 10%, 
                        bottom 0 left 40%, 
                        left 0% bottom 25%,
                        top center;
  }
}
@media screen and (max-width: 767px) {
  .science02 {
    background-size: 60%;
  }
  .science02 .science__box {
    padding: 0 24px;
  }
  .science02 .science__description {
    margin-bottom: 10px;
  }
}
/* デバイス　縦長 */
@media screen and (orientation: portrait) and (max-width: 767px) {
  .science02 .science__accordion {
    padding-bottom: 13em;
    background-size: 25%, 100%, 70%, 60%;
    background-position: bottom 0 right 15%, 
                        bottom 10% left 40%, 
                        left -60% bottom 30%,
                        top center;
  }
}
/* デバイス　横長 */
@media screen and (orientation: landscape) and (max-width: 767px) {
  .science02__item-img {
    width: 70%;
  }
}
/* ==================================
.science03　KONAN SCIENCE
================================== */
.science03 {
  background-image: url(/lp/konanscience/img/science03_bg01.png), url(/lp/konanscience/img/science03_bg02.png);
  background-repeat: no-repeat;
  background-size: 10%, 42%;
  background-position: top 200px right 30%, 
                      top -170px left 16%;
}
.science03 .science__accordion {
  padding-bottom: 15em;
  background-image: url(/lp/konanscience/img/science03_bg04.png);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: bottom -5% left 25%;
}
.science03 .science__description {
  margin-bottom: 60px;
  line-break: loose;
}
.science03 .science__box {
  padding: 60px 90px 80px;
}

.science03__contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.science03__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% / 2 - 38px);
}

.science03__item-ttl {
  display: inline-block;
  width: 100%;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: #61D8F9;
  border-bottom: 2px solid #61D8F9;
  margin-bottom: 20px;
}

.science03__item-txt {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.science03__item-img {
  max-width: 130px;
}

.science03__link {
  display: block;
  width: 100%;
  border: 2px solid #fff;
  background-color: #000;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.08em;
  padding: 0.5em 0;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.science03__link span {
  position: relative;
  z-index: 3;
  color: #fff;
  transition: 0.5s;
}
.science03__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.science03__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border: 10px solid transparent;
  border-left: 16px solid #fff;
  transition: 0.5s;
  z-index: 3;
}
.science03__link:hover span {
  color: #D01126;
}
.science03__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.science03__link:hover::after {
  border-left: 16px solid #D01126;
}

/* science03 レスポンシブ
================================== */
@media screen and (max-width: 2000px) {
  .science03 {
    background-size: 12%, 42%;
    background-position: top 200px right 25%, 
                          top -100px left 16%;
  }
  .science03__item-ttl {
    font-size: 28px;
  }
  .science03__item-txt {
    font-size: 18px;
  }
  .science03__link {
    font-size: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .science03 {
    background-size: 13%, 47%;
    background-position: top 200px right 20%, 
                          top -90px left 16%;
  }
  .science03 .science__accordion {
    padding-bottom: 10em;
  }
}
@media screen and (max-width: 1000px) {
  .science03 {
    background-size: 18%, 55%;
    background-position: top 200px right 8%, 
                        top -90px left 0%;
  }
  .science03 .science__accordion {
    padding-bottom: 7em;
    background-size: 40%;
    background-position: bottom 0 left 25%;
  }
  .science03__item {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .science03 {
    background-size: 30%, 80%;
    background-position: top 100px right -15%, 
                          top -50px left -70%;
  }
  .science03 .science__accordion {
    padding-bottom: 5em;
    background-image: url(/lp/konanscience/img/science03_bg04_sp.png);
    background-size: 50%;
    background-position: bottom 0 left 0;
  }
  .science03 .science__description {
    margin-bottom: 40px;
  }
  .science03 .science__box {
    padding: 0 24px 30px;
  }
  .science03__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .science03__item-ttl {
    font-size: 20px;
  }
  .science03__item-txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .science03__item-img {
    max-width: 88px;
  }
  .science03__link {
    font-size: 18px;
  }
  .science03__link::after {
    border: 6px solid transparent;
    border-left: 10px solid #fff;
  }
}

/* ==================================
.science_link 進化型理系構想始動
================================== */
.science__link {
  padding: 80px 0;
  text-align: center;
}
.science__link .science__lead {
  padding-bottom: 0;
}
.science__link__bnr {
  transition: .3s;
}
.science__link__bnr:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .science__link {
    padding: 40px 0;
  }
}

/* ==================================
  Missionの上部
================================== */
.mission-bg {
  display: block;
  width: 100%;
  height: calc(800vw / 24);
  background: url(/lp/konanscience/img/mission_bg01.png),#000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  margin-bottom: 80px;
}

.mission__logo {
  width: calc(265vw / 24);
  height: calc(230vw / 24);
  position: absolute;
  top: 15vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .mission-bg {
    height: calc(230vw / 3.75);
    background: url(/lp/konanscience/img/mission_bg01_sp.png),#000;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .mission__logo {
    width: calc(142vw / 3.75);
    height: calc(111vw / 3.75);
    top: 25vw;
  }
}

/* ==================================
  Mission TOPページ
================================== */
.mission__txt {
  margin-top: 80px;
  position: relative;
}

.mission__inner {
  max-width: 800px;
  margin: auto;
}

.mission__ttl {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.mission__ttl::after {
  content: "";
  width: 100%;
  height: 12px;
  background: linear-gradient(to right, #A494D5 0%, #80B2F8 30%, #6ED5F8 70%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.mission__lead {
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.mission__description {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 60px;
}

.mission__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.mission__links-btn {
  display: block;
  width: 50%;
  height: 185px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.09em;
  line-height: 1.3;
  background-color: #000;
  border: 2px solid #6ED5F8;
  padding: 30px 0;
  position: relative;
  transition: 0.4s;
}
.mission__links-btn:hover {
  background-color: #274149;
}
.mission__links-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -1px;
  border-left: 30px solid #6ED5F8;
  border-bottom: 34px solid transparent;
}
.mission__links-btn:nth-of-type(n+3) {
  width: calc(100% / 3);
  padding: 15px 0;
}
.mission__links-btn:nth-of-type(n+3) .mission__num {
  margin-bottom: 18px;
}
.mission__links-btn:nth-of-type(4) {
  border: 2px solid #A494D5;
}
.mission__links-btn:nth-of-type(4):hover {
  background-color: #2F2B3C;
}
.mission__links-btn:nth-of-type(4)::after {
  border-left: 30px solid #A494D5;
}
.mission__links-btn:nth-of-type(5) {
  border: 2px solid #80B2F8;
}
.mission__links-btn:nth-of-type(5):hover {
  background-color: #203248;
}
.mission__links-btn:nth-of-type(5)::after {
  border-left: 30px solid #80B2F8;
}
.mission__links-btn.mission__links-comingsoon {
  width: 100%;
  height: 91px;
  padding: 22px 0;
  color: #CBCBCB;
  border: 2px solid #ADADAD;
  background-color: #4D4D4D;
}
.mission__links-btn.mission__links-comingsoon::after {
  border-left: 30px solid #ADADAD;
}
.mission__links-btn-img {
  display: block;
  width: calc(100% / 2 - 10px);
  margin-bottom: 20px;
  transition: .3s;
}
.mission__links-btn-img:hover {
  opacity: 0.8;
}

.mission__num {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.mission__popup {
  width: 80%;
  /* height: 100%; */
  overflow-y: auto;
  max-width: 1030px;
  text-align: center;
  margin: auto;
  /* position: relative; */
  overscroll-behavior-y: contain;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90vh;
}
.mission__popup img {
  max-width: 100%;
}

.mission__popup__close {
  position: absolute;
  top: 15px;
  right: 3%;
  width: 50px;
  height: 50px;
}

.mission__popup .mfp-close:active {
  top: 15px;
}

.mission__popup__top {
  color: #fff;
  background: url(/lp/konanscience/img/bg_popup.png), #000;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 110px 0 48px;
}

.mission__popup__kv {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
  padding: 2em 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mission__popup01 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission01_modal_hero.jpg);
}
.mission__popup02 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission02_modal_hero.jpg);
}
.mission__popup03 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission03_modal_hero.jpg);
}
.mission__popup04 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission04_modal_hero.jpg);
}
.mission__popup05 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission05_modal_hero.jpg);
}
.mission__popup06 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission06_modal_hero.jpg);
}
.mission__popup07 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission07_modal_hero.jpg);
}
.mission__popup08 .mission__popup__kv {
  background-image: url(/lp/konanscience/img/mission/mission08_modal_hero.jpg);
}

.mission__popup__kv-num {
  font-size: 30px;
  letter-spacing: 0.05em;
}
.mission__popup__kv-ttl {
  display: inline-block;
  font-size: 40px;
  letter-spacing: 0.13em;
  background: linear-gradient(90deg, #a292d3,#80b0f6,#6ed3f6);
  padding: 0.1em 1.5em;
  margin-top: 10px;
}

.mission__popup__inner {
  width: 85%;
  max-width: 800px;
  margin: auto;
}

.mission__popup__ttl {
  display: inline;
  font-size: 40px;
  letter-spacing: 0.09em;
  margin: 30px 0;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, #A494D5 0%, #80B2F8 50%, #6ED5F8 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 8px;
}

.mission__popup__description {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 640px;
  margin: 30px auto 50px;
}

.mission__popup__btnttl {
  font-size: 20px;
  letter-spacing: 0.07em;
  margin: 40px 0 10px;
}

.mission__popup__middle {
  padding: 36px 0 45px;
  background-color: #fff;
}

.mission__popup__course-ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.mission__popup__course-name {
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 50px;
}

.mission__popup__course-list {
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 300;
}
.mission__popup__course-list:nth-of-type(n+2) {
  margin-left: 30px;
}
.mission__popup__course-list:nth-of-type(4) {
  margin-left: 0;
}

.mission__popup__university-ttl {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: auto;
  position: relative;
}
.mission__popup__university-ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 220px;
  height: 28px;
  background: url(/lp/konanscience/img/balloon.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.mission__popup__university-name {
  max-width: 680px;
  margin: 0 auto 50px;
}

.mission__popup__university-list {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.03em;
  padding-left: 1em;
  text-indent: -1em;
}
.mission__popup__university-list .note {
  font-size: 20px;
}
.mission__popup__university-list .font-s {
  font-size: 18px;
  letter-spacing: 0.06em;
}

.mission__popup__heigan-ttl {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.mission__popup__heigan-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mission__popup__heigan-btn {
  max-width: 380px;
}
.mission__popup__heigan-btn:nth-of-type(n+2) {
  margin-left: 40px;
}

.mission__popup__bottom {
  padding: 50px 0 60px;
  background: linear-gradient(to right, rgba(165, 149, 214, 0.5) 0%, rgba(129, 179, 249, 0.5) 50%, rgba(110, 214, 249, 0.5) 100%), #fff;
}
.mission__popup__bottom .footer__links-btn {
  margin-top: 30px;
  background-color: #fff;
  border: 2px solid #D01126;
}
.mission__popup__bottom .footer__links-btn::before {
  background-color: #D01126;
}
.mission__popup__bottom .footer__links-btn.btn-exam::after {
  background-image: url(/lp/konanscience/img/icon_exam_red.svg);
}
.mission__popup__bottom .footer__links-btn span {
  color: #D01126;
}

@media (hover: hover) {
  .mission__popup__bottom .footer__links-btn:hover.btn-exam::after {
    background-image: url(/lp/konanscience/img/icon_exam.svg);
  }
  .mission__popup__bottom .footer__links-btn:hover span {
    color: #fff;
  }
}
.mission__popup__bottom-inner {
  width: 90%;
  max-width: 573px;
  margin: auto;
}

/* mission レスポンシブ
================================== */
@media screen and (max-width: 2000px) {
  .mission__links-btn {
    font-size: 28px;
    padding: 40px 0;
  }
  .mission__links-btn:nth-of-type(n+3) {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1000px) {
  .mission__inner {
    width: 90%;
    margin: auto;
  }
  .mission__links-btn {
    height: 190px;
    padding: 30px 0;
  }
  .mission__links-btn.mission__links-comingsoon {
    height: 110px;
  }
  .mission__popup__heigan-btn:nth-of-type(n+2) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .mission__ttl {
    font-size: 23px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
  .mission__ttl::after {
    height: 6px;
  }
  .mission__lead {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .mission__description {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .mission__links {
    margin-bottom: 50px;
  }
  .mission__links-btn {
    font-size: 16px;
    height: 138px;
    padding: 20px 0;
    border: 1px solid #6ED5F8;
  }
  .mission__links-btn:nth-of-type(n+3) {
    width: 50%;
  }
  .mission__links-btn:nth-of-type(4) {
    border: 1px solid #A494D5;
  }
  .mission__links-btn:nth-of-type(5) {
    border: 1px solid #80B2F8;
  }
  .mission__links-btn.mission__links-comingsoon {
    width: 50%;
    height: 138px;
    border: 1px solid #ADADAD;
    padding: 48px 0;
  }
  .mission__num {
    font-size: 12px;
  }
  .mission__popup__kv {
    padding: 1em 0;
    margin-bottom: 30px;
  }
  .mission__popup__kv-ttl {
    font-size: 14px;
    padding: 0.1em 1.5em;
    margin-top: 5px;
  }
  .mission__popup__top {
    padding: 45px 0 40px;
    background: url(/lp/konanscience/img/bg_popup-sp.png), #000;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
  }
  .mission__popup__close {
    width: 26px;
    height: 26px;
    line-height: 24px;
    top: 8px;
    right: 5%;
  }
  .mission__popup__kv-num {
    font-size: 12px;
  }
  .mission__popup__ttl {
    font-size: 23px;
    padding-bottom: 10px;
    margin: 14px 0 20px;
    line-height: 2;
  }
  .mission__popup__description {
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 30px auto;
  }
  .mission__popup__btnttl {
    font-size: 14px;
    margin: 28px 0 5px;
  }
  .mission__popup__course-ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .mission__popup__course-name {
    margin: 0 auto 30px;
    justify-content: space-around;
    max-width: 80%;
  }
  .mission__popup__course-list {
    font-size: 18px;
  }
  .mission__popup__course-list:nth-of-type(n+2) {
    margin-left: 0;
  }
  .mission__popup__university-ttl {
    font-size: 14px;
  }
  .mission__popup__university-ttl::after {
    height: 20px;
  }
  .mission__popup__university-list {
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
  }
  .mission__popup__university-list .note {
    font-size: 14px;
  }
  .mission__popup__university-list .font-s {
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .mission__popup04 .mission__popup__university-list .font-s {
    bottom: -20px;
  }
  .mission__popup__heigan-ttl {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .mission__popup__bottom {
    padding: 30px 0;
  }
  .mission__popup__bottom .footer__links-btn {
    margin-top: 20px;
  }
}
/* ****************************************
Interview TOPページ .interview-top
**************************************** */
.interview-top {
  padding: 80px 0;
}
.interview-top__inner {
  max-width: 800px;
  margin: auto;
}
.interview-top__btn {
  display: block;
  text-align: center;
  margin: 0 auto 80px;
  background: linear-gradient(90deg,#a292d3 0%,#80b0f6 54%,#6ed3f6 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.8em 4em;
  max-width: 358px;
}
.interview-top__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  border-right: 0;
}
/* スライダ―部分
******************************** */
.interview-top__links {
  overflow: hidden;
  padding:0 0 140px;
  margin-bottom: 60px;
  background-image: url(/lp/konanscience/img/interview-top_bg.png);
  background-position: right 0 bottom 0;
  background-size: 75%;
  background-repeat: no-repeat;
}
.interview-top__links  .interview-top__inner {
  padding-right: 4rem;
}
.interview-top__links__contents {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: calc(100vw + 5%);
}
.interview-top__links__item {
  margin-left: 15px;
  margin-right: 15px;
}
.interview-top__links__link {
  display: block;
  max-width: 100%;
  height: auto;
  transition: .3s;
}
.interview-top__links__link:hover {
  opacity: .7;
}
.interview-top__links__img {
  max-width: 433px;
  height: auto;
}
.interview-top__links__item .interview-top__links__copy {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 0 0 30px;
}
.interview-top__links__item .interview-top__links__name {
  font-size: 18px;
  font-weight: 300;
  padding: 10px 0 0 30px;
}
.interview-top__links__slider button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.interview-top__links__slider button:focus {
  outline: none;
}
.interview-top__arrow {
  width: 66px;
  height: 66px;
  cursor: pointer;
  position: absolute;
  bottom: -16%;
  transform: translateX(-50%);
}
.interview-top__arrow.--prev {
  left: 48%;
}
.interview-top__arrow.--next {
  right: 44%;
}
@media screen and (max-width: 2000px) {
  .interview-top__links__item {
    max-width: 380px;
  }
}
@media screen and (max-width: 1600px) {
  .interview-top__links__item {
    max-width: 320px;
  }
  .interview-top__links__item .interview-top__links__copy {
    font-size: 20px;
  }
  .interview-top__links {
    background-size: 80%;
  }
  .interview-top__links__item .interview-top__links__name {
    font-size: 16px;
  }
  .interview-top__arrow {
    width: 60px;
    height: 60px;
    bottom: -22%;
  }
  .interview-top__arrow.--prev {
    left: 46%;
  }
  .interview-top__arrow.--next {
    right: 41%;
  }
}
@media screen and (max-width: 1400px) {
  .interview-top__links {
    padding:0 0 120px;
    background-size: 85%;
  }
  .interview-top__arrow {
    width: 55px;
    height: 55px;
    bottom: -18%;
  }
  .interview-top__arrow.--prev {
    left: 46%;
  }
  .interview-top__arrow.--next {
    right: 41%;
  }
}
@media screen and (max-width: 1200px) {
  .interview-top__links {
    padding:0 0 100px;
    background-size: 90%;
  }
  .interview-top__links__item .interview-top__links__copy {
    font-size: 17px;
  }
  .interview-top__links__item .interview-top__links__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .interview-top__inner {
    max-width: 90%;
  }
  .interview-top__links__contents {
    width: auto;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
  .interview-top__links  .interview-top__inner {
    padding-left: 2.5rem;
  }
  .interview-top__links {
    background-size: 95%;
  }
  .interview-top__arrow {
    width: 50px;
    height: 50px;
  }
  .interview-top__arrow.--prev {
    left: 39%;
  }
  .interview-top__arrow.--next {
    right: 40%;
  }
}
@media screen and (max-width: 767px) {
  .interview-top__ttl {
    margin-bottom: 20px;
  }
  .interview-top__lead {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 30px;
  }
  .interview-top__links__contents {
    padding-right: 0;
  }
  .interview-top__links {
    padding: 0 0 80px;
    background-image: url(/lp/konanscience/img/interview-top_bg-sp.png);
    background-size: 95%;
    background-position: bottom right;
    margin-bottom: 25px;
  }
  .interview-top__links__item .interview-top__links__copy {
    font-size: 15px;
    padding: 0 0 0 15px;
  }
  .interview-top__links__item .interview-top__links__name {
    font-size: 12px;
    padding: 5px 0 0 15px;
  }
  .interview-top__arrow {
    width: 40px;
    height: 40px;
  }
  .interview-top__arrow.--prev {
    left: 35%;
  }
  .interview-top__btn {
    width: 20%;
    min-width: 110px;
    padding: 8px 22px;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.08em;
  }
  .interview-top__btn::after {
    right: 12px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
  }
}
@media screen and (max-width: 500px) {
  .interview-top__arrow.--prev {
    left: 25%;
  }
  .interview-top__arrow.--next {
    right: 30%;
  }
}

/* ****************************************
MOVIE
**************************************** */
.movie {
  text-align: center;
  margin-bottom: 140px;
}

.movie__inner {
  max-width: 800px;
  margin: auto;
}

.movie__ttl {
  display: inline-block;
  font-size: 30px;
  letter-spacing: 0.12em;
  position: relative;
  margin: 0 auto 60px;
}
.movie__ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 366px;
  height: 44px;
  background: url(/lp/konanscience/img/balloon.png);
  background-repeat: no-repeat;
  background-position: left 50% bottom -100%;
  position: absolute;
  left: 0;
  bottom: -100%;
}

.movie__thumnail {
  display: block;
  position: relative;
  margin-bottom: 50px;
}
.movie__thumnail .movie__img {
  width: 100%;
  max-width: 800px;
}
.movie__thumnail:not(.movie__none) {
  margin-bottom: 60px;
}
.movie__thumnail:not(.movie__none)::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url(/lp/konanscience/img/icon_play.svg);
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.movie__thumnail:not(.movie__none)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.4s;
}

.movie__name {
  text-align: left;
  font-size: 20px;
  line-height: 2;
}

.movie__btn {
  display: block;
  cursor: pointer;
  width: 100%;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.5em 1em;
  background: linear-gradient(to right, #A494D5 0%, #80B2F8 50%, #6ED5F8 100%);
  position: relative;
}
.movie__btn::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 5%;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.movie__btn.is-open::after {
  top: 40%;
  transform: rotate(-135deg);
}

.movie__acordion {
  display: none;
}

/* movie レスポンシブ
================================== */
@media screen and (max-width: 1000px) {
  .movie__inner {
    width: 90%;
    margin: auto;
  }
  .movie__slide {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .movie {
    margin-bottom: 47px;
  }
  .movie__ttl {
    font-size: 18px;
    margin: 0 auto 30px;
  }
  .movie__ttl::after {
    height: 28px;
    background-size: 110%;
  }
  .movie__thumnail {
    margin-bottom: 26px;
  }
  .movie__thumnail:not(.movie__none) {
    margin-bottom: 32px;
  }
  .movie__thumnail:not(.movie__none)::after {
    width: 53px;
    height: 53px;
  }
  .movie__name {
    font-size: 16px;
  }
  .movie__btn {
    font-size: 18px;
    padding: 0.8em 1em;
  }
  .movie__btn::after {
    top: 27%;
    width: 15px;
    height: 15px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* ****************************************
NEWS
**************************************** */
.news {
  margin-bottom: 74px;
}

.news__ttl {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.news__box {
  width: 100%;
  background-color: #fff;
  padding: 30px 35px 10px;
}

.news__subttl {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 2rem;
  margin-bottom: 10px;
  position: relative;
}

.news__subttl::before {
  content: "?";
  color: #cb1f24;
  position: absolute;
  left: 0;
  top: 0;
}

.news__box__inner {
  width: 100%;
  height: 250px;
  padding: 10px 20px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  overflow-y: scroll;
}

.news__item {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #c6c6c6;
}

.news__time {
  line-height: 1.5;
}

.news__category {
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
  width: 20%;
  word-break: break-all;
  margin-left: 25px;
  padding: 3px 0;
  background-color: #CB2837;
  border-radius: 3px;
}
.news__category-media {
  background-color: #d04b6c;
}
.news__category-new {
  background-color: #67a7d9;
}
.news__category-topics {
  background-color: #429629;
}
.news__category-event {
  background-color: #c089dc;
}

.news__title {
  line-height: 1.5;
  margin-left: 25px;
  width: 70%;
}
.news__title:hover {
  text-decoration: underline;
}
@media screen and (max-width: 2000px) {
  .news__item {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 30px;
  }
  .news__box {
    padding: 20px 26px 5px;
  }
  .news__subttl {
    font-size: 18px;
    letter-spacing: 0;
  }
  .news__box__inner {
    margin-bottom: 20px;
  }
  .news__item__none {
    font-size: 14px;
  }
  .news__item {
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 12px;
    padding: 12px 0;
  }
  .news__category {
    width: 71px;
    margin-bottom: 12px;
    margin-left: 12px;
  }
  .news__title {
    display: inline-block;
    width: 100%;
    margin-left: 0;
  }
}

/* ****************************************
Interview インタビューページ
**************************************** */
.interview__hero {
  margin-top: 90px;
  margin-bottom: 80px;
  width: 100%;
  position: relative;
}
.interview__hero__img {
  width: 100%;
}
.interview__hero__img.-sp {
  display: none;
}
.interview__ttl {
  width: calc(879vw / 24);
  height: auto;
  position: absolute;
  top: calc(340vw / 24);
  left: 53%;
  transform: translateX(-50%);
}
.interview__hero__lead {
  text-align: center;
  font-size: 34px;
  line-height: 1.6;
  position: absolute;
  top: calc(1250vw / 24);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.interview__contents {
  background-image: url(/lp/konanscience/img/interview/interview-voice-bg01.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg02.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg02.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
  url(/lp/konanscience/img/interview/interview-voice-bg01.svg);
  background-repeat: no-repeat;
  background-size: 160px,80px,105px,150px,58px,58px,160px,58px;
  background-position: calc(50% - 650px) calc(50% - 1360px),
  calc(50% + 599px) calc(50% - 1120px),
  calc(50% - 541px) calc(50% - 560px),
  calc(50% + 549px) calc(50% - 320px),
  calc(50% - 650px) calc(50% + 50px),
  calc(50% - 490px) calc(50% + 645px),
  calc(50% - 460px) calc(50% + 1220px),
  calc(50% + 570px) calc(50% + 1500px);
}
.interview__subttl {
  margin-bottom: 30px;
}
.interview__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interview__link {
  width: calc(100% / 2 - 30px);
  margin-bottom: 40px;
}
.interview__link img {
  width: 100%;
}
.interview__top-btn {
  margin: 80px 0 120px;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .interview__hero__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .interview__hero__lead {
    font-size: 18px;
  }
  .interview__contents {
    background-size: 100px,40px,60px,100px,40px,60px,100px,40px;
    background-position: 
    left calc(50% - 900px), 
    right calc(50% - 800px), 
    left calc(50% - 400px), 
    right calc(50% - 250px),
    left calc(50% + 50px),
    left calc(50% + 500px),
    left calc(50% + 800px),
    right calc(50% + 1140px);
  }
  .interview__link {
    width: calc(100% / 2 - 10px);
  }
}
@media screen and (max-width: 767px) {
  .interview__hero {
    margin-top: 47px;
  }
  .interview__hero__img {
    display: none;
  }
  .interview__hero__img.-sp {
    display: inline;
  }
  .interview__ttl {
    width: calc(460vw / 7.6);
    top: calc(245vw / 7.6);
  }
  .interview__hero__lead {
    font-size: 18px;
    top: calc(800vw / 7.6);
  }
  .interview__contents {
    background-image: 
    url(/lp/konanscience/img/interview/interview-voice-bg02.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg01.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg01.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg02.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg02.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg01.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg03.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg04.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg01.svg),
    url(/lp/konanscience/img/interview/interview-voice-bg02.svg);
    background-repeat: no-repeat;
    background-size: 55px,55px,25px,25px,55px,55px,25px,25px,55px,55px,25px,25px,55px,55px,25px,25px;
    background-position: 
    calc(50% + 140px) calc(50% - 1750px),
    calc(50% - 130px) calc(50% - 1590px),
    right calc(50% - 1400px),
    calc(50% + 145px) calc(50% - 1260px),
    calc(50% - 130px) calc(50% - 1100px),
    right calc(50% - 755px),
    right calc(50% - 480px),
    left calc(50% - 400px),
    calc(50% + 140px) calc(50% + 50px),
    calc(50% - 130px) calc(50% + 250px),
    right calc(50% + 430px),
    calc(50% + 145px) calc(50% + 530px),
    calc(50% - 130px) calc(50% + 750px),
    right calc(50% + 1100px),
    right calc(50% + 1400px),
    left calc(50% + 1460px);
  }
  .interview__top-btn {
    margin: 60px 0;
  }
  .interview__top-btn a img{
    width: 50%;
    min-width: 167px;
  }
}
@media screen and (max-width: 500px) {
  .interview__hero {
    margin-bottom: 40px;
  }
  .interview__ttl {
    width: calc(320vw / 5);
    top: calc(150vw / 5);
  }
  .interview__hero__lead {
    font-size: 13px;
    text-align: left;
    width: 80%;
  }
  .interview__subttl {
    margin-bottom: 20px;
  }
  .interview__links {
    justify-content: center;
  }
  .interview__link {
    width: 95%;
    margin-bottom: 30px;
  }
}

/* ****************************************
Interview 先輩たちの声ページ
**************************************** */
.interview__sub__hero {
  max-width: 1030px;
  margin: 97px auto 100px;
  position: relative;
}
.interview__sub__hero__img {
  width: 100%;
}
.interview__sub__hero__copy {
  position: absolute;
  top: 7%;
  right: 6%;
  max-width: 105px;
  z-index: 1;
}
.biology .interview__sub__hero__copy {
  right: 10%;
}
.chemistry .interview__sub__hero__copy {
  right: 12%;
}
.ii .interview__sub__hero__copy {
  right: 15%;
}
.life .interview__sub__hero__copy {
  top: 12%;
  right: 10%;
}
.interview__sub__hero__txt {
  color: #fff;
  position: relative;
}
.science_and_engineering .interview__sub__hero__txt {
  background-color: #84c0c7;
}
.ii .interview__sub__hero__txt {
  background-color: #8878b2;
}
.first .interview__sub__hero__txt {
  background-color: #5f9bd6;
}
.interview__sub__hero__txt__inner {
  padding: 40px 90px 20px;
}
.interview__sub__hero__txt-gakubu {
  max-height: 55px;
  position: absolute;
  top: -17%;
  left: 85px;
}
.interview__sub__hero__txt-profile {
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
  max-width: 685px;
}
.interview__sub__hero__txt-profile-gakubu {
  font-size: 15px;
  padding-bottom: 10px;
}
.interview__sub__hero__txt-profile-name {
  font-size: 18px;
  font-weight: 500;
}
.interview__sub__hero__txt-profile-name span{
  font-size: 20px;
}
.interview__sub__hero__txt-profile-hash {
  padding-top: 15px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "palt";
}
.interview__sub__hero__txt-profile-hash span{
  font-size: 15px;
}
.interview__sub__episode__subttl {
  display: block;
  text-align: center;
  padding: 0.25em 0;
  font-weight: 500;
}
.science_and_engineering .interview__sub__episode__subttl {
  color: #60aaaa;
  border-top: 2px solid #84c0c7;
  border-bottom: 2px solid #84c0c7;
}
.ii .interview__sub__episode__subttl {
  color: #76689a;
  border-top: 2px solid #8878b2;
  border-bottom: 2px solid #8878b2;
}
.first .interview__sub__episode__subttl {
  color: #507eac;
  border-top: 2px solid #5f9bd6;
  border-bottom: 2px solid #5f9bd6;
}

.interview__sub__graph {
  width: 100%;
  padding: 30px;
  background-image: url(/lp/konanscience/img/interview/interview-graph-bg.png);
  background-position: center;
  position: relative;
  margin-bottom: 90px;
}
.interview__sub__graph__ttl {
  max-width: 380px;
  width: 70%;
  position: absolute;
  left: 2%;
  top: -10%;
}
.interview__sub__graph__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.interview__sub__graph__img {
  max-width: 478px;
  width: 49%;
}
.interview__sub__graph__txt {
  width: 49%;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 26px;
}
.interview__sub__graph__txt-episode {
  margin-bottom: 15px;
}
.interview__sub__graph__txt-episode:last-of-type {
  margin-bottom: 0;
}
.interview__sub__graph__txt-episode__ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.interview__sub__graph__txt-episode__ttl img{
  max-width: 114px;
  width: 30%;
}
.interview__sub__graph__txt-episode__ttl .interview__sub__episode__subttl{
  width: 70%;
  font-size: 17px;
  letter-spacing: 0.04em;
}
.interview__sub__graph__txt-episode__txt {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: 0.015em;
  text-align: center;
  color: #d01126;
  font-weight: 500;
}

.interview__sub__episode {
  width: 80%;
  max-width: 800px;
  margin: auto;
}
.interview__sub__episode__box {
  padding-left: 20px;
  margin-bottom: 50px;
}
.science_and_engineering .interview__sub__episode__box {
  border-left: 4px solid #84c0c7;
}
.ii .interview__sub__episode__box {
  border-left: 4px solid #8878b2;
}
.first .interview__sub__episode__box {
  border-left: 4px solid #5f9bd6;
}
.interview__sub__episode__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.interview__sub__episode__ttl img{
  max-width: 109px;
}
.interview__sub__episode__ttl .interview__sub__episode__subttl {
  font-size: 20px;
  letter-spacing: 0.05em;
  width: 287px;
  display: inline-block;
  margin-left: 30px;
}
.interview__sub__episode__lead {
  font-size: 32px;
  color: #d01126;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 20px;
  font-feature-settings: "palt";
}

.interview__sub__episode__description {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-align:justify;
}
.interview__sub__episode__img {
  margin: 40px 60px 70px;
}
.interview__sub__episode__img.-odd {
  text-align: right;
}
.interview__sub__episode__img img{
  max-width: 400px;
  width: 100%;
}

.interview__sub__footer {
  width: 80%;
  max-width: 800px;
  margin: 80px auto 100px;
  padding: 30px 90px 50px;
}
.science_and_engineering .interview__sub__footer {
  background-color: #daecee;
}
.ii .interview__sub__footer {
  background-color: #dbd6e8;
}
.first .interview__sub__footer {
  background-color: #cfe1f3;
}
.interview__sub__footer p{
  font-size: 25px;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}
.interview__sub__footer img{
  width: 100%;
}
.interview__prev-btn {
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .interview__sub__graph__txt-episode__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) { 
  .subpage .inner {
    width: 82%;
  }
  .interview__sub__hero {
    width: 100%;
    margin: 47px auto 60px;
  }
  .interview__sub__hero__copy {
    position: absolute;
    top: 5%;
    right: auto;
    left: 10%;
    max-width: 58px;
  }
  .chemistry .interview__sub__hero__copy,
  .ii .interview__sub__hero__copy,
  .life .interview__sub__hero__copy {
    right: 10%;
    left: auto;
  }
  .interview__sub__hero__txt__inner {
    padding: 20px 45px 10px;
  }
  .interview__sub__hero__txt-gakubu {
    min-width: 122px;
    max-height: 25px;
    top: -12%;
    left: 40px;
  }
  .interview__sub__hero__txt-profile {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
  .interview__sub__hero__txt-profile-gakubu {
    font-size: 10px;
    padding-bottom: 5px;
  }
  .interview__sub__hero__txt-profile-name {
    font-size: 11px;
  }
  .interview__sub__hero__txt-profile-name span{
    font-size: 14px;
  }
  .interview__sub__hero__txt-profile-hash {
    padding-top: 10px;
    line-height: 1.5;
    font-size: 12px;
  }
  .interview__sub__hero__txt-profile-hash span{
    font-size: 11px;
  }

  .interview__sub__graph {
    padding: 30px 24px 20px;
    margin-bottom: 30px;
  }
  .interview__sub__graph__ttl {
    top: -5%;
  }
  .interview__sub__graph__img {
    width: 100%;
  }
  .interview__sub__graph__txt {
    width: 100%;
    padding: 20px 14px;
    border-radius: 15px;
    margin-top: 20px;
  }
  .interview__sub__graph__txt-episode__ttl .interview__sub__episode__subttl {
    font-size: 12px;
  }
  .interview__sub__graph__txt-episode__txt {
    font-size: 14px;
    font-weight: 600;
  }

  .interview__sub__episode {
    width: 100%;
  }
  .interview__sub__episode__box {
    margin-bottom: 20px;
  }
  .interview__sub__episode__ttl {
    margin-bottom: 15px;
  }
  .interview__sub__episode__ttl img{
    max-width: 80px;
  }
  .interview__sub__episode__ttl .interview__sub__episode__subttl {
    font-size: 12px;
    width: 80%;
    margin-left: 20px;
  }
  .science_and_engineering .interview__sub__episode__subttl {
    border-top: 1px solid #84c0c7;
    border-bottom: 1px solid #84c0c7;
  }
  .ii .interview__sub__episode__subttl {
    border-top: 1px solid #8878b2;
    border-bottom: 1px solid #8878b2;
  }
  .first .interview__sub__episode__subttl {
    border-top: 1px solid #5f9bd6;
    border-bottom: 1px solid #5f9bd6;
  }
  .interview__sub__episode__lead {
    font-size: 17px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-weight: 600;
  }
  .interview__sub__episode__description {
    font-size: 14px;
    line-height: 1.7;
  }
  .interview__sub__episode__img {
    margin: 10px 10px 30px;
  }
  .interview__sub__episode__img img {
    max-width: 80%;
  }

  .interview__sub__footer {
    width: 100%;
    margin: 40px auto;
    padding: 20px 40px 30px;
  }
  .interview__sub__footer p {
    font-size: 14px;
    margin-bottom: 10px
  }
  .interview__prev-btn a img{
    width: 50%;
    min-width: 167px;
  }
  .subpage .interview__top-btn {
    margin: 30px 0;
  }
}
ul.research-publication li a {
    color: #fff;
}
ul.research-publication li {
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #999;
}
ul.research-publication {
    margin: 0 0 50px;
}
/* ****************************************
Mission 下層ページ
**************************************** */
.mission__sub__hero {
  margin: 97px auto 100px;
  padding: 60px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mission__sub__hero__num {
  display: inline-block;
  font-size: 28px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0,0,0,0.7);
}
.mission__sub__hero__ttl {
  display: inline-block;
  font-size: 48px;
  letter-spacing: 0.13em;
  background: linear-gradient(90deg, #a292d3,#80b0f6,#6ed3f6);
  padding: 0.1em 2em;
  margin-bottom: 40px;
}
.mission__sub__hero__lead {
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 20px 0;
}
/* Mission01 */
.mission01 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission01_sub_hero.jpg);
}
.mission01 .mission__sub__hero__lead {
  background-color: rgba(0, 48, 81, 0.5);
}
/* Mission02 */
.mission02 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission02_sub_hero.jpg);
}
.mission02 .mission__sub__hero__lead {
  background-color: rgba(73, 65, 140, 0.5);
}
/* Mission03 */
.mission03 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission03_sub_hero.jpg);
}
.mission03 .mission__sub__hero__lead {
  background-color: rgba(73, 65, 140, 0.5);
}
/* Mission04 */
.mission04 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission04_sub_hero.jpg);
}
.mission04 .mission__sub__hero__lead {
  background-color: rgba(74, 102, 144, 0.5);
}
/* Mission05 */
.mission05 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission05_sub_hero.jpg);
}
.mission05 .mission__sub__hero__lead {
  background-color: rgba(25, 93, 168, 0.5);
}
/* Mission06 */
.mission06 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission06_sub_hero.jpg);
}
.mission06 .mission__sub__hero__lead {
  background-color: rgba(0, 0, 0, 0.5);
}
/* Mission07 */
.mission07 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission07_sub_hero.jpg);
}
.mission07 .mission__sub__hero__lead {
  background-color: rgba(59, 90, 114, 0.5);
}
/* Mission08 */
.mission08 .mission__sub__hero {
  background-image: url(/lp/konanscience/img/mission/mission08_sub_hero.jpg);
}
.mission08 .mission__sub__hero__lead {
  background-color: rgba(9, 14, 23, 0.5);
}
@media screen and (max-width: 767px) { 
  .mission__sub__hero {
    margin: 47px auto 60px;
    padding: 40px 0;
  }
  .mission02 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission02_sub_hero_sp.jpg);
  }
  .mission03 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission03_sub_hero_sp.jpg);
  }
  .mission04 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission04_sub_hero_sp.jpg);
  }
  .mission05 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission05_sub_hero_sp.jpg);
  }
  .mission06 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission06_sub_hero_sp.jpg);
  }
  .mission07 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission07_sub_hero_sp.jpg);
  }
  .mission08 .mission__sub__hero {
    background-image: url(/lp/konanscience/img/mission/mission08_sub_hero_sp.jpg);
  }
  .mission__sub__hero__num {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .mission__sub__hero__ttl {
    font-size: 30px;
    padding: 0.1em 1em;
  }
  .mission__sub__hero__lead {
    font-size: 16px;
  }
}

.mission__sub__box {
  max-width: 1035px;
  margin: 0 auto 5em;
  padding: 3em 5em 5em;
  background: linear-gradient(30deg, #dbd6e8,#cfe1f3,#daecee);
  position: relative;
}
.mission__sub__box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 10px;
}
.science_and_engineering.mission__sub__box::after {
  background-color: #84c0c7;
}
.first.mission__sub__box::after {
  background-color: #5f9bd6;
}
.ii.mission__sub__box::after {
  background-color: #8878b2;
}
.mission__sub__box__img {
  max-width: 100%;
}
.mission__sub__box__ttl {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin: 0.8em 0;
}
.mission__sub__box__name {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}
.mission__sub__box__keyword-ttl {
  position: relative;
  margin-bottom: 10px;
}
.mission__sub__box__keyword-ttl span {
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(90deg, #84c0c7,#5f9bd6,#8878b2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.2em 0;
}
.mission__sub__box__keyword-ttl::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 85%;
  height: 2px;
  background: linear-gradient(270deg, #84c0c7,#5f9bd6,#8878b2);
}
.mission__sub__box__keyword {
  display: flex;
  flex-wrap: wrap;
}
.mission__sub__box__keyword li {
  font-size: 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 50px;
  margin: 7px 14px;
  padding: 0.5em 0.8em;
}
.science_and_engineering .mission__sub__box__keyword li {
  color: #84c0c7;
}
.first .mission__sub__box__keyword li {
  color: #5f9bd6;
}
.ii .mission__sub__box__keyword li {
  color: #8878b2;
}
.mission__sub__box__btn {
  font-size: 25px;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 0.5em 2.5em 0.5em 1.2em;
  background: linear-gradient(90deg, #84c0c7,#5f9bd6,#8878b2);
  position: absolute;
  left: 75%;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}
.mission__sub__box__btn span {
  position: relative;
}
.mission__sub__box__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #fff;
  border-right: 0;
}
.mission__sub__interview {
  text-align: center;
}
.mission__sub__interview__lead {
  font-size: 30px;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
.mission__sub__interview__link {
  margin-bottom: 60px;
}
.mission__sub__interview__link__slider {
  max-width: 446px;
  margin: 0 auto 60px;
}
.mission__sub__interview__link__slider .slick-next::before,
.mission__sub__interview__link__slider .slick-prev::before{
  color: #666;
}
.mission__sub__interview__link__slider .slick-next {
  right: -25%;
}
.mission__sub__interview__link__slider .slick-prev {
  left: -25%;
}
@media screen and (max-width: 1035px) { 
  .mission__sub__box {
    width: 100%;
  }
  .mission__sub__box__keyword-ttl::after {
    width: 80%;
  }
}
@media screen and (max-width: 767px) { 
  .mission__sub__box {
    padding: 1em 0 2em;
    margin: 0 auto 3em;
  }
  .mission__sub__box::after {
    height: 5px;
  }
  .mission__sub__box__ttl {
    font-size: 18px;
    letter-spacing: 0;
    padding-left: 2rem;
  }
  .mission__sub__box__name {
    font-size: 13px;
    margin-bottom: 0.8em;
    padding-left: 2rem;
  }
  .mission__sub__box__keyword-ttl span {
    font-size: 12px;
    padding: 0.2em 0 0.2em 2rem;
  }
  .mission__sub__box__keyword {
    padding: 0 2rem;
  }
  .mission__sub__box__keyword li {
    font-size: 12px;
    margin: 4px;
    padding: 0.5em 0.8em;
  }
  .mission__sub__box__keyword-ttl::after {
    right: 2rem;
    width: 65%;
  }
  .mission__sub__box__btn {
    font-size: 12px;
    left: 65%;
    padding: 0.5em 3em 0.5em 1.8em;
  }
  .mission__sub__box__btn span::after {
    right: -16px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
  }
  .mission__sub__interview__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .mission__sub__interview__link {
    margin-bottom: 40px;
  }
  .mission__sub__interview__link img {
    max-width: 80%;
  }
  .mission__sub__interview .interview-top__btn {
    width: 50%;
    max-width: 331px;
    text-align: center;
    margin: 0 auto 40px;
  }
  .mission__sub__interview__link__slider {
    width: 80%;
    margin: 0 auto 40px;
  }
  .mission__sub__interview__link__slider img {
    max-width: 100%;
  }
  .mission__sub__interview__link__slider .slick-next {
    right: -15%;
  }
  .mission__sub__interview__link__slider .slick-prev {
    left: -15%;
  }
}




/* 追記 */
.interview__sub__hero__txt-gakubu {
  top: -13%;
}
.interview__sub__hero__txt-profile-mission {
  display: inline-block;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  margin-top: 10px;
}
.interview__sub__hero__txt-profile-mission span {
  display: inline-block;
  padding: 0.2em 0.8em 0.3em 0;
  margin-right: 0.8em;
  font-size: 15px;
  border-right: 1px solid #fff;
}
.interview__sub__episode__lead {
  white-space: nowrap;
}
.interview__sub__footer-mission {
  width: 80%;
  max-width: 800px;
  margin: 80px auto 100px;
  padding: 30px 90px 50px;
}
.interview__sub__footer-mission p {
  font-size: 25px;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}
.interview__sub__footer-mission img {
  width: 100%;
}
@media screen and (max-width: 767px) { 
  .interview__sub__hero__txt__inner {
    padding: 20px 45px 15px;
  }
  .interview__sub__hero__txt-gakubu {
    top: -9%;
  }
  .interview__sub__hero__txt-profile-mission {
    font-size: 12px;
  }
  .interview__sub__hero__txt-profile-mission span {
    font-size: 10px;
  }
  .interview__sub__footer-mission {
    width: 100%;
    margin: 30px auto 40px;
    padding: 0 40px;
  }
  .interview__sub__footer-mission p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
ul.nav-content-list {
    display: table;
    table-layout: fixed;
    width: 100%;
}
ul.nav-content-list li {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}
ul.nav-content-list li .btn-animation::before, ul.nav-content-list li .btn-animation::after, ul.nav-content-list li .btn-animationlink::before, ul.nav-content-list li .btn-animationlink::after {
    background: transparent;
}
ul.nav-content-list li a picture {
    display: block;
    box-shadow: 0 0 9px #fff;
}
ul.nav-content-list li p {
    padding: 0 0 5px;
    font-size: 1.1em;
}
@media screen and (max-width: 767px) { 
ul.nav-content-list li {
    display: block;
    width: 100%;
}
.btn__fixed__bottom .btn__fixed-request {
  transform: translateX(-210%);
  width: 25%;
  font-size: 0.8em;
  bottom: 0;
}
.btn__fixed__bottom .btn__fixed-course {
  transform: translateX(-70%);
  width: 35%;
  font-size: 0.8em;
  bottom: 0;
}
.btn__fixed__bottom .btn__fixed-evo {
  transform: translateX(31%);
  width: 40%;
  font-size: 0.8em;
  bottom: 0;
}
}