@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; 固定幅レイアウト時 */
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 80px 0;
		margin: 0 auto;
	}

	.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;
		background: url(../img/cate_main.jpg) center top / cover no-repeat;
		height: 31.5vw;
	}
	.main_cate_in {
		position: relative;
	}
	.h_logo {
		position: absolute;
		width: 19.5vw;
		z-index: 1;
		left: 2vw;
		top: 2vw;
		height: 9.2vw;
	}
	.h_logo img {
		width: 100%;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		position: relative;
		text-align: center;
		font-size: 3vw;
		padding: 13.2vw 0;
		color: #d5c7b4;
	}
	
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		background: url(../img/cate_main.jpg) center top / cover no-repeat;
		height: 78vw;
	}
	
	.h_logo {
		position: absolute;
		width: 38vw;
		z-index: 1;
		left: 2vw;
		top: 2vw;
	}
	.h_logo img {
		width: 100%;
	}
	
	.main_cate_in {
		position: relative;
		font-size: 6vw;
		text-align: center;
		padding: 34vw 0;
		color: #d5c7b4;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
	}
}





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

	マージンボックス

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

/* 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 {
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




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

	カラーボックス

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

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

	/* カラー01 */
	.row_c01 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,#141414;
	}

	/* カラー02 */
	.row_c02 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,rgba(16,16,16,0.3);
	}

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border: 1px solid #b4a289;
	}
}



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

	/* カラー01 */
	.row_c01 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,#141414;
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,rgba(16,16,16,0.3);
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 8vw;
		border: 1px solid #b4a289;
	}
}




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

	見出し

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

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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		border-bottom: 1px solid #b4a289;
		padding: 0 0 12px 0 !important;
	}
	.h2_cate h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
	}
	
	.h2_cate02 h2 {
		font-family: 'Crimson Pro', 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		text-align: center;
		font-size: 80px;
		letter-spacing: 0.05em;
		font-weight: 100;
	}
	.h2_cate02 h2 span {
		display: block;
		font-size: 20px;
		font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		margin-top: 20px;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #7c7c7c;
		padding: 0 0 8px 0 !important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		color: #7c7c7c;
		letter-spacing: 0.03em;
	}

}


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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		border-bottom: 1px solid #b4a289;
		padding: 0 0 2vw 0 !important;
	}
	.h2_cate h2 {
		font-size: 5.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
	}
	
	.h2_cate02 h2 {
		text-align: center;
		color: #b4a289;
		font-size: 12vw;
		font-weight: 500;
		letter-spacing: 0.05em;
		font-family: 'Crimson Pro', 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
	}
	.h2_cate02 h2 span {
		display: block;
		font-size: 20px;
		font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		margin-top: 20px;
	}
	

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #7c7c7c;
		padding: 0 0 1.5vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		color: #7c7c7c;
	}

}




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

	共通ボタン

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

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

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 40px;
	}
	.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;
		margin-left: 20px;
	}
	.link_common ul li:first-of-type {
		margin-left: 0;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
		text-align: center;
		background-color: rgba(26,23,18,0.8);
		border: 1px solid #b4a289;
		color: #b4a289;
		font-weight: 300;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/row02_btn.png) center top / contain no-repeat;
		width: 15px;
		height: 15px;
		top: 50%;
		margin-top: -7.5px;
		right: 16px;
	}
}


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

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 6vw;
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
	}
	.link_common ul li {
		margin-top: 2vw;
	}
	.link_common ul li:first-of-type {
		margin-top: 0;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		width: 80vw;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 1em 0 1.15em;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		background-color: rgba(26,23,18,0.8);
		border: 1px solid #b4a289;
		color: #b4a289;
		font-weight: 300;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/row02_btn.png) center top / contain no-repeat;
		width: 4vw;
		height: 4vw;
		top: 50%;
		margin-top: -2vw;
		right: 5vw;
	}
}





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

	ここから各固定ページ

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


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

	実績紹介部分

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


