@charset "UTF-8";

/*==================================================
基本のおまじない
===================================*/

html { 
	font-size: 10px;
}
body {
	margin: 0;
	padding: 0;
	color: #fff;
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	height: auto;
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}
p {
	margin: 0;
	padding: 0;
}

/*==================================================
トップページ
===================================*/
.roading {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 1000000;
	animation: fadeout 1s;
	animation-fill-mode: forwards;
	animation-delay: 7s;
	justify-content: center;
  	align-items: center;
  	flex-direction: column;
  	opacity: 1;
	padding: 0;
	margin: 0;
	visibility: visible;
}
.typing-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: 'Noto Serif JP', serif;
	width: 8ch;		
	white-space: nowrap;	
	color:#000;
	font-size:2rem;
	line-height:2rem;
	font-weight:400;
	animation: fadein 6s;
	transform: translate(-50%,200%);
	animation-fill-mode: forwards;	
}
@keyframes fadein {
	0% {
		opacity:0;
		
	}
	100% {
		opacity: 1;
		transform: translate(-50%,-50%);
	}
}

@keyframes fadeout {
	0% {
	   opacity: 1;
	   visibility: visible;
	}
	100% {
	   opacity: 0;
	   visibility: hidden;
	}
  }


#boshu {
	position: absolute;
	bottom: 6%;
	right: 0px;
	width: 250px;
	height: 80px;
	background-color: #12151da3;
	z-index: 100;
	transition: bottom 1s ease-in-out ;
  
}
#boshu.on {
	bottom: -150%;
	transition: bottom 1s ease-in-out;
}
#boshu_img {
	position: absolute;
	top: 0px;
	left: 10px;
	width: 60px;
	height: auto;
}
#boshu img {
    width: 100%;
}
#boshu_ul {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	right: 30px;
	top: 25px;
	font-size: 1rem;
	letter-spacing: 0.05em;
	font-weight: 200;
}
#boshu li {
	text-align: center;
}
.bo_li_1 {
	font-size: 1.2rem;
    margin-bottom: 10px;
}
.page1{
	position: relative;
	width: 100%;
	height: calc(var(--vh, 1vh) * 100);
	min-height: 0px;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
.page1_bg {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 110vh;
	background-image: url(../images/top8-2_tab.png);
	background-size: cover;
	animation-name: sample-animation;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}
@keyframes sample-animation {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
	100%{
        transform: scale(1);
    }
}
.page1_bg img {
	opacity: 0;
}

.logo1 {
	position: absolute;
	top: 3%;
	left: 4%;
	width: 50px;
    height: auto;
	z-index: 100;
}
.logo1 img {
	width: 100%;
}
.logo1 p {
	font-size: 0.9rem;
	letter-spacing: 0.35em;
	line-height: 13px;
}

/*==================================================
ナビゲーション
===================================*/
header {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  margin-top: 3%;
  height: 90%;
}
.main-nav {
    height: 100%;
    border-left: solid 1px #9f9d9d;
    display: none;
}

.menu {
	margin-top: 30px;
}

.menu li {
	width: 200px;
	font-size: 1.3rem;
	letter-spacing: 0.2em;
	color: #9f9d9d;
	padding: 12px 30px;
}

.menu li:hover {
	transition: 0.1s ease-in-out;
	color: #ffffff;
	border-left: 2px solid #fff;
}
.scroll_line {
	position: absolute;
	bottom: 10%;
	right: 50px;
	width: 100px;
	height: auto;
}

.scroll_line img {
	position: absolute;
	height: 60px;
	padding-left: 50px;
}
.scroll_line1 {
	opacity: 0.6;
}

.main-nav p {
	position: absolute;
	bottom: 0;
	margin-top: 10px;
	text-align: center;
	font-size: 1.6rem;
}


/*============スクロールアイコン===============*/
.scrolldown1{
	position:fixed;
	width: 100px;
	height: 100px;
	left:3%;
	bottom:5%;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  position: absolute;
  bottom: 0px;
  left: 30px;
  margin: 0 auto;
    /*テキストの形状*/
  color: #cbcbcb;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

/* 線の描写 */
.scrolldown1::before {
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
  left: 50%;
    /*線の形状*/
  width: 1px;
  height: 60px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:60px;
    opacity: 1;
  }
  100%{
    height:0;
    top:60px;
    opacity: 0;
  }
}

/*============ハンバーガーメニュー===============*/

.hamburger-menu {
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	z-index: 10000000000;
}
.menu-btn {
	position:fixed;
    top: 25px;
    right: 20px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000000;
    opacity: 1;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 35px;
    background-color: #fff;
    position: absolute;
	box-shadow:  0 1px 1px 1px rgba(0, 0, 0, .2);
	z-index: 10000;
	
}
.menu-btn span:before {
    bottom: 9px;
}
.menu-btn span:after {
    top: 9px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
	height: 2px;
    bottom: 0;
    transform: rotate(45deg);
	transition: ease-in 0.2s;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
	height: 2px;
    transform: rotate(-45deg);
	transition: ease-out 0.2s;
    box-shadow:  1px 1px 5px rgba(0, 0, 0, 0.6);
}



#menu-btn-check {
	display: none;
}

