@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Serif JP", serif;
	color: #3f3c3c;
	-webkit-text-size-adjust: 100%;
	line-height: 1.5;
}

/* ＝＝＝＝＝＝＝共通スタイル＝＝＝＝＝＝＝＝ */

p{
	font-size: 1.4rem;
}

h2{
	font-size: 3.6rem;
}

h3{
	font-size: 2.0rem;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

a {
	text-decoration: none;
}

a img:hover {
	opacity: 0.9;
}

.clear {
	clear: both;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.mt-10 {
	margin-top: 10px!important;
}

.mt-15 {
	margin-top: 15px!important;
}

.mt-20 {
	margin-top: 20px!important;
}

.mt-30 {
	margin-top: 30px!important;
}

.mb-10 {
	margin-bottom: 10px!important;
}

.mb-15 {
	margin-bottom: 15px!important;
}

.mb-20 {
	margin-bottom: 20px!important;
}

.mb-25 {
	margin-bottom: 25px!important;
}

.mb-30 {
	margin-bottom: 30px!important;
}

.mb-35 {
	margin-bottom: 35px!important;
}

.mb-40 {
	margin-bottom: 40px!important;
}

.pc{
	display: block;
}

.sp{
	display: none;
}

img.pc{
	margin: 0 auto;
}

@media screen and (max-width: 750px) {

	.sp{
		display: block;
	}
	
	.pc{
		display: none;
	}
	
	img.sp{
	margin: 0 auto;
}
	
}

.ani {
	animation: ani 2s infinite;
}
@keyframes ani {
	0% {
		transform: translate(0px, 2px);
	}
	5% {
		transform: translate(0px, -2px);
	}
	10% {
		transform: translate(0px, 2px);
	}
	15% {
		transform: translate(0px, -2px);
	}
	20% {
		transform: translate(0px, 2px);
	}
	25% {
		transform: translate(0px, -2px);
	}
	30% {
		transform: translate(0px, 0px);
	}
}

.fadeIn {
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}

.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

#header{
	background-image: url("../img/bg-kv.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000000;
}

#header .header-inner{
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

#header h1{
	padding-top: 10px;
}

#header #kv{
	text-align: center;
	padding: 195px 0px;
}

#header .menu{
	position: absolute;
	top: 0;
	right: 0;
	padding: 20px 0px;
}

#header .menu li{
	float: left;
	padding: 0 10px;
}

#header .menu li a{
	color: #fff;
	font-size: 16px;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
	position: relative;
	width: 3rem;
	height: 3rem;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 999;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2rem;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
}

.drawer__button > span:first-child {
	transform: translate(-50%, calc(-50% - 0.5rem));
	transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
	transform: translate(-50%, calc(-50% + 0.5rem));
	transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active > span:nth-child(2) {
	opacity: 0;
}

.drawer__button.active > span:last-child {
	transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
	position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #000;
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
}
.drawer__nav.active {
	opacity: 1;
	visibility: visible;
}
.drawer__nav__inner {
	position: relative;
	width: 80%;
	height: 100%;
	background-color: #222;
	color: #fff;
	padding: 4rem 1.5rem 1rem;
	margin: 0 0 0 auto;
	overflow: scroll;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 9;
}
.drawer__nav.active .drawer__nav__inner {
	transform: translateX(0);
}
.drawer__nav__menu {
	list-style: none;
	padding-left: 0;
}
.drawer__nav__link {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 1rem 1rem;
	border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
	body.active {
	height: 100%;
	overflow: hidden;
}

.inner{
	width: 750px;
	max-width: 100%;
	margin: 0 auto;
	padding: 50px 0;
}

#concept{
	background-color: #000000;
}

#concept h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#concept p{
	color: #fff;
}

#concept .box .left{
}

#concept .box .right{
	text-align: right
}

#concept .photo{
	margin-top: 50px;
}

#concept .photo li{
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

#concept .photo li:nth-child(4),
#concept .photo li:nth-child(8){
	margin-right: 0px;
}

#concept .box{
	display: table;
	width: 100%;
}

#concept .box .left{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

#concept .box .right{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

#works{
	background-image: url("../img/bg-02.jpg");
	background-position: center;
	background-repeat: no-repeat;
}

#works h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#works {
	color: #fff;
}

#works .box h3{
	margin-bottom: 10px;
}

#works .box__01{
	display: flex;
}

#works .box__01 .left{
	display: block;
	width: 50%;
}

#works .box__01 .right{
	display: block;
	width: 50%;
	padding-top: 60px;
}


#works .box span{
	font-size: 1.2rem;
}

