@charset "UTF-8";

html,body{
    height:100%;
}

body{
    /*font-family: 'PT Mono',YuGothic,'Yu Gothic', sans-serif;*/
	font-family: "Kiwi Maru", serif;
	/*background-color:#FFF3FC;*/
	/*background-image:url("../img/IMG_1126.JPG");*/
    /*background-image:url("../img/26504341.jpg");*/
	background-size: 100%;
	text-align:center;
	color:#505050;
	line-height:2;
}

.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.edu-sa-beginner- {
  font-family: "Edu SA Beginner", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}








p{
    text-align:center;
	color:#675848;
    
    font-size: 18px;
    line-height:40px;
}


h1{
    color: #505050;
    font-family: "Kiwi Maru", serif,"Edu SA Beginner", cursive;
    font-size: 40px;
    font-weight: 500;
    padding: 80px;
	/*background-image:url("../img/8739a.png");*/
	background-repeat:no-repeat;
	background-size:200px;
	background-position:50% 90%;
	}

h5{
    color: #505050;
    font-family: "Kiwi Maru", serif,"Edu SA Beginner", cursive;
    font-size: 40px;
    font-weight: 500;
    padding: 80px;
	/*background-image:url("../img/8739b.png");
	background-repeat:no-repeat;
	background-size:200px;
	background-position:50% 90%;*/
	}

	
h2{
    color: #505050;
    font-family: "Kiwi Maru", serif,"Edu SA Beginner", cursive;
    font-size:  30px;
    font-weight: 500;
    padding:30px;
	}
	
h3{
    color: #505050;
    font-family: "Kiwi Maru", serif,"Edu SA Beginner", cursive;
    font-size: 30px;
    font-weight: 400;
    padding: 1px;
	}
h4{
    color: #505050;
    font-family: "Kiwi Maru", serif,"Edu SA Beginner", cursive;
    font-size: 24px;
    font-weight: 400;
    padding: 20px;
	}

hr{
    border-width:0.6px;/*線の太さ*/
    width:60%;
    border-color:#675848;
    border-style:solid;
    
    margin-top:50px;
    margin-bottom:50px;
	}





/*ヘッダー*/
.wrapper{
    /* ベンダープレフィックスは省略 */
    display: flex;
    justify-content: center; /* 子要素を中央揃え */
    position: relative;
	}

/*ヘッダー左*/
.left {
  position: relative;
	left: 0; /* 左寄せ */
  padding: 20px;
}

.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
	width:80px;
	height:60px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 20px;
  width: 40px;
  height: 2px;
	border-radius: 4px;
  background-color: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 28px;
}
.hamburger__line:nth-of-type(3) {
  top: 42px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
	font-size:20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}



/*ヘッダー中央*/
.center img{
	padding:20px;
}




/*ヘッダー右*/
.right {
    position: absolute;
    right: 0; /* 右寄せ */
	margin-right:10px;
	margin-top:10px;
	}

.right img{
	height:80px;
	padding:10px;
}



/*スライダー*/
.slider{
	scroll-snap-type: x mandatory;
}






/*メイン*/

.box{
    justify-content:center; /*中央寄せ*/
	background-color:#FCFCFC;
	}

.box_message{
    justify-content:center; /*中央寄せ*/
	background-image:url("../img/IMG_1126.JPG");
	margin-bottom:100px;
	
	background-repeat: no-repeat;
  	background-size: cover;
	
	}



.box_message h1{
	color:#fff;
}
.box_message h2{
	color:#fff;
}
.box_message h4{
	color:#fff;
}





/*フェードインアニメーション*/
.inview.fadeup{
	opacity: 0;
	overflow: hidden;	
}

.inview.fadeup.active{
  animation: 2s fadeup ease-in-out forwards;
}