#menu-btn-check:checked ~ .menu-min {
	display: block;
}



.menu-min {
    position: fixed;
	top: 0;
	right: 0;
	display: none;
	width: 200px;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 100000;
}

.min-menu {
	position: absolute;
	top: 100px;
	width: 100%;
	height: auto;

}

.min-menu a {
	color: #a5a4a4;
	display: block;
	line-height: 40px;
	font-size: 1.3rem;
	width: 160px;
	margin: 0 auto;
	border-left: 1px solid #a5a4a4;
	padding-left: 20px;
	letter-spacing: 0.2em;
	transition: all 0.2s;
}
.min-menu a:hover {
	color: #fff;
	border-left: 2px solid #fff;
	transition: all 0.2s;
}

.none {
	display: none;
}


/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time01{
	animation-delay: 8s;
	}
	.delay-time02{
	animation-delay: 8.2s;
	}
	
	.delay-time04{
	animation-delay: 8.4s;
	}
	
	.delay-time06{
	animation-delay: 8.6s;
	}
	
	.delay-time08{
	animation-delay: 8.8s;
	}
	
	.delay-time1{
	animation-delay: 9s;
	}
	
	.delay-time2{
	animation-delay: 9.2s;
	}
	
	.delay-time3{
	animation-delay: 8.5s;
	}
	
/* アニメーションスタートの遅延時間を決めるCSS(ハンバーガーmenu)*/

	.delay-time002{
	animation-delay: 0.2s;
	}
	
	.delay-time004{
	animation-delay: 0.4s;
	}
	
	.delay-time006{
	animation-delay: 0.6s;
	}
	
	.delay-time008{
	animation-delay: 0.8s;
	}
	
	.delay-time010{
	animation-delay: 1s;
	}
	
	.delay-time012{
	animation-delay: 1.2s;
	}
	.delay-time014{
	animation-delay: 1.4s;
	}
	


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

.fadeUp2 {
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*==================================================
再びトップページ
===================================*/

.title {
	position: absolute;
	top: 30%;
    left: 5%;
	width: 90%;
	height: 100px;
	text-align: center;
	text-shadow: 1px 1px 2px #7c7b7b;
}

.t1 {
	height: 130px;
}

.yorokobi {
	font-size: 1.5rem;
	margin-bottom: 10px;
	letter-spacing: 0.05rem;
	opacity: 0.8;
	font-family: 'Noto Serif JP', serif;
	font-weight: 200;
}

.t1 h1 {
	font-size: 5rem;
	font-family: 'Libre Baskerville', serif;
	line-height: 50px;
}

.t1 p {
	margin-top: 8px;
	font-size: 2.1rem;
	line-height: 25px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.25em;
	font-weight: 200;
	opacity: 0.8;
}

.t1 span {
	opacity: 0.8;
	text-align: center;
	letter-spacing: 0.15em;
}


.kimuralink {
	text-decoration: underline;
}

#toptop {
	width: 60px;
	height: auto;
	position: fixed;
	bottom: 5%;
	right: 4%;
	z-index: 1000000;
	transition: all 1s;
	opacity: 0;
}

#toptop img {
	width: 60px;
	height: 60px;
}

/*==================================================
ふわっと出るcss
===================================*/
.fuwa_moto {
 	opacity: 0;
 	transform: translateY(50px);
 }

 .is-animated {
 	opacity: 1;
 	transform: translateY(0px);
 	transition: 1.5s;
 }

