@charset "utf-8";

/* BASE */
ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dl dt,
dl dd {
  margin: 0;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

h1,h2,h3,h4,h5,h6,p {
  margin: 0;
  font-weight: normal;
  font-size: 100%;
}


* {
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  width: 100%;
  color: #333333;
  font-size: 17px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
img {
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}
p + p {
  margin: 1.5em 0 0;
}


/* COMMON */
.inner {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.pc_br {
  display: block;
}
.sp_br {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }

}

/* HEADER */
header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 5;
  height: 175px;
}
.header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 175px;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 20px;
}
.header__top .logo {
  width: 49%;
}
.nav {
  display: flex;
  margin: auto 0 0 0;
}
.nav .btn {
  position: absolute;
  top: 30px;
  right: 40px;
}
.nav .btn ul {
  display: flex;
  align-items: center
}

.nav .btn ul li  {
  width: 170px;
  height: 56px;
  margin: 0 0 0 10px;
}
.nav .btn ul li:nth-child(1) {
  background-color: #95c0bb;
}
.nav .btn ul li:nth-child(2) {
  background-color: #2b8277;
}
.nav .btn ul li a {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%
}
.nav-list{ 
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.nav-list li {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative
}
.nav-list li.current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2b8277;
}
.nav-list li a {
  padding: 10px 0 20px;
  display: block;
}


@media only screen and (min-width: 769px) {
  .nav-list li a:hover {
    color: #2b8277;
  }
  .nav .btn ul li a:hover {
    opacity: 0.7
  }
} 
@media only screen and (max-width: 991px) {
  .inner {
    padding: 0 3%;
  }
}
@media only screen and (max-width: 768px) {
  header {
    height: auto;
  }
  header .inner {
    padding: 0;
    height: auto;
  }
  .header__top {
    padding: 5% 3% 5%;
    background-color: #fff;
    position: relative;
    z-index: 3;
  }
  .header__top .logo {
    width: 65%;
  }
  .nav {
    position: fixed;
    display: block;
    right: 0;
    top: -110%;
    width: 100%;
    height: 100vh;
    padding-top: 17%;
    background-color: #f2f2f2;
    transition: all .6s;
    z-index: 2;
    overflow-y: auto; 
  }
  .nav .btn {
    position: relative;
    top: 0;
    left: 0;
    margin: 2em 0 0;
  }
  .nav .btn ul {
    justify-content: space-between;
    padding: 0 3%;
  }
  .nav .btn ul li  {
    width: 48%;
    margin: 0;
    height: auto;
  }
  .nav .btn ul li a {
    font-size: 13px;
    padding: 0.8em 0.5em;
  }
  .hamburger {
    position: absolute;
    right: 4%;
    top: 0;
    width: 5%;
    cursor: pointer;
    z-index: 300;
    height: 100%;
  }
  .nav-list {
    flex-wrap: wrap;
    padding: 0 3%;
  }
  .nav-list li {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  .nav-list li.current::after {
    content: none;
  }
  .nav-list li a {
    display: block;
    padding: 1.5em 1em;
    border-bottom: 1px solid #333;
  }
  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger span:nth-child(1) {
    top: 35%;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
  }
  .hamburger span:nth-child(3) {
    top: 65%;
  }
  .nav__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  .nav-open .nav {
    top: 0;
  }
  .nav-open .nav__bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger span:nth-child(1) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .nav-open .hamburger span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger span:nth-child(3) {
    transform: rotate(45deg);
    top: 50%;
  }
}

/* FOOTER */
footer {
  border-top: 1px solid #cccccc;
}
#footer-nav {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 6% 0 0;
}
#footer-nav > ul {
  margin: 0 12% 0 0
}
#footer-nav > ul:last-child {
  margin-right: 0;
}
#footer-nav ul li {
  margin: 0 0 1.5em
}
#footer-nav ul li a {
  font-weight: bold;
}
#footer-nav ul li ul li {
  margin: 0.4em 0 0 
}
#footer-nav ul li ul li a {
  font-weight: normal;
}

