@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url(../img/bg.jpg);
  letter-spacing: 0.02em;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 87%;
  max-width: 1100px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  position: relative;
  background: #fff;
  padding: 40px 0;
  z-index: 100;
}
header .inner h1 a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .inner h1 a img {
  width: 500px;
  display: block;
}
header .inner h1 a span {
  display: block;
  font-size: 25px;
  letter-spacing: 0.2em;
  margin-top: 15px;
}
header .inner nav {
  margin-top: 50px;
  transition: 0.3s;
  display: none;
}
header .inner nav ul {
  display: flex;
  justify-content: space-between;
}
header .inner nav ul li a {
  font-weight: bold;
  font-size: 14px;
}
header .inner nav ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
}
header .inner nav ul li.current a {
  color: #70c7da;
}
header .inner nav ul li.current a::after {
  background: #70c7da;
}
header .inner #menu_btn {
  display: none;
  width: 40px;
  height: 26px;
  position: absolute;
  right: 6.5%;
  top: 25px;
  cursor: pointer;
}
header .inner #menu_btn span {
  display: block;
  background: #000;
  transition: 0.3s;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
}
header .inner #menu_btn span:nth-child(1) {
  top: 0;
}
header .inner #menu_btn span:nth-child(2) {
  top: 11px;
}
header .inner #menu_btn span:nth-child(3) {
  top: 22px;
}
header .inner #menu_btn.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
header .inner #menu_btn.open span:nth-child(2) {
  opacity: 0;
}
header .inner #menu_btn.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

#mv {
  padding: 40px 0;
}
#mv .inner {
  width: 60%;
}
#mv .inner h2 {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.07em;
}
#mv .inner h2 .en {
  font-size: 45px;
  font-family: "century-gothic", sans-serif;
}
#mv .inner h2 .jp {
  font-size: 18px;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  margin-top: 5px;
}
#mv .inner h3 {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
}
#mv .inner .desc {
  margin-top: 30px;
}

.btn a {
  background: #000;
  color: #fff;
  font-size: 25px;
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "century-gothic", sans-serif;
  letter-spacing: 0.2em;
  font-weight: bold;
  position: relative;
}
.btn a::after {
  content: "";
  display: block;
  width: 9px;
  height: 15px;
  background: url(../img/arrow_right.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.modal_trg {
  cursor: pointer;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 100;
}
.modal .modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background: #fff;
  width: 600px;
  max-width: 90%;
  max-height: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}
.modal .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.modal .modal-content .modal-inner {
  padding: 40px;
  display: none;
}

#links {
  padding: 100px 0;
}
#links .inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#links .inner ul li {
  width: 48%;
}
#links .inner ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  border: 4px solid #000;
  height: 150px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#links .inner ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
#links .inner ul li a .en {
  font-size: 25px;
  line-height: 1;
  font-family: "century-gothic", sans-serif;
  letter-spacing: 0.07em;
  font-weight: bold;
}
#links .inner ul li a .jp {
  margin-top: 10px;
  font-size: 14px;
}
#links .inner ul li a:hover {
  opacity: 1;
}
#links .inner ul li a:hover img {
  transform: scale(1.1);
}
#links .inner ul li:nth-child(n+3) {
  margin-top: 30px;
}

footer {
  background: #000;
  color: #fff;
  padding: 100px 0 50px;
}
footer .inner .logo {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
footer .inner .address {
  font-size: 14px;
  line-height: 1.8;
}
footer .inner .insta {
  margin-top: 15px;
}
footer .inner .insta a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
footer .inner .insta a img {
  width: 40px;
}
footer .inner .insta a span {
  margin-left: 15px;
  font-family: "century-gothic", sans-serif;
  font-weight: bold;
}
footer .inner .copy {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
}

#pagetop {
  position: fixed;
  bottom: 0;
  right: 20px;
  transition: opacity 0.3s;
  z-index: 90;
}
#pagetop img {
  width: 160px;
}

@media (max-width: 1100px) {
  header {
    height: 211px;
  }
  header .inner {
    width: 100%;
  }
  header .inner nav {
    margin-top: 0;
    position: absolute;
    top: 211px;
    background: #fff;
    width: 100%;
  }
  header .inner nav ul {
    flex-direction: column;
  }
  header .inner nav ul li {
    text-align: center;
  }
  header .inner nav ul li:not(:last-child) {
    border-bottom: 1px solid #000;
  }
  header .inner nav ul li a {
    display: block;
    padding: 14px 0;
    background: #ececeb;
  }
  header .inner nav ul li a::after {
    content: none;
  }
  header .inner #menu_btn {
    display: block;
  }
  #mv .inner {
    width: 87%;
  }
  #mv .inner h2 {
    text-align: center;
  }
  #mv .inner h3 {
    margin-top: 20px;
  }
  #mv .inner .desc {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  header {
    height: 80px;
    padding: 10px 0;
  }
  header .inner h1 {
    margin-left: 6.5%;
  }
  header .inner h1 a {
    align-items: flex-start;
  }
  header .inner h1 a img {
    width: 220px;
  }
  header .inner h1 a span {
    margin-top: 5px;
    font-size: 11px;
  }
  header .inner nav {
    top: 80px;
  }
  #mv {
    padding: 20px 0;
  }
  #mv .inner h2 .en {
    font-size: 26px;
  }
  #mv .inner h2 .jp {
    font-size: 14px;
  }
  .btn a {
    font-size: 16px;
    width: 150px;
    height: 40px;
  }
  .btn a::after {
    right: 12px;
    width: 7px;
    height: 12px;
  }
  #links {
    padding: 50px 0;
  }
  #links .inner ul li {
    width: 100%;
  }
  #links .inner ul li a {
    height: 100px;
  }
  #links .inner ul li a .en {
    font-size: 20px;
  }
  #links .inner ul li a .jp {
    margin-top: 5px;
    font-size: 12px;
  }
  #links .inner ul li:nth-child(n+2) {
    margin-top: 10px;
  }
  footer {
    padding: 50px 0 20px;
  }
  footer .inner .logo {
    font-size: 16px;
  }
  footer .inner .address {
    font-size: 12px;
  }
  footer .inner .copy {
    font-size: 10px;
  }
  #pagetop {
    right: 10px;
  }
  #pagetop img {
    width: 100px;
  }
}
#top #mv .inner {
  width: 90%;
}
#top #mv .inner .important_news {
  background: #fff;
  padding: 20px;
}
#top #mv .inner .important_news .link {
  text-align: center;
}
#top #mv .inner .important_news .link a {
  font-size: 24px;
  text-decoration: underline;
  color: #ff6600;
}
#top #mv .inner .box {
  background: #f3eaf5;
  padding: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 710px;
  margin: 60px auto;
}
#top #mv .inner .box h2 {
  text-align: center;
  margin-bottom: 20px;
}
#top #mv .inner .box .message p {
  text-align: justify;
  text-indent: 1em;
}
#top #mv .inner .box .message p:not(:last-child) {
  margin-bottom: 1em;
}
#top #mv .inner .box .sns_link {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
#top #mv .inner .box .sns_link .block h3 {
  margin-top: 0;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}
