@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: 200px;
	width: 300px;
	height: 105px;
	background-color: #12151da3;
	z-index: 100;
	transition: all 1s ease-in-out;
}
#boshu.on {
	transition: all 1s ease-in-out;
	bottom: -100%;
}
#boshu_img {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 120px;
	height: 80px;
	overflow: hidden;
}
#boshu img {
    width: 100%;
}

#boshu_ul {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	right: 35px;
	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: 400px;
	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-3.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: 3%;
	left: 4%;
	width: 70px;
	z-index: 100;
}
.logo1 img {
	width: 100%;
}
.logo1 p {
	font-size: 1.1rem;
	letter-spacing: 0.5em;
	line-height: 15px;
}

.logo1link {
	display: flex;
	align-items: center;
}



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

.menu {
	margin-top: 100px;
}

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


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


/*============スクロールアイコン===============*/
.scrolldown1{
  position:absolute;
  width: 100px;
  height: 140px;
  left:50px;
  bottom:5%;
}
.scrolldown_min {
	display: none;
}

/*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-time4{
animation-delay: 9.4s;
}


.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: 25%;
	right: 250px;
	width: 300px;
	height: 100px;
	text-align: center;
	text-shadow: 1px 1px 2px #7c7b7b;
}

.t1 {
	transform: translateY(-70px);
	height: 130px;
}

.yorokobi {
	font-size: 1.5rem;
	margin-bottom: 20px;
	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;
}
.shadow {
	width: 100%;
	height: 650px;
}
.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.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: 100;
 	text-align: center;
 	font-size: 1.3rem;
 	line-height: 45px;
 	padding: 15px 0 20px;
	letter-spacing: 0.05em;
 }
 .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: 150px;
	height: auto;
	bottom: 20%;
	right: 12%;
	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: 110px;
	height: auto;
	margin: 0 auto;
 }

 .rokuro {
	position: absolute;
	width: 200px;
	height: auto;
	bottom: 20%;
	left: 12%;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 10px;
	display: block;
 }
 .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: 180px;
	height: auto;
	margin: 0 auto;
 }



 /*==================================================
rootsページ
===================================*/
 .roots {
 	width: 100%;
 	height: auto;
	background-color: #bfb8ad;
 }

 .roots_inner {
	position: relative;
	top: 0;
	left: 0;
 	width: 	100%;
 	height: 350px;
	overflow: hidden;
 }
 .roots_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 350px;
 }
 .roots_bg img {
	width: 100%;
	height: auto;

 }


 .roots_inner h1 {
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translateY(-50%);
	height: 180px;
	font-size: 4rem;
	text-align: center;
	font-weight: 500;
	color: #fff;
	line-height: 60px;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	text-shadow: 1px 1px 2px #6e6e6e;
}

.roots_inner h1 span {
	font-weight: 700;
	font-size: 5.5rem;
}
.yaji {
	position: absolute;
	top: 30px;
	left: 400px;
	width: 40%;
	height: auto;
	margin-top: 110px;
	margin-left: 5%;
}
.yaji img{
	width: 100%;
	height: auto;
}
.roots_inner2 {
	width: 100%;
    position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
}
.roots_inner2 h2 {
	position: absolute;
	bottom: 15%;
	left: 10%;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 16rem;
	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: 8%;
	right: -10%;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 14rem;
	font-weight: 800;
	letter-spacing: 0.07rem;
	color: #555454;
	text-shadow: 1px 1px 2px #9d9c9c;
	z-index: 1;
	opacity: 0.1;
	white-space: nowrap;
}

.roots_naka {
	width: 80%;
	height: 800px;
	margin: 0 auto;
	display: flex;
	z-index: 2;
}
.roots_imgbox {
	position:relative;
	top: 26%;
	left: 5%;
	width: 40%;
	height: 23vw;
	z-index: 2;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	overflow: hidden;
	border-radius: 20px;
	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: 13%;
	left: 40%;
	width: 50%;
	background-color: rgba(0, 0, 0, .3);
	padding-top: 40px;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
}
.kimura {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 100;
	text-align: center;
 	font-size: 1.3rem;
	color: #fff;
	padding: 40px 0;
	line-height: 30px;
}
.roots_p1 {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
	text-align: center;
 	font-size: 1.3rem;
 	line-height: 40px;
	color: #fff;
	padding-top: 20px;letter-spacing: 0.05em;
}
 /*==================================================
3つの並びページ
===================================*/


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

.joy_inner {
	margin: 27% auto 0;
	width: 400px;
	height: 100px;
}

.tomole_3ren h1 {
	font-size: 2.5rem;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.07em;
	white-space: nowrap;
}
.tomole_3ren p {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.5rem;
	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 / 10;
	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: 100%;
}

.color_inner {
	margin: 28% auto;
	width: 450px;
	height: 100px;
}

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

.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: -300px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n2.png);
	background-size: cover;
	background-position: center;
} 
.hitori_bg3 {
	position: absolute;
	top: 50px;
	right: -300px;
	width: 115%;
	height: 100%;
	background-image: url(../images/hitori_n3.png);
	background-size: cover;
	background-position: center;
} 

.hitori_inner {
	margin-top: 25%;
	margin-left: 10%;
	width: 450px;
	height: 100px;
}

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

.ourstudio {
	position: relative;
	width: 100%;
	
	overflow: hidden;
	aspect-ratio: 16 / 13;
}
.title_eng {
	position: relative;
	top: 50px;
	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: 3.5rem;
 	letter-spacing: 0.02em;
 	text-align: center;
 	padding: 35px 0 0;
 	line-height: 30px;
	color: #000;
 }
 .title_eng p {
	font-family: 'IBM Plex Sans JP', sans-serif;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 300;
	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;
	max-width: 1700px;
}

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

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

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

