@charset "UTF-8";
/* CSS Document */



/* ===============================================
#base
=============================================== */
body{
	box-sizing: border-box;
	position: relative;
	background: #fff;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
h2{
	font-size: 1.8125rem;
}
p{
	font-size: 0.875rem;
	line-height: 2;
	font-weight: 300;
}

@media (min-width: 769px) {
	h2{
		font-size: 3rem;
	}
	p{
		font-size: 1rem;
		line-height: 2;
		font-weight: 300;
	}
}

/* ===============================================
#wrapper
=============================================== */
.wrapper{
	padding: 0 26px;
	max-width: 1000px;
	margin: 0 auto;
}

/* ===============================================
#top
=============================================== */
.top{
	width: 100%;
	z-index: -10;
	position: relative;
	padding-top: 80px;
	background: url(../../assets/images/top-img_sp.jpg);
	background-position: top right;
	background-size: contain;
	background-repeat: no-repeat;
}
.top h1{
	width: 150px;
	padding-bottom: 130px;
}
.top p{
	font-size: 1.25rem;
	padding-bottom: 20px;
	color: #666;
	letter-spacing: 0.2rem;
	font-weight: 100;
}
.scroll{
	position: absolute;
	width: 8px;
	margin: 0 auto;
	left: 50%;
	bottom: -50px;
}
@media (min-width: 769px) {
	.top{
		background: url(../../assets/images/top-img_pc.jpg),linear-gradient(90deg, #fff 0%, #fff 50%, #ebeded 50%, #ebeded 100%);
		background-position: 50% 0%;
		background-size: auto 100%;
		background-repeat: no-repeat;
	}
	.top p{
		font-size:  1.75rem;
		padding-bottom: 80px;
		font-weight: 100;
	}
	.scroll{
		bottom: -120px;
	}
}

/* ===============================================
#lead
=============================================== */
.lead{
	padding-top:110px;
	padding-bottom: 80px;
	background-image: url(../../assets/images/lead-img_sp.jpg);
	background-position: bottom left;
	background-size: contain;
	background-repeat: no-repeat;
}
.lead p{
	color: #666;
}

@media (min-width: 769px) {
	.lead{
		background-image: none;
		padding-top:200px;
		padding-bottom: 120px;
	}
}

/* ===============================================
#service
=============================================== */
/* #section-ttl
----------------------- */
.section-ttl{
	margin-left: 15px;
	padding-bottom: 45px;
	color: #a7a8a9;
}

/* #ttl-ruby
----------------------- */
.ttl-ruby {
	margin-left: 15px;
	position: relative;
	color: #666;
}
.ttl-ruby::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #a7a8a9;
}
.ttl-ruby span {
  position: relative;
  padding: 0 1em 0 0;
  background: #fff;
}

@media (min-width: 999px) {
	.section-ttl{
		margin-left:calc(50% - 500px);
	}
	.ttl-ruby{
		margin-left:calc(50% - 500px);
	}
}

.service{
	padding-top: 26px;
	padding-bottom: 42px;
	background: #808080;
	width: 100%;
	top: 0;
	left: 0;
}
.service p,h3,h4{
	color: #fff;
}
.service h4{
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
}
.service-txt{
	padding-bottom: 54px;
}
.service .ttl-ruby span{
	position: relative;
	padding: 0 1em 0 0;
	background: #808080;
}

@media (min-width: 769px) {
	.service{
		padding-top: 120px;
		padding-bottom: 120px;
		width: 100%;
	}
	.service h4{
		font-size: 1.0625rem;
	}
}

/* ===============================================
#service > reset,move
=============================================== */
.reset,.move{
	position: relative;
	padding: 46px 0 40px;
}
.reset::before,.move::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0px;
	width: 100%;
	height: 1px;
	background-color: #a7a8a9;
}
.course{
	position: relative;
	text-align: center;
	padding-bottom: 20px;
}
.price{
	position: relative;
}
.price::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: -6px;
	left: calc(50% - 20px);
	width: 40px;
	height: 1px;
	background-color: #fff;
}
.course h3{
	font-size: 1.25rem;
	font-weight: 600;
}
.course h3 span{
	color: #d9e021;
}
.course p{
	margin-bottom: 14px;
}
.course p span{
	font-size: 1.21875rem;
}

@media (min-width: 769px) {
	.course h3{
		font-size: 1.3125rem;
	}
	.course p{
		font-size: 1rem;
	}
	.course p span{
		font-size: 1.28125rem;
	}
}