#top #mv .inner .box .sns_link .block ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
}
#top #mv .inner .box .sns_link .block ul li {
  width: 70px;
}
#top #mv .inner .box .sns_link .block:nth-child(1) h3 {
  position: relative;
  z-index: 1;
}
#top #mv .inner .box .sns_link .block:nth-child(1) h3 span {
  background: #f3eaf5;
  padding: 0 10px;
}
#top #mv .inner .box .sns_link .block:nth-child(1) h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
#top #mv .inner .mv_img {
  margin-left: -85px;
  margin-right: -90px;
  max-width: none;
  width: calc(100% + 175px);
  aspect-ratio: 1272/1569;
  position: relative;
}
#top #mv .inner .mv_img .img1 {
  position: absolute;
  width: 40.3%;
  top: 0;
  left: 0;
  z-index: 3;
}
#top #mv .inner .mv_img .img2 {
  position: absolute;
  width: 35.8%;
  top: 0.7%;
  left: 28%;
  z-index: 4;
}
#top #mv .inner .mv_img .img3 {
  position: absolute;
  width: 36.8%;
  top: 2.8%;
  right: 1%;
  z-index: 1;
}
#top #mv .inner .mv_img .img4 {
  position: absolute;
  width: 40.1%;
  top: 41.2%;
  left: 1.2%;
  z-index: 5;
}
#top #mv .inner .mv_img .img5 {
  position: absolute;
  width: 40.1%;
  top: 29.7%;
  left: 32.1%;
  z-index: 2;
}
#top #mv .inner .mv_img .img6 {
  position: absolute;
  width: 93.2%;
  bottom: 0;
  right: 0;
  z-index: 6;
}
#top #news {
  padding-top: 100px;
}
#top #news .inner .box {
  background: #fff;
  border: 4px solid #000;
  padding: 40px;
  position: relative;
}
#top #news .inner .box::before {
  content: "";
  display: block;
  width: 21px;
  height: 56px;
  background: url(../img/box_before.svg) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 47px;
}
#top #news .inner .box h2 {
  font-size: 60px;
  line-height: 1;
  font-family: "century", serif;
  font-weight: 900;
  margin-bottom: 30px;
}
#top #news .inner .box .news_list .item:nth-child(n+4) {
  display: none;
}
#top #news .inner .box .btn {
  margin-top: 30px;
}
#top #news .inner .box .btn a {
  margin: 0 0 0 auto;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 3.5%;
}
.news_list .item {
  width: 31%;
}
.news_list .item a .img {
  margin-bottom: 15px;
  overflow: hidden;
}
.news_list .item a .img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.news_list .item a .date {
  margin-bottom: 10px;
  transition: 0.3s;
}
.news_list .item a .ttl {
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}
.news_list .item a:hover {
  opacity: 1;
}
.news_list .item a:hover .img img {
  transform: scale(1.06);
}
.news_list .item a:hover .date {
  color: #70c7da;
}
.news_list .item a:hover .ttl {
  color: #70c7da;
}

@media (max-width: 1100px) {
  #top #mv .inner {
    width: 100%;
  }
  #top #mv .inner .important_news {
    width: 86.6%;
    margin: 0 auto;
  }
  #top #mv .inner .important_news .link a {
    font-size: 18px;
  }
  #top #mv .inner .mv_img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1000px) {
  #top #news .inner .box .news_list .item:nth-child(4) {
    display: block;
  }
  .news_list {
    gap: 60px 4%;
  }
  .news_list .item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  #top #mv .inner .important_news {
    padding: 10px;
    border-width: 2px;
  }
  #top #mv .inner .important_news .link a {
    font-size: 15px;
  }
  #top #mv .inner .box {
    padding: 20px;
    margin-top: 30px;
    max-width: 86.6%;
    margin-bottom: 20px;
  }
  #top #mv .inner .box h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #top #mv .inner .box .message {
    font-size: 14px;
  }
  #top #mv .inner .box .sns_link {
    margin-top: 20px;
    gap: 20px;
  }
  #top #mv .inner .box .sns_link .block h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #top #mv .inner .box .sns_link .block ul {
    gap: 20px;
  }
  #top #mv .inner .box .sns_link .block ul li {
    width: 50px;
  }
  #top #news {
    padding-top: 0;
  }
  #top #news .inner .box {
    padding: 20px;
  }
  #top #news .inner .box::before {
    width: 9px;
    height: 25px;
    top: 23px;
  }
  #top #news .inner .box h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  #top #news .inner .box .btn {
    margin-top: 20px;
  }
  #top #news .inner .box .btn a {
    font-size: 16px;
    width: 150px;
    height: 40px;
  }
  .news_list {
    gap: 30px;
  }
  .news_list .item {
    width: 100%;
  }
  .news_list .item a .img {
    margin-bottom: 10px;
  }
  .news_list .item a .img img {
    width: 100%;
  }
  .news_list .item a .date {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .news_list .item a .ttl {
    font-size: 14px;
  }
}
#introduction #stepping_stone .inner {
  padding-top: 80px;
  background: url(../img/introduction/introduction_bg.png) no-repeat center top/100%;
}
#introduction #stepping_stone .inner h2 {
  padding-left: 50px;
}
#introduction #stepping_stone .inner .list {
  margin-top: 400px;
  display: flex;
  justify-content: space-between;
}
#introduction #stepping_stone .inner .list .block {
  width: 30%;
}
#introduction #stepping_stone .inner .list .block h3 {
  margin: 15px 0;
  font-size: 24px;
  height: 66px;
  display: flex;
  align-items: center;
}
#introduction #stepping_stone .inner .list .block .img {
  margin-top: 20px;
}
#introduction #stepping_stone .inner .list .block .img small {
  margin-top: 5px;
  text-align: center;
  display: block;
}
#introduction #stepping_stone .inner .list .block .btn {
  margin-top: 30px;
}
#introduction #stepping_stone .inner .list .block .btn a {
  margin: 0 auto;
}
#introduction #message {
  padding: 100px 0 0;
}
#introduction #message .inner {
  position: relative;
  padding-bottom: 270px;
}
#introduction #message .inner::after {
  content: "";
  display: block;
  width: 568px;
  height: 325px;
  background: url(../img/introduction/introduction_kazari.png) no-repeat right bottom/contain;
  position: absolute;
  bottom: 0;
  right: 50px;
}
#introduction #message .inner .block {
  background: #fff;
  border: 4px solid #000;
  padding: 40px;
  position: relative;
}
#introduction #message .inner .block::before {
  content: "";
  display: block;
  width: 21px;
  height: 56px;
  background: url(../img/box_before.svg) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 27px;
}
#introduction #message .inner .block h2 {
  margin-bottom: 30px;
}
#introduction #message .inner .block h2 img {
  width: 450px;
}
#introduction #message .inner .block .jp {
  margin-bottom: 40px;
}
#introduction #message .inner .block .name {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 960px) {
  #introduction #stepping_stone .inner {
    padding-top: 4vw;
  }
  #introduction #stepping_stone .inner h2 {
    padding-left: 4vw;
  }
  #introduction #stepping_stone .inner h2 img {
    width: 29vw;
  }
  #introduction #stepping_stone .inner .list {
    margin-top: 26vw;
    flex-direction: column;
  }
  #introduction #stepping_stone .inner .list .block {
    width: 100%;
  }
  #introduction #stepping_stone .inner .list .block h3 {
    height: auto;
  }
  #introduction #stepping_stone .inner .list .block h3 br {
    display: none;
  }
  #introduction #stepping_stone .inner .list .block .img {
    text-align: center;
  }
  #introduction #stepping_stone .inner .list .block:not(:last-child) {
    margin-bottom: 60px;
  }
  #introduction #message .inner {
    padding-bottom: 190px;
  }
  #introduction #message .inner::after {
    width: 397px;
    height: 227px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  #introduction #stepping_stone .inner {
    width: 100%;
    padding-top: 0;
  }
  #introduction #stepping_stone .inner h2 {
    padding-left: 6.5%;
  }
  #introduction #stepping_stone .inner h2 img {
    width: 34vw;
  }
  #introduction #stepping_stone .inner .list {
    margin-top: 36vw;
    padding: 0 6.5%;
  }
  #introduction #stepping_stone .inner .list .block .num img {
    width: 100px;
  }
  #introduction #stepping_stone .inner .list .block h3 {
    font-size: 18px;
    margin: 10px 0;
  }
  #introduction #stepping_stone .inner .list .block .btn {
    margin-top: 20px;
  }
  #introduction #stepping_stone .inner .list .block:not(:last-child) {
    margin-bottom: 40px;
  }
  #introduction #message {
    padding-top: 50px;
  }
  #introduction #message .inner .block {
    padding: 20px;
  }
  #introduction #message .inner .block::before {
    width: 9px;
    height: 25px;
    top: 23px;
  }
  #introduction #message .inner .block h2 {
    line-height: 1;
    margin-bottom: 15px;
  }
  #introduction #message .inner .block .txt {
    font-size: 12px;
  }
  #introduction #message .inner .block .name {
    margin-top: 15px;
    font-size: 12px;
  }
}
#teacher #mv h3 img {
  width: 670px;
}
#teacher #teachers .txt {
  font-weight: bold;
  font-size: 20px;
  background: #70c7da;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 370px;
  height: 50px;
  margin: 0 auto 30px;
}
#teacher #teachers .img area {
  cursor: pointer;
}
#teacher .modal .modal-content {
  background: #efefef;
  border: 2px solid #fff;
}
#teacher .modal .modal-content .modal-inner {
  position: relative;
  padding-bottom: 130px;
}
#teacher .modal .modal-content .modal-inner img {
  position: absolute;
  bottom: 0;
  left: 0;
}
#teacher .modal .modal-content .modal-inner dl dt {
  font-weight: bold;
  border-bottom: 2px solid #70c7da;
  color: #70c7da;
  font-size: 18px;
  margin-bottom: 10px;
}
#teacher .modal .modal-content .modal-inner dl dd {
  font-size: 14px;
}
#teacher .modal .modal-content .modal-inner dl dd .name {
  margin-top: 10px;
  line-height: 1.5;
  text-align: right;
  color: #999;
  font-size: 13px;
}
#teacher .modal .modal-content .modal-inner dl dd .name span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}
#teacher .modal .modal-content .modal-inner dl dd .name span small {
  font-weight: 400;
  font-size: 14px;
  margin-right: 10px;
}
#teacher .modal .modal-content .modal-inner dl dd:not(:last-child) {
  margin-bottom: 30px;
}
#teacher .modal .modal-content .modal-inner .notice {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 12px;
  width: 60%;
}
#teacher .modal .modal-content .modal-inner#modal02 {
  padding-bottom: 140px;
}
#teacher .modal .modal-content .modal-inner#modal03 {
  padding-bottom: 110px;
}
#teacher .modal .modal-content .modal-inner#modal03 img {
  left: 50px;
}
#teacher .modal .modal-content .modal-inner#modal04 {
  padding-bottom: 110px;
}
#teacher .modal .modal-content .modal-inner#modal04 img {
  left: unset;
  right: 0;
}
#teacher .modal .modal-content .modal-inner#modal04 .notice {
  right: unset;
  left: 40px;
}
#teacher .modal .modal-content .modal-inner#modal04 .name {
  text-align: left;
}
#teacher .modal .modal-content .modal-inner#modal07 {
  padding-bottom: 90px;
}
#teacher .modal .modal-content .modal-inner#modal07 img {
  left: unset;
  right: 0;
}
#teacher .modal .modal-content .modal-inner#modal07 .notice {
  right: unset;
  left: 40px;
}
#teacher .modal .modal-content .modal-inner#modal07 .name {
  text-align: left;
}
#teacher .modal .modal-content .modal-inner#modal08 {
  padding-bottom: 90px;
}
#teacher .modal .modal-content .modal-inner#modal08 img {
  left: unset;
  right: 0;
}
#teacher .modal .modal-content .modal-inner#modal08 .notice {
  right: unset;
  left: 40px;
}
#teacher .modal .modal-content .modal-inner#modal08 .name {
  text-align: left;
}
#teacher .modal .modal-content .modal-inner#modal09 {
  padding-bottom: 110px;
}
#teacher .modal .modal-content .modal-inner#modal09 img {
  left: unset;
  right: 0;
}
#teacher .modal .modal-content .modal-inner#modal09 .notice {
  right: unset;
  left: 40px;
}
#teacher .modal .modal-content .modal-inner#modal09 .name {
  text-align: left;
}

