@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&subset=japanese");
html {
  background-color: transparent;
  background-image: none;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333333;
}
body a {
  color: #333333;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

/*----------------------------------------------------- */
/*  common           */
/*----------------------------------------------------- */
.sp_only {
  display: none;
}

.bold {
  font-weight: bold;
}

.u_line {
  text-decoration: underline;
}
.u_line:hover {
  text-decoration: none;
}

.inner {
  box-sizing: content-box;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 3%;
}

img {
  max-width: 100%;
}

/* ------ タイトル ------ */
.cmn_ttl_01 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.cmn_ttl_01 span {
  border-bottom: 5px solid #333;
}

.cmn_ttl_01 + p {
  text-align: center;
  margin-bottom: 40px;
}

/* ------ ボタン ------ */
.cmn_btn_01 {
  height: 60px;
  line-height: 60px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  background: #4d7500;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  max-width: 400px;
  transition: 0.3s ease-in-out;
}
.cmn_btn_01::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cmn_btn_01:hover {
  text-decoration: none !important;
  opacity: 0.7;
}
.cmn_btn_01 span {
  display: inline;
  background: #fff;
  color: #4d7500;
  font-size: 12px;
  padding: 2px 8px;
  margin-left: 10px;
  line-height: 1;
}

.cmn_tag {
  display: inline;
  background: #333;
  color: #fff;
  font-weight: bold;
  padding: 2px 8px;
  line-height: 1;
}

/* ------ イメージ ------ */
.cmn_img {
  display: block;
  overflow: hidden;
}
.cmn_img img {
  transition: 0.3s ease-in-out;
}
.cmn_img img:hover {
  transform: scale(1.1, 1.1);
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  /* ------ タイトル ------ */
  .cmn_ttl_01 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
/*----------------------------------------------------- */
/*  header           */
/*----------------------------------------------------- */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 769px) {
  .header {
    height: 120px;
  }

  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }

  .header_logo {
    margin-left: 30px;
    line-height: 1;
    padding-left: 55px;
    background: url(../images/logo.png) left center no-repeat;
    background-size: 46px;
  }
  .header_logo p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2px;
  }
  .header_logo span {
    font-size: 10.6px;
  }

  .nav {
    display: flex;
    justify-content: center;
    height: 50px;
    width: 100%;
    background: #4d7500;
  }
  .nav li {
    width: 15%;
    line-height: 1.2;
    position: relative;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
  }
  .nav li:hover {
    background: #719133;
  }
  .nav li a {
    width: 100%;
    text-align: center;
    /*height: 50px;
    line-height: 50px;*/
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
  }

  .header_links {
    display: flex;
    margin-right: 30px;
    font-size: 14px;
  }
  .header_links li {
    margin-left: 15px;
  }
  .header_links a {
    position: relative;
    padding-left: 20px;
  }
  .header_links a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #4d7500;
    border-bottom: 2px solid #4d7500;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header_links a:hover {
    text-decoration: underline;
  }

  .header_links_sp,
  .menu_toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }

  .header_logo {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    display: block;
    line-height: 1;
    padding-left: 35px;
    background: url(../images/logo.png) left center no-repeat;
    background-size: 30px;
  }
  .header_logo p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
  }
  .header_logo span {
    display: block;
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: left center;
  }

  .menu_wrap {
    background-color: #f1f1f0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 0 3% 20px;
    opacity: 0;
    visibility: hidden;
  }

  .nav > li {
    border-bottom: 1px solid #ccc;
  }
  .nav a {
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 15px 0;
  }
  .nav a:hover {
    text-decoration: none;
    color: #333;
  }

  .header_links {
    display: none;
  }

  .header_links_sp {
    margin-top: 20px;
  }
  .header_links_sp li {
    margin-bottom: 10px;
  }
  .header_links_sp a {
    position: relative;
    padding-left: 20px;
  }
  .header_links_sp a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #4d7500;
    border-bottom: 2px solid #4d7500;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu_toggle {
    z-index: 1000;
    display: block;
    position: absolute;
    top: 19px;
    right: 3%;
    height: 32px;
    cursor: pointer;
  }
  .menu_toggle div {
    position: relative;
    width: 30px;
  }
  .menu_toggle span {
    width: 100%;
    height: 2px;
    right: 0;
    display: block;
    background: #4d7500;
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .menu_toggle span:nth-child(1) {
    top: 0;
  }
  .menu_toggle span:nth-child(2) {
    top: 10px;
  }
  .menu_toggle span:nth-child(3) {
    top: 20px;
  }

  .is-open {
    overflow: hidden;
  }
  .is-open .menu_toggle span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .is-open .menu_toggle span:nth-child(2) {
    opacity: 0;
  }
  .is-open .menu_toggle span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
  .is-open .menu_wrap {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow-y: scroll;
  }
}
/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
  padding: 40px 0 20px;
  background: #4d7500;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .copy {
  width: 100%;
  text-align: right;
  color: #fff;
  font-size: 12px;
}

