@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

html {
	font-size: 62.5%;
	color: #000000;
}
body {
  font-family: "Shippori Mincho", serif;
	font-size: 1.4rem;
	line-height: 1.8;
  overflow: scroll;
}
body * {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
body.is-locked {
  overflow: hidden;
}
main {
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
  border-top: 2px solid #231815;
}
body img {
	width: 100%;
  vertical-align: bottom;
}

a {
	transition: all 0.3s ease;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}


/*------------------------------------------------------------------------

header

------------------------------------------------------------------------*/
header {
  display: flex;
  align-items: center;
  height: 40px;
  background-color: #fff;
  padding: 0 0 0 10px;
}
header .logo_ku {
  width: 100px;
}
@media screen and (min-width: 768px) {
  header {
    height: 100px;
    padding: 0 0 0 20px;
  }
  header .logo_ku {
    width: 180px;
  }
}


/*------------------------------------------------------------------------

kv

------------------------------------------------------------------------*/
.news {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px;
}
.manabinavi {
  max-width: 288px;
  margin: 20px auto;
}
.theme {
  background-color: #EEECE2;
}
.theme_ttl {
  font-size: 1.7rem;
  text-align: center;
  color: #fff;
  background-image: url("../img/theme_bg_sp.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 8px 10px;
}
.theme_card {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  padding: 20px 2% 30px;
}
.theme_card li {
  flex-basis: 49%;
  max-width: 49%;
  height: 210px;
  text-align: center;
  border-radius: 20px;
  margin: 12px 0 0 0;
}
.theme_card li a {
  display: block;
  height: 100%;
  padding: 20px 0 0;
}
.theme_card li p {
  font-size: 1.1rem;
  margin: 0 0 12px;
  padding: 0 0 7px;
  position: relative;
}
.theme_card li p:after {
  content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 20px;
	height: 0.5px;
  background-color: #000;
}
.theme_card li h3 {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 2.1rem;
  color: #fff;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
  padding: 0 0 10%;
}
.card_bks {
  background-image: url("../img/bks_bg.png");
  background-position: 0 50%;
}
@media screen and (min-width: 768px) {
  .kv {
    height: 680px;
    background-image: url("../img/kv_pc.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .kv_wrap {
    max-width: 1000px;
    margin: 0 auto;
  }
  .news {
    font-size: 2.4rem;
    text-align: left;
    line-height: 1;
    padding: 146px 0 65px 0;
  }
  .news span {
    background-color: #fff;
    padding: 0 14px 3px;
  }
  .manabinavi {
    max-width: 512px;
    margin: 0;
  }
  .theme_ttl {
    font-size: 3.8rem;
    text-align: center;
    color: #fff;
    background-image: url("../img/theme_bg_sp.png");
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto 100%;
    padding: 8px 10px;
  }
  .theme_card {
    max-width: 1200px;
    gap: 2.666%;
    margin: 0 auto;
    padding: 20px 2% 30px;
  }
  .theme_card li {
    flex-basis: 23%;
    max-width: 23%;
    height: 310px;
    margin: 30px 0 0 0;
  }
  .theme_card li a {
    padding: 26px 10px 0;
  }
  .theme_card li p {
    font-size: 1.5rem;
    margin: 0 0 12px;
    padding: 0 0 10px;
    position: relative;
  }
  .theme_card li p:after {
    width: 32px;
    height: 0.5px;
  }
  .theme_card li h3 {
    font-size: 3.0rem;
    line-height: 1.5;
    height: 76%;
    padding: 0;
  }
}


@media screen and (min-width: 1920px) {
  .kv {
    background-image: url("../img/kv_pc.png");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}




/*------------------------------------------------------------------------

MODAL

------------------------------------------------------------------------*/
.wrapper_md.is-locked {
	position: fixed;
	width: 100%;
}
.modal {
	visibility: hidden;
	overflow-y: scroll;
	opacity: 0;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2vh 0;
	transition: opacity 0.3s, visibility 0s 0.3s;
	background: rgba(255, 255, 255, 0.9);
}
.modal.is-active {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s, visibility 0s 0s;
}
.modal_container {
	display: flex;
	min-height: 100%;
	justify-content: center;
	align-items: center;
}
.modal_container _:-ms-lang(x)::-ms-backdrop, 
.modal_container {
	min-height: 100vh;
}
.modal_container::after {
	content: "";
	min-height: inherit;
	font-size: 0;
}
.modal_inner {
	width: 94vw;
	background-color: #EEECE2;
  background-image: url("../img/modal_head_bks_sp.png") , url("../img/modal_foot_bks_sp.png");
  background-position: 0 0 , 0 100%;
  background-repeat: no-repeat;
  background-size: 100% auto , 100% auto;
	border-radius: 20px;
	padding: 10px 30px 100px;
	display: none;
}
.is-active .modal_inner {
	display: block;
}
.modal_ttl {
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.5;
}
.modal_img-main {
  margin: 20px 0 16px;
}
.modal_img-main p {
  font-size: 1.3rem;
  text-align: right;
  padding: 5px 0 0 0;
}
.modal_box {
  background-color: #fff;
  margin: 30px 0 0 0;
  padding: 0 0 20px;
}
.recommend_subject {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background-image: url("../img/bks_bg.png");
  background-position: 0 50%;
  padding: 2px 10px;
}
.recommend_ttl {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 2px solid #9EAF74;
  margin: 0 0 20px;
  padding: 10px;
}
.modal_box p {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
/*
	.wrapper_md.is-locked {
		position: static;
	}
*/
  .modal_inner {
    width: 94%;
    max-width: 840px;
    background-image: url("../img/modal_head_bks_pc.png") , url("../img/modal_foot_bks_pc.png");
    padding: 40px 0 150px;
  }
  .modal_ttl {
    font-size: 3.8rem;
    line-height: 1.5;
  }
  .modal_img-main {
    max-width: 84%;
    max-height: 478px;
    margin: 40px auto 30px;
  }
  .modal_img-main img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
  }
  .modal_img-main p {
   font-size: 1.5rem; 
  }
  .modal_img-main + p {
    font-size: 1.8rem;
    max-width: 84%;
    margin: 0 auto;
  }
  .modal_box {
    max-width: 600px;
    margin: 30px auto 0;
    padding: 0 0 20px;
  }
  .recommend_subject {
    font-size: 1.8rem;
    background-position: 0 50%;
    padding: 6px 10px;
  }
  .recommend_ttl {
    font-size: 2.8rem;
    margin: 0 0 20px;
    padding: 18px;
  }
  .modal_box p {
    padding-right: 40px;
    padding-left: 40px;
  }
}



a.modalCloseBtn {
  display: block;
  width: 44px;
  margin: 0 0 60px auto;
}
a.modalCloseBtn02 {
  display: block;
  text-align: center;
  margin: 26px 0 0 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (min-width: 768px) {
  a.modalCloseBtn {
    width: 70px;
    margin: 0 40px 80px auto;
  }
	a.modalCloseBtn {
    font-size: 1.6rem;
	}
}
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .modal_inner {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0); 
	} 
}





.professor_ttl {
  text-align: center;
  padding: 20px 0 0 0;
}
.professor_name {
  font-size: 2.0rem;
  text-align: center;
  height: 220px;
  position: relative;
}
.professor_name-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  transform: translate(-50%, -50%);
}
.professor_name-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}
.bks a.professor_link {
  display: block;
  text-align: center;
  width: 200px;
  border: 2px solid #9EAF74;
  margin: 0 auto 10px;
  padding: 2px 0;
  position: relative;
}
.bks a.professor_link::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: calc(50% - 1px);
	right: 12px;
	transform: rotate(45deg) translate(0, -50%);
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #9EAF74;
	border-right: 1.5px solid #9EAF74;
}
.bks a.professor_link:hover {
  color: #fff;
  background-color: #9EAF74;
}
.bks a.professor_link:hover::after {
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
}
.bks .profile {
  text-align: center;
  color: #fff;
  max-width: 140px;
  background-color: #9EAF74;
  border-radius: 100px;
  margin: 10px auto 16px;
}
@media screen and (min-width: 768px) {
  .professor_ttl {
    font-size: 2.0rem;
    padding: 30px 0 0 0;
  }
  .professor_container01 .professor_ttl {
    text-align: left;
    padding: 0;
  }
  .professor_container02 .professor_ttl {
    text-align: center;
    padding: 30px 0 0 0;
  }
  .professor_container01 .professor_wrap {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 0;
  }
  .professor_container02 .professor_wrap {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 10px;
  }
  .professor_name {
    font-size: 2.4rem;
    width: 220px;
    height: 220px;
  }
  .professor_name-img {
    width: 100%;
  }
  .modal_box p.professor_name-txt {
    height: 220px;
    padding: 0;
  }
  .bks a.professor_link {
    font-size: 1.6rem;
    width: 260px;
    margin: 0 auto;
    padding: 10px 0;
  }
  .bks a.professor_link::after {
    top: calc(50% - 2px);
    right: 20px;
    width: 10px;
    height: 10px;
  }
  .bks .professor_container01 a.professor_link {
    margin: -50px 0 20px 40px;
  }
  .bks .profile {
    text-align: center;
    color: #fff;
    max-width: 140px;
    background-color: #9EAF74;
    border-radius: 100px;
    margin: 10px auto 16px;
  }
  .profile_wrap {
    width: 50%;
  }
  .professor_container02 .profile {
    margin: 0 auto 15px;
  }
  .modal_box.professor_container02 .profile + p {
    padding: 0;
  }
}


