@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{
		background:url(../img/bg.jpg)repeat center top / auto auto;
	}

	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 {
		background:url(../img/bg.jpg)repeat center top / auto auto;
	}

	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) {
	.h_logo {
		position: relative;
	}
	.h_logo a{
		position: absolute;
		z-index: 1;
		left: 50%;
		margin-left: -4.3vw;
		top: 14.9vw;
		width: 100%;
	}
	.h_logo a img{
		width: 9vw;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.h_logo {
		position: relative;
	}
	.h_logo a{
		position: absolute;
		z-index: 1;
		width: 100%;
		display: block;
		left: 50%;
		margin-left: -10.2vw;
		top: 25.4vw;
	}
	.h_logo a img{
		width: 22vw;
	}
}

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

	メイン画像

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


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

	/* メイン画像のタイトル */
	.main_cate_in p {
		text-align: center;
		font-size: 3vw;
		color: #ffffff;
		padding: 9.4vw 0 0;
		border-bottom: solid 1px;
		width: 43vw;
		margin: 0 auto;
	}
}


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

	/* メイン画像のタイトル */
	.main_cate_in p {
		text-align: center;
		font-size: 7vw;
		font-weight: 100;
		color: #ffffff;
		padding: 12.4vw 0 0;
		border-bottom: solid 1px;
		width: 80vw;
		margin: 0 auto;
	}
}





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

	マージンボックス

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

/* 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: rgba(255,255,255,0.5);
	}

	/* カラー02 */
	.row_c02 {
		background: rgba(97,76,65,0.1);
	}

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border: 4px double #dc4b2d;
	}
	.box_wh {
		background: #ffffff;
		padding: 20px;
		border: dotted 2px #f07662;
	}
}



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

	/* カラー01 */
	.row_c01 {
		background: rgba(255,255,255,0.5);
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		background: rgba(97,76,65,0.1);
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		border: 4px double #dc4b2d;
	}
	.box_wh {
		background: #ffffff;
		padding: 3vw;
		border: dotted 1px #f07662;
	}
}




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

	見出し

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

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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		background: url(../img/h2_bg.png) repeat-x left bottom / auto auto;
		padding: 0 0 36px;
		margin-bottom: 59px !important;
	}
	.h2_cate h2 {
		font-size: 32px;
		font-weight: 400;
		line-height: 1.4 !important;
		text-align: center;
		position: relative;
	}
	/* 羽飾り */
	.h2_cate h2::before{
		position: absolute;
		content: "";
		background: url(../img/wing01.png)no-repeat center top / auto 100%;
		width: 41px;
		height: 51px;
		top: -67px;
		left: 50%;
		margin-left: -23px;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double #dc4b2d;
		padding: 0 0 8px 0 !important;
		margin-bottom: 30px!important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
	}
	

}


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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		background: url(../img/h2_bg.png) repeat-x left bottom / auto auto;
		padding: 0 0 7vw;
		margin-bottom: 7vw !important;
	}
	.h2_cate h2 {
		font-size: 5.5vw;
		font-weight: 400;
		line-height: 1.4 !important;
		text-align: center;
		position: relative;
	}
	/* 羽飾り */
	.h2_cate h2::before{
		position: absolute;
		content: "";
		background: url(../img/wing01.png)no-repeat center top / auto 100%;
		width: 8.2vw;
		height: 11vw;
		top: -13vw;
		left: 50%;
		margin-left: -4.6vw;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double #dc4b2d;
		padding: 0 0 1.5vw 0 !important;
		margin-bottom: 5vw!important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
	}

}




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

	共通ボタン

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

/* 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;
		background: url(../img/link_bg.jpg)repeat-x center bottom / auto #dc4b2d;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.5em 6em 0.5em;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 10px;
		height: 15px;
		top: 50%;
		margin-top: -7px;
		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;
		background: url(../img/link_bg.jpg)repeat-x center bottom / auto #dc4b2d;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 0 0.9em;
		margin-left: auto;
		margin-right: auto;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 2vw;
		height: 3vw;
		top: 50%;
		margin-top: -1.5vw;
		right: 3vw;
	}
}





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

	ここから各固定ページ

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


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

	実績紹介部分

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


/* カテゴリアイコン色 */
.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;
	}

}





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

	下層共通

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.pc_center {
		text-align: center;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.col_sp {
		margin-bottom: 5vw;
	}
}





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

	カラー剤について

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.col_color .link_common {
		margin-top: 20px;
	}
	.col_color .link_common li {
		width: 100%;
	}
	.col_color .link_common a {
		padding: 0.5em 2em 0.5em;
		width: 100%;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.col_color .elementor-row .elementor-column:first-child {
		margin-bottom: 8vw;
	}
	.col_color .link_common {
		margin-top: 4vw;
	}
}





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

	炭酸泉とは？

================================================================================ */
.ul_carbonated_spring ul {
	margin-left: 1em;
}
.ul_carbonated_spring li {
	list-style: disc;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.ul_carbonated_spring {
		overflow: hidden;
	}
	.ul_carbonated_spring li {
		float: left;
		width: 50%;
	}
}



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





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

	メニュー

================================================================================ */
.tit_osusume h4 {
	background: #ea5949;
	display: inline-block;
	color: #ffffff;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.tit_osusume h4 {
		padding: 8px 20px;
	}
	.page-menu .top_short{
		/*margin-top: 50px;*/
	}
	.page-menu .p_top_short {
		/*padding-top: 50px;*/
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.tit_osusume h4 {
		padding: 2vw 4vw;
	}
}





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

	アクセス

================================================================================ */
.gmap {
	position: relative;
}
.gmap iframe {
	width: 100%;
}
.map_box a {
	width: 100%;
	display: block;
	z-index: 1;
	position: absolute;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.gmap iframe,
	.map_box a {
		height: 450px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.gmap iframe,
	.map_box a {
		height: 250px;
	}
}