@charset "utf-8";
/* CSS Document */

/* header */
.header {
  height: 113px;
  width: 100%;
  background-color: #FFFFFF;
}
.header h1 {
  color: #333333;
  text-align: left;
  font-weight: 500;
  padding: 30px 24px;
  font-size: 2.7rem;
  line-height: 30px;
}
.header_link {
  text-decoration: none;
}
.pc_hid{
  display: block;
}
#g-nav {
  display: block;
}
.g-nav-list ul{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
.g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
}

#g-nav.panelactive .g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
}

/*背景が出現後にナビゲーションを表示*/
#g-nav ul {
	position: relative;
    opacity:1;
}
#has-child ul {
	padding:0;
	height:168px;
}
#has-child .has-child__lessons{
	display: none;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav ul li a{
	color: #333;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: none;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
@media(min-width: 1040px) {
 .header {
  width: 100%;
  height: 100px;
  }
.header_content_wrapper {
	background-color: #ffffff;
	width: 1040px;
	height: 100px;
    margin: 0 auto;
    position: relative;
} 
	.header h1 {
	position: absolute;
    width: auto;
    top: 45px;
    left: 20px;
	padding: 0;
	}
.header_link {
  text-decoration: none;
  height: 30px;
  width: 457.760px;
}
	#g-nav {
	display: block;
	text-align: right;
	}
	.g-nav-list {
		position:static;
		display: block;
		max-width: 1040px;
		margin: 0 auto;
		height: 100px;
		padding:0px;
	}
	#g-nav ul {
		justify-content: flex-end;
		max-width: 1040px;
		padding: 0;
		height: 100px;
	}
	.g-nav-list ::-webkit-scrollbar{
	display: none;
}
	#g-nav ul li {
		display:inline-block;
		height: 100px;
	}
	#g-nav ul li a {
	display: block;
    padding: 50px 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
	color: #333333;
	text-transform: none;
    letter-spacing: 0px;
    font-weight: none;
	}
	#has-child .has-child__lessons {
		display: block;
	}
	.pc_hid{
		display: none;
}
.openbtn {
	display: none;
	}
#has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:700px;
	top:70px;
	z-index: 1000;
    /*形状を指定*/
	background:#fff;
	height:90px;
	width: 140px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
	flex-direction:column;
}
#has-child ul li {
	background: rgba(255,255,255,0.94);
	height: 45px;
	
	}
#has-child ul li a {
	text-align: center;
	display: block;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.2rem;
	color: #333333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	}
/*hoverしたら表示*/
#has-child:hover > ul,
#has-child ul li:hover > ul,
#has-child:active > ul,
#has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
#has-child ul li a{
	color: #333333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

#has-child ul li:last-child a{
	border-bottom:none;
}

#has-child ul li a:hover,
#has-child ul li a:active{
	background:#dee2e8;
}
.g-nav ul {
	opacity: 1;
    z-index: 999;
	display: flex;
    justify-content: flex-end;
	max-width: 1040px;
	}
}
.main {
	    overflow:hidden;
}
.section-top {
	margin: 0 auto;
}
.section-top h2 {
	margin: 60px 0 80px 24px;
	font-size: 6.0rem;
	line-height: 48px;
	color: #c6bda9;
	text-align: left;
}
.section-top__heading {
	float: left;
}
.line-vertical {
  float: left;
  display: inline-block;
  margin: 0 27px 0 24px;
  width: 1px;
  height: 186px;
  background-color: #333333;
}
.section-top p {
	font-size: 1.8rem;
	line-height: 36px;
	text-align: left;
}
.section-top img {
	display: block;
	max-width: 323px;
	width: 50%;
	height: auto;
	object-fit: cover;
	object-position: 0 0;
	margin: 60px 24px 0 auto;
}
@media(min-width: 1040px) {
	.section-top {
		width: 1040px;
		margin: 0 auto;
	}
	.section-top h2 br {
		display: none;
	}
	.section-top h2 {
	font-size: 8.0rem;
	margin: 80px auto 100px;
	}
	.section-top div {
		display: flex;
	}
	.line-vertical {
     margin: 0 70px 0 0px;
     height: 331px;
}
	.section-top p {
	display: block;
	width: 520px;
	font-size: 3.0rem;
	line-height: 53px;
	text-align: left;
}
	.section-top img {
	width: 376px;
	margin-top: 0;
	margin-left: auto;
}
}
.section-category {
	margin: 80px auto 40px;
}
.section-category h2 {
	color: #73716d;
	text-align: left;
	margin-left: 24px;
	font-size: 2.4rem;
}
.section-category ul li {
	list-style: none;
	margin: 40px 0 20px 0;
}
.section-category ul li a {
    position: relative;
	width: 161px;
	height: 49px;
	border: solid 1px #73716d;
	display: inline-block;
        color: #333333;
}
.section-category ul li a:hover {
	text-decoration: none;
	color: #333333;
}
.section-category ul li a:visited {
	text-decoration: none;
	color: #333333;
}
.section-category ul li a div{
    color: #333333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.section-category img {
	width:375px;
	height:283px;
	object-fit: cover;
	object-position: 0 0;
}
#area-1 {
       color: #333333;
        }
