@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;
}
.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 {
	max-width: 323px;
	width: 50%;
	height: auto;
	object-fit: cover;
	object-position: 0 0;
	margin: 60px 24px 80px auto;
    display: block;
}
/*==================================================
ふわっ
===================================*/


/* 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-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 {
	font-size: 3.0rem;
	line-height: 53px;
	text-align: left;
}
	.section-top img {
	width: 376px;
  margin: 0 0 80px 72px;
}
/*==================================================
ふわっ
===================================*/


/* 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-category {
	margin: 0 24px;
}
.section-category h2 {
	color: #73716d;
	text-align: left;
	margin: 0 0 40px 24px;
	font-size: 24px;
}
.section-category ul li {
	margin-bottom: 40px;
	list-style: none;
}

.section-category ul li a {
	text-decoration: none;
	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__for {
	color:#73716d;
	text-align: left;
	font-size: 24px;
	margin: 0 0 20px 0;
}
.section-category ul li hr {
	margin: 0 24px;
	color: #73716d;
}
.section-category__number {
　　　　color: #333333;
	padding: 30px 0;
	display: inline-block;
	float: left;
	font-size: 4.8rem;
	margin-left: 40px;
	font-weight: 400;
}
.section-category ul li p {
　　　　color: #333333;
	font-size: 1.4rem;
	line-height: 2.4rem;
	display: inline-block;
	text-align: left;
	padding: 20px 25px 20px 0;
}
.section-category ul li p span{
　　　　color: #333333;
	font-size: 1.8rem;
	display: inline-block;
	text-align: left;
	padding: 10px 0;
}
.section-category__image {
	margin: 40px 24px 80px;
	display: block;
	min-width: 327px;
	width :90%;
	height: auto;
	object-fit: cover;
	object-position: 0 0;
	
}
@media(min-width: 1040px) {
  .section-category {
    width: 1040px;
    margin: 0 auto;
  }
  .section-category h2 {
	margin: 0 0 35px 0;
	font-size: 3.6rem;
  letter-spacing: 0.05em;
}
  .section-category ul {
    display: flex;
    margin: 0 100px;
    justify-content: space-between;
  }
  .section-category ul li {
  list-style: none;
}
  .section-category__for {
	font-size: 24px;
	margin: 0 0 40px 24px;
}
  .section-category ul li hr {
	margin: 40px 0 40px 0;
	color: #73716d;
	width: 375px;
}
  .section-category__number {
	padding: 10px 0 0 0;
	font-size: 6.0rem;
	margin: 0px;
	font-weight: 400;
}
  .section-category ul li p {
	font-size: 1.8rem;
	line-height: 24px;
	padding:0;
}
	.section-category ul li img {
		padding-left: 25px;
	}
	.section-category ul li p span{
	font-size: 2.4rem;
	padding: 10px 0;
}
	.section-category__image {
	margin: 40px 0 80px 0;
}
}
.section-online-workshop h2 {
	color: #d2cec5;
	font-size: 10rem;
	text-align: left;
	margin: 0 auto 0 24px;
	font-weight: 400;
	width: 327px;
}
.section-online-workshop h3 {
	position: relative;
	z-index: 10;
	color: #666666;
	text-align: left;
	margin: 0 auto 0 24px;
	font-size: 4.0rem;
	font-weight: 400;
	padding-top: 20px;
	width: 327px;
}
.section-online-workshop__content {
	position: relative;
	max-width: 1040px;
	background: #eeeeee;
	display: inline-block;
	margin: 0 24px 60px;
	z-index: 5;
	padding: 10px;
}
.section-online-workshop__content-border {
    max-width: 1020px;
    border: solid 2px #ffffff;
    display: inline-block;
	padding: 15px 10px 0;
}
.section-online-workshop h4 {
	font-size: 2.4rem;
	line-height: 30px;
	text-align: left;
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #333333;
}
.section-online-workshop__content p {
	font-size: 1.6rem;
	line-height: 36px;
	text-align: left;
}
.learn_more_button {
	margin: 40px auto 0;
	position: relative;
}
.learn_more_square {
	width: 165px;
	height: 48px;
	background-color: #333333;
	margin: 40px auto 60px;
}
.learn_more {
	color: #ffffff;
	font-size: 1.6rem;
	position: absolute;
	display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#area-1 {
    color: #333333;
        }
#area-2 {
    color: #333333;
        }

@media(min-width: 1040px) {
	.section-category__image {
		float: right;
		margin: 0;
		position: absolute;
		top: 740px;
		left: 400px;
		width: 602px;
		height: 342px;
		object-fit: cover;
		object-position: 0 0;
	}
	.section-online-workshop {
		position: relative;
		margin: 0 auto 80px;
		max-width: 1040px;
		height: 1090px;
	}
	.section-online-workshop h2 {
	font-size: 10rem;
	margin: 0 auto 0 0;
	width: 781px;
}
	.section-online-workshop h3 {
	margin: 0 auto 0 0;
	font-size: 6.0rem;
	padding-top: 20px;
	width:781px;
}
.section-online-workshop__content {
	width: 781px;
	height: 568px;
	margin-bottom: 80px;
	float: left;
}
	.section-online-workshop__content-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 757px;
    height: 546px;
    border: solid 2px #ffffff;
    display: inline-block;
	padding: 15px 10px 0;
}
	.section-online-workshop__content-border h4 br {
		display: none;
	}
	.section-online-workshop h4 {
	text-align: left;
	padding: 30px 0 30px 10px;
}
	.section-online-workshop__content p {
	font-size: 1.8rem;
	padding: 0 10px 0 10px;
}
}
.section-conversation-workshop {
	margin:0 auto;
}
.section-conversation-workshop h2 {
	color: #d2cec5;
	font-size: 10rem;
	text-align: left;
	margin: 0 auto 0 24px;
	width: 327px; 
	font-weight: 400;
}
.section-conversation-workshop h3 {
	position: relative;
	z-index: 10;
	color: #666666;
	margin: 0 auto 0 24px;
	width: 327px;
	font-size: 4.0rem;
	font-weight: 400;
	padding-top: 20px;
	text-align: left;
}
.section-conversation-workshop h3 span {
	display: none;
}
.section-conversation-workshop h4 {
	position: relative;
	z-index: 10;
	color: #666666;
	margin: 0 auto 0 24px;
	width: 327px;
	font-size: 4.0rem;
	font-weight: 400;
	text-align: right;
	padding-top: 10px;
}
.section-conversation-workshop__content {
	max-width: 1040px;
	background: #eeeeee;
	display: inline-block;
	margin: 0 24px 80px;
	z-index: 5;
	padding: 10px;
}
.section-conversation__content-border {
    max-width: 1020px;
    border: solid 2px #ffffff;
    display: inline-block;
	padding: 15px 10px 0;
}
.section-conversation-workshop h5 {
	font-size: 2.4rem;
	line-height: 30px;
	text-align: left;
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #333333;
}
.section-conversation-workshop__content p {
	font-size: 1.6rem;
	line-height: 36px;
	text-align: left;
}
.section-conversation-workshop__content p br {
	display: none;
}
.contact_button {
	margin: 40px auto 0;
	position: relative;
}
.contact_button_square {
	width: 165px;
	height: 48px;
	background-color: #666666;
	margin: 40px auto 30px;
}
.contact {
	color: #ffffff;
	font-size: 1.6rem;
	position: absolute;
	display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.section-workshop__image {
	display: block;
	min-width: 327px;
	width :90%;
	height: auto;
	object-fit: cover;
	object-position: 0 0;
	margin: 0 24px 100px;
	clear: both;
}
@media(min-width: 1040px) {
	.section-conversation-workshop {
	margin: 0 auto 100px;
	max-width: 1040px;
}
	.section-conversation-workshop h2 {
	margin: 0 auto 0 0;
	width: 839px;
}
	.section-conversation-workshop h3 {
	margin: 0 auto 0 0;
	font-size: 6.0rem;
	padding-top: 20px;
	width:781px;
}
	.section-conversation-workshop h4 {
	display: none;
}
	.section-conversation-workshop__content {
	width: 839px;
	height: 434px;
	float: left;
}
	.section-conversation-workshop__content p br {
	display: block;
}
	.section-conversation__content-border {
    width: 821px;
    height: 415px;
    display: inline-block;
	padding: 0 5px 0;
}
	.section-conversation-workshop h5 {
	padding: 30px 0 30px 10px;
	margin-bottom: 40px;
}
	.section-conversation-workshop__content p {
	font-size: 1.8rem;
	padding: 0 10px 0 10px;
}
	.section-workshop__image {
	display: block;
	width: 606px;
	height: 343px;
	object-fit: cover;
	text-align:right;
	margin: 0 0 0 auto;
}
}
.section-faq h2 {
	color: #d2cec5;
	text-align: left;
	margin-left: 24px;
	font-size: 4.8rem;
	font-weight: 400;
}
.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;
}
.section_contact__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;
}
  .section_contact__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;
}
}