/*==================================================
tomoleページ
===================================*/
.tomole {
	overflow: hidden;
	position:relative;
	top: 100%;
	width: 100%;
	height: auto;
	background-color: #e8e8e9;
	box-shadow:  0 5px 10px 0 rgba(0, 0, 0, .5);
	font-family: 'Noto Sans JP', sans-serif;
    z-index: 1000;
}
.title2 {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 60px 0;
    color: #ffffff;
 }

.title2 h2{
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	text-align: center;
	line-height: 40px;
}

.line1 {
	width: 350px;
	height: 1px;
	margin: 10px auto 0;
	background-color: #fff;
}
 .title2 p {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
 	text-align: center;
 	font-size: 1.3rem;
 	line-height: 45px;
 	padding: 15px 0 20px;
 }
 .tomole_bg_l {
	width: 1px;
	height: 650px;
	background-color: #1e2a43;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
 }
 .tomole_bg_l2 {
	width: 50%;
	transition: width 3s;
 }
 .tomole_bg_r{
	width: 1px;
	height: 650px;
	background-color: #1e2a43;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
 }
 .tomole_bg_r2 {
	width: 50%;
	transition: width 3s;
 }
.kaidan {
	position: absolute;
	width: 120px;
	height: auto;
    bottom: 40%;
	right: 5%;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 10px;
	z-index: 100;
	opacity: 0.4;
 }
 .kaidan p {
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 100;
	text-align: center;
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 20px;
	letter-spacing: 0.08rem;
    display: none;
 }
 .kaidan img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
 }

 .rokuro {
	position: absolute;
	width: 150px;
	height: auto;
	bottom: 20%;
	left: 2%;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 10px;
    opacity: 0.4;
 }
 .rokuro p {
	font-size: 1.2rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 100;
	text-align: center;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 30px;
	letter-spacing: 0.08rem;
    display: none;
 }
 .rokuro img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
 }



 /*==================================================
rootsページ
===================================*/
 .roots {
 	width: 100%;
 	height: auto;
    margin-top: -1px;
	background-color: #a99d8b;
 }

 .roots_inner {
	position: relative;
	top: 0;
	left: 0;
 	width: 	100%;
 	height: 200px;
	overflow: hidden;
 }
 .roots_bg {
	position: absolute;
    background-color: #555;
	top: 100px;
	left: 0;
	width: 100%;
	height: 350px;
 }
 .roots_bg img {
	width: 100%;
	height: auto;
 }


 .roots_inner h1 {
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	height: auto;
	font-size: 3.5vh;
	text-align: center;
	font-weight: 500;
	color: #fff;
	line-height: 45px;
    letter-spacing: 0.05em;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	text-shadow: 1px 1px 2px #6e6e6e;
}

.roots_inner h1 span {
	font-weight: 700;
	font-size: 4.5vh;
}
.yaji {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 40%;
	height: auto;
	margin-left: 5%;
    transform: translateY(-50%);
}
.yaji img{
	width: 100%;
	height: auto;
}
.roots_inner2 {
	width: 100%;
    position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
}
.roots_inner2 h2 {
	position: absolute;
	bottom: 0%;
	left: -10%;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 10rem;
	font-weight: 800;
	letter-spacing: 0.07rem;
	color: #555454;
	text-shadow: 1px 1px 2px #9d9c9c;
	z-index: 10;
	opacity: 0.5;
}