#area-2 {
       color: #333333;
        }
#area-3 {
       color: #333333;
        }
#area-4 {
       color: #333333;
        }

@media(min-width: 1040px) {
	.section-category {
	max-width: 1040px;
	margin: 100px auto 40px;
}
	.section-category h2 {
	margin-left: 0px;
	font-size: 3.6rem;
}
	.section-category ul li {
	margin: 40px 0 80px 0;
}
	.section-category ul li a {
	width: 253px;
	height: 75px;
}
	.section-category ul li a div{
	font-size: 3.0rem;
	font-weight: 400;
	letter-spacing: 0.1em;
}
	.section-category img {
	float: right;
}
}
.section-menu ul {
  margin: 0 auto;
}
.section-menu ul li {
  display: inline-block;
}
.section-menu h2 {
	text-align: left;
	color: #d2cec5;
	font-size: 6.0rem;
	margin: 0 0 20px 24px;
}
.menu-hr {
	width: 47px;
	height: 1px;
	color: #d2cec5;
	margin-left: 24px;
}
.section-menu h3 {
	font-size: 2.0rem;
	text-align: left;
	line-height: 30px;
	margin: 0 24px 40px;
}
.section-menu h3 span br {
	display: none;
}
.specialty-lesson {
    position: relative;
	padding: 40px 30px;
	border: solid 1px #c6bda9;
	display: inline-block;
	margin: 0 24px 40px;
	max-width: 1040px;
}
.specialty-lesson h4 {
	font-size: 3.0rem;
	color: #73716d;
	float: left;
	margin-bottom: 20px;
}
.examination-lesson {
    position: relative;
	padding: 40px 30px;
	border: solid 1px #c6bda9;
	display: inline-block;
	margin: 0 24px 40px;
	max-width: 759px;
}
.examination-lesson h4 {
  font-size: 2.6rem;
  color: #73716d;
	float: left;
	margin-bottom: 20px;
}
.english-lesson {
    position: relative;
	padding: 40px 30px;
	border: solid 1px #c6bda9;
	display: inline-block;
	margin: 0 24px 40px;
    max-width: 759px;
}
.english-lesson h4 {
  font-size: 2.6rem;
  color: #73716d;
	float: left;
	margin-bottom: 20px;
}
.english-lesson p br {
  display: none;
}
.section-menu ul li span {
	color: #73716d;
	font-size: 4.8rem;
	float: right;
}
.section-menu ul li div {
	clear:both;
}
.section-menu ul li h4 span {
	font-size: 2.6rem;
}
.recommend {
	text-align: left;
	font-size: 1.4rem;
	margin-bottom: 20px;
}
.menu-hr {
	clear: both;
	display: block;
    height: 1px;
    border-top: 1px solid #d2cec5;
    margin: 20px 0 20px 24px;
}
.section-menu ul li hr {
  clear: both;
}
.section-menu ul li p {
	clear: both;
	font-size: 1.4rem;
	line-height: 36px;
	text-align: left;
}
.section-menu__mobile {
	display: inline-block;
	height: auto;
	max-width: 90%;
	object-fit: cover;
	object-position: 0 0;
	margin: 80px 24px 80px;
}
.section-menu__PC {
  display: none;
}
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
transform: translateY(100px);
  }

  to {
    opacity: 1;
transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}
@media(min-width: 1040px) {
	.section-menu {
		max-width: 1040px;
		margin: 0 auto;
	}
	.section-menu h2 {
	font-size: 7.2rem;
	letter-spacing: 0.025em;
	margin: 0 auto 60px 0;
	padding-top: 20px;
}
	.menu-hr {
	clear: none;
	display: block;
    height: 1px;
    border-top: 1px solid #d2cec5;
    margin: 0 0 60px 0;
}
	.section-menu h3 span br {
	display: block;
}
	.section-menu h3 {
	margin: 0 0 70px 0;
}
  .section-menu ul {
    width: 1040px;
    margin: 100px auto 100px;
  }
	.section-menu ul li {
		display: list-item;
		list-style: none;
		margin: 0 0 80px 0;
	}
	.specialty-lesson {
	padding: 35px 38px;
	width: 1040px;
	height: 300px;
	margin-bottom: 80px;
}
  .examination-lesson {
	padding: 35px 38px;
	min-width: 1040px;
	height: 264px;
	margin-bottom: 80px;
}
  .english-lesson {
  padding: 35px 38px;
	min-width: 1040px;
	height: 264px;
	margin-bottom: 80px;
  }
  .english-lesson p br {
    display: block;
  }
	.section-menu ul li h4 {
	font-size: 3.6rem;
    padding-top :20px;
	margin-bottom: 40px;
}
  .section-menu ul li hr {
    clear: both;
    margin :0 0 20px 0;
  }
  .section-menu ul li span {
  padding-top: 20px;
	font-size: 7.2rem;
  margin-bottom: 40px;
}
  .section-menu ul li h4 span {
	font-size: 3.6rem;
}
  .section-menu ul li p {
	font-size: 1.8rem;
}
  .recommend {
	font-size: 1.8rem;
}
  .section-menu__mobile {
	display: none;
}
.section-menu__PC {
  display: inline-block;
  height: 503px;
  width: 377px;
  object-fit: cover;
  object-position: 0 0;
  margin-bottom: 80px;
  float: left;
}
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
transform: translateY(100px);
  }

  to {
    opacity: 1;
transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}
}
.section-student h2 {
	position: relative;
	z-index: 10;
	color: #d2cec5;
	text-align: left;
	margin: 0 auto 0 24px;
	font-size: 4.8rem;
	width: 327px;
}
.section-student__content {
	max-width: 1040px;
	width: 90%;
	background: #eeeeee;
	display: inline-block;
	margin: 0 24px 60px;
	z-index: 5;
	padding: 10px;
}
.section-student__content-border {
    max-width: 1020px;
	width: 100%;
    border: solid 2px #ffffff;
    display: inline-block;
	padding: 15px 10px;
}
.section-student h3 {
	font-size: 2.4rem;
	line-height: 30px;
	text-align: left;
	padding-bottom: 15px;
	margin-bottom: 40px;
	border-bottom: 1px solid #333333;
}
.section-student__content p {
	font-size: 1.6rem;
	line-height: 30px;
	text-align: left;
}
.section-student__content hr {
	display: block;
    height: 1px;
    border-top: 1px solid #d2cec5;
    margin: 10px 0;
}
.section-student__content div {
	text-align: left;
	padding-left: 10px;
}
@media(min-width: 1040px) {
  .section-student {
    width: 600px;
    display: inline-block;
    margin: 0 auto 180px 0;
  }
  .section-student h2 {
	font-size: 7.2rem;
	margin: 0 auto 0 0;
}
  .section-student h3 {
	padding-bottom: 20px;
}
  .section-student__content {
	width: 586px;
	height: 389px;
	margin: 0px;
	display: inline-block;
}
  .section-student__content p {
	font-size: 1.8rem;
}
.section-student__content-border {
    width: 571px;
    height: 373px;
    padding: 25px 25px;
} 
  .section-student__br {
    display: none;
  }
  .section-student__br__2 {
    display: block;
  }
  .section-student br {
    display: none;
  }
  .section-student span br {
    display: block;
  }
  .section-student__content hr {
    display: block;
    height: 1px;
    border-top: 1px solid #d2cec5;
    margin: 15px 0;
}
  .section-student__content div {
  display: inline-block;
	font-size: 1.8rem;
  padding-left: 18px;
}
}
.section-place h2 {
	position: relative;
	z-index: 10;
	color: #d2cec5;
	text-align: left;
	margin: 0 auto 0 24px;
	font-size: 4.8rem;
  width: 328px;
}
.section-place__content {
	max-width: 1040px;
    width: 90%;
	background: #eeeeee;
    display: inline-block;
    margin: 0 24px 60px;
    z-index: 5;
    padding: 10px;
}
.section-place__content-border {
	max-width: 1020px;
    width: 100%;
    border: solid 2px #ffffff;
    display: inline-block;
    padding: 20px;
}
.section-place__content-border br {
  display: none;
}
.section-place__content-border span br {
  display: block;
}
.section-place h3 {
	font-size: 2.7rem;
	text-align: left;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #333333;
}
.section-place__content p {
	font-size: 1.5rem;
	line-height: 30px;
	text-align: left;
}
.section-place__mobile{
  display: inline-block;
  clear: both;
	display: inline-block;
    height: auto;
    max-width: 90%;
    object-fit: cover;
    object-position: 0 0;
    margin: 80px 24px 80px;
}
.section-place__PC {
  display: none;
}
@media(min-width: 1040px) {
  .section-place {
    margin: 0 auto 100px;
    max-width: 1040px;
    display: flex;
    justify-content:space-around;
  }
  .section-place h2 {
	font-size: 7.2rem;
  width: 328px;
  margin-left: 10px;
}
  .section-place__content {
	width: 456px;
	height: 255px;
}
.section-place__content-border {
    width: 431px;
    height: 237px;
	padding: 10px;
}
  .section-place h3 {
	font-size: 3.0rem;
	padding: 10px 0 15px 0;
	margin-bottom: 40px;
}
  .section-place__content p {
	font-size: 1.8rem;
}
  .section-place__mobile {
    display: none;
  }
  .section-place__PC {
    display: block;
  }
  
}
.section-voice {
  margin: 0 auto;
}
.section-voice h2 {
	color: #d2cec5;
	text-align: left;
	margin-left: 24px;
	font-size: 4.8rem;
}
.section-voice h3 {
	font-size: 2.4rem;
	text-align: left;
	padding: 10px 0;
	margin: 0 24px 40px 24px;
	border-bottom: 1px solid #333333;
}
.section-voice ul {
  margin: 0 auto;
  width: 398px;
}
.section-voice ul li {
	display: inline-block;
	position: relative;
	z-index: 10;
    padding: 30px 25px;
    width: 279px;
    height: 350px;
    border: solid 1px #c6bda9;
	background-color: #ffffff;
    margin-bottom: 60px;
}
.square1 {
  display: inline-block;
  position: absolute;
	width: 279px;
	height: 330px;
  right: 20px;
  left: 50px;
	background-color: #eeeeee;
	z-index: 3;
	margin: 40px auto 0 auto;
}
.section-voice__2 {
	font-size: 1.6rem;
}
.section-voice ul li p {
	font-size: 1.8rem;
	text-align: center;
	line-height: 24px;
}
.section-voice ul li p span{
	font-size: 1.6rem;
	text-align: center;
	line-height: 24px;
}

