@charset "UTF-8";
/* CSS Document */

.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;
	}
}
.section-events {
  padding: 60px 24px 60px;
}
.section-events h2 {
	font-weight: 400;
	margin-bottom: 80px;
	font-size: 6.0rem;
	color: #c6bda9;
	text-align: left;
}
.section-events__list-wrapper {
  padding-bottom: 40px;
  list-style: none;
  text-align: left;
}
.section-events__list-date {
  height: 162px;
  background-color: #eeeeee;
}
.section-events__list-date-small {
  display:block;
  background-color: #eeeeee;
  max-width: 1040px;
}
.section-events__list-datail-wrapper {
  display: block;
  padding: 40px 24px 40px;
  font-weight: 600;
  max-width: 1040px;
}
.section-events__list-datail-wrapper time {
  display: block;
  padding-bottom: 10px;
  font-size: 2.0rem;
}
.section-events__list-datail-wrapper p {
	font-size: 2.0rem;
}
.section-events__list-datail-wrapper-time {
  padding: 40px 24px 40px;
  font-weight: 600;
}
.section-events__list-datail-wrapper-time p {
  padding-top: 10px;
  font-size: 2.0rem;
}
.section-events__list-datail-wrapper-time time {
	font-size: 2.0rem;
	
}
.section-events__list-datail p {
  font-size: 1.8rem;
}
.section-events__detail-wrapper {
  padding: 30px 24px 0px;
    display: block;
  max-width: 1040px;
}
.section-events__list hr {
  margin: 0 auto 20px;
}
/*==================================================
ふわっ
===================================*/


/* 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-events {
		max-width: 1040px;
		margin: 80px auto 200px;
		padding: 0;
	}
	.section-events h2 {
	font-weight: 400;
	margin-bottom: 100px;
	font-size: 8.0rem;
}
	.section-events__list-wrapper {
	display: flex;
    padding : 40px 40px;
    list-style: none;
}
	.section-events__list-date {
  height: 243px;
  width: 420px;
}
	.section-events__list-date-small {
  height: 218px;
  width:420px;
  background-color: #eeeeee;
}
	.section-events__list-datail-wrapper {
  display: block;
  padding: 80px 45px;
  font-weight: 600;
}
	.section-events__detail-wrapper {
    padding:0 0 0 95px;
	width: 520px;
}
	.section-events__list-datail-wrapper-time {
  padding: 80px 45px;
}
	.section-events__list hr {
    margin: 0;
}
/*==================================================
ふわっ
===================================*/


/* 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;
}
}
.page {
	margin: 0 auto 80px;
	max-width: 1040px;
	display: flex;
	justify-content: center;
	
}
.page a {
	text-decoration: none;
}
.page_wrapper6 {
	background-color: #cbc7c1;
}
.page_wrapper1_2 div{
	color:#333333;
	padding: 20px;
}
.page_wrapper1_1 div{
	color:#333333;
	padding: 20px;
}
.page_wrapper1 div{
	color:#333333;
	padding: 20px;
}
.page_wrapper2 div{
        color:#333333;
	padding: 20px;
}
.page_wrapper3 div{
        color:#333333;
	padding: 20px;
}
.page_wrapper4 div{
        color:#333333;
	padding: 20px;
}
.page_wrapper5 div{
　　　　color:#333333;
	padding: 20px;
}
.page_wrapper6 div{
　　　　color:#333333;
	padding: 20px;
}
.page_wrapper7 div{
　　　　color:#333333;
	padding: 20px;
}
.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;
	}
}