/* ===============================================
#photos
=============================================== */
.photos .wrap{
	display: flex;
	align-items: center;
	height: 130px;
	overflow: hidden;
}
.photos .slideshow{
	display: flex;
	animation: loop-slide 60s infinite linear 1s both;
}
.photos .slideshow li{
	width: 195px;
	height: 130px;
}
.photos .slideshow li img{
	width: 100%;
	height: auto;
}

@media (min-width: 769px) {
	.photos .wrap {
		height: 330px;
	}
	.photos .slideshow li{
		width: 495px;
		height: 330px;
	}
}

@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}


/* ===============================================
#contact
=============================================== */
.contact{
	padding: 30px 0 35px;
	background: #808080;
	background-image: url(../../assets/images/contact-img_sp.jpg);
	background-position: 50% 0%;
	background-size: cover;
	background-repeat: no-repeat;
}
.contact .b_hours{
	color: #fff;
	margin: 0 auto 25px;
	border-spacing: 0;
	border-collapse: collapse;
}
.contact .b_hours th{
	font-weight: normal;
	text-align: center;
	font-size: 0.8rem;
	padding: 7px;
	border-right: 1px solid #fff;
}
.contact .b_hours th:last-child{
	border-right: none;
}
.contact .b_hours td{
	text-align: center;
	font-size: 0.8rem;
	padding: 7px;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;;
}
.contact .b_hours td:last-child{
	border-right: none;
}
.contact .links li{
	display: block;
	margin: 0 auto;
	width: 260px;
	text-align: center;
}
.contact .links li:last-child{
	margin: 20px auto 0;
}
.contact-txt{
	color: #fff;
}
.btn_01 {
	width: 260px;
	margin: 0 auto;
}
.btn_01 > a{
	margin: 10px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	position: relative;
	background: #fff;
	border-radius: 30px;
	color: #666;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	transition-duration: 0.3s;
	font-weight: 600;
}
.btn_01 > a:hover{
	background: #666;
	color: #fff;
}

@media (min-width: 769px) {
	.contact{
		padding: 55px 0;
		background-color: #8e8e91;
		background-image: url(../../assets/images/contact-img_pc.jpg);
		background-position: 50% 0%;
		background-size: auto 100%;
		background-repeat: no-repeat;
	}
	.contact .b_hours{
		margin: 0 auto 40px;
	}
	.contact .b_hours th{
		font-size: 1rem;
		padding: 20px;
	}
	.contact .b_hours td{
		font-size: 1rem;
		padding: 20px;
	}
	.contact .links{
		width: 600px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		text-align: left;
	}
	.contact .links li{
		margin: 0;
	}
	.contact .links li:last-child{
		margin: 0;
	}
	.btn_01 > a{
		margin: 25px auto 0;
		height: 70px;
		border-radius: 40px;
	}
}

/* ===============================================
#address
=============================================== */
.address{
	position: relative;
	padding: 30px 0;
	background: #fff;
	color: #666;
}
.address .guidance{
	color: #a7aaa9;
	text-align: center;
}
.address .address-logo img{
	display: block;
	margin: 20px auto;
	width: 270px;
}
.address .info{
	display: block;
	text-align: center;
}
.address p span{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 0.8;
}
.address .instagram{
	font-size: 0.75rem;
	color: #acafaf;
	margin-top: 25px;
}
.address .instagram a{
	position: relative;
	display: block;
	padding-top: 40px;
}
.address .instagram a::before{
	content: '';
	display: block;
	position: absolute;
	background: url(../../assets/images/instagram-logo.svg) no-repeat;
	background-size: contain;
	top: 0;
	left: calc(50% - 18px);
	width: 36px;
	height: 36px;
}

@media (min-width: 769px) {
	.address{
		padding: 20px 0;
		background: url(../../assets/images/address-img_pc.jpg);
		background-position: 50% 0%;
		background-size: auto 100%;
		background-repeat: no-repeat;
	}
	.address::before{
		content: '';
		display: block;
		position: absolute;
		background: url(../../assets/images/address-bg_pc.jpg) repeat-x;
		background-size: contain;
		top: 0;
		left: 50%;
		width: 50%;
		height: 100%;
		z-index: -1;
	}
	.address .address-logo img{
		margin: 30px auto;
		width: 330px;
	}
	.address .info{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		text-align: left;
	}
	.address .instagram{
		margin-top: 0;
	}
}

/* ===============================================
#footer
=============================================== */
.footer{
	position: relative;
	padding: 40px 0 20px;
	background: #808080;
	color: #fff;
}
.copyright{
	text-align: center;
	font-size: 0.8rem;
}

/* page-top */
#page-top{
	width: 60px;
	position: absolute;
	bottom: 0;
	right: 0;
}
#page-top img{
	width: 100%;
	height: auto;
}