/* カテゴリアイコン色 */
.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;
		margin-top: 6vw;
	}
	.works_wrap > ul > li:first-of-type {
		margin-top: 0;
	}

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

}





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

	3D増毛

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.mashike_row01 .mashike_h2 h2 {
		font-size: 50px;
		font-weight: 300;
		line-height: 1.4;
	}
	
	.mashike_row01 .mashike_text01 {
		font-size: 25px;
		margin-top: 40px;
		font-weight: 300;
		line-height: 2;
		letter-spacing: 0.03em;
	}
	.mashike_row01 .mashike_text02 {
		font-size: 20px;
		margin-top: 20px;
		letter-spacing: 0.03em;
	}
	
	.mashike_point {
		text-align: center;
		background-color: rgba(26,23,18,0.8);
		border: 1px solid #b4a289;
		padding: 30px 20px;
	}
	.mashike_point h3 {
		font-size: 23px;
		font-weight: 100;
		line-height: 1.6;
		margin-bottom: 12px;
		min-height: 73.6px;
		align-items: center;
		display: flex;
		justify-content: center;
	}
	.mashike_point p {
		color: #7c7c7c;
		letter-spacing: 0.03em;
		font-size: 14px;
	}
	
	.ba_title h3 {
		text-align: center;
		font-weight: normal;
		margin-top: 20px;
		letter-spacing: 0.03em;
		font-size: 20px;
	}
	
	.price_box {
		text-align: center;
		font-size: 25px;
		line-height: 1.4;
		padding: 30px;
		border: 1px solid;
		letter-spacing: 0.05em;
	}
	.price_box span {
		display: block;
		font-size: 40px;
	}
	
	.price_text01 {
		text-align: center;
		margin-top: 40px;
	}
	
	.open_box {
		border: 1px solid #b4a289;
		padding: 40px 30px 55px;
	}
	
	.open_title h3 {
		font-family: 'Crimson Pro', 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		text-align: center;
		font-size: 60px;
		color: #d5c7b4;
		font-weight: 300;
		letter-spacing: 0.03em;
	}
	
	.open_text {
		font-size: 40px;
		position: relative;
		padding-left: 150px;
		font-weight: 300;
		letter-spacing: 0.06em;
		margin-top: 16px;
	}
	.open_text span {
		font-size: 14px;
		color: #7c7c7c;
		display: block;
		letter-spacing: 0.05em;
		margin-top: -5px;
	}
	.open_text p {
		position: relative;
	}
	.open_text p:before {
		content: '初回限定';
		position: absolute;
		border: 1px solid #b4a289;
		top: 6px;
		letter-spacing: 0.03em;
		line-height: 1.2;
		font-weight: 100;
		width: 86px;
		height: 86px;
		left: -110px;
		font-size: 26.5px;
		padding: 9px 0 0 14.5px;
	}
	
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.mashike_row01 .mashike_h2 h2 {
		font-size: 6.7vw;
		font-weight: 300;
		line-height: 1.4;
	}
	
	.mashike_row01 .mashike_text01 {
		margin-top: 4.8vw;
		font-weight: 300;
		line-height: 1.8;
		letter-spacing: 0.03em;
		font-size: 3.3vw;
	}
	.mashike_row01 .mashike_text02 {
		font-size: 3vw;
		margin-top: 4vw;
		letter-spacing: 0.03em;
	}
	
	.point_box_sp {
		margin-top: 6vw;
	}
	
	.mashike_point {
		text-align: center;
		background-color: rgba(26,23,18,0.8);
		border: 1px solid #b4a289;
		padding: 6vw 6vw 8vw;
	}
	.mashike_point h3 {
		font-weight: 300;
		font-size: 5.5vw;
		color: #b4a289;
		line-height: 1.6;
		margin-bottom: 2vw;
	}
	.mashike_point p {
		font-weight: 300;
		color: #7c7c7c;
		margin-top: 0.9vw;
		letter-spacing: 0.05em;
		font-size: 3.3vw;
	}
	
	.ba_box_sp01,
	.ba_box_sp02,
	.ba_box_sp03,
	.ba_box_sp04 {
		width: 50%;
	}
	.ba_box_sp01,
	.ba_box_sp03 {
		padding-right: 2vw;
	}
	.ba_box_sp02,
	.ba_box_sp04 {
		padding-left: 2vw;
	}
	.ba_box_sp01,
	.ba_box_sp02 {
		margin-bottom: 4vw;
	}
	
	.ba_title h3 {
		text-align: center;
		font-weight: normal;
		margin-top: 4vw;
		letter-spacing: 0.03em;
		font-size: 4vw;
	}
	
	.price_box {
		text-align: center;
		font-size: 5vw;
		line-height: 1.4;
		padding: 6vw;
		border: 1px solid;
		letter-spacing: 0.05em;
	}
	.price_box span {
		display: block;
		font-size: 10vw;
	}
	
	.price_text01 {
		text-align: center;
		margin-top: 6vw;
	}
	
	.price_plus_sp {
		margin: 4vw 0;
	}
	
	.open_box {
		border: 1px solid #b4a289;
		padding: 6vw;
	}
	
	.open_title h3 {
		font-family: 'Crimson Pro', 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
		text-align: center;
		font-size: 10vw;
		color: #d5c7b4;
		font-weight: 300;
		letter-spacing: 0.03em;
	}
	
	.open_text {
		font-size: 4.45vw;
		position: relative;
		padding-left: 18vw;
		font-weight: 300;
		letter-spacing: 0.06em;
		margin-top: 6vw;
	}
	.open_text span {
		font-size: 3.1vw;
		color: #7c7c7c;
		display: block;
		letter-spacing: 0.05em;
		margin-top: 2vw;
	}
	.open_text:before {
		content: '初回限定';
		position: absolute;
		width: 11vw;
		height: 11vw;
		border: 0.1vw solid #b4a289;
		top: -1.5vw;
		left: 2.65vw;
		font-size: 3.5vw;
		padding: 1.1vw 1.75vw;
		letter-spacing: 0.03em;
		line-height: 1.2;
		font-weight: 100;
	}
}





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

	〇〇ページ

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


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



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





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

	〇〇ページ

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


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



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




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

	アクセス