#works .box__02{
	margin-top: 30px;
	display: flex;
}

#works .box__02 .left{
	display: block;
	text-align: right;
	width: 50%;
	order: 2;
}

#works .box__02 .right{
	display: block;
	width: 50%;
	text-align: right;
	order: 1;
	padding-top: 60px;
}

#works .box__03{
	display: flex;
	margin-top: 30px;
}

#works .box__03 .left{
	display: block;
	width: 50%;
}

#works .box__03 .right{
	display: block;
	width: 50%;
	padding-top: 60px;
}

#about{
	background-color: #000000;
}

#about h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#about p{
	color: #fff;
}

#about h3{
	color: #cfc0b0;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

#about span{
	font-size: 1.2rem;
}

#spot {
	background-image: url("../img/bg-04.jpg");
	background-position: center;
	background-repeat: no-repeat;
}

#spot h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#spot {
	color: #fff;
}

#spot .box__01{
	display: flex;
}

#spot .box__01 .left{
	display: block;
	width: 50%;
}

#spot .box__01 .right{
	display: block;
	width: 50%;
	padding-top: 60px;
}


#spot .box span{
	font-size: 1.2rem;
}

#spot .box__02{
	margin-top: 30px;
	display: flex;
}

#spot .box__02 .left{
	display: block;
	text-align: right;
	width: 50%;
	order: 2;
}

#spot .box__02 .right{
	display: block;
	width: 50%;
	text-align: right;
	order: 1;
	padding-top: 40px;
}

#spot .box__03{
	display: flex;
	margin-top: 30px;
}

#spot .box__03 .left{
	display: block;
	width: 50%;
}

#spot .box__03 .right{
	display: block;
	width: 50%;
	padding-top: 40px;
}

#spot a{
	color: #fff;
}

#price{
	background-color: #000000;
}

#price h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#price p{
	color: #fff;
}

#price h3{
	color: #fff;
}

.price-box01{
	float: left;
	width: 365px;
	margin-right: 20px;
	border: 1px solid #fff;
	box-sizing: border-box;
	text-align: center;
	padding: 30px 10px;
}

.price-box02{
	float: left;
	width: 365px;
	border: 1px solid #fff;
	box-sizing: border-box;
	text-align: center;
	padding: 30px 10px;
	position: relative;
}

#price hr{
	width: 30px;
	margin: 15px auto;
}

.price-plan{
	font-size: 1.2rem;
}

.price-fee{
	font-size: 4.6rem;
}

.price-fee em{
	font-size: 1.0rem;
	font-style: normal;
}

.price-box02 i{
	position: absolute;
	right: 0;
	top: 0;
	background-color: #866644;
	color: #fff;
	font-size: 1.2rem;
	font-style: normal;
	padding: 10px;
}

.price-op{
	border: 1px solid #fff;
	color: #fff;
	margin-top: 20px;
	font-size: 1.4rem;
	padding: 10px;
}

.price-op li{
	float: left;
	width: 50%;
	display: table;
	padding: 0 10px;
	box-sizing: border-box;
}


.price-op li span{
	display: table-cell;
	width: 60%
}

.price-op li span i{
	font-style: normal;
	font-size: 1.0rem;
}

.price-op li em{
	display: table-cell;
	width: 40%;
	text-align: right;
	font-style: normal;
}

#free {
	background-image: url("../img/bg-06.jpg");
	background-position: center;
	background-repeat: no-repeat;
}

#free h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#free{
	color: #fff;
}

#free h3{
	color: #cfc0b0;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

#flow{
	background-color: #000000;
}

#flow h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#flow p{
	color: #fff;
}

.flow-box{
	border: 1px solid #fff;
	width: 100%;
	display: table;
	padding: 20px 0;
}

.flow-box .flow-step{
	color: #fff;
	display: table-cell;
	width: 20%;
	text-align: center;
	vertical-align: middle;
}

.flow-box .flow-txt{
	color: #fff;
	display: table-cell;
	width: 80%;
	vertical-align: middle;
}

#free{
	background-size: cover;
}

#faq{
	background-size: cover;
}

#flow .flow-step p{
	font-size: 1.4rem;
	color: #cfc0b0;
}

#faq {
	background-image: url("../img/bg-08.jpg");
	background-position: center;
	background-repeat: no-repeat;
}

#faq h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#faq{
	color: #fff;
}

#faq dl{
	font-size: 1.4rem;
}

#faq dl dt{
	margin-bottom: 20px;
	text-decoration: underline;
}

#faq dl dd{
	margin-bottom: 20px;
}

#contact{
	background-color: #000000;
	text-align: center;
}