.footer-contact {
  border-top: 1px solid #cccccc;
  text-align: center;
  margin: 4% 0 0;
  padding: 5% 0 6%;
}
.copyright {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 1.2em 0;
}

@media only screen and (min-width: 769px) {
  #footer-nav a:hover {
    text-decoration: underline;
  }
} 
@media only screen and (max-width: 768px) {
  #footer-nav {
    display: block
  }
  #footer-nav > ul {
    margin: 0;
  }
  #footer-nav ul li {
    margin: 0 0 0.6em
  }
  #footer-nav ul li ul li {
    margin: 0.3em 0 0 
  }
  .copyright {
    font-size: 12px;
  }
}

.pagetop {
  position: fixed;
  bottom: 4em;
  right: 2em;
  z-index:1;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    width: 13%;
    bottom: 1em;
    right: 1em;
  }
}

/* TOP LAYOUT */

.mv {
  position:relative;
  width: 100%;
  aspect-ratio: 1920 / 954;
}
.mv li {
  position:absolute;
  opacity:0;
  transition:all 1s ease-in-out;
  height:100%;
  object-fit:contain;
  width: 100%;
}
.mv li.is-active {
  opacity: 1;
}
.mv li .mv-img img {
  width: 100%;
}
.mv li .mv-ttl {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  background-color: rgb(43 130 119 / 43%);
  color: #fff;
  font-weight: bold;
  padding: 1em;
  font-size: 30px;
}

@media only screen and (max-width: 768px) {
  .mv li .mv-ttl {
    width: 85%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 16px;
    padding: 0.6em 0;
  }
}

.top .about {
  text-align: center;
  z-index: 1;
  position: relative;
}
.top .about .ttl {
  position: relative;
  overflow: hidden;
  margin: -6em 0 0;
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top .about .ttl {
    margin:0;
  }
}

