@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	各固定ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	body直下にid名「wrapper」のdivがあります。
	こちらには、固定ページごとに異なるclass名(post-〇)が付与されますので、
	ご活用ください。
	
	【例】
	<body>
	<div id="wrapper" class="post-2 page type-page status-publish has-post-thumbnail hentry">

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ================================================================================

	レイアウト

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper{
	}

	main.outer_wrap {
		position: relative;
		max-width: none;
		/* max-width: 1920px; 固定幅レイアウト時 */
		min-height: 50vh;
		display: block;
		padding: 80px 0;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wrapper {
	}

	main.outer_wrap {
		position: relative;
		width: 100%;
		min-height: 50vh;
		padding: 12vw 0;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		padding: 0 4vw;
	}
}





/* ================================================================================

	メイン画像

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.main_cate {
		position: relative;
		width: 100%;
		height: 26.6vw;
	}
	.main_cate_in {
		position: relative;
		background: url(../img/main_cate.jpg) center top / cover no-repeat;
		width: 100%;
		height: 100%;
		display: table;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 3.2vw;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		color: #ffffff;
		line-height: 1;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		width: 100%;
		height: 45vw;
	}
	.main_cate_in {
		position: relative;
		background: url(../img/main_cate.jpg) center top / cover no-repeat;
		width: 100%;
		height: 100%;
		display: table;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 8vw;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		color: #ffffff;
		line-height: 1;
	}
}





/* ================================================================================

	セクション

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 2カラム
	----------------------------------------------- */
	.col2_1,
	.col2_1_vshort,
	.col2_1_short,
	.col2_1_middle,
	.col2_1_long {
		padding-right: 20px;
	}
	.col2_2,
	.col2_2_vshort,
	.col2_2_short,
	.col2_2_middle,
	.col2_2_long {
		padding-left: 20px;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		padding-right: 20px;
	}
	.col3_2 {
		padding-left: 10px;
		padding-right: 10px;
	}
	.col3_3 {
		padding-left: 20px;
	}

}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 2カラム
	----------------------------------------------- */
	.col2_1 {
	}
	.col2_1_vshort {
		margin-top: 4vw;
	}
	.col2_1_short {
		margin-top: 8vw;
	}
	.col2_1_middle {
		margin-top: 12vw;
	}
	.col2_1_long {
		margin-top: 16vw;
	}

	.col2_2 {
	}
	.col2_2_vshort {
		margin-top: 4vw;
	}
	.col2_2_short {
		margin-top: 8vw;
	}
	.col2_2_middle {
		margin-top: 12vw;
	}
	.col2_2_long {
		margin-top: 16vw;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		margin-top: 0;
	}
	.col3_2,
	.col3_3 {
		margin-top: 12vw;
	}

}