.roots_inner2 h3 {
	position: absolute;
	top: 10%;
	right: -50%;
    width: 400px;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 5.5rem;
	font-weight: 800;
	letter-spacing: 0.07rem;
	color: #555454;
	text-shadow: 1px 1px 2px #9d9c9c;
	z-index: 100;
	opacity: 0.5;
	white-space:break-spaces;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.roots_naka {
	position: relative;
	width: 100%;
	height: 900px;
	margin: 0 auto;
	display: flex;
	z-index: 2;
}
.roots_imgbox {
	position: absolute;
	top: 8%;
	left: 0%;
	width: 85%;
	aspect-ratio: 16 / 11;
	z-index: 2;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	overflow: hidden;
	background-color: #fff;
	border-radius: 10px;
}
.roots_imgbox:hover {
	background-size: 110%;
	transition: all 1s ease-in-out;
}
.roots_imgbox2 {
	background-size: 113%;
	transition: all 2s ease-in-out;
}

.roots_p {
	position: absolute;
    top: 30%;
    right: 0%;
	width: 90%;
	background-color: rgba(0, 0, 0, .4);
	padding: 60px 10px 10px;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
    margin-bottom: 80px;
    font-size: 1.5rem;
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 300;
}
.kimura {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
	text-align: center;
 	font-size: 1.3rem;
	color: #fff;
	padding: 20px 0;
	line-height: 20px;
}
.roots_p1 {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
	text-align: right;
 	font-size: 1.3rem;
 	line-height: 35px;
	color: #fff;
	padding-top: 20px;
}
 /*==================================================
3つの並びページ
===================================*/


.joy {
	color: #000;
	width: 96%;
	margin-left:2%;
	margin-right: 2%;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 16;
}
.joy_bg {
	width: 110%;
	height: 115%;
	position: absolute;
	top: 120px;
	left: 0;
	background-image: url(../images/joy.png);
	background-position: center;
	background-size: cover;
}

.joy_inner {
	margin: 50% auto 0;
    transform: translateY(-30px);
	width: 300px;
	height: 80px;
}

.tomole_3ren h1 {
	font-size: 2rem;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.07em;
	white-space: nowrap;
}
.tomole_3ren p {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	text-align: center;
	margin-top: 10px;
	line-height: 25px;
	white-space: nowrap;
	letter-spacing: 0.05;
}

.color {
	color: #000;
	width: 96%;
	margin-left: 2%;
	aspect-ratio: 16 / 16;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}
.color_bg {
	width: 100%;
	height: 115%;
	position: absolute;
	top: -90px;
	left: 0;
	background-image: url(../images/color_tes4-2.png);
	background-position: center;
	background-size: cover;
}

.color_inner {
	margin: 50% auto 0;
    transform: translateY(-30px);
	width: 300px;
	height: 80px;
}

.hitori {
	color: #000;
	width: 96%;
	margin-top: 20px;
	margin-left: 2%;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 16;
}

.hitori_bg {
	position: absolute;
	top: 50px;
	right: -50px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n1.png);
	background-size: cover;
	background-position: center;
} 
.hitori_bg2 {
	position: absolute;
	top: 50px;
	right: -130px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n2.png);
	background-size: cover;
	background-position: center;
} 
.hitori_bg3 {
	position: absolute;
	top: 50px;
	right: -100px;
	width: 130%;
	height: 100%;
	background-image: url(../images/hitori_n3.png);
	background-size: cover;
	background-position: center;
} 

.hitori_inner {
	margin-top: 15%;
	margin-left: 10%;
	width: 300px;
	height: 100px;

}

/*==================================================
教室ページ
===================================*/

.ourstudio {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 3 / 6;
}
.title_eng {
	position: relative;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: auto;
	z-index: 3;
	text-shadow: 1px 1px 2px #ffffff;
}

.title_eng h1 {
	font-family: 'Noto Serif JP', serif;
 	font-weight: 500;
 	font-size: 4vh;
 	letter-spacing: 0.02em;
 	text-align: center;
 	padding: 35px 0 0;
 	line-height: 30px;
	color: #000;
 }
 .title_eng p {
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 25px;
	padding: 15px 0 30px;
	color: #000000;
}
.line {
	width: 40px;
	border-bottom: 3px solid #5b5a5a;
	margin: 15px auto 0;
}
.scool {
	position: relative;
	width: 80%;
	height: auto;
	margin: -30px auto 0;
	z-index: 2;
}

.scool img {
	width: 100%;
	height: auto;
}
.scool_bb img {
	width: 100%;
	height: auto;
	margin-top: -200px;
}

.os1 {
	position: absolute;
	top: 250px;
	left: -10%;
	width: 70%;
	aspect-ratio: 16 / 10;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
}

.os2 img {
	position: absolute;
	top: -30px;
	left: 30%;
	width: 90%;
	aspect-ratio: 16 / 10;
	z-index: 2;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
}