.top .about .ttl h2 {
  position: relative;
}
.top .about .ttl h2 {
  font-size: 34px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding: 0 0 0.2em;
  margin: 3.5em 0 1.5em;
}
.top .about .ttl h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.5em;
  height: 1px;
  background-color: #333;
}
.top .about .ttl .ttl_en {
  position: absolute;
  font-size: 150px;
  color: #eaf2f1;
  white-space: nowrap;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  text-align: center;
  width: 100%;
  top: 0.5em;
  line-height: 1;
  z-index: -1;
  left:0;
  right: 0;
  margin: auto;
}
.top .about p {
  font-feature-settings: "palt";
}
.top .topics {
  position: relative;
  margin: 15em 0;
  padding:0;
}
.top .topics::before {
  content: '';
  width: 50vw;
  background-color: #eaf2f1;
  height: calc(100% + 15em);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.top .topics .topics__in{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top .topics .ttl {
  border-left: 1px solid #4d4d4d;
  padding: 0.4em 0 0 1.2em;
  width: 255px;
}
.top .topics .ttl h2 {
  width: 255px;
  font-size: 34px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 600;
  line-height: 1;
}
.top .topics .ttl .sub_ttl {
  font-size: 15px;
  font-weight: bold;
  margin: 0.3em 0 0;
}
.top .topics .list {
  width: calc(100% - 255px);
  border-top: 1px solid #cccccc;
}
.top .topics .list dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
  padding: 1.2em 0.3em;
}
.top .topics .list dl dt {
  width: 165px;
}
.top .topics .list dl dd {
  width: calc(100% - 165px);
}

@media only screen and (min-width: 769px) {
  .top .topics .list dl dd a:hover {
    text-decoration: underline;
  }
}

.top .menu {
  background: linear-gradient(90deg, #2b8277, #297f96);
  margin: 0 0 8em;
}
.top .menu ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 6em 0 4em;
}
.top .menu ul li {
  width: 48.18%;
  background-color: #fff;
  filter: drop-shadow(3px 3px 7px rgba(0,0,0,0.2));
  padding: 10px 10px 0 10px;
  margin: 0 0 2em
}
.top .menu ul li img {
  width: 100%;
}
.top .menu ul li .ttl {
  font-size: 20px;
  font-weight: bold;
  padding: 1em 4em 1em 0.8em;
  position: relative;
}
.top .menu ul li .ttl::after {
  content: '';
  background-image: url(../../information/images/arrow_black.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 2.4em;
  height: 8px;
  position: absolute;
  right: 1.3em;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .top .menu ul li:hover {
    background-color: #eaf2f1;
  }
} 
@media only screen and (max-width: 768px) {
  .top .about .ttl h2 {
    font-size: 20px;
  }
  .top .about .ttl .ttl_en {
    font-size: 65px;
    top: 0.85em;
  }
  .top .topics .ttl {
    margin: 0 0 3em;
  }
  .top .topics .ttl h2 {
    width: 100%;
    font-size: 20px;
  }
  .top .topics .ttl .sub_ttl {
    font-size: 11px;
  }
  .top .topics .list {
    width: 100%;
  }
  .top .topics .list dl dt {
    width: 140px;
  }
  .top .topics .list dl dd {
    width: calc(100% - 140px);
  }
  .top .menu ul li {
    width: 100%;
  }
  .top .menu ul li .ttl {
    font-size: 16px;
    padding: 1em 4em 1em 0.8em;
  }
}

main {
  padding: 175px 0 0 0;
}
@media only screen and (max-width: 768px) {
main {
  padding: 17% 0 0 0;
  }
}
/* PAGE LAYOUT */
.page {
  padding: 175px 0 8em;
}
@media only screen and (max-width: 768px) {
.page {
  padding: 17% 0 8em;
  }
}
.page section {
  overflow: hidden;
  padding-top: 175px;
  margin-top: -175px;
}
@media only screen and (max-width: 768px) {
  .page section {
    padding-top: 17%;
    margin-top: -17%;
  }
}

/* TITLE */
.page .mv {
  position: relative;
  height: 400px;
}
.page .mv img {
  object-fit: cover;
  height: 100%;
}
.page .mv .mv-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page .mv .mv-ttl .inner {
  height: 100%;
  
}
.page .mv .mv-ttl .ttl__in {
  background: linear-gradient(90deg, #2b8277, #297f96);
  width: 500px;
  color: #fff;
  padding: 40px;
  line-height: 1;
  position: absolute;
  bottom: 40px;
}
.page .mv .mv-ttl h1 {
  font-size: 34px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0 0 0.4em
}
.page .mv .mv-ttl h1::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
  margin: 0 0 0 0.8em;
}
.page .mv .mv-ttl .ttl-sub {
  font-size: 15px;
  font-weight: bold
}

@media only screen and (max-width: 768px) {
  .page .mv {
    height: 200px;
  }
  .page .mv .mv-ttl .ttl__in {
    width: 70%;
    padding: 25px;
    bottom: 20px;
  }
  .page .mv .mv-ttl h1 {
    font-size: 22px;
  }
  .page .mv .mv-ttl .ttl-sub {
    font-size: 12px;
  }
}
.mv-topics {
  background-color: #2B8277;
  color:#fff;
  padding: 2em 0;
}
.mv-topics .ttl__in {
  display: flex;
  align-items: baseline;
}
.mv-topics h1{
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-size: 34px;
  font-weight: bold;
}
.mv-topics .ttl-sub {
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 0 1em;
}



/* BREADCRUMB */
.breadcrumb {
  font-size: 15px;
  margin: 1.5em 0 0;
}
.breadcrumb ul li {
  display: inline-block;
}
.breadcrumb ul li::after {
  content: '>';
  margin: 0 0.7em 0 1.2em;
  font-size: 90%;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
  }
}


/* TITLE */
.page h2 {
  font-size: 34px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding: 0 0 0.2em;
  margin: 3.5em 0 1.5em;
}
.page .breadcrumb + section > .inner > h2 {
  margin: 1.5em 0 1.5em;
}
.page h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.5em;
  height: 1px;
  background-color: #333;
}
@media only screen and (max-width: 768px) {
  .page h2 {
    font-size: 20px;
  }
}