/* ================================================================================

	マージンボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 120px;
	}
	.top_middle {
		margin-top: 80px;
	}
	.top_short {
		margin-top: 40px;
	}
	.top_vshort {
		margin-top: 20px;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 120px;
	}
	.bottom_middle {
		margin-bottom: 80px;
	}
	.bottom_short {
		margin-bottom: 40px;
	}
	.bottom_vshort {
		margin-bottom: 20px;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 120px;
		margin-bottom: 120px;
	}
	.both_middle {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.both_short {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.both_vshort {
		margin-top: 20px;
		margin-bottom: 20px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 16vw;
	}
	.top_middle {
		margin-top: 12vw;
	}
	.top_short {
		margin-top: 8vw;
	}
	.top_vshort {
		margin-top: 4vw;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 16vw;
	}
	.bottom_middle {
		margin-bottom: 12vw;
	}
	.bottom_short {
		margin-bottom: 8vw;
	}
	.bottom_vshort {
		margin-bottom: 4vw;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 16vw;
		margin-bottom: 16vw;
	}
	.both_middle {
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
	.both_short {
		margin-top: 8vw;
		margin-bottom: 8vw;
	}
	.both_vshort {
		margin-top: 4vw;
		margin-bottom: 4vw;
	}

}




/* ================================================================================

	パディングボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 120px;
	}
	.p_top_middle {
		padding-top: 80px;
	}
	.p_top_short {
		padding-top: 40px;
	}
	.p_top_vshort {
		padding-top: 20px;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 120px;
	}
	.p_bottom_middle {
		padding-bottom: 80px;
	}
	.p_bottom_short {
		padding-bottom: 40px;
	}
	.p_bottom_vshort {
		padding-bottom: 20px;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.row_middle {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.row_short {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.row_vshort {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 16vw;
	}
	.p_top_middle {
		padding-top: 12vw;
	}
	.p_top_short {
		padding-top: 8vw;
	}
	.p_top_vshort {
		padding-top: 4vw;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 16vw;
	}
	.p_bottom_middle {
		padding-bottom: 12vw;
	}
	.p_bottom_short {
		padding-bottom: 8vw;
	}
	.p_bottom_vshort {
		padding-bottom: 4vw;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 16vw;
		padding-bottom: 16vw;
	}
	.row_middle {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}
	.row_short {
		padding-top: 8vw;
		padding-bottom: 8vw;
	}
	.row_vshort {
		padding-top: 4vw;
		padding-bottom: 4vw;
	}


	/* 背景色を伸ばす
	----------------------------------------------- */
	.row_sp {
		width: auto;
		margin-left: -4vw !important;
		margin-right: -4vw !important;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




/* ================================================================================

	カラーボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* カラー01 */
	.row_c01 {
		background: url(../img/bg_wood.jpg) center top / 90.625vw auto repeat;
		color: #ffffff;
	}

	/* カラー02 */
	.row_c02 {
		background: #533a1d;
		color: #ffffff;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border: 4px solid #533a1d;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* カラー01 */
	.row_c01 {
		background: url(../img/bg_wood_sp.jpg) center top / 100% auto repeat;
		color: #ffffff;
		width: auto;
		margin-left: -4vw !important;
		margin-right: -4vw !important;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}

	/* カラー02 */
	.row_c02 {
		background: #533a1d;
		color: #ffffff;
		width: auto;
		margin-left: -4vw !important;
		margin-right: -4vw !important;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		border: 1vw solid #533a1d;
	}
}




/* ================================================================================

	見出し

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		text-align: center;
	}
	.h2_cate h2 {
		background: url(../img/icon_hasami02.png) center top / 22px auto no-repeat;
		font-size: 44px;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.4 !important;
		padding-top: 40px;
	}
	.row_c01 .h2_cate,
	.row_c02 .h2_cate {
		color: #ffffff;
	}
	.row_c01 .h2_cate h2,
	.row_c02 .h2_cate h2 {
		background: url(../img/icon_hasami01.png) center top / 22px auto no-repeat;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double #533a1d;
		padding: 0 0 8px 0 !important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 700;
		line-height: 1.4 !important;
		text-align: center;
	}
	.row_c01 .h3_cate,
	.row_c02 .h3_cate {
		border-bottom: 3px double #ffffff;
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 3px double #533a1d;
		padding: 0 0 8px 0 !important;
	}
	.h3_col3 h3 {
		font-size: 22px;
		font-weight: 700;
		line-height: 1.4 !important;
	}
	.row_c01 .h3_col3,
	.row_c02 .h3_col3 {
		border-bottom: 3px double #ffffff;
		color: #ffffff;
	}

}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		text-align: center;
	}
	.h2_cate h2 {
		background: url(../img/icon_hasami02.png) center top / 4vw auto no-repeat;
		font-size: 6vw;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.4 !important;
		padding-top: 7vw;
	}
	.row_c01 .h2_cate,
	.row_c02 .h2_cate {
		color: #ffffff;
	}
	.row_c01 .h2_cate h2,
	.row_c02 .h2_cate h2 {
		background: url(../img/icon_hasami01.png) center top / 4vw auto no-repeat;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double #533a1d;
		padding: 0 0 1.5vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 700;
		line-height: 1.4 !important;
		text-align: center;
	}
	.row_c01 .h3_cate,
	.row_c02 .h3_cate {
		border-bottom: 3px double #ffffff;
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 3px double #533a1d;
		padding: 0 0 1vw 0 !important;
	}
	.h3_col3 h3 {
		font-size: 4vw;
		font-weight: 700;
		line-height: 1.4 !important;
	}
	.row_c01 .h3_col3,
	.row_c02 .h3_col3 {
		border-bottom: 3px double #ffffff;
		color: #ffffff;
	}

}




/* ================================================================================

	共通ボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.link_common ul li {
		display: inline-block;
		font-size: 22px;
		letter-spacing: 0;
	}
	.link_common ul li:not(:first-child) {
		margin-left: 20px;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		background-color: #533a1d;
		color: #ffffff;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
	}
	.row_c01 .link_common ul li a,
	.row_c02 .link_common ul li a {
		background-color: #fffcf7;
		color: #533a1d;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
	}
	.link_common ul li:not(:first-child) {
		margin-top: 2vw;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		width: 80vw;
		background-color: #533a1d;
		color: #ffffff;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 0 0.9em;
		margin-left: auto;
		margin-right: auto;
	}
	.row_c01 .link_common ul li a,
	.row_c02 .link_common ul li a {
		background-color: #fffcf7;
		color: #533a1d;
	}
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここから各固定ページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ================================================================================

	実績紹介部分

================================================================================ */


/* カテゴリアイコン色 */
.works_icon span {
	background-color: #222222;
	color: #ffffff;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.works_wrap {
		position: relative;
		width: 1000px;
		margin:0 auto;
	}
	.works_wrap ul {
		font-size: 0;
		text-align: center;
	}
	.works_wrap > ul > li {
		display: inline-block;
		vertical-align: top;
		text-align: left;
		width: 320px;
		margin-left: 20px;
		font-size: 16px;
	}
	.works_wrap > ul > li:nth-of-type(3n+1) {
		margin-left: 0;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(16px);
		-webkit-transform: translateY(16px);
		-ms-transform: translateY(16px);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		width: 100%;
		height: 213px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 18px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.works_wrap {
		position: relative;
		margin: 0 auto;
	}
	.works_wrap > ul {
	}
	.works_wrap > ul > li {
		position: relative;
		padding: 0;
	}
	.works_wrap > ul > li:not(:first-child) {
		margin-top: 6vw;
	}

	.works_wrap > ul > li > a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		
		border: 1px solid #cccccc;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(4vw);
		-webkit-transform: translateY(4vw);
		-ms-transform: translateY(4vw);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		max-width: 100%;
		width: 100%;
		height: 62vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 4vw;
	}

}