@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*フェードアップ*/
.anim-box.fadeup.is-animated {
  animation: fadeup 2s cubic-bezier(0.33, 2, 0.68, 2) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




/*プロフィール*/
.rotate{
	display:relative;
	justify-content:flex-end;
}
.rotate img{
	position:absolute;
	left:60%;
	bottom:2%;
	opacity:0.5;
	width:250px;
	height:250px;
	animation:8s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}





.box_profile{
	position:relative;
    justify-content:center; /*中央寄せ*/
	background-image:url("../img/IMG_1127.JPG");
	color:#fff;
	margin-bottom:100px;
	background-repeat: no-repeat;
  	background-size: cover;
	}

.box_profile h1{
	color:#fff;
}
.box_profile h2{
	color:#fff;
}
.box_profile h3{
	color:#fff;
}
.box_profile p{
	color:#fff;
}

.box_schedule{
    justify-content:center; /*中央寄せ*/
	background-color:#FCFCFC;
	margin-bottom:100px;
	background-image:url("../img/IMG_0788a.png"),url("../img/IMG_0788b.png"),url("../img/IMG_0788c.png"),url("../img/IMG_0788d.png"),url("../img/IMG_0788e.png"),url("../img/IMG_0788f.png"),url("../img/IMG_0788g.png");
	background-repeat:no-repeat;
	background-position:80% 7%,90% 15%,30% 23%,20% 30%,90% 40%,30% 48%,20% 55%;
	background-size:200px;
	}









/*スクロールスナップ*/
.box{
	overflow:auto;
	scroll-snap-type:y mandatory;
	
}
.area{
	scroll-snap-align:start;
}



/*youtube*/

.box_youtube{
    justify-content:center; /*中央寄せ*/
	background-color:#fff;
	margin-bottom:100px;
	background-image:url("../img/youtubeA.png"),url("../img/youtubeB.png"),url("../img/youtubeC.png"),url("../img/youtubeD.png");
	background-repeat:no-repeat;
	background-position:38% 3%,62% 3%,40% 20%,64% 19%;
	background-size:150px;
	}



.scroll_contentY { /* リスト全体のスタイル */
	scroll-snap-type: x mandatory;
	display: flex;
	overflow-x: scroll;
	gap:10px;
	width:950px;
	margin: 0 auto;
}
 
.scroll_content_itemY { /* 各リストのスタイル */
	scroll-snap-align:center;
	frex:0 0 100%;
	
	flex:none;
	margin:10px;
	padding:5px;
	list-style: none;
	background-color: rgba(255,255,255,0.3);
}

.scroll_contentY img{
	height:200px;
	width:auto;
	border-radius: 10px;
}

.scroll_contentY p{
	text-align:left;
	line-height: 1.2;
}

.scroll_contentY a{
	font-size:14px;
}
 
.scroll_contentY::-webkit-scrollbar {
  height: 12px; /* スクロールバーの高さ */
}
 
.scroll_contentY::-webkit-scrollbar-thumb {
  background: #aaa; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
}
 
.scroll_contentY::-webkit-scrollbar-track {
  background: #ddd; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
}

	

  


a:link {
	color:#725B4E;
	}
	
a:visited {
	color: #585858;
	}

a:hover {
	color: #c9a223;
	}
	
a:active {
	color: #c9a223;
	}



/*スケジュール*/
.box_schedule table{
    /*border:3px solid #ae21cd;*/
    margin:auto;
    margin-top:0px;
	line-height:50px;
  	}
.box_schedule th{
    font-size:26px;
    font-weight: 500;
    line-height:50px;
    /*background-color:#ffffff;*/
	}
.box_schedule th img{
	width:500px;
}
	
.box_schedule td{
	font-weight:400;
	font-size:40px;
    width:300px;
	}

.box_schedule td img{
	width:300px;
}



.containerB{
    /*border:3px solid #21a8cd;*/
    width:950px;
    margin:0 auto;
	margin-bottom:100px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  	}
	
.containerB img{
	
	border-radius: 10px;
}



.itemBB{
    /*border:3px solid #ae21cd;*/
	display: flex;
    align-items: center;
	justify-content: center;
	width:300px;
    }

.containerC{
    /*border:3px solid #21a8cd;*/
    width:1000px;
    margin:0 auto;
	margin-bottom:100px;
    display:flex;
	justify-content: space-between;
  	}



.itemC{
    /*border:3px solid #ae21cd;*/
	
	width:350px;
	margin:20px;
	background-color: rgba(255,255,255,0.8);
    }




.itemC th{
	
    font-size:30px;
    font-weight: 500;
    line-height: 1.5;
	
    /*background-color:#ffffff;*/
	}
	
.itemC td{
	font-weight:400;
	font-size:20px;
    line-height: 1.6;
	}
.itemC p{
	line-height:1.4;
}

.itemC img{
	
	
	border-radius: 10px;
}

.containerD{
    /*border:3px solid #21a8cd;*/
    width:950px;
    margin:0 auto;
	margin-bottom:100px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  	}
.itemD img{
    /*border:3px solid #ae21cd;*/
    width:150px;
	margin:10px;
	border-radius: 10px;
    }






/*お友達追加ボタン*/
.btn,a.btn {
  color: #fff;
  background-color: #c9a223;
}
	.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}