/* COPY */
.copy {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin: 0 0 2em;
}
@media only screen and (max-width: 768px) {
  .copy {
    font-size: 14px;
  }
}

/* IMAGE */
.img {
  margin: 0 auto;
  text-align: center;
}
p + .img {
  margin: 1.5em 0 0;
}
.img + p {
  margin: 1.5em 0 0;
}

/* LINK */
p a {
  text-decoration: underline;
  color: #2b8277;
}
.iconlink {
  position: relative;
}
.iconlink::after {
  content: '';
  width: 0.7em;
  height: 0.7em;
  background-image: url(../images/icon_link.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 0.6em;
}

/* BUTTON */
.btn-wht {
  text-align: center;
  margin: 3em 0 0;
}
.btn-wht .btn__in {
  border: 1px solid #333;
  display: inline-block;
  margin: 0 auto;
}
.btn-wht a {
  position: relative;
  display: block;
  padding: 1em 5.5em 1em 3.5em;
}
.btn-wht a::after {
  content: '';
  background-image: url(../../information/images/arrow_black.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 2.4em;
  height: 8px;
  position: absolute;
  right: 1.3em;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .btn-wht a:hover {
    background-color: #eaf2f1;
  }
} 
@media only screen and (max-width: 768px) {
  .btn-wht {
    margin: 3em auto 0;
  }
  .btn-wht a {
    padding: 0.8em 4.2em 0.8em 1.3em;
  }
} 
.btn-grd {
  text-align: center;
  margin: 3em 0 0;
}
.btn-grd .btn__in {
  display: inline-block;
  margin: 0 auto;
  background: linear-gradient(90deg, #2b8277, #297f96);
}
.btn-grd a {
  position: relative;
  display: block;
  padding: 1em 5.5em 1em 3.5em;
  color: #fff;
}
.btn-grd a::after {
  content: '';
  background-image: url(../../information/images/arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 2.4em;
  height: 8px;
  position: absolute;
  right: 1.3em;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .btn-grd a:hover {
    opacity: 0.7
  }
} 
@media only screen and (max-width: 768px) {
  .btn-grd {
    margin: 3em auto 0;
  }
  .btn-grd a {
    padding: 0.8em 4.2em 0.8em 1.3em;
  }
} 



/* INFORMATION */
.information-menu {
  background-color: #f2f2f2;
  margin: 6em 0 0;
}
.information-menu ul {
  padding: 7em 0 8em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.information-menu ul li {
  width: 48.18%;
  background-color: #fff;
  padding: 0 2em 0;
  position: relative;
}
.information-menu ul li:nth-child(odd) {
  margin-bottom: 6em;
}
.information-menu ul li:nth-child(even) {
  margin-top: 5em;
}
.information-menu ul li:last-child {
  margin: 0;
}
.information-menu ul li .no {
  color: #2b8277;
  font-size: 50px;
  display: inline-block;
  border-bottom: 2px solid #2b8277;
  line-height: 1;
  margin: -0.6em 0 0;
  float: left;
}
.information-menu ul li p {
  clear: both;
  margin: 2.8em 0 2em;
}
.information-menu ul li .btn {
  background: linear-gradient(90deg, #2b8277, #297f96);
  min-width: 280px;
  display: inline-block;
  margin: 0 0 -2em auto;
  float: right;
}
.information-menu ul li .btn a {
  color: #fff;
  position: relative;
  display: block;
  padding: 1em 1.5em;
}
.information-menu ul li .btn a::after {
  content: '';
  background-image: url(../../information/images/arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 2.4em;
  height: 8px;
  position: absolute;
  right: 1.3em;
  bottom: 0;
  top: 0;
  margin: auto;
}
.information-movie {
  text-align: center;
  margin: 6em 0 0;
}
.information-movie iframe {
  width: 70%;
  margin: 0 auto;
  aspect-ratio:  560 / 315;
}
.course {
  background-color: #eaf2f1;
  padding: 6em 0;
}
.course ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.course li {
  background-color: #fff;
  width: 48.18%;
  padding: 30px;
}
.course li .ttl {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2em;
}
.course li .ttl .no {
  width: 2.0em;
  height: 2.0em;
  font-size: 40px;
  color: #fff;
  background-color: #2b8277;
  display: flex;
  justify-content: center;
  align-items: center;
}
.course li .ttl .txt {
  width: calc(100% - 6em);
}
.course li .ttl .txt h3 {
  color: #2b8277;
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
}
.course li .ttl .txt .ways {
  line-height: 1.65;
  margin:  0.5em 0 0;
}
.chart {
  margin: 3em 0 0;
}
.chart ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
.chart ul li:nth-child(1) {
  width: 46.27%;
  margin: 0 4% 0 0;
}
.chart ul li:nth-child(2) {
  width: 45.64%;
}

.employment {
  border: 5px solid #cddedb;
  padding: 45px;
  text-align: center;
  margin: 3em 0 0;
}
.employment h3 {
  font-size: 20px;
  font-weight: bold;
}
.employment h4 {
  font-weight: bold;
  margin: 2em 0 0;
}
.qa {

}
.qa dt {
  position: relative;
  padding: 0 0 0 2.5em;
}
.qa dt::before {
  content: 'Q';
  font-size: 164.7%;
  color: #2b8277;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  line-height: 1;
}
.qa dd {
  position: relative;
  padding: 0 0 2em 2.5em;
  margin: 1em 0 2em;
  border-bottom: 1px solid #ccc;
}
.qa dd::before {
  content: 'A';
  font-size: 164.7%;
  color: #2b8277;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  line-height: 1;
}
.qa dl:last-child dd {
  margin-bottom: 0;
} 


@media only screen and (max-width: 768px) {
  .information-menu ul li {
    width: 100%;
    padding: 0 1.5em 0;
  }
  .information-menu ul li:nth-child(odd) {
    margin-bottom: 6em;
  }
  .information-menu ul li:nth-child(even) {
    margin-top: 0;
    margin-bottom: 6em;
  }
  .information-menu ul li .no {
    font-size: 40px;
  }
  .information-menu ul li p {
    margin: 2.3em 0 0.5em;
  }
  .information-movie iframe {
    width: 100%;
  }
  .course li {
    width: 100%;
    padding: 1.5em;
    margin-bottom: 2em;
  }
  .course li:last-child {
    margin-bottom: 0;
  }
  .course li .ttl .no {
    width: 2.0em;
    height: 2.0em;
    font-size: 30px;
  }
  .course li .ttl .txt {
    width: calc(100% - 5.5em);
  }
  .course li .ttl .txt h3 {
    font-size: 18px;
  }
  .chart ul li:nth-child(1) {
    width: 58.46%;
    margin: 0 auto 2em auto;
  }
  .chart ul li:nth-child(2) {
    width: 77.23%;
    margin: 0 18.77% 0 0;
  }
  .employment {
    padding: 2em;
  }
  .employment h3 {
    font-size: 16px;
  }
  .employment h4 {
    font-weight: bold;
    margin: 1.5em 0 0;
  }
}


/* CURRICULUM */
.curriculum-flow {
  position: relative;
  margin: 3em 0;
}
.curriculum-flow::before {
  content: '';
  width: 5px;
  background-color: #cddedb;
  height: 100%;
  position: absolute;
  top: 0;
  left: 73px;
}
.curriculum-flow dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 2em;
}
.curriculum-flow dl:last-child {
  margin: 0;
}
.curriculum-flow dl dt {
  width: 150px;
  font-size: 24px;
  color: #2b8277;
  text-align: center;
  position: relative;
  border: solid 1px #cccccc;
  background-color: #fff;
}
.curriculum-flow dl dt::before,
.curriculum-flow dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
  
}
.curriculum-flow dl dt::before {
  right: -22px;
  border: 8px solid transparent;
  border-left: 14px solid #FFF;
  z-index: 2;
}
.curriculum-flow dl dt::after {
  right: -25px;
  border: 9px solid transparent;
  border-left: 16px solid #cccccc;
  z-index: 1;
}
.curriculum-flow dl dt span {
  font-size: 166.67%;
}
.curriculum-flow dl dd {
  width: calc(100% - 180px);
  border: 1px solid #ccc;
  padding: 30px 40px;
}
.curriculum-flow dl dd .ttl {
  font-size: 117.65%;
  color: #2b8277;
  font-weight: bold;
  margin: 0 0 1em;
}
.curriculum-example ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.curriculum-example ul li {
  width: 32%;
}
.curriculum-example ul li .ttl {
  font-weight: bold;
  margin: 1em 0 0.8em;
  padding:0 0 0.5em;
  font-size: 115%;
  border-bottom: 1px solid #2b8277;
}
.curriculum-example ul li .movie {
  position: relative;
}
.curriculum-example ul li video {
  aspect-ratio:  560 / 315;
  width: 100%;
  vertical-align: bottom;
}
.curriculum-example ul li iframe {
  aspect-ratio:  560 / 315;
  width: 100%;
  vertical-align: bottom;
}
.curriculum-example ul li .caption {
  text-align: center;
  font-size: 88.24%;
  margin: 0.6em 0 0;
}

@media only screen and (max-width: 768px) {
  .curriculum-flow::before {
    left: 38px;
  }
  .curriculum-flow dl dt {
    width: 80px;
    font-size: 18px;
  }
  .curriculum-flow dl dd {
    width: calc(100% - 95px);
    padding: 1em 1.3em;
  }
  .curriculum-flow dl dt::before {
    right: -17px;
    border: 6px solid transparent;
    border-left: 11px solid #FFF;
  }
  .curriculum-flow dl dt::after {
    right: -20px;
    border: 7px solid transparent;
    border-left: 13px solid #cccccc;
  }
  .curriculum-example ul li {
    width: 100%;
    margin: 0 0 1.5em;
  }
  .curriculum-example ul li:last-child {
    margin: 0;
  }
} 


/* LABORATORY */
.laboratory .menu {
  margin: 3em 0 0;
}
.laboratory .menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 7em
}
.laboratory .menu li:last-child {
  margin: 0;
}
.laboratory .menu li .img {
  width: 45.45%;
  margin: 0;
}
.laboratory .menu li .txt {
  width: 50%;
}
.laboratory .menu li .txt .ttl {
  text-align: center;
  margin: 0 0 2.5em;
}
.laboratory .menu li .txt .ttl .ttl-en {
  color: #2b8277;
  font-size: 15px;
  font-weight: bold;
}
.laboratory .menu li .txt .ttl h2 {
  margin: 0;
  font-size: 28px;
}
.laboratory .menu li .txt .ttl h2::before {
  height: 2px;
  background-color: #2b8277;
}
.laboratory .menu li:nth-child(2) .img {
  order: 2
}
.laboratory .menu li:nth-child(2) .txt {
  order: 1
}

@media only screen and (max-width: 768px) {
  .laboratory .menu li .img {
    width: 100%;
    margin: 0 0 2em;
  }
  .laboratory .menu li .txt {
    width: 100%;
  }
  .laboratory .menu li:nth-child(2) .img {
    order: 1
  }
  .laboratory .menu li:nth-child(2) .txt {
    order: 2
  }
  .laboratory .menu li .txt .ttl .ttl-en {
    font-size: 12px;
  }
  .laboratory .menu li .txt .ttl h2 {
    font-size: 20px;
  }
}


.laboratory-ttl {
  margin: 3em 0 6em
}
.laboratory-ttl .img {
  width: 75%;
  text-align: left;
  margin: 0;
}
.laboratory-ttl .ttl {
  width: 68.36%;
  background-color: #2b8277;
  color: #fff;
  margin: -7em 0 0 auto;
  padding: 3em 3em 2em;
  position: relative;
  z-index: 1;
}
.laboratory-ttl .ttl .ttl-ne {
  font-size: 15px;
}
.laboratory-ttl .ttl h2 {
  margin: 0;
  text-align: left;
  line-height: 1.5
}
.laboratory-ttl .ttl h2::before {
  content: none;
}

@media only screen and (max-width: 768px) {
  .laboratory-ttl .img {
    width: 90%;
  }
  .laboratory-ttl .ttl {
    width: 90%;
    margin: -3em 0 0 auto;
    padding: 1.5em 1.5em 0.8em;
  }
  .laboratory-ttl .ttl .ttl-ne {
    font-size: 12px;
  }
} 

.ank {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}
.ank li {
  border-bottom: 2px solid #2b8277;
  position: relative;
  padding: 0 0 0.8em;
  text-align: center
}
.ank li:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 8px solid #2b8277;
}

.ank4 li {
  width: 23%;
}
.ank5 li {
  width: 18.91%;
}
.ank6 li {
  width: 15.45%;
}

@media only screen and (max-width: 768px) {
  .ank li {
    width: 48% !important;
    margin: 0 0 2em;
  }
}


.laboratory-list .list-ttl {
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0.3em
}
.laboratory-list h3 {
  font-size: 34px;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 600;
}
.list__in{
  margin-top: calc(-175px + 7em);
  padding-top:175px;
}
.list-content  .img {
  float: right;
  text-align: center;
  margin: 0 0 0 2em;
  aspect-ratio: 510 / 320;
}
.list-content .img .caption {
  margin: 0.8em 0 0
}
.list-content .img .caption__in {
  display: inline-block;
  text-align: left;
  font-size: 12px;
}
.list-content h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 2em;
  margin: 2.3em 0 0.7em;
}
.list-content h4::before {
  content: '';
  width: 1em;
  height: 2px;
  background-color: #2b8277;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.list-content .keyword {
  display: flex;
  flex-wrap: wrap;
}

.list-content .keyword li {
  background: #eaf2f1;
  margin: 0 10px 10px 0;
  padding: 0.1em 1em;
}
.list-content .keyword li:last-child {
  margin-right: 0
}
.list-content .theme {
  padding: 0 0 0 2.5em;
}
.list-content .theme li {
  position: relative;
  padding: 0 0 0 1.2em
}
.list-content .theme li::before {
  content: '';
  width: 0.4em;
  height: 0.4em;
  background-color: #2b8277;
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0.2em;
}
.list-content p {
  padding: 0 0 0 2.5em;
}
.list-content .teacher {
  padding: 0 0 0 2.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-content .teacher li {
  width: 48%;
}
.list-content .teacher li .name {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding: 0 0.5em 0.5em;
  margin: 0 0 1.2em;
}
.list-content .teacher li .specialty {
  display: flex;
  align-items: flex-start;
}
.list-content .teacher li .specialty dt {
  background-color: #f2f2f2;
  padding: 0.1em 0.8em;
  margin: 0 1.5em 0 0;
  width:4em;
  text-align: center;
}
.list-content .teacher li .specialty dd {
  width:calc(100% - 4em);
  margin: 0.1em 0 0;
}

.list-content .teacher li .link {
  text-align: right;
  margin: 1em 0 0
}

@media only screen and (max-width: 992px) {
  .list-content  .img {
    width: 50%
  }
}

@media only screen and (max-width: 768px) {
  .laboratory-list h3 {
    font-size: 22px;
  }
  .list-content  .img {
    float: none;
    margin: 2em 0 0;
    width: 100%
  }
  .list-content .img .caption__in {
    font-size: 10px;
  }
  .list-content h4 {
    font-size: 18px;
    padding: 0 0 0 1.6em;
    margin: 2.0em 0 0.5em;
  }
  .list-content h4::before {
    width: 0.8em;
  }
  .list-content .theme {
    padding: 0 0 0 2.0em;
  }
  .list-content p {
    padding: 0 0 0 2.0em;
  }
  .list-content .teacher {
    padding: 0 0 0 2.0em;
  }
  .list-content .teacher li {
    width: 100%;
    margin: 0 0 2em;
  }
  .list-content .teacher li:last-child {
    margin: 0
  }
}


.link h3 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #CCC;
  padding: 0 0 0.5em;
}
.link h3 .logo {
  display: flex;
  align-items: center;
}
.link h3 .logo span {
  margin: 0 0.7em 0 0;
}
.link h3 .logo p {
  display: inline-block;
  font-weight: bold;
}
.link .link-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 5em
}
.link .link-box .link-box__in {
  width: 48%;
}
.link .link-box h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 2em;
  margin: 2.3em 0 0.7em;
}
.link .link-box h4::before {
  content: '';
  width: 1em;
  height: 2px;
  background-color: #2b8277;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.link .link-box ul {
  padding: 0 0 0 2.5em
}
.link .link-box li {
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0 1em;
}
.link .link-box li::before {
  content: '';
  width: 0.4em;
  height: 0.4em;
  background-color: #2b8277;
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0.2em;
}
.link .link-box li:last-child {
  margin-bottom: 0
}