.os3 {
	position: absolute;
	top: -300px;
	right: -10%;
	width: 60%;
	aspect-ratio: 10 / 12;
	z-index: 3;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	
}
.os4 {
	position: absolute;
	top: -100px;
	left: -10%;
	width: 60%;
	aspect-ratio: 16 / 10;
	z-index: 1;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
}
.scool_bb {
	width: 100%;
	height: auto;	
}
.en1 {
	position: absolute;
	top: 0%;
	left: -5%;
	width: 40%;
	height: auto;
}
.en2 {
	position: absolute;
	top: -200px;
	left: 50%;
	width: 300px;
	height: auto;
	
}
.en3 {
	position: absolute;
	top: 0;
	right: -10%;
	width: 70%;
	height: auto;
    
}
.en4 {
	position: absolute;
	top: -100%;
	left: -10%;
	width: 45%;
	height: auto;
	padding-bottom: 40%;
}

/*==================================================
コース説明ページ
===================================*/

.cose {
	background-color: #eff19089;
	position: relative;
	width: 100%;
	height: auto;
	color: #000;
	padding: 40px 0 0;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}

.cose_bg_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.bg_box {
	width: 100%;
	height: 30px;
	background: rgba(0, 0, 0, .3);
}
.bg_box.on {
	background: rgba(0, 0, 0, 0);
	transition: all 1s ease-in-out;
}
.cose_in {
	width: 96%;
    margin-left: 2%;
	height: auto;
}
.cose_l {
	width: 100%;
	height: auto;
    margin-top: 50px;
}
.cose_innerl {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.cose_line {
    width: 90%;
    height: 1px;
    margin-left: 5%;
    background-color: #0000007b;
}
.cose_r {
	width: 100%;
	height: auto;
	padding-top: 40px;
}

 .title3 h1 {
	font-family: 'Playfair', serif;
 	font-weight: 300;
 	font-size: 2.6rem;
 	letter-spacing: 0.02em;
 	text-align: center;
	line-height: 26px;
	margin-top: 20px;
	margin-bottom: -5px;	
 }
 .cose_small {
	font-size: 2.2rem;
	margin-left: 5px;
 }

 .title3 p {
	font-family: 'Noto Sans JP', sans-serif;
 	text-align: center;
 	font-size: 1.3rem;
 	font-weight: 400;
 	line-height: 25px;
 	padding: 15px 0 30px;
	color: #000000;
	letter-spacing: 0.05em;
 }
 .cose_img {
 	position: relative;
 	width: 100%;
 	height: 200px;
 	margin: 0px;
 	overflow: hidden;
 }
.cose_img img {
  	display: block;
  	position: absolute;
  }	
	
.cose_naiyou {
	color: #000;
	width: 310px;
	margin: 30px auto 0;
	font-weight: 400;
}
.cose_naiyou h2 {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 50px;
	font-weight: 500;
}

.cose_naiyou_2 {
	padding-top: 50px;
	color: #000;
	width: 310px;
	margin: 0 auto;
	font-weight: 500;
}
.cose_naiyou_2 h2 {
	font-size: 1.5rem;
	text-align: center;
    width: 100%;
	font-weight: 500;
 }
 .kakaku {
 	position: relative;
 	width: 100%;
 	height: auto;
	padding: 20px 0;
	letter-spacing: 0.1em;
}
 .kakaku li {
  	text-align: center;
  	font-size: 1.5rem;
  	line-height: 35px;
  	color: #47571C;
}
.kaisu {
	padding-left: 0px;
	margin-bottom: 10px;
}

.cyuui {
	display: block;
    width: 310px;
    height: 400px;
    margin: 0 auto;
	font-size: 1.3rem;
}
.kome {
	font-size: 1.3rem;
	width: 10px;
	float: left;
	line-height: 20px;
}

.chket {
	width: 100%;
	line-height: 20px;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2rem;
	margin-bottom: 20px;
}

.jizen {
	font-size: 1.4rem;
}



.ex1 li {
	line-height: 22px;
}
.ex {
	margin-top: 20px;
}

.exp {
	margin-top: 5px;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-left: 5px;
}

.exh {
	font-size: 1.5rem;
	font-weight: 600;
}
.exhp {
	font-size: 1.2rem;
	letter-spacing: 0.01rem;
}
.naiyou_bottom {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	width: 310px;
	margin: 0 auto;
	line-height: 22px;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 15px 10px;
}

.jikan {
	width: 270px;
	height: auto;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 40px auto;
	text-align: center;
	position: relative;
}	

.jikan_inner1 {
	width: 270px;
	height: auto;
	margin: 20px 0;
	display: flex;
}

.jikan_l {
	width: 90px;
	height: 90px;
	text-align: center;
	line-height: 30px;
}
.jikan_r {
	width: 180px;
	height: 90px;
	text-align: center;
	line-height: 30px;
    letter-spacing: 0.2em;

}

.fumei {
	color: #000;
	font-size: 1.2rem;
	width: 90%;
	height: 80px;
	text-align: center;
	margin-left: 5%;
}
.taiken_p{
	width: 100%;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2rem;
	margin-bottom: 20px;
}
.taiken_p p {
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 2rem;
	margin-bottom: 20px;
}

/*==================================================
CONTACTページ
===================================*/

.contact {
	position: relative;
	width: 100%;
	height: auto;
	color: #000;
	overflow: hidden;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .5);
}

