@charset "UTF-8";

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

html { 
	scroll-behavior: smooth;
	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: 0;
	right: 0px;
	width: 300px;
	height: 105px;
	background-color: #12151da3;
	z-index: 100;
	transition: all 1s ease-in-out;
}
#boshu.on {
	bottom: -100%;
	transition: all 1s ease-in-out;
}
#boshu img {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 80px;
	height: auto;
}
#boshu_ul {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	right: 45px;
	top: 35px;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	font-weight: 200;
}
#boshu li {
	text-align: center;
}
.bo_li_1 {
	font-size: 1.3rem;margin-bottom: 20px;
}
.page1{
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 800px;
	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;
	background-position: center;
	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: 2%;
	left: 3%;
	width: 60px;
	z-index: 100;
}
.logo1 img {
	width: 100%;
}
.logo1 p {
	font-size: 1.1rem;
	letter-spacing: 0.3em;
	line-height: 15px;
	margin-left: 3px;
	text-align: center;
}

/*==================================================
ナビゲーション
===================================*/
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: #c9c7c7;
	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: 140px;
	left:5%;
	bottom:5%;
}
.scrolldown_min {
	display:block;
}

/*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: 80px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:80px;
    opacity: 1;
  }
  100%{
    height:0;
    top:80px;
    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: 10000;
    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: 1000;
}

.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;
	}
	


/*==================================================
スタート時は要素自体を透過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: 20%;
    left: 5%;
	width: 90%;
	height: 100px;
	text-align: center;
	text-shadow: 1px 1px 2px #7c7b7b;
}

.t1 {
    transform: translateY(-70px);
	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: 2rem;
	line-height: 25px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.25em;
	font-weight: 200;
	opacity: 0.9;
}

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


.kimuralink {
	text-decoration: underline;
}

#toptop {
	width: 60px;
	height: auto;
	position: fixed;
	bottom: 5%;
	right: 4%;
	z-index: 10000;
	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;
}
.title2 {
	width: 400px;
	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.6rem;
	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: 200;
 	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: 30%;
	right: 2%;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 10px;
	z-index: 100;
 }
 .kaidan 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;
 }
 .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;
 }
 .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;
 }
 .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: 90px;
	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: 35%;
	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: 5%;
	left: 5%;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 17vh;
	font-weight: 800;
	letter-spacing: 0.07rem;
	color: #555454;
	text-shadow: 1px 1px 2px #9d9c9c;
	z-index: 10;
	opacity: 0.3;
}

.roots_inner2 h3 {
	position: absolute;
	top: 10%;
	right: -50%;
    width: 600px;
	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: 100;
	opacity: 0.3;
	white-space:break-spaces;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.roots_naka {
	position: relative;
	width: 100%;
	height: 1000px;
	margin: 0 auto;
	display: flex;
	z-index: 2;
}
.roots_imgbox {
	position: absolute;
	top: 10%;
	left: 4%;
	width: 55%;
	aspect-ratio: 16 / 12;
	z-index: 2;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	overflow: hidden;
	border-radius: 10px;
	background-color: #fff;
}

.roots_box1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-image: url(../images/roots_kone3.png);
	opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
}
@keyframes fade {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  80%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    z-index: 0;
  }
}

.roots_box2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-image: url(../images/roots_kone2.png);
	opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
	animation-delay: 4s;
}
.roots_box3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-image: url(../images/roots_kone1.png);
	opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
	animation-delay: 8s;
}

.roots_p {
	position: absolute;
    top: 40%;
    right: 4%;
	width: 80%;
	background-color: rgba(0, 0, 0, .3);
	padding: 5% 0;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
	border-radius: 10px;
}
.kimura {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	text-align: center;
 	font-size: 1.2rem;
	color: #fff;
	padding: 20px 0;
	line-height: 20px;
}
.roots_p1 {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
 	font-size: 1.3rem;
 	line-height: 40px;
	color: #fff;
	padding-top: 10px;
}
 /*==================================================
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(-40px);
	width: 400px;
	height: 80px;
}

.tomole_3ren h1 {
	font-size: 2rem;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.07em;
	white-space: nowrap;
}
.tomole_3ren p {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	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: -120px;
	left: 0;
	background-image: url(../images/color_tes4-2.png);
	background-position: center;
	background-size: cover;
}

.color_inner {
	margin: 50% auto 0;
    transform: translateY(-40px);
	width: 400px;
	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: -100px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n1.png);
	background-size: cover;
	background-position: center;
} 
.hitori_bg2 {
	position: absolute;
	top: 50px;
	right: -200px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n2.png);
	background-size: cover;
	background-position: center;
} 
.hitori_bg3 {
	position: absolute;
	top: 50px;
	right: -200px;
	width: 130%;
	height: 100%;
	background-image: url(../images/hitori_n3.png);
	background-size: cover;
	background-position: center;
} 

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

}

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

.ourstudio {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}
.title_eng {
	position: relative;
	top: 40px;
	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.3rem;
	font-weight: 400;
	line-height: 25px;
	padding: 15px 0 30px;
	color: #000000;
}
.line {
	width: 40px;
	border-bottom: 3px solid #5b5a5a;
	margin: 20px auto 0;
}
.scool {
	position: relative;
	width: 80%;
	height: auto;
	margin: 0 auto;
	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: 55%;
	aspect-ratio: 16 / 10;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
}

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

.os3 {
	position: absolute;
	top: -500px;
	right: -10%;
	width: 50%;
	aspect-ratio: 10 / 12;
	z-index: 3;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	
}
.os4 {
	position: absolute;
	top: -150px;
	left: 0%;
	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: -2%;
	width: 50%;
	height: auto;
    
}
.en4 {
	position: absolute;
	top: -10%;
	left: 10%;
	width: 45%;
	height: auto;
}

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

.cose {
	background: linear-gradient(0deg,  rgb(236, 246, 173), rgb(254, 254, 254));
	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: 80px;
}
.cose_img1 {
	position: relative;
	width: 90%;
	height: auto;
   aspect-ratio: 18 / 8.1;
	margin: 0 5%;
	overflow: hidden;
   background-image: url(../images/cose_1-2.png);
   background-size: cover;
}
.cose_innerl {
	width: 100%;
	height: auto;
}
.cose_line {
    width: 90%;
    height: 1px;
    margin-left: 5%;
    background-color: #0000007b;
}
.cose_r {
	width: 100%;
	height: auto;
	padding-top: 40px;
}

.cose_img2 {
   position: relative;
	width: 90%;
	height: auto;
   aspect-ratio: 18 / 8.1;
	margin: 0 5%;
	overflow: hidden;
   background-image: url(../images/cose_2.png);
   background-size: cover;
}


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

 .title3 p {
 	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: 90%;
 	height: 200px;
 	margin: 0 5%;
 	overflow: hidden;
 }
.cose_img img {
  	display: block;
  	position: absolute;
  	width: 100%;
 }
 .cose_naiyou {
	color: #000;
	width: 450px;
	margin: 60px auto 0;
}

.cose_naiyou h2 {
	font-size: 1.6rem;
	text-align: center;
}

.cose_naiyou_2 {
	padding-top: 60px;
	color: #000;
	width: 450px;
	margin: 0 auto;
}
.cose_naiyou_2 h2 {
	font-size: 1.4rem;
	text-align: center;
}
 .kakaku {
 	position: relative;
 	width: 100%;
 	height: auto;
 	padding: 30px 0 30px;
	letter-spacing: 0.1em;
}
 .kakaku li {
  	text-align: center;
  	font-size: 1.5rem;
  	line-height: 35px;
  	color: #47571C;
}
.chket {
	width: 400px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 20px;
}

.cyuui {
    width: 400px;
    font-size: 1.4rem;
    margin: 0 auto;
	font-weight: 400;
}


.kome {
	font-size: 1.4rem;
	width: 10px;
	float: left;
	line-height: 20px;
}



.jizen {
	font-size: 1.4rem;
}
.dougu {
	margin-bottom: 40px;
}



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

.exp {
	margin-top: 5px;
	font-size: 1.4rem;
	font-weight: 400;
}

.exh {
	font-size: 1.6rem;
}
.exhp {
	font-size: 1.3rem;
}
.naiyou_bottom {
	font-size: 1.4rem;
	font-weight: 500;
	width: 450px;
	margin: 40px auto 0;
	line-height: 22px;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 15px;
}
.cose_naiyou_tuika {
	display: block;
	margin-top: 10px;
}

.jikan {
	width: 270px;
	height: auto;
	font-size: 1.6rem;
	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.4rem;
	width: 100%;
	height: 80px;
	text-align: center;
	margin-top: 40px;
}

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

.contact {
	position: relative;
	width: 100%;
	height: auto;
	color: #000;
	overflow: hidden;
	font-size: 1.6rem;
	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: 30px auto;
	max-width: 1200px;
	padding-bottom: 50px;
}


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

#error_m {
	color: red;
}

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

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

.contact_box2 {
	width: 70%;
	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: 30%;
}

.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.5rem;
}

.contact_img {
	width: 100%;
	margin-top: 40px;
	margin-left: 20%;
}

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

.button {
	display: block;
	width: 140px;
	height: 40px;
	margin: 30px 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.5rem;
}

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

.form_bottom li {
	margin-top: 10px;

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



/*==================================================
インスタグラムページ
===================================*/
.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: 0px auto 80px;
}

.insta_p_min {
	display: none;
}

.widgets {
	max-width: 1000px;
	width: 80%;
	height: auto;
	margin: 100px auto 50px;
	padding: 10px;
	background-color: #fff;
}

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

.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
}

.access_inner {
	width: 96%;
	height: auto;
	margin: 2%;
	padding-top: 1px;
}

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

.map_bottom {
	width: 900px;
	height: 500px;
	margin: 40px auto;
	display: flex;

}

.ad {
	color: #000;
	width: 450px;
	height: 260px;
    font-size: 1.4rem;
}

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

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

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

.map_bottom2 {
	width: 100%;
	aspect-ratio: 9 / 4;
	max-width: 1200px;
	margin: 0 auto;
}

.map_img {
	width: 24%;
	height: auto;
	float: left;
	margin: 0 0.5% 0;
}


/*==================================================
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: 3rem;
}

.qa_lr {
	display: flex;
	margin: 40px 0 80px;
}

.qa_l {
	width: 46%;
	height: auto;
	margin: 0 2%;
}

.qa_r {
	width: 46%;
	height: auto;
	margin: 0 2%;
}

.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;
   }

.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 10rem;
	font-family: 'Noto Sans JP', sans-serif;
}


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

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

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

.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;

}

