/*---------------------------------------------------------

footer

---------------------------------------------------------*/
footer img {
  width: 100%;
}
.l-footer-bottom {
  background: #fff;
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 768px) {
  .l-footer-bottom {
    padding: 6.6666666667vw 0
  }
}
.l-footer-bottom .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 115px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .l-footer-bottom .l-inner {
    display: block;
    height: auto
  }
}

.l-footer-container {
  max-width: 50vw;
  display: flex;
  align-items: center;
}
.l-footer-logo {
  width: 180px;
}
.l-footer-fcsi {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #11ba7f;
  line-height: 1.2;
  width: 200px;
  border-right: 1px solid #11ba7f;
  border-left: 1px solid #11ba7f;
  margin: 0 0 0 60px;
  cursor: pointer;
}
.l-footer-fcsi a {
  display: block;
  padding: 8px 0 6px;
  position: relative;
}
.l-footer-fcsi a:hover {
  background-color: #11ba7f;
  color: #ffffff;
}
.l-footer-fcsi a:hover::after {
  background-color: #ffffff;
}
.l-footer-fcsi span {
 font-size: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer-container {
    max-width: 100vw;
    display: flex;
  	flex-direction: column-reverse;
  }
  .l-footer-logo {
    width: 32vw;
    margin: 0 auto
  }
  .l-footer-fcsi {
    font-size: 13px;
    width: 180px;
    margin: 0 0 30px;
  }
  .l-footer-fcsi span {
   font-size: 9px;
  }
}
.l-footer-copyright {
  font-size: 1.2rem;
  color: #94a0b4
}
@media screen and (max-width: 768px) {
  .l-footer-copyright {
    font-size: 2.4vw;
    margin-top: 4vw;
    display: block;
    text-align: center;
  }
}