@media (max-width: 900px) {
  #teacher #teachers .inner .txt {
    font-size: 16px;
    margin-bottom: 0;
    width: 280px;
    height: 40px;
  }
  #teacher #teachers .inner .img {
    margin-left: -6.5vw;
    margin-right: -6.5vw;
  }
  #teacher #pagetop {
    display: none;
  }
  #teacher .modal .modal-content .modal-close {
    top: 0;
    right: 15px;
  }
  #teacher .modal .modal-content .modal-inner {
    padding: 20px 20px 130px;
  }
  #teacher .modal .modal-content .modal-inner dl dt {
    font-size: 16px;
  }
  #teacher .modal .modal-content .modal-inner dl dd .name {
    font-size: 11px;
  }
  #teacher .modal .modal-content .modal-inner dl dd .name span {
    font-size: 16px;
  }
  #teacher .modal .modal-content .modal-inner dl dd .name span small {
    font-size: 12px;
  }
  #teacher .modal .modal-content .modal-inner .notice {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
  #teacher .modal .modal-content .modal-inner#modal02 {
    padding-bottom: 190px;
  }
  #teacher .modal .modal-content .modal-inner#modal03 {
    padding-bottom: 130px;
  }
  #teacher .modal .modal-content .modal-inner#modal03 img {
    left: 0;
  }
  #teacher .modal .modal-content .modal-inner#modal04 {
    padding-bottom: 140px;
  }
  #teacher .modal .modal-content .modal-inner#modal04 dl dd .name {
    text-align: right;
  }
  #teacher .modal .modal-content .modal-inner#modal05 {
    padding-bottom: 170px;
  }
  #teacher .modal .modal-content .modal-inner#modal07 {
    padding-bottom: 110px;
  }
  #teacher .modal .modal-content .modal-inner#modal08 {
    padding-bottom: 130px;
  }
  #teacher .modal .modal-content .modal-inner#modal09 {
    padding-bottom: 140px;
  }
}
#student_interview .interview_sec:not(:last-child) {
  margin-bottom: 100px;
}
#student_interview .interview_sec .inner .img {
  position: relative;
}
#student_interview .interview_sec .inner .img h2 {
  position: absolute;
  bottom: -40px;
  right: 0;
}
#student_interview .interview_sec .inner .img .btn {
  position: absolute;
  bottom: 100px;
  right: 50px;
}
#student_interview .interview_sec .inner .img .btn a {
  width: auto;
  padding: 0 40px 0 20px;
  letter-spacing: 0.1em;
  background: #70c7da;
}
#student_interview .interview_sec .inner .txt {
  background: url(../img/student_interview/interview_bg.jpg);
  padding: 70px 40px 40px;
}
#student_interview .interview_sec .inner .txt .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#student_interview .interview_sec .inner .txt .row .interview_txt {
  width: 60%;
}
#student_interview .interview_sec .inner .txt .row .interview_txt h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#student_interview .interview_sec .inner .txt .row .interview_txt .message p:not(:last-child) {
  margin-bottom: 1em;
}
#student_interview .interview_sec .inner .txt .row .parent_voice {
  width: 35%;
  position: relative;
  padding: 80px 20px 20px;
  background: #fff url(../img/student_interview/parent_voice_bg.png) no-repeat center bottom;
  border-radius: 20px;
}
#student_interview .interview_sec .inner .txt .row .parent_voice .ttl {
  position: absolute;
  top: 0;
  left: 30px;
}
#student_interview .interview_sec .inner .txt .row .parent_voice .main {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
#student_interview .interview_sec .inner .txt .row .parent_voice .from {
  margin-top: 10px;
  text-align: right;
}