.footer_info {
  color: #fff;
}
.footer_info a {
  color: #fff;
}

.footer_logo {
  display: block;
  line-height: 1;
  padding-left: 55px;
  background: url(../images/logo_w.png) left center no-repeat;
  background-size: 46px;
  margin-bottom: 20px;
}
.footer_logo p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
}
.footer_logo span {
  font-size: 10.6px;
}

.footer_text {
  font-size: 14px;
}

.footer_text + .footer_text {
  margin-top: 20px;
}

.footer_nav {
  display: flex;
  justify-content: flex-end;
}
.footer_nav ul + ul {
  margin-left: 80px;
}
.footer_nav ul li a {
  color: #fff;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}
.footer_nav ul li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.footer_nav ul li a:hover {
  text-decoration: underline;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#page-top a {
  display: block;
  width: 50px;
  height: 50px;
  background: #333;
  position: relative;
}
#page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(50%) translateY(-25%) rotate(-45deg);
}

@media screen and (min-width: 769px) {
  #page-top:hover {
    transition: 0.3s ease-in-out;
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 10px;
  }
  .footer .inner {
    display: block;
  }
  .footer .copy {
    width: 100%;
    text-align: center;
    font-size: 10px;
  }

  .footer_logo {
    padding-left: 35px;
    background-size: 30px;
  }
  .footer_logo p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
  }
  .footer_logo span {
    display: block;
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: left center;
  }

  .footer_info {
    margin-bottom: 20px;
  }

  .footer_text {
    font-size: 12px;
  }

  .footer_text + .footer_text {
    margin-top: 10px;
  }

  .footer_nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .footer_nav ul + ul {
    margin-left: 30px;
  }
  .footer_nav ul li a {
    color: #fff;
    font-size: 12px;
  }

  #page-top {
    position: fixed;
    bottom: 2%;
    right: 3%;
  }
}
/*----------------------------------------------------- */
/*  top           */
/*----------------------------------------------------- */
/* ------ kv ------ */
.kv {
  margin-top: 120px;
  height: 540px;
  background: url(../images/bg_kv.png) center center;
  background-size: 1400px;
}
.kv .inner {
  height: 540px;
  display: flex;
  align-items: center;
}
.kv h1 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.7;
}
.kv h1 span {
  background: #fff;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .kv {
    margin-top: 60px;
    height: 240px;
    background: url(../images/bg_kv.png) center center no-repeat;
    background-size: cover;
  }
  .kv .inner {
    height: 240px;
  }
  .kv h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: -0.1em;
  }
  .kv h1 span {
    background: #fff;
    padding: 0 10px;
  }
}
/* ------ top_news ------ */
.top_news {
  background: url(../images/bg_main.png) center bottom no-repeat #80c8e2;
  background-size: cover;
  padding: 60px 0;
}
.top_news .cmn_ttl_01 {
  color: #fff;
}
.top_news .cmn_ttl_01 span {
  border-bottom: 5px solid #fff;
}

.top_news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_news_wrap::after {
  content: "";
  display: block;
  width: 31.5%;
}