#contact h2{
	color: #cfc0b0;
	text-align: center;
	margin-bottom: 50px;
}

#contact p{
	color: #fff;
}

.contact-btn{
	margin-top: 50px;
}

.contact-btn a{
	background-color: #866644;
	color: #fff;
	padding: 15px 50px;
	border-radius: 5px;
}

.contact-tel{
	margin-top: 50px;
}

.contact-tel a{
	color: #fff;
}

footer{
	text-align: center;
	padding: 50px 0;
}

footer p{
	font-size: 1.0rem;
}

fieldset{
	border: none;
}

.wpcf7{
	margin-top: 20px;	
}

.wpcf7-not-valid-tip{
	display: block;
	color: #cfc0b0;
}

#wpcf7-f9961-o1-ve-your-name,
#wpcf7-f9961-o1-ve-your-email,
#wpcf7-f9961-o1-ve-tel-398{
	display: none;
}

.wpcf7-response-output{
	color: #cfc0b0;
}

#wpcf7-f9961-o1 input,
#wpcf7-f9961-o1 textarea{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

#wpcf7-f9961-o1 p{
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	
	h2{
		font-size: 2.8rem;
	}
	
	#header{
		background-size:cover; 
	}
	
	#header h1{
		text-align: center;
	}
	
	.drawer__button{
		left: 30px;
		top: -20px;
	}
	
	.header-inner{
		padding: 0 10px;
		box-sizing: border-box;
	}
	
	.inner{
		padding: 50px 10px;
		box-sizing: border-box;
	}
	
	#concept .box{
		display: block;
	}
	
	#concept .box .left{
		display: block;
		width: 100%;
	}
	
	#concept .box .right{
		display: block;
		width: 100%;
		text-align: center;
		margin-top: 20px;
	}
	
	#concept .photo{
		max-width: 350px;
		margin: 10px auto 0;
	}
	
	#concept .photo li{
		width: 50%;
		margin-right: 0;
		margin-bottom: 0;
	}
	
	#works{
		background-size: cover;
	}
	
	#works .box__01{
		display: block;
		text-align: center;
	}
	
	#works .box__01 .left{
		width: 100%;
	}
	
	#works .box__01 .right{
		padding-top: 10px;
		width: 100%;
	}
	
	#works .box__02{
		display: block;
		text-align: center;
		margin-top: 50px;
	}
	
	#works .box__02 .left{
		width: 100%;
		order: 0;
		text-align: center;
	}
	
	#works .box__02 .right{
		padding-top: 10px;
		width: 100%;
		order: 0;
		text-align: center;
	}
	
	#works .box__03{
		display: block;
		text-align: center;
		margin-top: 50px;
	}
	
	#works .box__03 .left{
		width: 100%;
	}
	
	#works .box__03 .right{
		padding-top: 10px;
		width: 100%;
	}
	
	#spot{
		background-size: cover;
	}
	
	#spot .box__01{
		display: block;
		text-align: center;
	}
	
	#spot .box__01 .left{
		width: 100%;
	}
	
	#spot .box__01 .right{
		padding-top: 10px;
		width: 100%;
	}
	
	#spot .box__02{
		display: block;
		text-align: center;
		margin-top: 50px;
	}
	
	#spot .box__02 .left{
		width: 100%;
		order: 0;
		text-align: center;
	}
	
	#spot .box__02 .right{
		padding-top: 10px;
		width: 100%;
		order: 0;
		text-align: center;
	}
	
	#spot .box__03{
		display: block;
		text-align: center;
		margin-top: 50px;
	}
	
	#spot .box__03 .left{
		width: 100%;
	}
	
	#spot .box__03 .right{
		padding-top: 10px;
		width: 100%;
	}
	
	.price-box01{
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
	
	.price-box02{
		float: none;
		width: 100%;
	}
	
	.price-op li{
		float: none;
		width: 100%;
	}
	
}

@media screen and (max-width: 400px) {
	
	#header #kv {
		text-align: center;
		padding: 70px 50px;
	}
	
	#concept h2,
	#works h2,
	#about h2,
	#spot h2,
	#price h2,
	#free h2,
	#flow h2,
	#faq h2{
		margin-bottom: 30px;
	}
	
	.flow-box .flow-step{
		width: 30%;
	}
	
	#flow .flow-box .flow-txt{
		width: 70%;
		padding: 10px;
	}
	
	#flow .flow-box .flow-txt p{
		font-size: 1.2rem;
	}
	
	#flow .flow-step p{
		font-size: 1.2rem;
	}
	
	#flow h3{
		font-size: 1.6rem;
	}
	
}