@media (max-width: 1100px) {
  #student_interview .interview_sec .inner .img h2 {
    bottom: -4vw;
  }
  #student_interview .interview_sec .inner .img .btn {
    bottom: 6vw;
    right: 4vw;
  }
  #student_interview .interview_sec .inner .txt .row {
    flex-direction: column;
  }
  #student_interview .interview_sec .inner .txt .row .interview_txt {
    width: 100%;
  }
  #student_interview .interview_sec .inner .txt .row .parent_voice {
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  #student_interview .interview_sec .inner .txt {
    padding: 30px 20px 20px;
  }
  #student_interview .interview_sec .inner .txt .row .interview_txt h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  #student_interview .interview_sec .inner .txt .row .interview_txt .message {
    font-size: 12px;
  }
  #student_interview .interview_sec .inner .txt .row .interview_txt .btn {
    margin-top: 15px;
  }
  #student_interview .interview_sec .inner .txt .row .interview_txt .btn a {
    background: #70c7da;
    width: auto;
    justify-content: flex-start;
    padding: 0 20px;
    font-size: 14px;
    max-width: 300px;
  }
  #student_interview .interview_sec .inner .txt .row .parent_voice {
    padding: 60px 20px 20px;
    border-radius: 10px;
  }
  #student_interview .interview_sec .inner .txt .row .parent_voice .ttl {
    left: 20px;
  }
  #student_interview .interview_sec .inner .txt .row .parent_voice .ttl img {
    width: 70px;
  }
  #student_interview .interview_sec .inner .txt .row .parent_voice .main {
    font-size: 16px;
  }
  #student_interview .interview_sec:not(:last-child) {
    margin-bottom: 50px;
  }
}
#class #class_introduction {
  padding: 40px 0 100px;
}
#class #class_introduction .inner .list .block {
  background: #fff;
  border: 4px solid #000;
  padding: 20px 40px 40px;
  position: relative;
}
#class #class_introduction .inner .list .block:not(:last-child) {
  margin-bottom: 60px;
}
#class #class_introduction .inner .list .block .num {
  background: #000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  font-family: "century-gothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: -30px;
}
#class #class_introduction .inner .list .block .num::after {
  content: "";
  display: block;
  width: 118px;
  height: 31px;
  background: url(../img/class/pickup.png) no-repeat center/contain;
  position: absolute;
  left: 100px;
  top: 12px;
}
#class #class_introduction .inner .list .block h3 {
  text-align: center;
  margin-bottom: 40px;
}
#class #class_introduction .inner .list .block h3 .en {
  font-family: "century-gothic", sans-serif;
  display: block;
  font-size: 25px;
  letter-spacing: 0.07em;
}
#class #class_introduction .inner .list .block h3 .jp {
  font-size: 22px;
  position: relative;
  z-index: 1;
}
#class #class_introduction .inner .list .block h3 .jp::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/class/line.png) no-repeat center/840px;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
}
#class #class_introduction .inner .list .block .fukidashi {
  position: absolute;
  top: -20px;
  right: 20px;
}
#class #class_introduction .inner .list .block .row {
  display: flex;
}
#class #class_introduction .inner .list .block .row .txt {
  padding-right: 40px;
  text-align: justify;
}
#class #class_introduction .inner .list .block .row .img {
  width: 35%;
  flex-shrink: 0;
}
#class #class_introduction .inner .list .block .row .imgs {
  display: flex;
  width: 58%;
  flex-shrink: 0;
}
#class #class_introduction .inner .list .block .row .imgs p:not(:last-child) {
  margin-right: 15px;
}
#class #class_introduction .inner .list .block .btn {
  margin-top: 30px;
}
#class #class_introduction .inner .list .block .btn a {
  background: #70c7da;
  width: 400px;
  max-width: 100%;
  padding: 0 20px;
  letter-spacing: 0.02em;
  margin: 0 0 0 auto;
}
#class #class_introduction .inner .list .block .fukidashi {
  right: -20px;
}
#class #class_introduction .inner .list .block .fukidashi img {
  width: 120px;
}
#class #class_introduction .inner .list .block:nth-child(2) .img {
  margin-right: -60px;
}
#class #class_introduction .inner .list .block:nth-child(2) .img img {
  max-width: none;
  width: 100%;
}
#class #class_introduction .inner .btn {
  margin-top: 60px;
}
#class #class_introduction .inner .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 50px;
  margin: 0 auto;
  font-size: 20px;
  background: #70c7da;
  max-width: 100%;
}

@media (max-width: 1160px) {
  #class #class_introduction .inner .list .block h3 .en {
    margin-bottom: 10px;
  }
  #class #class_introduction .inner .list .block h3 .jp {
    display: block;
    line-height: 1.5;
  }
  #class #class_introduction .inner .list .block h3 .jp::before {
    bottom: -3px;
  }
  #class #class_introduction .inner .list .block h3 .jp .sp {
    display: block;
  }
  #class #class_introduction .inner .list .block:nth-child(1) .fukidashi {
    transform: rotate(-22deg);
    top: -60px;
  }
  #class #class_introduction .inner .list .block:nth-child(2) .img {
    margin-right: -4.9vw;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .txt {
    width: 65%;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .imgs {
    flex-direction: column;
    width: 35%;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .imgs p:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .fukidashi {
    transform: rotate(-22deg);
    top: -80px;
    right: -30px;
  }
}
@media (max-width: 768px) {
  #class #class_introduction .inner .list .block {
    padding: 30px 20px 20px;
  }
  #class #class_introduction .inner .list .block .num {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  #class #class_introduction .inner .list .block .num::after {
    width: 88px;
    height: 24px;
    left: 70px;
    top: 16px;
  }
  #class #class_introduction .inner .list .block h3 {
    margin-bottom: 20px;
  }
  #class #class_introduction .inner .list .block h3 .en {
    font-size: 18px;
    line-height: 1;
  }
  #class #class_introduction .inner .list .block h3 .jp {
    font-size: 14px;
  }
  #class #class_introduction .inner .list .block .row {
    flex-direction: column;
  }
  #class #class_introduction .inner .list .block .row .txt {
    width: 100%;
    padding-right: 0;
  }
  #class #class_introduction .inner .list .block .row .img {
    margin-top: 20px;
    width: 100%;
  }
  #class #class_introduction .inner .list .block:nth-child(1) .fukidashi {
    top: -50px;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .fukidashi {
    top: -60px;
  }
  #class #class_introduction .inner .list .block:nth-child(3) .imgs {
    margin-top: 20px;
    width: 100%;
  }
  #class #class_introduction .inner .btn {
    margin-top: 40px;
  }
  #class #class_introduction .inner .btn a {
    font-size: 16px;
  }
}
#abroad #flow_schedule {
  padding: 60px 0 100px;
}
#abroad #flow_schedule .inner .row {
  display: flex;
  justify-content: space-between;
}
#abroad #flow_schedule .inner .row .flow {
  background: #fff;
  border: 4px solid #000;
  padding: 40px;
  width: 55%;
}
#abroad #flow_schedule .inner .row .flow h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
#abroad #flow_schedule .inner .row .flow h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/class/line.png) no-repeat center/840px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#abroad #flow_schedule .inner .row .flow .sub {
  text-align: center;
  margin-bottom: 40px;
}
#abroad #flow_schedule .inner .row .flow .list .block {
  padding: 20px;
  position: relative;
  z-index: 1;
}
#abroad #flow_schedule .inner .row .flow .list .block::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #faef42;
  position: absolute;
  z-index: -2;
  right: -15px;
  bottom: -15px;
}
#abroad #flow_schedule .inner .row .flow .list .block::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#abroad #flow_schedule .inner .row .flow .list .block .num {
  font-family: "century-gothic", sans-serif;
  position: absolute;
  background: #fff;
  padding: 0 10px;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.07em;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