.con_p_min {
	display: none;
}

.contact_inner {
	width: 100%;
	height: auto;
	margin: 0px auto;
	max-width: 1200px;
	padding-bottom: 50px;
}


.form {
	width: 80%;
	height: auto;
	flex-wrap: wrap;
	margin: 0 auto;
	padding-top: 0px;
}

#error_m {
	color: red;
}

.contact_l {
	width: 100%;
	height: auto;
}

.contact_box {
	width: 80%;
	margin: 0 auto;
}

.contact_box2 {
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.inputs {
	width: 100%;
	height: 40px;
	padding: 5px;
	margin: 30px 0 0;
	border: 2px solid #999;
	border-radius: 3px;
}

.inputs2 {
	width: 100%;
	height: 14em;
	margin: 30px auto 0;
	border: 2px solid #999;
	padding: 5px;
	border-radius: 3px;
}

.contact_r {
	width: 100%;
	height: auto;
	padding-top: 40px;
}

table {
	width: 70%;
	height: auto;
    margin-left: 16%;
}

.label {
	font-weight: 400;
	line-height: 30px;
    letter-spacing: 0.1em;
}

.puru {
	height: 70px;
}

select {
	height: 30px;
	border: 1px solid #707070;
	border-radius: 5px;
	background-color: #B2B2B2;
	text-align: center;
	color: #fff;
}
.select1{
	width: 80px;
}
#time {
	width: 80px;
}


.can {
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
}

.contact_img {
	width: 100%;
	margin-top: 40px;
	margin-left: 10%;
	display: none;
}

.contact_img img {
	width: 80%;
	height: auto;
}
.button_wrapper {
	width: 100%;
}

.button {
	display: block;
	width: 140px;
	height: 40px;
	margin: 70px auto;
	border: 1px solid #888;
	background-color: #828469;
	text-align: center;
	border-radius: 3px;
	color: #fff;
}

.button:hover {
	background-color: #f5deb3;
	color: #666;
	transition: 0.5s;
}


.form_bottom {
	width: 90%;
	height: auto;
	border: 1px #707070 solid;
	padding: 20px 30px;
	margin: 0 auto 60px;
	font-size: 1.3rem;
}

.form_bottom p {
	line-height: 25px;
}

.form_bottom li {
	margin-top: 10px;

}
.eigyou {
	display: grid;
	width: 100%;
	height: auto;
	grid-template-columns: 60px 1fr 1fr 1fr 1fr;
	grid-template-rows: 40px 40px;
	border: 1px solid #000;
	min-width: 260px;
}
.item {
	border: 1px solid #000;
	padding: 5px;
}


/*==================================================
インスタグラムページ
===================================*/
.instagram {
	width: 100%;
	height: auto;
	color: #000;
	position: relative;
	background-color: rgba(128, 128, 128, 0.1);
	overflow: hidden;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
}

.instagram_inner {
	width: 90%;
	height: auto;
	margin: 20px auto 80px;
}
.insta {
	width: 100%;
	height: 500px;
	position: relative;
}
.insta_p_min {
	display: none;
}

.widgets {
	max-width: 1000px;
	width: 100%;
	height: auto;
	padding: 5px;
	margin-top: 80px;
}