@media only screen and (max-width: 768px) {

  .link h3 {
    font-size: 20px;
  }
  .link .link-box .link-box__in {
    width: 100%;
  }
  .link .link-box h4 {
    font-size: 18px;
    padding: 0 0 0 1.6em;
    margin: 2.0em 0 0.5em;
  }
  .link .link-box h4::before {
    width: 0.8em;
  }
  .link .link-box ul {
    padding: 0 0 0 2.0em
  }
}


.modal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.modal__overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 6em 1em;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width:800px;
  width: 80%;
}
.modal__content .close-btn {
  border: 1px solid #000;
  max-width: 380px;
  width: 80%;
  display: inline-block;
  margin: 1.5em auto 0;
  padding: 1em 1.5em;
  cursor: pointer;
  font-weight: bold;
}
.modal__content .link-btn {
  max-width: 380px;
  width: 80%;
  display: inline-block;
  margin: 3em auto 0;
}
.modal__content .link-btn a {
  background: linear-gradient(90deg, #2b8277, #297f96);
  color: #fff;
  position: relative;
  display: block;
  padding: 1em 1.5em;
  font-weight: bold;
}
.modal__content .link-btn a::after {
    content: '';
    background-image: url(../../information/images/arrow.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 2.4em;
    height: 8px;
    position: absolute;
    right: 1.3em;
    bottom: 0;
    top: 0;
    margin: auto;
}
.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

.topics {
  padding: padding: 17% 0 8em;
}
@media only screen and (max-width: 768px) {
.topics {
  padding: 17% 0 8em;
  }
}
.topics section {
  overflow: hidden;
  padding-top: 175px;
  margin-top: -175px;
}
@media only screen and (max-width: 768px) {
  .topics section {
    padding-top: 17%;
    margin-top: -17%;
  }
}
.topics h2 {
  font-size: 130%;
  font-weight: bold;
  margin: 1.5em 0 1.0em;
  border-bottom: 1px solid #2B8277
}