#abroad #flow_schedule .inner .row .flow .list .block .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0;
}
#abroad #flow_schedule .inner .row .flow .list .block ul li {
  text-indent: -1.5em;
  margin-left: 1.5em;
}
#abroad #flow_schedule .inner .row .flow .list .block .example {
  margin-top: 15px;
  font-size: 14px;
}
#abroad #flow_schedule .inner .row .flow .list .block .img {
  text-align: center;
  margin-top: 15px;
}
#abroad #flow_schedule .inner .row .flow .list .block:not(:last-child) {
  margin-bottom: 50px;
}
#abroad #flow_schedule .inner .row .flow .list .block:nth-child(1) .img {
  position: absolute;
  right: -15px;
  bottom: 10px;
}
#abroad #flow_schedule .inner .row .schedule {
  width: 40%;
}
#abroad #flow_schedule .inner .row .schedule h2 {
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}
#abroad #flow_schedule .inner .row .schedule h2 span {
  display: block;
  font-family: "century-gothic", sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block {
  padding-left: 100px;
  position: relative;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block::before {
  content: "";
  display: block;
  height: 100%;
  width: 6px;
  background: #000;
  position: absolute;
  top: 0;
  left: 37px;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block {
  background: #fff;
  border: 2px solid #000;
  border-radius: 15px;
  padding: 20px;
  font-size: 14px;
  position: relative;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .time {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .img {
  margin-top: 10px;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .img span {
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:not(:last-child) {
  margin-bottom: 20px;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block::before {
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  background: no-repeat center/contain;
  position: absolute;
  left: -100px;
  top: 0;
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:nth-child(1)::before {
  background-image: url(../img/abroad/time0900.png);
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:nth-child(2)::before {
  background-image: url(../img/abroad/time0100.png);
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:nth-child(3)::before {
  background-image: url(../img/abroad/time0500.png);
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:nth-child(4)::before {
  background-image: url(../img/abroad/time0600.png);
}
#abroad #flow_schedule .inner .row .schedule .schedule_block .notice {
  margin-top: 10px;
  font-size: 12px;
}
#abroad #programs {
  padding: 150px 0;
}
#abroad #programs .inner .bg {
  background: #fff;
  border: 4px solid #000;
  padding: 150px 40px 40px;
  position: relative;
}
#abroad #programs .inner .bg h2 {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
#abroad #programs .inner .bg .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#abroad #programs .inner .bg .list .block {
  width: 48%;
  padding: 20px;
}
#abroad #programs .inner .bg .list .block .catch {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
}
#abroad #programs .inner .bg .list .block h3 {
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 10px;
  margin: 0 -20px 20px;
  height: 150px;
}
#abroad #programs .inner .bg .list .block h3 img {
  width: 300px;
}
#abroad #programs .inner .bg .list .block .term {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#abroad #programs .inner .bg .list .block .term .ttl {
  margin-right: 15px;
}
#abroad #programs .inner .bg .list .block .term .ttl img {
  width: 130px;
}
#abroad #programs .inner .bg .list .block .term .txt {
  font-weight: bold;
}
#abroad #programs .inner .bg .list .block table {
  background: #fff;
  margin-bottom: 15px;
}
#abroad #programs .inner .bg .list .block table tr th {
  background: #00b9ef;
  color: #fff;
  font-weight: bold;
  width: 70px;
  font-size: 14px;
}
#abroad #programs .inner .bg .list .block table tr td {
  border: 1px solid #00b9ef;
}
#abroad #programs .inner .bg .list .block table tr td .country {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #00b9ef;
  padding: 0 5px;
}
#abroad #programs .inner .bg .list .block table tr td .area {
  font-size: 12px;
  line-height: 1.5;
  padding: 5px;
}
#abroad #programs .inner .bg .list .block .desc {
  font-size: 14px;
}
#abroad #programs .inner .bg .list .block .img {
  margin-top: 15px;
  text-align: center;
}
#abroad #programs .inner .bg .list .block .img span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
#abroad #programs .inner .bg .list .block:nth-child(n+3) {
  margin-top: 50px;
}
#abroad #programs .inner .bg .list .block:nth-child(1), #abroad #programs .inner .bg .list .block:nth-child(4) {
  background: #fcf7b0;
}
#abroad #programs .inner .bg .list .block:nth-child(2), #abroad #programs .inner .bg .list .block:nth-child(3) {
  background: #e4e2e1;
}
#abroad #programs .inner .bg .list .block:nth-child(2) table td {
  font-size: 12px;
  line-height: 1.5;
  padding: 5px;
}
#abroad #programs .inner .bg .list .block:nth-child(2) table td:nth-child(1) {
  width: 60px;
  text-align: center;
}