.section-voice hr {
    display: block;
    height: 1px;
    margin: 30px 0 20px 0;
	border-top: 1px solid #d2cec5;
}
.section-voice ul li div {
	font-size: 12px;
	line-height: 24px;
	text-align: center;
}
  @media(min-width: 1040px) {
    .section-voice {
      max-width: 1040px;
      margin: 0 auto 80px;
    }
    .section-voice h2 {
     margin: 0 0 20px 0;
     font-size: 7.2rem;
     letter-spacing: 0.025em;
}
    .section-voice h3 {
     font-size: 3.0rem;
     padding-bottom: 30px;
     margin: 0 0 30px 0;
}
    .section-voice ul {
     width: 1040px;
}
    .section-voice ul li {
    padding: 40px;
    width: 720px;
    height: 322px;
}
    .section-voice ul li p {
	font-size: 3.0rem;
	line-height: 48px;
}
    .section-voice ul li div {
	font-size: 1.8rem;
	line-height: 30px;
}
    .section-voice ul li p span br {
      display: none;
    }
    .section-voice ul li div span br {
      display: none;
    }
    .square1 {
      width: 684px;
      height: 298px;
      left: 120px;
    }
  }
.section-faq h2 {
	color: #d2cec5;
	text-align: left;
	margin-left: 24px;
	font-size: 4.8rem;
}
.section-faq h3 {
	font-size: 2.4rem;
	text-align: left;
	padding: 10px 0;
	margin: 0 24px 40px 24px;
	border-bottom: 1px solid #333333;
}
.section-faq ul {
    margin: 0 24px;
}
.section-faq ul li {
    max-width: 720px;
    background-color: #cbc7c1;
    margin: 0 auto 40px;
    list-style: none;
    padding: 0 25px 24px;
}
.section-faq ul li p {
	padding: 20px 0 15px 0;
    font-size: 1.4rem;
    text-align: left;
}
.section-faq__square {
	padding: 24px 25px;
    background-color: #fafafa;
    margin: 0 auto;
}
.section-faq__square div {
	font-size: 1.4rem;
    text-align: left;
    line-height: 18px;
}
@media(min-width: 1040px) {
  .section-faq {
    max-width: 1040px;
    margin: 0 auto 80px;
  }
  .section-faq h2 {
	margin-left: 0px;
	font-size: 7.2rem;
}
  .section-faq h3 {
	font-size: 3.0rem;
	padding: 30px 0;
	margin: 0 0 80px 0;
}
  .section-faq ul li {
	width: 720px;
	height: 362px;
	margin: 0 auto 40px;
}
  .section-faq__square {
	padding: 55px 60px;
	width: 620px;
	height: 233px;
}
  .section-faq ul li p {
	padding: 25px 0 20px 50px;
	font-size: 2.4rem;
}
  .section-faq__square div {
	font-size: 1.8rem;
	line-height: 30px;
}
}
/*contact*/
.section_contact {
	margin-bottom: 80px;
}
.contact_wrapper {
	position: relative;
	width: 100%;
}
.contact_wrapper p {
    display: block;
    padding-bottom: 20px;
}
.contact_wrapper {
  padding: 60px 0 60px;
  width: 100%;
  height: 262px;
  background: #eeeeee;
}
.contact_button_square {
  position: relative;
  margin: auto;
  width: 165px;
  height: 48px;
  background: #73716d;
}
.section_contact a {
  text-decoration: none;
  color: #fff;
}
.section_contact a:visited {
  text-decoration: none;
  color: #fff;
}
.contact_button_heading {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
@media(min-width: 1040px) {
  .section_contact {
    max-width: 1040px;
    margin: 0 auto 200px;
  }
  .contact_wrapper {
    position: relative;
    padding: 80px 150px;
    height: 300px;
  }
  .contact_wrapper p {
    display: block;
    text-align: left;
    font-size: 2.4rem;
    line-height: 48px;
    float: left;
    padding: 0px;
}
  .contact_button_square {
    position: absolute;
    top: 45%;
    left: 69%;
}
}

.footer {
	margin-bottom: 30px;
}
.footer_sns_links ul li {
	margin: 0 auto;
	display: inline-block;
	margin-right: 10px;
}
.footer_sns_links ul li img {
	height: 20px;
	width: 20px;
}
.footer_sns_links ul li:nth-child(3) {
	margin-right: 0px;
}
@media(min-width: 1040px) {
  .footer {
	margin-bottom: 60px;
}
}