.news_box {
  width: 31.5%;
  background: #fff;
  margin-bottom: 2.5%;
}
.news_box figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news_detail_wrap {
  padding: 20px;
}

.news_date {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
}

.news_title {
  margin-bottom: 5px;
}
.news_title a {
  font-size: 18px;
  color: #4d7500;
  font-weight: bold;
  line-height: 1.4;
}
.news_title a:hover {
  text-decoration: underline;
}

.news_text {
  margin-bottom: 10px;
}
.news_lab {
  display: inline-block;
  background: url(../images/ico_laboratory.png) 8px center no-repeat #333;
  background-size: 16px;
  color: #fff;
  padding: 2px 10px 2px 30px;
  font-size: 14px;
}
.news_page {
  text-align: center;
  margin-top: 25px;
}
.news_page a {
  padding: 10px 50px;
  background-color: #fff;
  border-radius: 25px;
  font-weight: bold;
  border: #333 3px solid;
}
.news_page a:hover {
  color: #616161;
  border: #4d7500 3px solid;
}
@media screen and (max-width: 768px) {
  .top_news {
    background: #80c8e2;
    background-size: cover;
    padding: 30px 0;
  }

  .top_news_wrap {
    display: block;
  }

  .news_box {
    width: 100%;
    margin-bottom: 5%;
  }
  .news_box figure img {
    height: 150px;
  }

  .news_detail_wrap {
    padding: 15px;
  }

  .news_date {
    font-size: 12px;
  }

  .news_title {
    margin-bottom: 5px;
  }
  .news_title a {
    font-size: 16px;
  }

  .news_text {
    margin-bottom: 10px;
  }

  .news_lab {
    display: inline-block;
    background: url(../images/ico_laboratory.png) 8px center no-repeat #333;
    background-size: 16px;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px 2px 30px;
  }
}
/*----------------------------------------------------- */
/*  sub           */
/*----------------------------------------------------- */
/* ------ sub_ttl ------ */
.sub_ttl {
  margin-top: 120px;
  height: 240px;
}
.sub_ttl .inner {
  height: 240px;
  display: flex;
  align-items: center;
}
.sub_ttl h1 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
.sub_ttl h1 span {
  background: #fff;
  padding: 10px 20px;
}

.exam_sub_ttl {
  background: url(../exam/images/bg_title.png) center center;
  background-size: cover;
}

.laboratory_sub_ttl {
  background: url(../laboratory/images/bg_title.png) center center;
  background-size: cover;
}

.message_sub_ttl {
  background: url(../message/images/bg_title.png) center center;
  background-size: cover;
}

.movie_sub_ttl {
  background: url(../movie/images/bg_title.png) center center;
  background-size: cover;
}

.visual_sub_ttl {
  background: url(../visual/images/bg_title.png) center center;
  background-size: cover;
}

.about_sub_ttl {
  background: url(../about/images/bg_title.png) center center;
  background-size: cover;
}
.data_sub_ttl {
  background: url(../data/images/bg_title.png) center center;
  background-size: cover;
}
.course_sub_ttl {
  background: url(../course/images/bg_title.png) center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sub_ttl {
    margin-top: 60px;
    height: 140px;
  }
  .sub_ttl .inner {
    height: 140px;
  }
  .sub_ttl h1 {
    font-size: 20px;
  }
  .sub_ttl h1 span {
    background: #fff;
    padding: 0 10px;
  }
}
/* ------ breadcrumb_list ------ */
.breadcrumb_list {
  background: #f1f1f0;
  padding: 10px 0;
}
.breadcrumb_list ul {
  display: flex;
  font-size: 14px;
}
.breadcrumb_list ul li:not(:last-child)::after {
  content: ">";
  padding: 0 10px;
}
.breadcrumb_list ul a {
  text-decoration: underline;
}
.breadcrumb_list ul a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .breadcrumb_list ul {
    font-size: 12px;
  }
}
/* ------ laboratory ------ */
.laboratory {
  padding: 60px 0 0;
}