@media (max-width: 1100px) {
  #abroad #flow_schedule .inner .row {
    flex-direction: column;
  }
  #abroad #flow_schedule .inner .row .flow {
    width: 100%;
  }
  #abroad #flow_schedule .inner .row .flow .list .block {
    max-width: 560px;
    margin: 0 auto;
  }
  #abroad #flow_schedule .inner .row .schedule {
    width: 100%;
    max-width: 560px;
    margin: 60px auto 0;
  }
  #abroad #programs .inner .bg {
    padding-top: 170px;
  }
  #abroad #programs .inner .bg .list {
    flex-direction: column;
    align-items: center;
  }
  #abroad #programs .inner .bg .list .block {
    width: 100%;
    max-width: 560px;
  }
  #abroad #programs .inner .bg .list .block:nth-child(n+2) {
    margin-top: 50px;
  }
  #abroad #programs .inner .bg .list .block:nth-child(2n+1) {
    background: #fcf7b0;
  }
  #abroad #programs .inner .bg .list .block:nth-child(2n) {
    background: #e4e2e1;
  }
}
@media (max-width: 768px) {
  #abroad #mv .inner h3 {
    font-size: 16px;
  }
  #abroad #flow_schedule {
    padding: 30px 0 50px;
  }
  #abroad #flow_schedule .inner .row .flow {
    padding: 20px;
  }
  #abroad #flow_schedule .inner .row .flow h2 {
    font-size: 16px;
  }
  #abroad #flow_schedule .inner .row .flow .sub {
    margin-top: 5px;
    margin-bottom: 30px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block {
    padding: 15px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block::before {
    bottom: -10px;
    right: -10px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block .num {
    font-size: 30px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block .ttl {
    line-height: 1.5;
    font-size: 16px;
    margin: 10px 0;
  }
  #abroad #flow_schedule .inner .row .flow .list .block ul li {
    font-size: 12px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block .example {
    font-size: 12px;
  }
  #abroad #flow_schedule .inner .row .flow .list .block:nth-child(1) .img {
    width: 100px;
    bottom: 90px;
    right: -35px;
  }
  #abroad #flow_schedule .inner .row .schedule {
    margin-top: 30px;
  }
  #abroad #flow_schedule .inner .row .schedule h2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  #abroad #flow_schedule .inner .row .schedule h2 span {
    font-size: 20px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block {
    padding-left: 70px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block::before {
    left: 30px;
    width: 4px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block {
    padding: 15px;
    border-radius: 10px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .time {
    font-size: 13px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .desc {
    font-size: 12px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block .img span {
    font-size: 10px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block::before {
    width: 55px;
    height: 55px;
    top: 10px;
    left: -67px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .list .block:not(:last-child) {
    margin-bottom: 10px;
  }
  #abroad #flow_schedule .inner .row .schedule .schedule_block .notice {
    font-size: 10px;
  }
  #abroad #programs {
    padding: 120px 0 100px;
  }
  #abroad #programs .inner .bg {
    padding: 130px 15px 15px;
  }
  #abroad #programs .inner .bg h2 img {
    width: 280px;
  }
  #abroad #programs .inner .bg .list .block {
    padding: 15px;
  }
  #abroad #programs .inner .bg .list .block .catch {
    font-size: 14px;
  }
  #abroad #programs .inner .bg .list .block h3 {
    height: 120px;
  }
  #abroad #programs .inner .bg .list .block h3 img {
    width: auto;
    height: 100px;
  }
  #abroad #programs .inner .bg .list .block .term {
    flex-direction: column;
    align-items: flex-start;
  }
  #abroad #programs .inner .bg .list .block .term .ttl {
    margin-right: 0;
    margin-bottom: 5px;
  }
  #abroad #programs .inner .bg .list .block .term .ttl img {
    width: 100px;
  }
  #abroad #programs .inner .bg .list .block .term .txt {
    font-size: 12px;
  }
  #abroad #programs .inner .bg .list .block table tr th {
    font-size: 12px;
    width: 50px;
  }
  #abroad #programs .inner .bg .list .block table tr td .country {
    font-size: 12px;
  }
  #abroad #programs .inner .bg .list .block table tr td .area {
    font-size: 10px;
  }
  #abroad #programs .inner .bg .list .block .desc {
    font-size: 12px;
  }
  #abroad #programs .inner .bg .list .block .img span {
    font-size: 10px;
  }
  #abroad #programs .inner .bg .list .block:nth-child(n+2) {
    margin-top: 20px;
  }
}
#activities #mv .inner .desc {
  text-align: center;
}
#activities #activity_list {
  padding: 40px 0 100px;
}
#activities #activity_list .inner .list .block {
  border: 4px solid #000;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
#activities #activity_list .inner .list .block .num {
  position: absolute;
  top: -40px;
  left: -40px;
}
#activities #activity_list .inner .list .block .num img {
  width: 120px;
}
#activities #activity_list .inner .list .block h3 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
#activities #activity_list .inner .list .block .row {
  display: flex;
  justify-content: space-between;
}
#activities #activity_list .inner .list .block .row .txt {
  width: 62%;
}
#activities #activity_list .inner .list .block .row .txt p {
  text-indent: 1em;
}
#activities #activity_list .inner .list .block .row .txt p:not(:last-child) {
  margin-bottom: 1em;
}
#activities #activity_list .inner .list .block .row .img {
  width: 35%;
}
#activities #activity_list .inner .list .block:not(:last-child) {
  margin-bottom: 60px;
}
#activities #activity_list .inner .list .block:nth-child(2n) .num {
  left: unset;
  right: -20px;
}
#activities #activity_list .inner .list .block:nth-child(1) {
  background: rgba(244, 198, 220, 0.9);
}
#activities #activity_list .inner .list .block:nth-child(2) {
  background: rgba(240, 239, 138, 0.9);
}
#activities #activity_list .inner .list .block:nth-child(3) {
  background: rgba(176, 220, 209, 0.9);
}
#activities #activity_list .inner .list .block:nth-child(4) {
  background: rgba(209, 186, 218, 0.9);
}

@media (max-width: 800px) {
  #activities #mv .inner .desc {
    text-align: left;
  }
  #activities #activity_list .inner .list .block .row {
    flex-direction: column;
  }
  #activities #activity_list .inner .list .block .row .txt {
    width: 100%;
  }
  #activities #activity_list .inner .list .block .row .img {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #activities #activity_list {
    padding-top: 20px;
  }
  #activities #activity_list .inner .list .block {
    padding: 30px 20px 20px;
  }
  #activities #activity_list .inner .list .block .num {
    top: -30px;
    left: -20px;
  }
  #activities #activity_list .inner .list .block .num img {
    width: 80px;
  }
  #activities #activity_list .inner .list .block h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #activities #activity_list .inner .list .block:not(:last-child) {
    margin-bottom: 50px;
  }
}
#graduation #after_graduation_info {
  padding-bottom: 100px;
}
#graduation #after_graduation_info .inner {
  background: #fff;
  padding: 40px;
}
#graduation #after_graduation_info .inner .ttl {
  display: flex;
  align-items: center;
}
#graduation #after_graduation_info .inner .ttl h2 {
  width: 45%;
}
#graduation #after_graduation_info .inner .ttl .desc {
  width: 55%;
  padding-left: 40px;
}
#graduation #after_graduation_info .inner .row {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
#graduation #after_graduation_info .inner .row .block {
  width: 48%;
}
#graduation #after_graduation_info .inner .row .block .img {
  text-align: center;
}
#graduation #after_graduation_info .inner .row .block .img img {
  height: 280px;
}
#graduation #after_graduation_info .inner .row .block .list {
  margin-top: 20px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
#graduation #after_graduation_info .inner .row .block .list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  right: -15px;
  bottom: -15px;
}
#graduation #after_graduation_info .inner .row .block .list::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#graduation #after_graduation_info .inner .row .block .list h3 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 2px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}
#graduation #after_graduation_info .inner .row .block .list .group:not(:last-child) {
  margin-bottom: 10px;
}
#graduation #after_graduation_info .inner .row .block .list .group h4 {
  font-weight: bold;
  font-size: 14px;
}
#graduation #after_graduation_info .inner .row .block .list .group dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
#graduation #after_graduation_info .inner .row .block .list .group dl dt {
  width: calc(100% - 3em);
  border-bottom: 1px solid #ddd;
}
#graduation #after_graduation_info .inner .row .block .list .group dl dd {
  width: 3em;
  text-align: right;
  border-bottom: 1px solid #ddd;
}
#graduation #after_graduation_info .inner .row .block .list .list_row {
  display: flex;
  justify-content: space-between;
}
#graduation #after_graduation_info .inner .row .block .list .list_row ul {
  width: 49%;
}
#graduation #after_graduation_info .inner .row .block .list .list_row ul li {
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}
#graduation #after_graduation_info .inner .row .block .list .list_row ul li:not(:last-child) {
  margin-bottom: 4px;
}
#graduation #after_graduation_info .inner .row .block.transfer .list::before {
  background: #faef42;
}
#graduation #after_graduation_info .inner .row .block.transfer .list h3 {
  border-color: #faef42;
}
#graduation #after_graduation_info .inner .row .block.graduate .img {
  padding-left: 30px;
}
#graduation #after_graduation_info .inner .row .block.graduate .list::before {
  background: #00a0e9;
}
#graduation #after_graduation_info .inner .row .block.graduate .list h3 {
  border-color: #00a0e9;
}
#graduation #after_graduation_info .inner .message {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 30px;
}
#graduation #after_graduation_info .inner .message::before {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 107/655;
  background: url(../img/graduation/message_before.svg) no-repeat left center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