================================================================================ */
.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.contact_subtitle {
		text-align: center;
		color: #7c7c7c;
		letter-spacing: 0.03em;
	}
	
	.contact_box {
		border: 1px solid #b4a289;
		padding: 60px !important;
		text-align: center;
		margin-top: 40px !important;
	}
	
	.contact_title {
		font-size: 3.125vw;
	}
	.contact_title h3 {
		font-weight: 300;
		letter-spacing: 0.03em;
		color: #d5c7b4;
	}
	
	.contact_tel {
		margin-top: 16px;
	}
	.contact_tel a {
		display: block;
		line-height: 1;
		color: #b4a289;
	}
	.contact_tel a {
		font-size: 50px;
		letter-spacing: 0.05em;
		padding: 0.3em 1em 0.35em;
		pointer-events: none;
	}
	.contact_tel a span {
		font-size: 30px;
		margin-right: 0.4em;
		vertical-align: 6px;
	}
	
	.contact_text {
		color: #ecd7ba;
		line-height: 1.8;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.access_row01 .table_right2 {
		margin-top: 0;
	}
	
	.contact_subtitle {
		font-size: 3.3vw;
		color: #7c7c7c;
		margin-top: 4vw;
		text-align: center;
	}
	
	.contact_box {
		border: 1px solid #b4a289;
		margin: 8vw 0 0 !important;
		padding: 9vw 0 10vw !important;
		text-align: center;
	}

	.contact_title h3 {
		font-weight: 300;
		letter-spacing: 0.03em;
		color: #d5c7b4;
		font-size: 6vw;
	}
	
	.contact_tel {
		margin-top: 2vw;
	}
	.contact_tel a {
		display: block;
		line-height: 1;
		color: #b4a289;
	}
	.contact_tel a {
		font-size: 7vw;
		letter-spacing: 0.05em;
		border-radius: 0.2em;
		padding: 0.3em 1em 0.35em;
	}
	.contact_tel a span {
		font-size: 0.5em;
		margin-right: 0.4em;
		vertical-align: 0.3em;
	}
	
	.contact_text {
		font-size: 3.1vw;
		color: #ecd7ba;
		line-height: 1.8;
		margin-top: 0.3vw;
	}
	
	
	.gallery_box figure {
		width: 50% !important;
	}
	
}




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

	スタッフ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.staff_text01 {
		color: #7c7c7c;
		margin-top: 16px;
		letter-spacing: 0.03em;
		font-size: 20px;
		text-align: center;
	}
	.staff_text02 {
		color: #7c7c7c;
		letter-spacing: 0.03em;
		margin-top: 12px;
	}
	
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.staff_text01 {
		color: #7c7c7c;
		margin-top: 4vw;
		letter-spacing: 0.03em;
		font-size: 4vw;
		text-align: center;
	}
	.staff_text02 {
		color: #7c7c7c;
		letter-spacing: 0.03em;
		margin-top: 3vw;
	}
	
	
}