.btn:hover,
a.btn:hover {
  color: #c9a223;
  background: #F7F7E6;
}

a.btn {
   border-radius: 100vh;
}




/*ワークショップ*/
.container_workshop{
	width:900px;
    margin:0 auto;
	display:flex;
	flex-wrap: wrap;
	/*align-items: flex-start;*/
	flex-direction: column;
	max-height: 2700px;
	gap:100px;
	margin-bottom:300px;
  	}

.container_workshop table{
	background-color:#FBF9F0;
	box-shadow: 0px 0px 20px 20px #FBF9F0;
	width:400px;
	margin-bottom:10px;
	}



.container_workshop th{
    font-size:26px;
    font-weight: 500;
    line-height:50px;
    /*background-color:#ffffff;*/
	
	}

	
.container_workshop td{
	font-weight:400;
	font-size:30px;
	line-height:46px;
	
	}








.container_workshop img{
    height:100px;
	border-radius: 10px;

	}

.container_workshop p{
    font-size: 20px;
    line-height:30px;
	}
	

.container_workshop th{
	line-height:50px;
}



.empty_item{
    width:300px;
	}


.box_workshop{
	display: flex;
    justify-content: center; /* 子要素を中央揃え */
    position: relative;
	margin-bottom:100px;
	background-image:url("../img/workshop.png");
	background-repeat:no-repeat;
	background-position:110% 100%;
	background-size:650px;
	}



/*生徒さんの声*/
.box_voice{
    justify-content:center; /*中央寄せ*/
	background-color:#E5E1DF;
	margin-bottom:100px;
	}

.scroll_content { /* リスト全体のスタイル */
	scroll-snap-type: x mandatory;
	display: flex;
	overflow-x: scroll;
	gap:10px;
	width:950px;
	margin: 0 auto;
}
 
.scroll_content_item { /* 各リストのスタイル */
	scroll-snap-align:center;
	frex:0 0 100%;
	width:50%;
	flex:none;
	margin:5px;
	padding:50px;
	list-style: none;
	background-color: rgba(255,255,255,0.3);
}

.scroll_content_item p{
	text-align:left;
}
 
.scroll_content::-webkit-scrollbar {
  height: 12px; /* スクロールバーの高さ */
}
 
.scroll_content::-webkit-scrollbar-thumb {
  background: #aaa; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
}
 
.scroll_content::-webkit-scrollbar-track {
  background: #ddd; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
}



/*アクセス*/
.box_Acsess{
    justify-content:center; /*中央寄せ*/
	background-color:#F8F2DE;
	margin-top:200px;
	margin-bottom:200px;
	box-shadow: 0px 0px 80px 80px #F8F2DE;
	padding: 20px;
	}


/*ショップ*/
.box_shop img{
		border-radius: 10px;
}

.containerS{
    /*border:3px solid #21a8cd;*/
    width:950px;
    margin:0 auto;
	margin-bottom:0px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  	}

.itemSS{
    /*border:3px solid #ae21cd;*/
	display: flex;
    align-items: center;
	justify-content: center;
	width:300px;
    }


/*SNS*/
.sns img{
	padding:5px;
}

/*Copyrigt */
.footer{
	font-size:2px;
	color:#725B4E;
}