#graduation #after_graduation_info .inner .message::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 107/655;
  background: url(../img/graduation/message_after.svg) no-repeat right center/contain;
  position: absolute;
  top: 0;
  right: 0;
}
#graduation #after_graduation_info .inner .message .txt {
  width: 65%;
  padding-right: 30px;
}
#graduation #after_graduation_info .inner .message .txt h3 {
  color: #00a0e9;
  margin-bottom: 10px;
  font-size: 20px;
}
#graduation #after_graduation_info .inner .message .img {
  width: 35%;
}
#graduation #transfer {
  padding-bottom: 100px;
}
#graduation #transfer .inner h2 {
  margin-bottom: 40px;
  text-align: center;
}
#graduation #transfer .inner h2 img {
  width: 900px;
}
#graduation #transfer .inner .list .block {
  display: flex;
  background: url(../img/gdmessage/message_bg.jpg) top right;
}
#graduation #transfer .inner .list .block .img {
  width: 35%;
}
#graduation #transfer .inner .list .block .txt {
  width: 65%;
  padding: 40px;
}
#graduation #transfer .inner .list .block .txt h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
#graduation #transfer .inner .list .block .txt .desc p:not(:last-child) {
  margin-bottom: 1em;
}
#graduation #transfer .inner .list .block .txt .btn {
  margin-top: 30px;
}
#graduation #transfer .inner .list .block .txt .btn a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px 0 20px;
  letter-spacing: 0.1em;
  background: #70c7da;
}
#graduation #transfer .inner .list .block:not(:last-child) {
  margin-bottom: 60px;
}
#graduation #transfer .inner .list .block:nth-child(2n) .img {
  order: 2;
}
#graduation #transfer .inner .list .block:nth-child(2n) .txt {
  order: 1;
}

@media (max-width: 900px) {
  #graduation #after_graduation_info .inner .row {
    flex-direction: column;
  }
  #graduation #after_graduation_info .inner .row .block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  #graduation #after_graduation_info .inner .row .block:not(:last-child) {
    margin-bottom: 40px;
  }
  #graduation #after_graduation_info .inner .message {
    flex-direction: column;
    border: 10px solid #000;
    position: relative;
  }
  #graduation #after_graduation_info .inner .message::before {
    background: #fff;
    width: 80%;
    height: 30px;
    position: absolute;
    top: -10px;
    left: 10%;
    z-index: 2;
  }
  #graduation #after_graduation_info .inner .message::after {
    background: #fff;
    width: 80%;
    height: 30px;
    position: absolute;
    bottom: -10px;
    top: unset;
    left: 10%;
    z-index: 2;
  }
  #graduation #after_graduation_info .inner .message .txt {
    width: 100%;
    padding-right: 0;
  }
  #graduation #after_graduation_info .inner .message .img {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  #graduation #after_graduation_info .inner .message .img img {
    width: 250px;
  }
  #graduation #transfer .inner .list .block .txt {
    padding: 20px;
  }
  #graduation #transfer .inner .list .block .txt h3 {
    font-size: 20px;
    line-height: 1.5;
  }
  #graduation #transfer .inner .list .block .img {
    min-width: 250px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  #graduation #after_graduation_info {
    padding-bottom: 50px;
  }
  #graduation #after_graduation_info .inner {
    padding: 20px;
  }
  #graduation #after_graduation_info .inner .ttl {
    flex-direction: column;
  }
  #graduation #after_graduation_info .inner .ttl h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  #graduation #after_graduation_info .inner .ttl h2 img {
    width: 250px;
  }
  #graduation #after_graduation_info .inner .ttl .desc {
    width: 100%;
    padding-left: 0;
  }
  #graduation #after_graduation_info .inner .row {
    margin-top: 30px;
  }
  #graduation #after_graduation_info .inner .row .block .img img {
    height: 200px;
  }
  #graduation #after_graduation_info .inner .row .block .list {
    margin-top: 10px;
  }
  #graduation #after_graduation_info .inner .row .block .list::before {
    right: -10px;
    bottom: -10px;
  }
  #graduation #after_graduation_info .inner .row .block .list h3 {
    font-size: 16px;
  }
  #graduation #after_graduation_info .inner .row .block .list .group h4 {
    font-size: 12px;
  }
  #graduation #after_graduation_info .inner .row .block .list .group dl dt {
    font-size: 12px;
    line-height: 1.3;
    padding: 5px 0;
  }
  #graduation #after_graduation_info .inner .row .block .list .group dl dd {
    line-height: 1.3;
    font-size: 12px;
    padding: 5px 0;
  }
  #graduation #after_graduation_info .inner .row .block .list .list_row {
    flex-direction: column;
  }
  #graduation #after_graduation_info .inner .row .block .list .list_row ul {
    width: 100%;
  }
  #graduation #after_graduation_info .inner .row .block .list .list_row ul li {
    font-size: 12px;
  }
  #graduation #after_graduation_info .inner .message {
    padding: 20px;
    border-width: 5px;
  }
  #graduation #after_graduation_info .inner .message .txt h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  #graduation #transfer .inner h2 {
    margin-bottom: 20px;
  }
  #graduation #transfer .inner .list .block {
    flex-direction: column;
  }
  #graduation #transfer .inner .list .block .img {
    width: 100%;
  }
  #graduation #transfer .inner .list .block .txt {
    width: 100%;
  }
  #graduation #transfer .inner .list .block .txt h3 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-right: -10px;
  }
  #graduation #transfer .inner .list .block .txt .desc {
    font-size: 12px;
  }
  #graduation #transfer .inner .list .block .txt .btn {
    margin-top: 15px;
  }
  #graduation #transfer .inner .list .block .txt .btn a {
    width: 300px;
    max-width: 100%;
  }
  #graduation #transfer .inner .list .block:nth-child(2n) .img {
    order: 1;
  }
  #graduation #transfer .inner .list .block:nth-child(2n) .txt {
    order: 2;
  }
  #graduation #transfer .inner .list .block:not(:last-child) {
    margin-bottom: 30px;
  }
}
#gdmessage #graduate {
  padding-bottom: 100px;
}
#gdmessage #graduate .inner .list .block {
  background: url(../img/gdmessage/graduate_bg.jpg) center bottom;
}
#gdmessage #graduate .inner .list .block .img {
  position: relative;
}
#gdmessage #graduate .inner .list .block .img .btn {
  position: absolute;
  right: 50px;
  bottom: 130px;
}
#gdmessage #graduate .inner .list .block .img .btn a {
  background: #70c7da;
  width: auto;
  padding: 0 40px 0 20px;
}
#gdmessage #graduate .inner .list .block .txt {
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
#gdmessage #graduate .inner .list .block .txt .txt_content {
  width: 72%;
  padding-right: 30px;
}
#gdmessage #graduate .inner .list .block .txt .txt_content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
#gdmessage #graduate .inner .list .block .txt .txt_content .desc p:not(:last-child) {
  margin-bottom: 1em;
}
#gdmessage #graduate .inner .list .block .txt .img_content {
  width: 28%;
}
#gdmessage #graduate .inner .list .block .txt .img_content p span {
  text-indent: -1em;
  margin-left: 1em;
  margin-top: 5px;
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
#gdmessage #graduate .inner .list .block .txt .img_content p:not(:last-child) {
  margin-bottom: 15px;
}
#gdmessage #graduate .inner .list .block:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 1100px) {
  #gdmessage #graduate .inner .list .block .img .btn {
    right: 4vw;
    bottom: 10vw;
  }
}
@media (max-width: 768px) {
  #gdmessage #graduate .inner .list .block .txt {
    flex-direction: column;
    padding: 20px;
  }
  #gdmessage #graduate .inner .list .block .txt .txt_content {
    width: 100%;
    padding-right: 0;
  }
  #gdmessage #graduate .inner .list .block .txt .txt_content h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  #gdmessage #graduate .inner .list .block .txt .txt_content .desc {
    font-size: 12px;
  }
  #gdmessage #graduate .inner .list .block .txt .txt_content .btn {
    margin-top: 15px;
  }
  #gdmessage #graduate .inner .list .block .txt .txt_content .btn a {
    background: #70c7da;
    width: 100%;
    justify-content: flex-start;
    font-size: 14px;
    padding: 0 20px;
  }
  #gdmessage #graduate .inner .list .block .txt .img_content {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #gdmessage #graduate .inner .list .block:not(:last-child) {
    margin-bottom: 30px;
  }
}
#information #oc {
  padding-top: 60px;
}
#information #oc .inner ul {
  display: flex;
  justify-content: center;
}
#information #oc .inner ul li img {
  width: 450px;
}
#information #oc .inner ul li span {
  display: block;
  margin-top: 30px;
}
#information #oc .inner ul li span a {
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 0.05em;
}
#information #oc .inner ul li:not(:last-child) {
  margin-right: 40px;
}
#information #exam {
  padding: 100px 0;
}
#information #exam .inner h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
#information #exam .inner ul {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  border-bottom: 1px solid #000;
}
#information #exam .inner ul li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  padding: 20px 10px;
}
#information #exam .inner ul li a .ttl {
  font-size: 22px;
  margin-bottom: 15px;
}
#information #exam .inner ul li a .num {
  font-size: 18px;
  margin-bottom: 10px;
}
#information #exam .inner ul li a .date {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0069ac;
  font-size: 20px;
}
#information #exam .inner ul li a .date span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0069ac;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 50%;
}
#information #exam .inner ul li a .txt {
  color: #0069ac;
  font-size: 18px;
}
#information #exam .inner ul li:not(:last-child) {
  border-right: 3px dotted #000;
}
#information #exam .inner ul:nth-child(1) {
  border-top: 1px solid #000;
}
#information #exam .inner ul:nth-child(1) li {
  justify-content: space-between;
  width: 25%;
}
#information #exam .inner ul:nth-child(2) li {
  width: 50%;
  justify-content: center;
}
#information #exam .inner .btn {
  margin-top: 40px;
}
#information #exam .inner .btn a {
  letter-spacing: 0.02em;
  margin: 0 auto;
  width: 300px;
}

