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




/*----------------------------------------
	トップページ上
----------------------------------------*/
.slick001 img {
	height: 70vh;
	object-fit: cover;
}
@media (min-width:769px){
	.slick001 img {
		width: 100vw;
		height: 100vh;
		object-fit: cover;
	}
}
.top_area{
	height:70vh;
	background-image:linear-gradient(135deg, rgba(34, 34, 34, 0.2) 48%, rgba(201, 175, 141, 0.2) 49%, rgba(201, 175, 141, 0.2) 51%, rgba(34, 34, 34, 0.2) 52%, rgba(34, 34, 34, 0.2));
	background-size:10px 10px;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	color: #ffffff;
}
@media (min-width:769px){
	.top_area{
		height:100vh;
	}
}
.fv_text_in{
	display:table;
	margin: 0 10px;
	animation: SlideIn 1.6s;
}

@media (min-width:769px){
	.fv_text_in{
		margin-left: 50%;
		margin-right: 10px;
		width: 50%;
		padding-left: 20px;
	}
}
/* CSSアニメーションの設定 */
@keyframes SlideIn {
	0% {
		opacity: 0;/*初期状態では透明に*/
		transform: translateX(64px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}





/*----------------------------------------
	コンセプト
----------------------------------------*/

.concept_flame{
	width: 100%;
}
.contact_left{
	width: 100%;
}
.contact_right{
	width: 100%;
	height: 100%;
}
.contact_right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width:769px){
.concept_flame{
	width: 100%;
	position: relative;
}
	.contact_left{
		width: 50%;
		float: left;
	}
	.contact_right{
		width: 50%;
		float: left;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 50%;
	}
}
.cl_top{
	width: 100%;
	background-color: #923F00;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding: 10px;
	color: #fff;
	background: url("../images/background_concept.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
}

@media (min-width:769px){
	.cl_top{
		padding: 40px;
	}
}

.cl_btm{
	width: 100%;
	padding: 20px;
}
@media (min-width:769px){
	.cl_btm{
		padding: 60px 40px 60px 40px;
	}
}
.cl_btm_txt{
	padding-bottom: 60px;
}





/*----------------------------------------
	メニュー
----------------------------------------*/

.menu_flame{
	width: 100%;
	background-color:aliceblue;
	background: url("../images/background_menu.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	color: #666;
}

.menu_cont_in{
	margin: 0 auto;
	padding-bottom: 30px;
}

.menu_left{
	width: 100%;
}
.left_img1{
	width: 100%;
	padding-bottom: 10px;
	float: left;
}
.left_img2{
	width: 48.5%;
	float: left;
}
.left_img3{
	width: 48%;
	float: right;
}
@media (min-width:769px){
	.menu_left{
		width: 670px;
		float: left;
	}
	.left_img1{
		width: 670px;
		padding-bottom: 10px;
		float: left;
	}
	.left_img2{
		width: 330px;
		margin-right: 10px;
		float: left;
	}
	.left_img3{
		width: 330px;
		float: left;
	}
}
.menu_right{
	width: 100%;
}

@media (min-width:769px){
	.menu_right{
		width: 500px;
		padding-left: 30px;
		float: left;
	}

}

.menu_table{
	margin: 25px 0 50px;
}
.menu_table th {
	width: 350px;
	padding: 25px 10px 25px 0;
	text-align: left;
	font-size: 18px;
	border-bottom: 2px solid #362e2b;
}
.menu_table td {
	width: 120px;
	padding: 25px 0;
	text-align: right;
	font-size: 16px;
	border-bottom: 2px solid #764f38;
}





/*----------------------------------------
	お問い合わせ
----------------------------------------*/

.contact_cont{
	background-color: burlywood;
	text-align: center;
	color: #ffffff;
	background: url("../images/background_contact.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
}
.contact_catch{
	color: #ffffff;
}
.contact_time{
	padding: 10px 0;
}
.contact_address{
	padding: 10px 0;
}





/*----------------------------------------
	FAQ
----------------------------------------*/

.faq_wrapper{

}

.common_faq{
	width: 100%;
	margin: 0 auto;
}
ul.faq_list {
	margin-bottom: 40px;
}
ul.faq_list li {
	margin-bottom: 50px;
	border-bottom: 1px solid #b2b2b2;
	position: relative;
}
ul.faq_list li .faq_q .faq_q_in {
	font-weight: bold;
	margin-left: 80px;
}
ul.faq_list li .faq_a .faq_a_in {
	margin-left: 80px;
}
@media (min-width:769px){
	ul.faq_list li .faq_q .faq_q_in {
		font-weight: bold;
		margin-left: 130px;
	}
	ul.faq_list li .faq_a .faq_a_in {
		margin-left: 130px;
	}
}
ul.faq_list li .faq_q {
	position: relative;
	left: 0;
	font-size: 2.0rem;
	margin-bottom: 10px;
	min-height: 60px;
	display: flex;
	align-items: center;
}
ul.faq_list li .faq_q:before {
	content: "Q";
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	font-size: 9vw;
	background-color: #764f38;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.faq_list li .faq_a {
	position: relative;
	left: 0;
	font-size: 2.0rem;
	margin-bottom: 10px;
	min-height: 60px;
	display: flex;
	align-items: center;
}
ul.faq_list li .faq_a:before {
	content: "A";
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	font-size: 9vw;
	background-color: #ffffff;
	color: #764f38;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (min-width:769px){
	ul.faq_list li .faq_q {
		margin-bottom: 30px;
		min-height: 100px;
	}
	ul.faq_list li .faq_q:before {
		width: 100px;
		height: 100px;
		font-size: 6.5rem;
	}
	ul.faq_list li .faq_a {
		margin-bottom: 30px;
		min-height: 100px;
	}
	ul.faq_list li .faq_a:before {
		width: 100px;
		height: 100px;
		font-size: 6.5rem;
	}
}




/*----------------------------------------
	アクセス
----------------------------------------*/


.access_wrapper{
	background-color: #f3f3f3;
	color: #666;
}
.access_left{
	width: 100%;
	padding-bottom: 20px;
}
@media (min-width:769px){
	.access_left{
		width: 670px;
		float: left;
		padding-bottom: 0;
	}
}

.access_right{
	width: 100%;
}
@media (min-width:769px){
	.access_right{
		float: left;
		padding-left: 30px;
		width: 500px;
	}
}
.access_table {
	margin: 0;
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
}
.access_table a{
	color: #666666;
}
.access_table tr th {
	width: 25%;
	vertical-align: middle;
	min-height: 80px;
	padding: 25px 5px 20px;
	color: #362e2b;
	border-top: 1px solid #6a6b75;
}
.access_table tr td {
	width: 75%;
	vertical-align: middle;
	min-height: 80px;
	padding: 25px 5px 20px;
	color: #362e2b;
	border-top: 2px solid #764f38;
}

.access_btm{
	
}
.googlemap {
	margin-bottom: 0px;
	height: 500px;
}
.googlemap iframe {
	width: 100%;
	height: 100%;
}


.policy_wrapper{
	padding-top: 100px;
	width: 100%;
}
.policy_wrapper H2{
	text-align: center;
}
.policy_back{
	background-color: #fff;
	padding: 10px;
	color:#333;
	font-size: 1.6rem;
	margin: 0 10px 20px;
}

.policy_title{
	padding-top: 30px;
	font-size: 2.0rem;
	color: #C80000;
}
@media (min-width:769px){
	.policy_back{
		width: 780px;
		padding: 60px;
		color:#333;
		font-size: 1.6rem;
		margin: 0 auto 60px;
	}
	.policy_title{
		padding-top: 30px;
		font-size: 2.0rem;
	}
}