.os3 {
	position: absolute;
	top: -600px;
	right: 0;
	width: 33%;
	aspect-ratio: 10 / 12;
	z-index: 3;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .5);
	
}
.os4 {
	position: absolute;
	top: -100px;
	left: 14%;
	width: 40%;
	aspect-ratio: 10 / 11;
	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: 40%;
	height: auto;
}
.en4 {
	position: absolute;
	top: 0;
	left: 32%;
	width: 32%;
	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: 90%;
	min-width: 769px;
	height: auto;
	margin: 60px auto;
	display: flex;
	max-width: 1000px;
}
.cose_l {
	width: 45%;
	height: auto;
	margin: 0 2.5%;
	padding-top: 40px;
}
.cose_innerl {
	width: 96%;
	height: auto;
	margin-left: 2%;
}
.cose_r {
	width: 45%;
	height: auto;
	margin: 0 2.5%;
	padding-top: 40px;
}

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

 .title3 p {
	font-family: 'Noto Sans JP', sans-serif;
 	text-align: center;
 	font-size: 1.3rem;
 	font-weight: 300;
 	line-height: 25px;
 	padding: 15px 0 30px;
	color: #000000;
	letter-spacing: 0.02em;
	height: 120px;
 }
 .cose_img1 {
 	position: relative;
 	width: 96%;
 	height: auto;
	aspect-ratio: 18 / 8.1;
 	margin: 0 2%;
 	overflow: hidden;
	background-image: url(../images/cose_1-2.png);
	background-size: cover;
 }
.cose_img img {
  	display: block;
  	position: absolute;
  	width: 100%;
 }
 .cose_img2 {
	position: relative;
	width: 96%;
	height: auto;
   aspect-ratio: 18 / 8.1;
	margin: 0 2%;
	overflow: hidden;
   background-image: url(../images/cose_2.png);
   background-size: cover;
}
.cose_naiyou {
	color: #000;
	width: 310px;
	margin: 50px auto 0;
}

.cose_naiyou h2 {
	font-size: 1.8rem;
	text-align: center;
}
.cose_naiyou_2 {
	color: #000;
	width: 310px;
	margin: 50px auto 0;
}
.cose_naiyou_2 h2 {
	font-size: 1.8rem;
	text-align: center;

}

 .kakaku {
 	position: relative;
 	width: 100%;
 	height: auto;
 	padding: 30px 0 30px;
}
 .kakaku li {
  	text-align: center;
  	font-size: 1.5rem;
  	line-height: 35px;
  	color: #47571C;
}


.cyuui {
    width: 310px;
    height: auto;
    font-size: 1.4rem;
    margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 30px;
}



.chket {
	width: 310px;
	line-height: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	margin-bottom: 20px;
}

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

.naiyou_bottom {
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	width: 310px;
	margin: 40px auto 0;
	line-height: 22px;
	box-shadow: inset 0 5px 10px 0 rgba(0, 0, 0, .5);
	padding: 15px;
}

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

.exp {
	margin-top: 5px;
	margin-left: 20px;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}
.exp span {
	color: #47571C;
}


.exh {
	font-size: 1.8rem;
}
.exhp {
	font-size: 1.3rem;
}
.cose_naiyou_tuika {
	display: block;
	margin-top: 10px;
}

.jikan {
	width: 270px;
	height: auto;
	font-size: 1.8rem;
	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;
}

.fumei {
	color: #000;
	font-size: 1.6rem;
	width: 100%;
	height: 80px;
	text-align: center;
	margin-top: 40px;
}
.taiken_p {
	font-size: 1.4rem;
	font-weight: 300;
	font-family: 'Noto Sans JP', sans-serif;
}
.taiken_p p {
	margin-bottom: 20px;
}

/*==================================================
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: 0 auto;
	max-width: 1200px;
	padding-bottom: 50px;
}


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

#error_m {
	color: red;
}

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

.contact_box {
	width: 280px;
	margin: 0 auto;
}

.contact_box2 {
	width: 280px;
	height: auto;
	margin: 0 auto;
}

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

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

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

table {
	width: 60%;
	height: 200px;
	margin: 20px 20%;
}

.label {
	font-weight: 300;
	line-height: 30px;
}

.puru {
	height: 30px;
}

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: 10%;
}

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

.button {
	display: block;
	width: 140px;
	height: 40px;
	margin: 60px 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: 710px;
	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 40px;
	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: 0 auto 100px;
}
.insta_p_min {
	display: none;
}

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

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

.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.5rem;
	background-color:#fff;
}

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

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

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

}

.ad {
	color: #000;
	width: 550px;
	height: 260px;
}

.ko {
	font-weight: 400;
	margin-bottom: 7px;
	margin-top: 30px;
}

.otu {
	margin-bottom: 10px;
	padding-left: 10px;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: 0.05rem;
}

.ad_img {
	width: 300px;
	height: 260px;
	padding: 30px 0 0 0;
	margin-left: 20px;
}

.map_bottom2 {
	width: 80%;
	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.3rem;
	font-family: 'Noto Sans JP', sans-serif;
}

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

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

.qa_l {
	width: 44%;
	height: auto;
	margin: 0 3%;
}

.qa_r {
	width: 44%;
	height: auto;
	margin: 0 3%;
}

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

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


   /*==================================================
footerページ
===================================*/
.foot {
	position: relative;
	width: 100%;
	min-width: 700px;
	height: 400px;
	background-color: #846E5E;
	overflow: hidden;
	font-size: 1.6rem;
	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;
}

.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;
	min-width: 100px;
}
.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;

}

