@media (max-width: 1100px) {
  #information #exam .inner ul {
    flex-wrap: wrap;
  }
  #information #exam .inner ul:nth-child(1) li {
    width: 50%;
    position: relative;
  }
  #information #exam .inner ul:nth-child(1) li:nth-child(2n) {
    border-right: 0;
  }
  #information #exam .inner ul:nth-child(1) li:nth-child(n+3) {
    margin-top: 40px;
  }
  #information #exam .inner ul:nth-child(1) li:nth-child(n+3)::before {
    content: "";
    display: block;
    border-top: 3px dotted #000;
    width: calc(100% - 20px);
    left: 10px;
    top: -22px;
    position: absolute;
  }
  #information #exam .inner ul:nth-child(2) li {
    width: 100%;
    border-right: 0;
  }
  #information #exam .inner ul:nth-child(2) li:not(:last-child) {
    border-bottom: 3px dotted #000;
  }
}
@media (max-width: 768px) {
  #information #oc {
    padding-top: 30px;
  }
  #information #oc .inner ul {
    flex-direction: column;
  }
  #information #oc .inner ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  #information #exam {
    padding: 50px 0 100px;
  }
  #information #exam .inner h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #information #exam .inner ul {
    padding: 20px 0;
  }
  #information #exam .inner ul li .date {
    font-size: 18px;
  }
  #information #exam .inner ul:nth-child(1) li {
    width: 100%;
    border-right: 0;
    padding: 0;
  }
  #information #exam .inner ul:nth-child(1) li .ttl {
    font-size: 18px;
  }
  #information #exam .inner ul:nth-child(1) li .num {
    font-size: 16px;
  }
  #information #exam .inner ul:nth-child(1) li:nth-child(n+2) {
    margin-top: 40px;
  }
  #information #exam .inner ul:nth-child(1) li:nth-child(n+2)::before {
    content: "";
    display: block;
    border-top: 3px dotted #000;
    width: calc(100% - 20px);
    left: 10px;
    top: -22px;
    position: absolute;
  }
  #information #exam .inner ul:nth-child(2) {
    padding: 0;
  }
  #information #exam .inner ul:nth-child(2) li .ttl {
    font-size: 18px;
  }
  #information #exam .inner ul:nth-child(2) li .num {
    font-size: 16px;
  }
  #information #exam .inner ul:nth-child(2) li .txt {
    font-size: 13px;
  }
}
#whatsnew #article .inner {
  max-width: 800px;
}
#whatsnew #article .inner h2 {
  border-bottom: 4px solid #000;
  margin-bottom: 40px;
}
#whatsnew #article .inner .eyecatch {
  margin-bottom: 20px;
  text-align: center;
}
#whatsnew #article .inner .content {
  background: #fff;
  padding: 20px;
}
#whatsnew #article .inner .content p:not(:last-child) {
  margin-bottom: 1em;
}
#whatsnew #article .inner .content .right {
  text-align: right;
}
#whatsnew #article .inner .content .center {
  text-align: center;
}
#whatsnew #article .inner .links {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
#whatsnew #article .inner .links .prev a {
  display: flex;
  align-items: center;
  font-weight: bold;
}
#whatsnew #article .inner .links .prev a::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/arrow_prev.svg) no-repeat center/contain;
  margin-right: 10px;
}
#whatsnew #article .inner .links .next a {
  display: flex;
  align-items: center;
  font-weight: bold;
}
#whatsnew #article .inner .links .next a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/arrow_next.svg) no-repeat center/contain;
  margin-left: 10px;
}
#whatsnew #article .inner .btn {
  margin-top: 40px;
}
#whatsnew #article .inner .btn a {
  margin: 0 auto;
}
#whatsnew #news_list .inner .box {
  background: #fff;
  padding: 40px;
  border: 4px solid #000;
}
#whatsnew #news_list .inner .box .pager {
  margin-top: 80px;
}
#whatsnew #news_list .inner .box .pager ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#whatsnew #news_list .inner .box .pager ul li a {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
}
#whatsnew #news_list .inner .box .pager ul li.current a {
  background: #000;
  color: #fff;
  pointer-events: none;
}
#whatsnew #news_list .inner .box .pager ul li.current a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  #whatsnew #news_list .inner .box {
    padding: 20px;
  }
  #whatsnew #news_list .inner .box .pager {
    margin-top: 30px;
  }
  #whatsnew #news_list .inner .box .pager ul {
    gap: 10px;
  }
  #whatsnew #news_list .inner .box .pager ul li a {
    border-width: 2px;
  }
  #whatsnew #article .inner .date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #whatsnew #article .inner h2 {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  #whatsnew #article .inner .links {
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */