/* 
common
*/

@charset "utf-8";

/***********************************************************************
 *
 *            common
 * 
 ***********************************************************************/


@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;900&display=swap");

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
ol,
ul,
li,
dl,
dt,
dd,
table,
th,
td,
div,
span,
form,
label,
input,
textarea,
select,
option,
button {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  text-decoration: none;
  font-size: 14px;
  font-size: min(1.167vw, 14px);
  color: #333;
  text-align: justify;
  font-feature-settings: "palt" 1, "trad" 1;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  margin: 100px auto 60px;
}

h3 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  margin: 0px auto 30px;
}

h4,
h5 {
  font-weight: 600;
}

img {
  vertical-align: bottom;
}

#main {
  overflow: clip;
}

/*YouTube responsive size*/
.youtube {
  position: relative;
  max-width: 100%;
  padding-top: 56.25%;
}

.sp {
  display: none;
}
.pc {
  display: block;
}

/***********************************************************************
 *
 *            header
 * 
 ***********************************************************************/

/* #header */
#header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 994;
  width: 100%;
  max-width: 704px;
  height: 80px;
  padding: 0;
  margin: auto;
  background: rgb(255, 255, 255);
  align-items: center;
  transition: 0.2s all;
}

.logowrapper {
  display: flex;
  width: 704px;
  max-width: 704px;
  height: 80px;
  margin: 15px auto 0;
  padding: 25px 30px;
  border: solid 1px #fff;
  border-radius: 5px;
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 5;
}

.__fixed .logowrapper {
  background: none;
}

#header .wrap {
  display: block;
  max-width: 1220px;
  width: 100%;
  margin: auto;
}

#header .logo {
  position: relative;
}

.__fixed #header .logo {
  max-width: 468px;
  width: 468px;
}

.logo img {
  width: 140px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s all;
  opacity: 0;
}

.logo img.colLogo {
  opacity: 1;
}

.__fixed .logo img.colLogo {
  opacity: 0;
}
.__fixed .logo img.whiLogo {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #header {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 33px;
    padding-right: 20px;
  }

  .logo img {
    width: 153px;
    height: 33px;
  }
} /***　max-width: 768p　**/

/* #menu */
#menu {
  display: none;
}

/* 
 * #global MENU
 *
 */

#global {
  width: 100%;
  text-align: right;
  display: flex;
  position: relative;
}

nav#global {
  letter-spacing: 0;
  display: flex;
  text-align: left;
}

nav#global li {
  margin-bottom: 2em;
}

nav#global li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 3px;
  width: max-content;
  min-width: 180px;
  border-radius: 5px;
  transition: 0.5s all;
}

nav#global li li a:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  transform: rotate(45deg);
  margin-right: 10px;
}

nav#global li a:hover,
nav#global li.active > a {
  color: #fff;
  background-color: #000;
}

nav#global .bannerBox li a:hover,
nav#global .bannerBox li.active a {
  color: #fff;
  background-color: transparent;
}

#menu,
#menu span {
  display: inline-block;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#menu {
  position: absolute;
  top: 15px;
  right: 10px;
  display: block;
  width: 45px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
}

#menu span {
  position: absolute;
  left: calc(50% - 50% / 2);
  width: 45%;
  height: 4px;
  background-color: #4e97d5;
  border-radius: 4px;
}

#menu span:nth-of-type(1) {
  top: 30%;
}
#menu span:nth-of-type(2) {
  top: 50%;
}
#menu span:nth-of-type(3) {
  top: 70%;
}

#menu.active span {
  background-color: #fff;
}
#menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
#menu.active span:nth-of-type(2) {
  opacity: 0;
}
#menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

.__fixed #main,
.__fixed footer {
  opacity: 0;
  position: fixed;
}

.__fixed #header {
  height: 100vh;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}

.__fixed #header .wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: none;
  height: 100svh;
  margin: auto;
  text-align: left;
  background-color: #5ca4d9;
  transition: 0.8s all;
  position: relative;
  overflow: scroll;
}

.__fixed #global {
  width: 60%;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}

.__fixed #global:before {
  opacity: 1;
}

.nav01,
.nav02,
.nav03 {
  display: none;
}

.__fixed #global .nav01,
.__fixed #global .nav02,
.__fixed #global .nav03 {
  display: block;
  padding-top: 100px;
}

.__fixed #global div.nav01 li:first-of-type {
  width: 100%;
  display: flex;
  justify-content: center;
  height: max-content;
}

.__fixed #global .nav01,
.__fixed #global .nav02,
.__fixed #global .nav03 {
  display: block;
  position: relative;
  width: max-content;
  height: max-content;
  margin: 0;
  padding-top: 200px;
  box-sizing: border-box;
}

.__fixed #global .nav li {
  display: block;
  padding: 10px 0 10px 0;
}

.__fixed #global li li {
  margin: 0;
}

.__fixed #global li li a {
  font-size: 14px;
}

.__fixed #global .nav span {
  border-left: solid 3px #0082d2;
  padding: 10px 0 10px 10px;
  display: block;
}

.__fixed #global .nav span {
  border-left: none;
  padding: 10px 0 10px 0;
}

.__fixed .fixbanners {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 150px;
}

.__fixed .headerbanners02 {
  display: none;
}

#global .banners {
  width: auto;
  max-width: 750px;
  line-height: 24px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.__fixed nav#global ul.banners li {
  margin-bottom: 0;
}

.__fixed nav#global ul.banners li a {
  width: 125px;
  min-width: 125px;
  height: 132px;
  text-indent: -999px;
  overflow: hidden;
  text-align: left;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 0;
}

.__fixed nav#global ul.banners li.fullsizeW {
  width: 100%;
}

.__fixed nav#global ul.banners li.fullsizeW a {
  margin: auto;
}

.__fixed nav#global ul.banners li a:before {
  content: none;
}

ul.banners li a:hover {
  opacity: 0.5;
}

ul.banners li:nth-of-type(1) a {
  background-image: url(../../img/banner_opencampus.png);
}
ul.banners li:nth-of-type(2) a {
  background-image: url(../../img/banner_guidebook.png);
}
ul.banners li:nth-of-type(3) a {
  background-image: url(../../img/banner_meiseiuniv.png);
}
ul.banners li:nth-of-type(4) a {
  background-image: url(../../img/banner_access.png);
}
ul.banners li:nth-of-type(5) a {
  background-image: url(../../img/banner_meidesan.png);
}

ul.banners {
  display: none;
}

.bannerBox {
  display: block;
  width: 100%;
  max-width: 100vw;
}

.__fixed ul.banners {
  display: flex;
}

.fixbanners {
  position: fixed;
  right: 0;
  top: calc(45% - 160px);
  display: block;
}

.__fixed .fixbanners {
  display: none;
}

nav#global .fixbanners li {
  margin-bottom: 0;
}

nav#global .fixbanners li a {
  min-width: 120px;
  width: 120px;
  height: 80px;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  background-repeat: no-repeat;
  background-size: 100%;
}

nav#global .fixbanners li a:before {
  content: none;
}

nav#global .fixbanners li a:hover {
  background-color: transparent;
  opacity: 0.5;
}

nav#global .fixbanners li:nth-of-type(1) a {
  background-image: url(../../img/banner_insta.png);
  height: 70px;
  margin-bottom: 1em;
}
nav#global .fixbanners li:nth-of-type(2) a {
  background-image: url(../../img/banner_guidebook_bl.png);
  height: 70px;
  margin-bottom: 0;
}
nav#global .fixbanners li:nth-of-type(3) a {
  background-image: url(../../img/banner_opencampus.png);
  height: 91px;
  margin-bottom: 1em;
}
nav#global .fixbanners li:nth-of-type(4) a {
  background-image: url(../../img/banner_meidesan.png);
  height: 94px;
  background-size: contain;
}

/***********************************************************************
 *
 *            TOP
 * 
 ***********************************************************************/

.topheaderTxt {
  position: absolute;
  top: calc(50% - 235px / 2.5);
  left: 0;
  z-index: +2;
  right: 0;
  max-width: 730px;
  margin: auto;
}

/**************************************************
 *            TOP　HEADER　MOV　SLIDE
 ***************************************************/
.topheaderTxt h1 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  margin-bottom: 0.5em;
}

.topheaderTxt p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.925em;
}

.toppage .mainVBlk,
.toppage .mainVBlk .contentsscroller {
  background: #fff;
}

.toppage .mainVBlkwrapper {
  height: calc(100svh - 100px);
  position: relative;
}

.toppage .mainVBlk:before {
  content: none;
}

.toppage .mainVBlk video {
  width: auto;
  height: calc(100vh - 200px);
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.toppage .mainVBlk:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: +2;
}

.toppage .mainVBlk video {
  object-fit: cover;
  position: absolute;
  width: 100% !important;
  height: 100vh;
  top: 0;
  left: 0;
}

/**************************************************
 *            TOP　concept
 ***************************************************/

.toppage .secondBlk .sectionfull {
  max-width: 670px;
  margin: auto;
}

.toppage .secondBlk .sectionfull h2 {
  font-size: 20px;
  color: #fff;
  background: #0393ca;
  padding: 5px 10px;
  border-radius: 8px;
  margin: 50px auto 20px;
  width: max-content;
}

.toppage .secondBlk {
  background-image: url(../../img/concept_bg.svg);
  background-size: 1364px;
  background-position: bottom -80px center;
  background-repeat: no-repeat;
}

.toppage .secondBlk .sectioncontainer {
  padding: 50px 0 100px 0;
}

.toppage .secondBlk h3 {
  font-size: 38px;
  line-height: 1.63em;
  text-align: center;
  font-weight: 900;
}

.toppage .secondBlk p {
  max-width: 670px;
  line-height: 1.8em;
  font-weight: 400;
  padding: 0 0 20px;
  margin: auto;
  text-align: center;
}

.toppage .secondBlk p.bold {
  font-weight: 600;
}

/**************************************************
 *            TOP　chart thirdblk
 ***************************************************/
.toppage #thirdBlk {
  justify-content: center;
}

.toppage #thirdBlk .sectionfull {
  padding: 0 0 100px 0;
}

.chart01 {
  max-width: 883px;
  max-height: 405px;
  height: 100vh;
  position: relative;
  display: flex;
  margin: 0 auto 50px;
  width: 100vw;
}

.chart01 img,
.conect,
.bymark {
  position: absolute;
}
.conect {
  max-width: 208px;
  height: auto;
  top: calc(50% - 30px);
}

.groupA,
.groupB {
  max-width: 287px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 262px;
  height: 100svh;
}

.groupA {
  top: calc(50% - 287px / 2);
  left: 29%;
}
.groupB {
  top: calc(50% - 287px / 2);
  left: 35%;
}

.toppage #thirdBlk p.plan,
.toppage #thirdBlk p.exp {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #0280bb;
}

p.exp {
  padding-top: 100px;
}

.circleA,
.circleB {
  width: 100%;
  max-width: 212px;
  height: 212px;
  aspect-ratio: 1/1;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.circleB {
  top: 95px;
}

.bymark {
  top: 50%;
  left: 62.9%;
  max-width: 33px;
  aspect-ratio: 1/1;
}
.pow {
  max-width: 105px;
  aspect-ratio: 1/1;
  max-height: 105px;
}

.pow01 {
  top: 24px;
  left: 0;
}
.pow02 {
  top: 24px;
  right: 0;
}
.pow03 {
  bottom: -24px;
}
.pow04 {
  left: calc(50% - 105px / 2);
  top: 24px;
}
.pow05 {
  bottom: -24px;
  left: 0;
}
.pow06 {
  bottom: -24px;
  right: 0;
}

.power01 {
  width: 348px;
  height: 385px;
  top: -39px;
  left: 5%;
}

.power02 {
  width: 359px;
  height: 385px;
  top: -14.8%;
  left: -36%;
}

.groupA,
.circleA,
.groupB,
.circleB,
p.plan,
p.exp,
.pow01,
.pow02,
.pow03,
.pow04,
.pow05,
.pow06,
.bymark,
.power01,
.power02,
.conect {
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-show .groupA {
  animation-name: fadein;
}
.is-show .circleA {
  animation: fadein 0.5s ease-out 0s 1 normal forwards,
    circleA 0.5s ease-out 0s 3 normal forwards;
}

.is-show .groupB {
  animation-delay: 0.5s;
  animation-name: fadein;
}
.is-show .circleB {
  animation: fadein 1s ease-out 0s 1 normal forwards,
    circleA 1s ease-out 0s 3 normal forwards;
}
.is-show p.plan {
  animation-delay: 2s;
  animation-name: fadein;
}
.is-show p.exp {
  animation-delay: 2.5s;
  animation-name: fadein;
}
.is-show .pow01 {
  animation-delay: 4s;
  animation-name: pow01, fadein;
}
.is-show .pow02 {
  animation-delay: 4.2s;
  animation-name: pow02, fadein;
}
.is-show .pow03 {
  animation-delay: 4.6s;
  animation-name: pow03, fadein;
}
.is-show .power01 {
  animation-delay: 5s;
  animation-name: power01, fadein;
}
.is-show .pow04 {
  animation-delay: 6s;
  animation-name: pow04, fadein;
}
.is-show .pow05 {
  animation-delay: 6.2s;
  animation-name: pow05, fadein;
}
.is-show .pow06 {
  animation-delay: 6.4s;
  animation-name: pow06, fadein;
}
.is-show .power02 {
  animation-delay: 6.8s;
  animation-name: power02, fadein;
}
.is-show .bymark {
  animation-delay: 8s;
  animation-name: bymark, fadein;
}
.is-show .conect {
  animation-delay: 9s;
  animation-name: conect, fadein;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 100%;
    transform: scale(1);
  }
}

@keyframes circleA {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.toppage #thirdBlk h4 {
  font-size: 22px;
  color: #0280bb;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}

.toppage #thirdBlk p {
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
}

/**************************************************
 *            TOP　features fourthBlk
 ***************************************************/

.features .sectioncontainer {
  margin-top: 0;
}

.features.fourthBlk h2 {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.features.fourthBlk h3 {
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  margin: 20px 0;
}
.features.fourthBlk h3 b {
  font-family: Noto Sans JP;
  display: block;
  font-size: 80px;
  font-weight: 400;
  filter: drop-shadow(7px 7px 0 #fae506);
}

.features.fourthBlk #fourthBlk > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
}

.features.fourthBlk #fourthBlk > div:nth-of-type(even) {
  flex-direction: row-reverse;
}

.features.fourthBlk .sectionhalf {
  width: 100%;
  max-width: 600px;
}

.features.fourthBlk .txtblk {
  background: #0088d7;
  width: 100%;
  height: 300px;
  padding: 50px 40px;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.features.fourthBlk .txtblk h4,
.features.fourthBlk .txtblk p {
  color: #fff;
}

.features.fourthBlk .txtblk h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

.features.fourthBlk .txtblk p {
  width: 100%;
  font-size: 16px;
  line-height: 2em;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.features.fourthBlk .picblk,
.features.fourthBlk .picblk img {
  max-width: 500px;
  border-radius: 5px;
}

/**************************************************
 *            TOP　banners
 ***************************************************/

.toppage section#fifthBlk {
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 100px 0 0;
}

.toppage section#fifthBlk .picblk {
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100vw;
}

.bannerhello.bannerYT {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 360px;
}

.bannerYT img {
  width: 100%;
  max-width: 360px;
  margin: auto;
}

.bannerhello.bannerYT a {
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4em;
}
.bannerhello.bannerYT a:nth-of-type(2) {
  margin-right: 4%;
}

.toppage section#sixthBlk .bannerArea {
  width: 100%;
  margin: 200px auto;
}

.toppage section#sixthBlk .bannerArea ul {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.toppage section#sixthBlk .bannerArea ul li {
  display: flex;
  align-items: flex-end;
}

.toppage section#sixthBlk .bannerArea ul li a {
  transform: rotate(-5deg);
  display: block;
  transition: 0.2s all;
}

.toppage section#sixthBlk .bannerArea ul li:nth-of-type(even) a {
  transform: rotate(5deg);
}

.toppage section#sixthBlk .bannerArea ul li a:hover {
  transform: rotate(0deg);
  transform: scale(1.1);
}

.toppage section#sixthBlk .bannerArea ul li img {
  max-width: 260px;
}

/**************************************************
 *            TOP　NEWS
 ***************************************************/

.toppage .seventhBlk h2,
.toppage .seventhBlk h3 {
  text-align: center;
  color: #000;
}

.toppage .seventhBlk h2 {
  font-size: 40px;
  margin: 0 auto;
}

.toppage .seventhBlk h3 {
  font-size: 20px;
  margin: 0 auto 30px;
}

/***********************************************************************
 *
 *            2nd Page common
 * 
 ***********************************************************************/

.mainVBlkwrapper {
  width: calc(100% - 100px);
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
  margin: 50px 50px 0;
  padding: 0 0;
  position: relative;
}

.mainVBlk {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  padding: 0 0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.mainVBlk:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: animationZoom1 10s ease-out forwards;
}

@keyframes animationZoom1 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 415px) {
  ._about .mainVBlk:before {
    background-image: url(../../img/mainv_about.jpg);
  }
  ._meidesei .mainVBlk:before {
    background-image: url(../../img/mainv_meidesei.jpg);
  }
  ._curriculum .mainVBlk:before {
    background-image: url(../../img/mainv_curriculum.jpg);
  }
  ._project .mainVBlk:before {
    background-image: url(../../img/mainv_project.jpg);
  }
  ._teachers .mainVBlk:before {
    background-image: url(../../img/mainv_teachers.jpg);
  }
  ._facility .mainVBlk:before {
    background-image: url(../../img/mainv_facility.jpg);
  }
  ._recruit .mainVBlk:before {
    background-image: url(../../img/mainv_recruit.jpg);
  }
  ._recruit._interviewpage .mainVBlk:before {
    background-image: none;
  }
  ._exam .mainVBlk:before {
    background-image: url(../../img/mainv_exam.jpg);
  }
}

a.contentsscroller {
  width: 85px;
  height: 85px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  border-radius: 85px;
  position: absolute;
  bottom: -45px;
  right: 0;
  left: 0;
  margin: auto;
  text-decoration: none;
  z-index: 10;
}

.pageHeader a.contentsscroller {
  background-color: #fff;
}

a.contentsscroller span {
  display: block;
  transform: rotate(-45deg);
  font-weight: 600;
  color: #000;
  line-height: 1;
}

a.contentsscroller:after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  border-radius: 3px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-top: none;
  border-left: none;
}

#container {
  width: 100%;
  position: absolute;
  top: 0;
}

.pageHeader {
  height: 100vh;
  height: auto;
  max-width: calc(100% - 100px);
  margin: auto;
  position: relative;
  z-index: 1;
  text-align: left;
  top: 0;
  transition: 0.5s all;
  background-color: #f0f0f0;
  padding: 125px 0;
  border-radius: 0 0 10px 10px;
}

.headInner {
  position: relative;
  left: 50%;
  width: 50%;
  height: calc(100vh - 80px);
  background: #0082d2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px;
  margin-top: 80px;
}

.page2nd h1,
.page2nd h2,
.page2nd h3,
.page2nd p,
._teachers h1,
._teachers h2,
._teachers h3,
._teachers p {
  color: #000;
  margin: 0;
  line-height: 1;
  margin: 0;
}

.page2nd h1,
._teachers h1 {
  text-align: center;
  font-size: 40px;
  font-size: min(3.333vw, 40px);
  margin: 0 auto 50px;
}

.page2nd h1 span,
._teachers h1 span {
  text-align: center;
  display: block;
  font-size: 16px;
  font-size: min(1.333vw, 16px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.page2nd .pageHeader h2,
._teachers .pageHeader h2,
.page2nd .pagecontents .sectionfull.narrow h2 {
  font-size: 31px;
  font-size: min(2.154vw, 28px);
  font-weight: 400;
  color: #000;
  margin: 0 0 50px;
  line-height: 50px;
}

._about.page2nd .pageHeader h2,
.page2nd .pagecontents h2,
._teachers .pagecontents h2,
.interview_gra .pagecontents h2,
._graduate_works .pagecontents h2 {
  font-size: 14px;
  font-size: min(1.167vw, 14px);
  font-weight: 600;
  color: #000;
  margin: 0 0 20px;
}

.page2nd .pagecontents h3,
.page3rd .pagecontents h3,
._about .pageHeader h3,
._teachers .pagecontents h3,
.interview_gra .pagecontents h3,
._graduate_works .pagecontents h3 {
  font-size: 39px;
  font-size: min(2.393vw, 28px);
  line-height: 1;
  position: relative;
  z-index: 2;
  width: max-content;
  margin-bottom: 50px;
}

.interview_gra .pagecontents h3,
._graduate_works .pagecontents h3,
.page3rd .pagecontents h3 {
  margin: 0 0 50px 0;
}

._teachers .pagecontents h3 {
  font-size: 20px;
  font-size: min(1.151vw, 20px);
  width: max-content;
  margin-bottom: 50px;
  font-weight: 600;
}

.page3rd .pagecontents h3,
._about .pageHeader h3,
._teachers .pagecontents h3 {
  width: max-content;
}

._about .pageHeader h3:after,
.page2nd .pagecontents h3:after,
.page3rd .pagecontents h3:after,
._graduate_works .pagecontents h3:after,
.interview_gra .pagecontents h3:after {
  position: absolute;
  content: "";
  background-color: #ffff79;
  width: calc(100% + 16px);
  height: 35px;
  display: block;
  top: 14px;
  z-index: -1;
  border-radius: 5px;
  box-sizing: content-box;
  padding: 0;
}

.page2nd .pageHeader p,
.page3rd .pageHeader p,
._teachers .pageHeader p {
  font-size: 16px;
  font-size: min(1.231vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.page2nd .pagecontents p,
._teachers .pagecontents p {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.page2nd .pagecontents p.lead,
._teachers .pagecontents p.lead {
  font-size: 16px;
}

.page3rd h1,
._newspage h1,
._mmovie h1 {
  margin: 180px auto 200px;
  font-size: 40px;
  color: #000;
  text-align: center;
}

._newspage h1,
._mmovie h1 {
  margin: 180px auto 100px;
}

.pageContents {
  margin-top: 100vh;
  padding-top: 100px;
  z-index: 10;
  position: relative;
  background: #fff;
  transition: 0.5s all;
}

#main.scrollstart .pageContents {
  transition: 0.5s all;
  box-shadow: 0px -30px 50px rgba(0, 0, 0, 0.5);
}

#main.scrollstart .pageHeader {
  -webkit-filter: blur(5px);
  filter: blur(10px) brightness(1.2);
}

.gryBlk {
  background-color: #f0f0f0;
}

.whiteBlk {
  background-color: #fff;
}

.sectionwrapper {
  padding: 0;
}

.sectioncontainer {
  width: 100%;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}

section {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

section#firstBlk {
  display: block;
}

.sectionfull.narrow {
  max-width: 565px;
  margin: 0 auto;
  display: block;
}

.page2nd .pagecontents .sectionfull.narrow p {
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 16px;
}

section#firstBlk .sectionfull img {
  width: 100%;
}

.sectionhalf {
  width: 560px;
}

.sectionhalf.r560,
.sectionhalf.l560 {
  width: 560px;
  display: flex;
  flex-direction: column;
  /*align-items: flex-end;*/
}

.sectionhalf.l560 {
  align-items: flex-start;
}

.sectionhalf.l560 h3,
.sectionhalf.r560 h3 {
  width: 560px;
  width: max-content;
}

.sectionhalf p,
.section23rd p {
  width: 560px;
  margin-bottom: 2em;
}

.section23rd,
.section23rd p {
  max-width: 760px;
  width: 760px;
}

.section23rd img {
  max-width: 760px;
  width: 650px;
  margin: auto;
}

.sectionhalf p:last-of-type,
.section23rd p:last-of-type {
  padding-bottom: 20px;
}

.section13rd,
.section13rd p {
  max-width: 360px;
  width: 360px;
}

.sectionhalf .picblk {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  height: 640px;
  width: 560px;
  margin-top: 30px;
  position: relative;
}

.sectionhalf .picblk figure {
  width: 270px;
  height: 450px;
  border-radius: 5px;
  overflow: hidden;
}

.sectionhalf .picblk figure img {
  width: 100%;
  height: auto;
}

.sectionhalf .picblk figure:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  right: 0;
}

/***********************************************************************
 * separator
 ***********************************************************************/
.separatorBG {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 435px;
  top: 0;
  z-index: -1;
}

.separatorBG:after {
  box-shadow: 0 80px 40px -20px rgba(0, 0, 0, 0.2) inset;
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 435px;
}

.separatorBG figure {
  width: calc(100vw - 160px);
  height: 435px;
  margin: auto;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.separatorBG figure img {
  height: auto;
  /* max-height: 435px; */
  width: 100%;
  margin-top: 5vw;
  /* transition: 2s all;*/
}

/***********************************************************************
 *
 *            2nd About
 * 
 ***********************************************************************/

._about section#firstBlk {
  display: flex;
}

._about .end {
  border-bottom: solid 1px #000;
}

._about .sectionfull {
  max-width: 1200px;
  width: 100%;
  padding: 100px 0 50px;
}

._about #secondBlk figure {
  text-align: center;
}

._about #secondBlk img {
  max-width: 930px;
  width: 100%;
  margin: 50px auto;
}

.section23rd.thirdBlk {
  padding: 50px 0 100px;
}

.section23rd.thirdBlk em {
  background: none;
  padding: 2px 4px;
  border-radius: 5px;
  letter-spacing: 0.1em;
  font-style: normal;
  border: solid 1px #0081cc;
  color: #0081cc;
  margin-right: 1em;
  line-height: 2.4em;
}

._about .fourthBlk {
  margin-top: 0;
  position: relative;
  overflow: visible;
  padding-top: 0;
}

._about .fourthBlk #fourthBlk .section23rd {
  border-bottom: solid 1px #000;
}

._about #fifthBlk .picblk {
  text-align: center;
}

._about #fifthBlk {
  margin: 100px auto;
}

._about #fifthBlk .grades div {
  padding: 0 0 2em 20px;
  line-height: 2em;
  letter-spacing: 0.05em;
  position: relative;
}

._about #fifthBlk .grades div:before {
  content: "";
  border-right: solid 3px #000;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 3px;
}

._about #fifthBlk .grades div:after {
  content: "";
  background: #000;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
}

._about #fifthBlk .grades div b,
._about #sixthBlk .sectionQrtr div b {
  display: block;
  font-size: 20px;
}

._about #sixthBlk .sectionQrtr div b {
  margin-bottom: 2em;
}

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

.sectionQrtr div {
  max-width: 260px;
  width: 260px;
  background-color: #efefef;
  border-radius: 5px;
  padding: 34px;
  line-height: 2em;
  margin-bottom: 44px;
  font-feature-settings: normal;
}

.sectionQrtr::after {
  content: "";
  display: block;
  width: 575px;
}

._about .sectionQrtr div:nth-of-type(4) {
  margin-bottom: 44px;
}

.sectionQrtr div:nth-of-type(5),
.sectionQrtr div:nth-of-type(6) {
  margin-bottom: 0;
}

.sectionQrtr div b:before {
  content: "";
  width: 1px;
  border-right: solid #61b0d3 3px;
  height: max-content;
  margin: 0 10px 0 -10px;
}

.sectionQrtr div:nth-of-type(2) b:before {
  border-right: solid #d40044 3px;
}
.sectionQrtr div:nth-of-type(3) b:before {
  border-right: solid #67b263 3px;
}
.sectionQrtr div:nth-of-type(4) b:before {
  border-right: solid #de8000 3px;
}
.sectionQrtr div:nth-of-type(5) b:before {
  border-right: solid #9089b2 3px;
}
.sectionQrtr div:nth-of-type(6) b:before {
  border-right: solid #61b0d3 3px;
}

._about .fourthBlk .sectioncontainer,
._about .fourthBlk.sectionwrapper {
  padding-bottom: 0;
}

/***********************************************************************
 *
 *            2nd _curriculum
 * 
 ***********************************************************************/

._curriculum.page2nd .pageHeader .txtblk {
  margin-bottom: 100px;
}

._curriculum.page2nd .sectionQrtr {
  margin-top: 40px;
}

._curriculum.page2nd .sectionQrtr div {
  max-width: 380px;
  width: 380px;
  background-color: #fff;
  margin-bottom: 20px;
}

._curriculum.page2nd .sectionQrtr b {
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}

._curriculum.page2nd .sectionQrtr div b:before {
  content: "";
  width: 1px;
  border-right: solid #cb0044 3px;
  height: max-content;
  margin: 0 10px 0 -10px;
}

._curriculum.page2nd .sectionQrtr div:nth-of-type(1) b {
  color: #cb0044;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(2) b {
  color: #6cad5a;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(3) b {
  color: #61a7ca;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(4) b {
  color: #61a7ca;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(5) b {
  color: #e4b600;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(6) b {
  color: #000;
}

._curriculum.page2nd .sectionQrtr div:nth-of-type(2) b:before {
  border-right: solid #6cad5a 3px;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(3) b:before {
  border-right: solid #61a7ca 3px;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(4) b:before {
  border-right: solid #61a7ca 3px;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(5) b:before {
  border-right: solid #e4b600 3px;
}
._curriculum.page2nd .sectionQrtr div:nth-of-type(6) b:before {
  border-right: solid #000 3px;
}

.sectionQrtr div:nth-of-type(4) {
  margin-bottom: 0;
}

.subjects {
  opacity: 0;
  height: 50vw;
}

._curriculum.page2nd .pagecontents #thirdBlk h3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  width: calc(100% - 20px);
}

._curriculum.page2nd .pagecontents #thirdBlk span {
  color: #6fc058;
  font-size: 20px;
  margin-top: 22px;
}

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

.subjects.readdone {
  animation: height_slide 1s ease-out forwards;
}

@keyframes height_slide {
  from {
    opacity: 0;
    height: 50vw;
  }
  to {
    opacity: 1;
    height: 100%;
  }
}

.subjects .subjectbox {
  max-width: 360px;
}

.subjects h4 {
  font-size: 20px;
}

.subjects img {
  max-width: 360px;
  margin: 20px 0;
}

.subjects p,
.subjects p:last-of-type {
  max-width: 360px;
  border-bottom: none;
  font-feature-settings: normal;
  margin-bottom: 50px;
}

ul.subjectBtn {
  list-style: none;
  margin-top: 150px;
  position: relative;
  z-index: 2;
}

.subjectBtn li {
  margin-bottom: 10px;
  text-align: right;
  width: 200px;
  font-weight: 600;
}

.subjectBtn li.sps {
  background: #f2f2f2;
  padding: 10px 15px 10px 0;
  box-sizing: border-box;
}

.subjectBtn li a {
  display: block;
  width: 100%;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
  background: #f2f2f2;
  text-decoration: none;
  color: #000;
  transition: 0.3s all;
}

.subjectBtn li a:hover {
  width: 105%;
}

.subjectBtn li a.active {
  color: #fff;
  background: #6fc058;
}

.subjectBtn li ul {
  list-style: none;
  margin-top: 10px;
}

.subjectBtn li ul li {
  margin-bottom: 5px;
}

.subjectBtn li ul li a {
  display: block;
  width: calc(100% - 5px);
  padding: 10px 15px;
  margin-right: 15px;
  box-sizing: border-box;
  background: #e5e5e5;
  text-decoration: none;
  color: #000;
}

._curriculum #thirdBlk .section13rd {
  max-width: 420px;
  width: 420px;
  position: relative;
}

._curriculum #thirdBlk .section13rd:before {
  content: "";
  display: block;
  width: 270px;
  height: 449px;
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 200px;
  background-size: 100%;
  border-radius: 5px;
  top: 300px;
  margin: auto;
  opacity: 0;
  transition: 0.5s all;
}

._curriculum #thirdBlk .section13rd.theory:before {
  background-image: url(../../img/curriculum_theory00.jpg);
}
._curriculum #thirdBlk .section13rd.kikaku:before {
  background-image: url(../../img/curriculum_kikaku00.jpg);
}
._curriculum #thirdBlk .section13rd.exp:before {
  background-image: url(../../img/curriculum_exp00.jpg);
}
._curriculum #thirdBlk .section13rd.spc:before {
  background-image: url(../../img/curriculum_spc00.jpg);
}
._curriculum #thirdBlk .section13rd.spp:before {
  background-image: url(../../img/curriculum_spp00.jpg);
}
._curriculum #thirdBlk .section13rd.spcross:before {
  background-image: url(../../img/curriculum_spcross00.jpg);
}
._curriculum #thirdBlk .section13rd.carri:before {
  background-image: url(../../img/curriculum_carri00.jpg);
}

._curriculum #thirdBlk .section13rd.theory:before,
._curriculum #thirdBlk .section13rd.kikaku:before,
._curriculum #thirdBlk .section13rd.exp:before,
._curriculum #thirdBlk .section13rd.spc:before,
._curriculum #thirdBlk .section13rd.spp:before,
._curriculum #thirdBlk .section13rd.spcross:before,
._curriculum #thirdBlk .section13rd.carri:before {
  opacity: 1;
}

.subjects p.fullsize,
.subjects .subjectbox.fullsize,
.subjects .subjectbox.fullsize img {
  max-width: 760px;
  width: 760px;
  margin-bottom: 0;
}

.subjects .subjectbox.fullsize img {
  margin: 0;
}

/***********************************************************************
 *
 *            2nd _project
 * 
 ***********************************************************************/

._project .pagecontents section.whiteBlk {
  padding: 200px 0 100px 0;
}

._project .pagecontents section .sectionhalf h4 {
  font-size: 20px;
  margin-bottom: 1em;
}

._project .pagecontents section .sectionhalf h5 {
  font-size: 16px;
  margin-bottom: 1em;
}

._project .pagecontents section#secondBlk .txtblk P {
  height: 100%;
}

._project .sectionhalf img {
  max-width: 450px;
  width: 100%;
  margin-bottom: 0;
}

._project .sectionhalf.imgs {
  text-align: center;
  margin-top: 125px;
}

._project .projectBlk {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

._project .projectBlk .sectionhalf.imgs {
  margin-top: 0;
}

._project .imgslider {
  width: 450px;
  margin: auto;
}

._project .slick-list {
  border-radius: 5px;
}

._project .imgslider .slick-dots > li:first-child:last-child {
  display: none;
}

.projectBlk {
  margin-bottom: 100px;
}

.projectBlk .sectionhalf.txtblk {
  border-bottom: solid 1px #000;
}

.projectBlk .slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.slick-dots li button:before {
  font-size: 15px !important;
}

/***********************************************************************
 *
 *            2nd _exam
 * 
 ***********************************************************************/

._exam .pagecontents section.whiteBlk#secondBlk {
  padding: 200px 0 0 0;
}

._exam .pagecontents section.whiteBlk {
  padding: 100px 0 0;
}

._exam .sectionhalf.l560 {
  align-items: CENTER;
}

.adpolicy {
  width: 100%;
  max-width: 470px;
}

.adpolicy h5 {
  color: #ee9a38;
  font-size: 16px;
  font-weight: 400;
}

.adpolicy ul li {
  color: #ee9a38;
  color: rgb(238, 154, 56);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  height: max-content;
  z-index: 3;
  list-style: none;
  margin: 0.5em 0 0;
  width: max-content;
  line-height: 3em;
  padding: 0 10px;
  font-feature-settings: normal;
  letter-spacing: 0.05em;
}

.adpolicy ul li:before {
  content: "";
  width: 100%;
  height: 60%;
  background: #f0f0f0;
  line-height: 0;
  padding-left: -10px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.adpolicy ul li b {
  font-size: 22px;
}

.checkthepage {
  display: block;
  border: solid 1px #000;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  margin: 50px 0;
}

a.btnGuide:link,
a.btnGuide:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 20px;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  width: 100%;
  padding: 20px 5px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: 0.5s all;
  overflow: hidden;
}

a.btnGuide:after {
  content: "";
  display: inline-block;
  height: 23px;
  width: 23px;
  background: url(../../img/icon_arrowbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}

a.btnGuide:hover {
  color: #fff;
}

a.btnGuide:before {
  position: absolute;
  background: #aaa;
  bottom: -100%;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.2s all;
}

a.btnGuide:hover:before {
  bottom: 0;
}

._exam #thirdBlk p:nth-of-type(2) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.examchart {
  line-height: 2em;
  letter-spacing: 0.1em;
}

.examchart h5,
.examchart h6 {
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 0.3em 70px;
}

.examchart h6 {
  font-weight: 600;
  margin: 0 0 0.8em 0;
}

.examchart hr {
  height: 1px;
  border-bottom: solid 1px #000;
}
.examchart .chart01 .inner,
.examchart .chart02 .inner {
  display: flex;
}

.examchart .chart01 {
  max-width: none;
  height: auto;
  max-height: none;
  display: block;
  margin: 60px 0 0 0;
  width: auto;
}

.examchart .chart02 {
  margin-top: 40px;
}

.examchart .chart01 .inner div,
.examchart .chart02 .inner div {
  box-sizing: border-box;
  padding: 15px 30px;
  border-radius: 5px;
  width: 380px;
  max-width: 380px;
  position: relative;
}

.examchart .chart01 .inner div {
  background: #f0f0f0;
}

.examchart .chart02 .inner div {
  background: #d9d9d9;
}

.examchart .inner div ul {
  padding: 0 0 0 40px;
}
.examchart .inner div ul li {
  list-style: none;
}
.examchart .inner div ul li::before {
  content: "・";
}

.examchart .chart01 .inner:before,
.examchart .chart02 .inner:before {
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "年内の入試";
  border: solid 1px #000;
  border-radius: 5px 0 0 5px;
  border-right: none;
  padding: 15px;
  height: auto;
  margin-right: 8px;
}

.examchart .chart02 .inner:before {
  content: "年明けの入試";
}

.examchart .chart01 strong {
  font-size: 20px;
  font-weight: 600;
  width: 68px;
  height: 68px;
  z-index: 3;
  position: absolute;
  top: 110px;
  right: 130px;
  line-height: 1;
  background: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  transform: rotate(-15deg);
}

._exam #fourthBlk .imgs,
._exam #fifthBlk .imgs,
._exam #sixthBlk .imgs {
  padding-top: 80px;
  display: flex;
  justify-content: center;
}

._exam #fourthBlk .sectionhalf.imgs img,
._exam #fifthBlk .sectionhalf.imgs img,
._exam #sixthBlk .sectionhalf.imgs img {
  max-width: 450px;
  width: 100%;
}

._exam #fourthBlk .sectionfull.imgs,
._exam #fifthBlk .sectionfull.imgs,
._exam #sixthBlk .sectionfull.imgs {
  width: 100%;
  justify-content: space-between;
}

._exam #fourthBlk .sectionfull.imgs img,
._exam #fifthBlk .sectionfull.imgs img,
._exam #sixthBlk .sectionfull.imgs img {
  max-width: 360px;
  width: 100%;
}

._exam #fourthBlk .sectionhalf.r560 .txtblk,
._exam #fifthBlk .sectionhalf.r560 .txtblk,
._exam #sixthBlk .sectionhalf.r560 .txtblk {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

._exam #fourthBlk .sectionhalf.r560 .txtblk p:first-of-type {
  border-bottom: solid 1px #000;
  padding: 0 0 20px;
  margin-bottom: 40px;
}

/*
._exam #fourthBlk .sectionhalf.r560 .txtblk a,
._exam #fifthBlk .sectionhalf.r560 .txtblk a,
._exam #sixthBlk .sectionhalf.r560 .txtblk a{
	text-decoration:none;
	font-size:16px;
	color:#000;
	}
*/

._exam #fourthBlk .sectionhalf.r560 .txtblk img,
._exam #fifthBlk .sectionhalf.r560 .txtblk img,
._exam #sixthBlk .sectionhalf.r560 .txtblk img {
  max-width: 210px;
  margin: 20px auto;
}
._exam #fifthBlk .chart03 {
  margin: 60px 0 0 0;
}

._exam #fifthBlk .chart03 .inner {
  margin: 60px 0 0 0;
  width: 100%;
  width: 450px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

._exam #fifthBlk .chart03 .inner div {
  background: #f0f0f0;
  width: 100%;
  max-width: 142px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: relative;
  box-sizing: border-box;
  padding: 10px 8px;
}

._exam #fifthBlk .examchart .chart03 h5 {
  margin: 0 0 2em 0;
}

._exam #fifthBlk .chart03 .inner div h6 {
  position: absolute;
  top: -25px;
  left: calc(50% - 26px);
  line-height: 0.5;
  font-size: 20px;
  font-weight: 600;
  padding: 18px;
  border-radius: 50px;
  background: #f0f0f0;
}

._exam #sixthBlk .glayBk {
  box-sizing: border-box;
  padding: 20px;
  background: #f2f2f2;
  margin: 40px 0 20px;
  border-radius: 5px;
}

._exam #sixthBlk .glayBk b {
  font-size: 16px;
  display: block;
}

._exam #sixthBlk .glayBk span {
  font-size: 12px;
}

/***********************************************************************
 *
 *            2nd _facility
 * 
 ***********************************************************************/

._facility .pagecontents section {
  margin-top: 200px;
}

._facility .sectionhalf {
  width: 560px;
  align-items: flex-start;
}

._facility figcaption {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

._facility #sixthBlk .sectionfull figure:nth-of-type(1) figcaption,
._facility #sixthBlk .sectionfull figure:nth-of-type(2) figcaption,
._facility #sixthBlk .sectionfull figure:nth-of-type(3) figcaption {
  margin-bottom: 50px;
}

._facility .sectionhalf.r560 .txtblk {
  width: 100%;
  text-align: center;
  padding: 20px 0 50px 0;
}

._facility .sectionhalf.l560 {
  align-items: center;
}

._facility .sectionhalf.imgs img {
  max-width: 450px;
  width: 100%;
}

._facility .sectionfull.imgs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

._facility .sectionfull.imgs .lastvacant {
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}

._facility .sectionfull.imgs img {
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

/***********************************************************************
 *
 *            2nd _teachers
 * 
 ***********************************************************************/

._teachers .pagecontents {
  display: flex;
  min-height: 1000px;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 1300px;
  margin: 100px auto 0;
}

._teachers .pagecontents section {
  max-width: 1100px;
  width: 1100px;
  margin-bottom: 80px;
}

._teachers .sectionhalf {
  width: 580px;
}

._teachers .pagecontents .introBlk {
  display: flex;
  margin-bottom: 15px;
}

._teachers .pagecontents .introBlk .innerBox {
  margin-right: 40px;
  position: relative;
}

._teachers .pagecontents .introBlk .infoBox .innerBox {
  margin-right: 0;
}

._teachers .pagecontents .introBlk .innerBox.portraitBlk,
._teachers .pagecontents .introBlk .innerBox.portraitBlk img {
  max-width: 160px;
  height: auto;
}

._teachers .sectionhalf.imgs {
  position: sticky;
  width: 400px;
  height: max-content;
  margin: 0 auto;
}
._teachers .sectionhalf.imgs figure {
  text-align: center;
}

._teachers .sectionhalf.imgs figure figcaption {
  margin-bottom: 10px;
  text-align: left;
}

._teachers .sectionhalf.imgs img {
  max-width: 400px;
  max-height: 300px;
  margin: auto;
}

._teachers .sectionhalf.imgs figure.wimg01 {
  margin-bottom: 40px;
}

._teachers .pagecontents h3 span {
  font-size: 16px;
}

._teachers figcaption {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.8em;
  font-feature-settings: normal;
}

._teachers .sectionhalf .portrait {
  line-height: 0;
}

._teachers .sectionhalf .ballon {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  position: relative;
  margin: 10px 0;
}

._teachers .sectionhalf .ballon:before {
  content: "";
  display: block;
  width: 30px;
  height: 15px;
  background-color: #f0f0f0;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  position: absolute;
  top: 45%;
  left: -30px;
}

._teachers .sectionhalf .ballon p:last-of-type {
  width: 100%;
  margin: 0;
  padding: 0;
}

._teachers .sectionhalf p:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  width: auto;
}

._teachers .sectionhalf .worktxtBlock.end table {
  margin: 30px 0;
}

._teachers .sectionhalf .worktxtBlock.end table td {
  font-size: 12px;
  line-height: 1.7em;
}

._teachers .sectionhalf .worktxtBlock.end table td:first-of-type {
  white-space: nowrap;
}

._teachers .sectionhalf .end {
  border-bottom: solid 1px #000;
}

._teachers .Btn_teachers {
  position: sticky;
  list-style: none;
  left: 0;
  top: 10%;
}

._teachers .Btn_teachers li {
  width: 180px;
  border-radius: 0 5px 5px 0;
  box-sizing: border-box;
  background: #f0f0f0;
  margin-bottom: 8px;
  height: auto;
  transition: 0.5s all;
}

._teachers .Btn_teachers li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 8px 50px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s all;
}

._teachers .Btn_teachers li:hover {
  background: #e0e0e0;
  width: 190px;
}

._teachers .Btn_teachers li:hover a {
  padding: 8px 0 8px 60px;
}

._teachers .speciality,
._teachers .workpicBlock {
  font-size: 16px;
  line-height: 2em;
}

._teachers .speciality {
  margin: 10px 0 0 0;
}

.LinkDetail {
  display: block;
  position: relative;
  text-align: right;
  color: #000;
  padding: 10px 0;
  text-decoration: none;
}

.LinkDetail:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background: url(../../img/arrow_link01.svg);
}

/***********************************************************************
 *
 *            3rd _COMMON
 * 
 ***********************************************************************/

.page3rd .fullW {
  max-width: 1220px;
  margin: auto;
}

.page3rd .pageContents h3 {
  text-align: left;
  width: 100%;
}

.page3rd._3rd_project .pageContents h3,
.page3rd._3rd_specializedsubject .pageContents h3 {
  margin: 60px auto 40px;
}

.page3rd._3rd_project .sec01 p,
.page3rd._3rd_specializedsubject .sec01 p {
  margin-top: 0;
}

.page3rd .pageContents h3 span {
  font-size: 36px;
  font-weight: 600;
  color: #0082d2;
}

.page3rd .sec01 p {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 2.1;
  border-left: #0082d2 solid 2px;
  width: 100%;
  padding: 5px 0 5px 20px;
  margin: 90px auto;
}

.page3rd .pageContents .sec02,
.page3rd .pageContents .sec03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.page3rd .pageContents .sec02 .sectionInnner {
  margin-bottom: 90px;
  max-width: 585px;
}

.page3rd .pageContents h4 {
  text-align: left;
  display: flex;
  margin-bottom: 10px;
}

.page3rd .pageContents h4 span {
  font-size: 30px;
  color: #0082d2;
  line-height: 1.1;
}

.page3rd .pageContents h4:before {
  content: "";
  width: 113px;
  height: 50px;
  background: url(../../img/icon_pickup.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-right: 20px;
}

.page3rd .pageContents .sec02 .imBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 30px;
}

.page3rd .pageContents .sec02 .MainImg {
  max-width: 585px;
  height: auto;
  margin: 0 auto;
}

.page3rd .pageContents .sec02 .subImg {
  max-width: 275px;
  height: auto;
}

.page3rd .pageContents .sectionInnner figcaption {
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  margin-bottom: 10px;
}

.page3rd .pageContents .sec02 .sectionInnner p,
.page3rd .pageContents .sec03 .sectionInnner p {
  color: #333333;
  text-align: justify;
  line-height: 2.5;
  font-weight: 400;
}

._conceptpage .pageHeader,
._curriculumpage .pageHeader,
.pageHeader.page3rd {
  display: flex;
  flex-wrap: wrap;
}

.page3rd .headInner.Lbox {
  left: 0;
}

.page3rd .headInner.Rbox {
  left: 50%;
}

/***********************************************************************
 *
 *            project
 * 
 ***********************************************************************/

/***********************************************************************
 *
 *            3rd _crossing
 * 
 ***********************************************************************/

/***********************************************************************
 *
 *            recruit
 * 
 ***********************************************************************/

._recruit .pagecontents section {
  margin-top: 100px;
}

._recruit .pagecontents section#thirdBlk {
  margin-bottom: 100px;
}

._recruit._interviewpage .pagecontents section {
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  transition: 0.5s all;
}

._recruit .sectionhalf.r560 h2 {
  width: 100%;
}

._recruit #secondBlk .sectionhalf.r560 h4 {
  font-size: 18px;
  margin: 1em 0;
}

._recruit #secondBlk .sectionhalf.r560 h4:first-of-type {
  margin: 0 0 1em;
}

/*******************************************************
 *            careerchart
 ******************************************************/
.careerchart {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  width: 465px;
  position: relative;
  margin: 50px auto 30px;
}

.careerchart:after {
  content: "";
  display: block;
  height: 84px;
  width: 77px;
  position: absolute;
  background-image: url(../../img/usageGuide.svg);
  right: 0;
  top: 0;
}

.careerchart h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  width: 225px;
  background: #9489da;
  padding: 5px;
  box-sizing: border-box;
}

.careerchart div.gradeContent {
  display: flex;
  flex-wrap: wrap;
  width: 465px;
  margin-bottom: 10px;
  font-size: 17px;
}

.careerchart div.gradeContent:nth-of-type(4) .gradeinner {
  display: flex;
  flex-wrap: wrap;
  width: 395px;
  padding: 0;
}

.careerchart div.gradeContent:nth-of-type(4) div {
  background: none;
}

.careerchart div.gradeContent div.grade {
  width: 60px;
  background: none;
  padding: 0 0 0 5px;
  border-right: solid 1px #000;
  margin: 0 10px 0 0;
  box-sizing: border-box;
}
.careerchart div.gradeContent:nth-of-type(1) div.grade {
  border-right: none;
}

.careerchart div.gradeContent div {
  background: #bcbcbc;
  padding: 5px;
  width: 225px;
  box-sizing: border-box;
}

.careerchart div.gradeContent:nth-of-type(4) .gradeinner div {
  width: 225px;
  background: #c9c6ff;
}

.careerchart div.gradeContent:nth-of-type(4) .gradeinner div:last-of-type {
  width: 154px;
  margin-left: 10px;
}

.careerchart div.gradeContent b {
  width: max-content;
  display: block;
  margin: 5px auto;
  padding: 1px 3px;
  border: solid 2px #000;
}

._recruit #thirdBlk .sectionfull.imgs,
._recruit #fifthBlk .sectionfull.imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

._recruit #thirdBlk .sectionfull.imgs {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

._recruit #thirdBlk .imgs figcaption {
  margin-top: 20px;
}

._recruit #thirdBlk .sectionfull.imgs img {
  max-width: 360px;
  margin: 0 20px;
}

._recruit .sectionhalf.l560 {
  align-items: center;
}

._recruit .sectionhalf.l560 img {
  max-width: 450px;
  margin: auto;
}

._recruit #fifthBlk .sectionfull.imgs > div {
  width: 360px;
  height: auto;
  margin-bottom: 40px;
}

._recruit #fifthBlk .sectionfull.imgs div h4 {
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  background: #f0f0f0;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 0.5em;
}

._recruit #fifthBlk .sectionfull.imgs ul {
  list-style: none;
}
._recruit #fifthBlk .sectionfull.imgs ul li {
  font-size: 17px;
  line-height: 1.7em;
  padding: 0 20px;
  margin-left: 25px;
  text-indent: -25px;
}

._recruit #fifthBlk .sectionfull.imgs ul li:before {
  content: "●";
  margin-right: 0.3em;
}

._recruit .sectionhalf p:last-of-type,
._recruit .section23rd p:last-of-type {
  border-bottom: none;
}

._recruit #fourthBlk .sectionfull.imgs,
._recruit #fifthBlk .sectionfull.imgs,
._interviewpage .sectionfull.imgs {
  width: 100%;
}

/***********************************************************************
 *
 *           interviewpage
 * 
 ***********************************************************************/

._recruit.page3rd a.contentsscroller {
  display: none;
}

._recruit #fourthBlk .sectionfull.imgs,
._recruit #fifthBlk .sectionfull.imgs,
._interviewpage .sectionfull.imgs {
  width: 100%;
}

._recruit #fourthBlk ul,
._recruit #fourthBlk ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto;
}

._recruit #fourthBlk ul li {
  width: 310px;
  height: 180px;
  position: relative;
  border-radius: 5px;
  margin-bottom: 40px;
  overflow: hidden;
}

._recruit #fourthBlk ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  background-size: cover;
  background-position: top center;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

._recruit #fourthBlk ul h5.caption {
  /* max-width: 91%; */
  width: 100%;
  margin: 0;
  padding: 5px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  /* bottom: 0; */
  /* right: 0; */
  /* left: 0; */
  text-align: left;
  font-weight: 400;
  height: 60px;
}

._recruit #fourthBlk ul .bgblock {
  background: #0082d2;
  margin: auto;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
}

._recruit #fourthBlk ul .bgblock:after {
  content: "";
  position: absolute;
  bottom: 13px;
  right: 10px;
  display: block;
  width: 28px;
  height: 28px;
  background: url(https://meide.jp/wp/wp-content/themes/meseidesign2023/img/arrow_R_W.svg)
    no-repeat;
  background-size: contain;
  transition: 0.5s all;
}

._recruit #fourthBlk ul a:hover .bgblock:after {
  right: 2px;
}

._recruit #fourthBlk ul h5.caption span {
  color: #fff;
  position: absolute;
  /* display: inline-block; */
  width: 80%;
}

/***********************************************************************
 *
 *           graduate works single page
 * 
 ***********************************************************************/

/***********************************************************************
 *
 *           interview single page
 *           graduate works single page
 * 
 ***********************************************************************/

.page3rd .mainVBlk:before {
  content: none;
}

.page3rd .pagecontents h2 {
  font-size: 14px;
  font-size: min(1.167vw, 14px);
  font-weight: 600;
  color: #000;
  margin: 0 0 20px;
}

.page3rd .pagecontents .txtblk {
  line-height: 2em;
}

.graduate_workswrapper,
.interviewwrapper {
  width: calc(100% - 100px);
  height: auto;
  background-color: #f0f0f0;
  margin: 50px 50px 0;
  padding: 50px 0;
  border-radius: 5px;
  position: relative;
}

.interviewwrapper_ {
  top: 100px;
  margin: 0 50px 0;
  padding: 0 0 50px 0;
}

.interviewwrapper .pageHeader {
  background: transparent;
}

.graduate_workswrapper .mainVBlk,
.interviewwrapper .mainVBlk {
  width: 90vw;
  max-width: 1200px;
  height: calc(70vh - 160px);
  height: calc(70svh - 160px);
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  padding-top: 0;
}

.graduate_workswrapper .mainVBlk {
  height: auto;
  overflow: visible;
}

.interviewwrapper .mainVBlk {
  height: max(calc(70svh - 258px), 600px);
  background-size: 48%;
  background-position: left top;
  display: flex;
  justify-content: flex-end;
}

.graduate_workswrapper .headInner,
.interviewwrapper .headInner {
  position: static;
  width: 100%;
  height: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 60px 0;
  margin-top: 0;
}

.interviewwrapper .headInner {
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  padding: 0 65px;
  transition: 1s all;
}

._recruit._interviewpage .pagecontents section .pageHeader.page3rd {
  margin: 0;
  padding-top: 0;
}

._recruit._interviewpage .mainVBlk {
  top: 100px;
  position: sticky;
}

._recruit._interviewpage .mainVBlk.scrolled {
  transition: 2s all;
  background-color: transparent;
}

._recruit._interviewpage .mainVBlk.scrolled .headInner {
  opacity: 0;
}

.page3rd .graduate_workswrapper .pagecontents .headInner h2,
.page3rd .interviewwrapper .pagecontents .headInner h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin: 0 auto;
}

.graduate_workswrapper .headInner .intv_info,
.interviewwrapper .headInner .intv_info {
  font-size: 16px;
  color: #000;
  margin: 100px auto 60px;
  max-width: 640px;
  width: 100%;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}

.interviewwrapper .headInner h2 {
  max-width: 470px;
}

.interviewwrapper .headInner .intv_info {
  background: #f0f0f0;
  max-width: 430px;
}

.graduate_workswrapper .headInner .intv_info span,
.interviewwrapper .headInner .intv_info span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.graduate_workswrapper .headInner .intv_info span:before,
.interviewwrapper .headInner .intv_info span:before {
  content: "";
  width: 1px;
  height: 40px;
  display: inline-block;
  transform: rotate(45deg);
  border-right: solid 1px #000;
  margin: 0 20px;
}

.graduate_workswrapper .headInner .intv_info ul {
  width: 100%;
  margin: 10px auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.graduate_workswrapper .headInner .intv_info ul li {
  font-size: 12px;
  background: #000;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  margin-right: 0.5em;
}
.graduate_workswrapper .headInner .intv_info ul li:last-of-type {
  margin-right: 0;
}

.graduate_workswrapper .article,
.interviewwrapper .article {
  max-width: 560px;
}

.interviewwrapper .article {
  max-width: 600px;
  padding: 0 25px;
}

.graduate_workswrapper .article .col,
.interviewwrapper .article .col {
  font-size: 14px;
  line-height: 1.8em;
}

.graduate_workswrapper .wrapinner,
.interviewwrapper .wrapinner {
  margin: auto;
}

.graduate_workswrapper .article h3,
.interviewwrapper .article h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 50px 0 30px 0;
  position: static;
}

.page3rd .graduate_workswrapper .pagecontents .article h3:after,
.page3rd .interviewwrapper .pagecontents .article h3:after {
  content: none;
}

.graduate_workswrapper .article h3:first-of-type,
.interviewwrapper .article h3:first-of-type {
  margin-top: 0;
}

._curriculum #fourthBlk .sectionfull.imgs {
  width: 100%;
}

._curriculum #fourthBlk ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto;
}

._curriculum #fourthBlk ul li {
  width: 310px;
  height: auto;
  position: relative;
  margin-bottom: 40px;
}

._curriculum #fourthBlk ul li a {
  width: 100%;
  height: 240px;
  display: flex;
  background-size: cover;
  background-position: center;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: solid 1px #ddd;
}

._curriculum #fourthBlk ul li a.txtlinks {
  display: block;
  border: none;
  height: auto;
  text-align: right;
  text-decoration: none;
  color: #000;
}

._curriculum #fourthBlk ul h5.caption a {
  text-align: left;
}

._curriculum #fourthBlk ul h5.caption {
  width: 100%;
  margin: 0;
  padding: 5px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
  font-weight: 400;
  height: 60px;
}

._curriculum #fourthBlk ul .bgblock {
  background: #0082d2;
  margin: auto;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
}

._curriculum #fourthBlk ul .bgblock:after {
  content: "";
  position: absolute;
  bottom: 13px;
  right: 10px;
  display: block;
  width: 28px;
  height: 28px;
  background: url(https://meide.jp/wp/wp-content/themes/meseidesign2023/img/arrow_R_W.svg)
    no-repeat;
  background-size: contain;
  transition: 0.5s all;
}

._curriculum #fourthBlk ul a:hover .bgblock:after {
  right: 2px;
}

._curriculum #fourthBlk ul h5.caption span {
  color: #fff;
  position: absolute;
  /* display: inline-block; */
  width: 80%;
}

/***********************************************************************
 *
 *           meidesei profile
 * 
 ***********************************************************************/

._meidesei .pageHeader a.contentsscroller {
  background-color: #fff;
}

.page2nd._meidesei .pagecontents section {
  margin-bottom: 100px;
}

._meidesei #secondBlk {
  margin-top: 100px;
}

.page2nd._meidesei .pagecontents #secondBlk .sectionhalf.l560 {
  position: relative;
}

.page2nd._meidesei figure {
  border-radius: 5px;
  overflow: hidden;
}

.page2nd._meidesei figure img {
  vertical-align: bottom;
}

.page2nd._meidesei .img01 {
  max-width: 340px;
  position: absolute;
  top: -200px;
  z-index: +1;
  margin: auto;
  right: 0;
  left: 0;
}

.page2nd._meidesei .img02 {
  max-width: 450px;
  margin-bottom: 40px;
}

.page2nd._meidesei .img03 {
  max-width: 520px;
}

.page2nd._meidesei .img04,
.page2nd._meidesei .img05 {
  margin-top: 40px;
}

.page2nd._meidesei .imghlz {
  max-width: 560px;
}

._meidesei figure {
  margin: 0 auto;
}

.page2nd._meidesei .pagecontents .sectionhalf p {
  padding: 0 0 20px 0;
  margin-bottom: 0;
  border-bottom: solid 1px #000;
}

.page2nd._meidesei .studentstype figure {
  border-radius: 5px;
  max-width: 450px;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

._meidesei .pagecontents h3 {
  width: max-content;
  max-width: 745px;
}

._meidesei figure img {
  width: 100%;
}

.hashwords {
  position: relative;
  top: 45%;
  max-width: 450px;
  margin: 0 auto;
}

.studentstype .students h4 {
  font-size: 20px;
  margin-bottom: 2em;
}

.studentstype .students h5 {
  font-size: 16px;
  margin-bottom: 1em;
}

.studentstype .studentBlk .imgs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  border-right: solid 1px #000;
  padding-right: 20px;
  margin-right: 0;
  box-sizing: border-box;
}

.studentstype .studentBlk .txtblk {
  padding-left: 20px;
  box-sizing: border-box;
}

.studentstype .studentBlk.evn .imgs {
  padding-left: 20px;
  border-right: none;
  border-left: solid 1px #000;
  justify-content: flex-start;
}

.studentstype .studentBlk.evn .txtblk {
  padding-left: 0;
  padding-right: 20px;
}

.page2nd .pagecontents .studentBlk .txtblk p {
  width: 100%;
  border-bottom: none;
}

/*

.studentstype div.studentBlk.evn{
	display:flex;
	}

.studentstype div.studentBlk.odds{
	}
*/

.studentBlk {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

div.studentBlk:nth-of-type(even) {
  flex-direction: row-reverse;
}

div.studentBlk:nth-of-type(odd) {
  flex-direction: row;
}

._meidesei #sixthBlk .sectionfull.imgs {
  width: 100%;
}

._meidesei #sixthBlk ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto;
}

._meidesei #sixthBlk ul li {
  width: 310px;
  height: 180px;
  position: relative;
  border-radius: 5px;
  margin-bottom: 40px;
  overflow: hidden;
}

._meidesei #sixthBlk ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  background-size: cover;
  background-position: top center;
  padding: 10px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

._meidesei #sixthBlk ul li a:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  background: url(../../img/mov_arrow.svg);
  top: calc(50% - 30px);
  transition: 0.5s all;
}

._meidesei #sixthBlk ul li a:hover:before {
  transform: scale(1.2);
}

._meidesei #sixthBlk ul h5.caption {
  /* max-width: 91%; */
  width: 100%;
  margin: 0;
  padding: 5px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  /* bottom: 0; */
  /* right: 0; */
  /* left: 0; */
  text-align: left;
  font-weight: 400;
  height: 60px;
}

._meidesei #sixthBlk ul .bgblock {
  background: rgba(0, 0, 0, 0.5);
  margin: auto;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
}

._meidesei #sixthBlk ul h5.caption span {
  color: #fff;
  position: absolute;
  /* display: inline-block; */
  width: 80%;
}

/***********************************************************************
 *
 *           footer
 * 
 ***********************************************************************/

footer {
  position: relative;
  z-index: 100;
  background: #f2f2f2;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  padding: 100px 0 0;
  margin: 200px auto 0;
  border-top: solid 1px #b1b1b1;
}

footer .logo img {
  position: relative;
  margin: 0 0 30px 0;
}

footer nav#global {
  letter-spacing: 0;
  display: flex;
  max-width: 1200px;
  justify-content: space-between;
  text-align: left;
}

footer nav#global li a {
  color: #000;
}

footer nav#global li a:before {
  border-right: solid 3px #000;
  border-top: solid 3px #000;
}

footer p,
footer a {
  font-size: 14px;
}

footer p.address {
  text-align: center;
}

footer .wrap {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-bottom: 10px;
  text-align: center;
}

footer .nav {
  text-align: right;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}

footer #global > .nav,
footer #global > .nav01,
footer #global > .nav02,
footer #global > .nav03 {
  display: flex;
  flex-direction: column;
}

footer .nav > li a {
  color: #666;
}

.footerlogo img {
  margin: 20px auto;
  width: 50px;
  height: 60px;
}

.backtoTop {
  width: 60px;
  height: 40px;
  display: block;
  position: fixed;
  bottom: 40px;
  z-index: 10;
  right: 0;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.backtoTop:after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: 9px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(-45deg);
  transition: 0.5s all;
}

.backtoTop:hover {
  font-weight: 900;
}

.backtoTop:hover:after {
  top: -15px;
  transition: 0.5s all;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
}

p.copy {
  width: 100%;
  background: #707070;
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 10px 0;
}

/***********************************************************************
 *
 *           MEIDESAN 明デさん
 * 
 ***********************************************************************/

._lp2024 #container {
  background: #0285d1;
}

._lp2024 .mainVBlk {
  width: calc(100% - 100px);
  max-width: 1200px;
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
  background-color: #fff;
  background-size: cover;
  background-position: center;
  margin: 100px auto 100px;
  padding: 0 0;
  border-radius: 95px;
  position: relative;
}

/***********************************************************************
 *
 *           News
 * 
 ***********************************************************************/

/***年切り替えタブ***/
.cp_sl03 {
  font-size: 20px;
  position: relative;
  background: #fff;
  width: 10vw;
  max-width: 100px;
  margin: 0 auto 50px;
}

.cp_sl03:before {
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 27%;
  content: "";
  height: 18px;
  width: 18px;
  padding-left: 3px;
  color: #000;
  pointer-events: none;
  border-left: #000 2px solid;
  border-top: #000 2px solid;
  transform: rotate(-135deg);
}

.cp_sl03 select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 600;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 8px 12px;
  color: #000;
  width: 100%;
  border: none;
  border-radius: 0;
}

.cp_sl03 select option {
  background-color: #fff;
  color: #333;
}

.cp_sl03 select::-ms-expand {
  display: none;
}

.cp_sl03 select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
/***年切り替えタブ***/

._newspage .newswrapper {
  width: calc(100% - 100px);
  height: auto;
  background-color: #f0f0f0;
  margin: 50px 50px 0;
  padding: 50px 0;
  border-radius: 5px;
  position: relative;
}

.newswrapper .mainVBlk {
  width: 90vw;
  max-width: 1200px;
  height: calc(60vh - 160px);
  height: calc(60svh - 160px);
  max-height: 600px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 40%;
  margin: 0 auto;
}

.newswrapper .headInner {
  position: static;
  width: 100%;
  height: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 60px 0;
  margin-top: 0;
}

.page3rd .newswrapper .pagecontents .headInner h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin: 0 auto;
}

._newspage .pagecontainer {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

section.contents.news {
  max-width: 1220px;
  width: 100%;
  display: flex;
  margin: auto;
}

.toppage .news .posts,
._newspage .news .posts {
  width: 100%;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.toppage .news .post,
._newspage .news .post {
  max-width: 360px;
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}

.toppage .news .post {
  max-width: 260px;
}

.toppage .news_title,
._newspage .news_title {
  width: 100%;
  font-weight: 400;
  color: #000;
  height: auto;
  padding: 10px 0;
  text-align: left;
  min-height: 70px;
}

.newsLinkimg {
  line-height: 0;
  display: block;
  max-width: 360px;
  height: 230px;
  overflow: hidden;
  border-radius: 6px;
  border: solid 1px #eee;
  box-sizing: border-box;
}

.toppage .newsLinkimg {
  max-width: 260px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}

.toppage .newsLinkimg img {
  max-width: 260px;
  transition: 0.5s all;
}

.post a:hover img {
  transition: 0.5s all;
  transform: scale(1.1);
}

.newsLinkimg img {
  max-width: 365px;
  width: 365px;
  transition: 0.5s all;
  margin-left: -3px;
}

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

._newspage .news .news_cat {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  border-radius: 5px;
  border: solid 2px #000;
  margin: 5px 0;
  padding: 2px 6px;
  display: block;
  width: max-content;
}

span.dates {
  margin: 0;
  display: block;
  text-align: center;
  font-weight: 600;
}

.toppage .news_title a,
.toppage .dates,
._newspage .news_title a,
._newspage .dates {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.62em;
}

.toppage .dates,
._newspage .dates {
  font-size: 28px;
  font-weight: 400;
  text-align: right;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
}

.interview_gra .pagination,
._graduate_works .pagination,
._newspage .pagination {
  font-size: 30px;
  font-weight: 400;
  border-top: solid 1px #333;
  text-align: right;
}

.interview_gra .pagination a,
.interview_gra .pagination span,
._graduate_works .pagination a,
._graduate_works .pagination span,
._newspage .pagination a,
._newspage .pagination span {
  font-size: 20px;
  color: #000;
  margin-right: 10px;
  text-decoration: none;
}

.interview_gra .pagination .current,
._graduate_works .pagination .current,
._newspage .pagination .current {
  color: #ccc;
}

/***********************************************************************
 *
 *           NEWS DETAIL
 * 
 ***********************************************************************/
._newspage.singlepage .newswrapper {
  margin: 0 auto;
  padding: 110px 0;
}

._newspage.singlepage #container {
  position: relative;
}
._newspage.singlepage .wp-block-image img,
._eventreport .wp-block-image img {
  max-width: 100%;
  height: auto;
}

._newspage.singlepage .newswrapper .headInner {
  padding: 0;
  margin-top: 0;
}

.articleInfo {
  margin: auto;
}

.articleInfo .catName,
.articleInfo .date {
  text-align: center;
}

._newspage.singlepage #main .wrap,
._eventreport #main .wrap {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

._newspage.singlepage #main,
._eventreport #main {
  margin: 0 auto;
  padding-bottom: 100px;
}

._newspage.singlepage a.contentsscroller,
._eventreport a.contentsscroller {
  background: #fff;
}

._newspage.singlepage a.contentsscroller:after {
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

._newspage.singlepage #main .lh,
._eventreport #main .lh {
  width: 100%;
  font-size: 40px;
  color: #000;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

._newspage.singlepage #main .newsInfoBlock,
._eventreport #main .newsInfoBlock {
  border-top: solid 3px #000;
  padding: 56px 0 0 0;
  margin: 0;
  width: 100%;
}

._newspage.singlepage #main .lh.single,
._eventreport #main .lh.single {
  font-size: 16px;
  position: relative;
  padding: 0;
}

._newspage.singlepage #main .catName,
._newspage.singlepage #main .date,
._newspage.singlepage #main .postTit,
._eventreport #main .catName,
._eventreport #main .date,
._eventreport #main .postTit {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

._newspage.singlepage #main .date,
._eventreport #main .date {
  position: relative;
  margin-top: 40px;
  font-size: 28px;
  font-weight: 400;
  text-align: right;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
}

._newspage.singlepage #main .postTit,
._eventreport #main .postTit {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 600;
}

._newspage.singlepage #main .date:before,
._eventreport #main .date:before {
  content: "";
  height: 30px;
  border-right: solid 2px #000;
  position: absolute;
  top: -35px;
  left: 50%;
}

._newspage.singlepage #main .contents .contents,
._eventreport #main .contents .contents {
  line-height: 2;
  font-weight: 400;
  text-align: left;
  padding: 45px 0;
  margin: 0 auto 100px;
  max-width: 800px;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

._newspage.singlepage #main .detail .contents h4,
._eventreport #main .detail .contents h4 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  margin: 20px 0;
}

._newspage.singlepage #main .detail .contents h3,
._eventreport #main .detail .contents h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  margin: 20px 0;
  border-left: solid 6px #000;
  padding-left: 17px;
}

._newspage.singlepage #main .detail .contents a,
._eventreport #main .detail .contents a {
  color: #0080bc;
}

._newspage.singlepage #main .detail .contents table tr,
._eventreport #main .detail .contents table tr {
  border-bottom: solid 1px #b7b7b7;
}

._newspage.singlepage #main .detail .contents table tr:last-of-type,
._eventreport #main .detail .contents table tr:last-of-type {
  border-bottom: none;
}

._newspage.singlepage #main .detail .contents table td,
._eventreport #main .detail .contents table td {
  vertical-align: top;
  padding: 1rem 0;
}

._newspage.singlepage #main .detail .contents table td:nth-of-type(1),
._eventreport #main .detail .contents table td:nth-of-type(1) {
  width: 30%;
}

._newspage.singlepage .postTn,
._eventreport .postTn {
  width: 100%;
  height: 52.63vw;
  max-height: 600px;
  background: #efefef;
}

._newspage.singlepage .postTn img,
._eventreport .postTn img {
  height: 100%;
}

._newspage.singlepage .wp-block-image img,
._eventreport .wp-block-image img {
  max-width: 100%;
  height: auto;
}

._newspage.singlepage .mainLink,
._eventreport .mainLink {
  display: inline-block;
  width: 100%;
  padding: 16px 72px 10px 0;
  position: relative;
  text-align: right;
  font-weight: 900;
  color: #000;
  text-decoration: none;
}

._newspage.singlepage #main .contents a,
._eventreport #main .contents a {
  color: #0080bc;
}

._newspage.singlepage .mainLink.relateevent {
  border-bottom: solid 1px #000;
}

._newspage.singlepage .mainLink:after,
._eventreport .mainLink:after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: relative;
  right: 0;
  top: 2px;
  transition: 0.5s all;
}

._newspage.singlepage .mainLink:hover:after,
._eventreport .mainLink:hover:after {
  right: -5px;
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  transition: 0.5s all;
}

._newspage.singlepage #main .detail .row > .col:nth-of-type(1),
._eventreport #main .detail .row > .col:nth-of-type(1) {
  width: 100%;
}
._newspage.singlepage #main .detail .row > .col:nth-of-type(2),
._eventreport #main .detail .row > .col:nth-of-type(2) {
  width: 656px;
}
._newspage.singlepage #main .detail .pic,
._eventreport #main .detail .pic {
  max-width: 240px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

._newspage.singlepage #main .detail .catchcopy,
._eventreport #main .detail .catchcopy {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

._newspage.singlepage #main .detail .contents p,
._eventreport #main .detail .contents p {
  margin-bottom: 20px;
}

._newspage.singlepage #main .detail .contents p:last-of-type,
._eventreport #main .detail .contents p:last-of-type {
  margin-bottom: 0;
}
._newspage.singlepage #main .thumbnails,
._eventreport #main .thumbnails {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
._newspage.singlepage #main .thumbnails > .thumb,
._eventreport #main .thumbnails > .thumb {
  width: -webkit-calc((100% - 20px) / 3);
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-top: 20px;
}

._newspage.singlepage #main .thumbnails > .thumb:nth-of-type(3n),
._eventreport #main .thumbnails > .thumb:nth-of-type(3n) {
  margin-right: 0;
}

body .is-layout-flex > *.wp-block-button {
  margin: 20px auto;
}

/***********************************************************************
 *
 *           Movies
 * 
 ***********************************************************************/

.mmovie .posts {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.mmovie .posts .post {
  width: 375px;
  float: left;
  position: relative;
  margin-bottom: 40px;
  transition: 0.5s all;
}

.mmovie .posts .post:hover {
  opacity: 0.6;
}

.mmovie .post .news_title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 93%;
  background: rgba(55, 55, 55, 0.8);
  text-align: left;
  margin: auto;
  padding: 10px 20px;
}

.mmovie .post .news_title a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.mmovie .post span.dates {
  text-align: left;
  color: #fff;
}

.mmovie .post span.dates:after {
  content: none;
}

/***********************************************************************
 *
 *           TABLET 1250px
 * 
 ***********************************************************************/

@media screen and (max-width: 1250px) {
  html,
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  address,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  table,
  th,
  td,
  div,
  span,
  form,
  label,
  input,
  textarea,
  select,
  option,
  button {
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    text-decoration: none;
    font-size: 1vw;
    font-size: min(1.167vw, 14px);
    color: #333;
    text-align: justify;
    font-feature-settings: "palt" 1, "trad" 1;
    box-sizing: border-box;
    letter-spacing: 0.05em;
  }

  h2 {
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    margin: 100px auto 60px;
  }

  h3 {
    font-size: 2.143vw;
    font-weight: 400;
    color: #000;
    margin: 0px auto 30px;
  }

  h4,
  h5 {
    font-weight: 600;
  }

  img {
    vertical-align: bottom;
  }

  #main {
    overflow: clip;
  }

  /*YouTube responsive size*/
  .youtube {
    position: relative;
    max-width: 100%;
    padding-top: 56.25%;
  }

  .sp {
    display: none;
  }
  .pc {
    display: block;
  }

  /***********************************************************************
 *
 *            header
 * 
 ***********************************************************************/

  /* #header */
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 994;
    width: 100%;
    max-width: 50.286vw;
    height: 5.714vw;
    padding: 0;
    margin: auto;
    background: rgb(255, 255, 255);
    align-items: center;
    transition: 0.2s all;
  }

  .logowrapper {
    display: flex;
    width: 50.286vw;
    max-width: 50.286vw;
    height: 5.714vw;
    margin: 15px auto 0;
    padding: 1.786vw 2.143vw;
    border: solid 1px #fff;
    border-radius: 0.357vw;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 5;
  }

  .__fixed .logowrapper {
    background: none;
  }

  #header .wrap {
    display: block;
    max-width: 87.143vw;
    width: 100%;
    margin: auto;
  }

  #header .logo {
    position: relative;
  }

  .__fixed #header .logo {
    max-width: 33.429vw;
    width: 33.429vw;
  }

  .logo img {
    width: 10vw;
    height: 2.143vw;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s all;
    opacity: 0;
  }

  .logo img.colLogo {
    opacity: 1;
  }

  .__fixed .logo img.colLogo {
    opacity: 0;
  }
  .__fixed .logo img.whiLogo {
    opacity: 1;
  }

  @media only screen and (max-width: 768px) {
    #header {
      padding-top: 1.071vw;
      padding-bottom: 1.071vw;
      padding-left: 2.357vw;
      padding-right: 1.429vw;
    }

    .logo img {
      width: 10.929vw;
      height: 2.357vw;
    }
  } /***　max-width: 768p　**/

  /* #menu */
  #menu {
    display: none;
  }

  /* 
 * #global MENU
 *
 */

  #global {
    width: 100%;
    text-align: right;
    display: flex;
    position: relative;
  }

  nav#global {
    letter-spacing: 0;
    display: flex;
    text-align: left;
  }

  nav#global li {
    margin-bottom: 2em;
  }

  nav#global li a {
    color: #fff;
    font-size: 1.143vw;
    text-decoration: none;
    display: block;
    padding: 0.214vw;
    width: max-content;
    min-width: 12.857vw;
    border-radius: 0.357vw;
    transition: 0.5s all;
  }

  nav#global li li a:before {
    content: "";
    display: inline-block;
    width: 0.571vw;
    height: 0.571vw;
    border-right: solid 3px #fff;
    border-top: solid 3px #fff;
    transform: rotate(45deg);
    margin-right: 0.714vw;
  }

  nav#global li a:hover,
  nav#global li.active > a {
    color: #fff;
    background-color: #000;
  }

  nav#global .bannerBox li a:hover,
  nav#global .bannerBox li.active a {
    color: #fff;
    background-color: transparent;
  }

  #menu,
  #menu span {
    display: inline-block;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }

  #menu {
    position: absolute;
    top: 1.071vw;
    right: 0.714vw;
    display: block;
    width: 3.214vw;
    height: 2.857vw;
    cursor: pointer;
    background: none;
    border: none;
  }

  #menu span {
    position: absolute;
    left: calc(50% - 50% / 2);
    width: 45%;
    height: 0.286vw;
    background-color: #4e97d5;
    border-radius: 0.286vw;
  }

  #menu span:nth-of-type(1) {
    top: 30%;
  }
  #menu span:nth-of-type(2) {
    top: 50%;
  }
  #menu span:nth-of-type(3) {
    top: 70%;
  }

  #menu.active span {
    background-color: #fff;
  }
  #menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  #menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  #menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }

  .__fixed #main,
  .__fixed footer {
    opacity: 0;
    position: fixed;
  }

  .__fixed #header {
    height: 100vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s all;
  }

  .__fixed #header .wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
    height: 100svh;
    margin: auto;
    text-align: left;
    background-color: #5ca4d9;
    transition: 0.8s all;
    position: relative;
    overflow: scroll;
  }

  .__fixed #global {
    width: 60%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
    z-index: 3;
    margin: 0 auto;
  }

  .__fixed #global:before {
    opacity: 1;
  }

  .nav01,
  .nav02,
  .nav03 {
    display: none;
  }

  .__fixed #global .nav01,
  .__fixed #global .nav02,
  .__fixed #global .nav03 {
    display: block;
    padding-top: 7.143vw;
  }

  .__fixed #global div.nav01 li:first-of-type {
    width: 100%;
    display: flex;
    justify-content: center;
    height: max-content;
  }

  .__fixed #global .nav01,
  .__fixed #global .nav02,
  .__fixed #global .nav03 {
    display: block;
    position: relative;
    width: max-content;
    height: max-content;
    margin: 0;
    padding-top: 14.286vw;
    box-sizing: border-box;
  }

  .__fixed #global .nav li {
    display: block;
    padding: 0.714vw 0 0.714vw 0;
  }

  .__fixed #global li li {
    margin: 0;
  }

  .__fixed #global li li a {
    font-size: 1vw;
  }

  .__fixed #global .nav span {
    border-left: solid 3px #0082d2;
    padding: 0.714vw 0 0.714vw 0.714vw;
    display: block;
  }

  .__fixed #global .nav span {
    border-left: none;
    padding: 0.714vw 0 0.714vw 0;
  }

  .__fixed .fixbanners {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10.714vw;
  }

  .__fixed .headerbanners02 {
    display: none;
  }

  #global .banners {
    width: auto;
    max-width: 53.571vw;
    line-height: 1.714vw;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .__fixed nav#global ul.banners li {
    margin-bottom: 0;
  }

  .__fixed nav#global ul.banners li a {
    width: 8.929vw;
    min-width: 8.929vw;
    height: 9.429vw;
    text-indent: -71.357vw;
    overflow: hidden;
    text-align: left;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0;
  }

  .__fixed nav#global ul.banners li.fullsizeW {
    width: 100%;
  }

  .__fixed nav#global ul.banners li.fullsizeW a {
    margin: auto;
  }

  .__fixed nav#global ul.banners li a:before {
    content: none;
  }

  ul.banners li a:hover {
    opacity: 0.5;
  }

  ul.banners li:nth-of-type(1) a {
    background-image: url(../../img/banner_opencampus.png);
  }
  ul.banners li:nth-of-type(2) a {
    background-image: url(../../img/banner_guidebook.png);
  }
  ul.banners li:nth-of-type(3) a {
    background-image: url(../../img/banner_meiseiuniv.png);
  }
  ul.banners li:nth-of-type(4) a {
    background-image: url(../../img/banner_access.png);
  }
  ul.banners li:nth-of-type(5) a {
    background-image: url(../../img/banner_meidesan.png);
  }

  ul.banners {
    display: none;
  }

  .bannerBox {
    display: block;
    width: 100%;
    max-width: 100vw;
  }

  .__fixed ul.banners {
    display: flex;
  }

  .fixbanners {
    position: fixed;
    right: 0;
    top: calc(45% - 11.429vw);
    top: initial;
    bottom: 10vw;
    display: block;
  }

  .__fixed .fixbanners {
    display: none;
  }

  nav#global .fixbanners li {
    margin-bottom: 0;
  }

  nav#global .fixbanners li a {
    min-width: 8.571vw;
    width: 8.571vw;
    height: 5.714vw;
    display: block;
    overflow: hidden;
    text-indent: -71.357vw;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  nav#global .fixbanners li a:before {
    content: none;
  }

  nav#global .fixbanners li a:hover {
    background-color: transparent;
    opacity: 0.5;
  }

  nav#global .fixbanners li:nth-of-type(1) a {
    background-image: url(../../img/banner_insta.png);
    height: 5vw;
    margin-bottom: 1em;
  }
  nav#global .fixbanners li:nth-of-type(2) a {
    background-image: url(../../img/banner_guidebook_bl.png);
    height: 5vw;
    margin-bottom: 0;
  }
  nav#global .fixbanners li:nth-of-type(3) a {
    background-image: url(../../img/banner_opencampus.png);
    height: 6.5vw;
    margin-bottom: 1em;
  }
  nav#global .fixbanners li:nth-of-type(4) a {
    background-image: url(../../img/banner_meidesan.png);
    height: 6.714vw;
    background-size: contain;
  }

  /***********************************************************************
 *
 *            TOP
 * 
 ***********************************************************************/

  .topheaderTxt {
    position: absolute;
    top: calc(50% - 16.786vw / 2.5);
    left: 0;
    z-index: +2;
    right: 0;
    max-width: 52.143vw;
    margin: auto;
  }

  /**************************************************
 *            TOP　HEADER　MOV　SLIDE
 ***************************************************/
  .topheaderTxt h1 {
    color: #fff;
    font-size: 3.571vw;
    text-align: center;
    margin-bottom: 0.5em;
  }

  .topheaderTxt p {
    color: #fff;
    text-align: center;
    font-size: 1.143vw;
    line-height: 1.925em;
  }

  .toppage .mainVBlk,
  .toppage .mainVBlk .contentsscroller {
    background: #fff;
  }

  .toppage .mainVBlkwrapper {
    height: calc(100svh - 7.143vw);
    position: relative;
  }

  .toppage .mainVBlk:before {
    content: none;
  }

  .toppage .mainVBlk video {
    width: auto;
    height: calc(100vh - 14.286vw);
    position: relative;
    overflow: hidden;
    border-radius: 0.357vw;
  }

  .toppage .mainVBlk:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: +2;
  }

  .toppage .mainVBlk video {
    object-fit: cover;
    position: absolute;
    width: 100% !important;
    height: 100vh;
    top: 0;
    left: 0;
  }

  /**************************************************
 *            TOP　concept
 ***************************************************/

  .toppage .secondBlk .sectionfull {
    max-width: 47.857vw;
    margin: auto;
  }

  .toppage .secondBlk .sectionfull h2 {
    font-size: 1.429vw;
    color: #fff;
    background: #0393ca;
    padding: 0.357vw 0.714vw;
    border-radius: 0.571vw;
    margin: 50px auto 20px;
    width: max-content;
  }

  .toppage .secondBlk {
    background-image: url(../../img/concept_bg.svg);
    background-size: 97.429vw;
    background-position: bottom -80px center;
    background-repeat: no-repeat;
  }

  .toppage .secondBlk .sectioncontainer {
    padding: 3.571vw 0 7.143vw 0;
  }

  .toppage .secondBlk h3 {
    font-size: 2.714vw;
    line-height: 1.63em;
    text-align: center;
    font-weight: 900;
  }

  .toppage .secondBlk p {
    max-width: 47.857vw;
    line-height: 1.8em;
    font-weight: 400;
    padding: 0 0 1.429vw;
    margin: auto;
    text-align: center;
  }

  .toppage .secondBlk p.bold {
    font-weight: 600;
  }

  /**************************************************
 *            TOP　chart thirdblk
 ***************************************************/
  .toppage #thirdBlk {
    justify-content: center;
  }

  .toppage #thirdBlk .sectionfull {
    padding: 0 0 7.143vw 0;
  }

  .chart01 {
    max-width: 63.071vw;
    max-height: 28.929vw;
    height: 100vh;
    position: relative;
    display: flex;
    margin: 0 auto 50px;
    width: 100vw;
  }

  .chart01 img,
  .conect,
  .bymark {
    position: absolute;
  }
  .conect {
    max-width: 14.857vw;
    height: auto;
    top: calc(50% - 2.143vw);
  }

  .groupA,
  .groupB {
    max-width: 20.5vw;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 18.714vw;
    height: 100svh;
  }

  .groupA {
    top: calc(50% - 20.5vw / 2);
    left: 29%;
  }
  .groupB {
    top: calc(50% - 20.5vw / 2);
    left: 35%;
  }

  .toppage #thirdBlk p.plan,
  .toppage #thirdBlk p.exp {
    font-size: 2vw;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #0280bb;
  }

  p.exp {
    padding-top: 7.143vw;
  }

  .circleA,
  .circleB {
    width: 100%;
    max-width: 15.143vw;
    height: 15.143vw;
    aspect-ratio: 1/1;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .circleB {
    top: 6.786vw;
  }

  .bymark {
    top: 50%;
    left: 62.9%;
    max-width: 2.357vw;
    aspect-ratio: 1/1;
  }
  .pow {
    max-width: 7.5vw;
    aspect-ratio: 1/1;
    max-height: 7.5vw;
  }

  .pow01 {
    top: 1.714vw;
    left: 0;
  }
  .pow02 {
    top: 1.714vw;
    right: 0;
  }
  .pow03 {
    bottom: -1.714vw;
  }
  .pow04 {
    left: calc(50% - 7.5vw / 2);
    top: 1.714vw;
  }
  .pow05 {
    bottom: -1.714vw;
    left: 0;
  }
  .pow06 {
    bottom: -1.714vw;
    right: 0;
  }

  .power01 {
    width: 24.857vw;
    height: 27.5vw;
    top: -2.786vw;
    left: 5%;
  }

  .power02 {
    width: 25.643vw;
    height: 27.5vw;
    top: -14.8%;
    left: -36%;
  }

  .groupA,
  .circleA,
  .groupB,
  .circleB,
  p.plan,
  p.exp,
  .pow01,
  .pow02,
  .pow03,
  .pow04,
  .pow05,
  .pow06,
  .bymark,
  .power01,
  .power02,
  .conect {
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  .is-show .groupA {
    animation-name: fadein;
  }
  .is-show .circleA {
    animation: fadein 0.5s ease-out 0s 1 normal forwards,
      circleA 0.5s ease-out 0s 3 normal forwards;
  }

  .is-show .groupB {
    animation-delay: 0.5s;
    animation-name: fadein;
  }
  .is-show .circleB {
    animation: fadein 1s ease-out 0s 1 normal forwards,
      circleA 1s ease-out 0s 3 normal forwards;
  }
  .is-show p.plan {
    animation-delay: 2s;
    animation-name: fadein;
  }
  .is-show p.exp {
    animation-delay: 2.5s;
    animation-name: fadein;
  }
  .is-show .pow01 {
    animation-delay: 4s;
    animation-name: pow01, fadein;
  }
  .is-show .pow02 {
    animation-delay: 4.2s;
    animation-name: pow02, fadein;
  }
  .is-show .pow03 {
    animation-delay: 4.6s;
    animation-name: pow03, fadein;
  }
  .is-show .power01 {
    animation-delay: 5s;
    animation-name: power01, fadein;
  }
  .is-show .pow04 {
    animation-delay: 6s;
    animation-name: pow04, fadein;
  }
  .is-show .pow05 {
    animation-delay: 6.2s;
    animation-name: pow05, fadein;
  }
  .is-show .pow06 {
    animation-delay: 6.4s;
    animation-name: pow06, fadein;
  }
  .is-show .power02 {
    animation-delay: 6.8s;
    animation-name: power02, fadein;
  }
  .is-show .bymark {
    animation-delay: 8s;
    animation-name: bymark, fadein;
  }
  .is-show .conect {
    animation-delay: 9s;
    animation-name: conect, fadein;
  }

  @keyframes fadein {
    0% {
      opacity: 0;
      transform: scale(1.5);
    }
    100% {
      opacity: 100%;
      transform: scale(1);
    }
  }

  @keyframes circleA {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .toppage #thirdBlk h4 {
    font-size: 1.571vw;
    color: #0280bb;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1em;
  }

  .toppage #thirdBlk p {
    text-align: center;
    font-size: 1.143vw;
    line-height: 1.8em;
  }

  /**************************************************
 *            TOP　features fourthBlk
 ***************************************************/

  .features .sectioncontainer {
    margin-top: 0;
  }

  .features.fourthBlk h2 {
    font-size: 2.857vw;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.429vw;
  }

  .features.fourthBlk h3 {
    font-size: 3.571vw;
    font-weight: 400;
    text-align: center;
    margin: 1.429vw 0;
  }
  .features.fourthBlk h3 b {
    font-family: Noto Sans JP;
    display: block;
    font-size: 5.714vw;
    font-weight: 400;
    filter: drop-shadow(7px 7px 0 #fae506);
  }

  .features.fourthBlk #fourthBlk > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 7.143vw;
  }

  .features.fourthBlk #fourthBlk > div:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  .features.fourthBlk .sectionhalf {
    width: 100%;
    max-width: 42.857vw;
  }

  .features.fourthBlk .txtblk {
    background: #0088d7;
    width: 100%;
    height: 21.429vw;
    padding: 3.571vw 2.857vw;
    box-sizing: border-box;
    border-radius: 0.357vw;
    display: flex;
    align-items: center;
  }

  .features.fourthBlk .txtblk h4,
  .features.fourthBlk .txtblk p {
    color: #fff;
  }

  .features.fourthBlk .txtblk h4 {
    font-size: 1.429vw;
    font-weight: 600;
    margin-bottom: 3.571vw;
    text-align: center;
  }

  .features.fourthBlk .txtblk p {
    width: 100%;
    font-size: 1.143vw;
    line-height: 2em;
    font-weight: 400;
    margin: 0;
    padding: 0;
  }

  .features.fourthBlk .picblk,
  .features.fourthBlk .picblk img {
    max-width: 35.714vw;
    border-radius: 0.357vw;
  }

  /**************************************************
 *            TOP　banners
 ***************************************************/

  .toppage section#fifthBlk {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 7.143vw 0 0;
  }

  .toppage section#fifthBlk .picblk {
    max-width: 85.714vw;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100vw;
  }

  .bannerhello.bannerYT {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 25.714vw;
  }

  .bannerYT img {
    width: 100%;
    max-width: 25.714vw;
    margin: auto;
  }

  .bannerhello.bannerYT a {
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.4em;
  }
  .bannerhello.bannerYT a:nth-of-type(2) {
    margin-right: 4%;
  }

  .toppage section#sixthBlk .bannerArea {
    width: 100%;
    margin: 200px auto;
  }

  .toppage section#sixthBlk .bannerArea ul {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .toppage section#sixthBlk .bannerArea ul li {
    display: flex;
    align-items: flex-end;
  }

  .toppage section#sixthBlk .bannerArea ul li a {
    transform: rotate(-5deg);
    display: block;
    transition: 0.2s all;
  }

  .toppage section#sixthBlk .bannerArea ul li:nth-of-type(even) a {
    transform: rotate(5deg);
  }

  .toppage section#sixthBlk .bannerArea ul li a:hover {
    transform: rotate(0deg);
    transform: scale(1.1);
  }

  .toppage section#sixthBlk .bannerArea ul li img {
    max-width: 18.571vw;
  }

  /**************************************************
 *            TOP　NEWS
 ***************************************************/

  .toppage .seventhBlk h2,
  .toppage .seventhBlk h3 {
    text-align: center;
    color: #000;
  }

  .toppage .seventhBlk h2 {
    font-size: 2.857vw;
    margin: 0 auto;
  }

  .toppage .seventhBlk h3 {
    font-size: 1.429vw;
    margin: 0 auto 30px;
  }

  /***********************************************************************
 *
 *            2nd Page common
 * 
 ***********************************************************************/

  .mainVBlkwrapper {
    width: calc(100% - 7.143vw);
    height: calc(100vh - 7.143vw);
    height: calc(100svh - 7.143vw);
    margin: 3.571vw 3.571vw 0;
    padding: 0 0;
    position: relative;
  }

  .mainVBlk {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    padding: 0 0;
    border-radius: 0.357vw;
    position: relative;
    overflow: hidden;
  }

  .mainVBlk:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: animationZoom1 10s ease-out forwards;
  }

  @keyframes animationZoom1 {
    0% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  @media (min-width: 415px) {
    ._about .mainVBlk:before {
      background-image: url(../../img/mainv_about.jpg);
    }
    ._meidesei .mainVBlk:before {
      background-image: url(../../img/mainv_meidesei.jpg);
    }
    ._curriculum .mainVBlk:before {
      background-image: url(../../img/mainv_curriculum.jpg);
    }
    ._project .mainVBlk:before {
      background-image: url(../../img/mainv_project.jpg);
    }
    ._teachers .mainVBlk:before {
      background-image: url(../../img/mainv_teachers.jpg);
    }
    ._facility .mainVBlk:before {
      background-image: url(../../img/mainv_facility.jpg);
    }
    ._recruit .mainVBlk:before {
      background-image: url(../../img/mainv_recruit.jpg);
    }
    ._recruit._interviewpage .mainVBlk:before {
      background-image: none;
    }
    ._exam .mainVBlk:before {
      background-image: url(../../img/mainv_exam.jpg);
    }
  }

  a.contentsscroller {
    width: 6.071vw;
    height: 6.071vw;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    border-radius: 6.071vw;
    position: absolute;
    bottom: -3.214vw;
    right: 0;
    left: 0;
    margin: auto;
    text-decoration: none;
    z-index: 10;
  }

  .pageHeader a.contentsscroller {
    background-color: #fff;
  }

  a.contentsscroller span {
    display: block;
    transform: rotate(-45deg);
    font-weight: 600;
    color: #000;
    line-height: 1;
  }

  a.contentsscroller:after {
    display: block;
    content: "";
    width: 1.143vw;
    height: 1.143vw;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    border-radius: 0.214vw;
    position: absolute;
    bottom: 1.429vw;
    right: 1.429vw;
    border-top: none;
    border-left: none;
  }

  #container {
    width: 100%;
    position: absolute;
    top: 0;
  }

  .pageHeader {
    height: 100vh;
    height: auto;
    max-width: calc(100% - 7.143vw);
    margin: auto;
    position: relative;
    z-index: 1;
    text-align: left;
    top: 0;
    transition: 0.5s all;
    background-color: #f0f0f0;
    padding: 8.929vw 0;
    border-radius: 0 0 0.714vw 0.714vw;
  }

  .headInner {
    position: relative;
    left: 50%;
    width: 50%;
    height: calc(100vh - 5.714vw);
    background: #0082d2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4.286vw;
    margin-top: 5.714vw;
  }

  .page2nd h1,
  .page2nd h2,
  .page2nd h3,
  .page2nd p,
  ._teachers h1,
  ._teachers h2,
  ._teachers h3,
  ._teachers p {
    color: #000;
    margin: 0;
    line-height: 1;
    margin: 0;
  }

  .page2nd h1,
  ._teachers h1 {
    text-align: center;
    font-size: 2.857vw;
    font-size: min(3.333vw, 40px);
    margin: 0 auto 50px;
  }

  .page2nd h1 span,
  ._teachers h1 span {
    text-align: center;
    display: block;
    font-size: 1.143vw;
    font-size: min(1.333vw, 16px);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 1.429vw;
  }

  .page2nd .pageHeader h2,
  ._teachers .pageHeader h2,
  .page2nd .pagecontents .sectionfull.narrow h2 {
    font-size: 2.214vw;
    font-size: min(2.154vw, 28px);
    font-weight: 400;
    color: #000;
    margin: 0 0 3.571vw;
    line-height: 3.571vw;
  }

  ._about.page2nd .pageHeader h2,
  .page2nd .pagecontents h2,
  ._teachers .pagecontents h2,
  .interview_gra .pagecontents h2,
  ._graduate_works .pagecontents h2 {
    font-size: 1vw;
    font-size: min(1.167vw, 14px);
    font-weight: 600;
    color: #000;
    margin: 0 0 1.429vw;
  }

  .page2nd .pagecontents h3,
  .page3rd .pagecontents h3,
  ._about .pageHeader h3,
  ._teachers .pagecontents h3,
  .interview_gra .pagecontents h3,
  ._graduate_works .pagecontents h3 {
    font-size: 2.786vw;
    font-size: min(2.393vw, 28px);
    line-height: 1;
    position: relative;
    z-index: 2;
    width: max-content;
    margin-bottom: 3.571vw;
  }

  .interview_gra .pagecontents h3,
  ._graduate_works .pagecontents h3,
  .page3rd .pagecontents h3 {
    margin: 0 0 3.571vw 0;
  }

  ._teachers .pagecontents h3 {
    font-size: 1.429vw;
    font-size: min(1.151vw, 20px);
    width: max-content;
    margin-bottom: 3.571vw;
    font-weight: 600;
  }

  .page3rd .pagecontents h3,
  ._about .pageHeader h3,
  ._teachers .pagecontents h3 {
    width: max-content;
  }

  ._about .pageHeader h3:after,
  .page2nd .pagecontents h3:after,
  .page3rd .pagecontents h3:after,
  ._graduate_works .pagecontents h3:after,
  .interview_gra .pagecontents h3:after {
    position: absolute;
    content: "";
    background-color: #ffff79;
    width: calc(100% + 1.143vw);
    height: 2.5vw;
    display: block;
    top: 1vw;
    z-index: -1;
    border-radius: 0.357vw;
    box-sizing: content-box;
    padding: 0;
  }

  .page2nd .pageHeader p,
  .page3rd .pageHeader p,
  ._teachers .pageHeader p {
    font-size: 1.143vw;
    font-size: min(1.231vw, 16px);
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .page2nd .pagecontents p,
  ._teachers .pagecontents p {
    font-size: 1vw;
    line-height: 1.85;
    letter-spacing: 0.05em;
  }

  .page2nd .pagecontents p.lead,
  ._teachers .pagecontents p.lead {
    font-size: 1.143vw;
  }

  .page3rd h1,
  ._newspage h1,
  ._mmovie h1 {
    margin: 180px auto 200px;
    font-size: 2.857vw;
    color: #000;
    text-align: center;
  }

  ._newspage h1,
  ._mmovie h1 {
    margin: 180px auto 100px;
  }

  .pageContents {
    margin-top: 100vh;
    padding-top: 7.143vw;
    z-index: 10;
    position: relative;
    background: #fff;
    transition: 0.5s all;
  }

  #main.scrollstart .pageContents {
    transition: 0.5s all;
    box-shadow: 0px -30px 50px rgba(0, 0, 0, 0.5);
  }

  #main.scrollstart .pageHeader {
    -webkit-filter: blur(5px);
    filter: blur(10px) brightness(1.2);
  }

  .gryBlk {
    background-color: #f0f0f0;
  }

  .whiteBlk {
    background-color: #fff;
  }

  .sectionwrapper {
    padding: 0;
  }

  .sectioncontainer {
    width: 100%;
    padding: 7.143vw 0 0 0;
    box-sizing: border-box;
  }

  section {
    max-width: 85.714vw;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }

  section#firstBlk {
    display: block;
  }

  .sectionfull.narrow {
    max-width: 40.357vw;
    margin: 0 auto;
    display: block;
  }

  .page2nd .pagecontents .sectionfull.narrow p {
    line-height: 2;
    letter-spacing: 0.05em;
    font-size: 1.143vw;
  }

  section#firstBlk .sectionfull img {
    width: 100%;
  }

  .sectionhalf {
    width: 40vw;
  }

  .sectionhalf.r560,
  .sectionhalf.l560 {
    width: 40vw;
    display: flex;
    flex-direction: column;
    /*align-items: flex-end;*/
  }

  .sectionhalf.l560 {
    align-items: flex-start;
  }

  .sectionhalf.l560 h3,
  .sectionhalf.r560 h3 {
    width: 40vw;
    width: max-content;
  }

  .sectionhalf p,
  .section23rd p {
    width: 40vw;
    margin-bottom: 2em;
  }

  .section23rd,
  .section23rd p {
    max-width: 54.286vw;
    width: 54.286vw;
  }

  .section23rd img {
    max-width: 54.286vw;
    width: 46.429vw;
    margin: auto;
  }

  .sectionhalf p:last-of-type,
  .section23rd p:last-of-type {
    padding-bottom: 1.429vw;
  }

  .section13rd,
  .section13rd p {
    max-width: 25.714vw;
    width: 25.714vw;
  }

  .sectionhalf .picblk {
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    height: 45.714vw;
    width: 40vw;
    margin-top: 2.143vw;
    position: relative;
  }

  .sectionhalf .picblk figure {
    width: 19.286vw;
    height: 32.143vw;
    border-radius: 0.357vw;
    overflow: hidden;
  }

  .sectionhalf .picblk figure img {
    width: 100%;
    height: auto;
  }

  .sectionhalf .picblk figure:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  /***********************************************************************
 * separator
 ***********************************************************************/
  .separatorBG {
    position: sticky;
    top: 0;
    display: block;
    width: 100%;
    height: 31.071vw;
    top: 0;
    z-index: -1;
  }

  .separatorBG:after {
    box-shadow: 0 80px 40px -20px rgba(0, 0, 0, 0.2) inset;
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 31.071vw;
  }

  .separatorBG figure {
    width: calc(100vw - 11.429vw);
    height: 31.071vw;
    margin: auto;
    border-radius: 0 0 0.357vw 0.357vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .separatorBG figure img {
    height: auto;
    /* max-height: 31.071vw; */
    width: 100%;
    margin-top: 5vw;
    /* transition: 2s all;*/
  }

  /***********************************************************************
 *
 *            2nd About
 * 
 ***********************************************************************/

  ._about section#firstBlk {
    display: flex;
  }

  ._about .end {
    border-bottom: solid 1px #000;
  }

  ._about .sectionfull {
    max-width: 85.714vw;
    width: 100%;
    padding: 7.143vw 0 3.571vw;
  }

  ._about #secondBlk figure {
    text-align: center;
  }

  ._about #secondBlk img {
    max-width: 66.429vw;
    width: 100%;
    margin: 50px auto;
  }

  .section23rd.thirdBlk {
    padding: 3.571vw 0 7.143vw;
  }

  .section23rd.thirdBlk em {
    background: none;
    padding: 0.143vw 0.286vw;
    border-radius: 0.357vw;
    letter-spacing: 0.1em;
    font-style: normal;
    border: solid 1px #0081cc;
    color: #0081cc;
    margin-right: 1em;
    line-height: 2.4em;
  }

  ._about .fourthBlk {
    margin-top: 0;
    position: relative;
    overflow: visible;
    padding-top: 0;
  }

  ._about .fourthBlk #fourthBlk .section23rd {
    border-bottom: solid 1px #000;
  }

  ._about #fifthBlk .picblk {
    text-align: center;
  }

  ._about #fifthBlk {
    margin: 100px auto;
  }

  ._about #fifthBlk .grades div {
    padding: 0 0 2em 20px;
    line-height: 2em;
    letter-spacing: 0.05em;
    position: relative;
  }

  ._about #fifthBlk .grades div:before {
    content: "";
    border-right: solid 3px #000;
    width: 0.143vw;
    height: 100%;
    position: absolute;
    left: 0.214vw;
  }

  ._about #fifthBlk .grades div:after {
    content: "";
    background: #000;
    width: 0.714vw;
    height: 0.714vw;
    border-radius: 0.357vw;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  ._about #fifthBlk .grades div b,
  ._about #sixthBlk .sectionQrtr div b {
    display: block;
    font-size: 1.429vw;
  }

  ._about #sixthBlk .sectionQrtr div b {
    margin-bottom: 2em;
  }

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

  .sectionQrtr div {
    max-width: 18.571vw;
    width: 18.571vw;
    background-color: #efefef;
    border-radius: 0.357vw;
    padding: 2.429vw;
    line-height: 2em;
    margin-bottom: 3.143vw;
    font-feature-settings: normal;
  }

  .sectionQrtr::after {
    content: "";
    display: block;
    width: 41.071vw;
  }

  ._about .sectionQrtr div:nth-of-type(4) {
    margin-bottom: 3.143vw;
  }

  .sectionQrtr div:nth-of-type(5),
  .sectionQrtr div:nth-of-type(6) {
    margin-bottom: 0;
  }

  .sectionQrtr div b:before {
    content: "";
    width: 0.071vw;
    border-right: solid #61b0d3 3px;
    height: max-content;
    margin: 0 0.714vw 0 -0.714vw;
  }

  .sectionQrtr div:nth-of-type(2) b:before {
    border-right: solid #d40044 3px;
  }
  .sectionQrtr div:nth-of-type(3) b:before {
    border-right: solid #67b263 3px;
  }
  .sectionQrtr div:nth-of-type(4) b:before {
    border-right: solid #de8000 3px;
  }
  .sectionQrtr div:nth-of-type(5) b:before {
    border-right: solid #9089b2 3px;
  }
  .sectionQrtr div:nth-of-type(6) b:before {
    border-right: solid #61b0d3 3px;
  }

  ._about .fourthBlk .sectioncontainer,
  ._about .fourthBlk.sectionwrapper {
    padding-bottom: 0;
  }

  /***********************************************************************
 *
 *            2nd _curriculum
 * 
 ***********************************************************************/

  ._curriculum.page2nd .pageHeader .txtblk {
    margin-bottom: 7.143vw;
  }

  ._curriculum.page2nd .sectionQrtr {
    margin-top: 2.857vw;
  }

  ._curriculum.page2nd .sectionQrtr div {
    max-width: 27.143vw;
    width: 27.143vw;
    background-color: #fff;
    margin-bottom: 1.429vw;
  }

  ._curriculum.page2nd .sectionQrtr b {
    font-size: 1.429vw;
    margin-bottom: 1.429vw;
    display: block;
  }

  ._curriculum.page2nd .sectionQrtr div b:before {
    content: "";
    width: 0.071vw;
    border-right: solid #cb0044 3px;
    height: max-content;
    margin: 0 0.714vw 0 -0.714vw;
  }

  ._curriculum.page2nd .sectionQrtr div:nth-of-type(1) b {
    color: #cb0044;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(2) b {
    color: #6cad5a;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(3) b {
    color: #61a7ca;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(4) b {
    color: #61a7ca;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(5) b {
    color: #e4b600;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(6) b {
    color: #000;
  }

  ._curriculum.page2nd .sectionQrtr div:nth-of-type(2) b:before {
    border-right: solid #6cad5a 3px;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(3) b:before {
    border-right: solid #61a7ca 3px;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(4) b:before {
    border-right: solid #61a7ca 3px;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(5) b:before {
    border-right: solid #e4b600 3px;
  }
  ._curriculum.page2nd .sectionQrtr div:nth-of-type(6) b:before {
    border-right: solid #000 3px;
  }

  .sectionQrtr div:nth-of-type(4) {
    margin-bottom: 0;
  }

  .subjects {
    opacity: 0;
    height: 50vw;
  }

  ._curriculum.page2nd .pagecontents #thirdBlk h3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    width: calc(100% - 1.429vw);
  }

  ._curriculum.page2nd .pagecontents #thirdBlk span {
    color: #6fc058;
    font-size: 1.429vw;
    margin-top: 1.571vw;
  }

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

  .subjects.readdone {
    animation: height_slide 1s ease-out forwards;
  }

  @keyframes height_slide {
    from {
      opacity: 0;
      height: 50vw;
    }
    to {
      opacity: 1;
      height: 100%;
    }
  }

  .subjects .subjectbox {
    max-width: 25.714vw;
  }

  .subjects h4 {
    font-size: 1.429vw;
  }

  .subjects img {
    max-width: 25.714vw;
    margin: 1.429vw 0;
  }

  .subjects p,
  .subjects p:last-of-type {
    max-width: 25.714vw;
    border-bottom: none;
    font-feature-settings: normal;
    margin-bottom: 3.571vw;
  }

  ul.subjectBtn {
    list-style: none;
    margin-top: 10.714vw;
    position: relative;
    z-index: 2;
  }

  .subjectBtn li {
    margin-bottom: 0.714vw;
    text-align: right;
    width: 14.286vw;
    font-weight: 600;
  }

  .subjectBtn li.sps {
    background: #f2f2f2;
    padding: 0.714vw 1.071vw 0.714vw 0;
    box-sizing: border-box;
  }

  .subjectBtn li a {
    display: block;
    width: 100%;
    padding: 1.429vw 1.429vw 1.429vw 0;
    box-sizing: border-box;
    background: #f2f2f2;
    text-decoration: none;
    color: #000;
    transition: 0.3s all;
  }

  .subjectBtn li a:hover {
    width: 105%;
  }

  .subjectBtn li a.active {
    color: #fff;
    background: #6fc058;
  }

  .subjectBtn li ul {
    list-style: none;
    margin-top: 0.714vw;
  }

  .subjectBtn li ul li {
    margin-bottom: 0.357vw;
  }

  .subjectBtn li ul li a {
    display: block;
    width: calc(100% - 0.357vw);
    padding: 0.714vw 1.071vw;
    margin-right: 1.071vw;
    box-sizing: border-box;
    background: #e5e5e5;
    text-decoration: none;
    color: #000;
  }

  ._curriculum #thirdBlk .section13rd {
    max-width: 30vw;
    width: 30vw;
    position: relative;
  }

  ._curriculum #thirdBlk .section13rd:before {
    content: "";
    display: block;
    width: 19.286vw;
    height: 32.071vw;
    position: absolute;
    z-index: 1;
    right: 1.429vw;
    top: 14.286vw;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 0.357vw;
    top: 21.429vw;
    margin: auto;
    opacity: 0;
    transition: 0.5s all;
  }

  ._curriculum #thirdBlk .section13rd.theory:before {
    background-image: url(../../img/curriculum_theory00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.kikaku:before {
    background-image: url(../../img/curriculum_kikaku00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.exp:before {
    background-image: url(../../img/curriculum_exp00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.spc:before {
    background-image: url(../../img/curriculum_spc00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.spp:before {
    background-image: url(../../img/curriculum_spp00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.spcross:before {
    background-image: url(../../img/curriculum_spcross00.jpg);
  }
  ._curriculum #thirdBlk .section13rd.carri:before {
    background-image: url(../../img/curriculum_carri00.jpg);
  }

  ._curriculum #thirdBlk .section13rd.theory:before,
  ._curriculum #thirdBlk .section13rd.kikaku:before,
  ._curriculum #thirdBlk .section13rd.exp:before,
  ._curriculum #thirdBlk .section13rd.spc:before,
  ._curriculum #thirdBlk .section13rd.spp:before,
  ._curriculum #thirdBlk .section13rd.spcross:before,
  ._curriculum #thirdBlk .section13rd.carri:before {
    opacity: 1;
  }

  .subjects p.fullsize,
  .subjects .subjectbox.fullsize,
  .subjects .subjectbox.fullsize img {
    max-width: 54.286vw;
    width: 54.286vw;
    margin-bottom: 0;
  }

  .subjects .subjectbox.fullsize img {
    margin: 0;
  }

  /***********************************************************************
 *
 *            2nd _project
 * 
 ***********************************************************************/

  ._project .pagecontents section.whiteBlk {
    padding: 14.286vw 0 7.143vw 0;
  }

  ._project .pagecontents section .sectionhalf h4 {
    font-size: 1.429vw;
    margin-bottom: 1em;
  }

  ._project .pagecontents section .sectionhalf h5 {
    font-size: 1.143vw;
    margin-bottom: 1em;
  }

  ._project .pagecontents section#secondBlk .txtblk P {
    height: 100%;
  }

  ._project .sectionhalf img {
    max-width: 32.143vw;
    width: 100%;
    margin-bottom: 0;
  }

  ._project .sectionhalf.imgs {
    text-align: center;
    margin-top: 8.929vw;
  }

  ._project .projectBlk {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  ._project .projectBlk .sectionhalf.imgs {
    margin-top: 0;
  }

  ._project .imgslider {
    width: 32.143vw;
    margin: auto;
  }

  ._project .slick-list {
    border-radius: 0.357vw;
  }

  ._project .imgslider .slick-dots > li:first-child:last-child {
    display: none;
  }

  .projectBlk {
    margin-bottom: 7.143vw;
  }

  .projectBlk .sectionhalf.txtblk {
    border-bottom: solid 1px #000;
  }

  .projectBlk .slick-dotted.slick-slider {
    margin-bottom: 0.714vw;
  }

  .slick-dots li button:before {
    font-size: 15px !important;
  }

  /***********************************************************************
 *
 *            2nd _exam
 * 
 ***********************************************************************/

  ._exam .pagecontents section.whiteBlk#secondBlk {
    padding: 14.286vw 0 0 0;
  }

  ._exam .pagecontents section.whiteBlk {
    padding: 7.143vw 0 0;
  }

  ._exam .sectionhalf.l560 {
    align-items: CENTER;
  }

  .adpolicy {
    width: 100%;
    max-width: 33.571vw;
  }

  .adpolicy h5 {
    color: #ee9a38;
    font-size: 1.143vw;
    font-weight: 400;
  }

  .adpolicy ul li {
    color: #ee9a38;
    color: rgb(238, 154, 56);
    font-size: 1.143vw;
    font-weight: 600;
    position: relative;
    height: max-content;
    z-index: 3;
    list-style: none;
    margin: 0.5em 0 0;
    width: max-content;
    line-height: 3em;
    padding: 0 0.714vw;
    font-feature-settings: normal;
    letter-spacing: 0.05em;
  }

  .adpolicy ul li:before {
    content: "";
    width: 100%;
    height: 60%;
    background: #f0f0f0;
    line-height: 0;
    padding-left: -0.714vw;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .adpolicy ul li b {
    font-size: 1.571vw;
  }

  .checkthepage {
    display: block;
    border: solid 1px #000;
    width: 100%;
    padding: 0.357vw 0.714vw;
    box-sizing: border-box;
    margin: 3.571vw 0;
  }

  a.btnGuide:link,
  a.btnGuide:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.429vw;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    width: 100%;
    padding: 1.429vw 0.357vw;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: 0.5s all;
    overflow: hidden;
  }

  a.btnGuide:after {
    content: "";
    display: inline-block;
    height: 1.643vw;
    width: 1.643vw;
    background: url(../../img/icon_arrowbox.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0.714vw;
  }

  a.btnGuide:hover {
    color: #fff;
  }

  a.btnGuide:before {
    position: absolute;
    background: #aaa;
    bottom: -100%;
    left: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.2s all;
  }

  a.btnGuide:hover:before {
    bottom: 0;
  }

  ._exam #thirdBlk p:nth-of-type(2) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .examchart {
    line-height: 2em;
    letter-spacing: 0.1em;
  }

  .examchart h5,
  .examchart h6 {
    font-size: 1.214vw;
    font-weight: 400;
    margin: 0 0 0.3em 70px;
  }

  .examchart h6 {
    font-weight: 600;
    margin: 0 0 0.8em 0;
  }

  .examchart hr {
    height: 0.071vw;
    border-bottom: solid 1px #000;
  }
  .examchart .chart01 .inner,
  .examchart .chart02 .inner {
    display: flex;
  }

  .examchart .chart01 {
    max-width: none;
    height: auto;
    max-height: none;
    display: block;
    margin: 4.286vw 0 0 0;
    width: auto;
  }

  .examchart .chart02 {
    margin-top: 2.857vw;
  }

  .examchart .chart01 .inner div,
  .examchart .chart02 .inner div {
    box-sizing: border-box;
    padding: 1.071vw 2.143vw;
    border-radius: 0.357vw;
    width: 27.143vw;
    max-width: 27.143vw;
    position: relative;
  }

  .examchart .chart01 .inner div {
    background: #f0f0f0;
  }

  .examchart .chart02 .inner div {
    background: #d9d9d9;
  }

  .examchart .inner div ul {
    padding: 0 0 0 2.857vw;
  }
  .examchart .inner div ul li {
    list-style: none;
  }
  .examchart .inner div ul li::before {
    content: "・";
  }

  .examchart .chart01 .inner:before,
  .examchart .chart02 .inner:before {
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "年内の入試";
    border: solid 1px #000;
    border-radius: 0.357vw 0 0 0.357vw;
    border-right: none;
    padding: 1.071vw;
    height: auto;
    margin-right: 0.571vw;
  }

  .examchart .chart02 .inner:before {
    content: "年明けの入試";
  }

  .examchart .chart01 strong {
    font-size: 1.429vw;
    font-weight: 600;
    width: 4.857vw;
    height: 4.857vw;
    z-index: 3;
    position: absolute;
    top: 7.857vw;
    right: 9.286vw;
    line-height: 1;
    background: #fff;
    border-radius: 7.143vw;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    font-family: "Noto Sans JP";
    transform: rotate(-15deg);
  }

  ._exam #fourthBlk .imgs,
  ._exam #fifthBlk .imgs,
  ._exam #sixthBlk .imgs {
    padding-top: 5.714vw;
    display: flex;
    justify-content: center;
  }

  ._exam #fourthBlk .sectionhalf.imgs img,
  ._exam #fifthBlk .sectionhalf.imgs img,
  ._exam #sixthBlk .sectionhalf.imgs img {
    max-width: 32.143vw;
    width: 100%;
  }

  ._exam #fourthBlk .sectionfull.imgs,
  ._exam #fifthBlk .sectionfull.imgs,
  ._exam #sixthBlk .sectionfull.imgs {
    width: 100%;
    justify-content: space-between;
  }

  ._exam #fourthBlk .sectionfull.imgs img,
  ._exam #fifthBlk .sectionfull.imgs img,
  ._exam #sixthBlk .sectionfull.imgs img {
    max-width: 25.714vw;
    width: 100%;
  }

  ._exam #fourthBlk .sectionhalf.r560 .txtblk,
  ._exam #fifthBlk .sectionhalf.r560 .txtblk,
  ._exam #sixthBlk .sectionhalf.r560 .txtblk {
    width: 100%;
    text-align: center;
    padding: 1.429vw 0;
  }

  ._exam #fourthBlk .sectionhalf.r560 .txtblk p:first-of-type {
    border-bottom: solid 1px #000;
    padding: 0 0 1.429vw;
    margin-bottom: 2.857vw;
  }

  /*
._exam #fourthBlk .sectionhalf.r560 .txtblk a,
._exam #fifthBlk .sectionhalf.r560 .txtblk a,
._exam #sixthBlk .sectionhalf.r560 .txtblk a{
	text-decoration:none;
	font-size:1.143vw;
	color:#000;
	}
*/

  ._exam #fourthBlk .sectionhalf.r560 .txtblk img,
  ._exam #fifthBlk .sectionhalf.r560 .txtblk img,
  ._exam #sixthBlk .sectionhalf.r560 .txtblk img {
    max-width: 15vw;
    margin: 20px auto;
  }
  ._exam #fifthBlk .chart03 {
    margin: 4.286vw 0 0 0;
  }

  ._exam #fifthBlk .chart03 .inner {
    margin: 4.286vw 0 0 0;
    width: 100%;
    width: 32.143vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  ._exam #fifthBlk .chart03 .inner div {
    background: #f0f0f0;
    width: 100%;
    max-width: 10.143vw;
    height: 10.714vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.357vw;
    position: relative;
    box-sizing: border-box;
    padding: 0.714vw 0.571vw;
  }

  ._exam #fifthBlk .examchart .chart03 h5 {
    margin: 0 0 2em 0;
  }

  ._exam #fifthBlk .chart03 .inner div h6 {
    position: absolute;
    top: -1.786vw;
    left: calc(50% - 1.857vw);
    line-height: 0.5;
    font-size: 1.429vw;
    font-weight: 600;
    padding: 1.286vw;
    border-radius: 3.571vw;
    background: #f0f0f0;
  }

  ._exam #sixthBlk .glayBk {
    box-sizing: border-box;
    padding: 1.429vw;
    background: #f2f2f2;
    margin: 2.857vw 0 1.429vw;
    border-radius: 0.357vw;
  }

  ._exam #sixthBlk .glayBk b {
    font-size: 1.143vw;
    display: block;
  }

  ._exam #sixthBlk .glayBk span {
    font-size: 0.857vw;
  }

  /***********************************************************************
 *
 *            2nd _facility
 * 
 ***********************************************************************/

  ._facility .pagecontents section {
    margin-top: 14.286vw;
  }

  ._facility .sectionhalf {
    width: 40vw;
    align-items: flex-start;
  }

  ._facility figcaption {
    margin-top: 1.429vw;
    font-size: 1vw;
    letter-spacing: 0.05em;
  }

  ._facility #sixthBlk .sectionfull figure:nth-of-type(1) figcaption,
  ._facility #sixthBlk .sectionfull figure:nth-of-type(2) figcaption,
  ._facility #sixthBlk .sectionfull figure:nth-of-type(3) figcaption {
    margin-bottom: 3.571vw;
  }

  ._facility .sectionhalf.r560 .txtblk {
    width: 100%;
    text-align: center;
    padding: 1.429vw 0 3.571vw 0;
  }

  ._facility .sectionhalf.l560 {
    align-items: center;
  }

  ._facility .sectionhalf.imgs img {
    max-width: 32.143vw;
    width: 100%;
  }

  ._facility .sectionfull.imgs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  ._facility .sectionfull.imgs .lastvacant {
    max-width: 25.714vw;
    width: 100%;
    overflow: hidden;
    opacity: 0;
  }

  ._facility .sectionfull.imgs img {
    max-width: 25.714vw;
    width: 100%;
    overflow: hidden;
    border-radius: 0.357vw;
  }

  /***********************************************************************
 *
 *            2nd _teachers
 * 
 ***********************************************************************/

  ._teachers .pagecontents {
    display: flex;
    min-height: 71.429vw;
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 92.857vw;
    margin: 100px auto 0;
  }

  ._teachers .pagecontents section {
    max-width: 78.571vw;
    width: 78.571vw;
    margin-bottom: 5.714vw;
  }

  ._teachers .sectionhalf {
    width: 41.429vw;
  }

  ._teachers .pagecontents .introBlk {
    display: flex;
    margin-bottom: 1.071vw;
  }

  ._teachers .pagecontents .introBlk .innerBox {
    margin-right: 2.857vw;
    position: relative;
  }

  ._teachers .pagecontents .introBlk .infoBox .innerBox {
    margin-right: 0;
  }

  ._teachers .pagecontents .introBlk .innerBox.portraitBlk,
  ._teachers .pagecontents .introBlk .innerBox.portraitBlk img {
    max-width: 11.429vw;
    height: auto;
  }

  ._teachers .sectionhalf.imgs {
    position: sticky;
    width: 28.571vw;
    height: max-content;
    margin: 0 auto;
  }
  ._teachers .sectionhalf.imgs figure {
    text-align: center;
  }

  ._teachers .sectionhalf.imgs figure figcaption {
    margin-bottom: 0.714vw;
    text-align: left;
  }

  ._teachers .sectionhalf.imgs img {
    max-width: 28.571vw;
    max-height: 21.429vw;
    margin: auto;
  }

  ._teachers .sectionhalf.imgs figure.wimg01 {
    margin-bottom: 2.857vw;
  }

  ._teachers .pagecontents h3 span {
    font-size: 1.143vw;
  }

  ._teachers figcaption {
    font-size: 0.857vw;
    margin-top: 0.357vw;
    line-height: 1.8em;
    font-feature-settings: normal;
  }

  ._teachers .sectionhalf .portrait {
    line-height: 0;
  }

  ._teachers .sectionhalf .ballon {
    background: #f0f0f0;
    padding: 1.071vw;
    border-radius: 0.357vw;
    position: relative;
    margin: 0.714vw 0;
  }

  ._teachers .sectionhalf .ballon:before {
    content: "";
    display: block;
    width: 2.143vw;
    height: 1.071vw;
    background-color: #f0f0f0;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    position: absolute;
    top: 45%;
    left: -2.143vw;
  }

  ._teachers .sectionhalf .ballon p:last-of-type {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  ._teachers .sectionhalf p:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    width: auto;
  }

  ._teachers .sectionhalf .worktxtBlock.end table {
    margin: 2.143vw 0;
  }

  ._teachers .sectionhalf .worktxtBlock.end table td {
    font-size: 0.857vw;
    line-height: 1.7em;
  }

  ._teachers .sectionhalf .worktxtBlock.end table td:first-of-type {
    white-space: nowrap;
  }

  ._teachers .sectionhalf .end {
    border-bottom: solid 1px #000;
  }

  ._teachers .Btn_teachers {
    position: sticky;
    list-style: none;
    left: 0;
    top: 10%;
  }

  ._teachers .Btn_teachers li {
    width: 12.857vw;
    border-radius: 0 0.357vw 0.357vw 0;
    box-sizing: border-box;
    background: #f0f0f0;
    margin-bottom: 0.571vw;
    height: auto;
    transition: 0.5s all;
  }

  ._teachers .Btn_teachers li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.571vw 0 0.571vw 2vw;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s all;
  }

  ._teachers .Btn_teachers li:hover {
    background: #e0e0e0;
    width: 13.571vw;
  }

  ._teachers .Btn_teachers li:hover a {
    padding: 0.571vw 0 0.571vw 2.5vw;
  }

  ._teachers .speciality,
  ._teachers .workpicBlock {
    font-size: 1.143vw;
    line-height: 2em;
  }

  ._teachers .speciality {
    margin: 0.714vw 0 0 0;
  }

  .LinkDetail {
    display: block;
    position: relative;
    text-align: right;
    color: #000;
    padding: 0.714vw 0;
    text-decoration: none;
  }

  .LinkDetail:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 1vw;
    height: 1vw;
    margin-left: 0.714vw;
    background: url(../../img/arrow_link01.svg);
  }

  /***********************************************************************
 *
 *            3rd _COMMON
 * 
 ***********************************************************************/

  .page3rd .fullW {
    max-width: 87.143vw;
    margin: auto;
  }

  .page3rd .pageContents h3 {
    text-align: left;
    width: 100%;
  }

  .page3rd._3rd_project .pageContents h3,
  .page3rd._3rd_specializedsubject .pageContents h3 {
    margin: 60px auto 40px;
  }

  .page3rd._3rd_project .sec01 p,
  .page3rd._3rd_specializedsubject .sec01 p {
    margin-top: 0;
  }

  .page3rd .pageContents h3 span {
    font-size: 2.571vw;
    font-weight: 600;
    color: #0082d2;
  }

  .page3rd .sec01 p {
    color: #333333;
    font-size: 1.286vw;
    font-weight: 600;
    text-align: left;
    line-height: 2.1;
    border-left: #0082d2 solid 2px;
    width: 100%;
    padding: 0.357vw 0 0.357vw 1.429vw;
    margin: 90px auto;
  }

  .page3rd .pageContents .sec02,
  .page3rd .pageContents .sec03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .page3rd .pageContents .sec02 .sectionInnner {
    margin-bottom: 6.429vw;
    max-width: 41.786vw;
  }

  .page3rd .pageContents h4 {
    text-align: left;
    display: flex;
    margin-bottom: 0.714vw;
  }

  .page3rd .pageContents h4 span {
    font-size: 2.143vw;
    color: #0082d2;
    line-height: 1.1;
  }

  .page3rd .pageContents h4:before {
    content: "";
    width: 8.071vw;
    height: 3.571vw;
    background: url(../../img/icon_pickup.svg) no-repeat;
    background-size: 100%;
    display: inline-block;
    margin-right: 1.429vw;
  }

  .page3rd .pageContents .sec02 .imBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px;
  }

  .page3rd .pageContents .sec02 .MainImg {
    max-width: 41.786vw;
    height: auto;
    margin: 0 auto;
  }

  .page3rd .pageContents .sec02 .subImg {
    max-width: 19.643vw;
    height: auto;
  }

  .page3rd .pageContents .sectionInnner figcaption {
    font-size: 1vw;
    line-height: 1.5;
    text-align: right;
    margin-bottom: 0.714vw;
  }

  .page3rd .pageContents .sec02 .sectionInnner p,
  .page3rd .pageContents .sec03 .sectionInnner p {
    color: #333333;
    text-align: justify;
    line-height: 2.5;
    font-weight: 400;
  }

  ._conceptpage .pageHeader,
  ._curriculumpage .pageHeader,
  .pageHeader.page3rd {
    display: flex;
    flex-wrap: wrap;
  }

  .page3rd .headInner.Lbox {
    left: 0;
  }

  .page3rd .headInner.Rbox {
    left: 50%;
  }

  /***********************************************************************
 *
 *            project
 * 
 ***********************************************************************/

  /***********************************************************************
 *
 *            3rd _crossing
 * 
 ***********************************************************************/

  /***********************************************************************
 *
 *            recruit
 * 
 ***********************************************************************/

  ._recruit .pagecontents section {
    margin-top: 7.143vw;
  }

  ._recruit .pagecontents section#thirdBlk {
    margin-bottom: 7.143vw;
  }

  ._recruit._interviewpage .pagecontents section {
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    transition: 0.5s all;
  }

  ._recruit .sectionhalf.r560 h2 {
    width: 100%;
  }

  ._recruit #secondBlk .sectionhalf.r560 h4 {
    font-size: 1.286vw;
    margin: 1em 0;
  }

  ._recruit #secondBlk .sectionhalf.r560 h4:first-of-type {
    margin: 0 0 1em;
  }

  /*******************************************************
 *            careerchart
 ******************************************************/
  .careerchart {
    color: #000;
    font-size: 1.214vw;
    font-weight: 400;
    width: 33.214vw;
    position: relative;
    margin: 50px auto 30px;
  }

  .careerchart:after {
    content: "";
    display: block;
    height: 6vw;
    width: 5.5vw;
    position: absolute;
    background-image: url(../../img/usageGuide.svg);
    right: 0;
    top: 0;
  }

  .careerchart h4 {
    color: #fff;
    font-size: 1.214vw;
    font-weight: 400;
    width: 16.071vw;
    background: #9489da;
    padding: 0.357vw;
    box-sizing: border-box;
  }

  .careerchart div.gradeContent {
    display: flex;
    flex-wrap: wrap;
    width: 33.214vw;
    margin-bottom: 0.714vw;
    font-size: 1.214vw;
  }

  .careerchart div.gradeContent:nth-of-type(4) .gradeinner {
    display: flex;
    flex-wrap: wrap;
    width: 28.214vw;
    padding: 0;
  }

  .careerchart div.gradeContent:nth-of-type(4) div {
    background: none;
  }

  .careerchart div.gradeContent div.grade {
    width: 4.286vw;
    background: none;
    padding: 0 0 0 0.357vw;
    border-right: solid 1px #000;
    margin: 0 0.714vw 0 0;
    box-sizing: border-box;
  }
  .careerchart div.gradeContent:nth-of-type(1) div.grade {
    border-right: none;
  }

  .careerchart div.gradeContent div {
    background: #bcbcbc;
    padding: 0.357vw;
    width: 16.071vw;
    box-sizing: border-box;
  }

  .careerchart div.gradeContent:nth-of-type(4) .gradeinner div {
    width: 16.071vw;
    background: #c9c6ff;
  }

  .careerchart div.gradeContent:nth-of-type(4) .gradeinner div:last-of-type {
    width: 11vw;
    margin-left: 0.714vw;
  }

  .careerchart div.gradeContent b {
    width: max-content;
    display: block;
    margin: 5px auto;
    padding: 0.071vw 0.214vw;
    border: solid 2px #000;
  }

  ._recruit #thirdBlk .sectionfull.imgs,
  ._recruit #fifthBlk .sectionfull.imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  ._recruit #thirdBlk .sectionfull.imgs {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3.571vw;
  }

  ._recruit #thirdBlk .imgs figcaption {
    margin-top: 1.429vw;
  }

  ._recruit #thirdBlk .sectionfull.imgs img {
    max-width: 25.714vw;
    margin: 0 1.429vw;
  }

  ._recruit .sectionhalf.l560 {
    align-items: center;
  }

  ._recruit .sectionhalf.l560 img {
    max-width: 32.143vw;
    margin: auto;
  }

  ._recruit #fifthBlk .sectionfull.imgs > div {
    width: 25.714vw;
    height: auto;
    margin-bottom: 2.857vw;
  }

  ._recruit #fifthBlk .sectionfull.imgs div h4 {
    width: 100%;
    font-size: 1.214vw;
    font-weight: 400;
    background: #f0f0f0;
    padding: 0.357vw 0;
    text-align: center;
    margin-bottom: 0.5em;
  }

  ._recruit #fifthBlk .sectionfull.imgs ul {
    list-style: none;
  }
  ._recruit #fifthBlk .sectionfull.imgs ul li {
    font-size: 1.214vw;
    line-height: 1.7em;
    padding: 0 1.429vw;
    margin-left: 1.786vw;
    text-indent: -1.786vw;
  }

  ._recruit #fifthBlk .sectionfull.imgs ul li:before {
    content: "●";
    margin-right: 0.3em;
  }

  ._recruit .sectionhalf p:last-of-type,
  ._recruit .section23rd p:last-of-type {
    border-bottom: none;
  }

  ._recruit #fourthBlk .sectionfull.imgs,
  ._recruit #fifthBlk .sectionfull.imgs,
  ._interviewpage .sectionfull.imgs {
    width: 100%;
  }

  /***********************************************************************
 *
 *           interviewpage
 * 
 ***********************************************************************/

  ._recruit.page3rd a.contentsscroller {
    display: none;
  }

  ._recruit #fourthBlk .sectionfull.imgs,
  ._recruit #fifthBlk .sectionfull.imgs,
  ._interviewpage .sectionfull.imgs {
    width: 100%;
  }

  ._recruit #fourthBlk ul,
  ._recruit #fourthBlk ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 71.429vw;
    margin: 50px auto;
  }

  ._recruit #fourthBlk ul li {
    width: 22.143vw;
    height: 12.857vw;
    position: relative;
    border-radius: 0.357vw;
    margin-bottom: 2.857vw;
    overflow: hidden;
  }

  ._recruit #fourthBlk ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    background-position: top center;
    padding: 0.714vw;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

  ._recruit #fourthBlk ul h5.caption {
    /* max-width: 91%; */
    width: 100%;
    margin: 0;
    padding: 0.357vw 1.429vw;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    /* bottom: 0; */
    /* right: 0; */
    /* left: 0; */
    text-align: left;
    font-weight: 400;
    height: 4.286vw;
  }

  ._recruit #fourthBlk ul .bgblock {
    background: #0082d2;
    margin: auto;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  ._recruit #fourthBlk ul .bgblock:after {
    content: "";
    position: absolute;
    bottom: 0.929vw;
    right: 0.714vw;
    display: block;
    width: 2vw;
    height: 2vw;
    background: url(https://meide.jp/wp/wp-content/themes/meseidesign2023/img/arrow_R_W.svg)
      no-repeat;
    background-size: contain;
    transition: 0.5s all;
  }

  ._recruit #fourthBlk ul a:hover .bgblock:after {
    right: 0.143vw;
  }

  ._recruit #fourthBlk ul h5.caption span {
    color: #fff;
    position: absolute;
    /* display: inline-block; */
    width: 80%;
  }

  /***********************************************************************
 *
 *           graduate works single page
 * 
 ***********************************************************************/

  /***********************************************************************
 *
 *           interview single page
 *           graduate works single page
 * 
 ***********************************************************************/

  .page3rd .mainVBlk:before {
    content: none;
  }

  .page3rd .pagecontents h2 {
    font-size: 1vw;
    font-size: min(1.167vw, 14px);
    font-weight: 600;
    color: #000;
    margin: 0 0 1.429vw;
  }

  .page3rd .pagecontents .txtblk {
    line-height: 2em;
  }

  .graduate_workswrapper,
  .interviewwrapper {
    width: calc(100% - 7.143vw);
    height: auto;
    background-color: #f0f0f0;
    margin: 3.571vw 3.571vw 0;
    padding: 3.571vw 0;
    border-radius: 0.357vw;
    position: relative;
  }

  .interviewwrapper_ {
    top: 7.143vw;
    margin: 0 3.571vw 0;
    padding: 0 0 3.571vw 0;
  }

  .interviewwrapper .pageHeader {
    background: transparent;
  }

  .graduate_workswrapper .mainVBlk,
  .interviewwrapper .mainVBlk {
    width: 90vw;
    max-width: 85.714vw;
    height: calc(70vh - 11.429vw);
    height: calc(70svh - 11.429vw);
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    padding-top: 0;
  }

  .graduate_workswrapper .mainVBlk {
    height: auto;
    overflow: visible;
  }

  .interviewwrapper .mainVBlk {
    height: max(calc(70svh - 258px), 600px);
    background-size: 48%;
    background-position: left top;
    display: flex;
    justify-content: flex-end;
  }

  .graduate_workswrapper .headInner,
  .interviewwrapper .headInner {
    position: static;
    width: 100%;
    height: auto;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 4.286vw 0;
    margin-top: 0;
  }

  .interviewwrapper .headInner {
    width: 100%;
    max-width: 42.857vw;
    box-sizing: border-box;
    padding: 0 4.643vw;
    transition: 1s all;
  }

  ._recruit._interviewpage .pagecontents section .pageHeader.page3rd {
    margin: 0;
    padding-top: 0;
  }

  ._recruit._interviewpage .mainVBlk {
    top: 7.143vw;
    position: sticky;
  }

  ._recruit._interviewpage .mainVBlk.scrolled {
    transition: 2s all;
    background-color: transparent;
  }

  ._recruit._interviewpage .mainVBlk.scrolled .headInner {
    opacity: 0;
  }

  .page3rd .graduate_workswrapper .pagecontents .headInner h2,
  .page3rd .interviewwrapper .pagecontents .headInner h2 {
    font-size: 2.143vw;
    font-weight: 600;
    color: #000;
    margin: 0 auto;
  }

  .graduate_workswrapper .headInner .intv_info,
  .interviewwrapper .headInner .intv_info {
    font-size: 1.143vw;
    color: #000;
    margin: 100px auto 60px;
    max-width: 45.714vw;
    width: 100%;
    background: #fff;
    padding: 1.429vw;
    text-align: center;
    border-radius: 0.357vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    letter-spacing: 0.05em;
  }

  .interviewwrapper .headInner h2 {
    max-width: 33.571vw;
  }

  .interviewwrapper .headInner .intv_info {
    background: #f0f0f0;
    max-width: 30.714vw;
  }

  .graduate_workswrapper .headInner .intv_info span,
  .interviewwrapper .headInner .intv_info span {
    font-size: 1.429vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

  .graduate_workswrapper .headInner .intv_info span:before,
  .interviewwrapper .headInner .intv_info span:before {
    content: "";
    width: 0.071vw;
    height: 2.857vw;
    display: inline-block;
    transform: rotate(45deg);
    border-right: solid 1px #000;
    margin: 0 1.429vw;
  }

  .graduate_workswrapper .headInner .intv_info ul {
    width: 100%;
    margin: 10px auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .graduate_workswrapper .headInner .intv_info ul li {
    font-size: 0.857vw;
    background: #000;
    color: #fff;
    padding: 0.286vw;
    border-radius: 0.357vw;
    margin-right: 0.5em;
  }
  .graduate_workswrapper .headInner .intv_info ul li:last-of-type {
    margin-right: 0;
  }

  .graduate_workswrapper .article,
  .interviewwrapper .article {
    max-width: 40vw;
  }

  .interviewwrapper .article {
    max-width: 42.857vw;
    padding: 0 1.786vw;
  }

  .graduate_workswrapper .article .col,
  .interviewwrapper .article .col {
    font-size: 1vw;
    line-height: 1.8em;
  }

  .graduate_workswrapper .wrapinner,
  .interviewwrapper .wrapinner {
    margin: auto;
  }

  .graduate_workswrapper .article h3,
  .interviewwrapper .article h3 {
    font-size: 1.429vw;
    font-weight: 600;
    color: #000;
    margin: 3.571vw 0 2.143vw 0;
    position: static;
  }

  .page3rd .graduate_workswrapper .pagecontents .article h3:after,
  .page3rd .interviewwrapper .pagecontents .article h3:after {
    content: none;
  }

  .graduate_workswrapper .article h3:first-of-type,
  .interviewwrapper .article h3:first-of-type {
    margin-top: 0;
  }

  ._curriculum #fourthBlk .sectionfull.imgs {
    width: 100%;
  }

  ._curriculum #fourthBlk ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 71.429vw;
    margin: 50px auto;
  }

  ._curriculum #fourthBlk ul li {
    width: 22.143vw;
    height: auto;
    position: relative;
    margin-bottom: 2.857vw;
  }

  ._curriculum #fourthBlk ul li a {
    width: 100%;
    height: 17.143vw;
    display: flex;
    background-size: cover;
    background-position: center;
    padding: 0.714vw;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    border-radius: 0.357vw;
    overflow: hidden;
    border: solid 1px #ddd;
  }

  ._curriculum #fourthBlk ul li a.txtlinks {
    display: block;
    border: none;
    height: auto;
    text-align: right;
    text-decoration: none;
    color: #000;
  }

  ._curriculum #fourthBlk ul h5.caption a {
    text-align: left;
  }

  ._curriculum #fourthBlk ul h5.caption {
    width: 100%;
    margin: 0;
    padding: 0.357vw 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    font-weight: 400;
    height: 4.286vw;
  }

  ._curriculum #fourthBlk ul .bgblock {
    background: #0082d2;
    margin: auto;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  ._curriculum #fourthBlk ul .bgblock:after {
    content: "";
    position: absolute;
    bottom: 0.929vw;
    right: 0.714vw;
    display: block;
    width: 2vw;
    height: 2vw;
    background: url(https://meide.jp/wp/wp-content/themes/meseidesign2023/img/arrow_R_W.svg)
      no-repeat;
    background-size: contain;
    transition: 0.5s all;
  }

  ._curriculum #fourthBlk ul a:hover .bgblock:after {
    right: 0.143vw;
  }

  ._curriculum #fourthBlk ul h5.caption span {
    color: #fff;
    position: absolute;
    /* display: inline-block; */
    width: 80%;
  }

  /***********************************************************************
 *
 *           meidesei profile
 * 
 ***********************************************************************/

  ._meidesei .pageHeader a.contentsscroller {
    background-color: #fff;
  }

  .page2nd._meidesei .pagecontents section {
    margin-bottom: 7.143vw;
  }

  ._meidesei #secondBlk {
    margin-top: 7.143vw;
  }

  .page2nd._meidesei .pagecontents #secondBlk .sectionhalf.l560 {
    position: relative;
  }

  .page2nd._meidesei figure {
    border-radius: 0.357vw;
    overflow: hidden;
  }

  .page2nd._meidesei figure img {
    vertical-align: bottom;
  }

  .page2nd._meidesei .img01 {
    max-width: 24.286vw;
    position: absolute;
    top: -14.286vw;
    z-index: +1;
    margin: auto;
    right: 0;
    left: 0;
  }

  .page2nd._meidesei .img02 {
    max-width: 32.143vw;
    margin-bottom: 2.857vw;
  }

  .page2nd._meidesei .img03 {
    max-width: 37.143vw;
  }

  .page2nd._meidesei .img04,
  .page2nd._meidesei .img05 {
    margin-top: 2.857vw;
  }

  .page2nd._meidesei .imghlz {
    max-width: 40vw;
  }

  ._meidesei figure {
    margin: 0 auto;
  }

  .page2nd._meidesei .pagecontents .sectionhalf p {
    padding: 0 0 1.429vw 0;
    margin-bottom: 0;
    border-bottom: solid 1px #000;
  }

  .page2nd._meidesei .studentstype figure {
    border-radius: 0.357vw;
    max-width: 32.143vw;
    overflow: hidden;
    line-height: 0;
    margin: 0;
  }

  ._meidesei .pagecontents h3 {
    width: max-content;
    max-width: 53.214vw;
  }

  ._meidesei figure img {
    width: 100%;
  }

  .hashwords {
    position: relative;
    top: 45%;
    max-width: 32.143vw;
    margin: 0 auto;
  }

  .studentstype .students h4 {
    font-size: 1.429vw;
    margin-bottom: 2em;
  }

  .studentstype .students h5 {
    font-size: 1.143vw;
    margin-bottom: 1em;
  }

  .studentstype .studentBlk .imgs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    border-right: solid 1px #000;
    padding-right: 1.429vw;
    margin-right: 0;
    box-sizing: border-box;
  }

  .studentstype .studentBlk .txtblk {
    padding-left: 1.429vw;
    box-sizing: border-box;
  }

  .studentstype .studentBlk.evn .imgs {
    padding-left: 1.429vw;
    border-right: none;
    border-left: solid 1px #000;
    justify-content: flex-start;
  }

  .studentstype .studentBlk.evn .txtblk {
    padding-left: 0;
    padding-right: 1.429vw;
  }

  .page2nd .pagecontents .studentBlk .txtblk p {
    width: 100%;
    border-bottom: none;
  }

  /*

.studentstype div.studentBlk.evn{
	display:flex;
	}

.studentstype div.studentBlk.odds{
	}
*/

  .studentBlk {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 7.143vw;
  }

  div.studentBlk:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  div.studentBlk:nth-of-type(odd) {
    flex-direction: row;
  }

  ._meidesei #sixthBlk .sectionfull.imgs {
    width: 100%;
  }

  ._meidesei #sixthBlk ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 71.429vw;
    margin: 50px auto;
  }

  ._meidesei #sixthBlk ul li {
    width: 22.143vw;
    height: 12.857vw;
    position: relative;
    border-radius: 0.357vw;
    margin-bottom: 2.857vw;
    overflow: hidden;
  }

  ._meidesei #sixthBlk ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    background-position: top center;
    padding: 0.714vw;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

  ._meidesei #sixthBlk ul li a:before {
    content: "";
    display: block;
    width: 3.571vw;
    height: 3.571vw;
    position: absolute;
    background: url(../../img/mov_arrow.svg);
    top: calc(50% - 2.143vw);
    transition: 0.5s all;
  }

  ._meidesei #sixthBlk ul li a:hover:before {
    transform: scale(1.2);
  }

  ._meidesei #sixthBlk ul h5.caption {
    /* max-width: 91%; */
    width: 100%;
    margin: 0;
    padding: 0.357vw 1.429vw;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    /* bottom: 0; */
    /* right: 0; */
    /* left: 0; */
    text-align: left;
    font-weight: 400;
    height: 4.286vw;
  }

  ._meidesei #sixthBlk ul .bgblock {
    background: rgba(0, 0, 0, 0.5);
    margin: auto;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  ._meidesei #sixthBlk ul h5.caption span {
    color: #fff;
    position: absolute;
    /* display: inline-block; */
    width: 80%;
  }

  /***********************************************************************
 *
 *           footer
 * 
 ***********************************************************************/

  footer {
    position: relative;
    z-index: 100;
    background: #f2f2f2;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 1vw;
    padding: 7.143vw 0 0;
    margin: 200px auto 0;
    border-top: solid 1px #b1b1b1;
  }

  footer .logo img {
    position: relative;
    margin: 0 0 2.143vw 0;
  }

  footer nav#global {
    letter-spacing: 0;
    display: flex;
    max-width: 85.714vw;
    justify-content: space-between;
    text-align: left;
  }

  footer nav#global li a {
    color: #000;
  }

  footer nav#global li a:before {
    border-right: solid 3px #000;
    border-top: solid 3px #000;
  }

  footer p,
  footer a {
    font-size: 1vw;
  }

  footer p.address {
    text-align: center;
  }

  footer .wrap {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding-bottom: 0.714vw;
    text-align: center;
  }

  footer .nav {
    text-align: right;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
  }

  footer #global > .nav,
  footer #global > .nav01,
  footer #global > .nav02,
  footer #global > .nav03 {
    display: flex;
    flex-direction: column;
  }

  footer .nav > li a {
    color: #666;
  }

  .footerlogo img {
    margin: 20px auto;
    width: 3.571vw;
    height: 4.286vw;
  }

  .backtoTop {
    width: 4.286vw;
    height: 2.857vw;
    display: block;
    position: fixed;
    bottom: 2.857vw;
    z-index: 10;
    right: 0;
    text-align: center;
    text-decoration: none;
    color: #000;
  }

  .backtoTop:after {
    content: "";
    width: 2.857vw;
    height: 2.857vw;
    position: absolute;
    top: -0.643vw;
    left: 0.643vw;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(-45deg);
    transition: 0.5s all;
  }

  .backtoTop:hover {
    font-weight: 900;
  }

  .backtoTop:hover:after {
    top: -1.071vw;
    transition: 0.5s all;
    border-top: solid 3px #000;
    border-right: solid 3px #000;
  }

  .copy {
    width: 100%;
    background: #707070;
    color: #fff;
    text-align: center;
    font-size: 0.857vw;
    letter-spacing: 0.1em;
    padding: 0.714vw 0;
  }

  /***********************************************************************
 *
 *           MEIDESAN 明デさん
 * 
 ***********************************************************************/

  ._lp2024 #container {
    background: #0285d1;
  }

  ._lp2024 .mainVBlk {
    width: calc(100% - 7.143vw);
    max-width: 85.714vw;
    height: calc(100vh - 7.143vw);
    height: calc(100svh - 7.143vw);
    background-color: #fff;
    background-size: cover;
    background-position: center;
    margin: 100px auto 100px;
    padding: 0 0;
    border-radius: 6.786vw;
    position: relative;
  }

  /***********************************************************************
 *
 *           News
 * 
 ***********************************************************************/

  /***年切り替えタブ***/
  .cp_sl03 {
    font-size: 1.429vw;
    position: relative;
    background: #fff;
    width: 10vw;
    max-width: 7.143vw;
    margin: 0 auto 50px;
  }

  .cp_sl03:before {
    box-sizing: border-box;
    z-index: 1;
    position: absolute;
    right: 0;
    top: 27%;
    content: "";
    height: 1.286vw;
    width: 1.286vw;
    padding-left: 0.214vw;
    color: #000;
    pointer-events: none;
    border-left: #000 2px solid;
    border-top: #000 2px solid;
    transform: rotate(-135deg);
  }

  .cp_sl03 select {
    outline: none;
    -moz-appearance: none;
    text-indent: 0.001vw;
    text-overflow: "";
    background: none transparent;
    vertical-align: middle;
    font-size: 1.429vw;
    font-weight: 600;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 2.857vw;
    padding: 0.571vw 0.857vw;
    color: #000;
    width: 100%;
    border: none;
    border-radius: 0;
  }

  .cp_sl03 select option {
    background-color: #fff;
    color: #333;
  }

  .cp_sl03 select::-ms-expand {
    display: none;
  }

  .cp_sl03 select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
  }
  /***年切り替えタブ***/

  ._newspage .newswrapper {
    width: calc(100% - 7.143vw);
    height: auto;
    background-color: #f0f0f0;
    margin: 3.571vw 3.571vw 0;
    padding: 3.571vw 0;
    border-radius: 0.357vw;
    position: relative;
  }

  .newswrapper .mainVBlk {
    width: 90vw;
    max-width: 85.714vw;
    height: calc(60vh - 14.286vw);
    height: calc(60svh - 14.286vw);
    max-height: 42.857vw;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40%;
    margin: 0 auto;
  }

  .newswrapper .headInner {
    position: static;
    width: 100%;
    height: auto;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 4.286vw 0;
    margin-top: 0;
  }

  .page3rd .newswrapper .pagecontents .headInner h2 {
    font-size: 2.857vw;
    font-weight: 600;
    color: #000;
    margin: 0 auto;
  }

  ._newspage .pagecontainer {
    max-width: 85.714vw;
    width: 100%;
    margin: auto;
  }

  section.contents.news {
    max-width: 87.143vw;
    width: 100%;
    display: flex;
    margin: auto;
  }

  .toppage .news .posts,
  ._newspage .news .posts {
    width: 100%;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .toppage .news .post,
  ._newspage .news .post {
    max-width: 25.714vw;
    width: 100%;
    position: relative;
    margin-bottom: 5.714vw;
  }

  .toppage .news .post {
    max-width: 18.571vw;
  }

  .toppage .news_title,
  ._newspage .news_title {
    width: 100%;
    font-weight: 400;
    color: #000;
    height: auto;
    padding: 0.714vw 0;
    text-align: left;
    min-height: 5vw;
  }

  .newsLinkimg {
    line-height: 0;
    display: block;
    max-width: 25.714vw;
    height: 16.429vw;
    overflow: hidden;
    border-radius: 0.429vw;
    border: solid 1px #eee;
    box-sizing: border-box;
  }

  .toppage .newsLinkimg {
    max-width: 18.571vw;
    height: 11.429vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
  }

  .toppage .newsLinkimg img {
    max-width: 18.571vw;
    transition: 0.5s all;
  }

  .post a:hover img {
    transition: 0.5s all;
    transform: scale(1.1);
  }

  .newsLinkimg img {
    max-width: 26.071vw;
    width: 26.071vw;
    transition: 0.5s all;
    margin-left: -0.214vw;
  }

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

  ._newspage .news .news_cat {
    font-size: 0.857vw;
    font-weight: 600;
    color: #000;
    border-radius: 0.357vw;
    border: solid 2px #000;
    margin: 0.357vw 0;
    padding: 0.143vw 0.429vw;
    display: block;
    width: max-content;
  }

  span.dates {
    margin: 0;
    display: block;
    text-align: center;
    font-weight: 600;
  }

  .toppage .news_title a,
  .toppage .dates,
  ._newspage .news_title a,
  ._newspage .dates {
    color: #000;
    font-size: 1.143vw;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.62em;
  }

  .toppage .dates,
  ._newspage .dates {
    font-size: 2vw;
    font-weight: 400;
    text-align: right;
    font-style: italic;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .interview_gra .pagination,
  ._graduate_works .pagination,
  ._newspage .pagination {
    font-size: 2.143vw;
    font-weight: 400;
    border-top: solid 1px #333;
    text-align: right;
  }

  .interview_gra .pagination a,
  .interview_gra .pagination span,
  ._graduate_works .pagination a,
  ._graduate_works .pagination span,
  ._newspage .pagination a,
  ._newspage .pagination span {
    font-size: 1.429vw;
    color: #000;
    margin-right: 0.714vw;
    text-decoration: none;
  }

  .interview_gra .pagination .current,
  ._graduate_works .pagination .current,
  ._newspage .pagination .current {
    color: #ccc;
  }

  /***********************************************************************
 *
 *           NEWS DETAIL
 * 
 ***********************************************************************/
  ._newspage.singlepage .newswrapper {
    margin: 0 auto;
    padding: 7.857vw 0;
  }

  ._newspage.singlepage #container {
    position: relative;
  }
  ._newspage.singlepage .wp-block-image img,
  ._eventreport .wp-block-image img {
    max-width: 100%;
    height: auto;
  }

  ._newspage.singlepage .newswrapper .headInner {
    padding: 0;
    margin-top: 0;
  }

  .articleInfo {
    margin: auto;
  }

  .articleInfo .catName,
  .articleInfo .date {
    text-align: center;
  }

  ._newspage.singlepage #main .wrap,
  ._eventreport #main .wrap {
    padding-left: 1.143vw;
    padding-right: 1.143vw;
    width: 100%;
  }

  ._newspage.singlepage #main,
  ._eventreport #main {
    margin: 0 auto;
    padding-bottom: 7.143vw;
  }

  ._newspage.singlepage a.contentsscroller,
  ._eventreport a.contentsscroller {
    background: #fff;
  }

  ._newspage.singlepage a.contentsscroller:after {
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    top: 1.429vw;
    left: 1.429vw;
    border-right: none;
    border-bottom: none;
  }

  ._newspage.singlepage #main .lh,
  ._eventreport #main .lh {
    width: 100%;
    font-size: 2.857vw;
    color: #000;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    padding-top: 7.143vw;
    padding-bottom: 4.286vw;
  }

  ._newspage.singlepage #main .newsInfoBlock,
  ._eventreport #main .newsInfoBlock {
    border-top: solid 3px #000;
    padding: 4vw 0 0 0;
    margin: 0;
    width: 100%;
  }

  ._newspage.singlepage #main .lh.single,
  ._eventreport #main .lh.single {
    font-size: 1.143vw;
    position: relative;
    padding: 0;
  }

  ._newspage.singlepage #main .catName,
  ._newspage.singlepage #main .date,
  ._newspage.singlepage #main .postTit,
  ._eventreport #main .catName,
  ._eventreport #main .date,
  ._eventreport #main .postTit {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
  }

  ._newspage.singlepage #main .date,
  ._eventreport #main .date {
    position: relative;
    margin-top: 2.857vw;
    font-size: 2vw;
    font-weight: 400;
    text-align: right;
    font-style: italic;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  ._newspage.singlepage #main .postTit,
  ._eventreport #main .postTit {
    margin-top: 1.429vw;
    font-size: 2.857vw;
    font-weight: 600;
  }

  ._newspage.singlepage #main .date:before,
  ._eventreport #main .date:before {
    content: "";
    height: 2.143vw;
    border-right: solid 2px #000;
    position: absolute;
    top: -2.5vw;
    left: 50%;
  }

  ._newspage.singlepage #main .contents .contents,
  ._eventreport #main .contents .contents {
    line-height: 2;
    font-weight: 400;
    text-align: left;
    padding: 3.214vw 0;
    margin: 0 auto 100px;
    max-width: 57.143vw;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
  }

  ._newspage.singlepage #main .detail .contents h4,
  ._eventreport #main .detail .contents h4 {
    font-size: 1.429vw;
    font-size: 2rem;
    font-weight: 900;
    margin: 1.429vw 0;
  }

  ._newspage.singlepage #main .detail .contents h3,
  ._eventreport #main .detail .contents h3 {
    font-size: 1.429vw;
    font-size: 2rem;
    font-weight: 500;
    margin: 1.429vw 0;
    border-left: solid 6px #000;
    padding-left: 1.214vw;
  }

  ._newspage.singlepage #main .detail .contents a,
  ._eventreport #main .detail .contents a {
    color: #0080bc;
  }

  ._newspage.singlepage #main .detail .contents table tr,
  ._eventreport #main .detail .contents table tr {
    border-bottom: solid 1px #b7b7b7;
  }

  ._newspage.singlepage #main .detail .contents table tr:last-of-type,
  ._eventreport #main .detail .contents table tr:last-of-type {
    border-bottom: none;
  }

  ._newspage.singlepage #main .detail .contents table td,
  ._eventreport #main .detail .contents table td {
    vertical-align: top;
    padding: 1rem 0;
  }

  ._newspage.singlepage #main .detail .contents table td:nth-of-type(1),
  ._eventreport #main .detail .contents table td:nth-of-type(1) {
    width: 30%;
  }

  ._newspage.singlepage .postTn,
  ._eventreport .postTn {
    width: 100%;
    height: 52.63vw;
    max-height: 42.857vw;
    background: #efefef;
  }

  ._newspage.singlepage .postTn img,
  ._eventreport .postTn img {
    height: 100%;
  }

  ._newspage.singlepage .wp-block-image img,
  ._eventreport .wp-block-image img {
    max-width: 100%;
    height: auto;
  }

  ._newspage.singlepage .mainLink,
  ._eventreport .mainLink {
    display: inline-block;
    width: 100%;
    padding: 1.143vw 5.143vw 0.714vw 0;
    position: relative;
    text-align: right;
    font-weight: 900;
    color: #000;
    text-decoration: none;
  }

  ._newspage.singlepage #main .contents a,
  ._eventreport #main .contents a {
    color: #0080bc;
  }

  ._newspage.singlepage .mainLink.relateevent {
    border-bottom: solid 1px #000;
  }

  ._newspage.singlepage .mainLink:after,
  ._eventreport .mainLink:after {
    display: inline-block;
    content: "";
    width: 1.071vw;
    height: 1.071vw;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: relative;
    right: 0;
    top: 0.143vw;
    transition: 0.5s all;
  }

  ._newspage.singlepage .mainLink:hover:after,
  ._eventreport .mainLink:hover:after {
    right: -0.357vw;
    border-top: solid 4px #000;
    border-right: solid 4px #000;
    transition: 0.5s all;
  }

  ._newspage.singlepage #main .detail .row > .col:nth-of-type(1),
  ._eventreport #main .detail .row > .col:nth-of-type(1) {
    width: 100%;
  }
  ._newspage.singlepage #main .detail .row > .col:nth-of-type(2),
  ._eventreport #main .detail .row > .col:nth-of-type(2) {
    width: 46.857vw;
  }
  ._newspage.singlepage #main .detail .pic,
  ._eventreport #main .detail .pic {
    max-width: 17.143vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  ._newspage.singlepage #main .detail .catchcopy,
  ._eventreport #main .detail .catchcopy {
    font-size: 1.143vw;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.429vw;
  }

  ._newspage.singlepage #main .detail .contents p,
  ._eventreport #main .detail .contents p {
    margin-bottom: 1.429vw;
  }

  ._newspage.singlepage #main .detail .contents p:last-of-type,
  ._eventreport #main .detail .contents p:last-of-type {
    margin-bottom: 0;
  }
  ._newspage.singlepage #main .thumbnails,
  ._eventreport #main .thumbnails {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  ._newspage.singlepage #main .thumbnails > .thumb,
  ._eventreport #main .thumbnails > .thumb {
    width: -webkit-calc((100% - 20px) / 3);
    width: calc((100% - 1.429vw) / 3);
    margin-right: 0.714vw;
    margin-top: 1.429vw;
  }

  ._newspage.singlepage #main .thumbnails > .thumb:nth-of-type(3n),
  ._eventreport #main .thumbnails > .thumb:nth-of-type(3n) {
    margin-right: 0;
  }

  body .is-layout-flex > *.wp-block-button {
    margin: 20px auto;
  }

  /***********************************************************************
 *
 *           Movies
 * 
 ***********************************************************************/

  .mmovie .posts {
    width: 100%;
    max-width: 87.143vw;
    margin: 0 auto;
  }

  .mmovie .posts .post {
    width: 26.786vw;
    float: left;
    position: relative;
    margin-bottom: 2.857vw;
    transition: 0.5s all;
  }

  .mmovie .posts .post:hover {
    opacity: 0.6;
  }

  .mmovie .post .news_title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.714vw;
    width: 93%;
    background: rgba(55, 55, 55, 0.8);
    text-align: left;
    margin: auto;
    padding: 0.714vw 1.429vw;
  }

  .mmovie .post .news_title a {
    font-size: 1vw;
    font-weight: 600;
    color: #fff;
  }
  .mmovie .post span.dates {
    text-align: left;
    color: #fff;
  }

  .mmovie .post span.dates:after {
    content: none;
  }
}
/**** maxwidth 1200px ***/

@media screen and (max-width: 900px) {
  html,
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  address,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  table,
  th,
  td,
  div,
  span,
  form,
  label,
  input,
  textarea,
  select,
  option,
  button {
    font-size: 1.6vw;
  }

  /***********************************************************************
 *
 *           header - 900
 * 
 ***********************************************************************/

  #menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(1vw) rotate(-45deg);
    transform: translateY(1vw) rotate(-45deg);
  }
  #menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  #menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-1.333vw) rotate(45deg);
    transform: translateY(-0.18vw) rotate(45deg);
  }

  .__fixed #global {
    width: 80%;
  }

  /***********************************************************************
 *
 *           TOP - 900
 * 
 ***********************************************************************/

  .toppage .secondBlk .sectionfull,
  .toppage .secondBlk p {
    max-width: 56vw;
  }

  .toppage #thirdBlk h4 {
    font-size: 1.8vw;
  }
  .features.fourthBlk .txtblk p {
    font-size: 1.2vw;
  }
  .toppage .news_title a,
  .toppage .dates,
  ._newspage .news_title a,
  ._newspage .dates {
    font-size: 1.2vw;
  }
  .toppage .dates,
  ._newspage .dates {
    font-size: 1.8vw;
  }
  /***********************************************************************
 *
 *           2nd common - 900
 * 
 ***********************************************************************/
  .page2nd .pageHeader p,
  .page3rd .pageHeader p,
  ._teachers .pageHeader p {
    font-size: min(1.4vw, 16px);
  }
  .page2nd .pagecontents p,
  ._teachers .pagecontents p {
    font-size: 1.3vw;
  }

  a.contentsscroller span {
    letter-spacing: -0.02em;
    font-size: 1.4vw;
  }
  .page2nd .pagecontents .sectionfull.narrow p {
    font-size: 1.4vw;
  }
  .section23rd img {
    max-width: 56.43vw;
    width: 100%;
  }
  /***********************************************************************
 *
 *           about - 900
 * 
 ***********************************************************************/

  ._about #fifthBlk .grades div {
    padding: 0 0 2em 1vw;
    font-size: 1.4vw;
  }

  .sectionQrtr div {
    max-width: 25vw;
    width: 30vw;
  }

  ._about .sectionQrtr div:nth-of-type(4),
  .sectionQrtr div:nth-of-type(5),
  .sectionQrtr div:nth-of-type(6) {
    margin-bottom: 0;
  }
  /***********************************************************************
 *
 *           meidesei - 900
 * 
 ***********************************************************************/
  ._meidesei #sixthBlk ul h5.caption span {
    font-size: 1.2vw;
  }

  /***********************************************************************
 *
 *           curriculum - 900
 * 
 ***********************************************************************/
  .subjectBtn li a {
    font-size: 1.4vw;
  }
  ._curriculum #fourthBlk ul h5.caption a {
    font-size: 1.2vw;
  }

  ._curriculum a.contentsscroller span {
    letter-spacing: -0.02em;
    font-size: 1.2vw;
  }

  ._curriculum a.contentsscroller.more:after {
    width: 1.5vw;
    height: 1.5vw;
    bottom: calc(60%);
    right: calc(14%);
  }

  .graduate_workswrapper .headInner {
    margin-top: 0;
  }

  ._graduate_works .section23rd p:last-of-type {
    font-size: 1.3vw;
  }

  /***********************************************************************
 *
 *           project - 900
 * 
 ***********************************************************************/
  ._project .pagecontents section .sectionhalf h4 {
    font-size: 1.6vw;
  }
  ._project .pagecontents section .sectionhalf h5 {
    font-size: 1.4vw;
  }

  /***********************************************************************
 *
 *           teachers - 900
 * 
 ***********************************************************************/
  ._teachers .pagecontents h3 {
    font-size: min(1.5vw, 20px);
    margin-bottom: 2vw;
  }
  ._teachers .Btn_teachers li a {
    font-size: 1.2vw;
  }
  ._teachers .sectionhalf .worktxtBlock.end table td,
  ._teachers figcaption {
    font-size: 1vw;
  }

  /***********************************************************************
 *
 *           recruit - 900
 * 
 ***********************************************************************/
  ._recruit #thirdBlk .imgs figcaption {
    font-size: 1vw;
  }
  ._recruit #fourthBlk ul h5.caption span {
    width: 95%;
    font-size: 1.2vw;
  }

  ._recruit #fourthBlk ul h5.caption {
    padding: 0.357vw 0.5vw;
    height: 5vw;
  }

  .graduate_workswrapper .article h3,
  .interviewwrapper .article h3 {
    font-size: 1.6vw;
  }
  .graduate_workswrapper .article .col,
  .interviewwrapper .article .col {
    font-size: 1.4vw;
    line-height: 2;
  }

  /***********************************************************************
 *
 *           _exam - 900
 * 
 ***********************************************************************/

  ._exam #fifthBlk .chart03 .inner div {
    height: 15.71vw;
    font-size: 1.2vw;
  }
  ._exam #sixthBlk .glayBk span {
    font-size: 1vw;
  }
  /***********************************************************************
 *
 *           footer - 900
 * 
 ***********************************************************************/

  footer p,
  footer a {
    font-size: 1.2vw;
  }

  .logo img {
    width: calc(10vw * 1.2);
    height: calc(2.143vw * 1.2);
  }

  footer nav#global {
    max-width: 70vw;
  }
  nav#global li {
    margin-bottom: 1.5em;
  }
  nav#global li a {
    font-size: 1.6vw;
    padding: 0.214vw;
    min-width: 12.857vw;
    border-radius: 0.357vw;
  }
  .__fixed #global li li a {
    font-size: 1.5vw;
    line-height: 1.8;
  }
}
/***** max-width 900 ***/