/* ================================================================================

	STYLE

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* ギャラリー */
	.gallery_box {
	}
	.gallery_box .gallery-item {
		padding: 10px;
	}
	.gallery_box .gallery-item img {
		width: 100%;
		height: 230px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* ギャラリー */
	.gallery_box {
	}
	.gallery_box .gallery-item {
		width: 50%;
		padding: 2vw;
	}
	.gallery_box .gallery-item img {
		width: 100%;
		height: 38vw;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
	}
}





/* ================================================================================

	ACCESS

================================================================================ */

.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}
.map_box2 iframe {
	border: 4px solid #e7d9c0 !important;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* RESERVATION
	----------------------------------------------- */
	.row_re_in {
		margin-top: 40px;
	}
	.row_re_in .left {
		padding-right: 20px;
	}
	.row_re_in .right {
		padding-left: 20px;
	}

	.re_box {
		position: relative;
		background-color: #fffcf7;
		border: 4px solid #e7d9c0;
		text-align: center;
		padding: 70px 54px;
	}

	/* 電話ボックス */
	.re_box01 {
		background: url(../img/bg_top02.jpg) center top / cover no-repeat;
		color: #ffffff;
	}
	.re_tel {
		font-size: 22px;
		font-weight: 700;
		letter-spacing: 0.05em;
	}
	.re_tel a {
		pointer-events: none;
		font-size: 2em;
		letter-spacing: 0.05em;
		color: #ffffff;
		margin-left: 0.1em;
	}

	.re_text1 h3 {
		font-size: 23px;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		color: #fee3b0;
		margin-top: 0.2em;
	}
	.re_text1 p {
		font-size: 23px;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		margin-top: 0.2em;
		line-height: 1.5;
	}

	.re_text2 {
		font-size: 18px;
		color: #fee3b0;
		margin-top: 1em;
	}

	/* LINE公式ボックス */
	.re_box02 {
		padding-top: 80px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* RESERVATION
	----------------------------------------------- */
	.row_re_in {
		margin-top: 6vw;
	}
	.row_re_in .left {
	}
	.row_re_in .right {
		margin-top: 6vw;
	}

	.re_box {
		position: relative;
		background-color: #fffcf7;
		border: 1vw solid #e7d9c0;
		text-align: center;
		padding: 12vw 6vw;
	}

	/* 電話ボックス */
	.re_box01 {
		background: url(../img/bg_top02.jpg) center top / cover no-repeat;
		color: #ffffff;
	}
	.re_tel {
		font-size: 4vw;
		font-weight: 700;
		letter-spacing: 0.05em;
	}
	.re_tel a {
		font-size: 2em;
		letter-spacing: 0.05em;
		color: #ffffff;
		margin-left: 0.1em;
	}

	.re_text1 h3 {
		font-size: 5vw;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		color: #fee3b0;
		margin-top: 0.2em;
	}
	.re_text1 p {
		font-size: 4vw;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		margin-top: 0.2em;
		line-height: 1.5;
	}

	.re_text2 {
		font-size: 3.5vw;
		color: #fee3b0;
		margin-top: 1em;
	}

	/* LINE公式ボックス */
	.re_box02 {
	}


	/* リンク */
	.row_re_in .link_common ul li a {
		background-color: #fffcf7;
		color: #533a1d;
		width: 100%;
		padding: 1em 0;
		font-size: 5vw;
		border: 1vw solid #e7d9c0;
	}
	.row_re_in .link_common ul li a span {
		position: relative;
		display: inline-block;
		padding-left: 9vw;
	}
	.row_re_in .link_common ul li a span::before {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/icon_navi02.png) center top / contain no-repeat;
		width: 7vw;
		height: 7vw;
		top: 0.5vw;
		left: 0;
	}
}