.local_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.local_nav li {
  width: 32.5%;
  margin-bottom: 1.5%;
}

.bg_type {
  background: #f1f1f0;
}

.laboratory_contents {
  padding: 60px 0;
}
.laboratory_contents .inner {
  max-width: 800px;
  padding-top: 180px;
  margin-top: -180px;
}
.laboratory_contents .title01 {
  text-align: center;
}
.laboratory_contents h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  display: inline-block;
  background: #4d7500;
  color: #fff;
  padding: 0 20px;
}
.laboratory_contents h3 span {
  font-size: 12px;
  vertical-align: 0.3em;
  margin-left: 10px;
}
.laboratory_contents .text01 {
  margin-bottom: 40px;
}

.bg_type .laboratory_box {
  background: #fff;
}

.laboratory_box {
  padding: 30px 30px 20px;
  background: #f1f1f0;
}
.laboratory_box h4 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
.laboratory_box .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.laboratory_box .laboratory_teacher {
  width: 24%;
}
.laboratory_box .laboratory_theme {
  width: 72%;
}
.laboratory_box .laboratory_theme p {
  margin: 10px 0 20px;
}

.laboratory_imgaes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.laboratory_imgaes::after {
  content: "";
  display: block;
  width: 32%;
}
.laboratory_imgaes li {
  width: 32%;
  margin-bottom: 3%;
}
.laboratory_imgaes li:hover {
  opacity: 0.8;
}

.message_box {
  padding: 30px 30px 20px;
}

@media screen and (max-width: 768px) {
  .laboratory {
    padding: 30px 0 0;
  }

  .local_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .local_nav li {
    width: 49%;
    margin-bottom: 1.5%;
  }
  .local_nav .cmn_btn_01 {
    height: auto;
    line-height: 1.4;
    font-size: 12px;
    padding: 10px 0;
  }
  .local_nav .cmn_btn_01 span {
    display: inline-block;
    font-size: 10px;
    margin-left: 0px;
    margin-top: 5px;
  }

  .laboratory_contents {
    padding: 30px 0;
  }
  .laboratory_contents .inner {
    padding-top: 90px;
    margin-top: -90px;
  }
  .laboratory_contents h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .laboratory_contents h3 span {
    vertical-align: 0.2em;
  }
  .laboratory_contents .text01 {
    margin-bottom: 20px;
  }

  .bg_type .laboratory_box {
    background: #fff;
  }

  .laboratory_box {
    padding: 20px 20px 15px;
  }
  .laboratory_box h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .laboratory_box .wrap {
    display: block;
    margin-bottom: 20px;
  }
  .laboratory_box .laboratory_teacher {
    width: 60%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .laboratory_box .laboratory_teacher img {
    display: block;
    width: 60%;
    margin: 0 auto 10px;
  }
  .laboratory_box .laboratory_teacher .cmn_tag {
    margin: 0px;
  }
  .laboratory_box .laboratory_teacher span {
    display: block;
    margin-top: 5px;
  }
  .laboratory_box .laboratory_theme {
    width: 100%;
    text-align: center;
  }
  .laboratory_box .laboratory_theme p {
    text-align: left;
  }
}
/* ------ exam ------ */
.exam {
  padding: 60px 0 0;
}
.exam .local_nav {
  justify-content: center;
}
.exam .local_nav li {
  margin: 0 1%;
}
.exam .local_nav .cmn_btn_01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.exam_contents {
  padding: 60px 0;
}
.exam_contents .inner {
  max-width: 800px;
}

.qaa dt,
.qaa dd {
  display: flex;
}
.qaa dt {
  margin-bottom: 20px;
}
.qaa dd {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.qaa .ttl_q,
.qaa .ttl_a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  margin-right: 20px;
  border-radius: 21px;
  font-weight: bold;
}
.qaa .ttl_q + p,
.qaa .ttl_a + p {
  flex: 1;
  padding-top: 9px;
}
.qaa .ttl_q {
  background: #4d7500;
}
.qaa .ttl_a {
  background: #333;
}

@media screen and (max-width: 768px) {
  .exam {
    padding: 30px 0 0;
  }
  .exam .local_nav {
    justify-content: space-between;
  }
  .exam .local_nav li {
    width: 49%;
    margin: 0 0 1.5%;
  }

  .exam_contents {
    padding: 30px 0;
  }

  .qaa .ttl_q,
  .qaa .ttl_a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 15px;
  }
  .qaa .ttl_q + p,
  .qaa .ttl_a + p {
    flex: 1;
    padding-top: 7px;
  }
}
/* ------ visual ------ */
.visual {
  padding: 60px 0 10px;
}
.visual h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.visual_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
margin-top: 30px;
}
.visual_list::after {
  content: "";
  display: block;
  width: 32%;
}
.visual_list li {
  width: 32%;
  margin-bottom: 3%;
}

@media screen and (max-width: 768px) {
  .visual {
    padding: 30px 0 10px;
  }
  .visual h3 {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .visual_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .visual_list::after {
    content: "";
    display: block;
    width: 48.5%;
  }
  .visual_list li {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
/* ------ about ------ */
.about {
  padding: 60px 0 0px;
  line-height: 1.8;
}
.about .inner {
  max-width: 800px;
}
.about h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.about section {
  margin-bottom: 60px;
}
.about .cmn_btn_01 {
  margin-top: 40px;
}
.about .cmn_btn_01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.about .president .wrap {
  display: flex;
}
.about .president figure {
  max-width: 200px;
  margin-right: 40px;
}
.about .president div {
  flex: 1;
}
.about .president h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 30px 0 0px;
    line-height: 1.6;
  }
  .about h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .about section {
    margin-bottom: 30px;
  }
  .about .cmn_btn_01 {
    margin-top: 20px;
  }
  .about .president .wrap {
    flex-direction: column;
  }
  .about .president figure {
    max-width: 50%;
    margin: 0 auto 20px;
  }
  .about .president h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/* ------ message ------ */
.message {
  padding: 60px 0 0px;
}

.message_contents {
  padding: 60px 0 1px;
  background: #f1f1f0;
}
.message_contents .inner {
  max-width: 800px;
}

.message_wrap {
  background: #fff;
  padding: 30px;
  margin-bottom: 60px;
}

.message_peple {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.message_pic {
  width: 180px;
  margin-right: 30px;
}

.message_name {
  font-size: 12px;
}
.message_name li:nth-child(1) {
  font-size: 14px;
  font-weight: bold;
}
.message_name li:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
}
.message_name li:nth-child(3) {
  font-size: 14px;
}

.message_text {
  flex: 1;
}
.message_text h3 {
  border-left: 5px solid #4d7500;
  padding-left: 12px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.message_text h3 + p {
  margin-bottom: 30px;
}

.message_timetable ul {
  display: flex;
  justify-content: space-between;
}
.message_timetable ul h3 {
  border-left: 5px solid #4d7500;
  padding-left: 12px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.message_timetable ul p {
  font-size: 12px;
}

.message_report {
  background: #f1f1f0;
  padding: 30px;
}
.message_report h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.message_report h3 span {
  display: inline;
  background: #4d7500;
  color: #fff;
  padding: 2px 8px;
  line-height: 1.2;
  margin-right: 10px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: 4px;
}
.message_report figure {
  float: right;
  margin-left: 20px;
}

.report_title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.instructor {
  background: #fff;
  padding: 15px;
  margin-top: 20px;
}
.instructor h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.instructor h4 em {
  display: inline;
  background: #333;
  color: #fff;
  padding: 2px 8px;
  line-height: 1.2;
  margin-right: 10px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: 4px;
}
.instructor h4 span {
  font-weight: normal;
  font-size: 12px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 30px 0 0px;
  }

  .message_contents {
    padding: 30px 0 1px;
  }

  .message_wrap {
    padding: 15px;
    margin-bottom: 30px;
  }

  .message_peple {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .message_pic {
    width: 100%;
    margin: 0px auto 20px;
  }
  .message_pic figure {
    width: 50%;
    margin: 0 auto 10px;
  }

  .message_text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .message_text h3 + p {
    margin-bottom: 30px;
  }

  .message_timetable ul {
    flex-direction: column;
  }
  .message_timetable ul h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .message_timetable ul p {
    font-size: 10px;
    margin-bottom: 20px;
  }

  .message_report {
    padding: 15px;
  }
  .message_report h3 {
    font-size: 18px;
  }
  .message_report h3 span {
    display: inline;
    background: #4d7500;
    color: #fff;
    padding: 2px 8px;
    line-height: 1.2;
    margin-right: 10px;
    font-size: 12px;
    font-weight: normal;
    vertical-align: 2px;
  }
  .message_report figure {
    float: none;
    margin: 0 auto 20px;
    text-align: center;
  }

  .report_title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .instructor {
    background: none;
    padding: 0;
    margin-top: 20px;
  }
  .instructor h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .instructor h4 em {
    display: inline;
    background: #333;
    color: #fff;
    padding: 2px 8px;
    line-height: 1.2;
    margin-right: 10px;
    font-size: 12px;
    font-weight: normal;
    vertical-align: 2px;
  }
  .instructor h4 span {
    font-weight: normal;
    font-size: 12px;
    padding-left: 10px;
  }
}
/* ------ data ------ */
.data {
  padding: 60px 0 0px;
  line-height: 1.8;
}
.data .inner {
  max-width: 800px;
}
.data h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.data section {
  margin-bottom: 60px;
}
.data .cmn_btn_01 {
  margin-top: 40px;
}
.data .cmn_btn_01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.data .president .wrap {
  display: flex;
}
.data .president figure {
  max-width: 200px;
  margin-right: 40px;
}
.data .president div {
  flex: 1;
}
.data .president h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.graph_top {
  background-color: #306f1d;
  color: #fff;
  border: #7da173 solid 1px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.graph_top2 {
  background-color: #306f1d;
  color: #fff;
  border: #7da173 solid 1px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.graph_left_top {
  border: #7da173 solid 1px;
  font-size: 30px;
  color: #424242;
  text-align: center;
}
.data_graph table {
  width: 100%;
}
.data_graph table tbody tr .graph_total {
  font-size: 34px;
  color: #333;
}

.data_graph table tbody tr td {
  font-size: 25px;
  color: #333;
  border: #edeeee solid 1px;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
}
.data_graph table tbody tr td span {
  font-size: 22px;
}

.data_graph table tbody tr .graph_total span {
  font-size: 30px;
}

.graph_bk_gray {
  background-color: #edeeee;
  border: #edeeee solid 1px;
}
.f14 {
  font-size: 14px;
}
.f25 {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .data {
    padding: 30px 0 0px;
    line-height: 1.6;
  }
  .data h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .data section {
    margin-bottom: 30px;
  }
  .data .cmn_btn_01 {
    margin-top: 20px;
  }
  .data .president .wrap {
    flex-direction: column;
  }
  .data .president figure {
    max-width: 50%;
    margin: 0 auto 20px;
  }
  .data .president h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .graph_top {
    font-size: 20px;
  }
  .graph_top2 {
    font-size: 20px;
  }
  .graph_left_top {
    font-size: 20px;
  }
  .data_graph table {
    width: 100%;
  }
  .data_graph table tbody tr .graph_total {
    font-size: 29px;
  }

  .data_graph table tbody tr td {
    font-size: 20px;
  }

  .data_graph table tbody tr td span {
    font-size: 17px;
  }

  .data_graph table tbody tr .graph_total {
    font-size: 20px;
  }
  .data_graph table tbody tr .graph_total span {
    font-size: 17px;
  }
}
/* ------ course ------ */
.course {
  padding: 60px 0 0px;
  line-height: 1.8;
}
.course .inner {
  max-width: 800px;
}
.course h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.course section {
  margin-bottom: 60px;
}
.course .cmn_btn_01 {
  margin-top: 40px;
}
.course .cmn_btn_01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.course .president .wrap {
  display: flex;
}
.course .president figure {
  max-width: 200px;
  margin-right: 40px;
}
.course .president div {
  flex: 1;
}
.course .president h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.course_heading {
  font-size: 25px;
  font-weight: bold;
}
.green_square {
  color: #00583b;
}
.heading_mini {
  font-size: 17px;
  font-weight: normal;
}

.course_table {
  border-top: 1px #333 solid;
  border-bottom: 1px #333 solid;
  margin-bottom: 60px;
  width: 100%;
}

.course_bg_gray {
  background-color: #dee0d8;
}
.course_table tbody tr td {
  padding-left: 5px;
  padding-right: 5px;
}
.course .inner img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .course {
    padding: 30px 0 0px;
    line-height: 1.6;
  }
  .course h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .course section {
    margin-bottom: 30px;
  }
  .course .cmn_btn_01 {
    margin-top: 20px;
  }
  .course .president .wrap {
    flex-direction: column;
  }
  .course .president figure {
    max-width: 50%;
    margin: 0 auto 20px;
  }
  .course .president h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .course_table tbody tr td {
    border: solid #333 1px;
  }
}
/* ------ news ------ */
.news {
  padding: 60px 0 0px;
  line-height: 1.8;
}
.news .inner {
  max-width: 800px;
}

.news .inner section dl {
  clear: both;
  border-top: #4d7500 4px solid;
  padding-top: 15px;
}

.news .inner section dl dt {
  float: left;
  width: 9em;
  font-size: 0.875rem;
  font-weight: bold;
  clear: both;
}

.news .inner section dl dd {
  padding-left: 16%;
  padding-bottom: 15px;
  margin: 0 1.6129032% 2.4193548% 0;
  font-size: 0.875rem;
  border-bottom: #ccc 1px dotted;
}
.news .inner section dl dd a {
  color: #4d7500;
}
.news .inner section dl dd a:hover {
  text-decoration: underline;
}

.news_second_lab {
  display: inline-block;
  background: url(../images/ico_laboratory.png) 8px center no-repeat #333;
  background-size: 16px;
  color: #fff;
  padding: 0 5px 3px 30px;
  font-size: 12px;
}

.news h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.news section {
  margin-bottom: 60px;
}
.news .cmn_btn_01 {
  margin-top: 40px;
}
.news .cmn_btn_01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news .president .wrap {
  display: flex;
}
.news .president figure {
  max-width: 200px;
  margin-right: 40px;
}
.news .president div {
  flex: 1;
}
.news .president h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.news_heading {
  font-size: 25px;
  font-weight: bold;
}
.green_square {
  color: #00583b;
}
.heading_mini {
  font-size: 17px;
  font-weight: normal;
}

.news_table {
  border-top: 1px #333 solid;
  border-bottom: 1px #333 solid;
  margin-bottom: 60px;
  width: 100%;
}

.news_bg_gray {
  background-color: #dee0d8;
}
.news_table tbody tr td {
  padding-left: 5px;
  padding-right: 5px;
}
.news .inner img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 30px 0 0px;
    line-height: 1.6;
  }
  .news h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .news section {
    margin-bottom: 30px;
  }
  .news .cmn_btn_01 {
    margin-top: 20px;
  }
  .news .president .wrap {
    flex-direction: column;
  }
  .news .president figure {
    max-width: 50%;
    margin: 0 auto 20px;
  }
  .news .president h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news_table tbody tr td {
    border: solid #333 1px;
  }
  .news .inner section dl dt {
    float: none;
    padding-bottom: 0.5em;
  }
  .news .inner section dl dd {
    padding-left: 0;
  }
  .news .inner section dl {
    padding: 15px 20px 0;
  }
}
.js-modal-btn {
  cursor: pointer;
}

.js-modal-btn figure {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.js-modal-btn figure:hover {
  opacity: 0.7;
}

.js-modal-btn figure::before {
  content: "";
  width: 76px;
  height: 76px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/play.png);
  width: 24%;
  background-repeat: no-repeat;
  background-size: contain;
}