.insta_link a {
	display: block;
	color: #000;
	width: 140px;
	line-height: 40px;
	text-align: center;
	margin: 50px auto;
	border: 1px solid #000;
	border-radius: 3px;
	font-size: 1.3rem;
}

.insta_link a:hover {
	background-color: #888;
	color: #fff;
	transition: 0.25s;
}


/*==================================================
ACCESSページ
===================================*/
.access {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	font-size: 1.6rem;
	background-color: #fff;
	box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, .5);
}

.access_inner {
	width: 100%;
	height: auto;
	margin: -20px auto 0;
	padding-top: 30px;
}

.map {
	width: 100%;
	height: 400px;
	margin-top: 80px;
}

.map_bottom {
	width: 96%;
	height: auto;
	margin: 40px 2%;
	display: block;
}

.ad {
	color: #000;
	width: 100%;
	height: auto;
    font-size: 1.3rem;
}

.ko {
	font-weight: 600;
	margin-bottom: 7px;
}

.otu {
	margin-bottom: 30px;
	padding-left: 10px;
}

.ad_img {
	width: 250px;
	height: 180px;
	padding: 30px 0 0 0;
	margin-left: 20px;
}
.ad_img img {
    width: 100%;
    height: auto;
}

.map_bottom2 {
	width: 90%;
	aspect-ratio: 4 / 6;
	max-width: 1200px;
	margin: 0 5%;

}

.map_img {
	width: 48%;
	height: auto;
	float: left;
	margin: 1% 1%;
}


/*==================================================
Q&Aページ
===================================*/
.qa {
	width: 100%;
	height: auto;
	color: #000;
	margin: 0 auto;
	box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, .5);
	overflow: hidden;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
}

.qa_inner {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-bottom: 50px;
}
.and {
	font-size: 2rem;
}

.qa_lr {
	display: block;
	margin: 20px 0 80px;
}

.qa_l {
	width: 80%;
	height: auto;
	margin: 0 10%;
}

.qa_r {
	width: 80%;
	height: auto;
	margin: 0 10%;
}

.qa-box {
    text-align: justify;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
   }

.qa-box label {
    display: block;
    position: relative;
    padding: 1rem 2.5rem 1rem 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.075em;
    font-size: 1.3rem;
    line-height: 2rem;
 }

.qa-box label:after {
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-right: solid 3px #555;
    border-bottom: solid 3px #555;
    transform: rotate(45deg) translate(100%, 100%);
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1rem;
}

.qa-box span {
	font-size: 1.7rem;
	color: #00bfff;
	font-weight: 800;
}

.qa-box input:checked ~ label:after {
    transform: rotate(-135deg) translate(-100%, -100%);
    margin-top: 0.2rem;
}

.qa-box input {
    display: none;
}

.qa-box p {
    height: 0px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, height 0.5s ease-in-out, margin 0.5s ease-in-out;
    margin: 0 0.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
   }

.qa-box input:checked ~ p {
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s 0.2s ease-in-out, height 0.3s ease-in-out;
    margin: 1rem 0.5rem;
    font-size: 1.3rem;
    line-height: 2rem;

   }


   /*==================================================
footerページ
===================================*/
.foot {
	position: relative;
	width: 100%;
	min-width: 0px;
	height: auto;
	background-color: #846E5E;
	overflow: hidden;
	font-size: 1.3rem;
	padding: 0 0 15rem;
	font-family: 'Noto Sans JP', sans-serif;
}


.fp1 {
	position: absolute;
	top: 30px;
	left: 40px;
	width: 150px;
	height: auto;
}

.fp2 {
	position: absolute;
	bottom: 10%;
	right: 5%;
}

.footer_inner {
	width: 100%;
	height: auto;
	margin: 120px auto 0;
	display: flex;
    min-width: 350px;
}

.li1 {
	margin-left: 60px;
}

.footer_list {
	width: 30%;
	height: auto;
	min-width: 100px;
}


.footer_list li {
	line-height: 50px;
	border-left: 1px solid #b0aeae;
	padding-left: 20px;
	color: #b0aeae;
}

.footer_list li:hover {
	border-left: 2px solid #fff;
	color: #fff;
}

.c {
	position: absolute;
	bottom: 2%;
	width: 100%;
	height: auto;
	padding-bottom: 20px;
	padding-top: 40px;
	font-size: 14px;
	text-align: center;
	color: #fff;

}

















