@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) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.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 ,#f5f5f5;
	}
	/* 背景白 */
	.cate_section01,
	.cate_section01_right,
	.cate_section01_left  {
		background-color: #fff;
		border-radius: 30px;
		padding: 80px;
	}

	/* 右に鳥の飾り */
	.cate_section01_right::after {
		position: absolute;
		content: '';
		background: url(../img/row02_after.png) center top / contain no-repeat;
		width: 173px;
		height: 147px;
		top: -31px;
		right: -65px;
	}
	/* 左に鳥の飾り */
		.cate_section01_left::after {
			position: absolute;
			content: '';
			background: url(../img/bird_bg.png) center top / contain no-repeat;
			width: 173px;
			height: 147px;
			top: -31px;
			left: -65px;
	}
	/* 背景上白 */
	.cate_section02_top,
	.cate_section02_top_leef {
		background-color: #fff;
		-webkit-border-top-left-radius: 30px;  
		-webkit-border-top-right-radius: 30px;  
		-moz-border-radius-topleft: 30px;  
		-moz-border-radius-topright: 30px;  
		padding: 50px 80px 0 80px; 
	}
	/* 背景上白・草飾り */
	.cate_section02_top_leef::after {
		position: absolute;
		content: '';
		background: url(../img/leef01.png) center top / contain no-repeat;
		width: 110px;
		height: 110px;
		top: -10px;
		right: -35px;
	}
	/* 背景下白 */
	.cate_section02_bottom,
	.cate_section02_bottom_leef {
		background-color: #fff;
		-webkit-border-bottom-right-radius: 30px;  
		-webkit-border-bottom-left-radius: 30px;  
		-moz-border-radius-bottomright: 30px;  
		-moz-border-radius-bottomleft: 30px;  
		padding: 0 80px 50px 80px; 
	}
	/* 背景下白・草飾り */
	.cate_section02_bottom_leef::after {
		position: absolute;
		content: '';
		background: url(../img/leef02.png) center top / contain no-repeat;
		width: 110px;
		height: 110px;
		bottom: -10px;
		left: -35px;
	}




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

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border: 8px solid #cccccc;
	}
	/* 画像のボーダー囲い */
	.img_border img {
		border: 8px solid #cccccc;
	}

}


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

	/* カラー01 */
	.row_c01 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,#f5f5f5;
		padding-left: 4vw;
		padding-right: 4vw;
	}
	/* 背景白 */
	.cate_section01,
	.cate_section01_right,
	.cate_section01_left {
		position: relative;
		background-color: #fff;
		border-radius: 4vw;
		padding: 8vw 7vw 12vw;
	}
	/* 右に鳥の飾り */
	.cate_section01_right::after {
		position: absolute;
		content: '';
		background: url(../img/row02_after.png) center top / contain no-repeat;
		width: 23vw;
		height: 20vw;
		top: -7vw;
		right: -2vw;
	}
	/* 左に鳥の飾り */
		.cate_section01_left::after {
			position: absolute;
			content: '';
			background: url(../img/bird_bg.png) center top / contain no-repeat;
			width: 23vw;
			height: 20vw;
			top: -7vw;
			left: -2vw;
	}


	/* 背景上白 */
	.cate_section02_top,
	.cate_section02_top_leef {
		position:relative;
		background-color: #fff;
		-webkit-border-top-left-radius: 30px;  
		-webkit-border-top-right-radius: 30px;  
		-moz-border-radius-topleft: 30px;  
		-moz-border-radius-topright: 30px;  
		padding: 8vw 7vw 0 8vw;
	}
	/* 背景上白・草飾り */
	.cate_section02_top_leef::after {
		position: absolute;
		content: '';
		background: url(../img/leef01.png) center top / contain no-repeat;
		width: 23vw;
		height: 20vw;
		top: -2vw;
		right: -5vw;
	}


	/* 背景下白 */
	.cate_section02_bottom,
	.cate_section02_bottom_leef {
		position: relative;
		background-color: #fff;
		-webkit-border-bottom-right-radius: 30px;  
		-webkit-border-bottom-left-radius: 30px;  
		-moz-border-radius-bottomright: 30px;  
		-moz-border-radius-bottomleft: 30px;  
		padding: 0 8vw 7vw 8vw;
	}
	/* 背景下白・草飾り */
	.cate_section02_bottom_leef::after {
		position: absolute;
		content: '';
		background: url(../img/leef02.png) center top / contain no-repeat;
		width: 23vw;
		height: 20vw;
		bottom: -10vw;
		left: -6vw;
	}


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

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		border: 2vw solid #cccccc;
	}
	/* 画像のボーダー囲い */
	.img_border img {
		border: 2vw solid #cccccc;
	}
}




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

	見出し

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

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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		text-align: center;
		padding-bottom: 33px;
	}
	.h2_cate h2 {
		position: relative;
		display: inline-block;
		font-size: 32px;
		font-weight: 500;
		line-height: 1.4;
	}
	.h2_cate h2:before {
		position: absolute;
		content: '';
		background: url(../img/flag01.png) center top / contain no-repeat;
		width: 200px;
		height: 100px;
		left: -250px;
		top: 50%;
		margin-top: -50px;
	}
	.h2_cate h2:after {
		position: absolute;
		content: '';
		background: url(../img/flag02.png) center top / contain no-repeat;
		width: 200px;
		height: 100px;
		right: -250px;
		top: 50%;
		margin-top: -50px;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #000000;
		padding: 0 0 12px 0 !important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		text-align: center;
		color: #ffaa06;
	}

}


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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		text-align: center;
		padding: 3vw 0 0 0;
	}
	.h2_cate h2 {
		position: relative;
		font-size: 5.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		letter-spacing: -0.05em;
	}
	.h2_cate h2:before {
		position: absolute;
		content: '';
		background: url(../img/flag01.png) center top / contain no-repeat;
		width: 28vw;
		height: 14vw;
		left: -10vw;
		top: -11vw;
	}
	.h2_cate h2:after {
		position: absolute;
		content: '';
		background: url(../img/flag02.png) center top / contain no-repeat;
		width: 28vw;
		height: 14vw;
		right: -9.7vw;
		top: -11vw;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #000000;
		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: #ffaa06;
	}

}




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

	共通ボタン

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

/* 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-color: #ffaa06;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.5em 3.6em 0.6em;
		border-radius: 20px;
	}
	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 12px;
		height: 15px;
		top: 50%;
		margin-top: -7.5px;
		right: 18px;
	}
}


/* 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-color: #ffaa06;
		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;
		border-radius: 20px;
	}
	.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;
		margin: 4vw 4vw 0;
		padding: 0;
	}
	.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: 61.335vw;
		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) {
	.main_cate {
		position: relative;
		width: 100%;
		height: 46.2vw;
	}
	.main_cate_in {
		position: absolute;
		right: 2.9vw;
		color: #ffaa06;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		font-size: 2.7vw;
		top: 2.9vw;
		text-align: center;
	}
	.main_cate_in p {
		vertical-align: middle;
		display: table-cell;
		width: 22.7vw;
		height: 24vw;
	}
	.cate01 {
		background: url(../img/cate_main01.jpg) center top / contain no-repeat;
	}
	.cate02 {
		background: url(../img/cate_main02.jpg) center top / contain no-repeat;
	}
	.cate03 {
		background: url(../img/cate_main03-5.jpg) center top / contain no-repeat;
	}
	.cate04 {
		background: url(../img/cate_main04.jpg) center top / contain no-repeat;
	}
	.cate05 {
		background: url(../img/cate_main05.jpg) center top / contain no-repeat;
	}
	
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		width: 100%;
		height: 100vw;
	}
	.main_cate_in {
		color: #ffaa06;
		font-size: 7vw;
		text-align: center;
		padding: 75vw 11vw;
	}
	.main_cate_in p {
	}
	.cate01 {
		background: url(../img/cate_main01_sp.png) center top / contain no-repeat;
	}
	.cate02 {
		background: url(../img/cate_main02_sp.png) center top / contain no-repeat;
	}
	.cate03 {
		background: url(../img/cate_main03_sp-2.png) center top / contain no-repeat;
	}
	.cate04 {
		background: url(../img/cate_main04_sp.png) center top / contain no-repeat;
	}
	.cate05 {
		background: url(../img/cate_main05_sp.png) center top / contain no-repeat;
	}
	
	
}




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

	共通

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

/* FAXリンクさせない */
.pointer-events_fax{
	pointer-events: none;
	display: block;
	color: #252525;
}
.pointer-events{
	color: #252525;
}
/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* 草背景 */
	.green_bg{
		position: relative;
		background: url(../img/row02_bg.jpg) center top -40px / 1180px no-repeat #fff;
	}
	/* PCはテキスト中央・SPは左詰 */
	.content_text{
		text-align: center;
	}

	/* こんな悩み〜こんな方〜 */
	.houmon_nayami {
		font-size: 0;
		text-align: center;
	}
	.houmon_nayami ul{
		font-size: 20px;
		vertical-align: top;
		display: inline-block;
	}
	.houmon_nayami ul:first-of-type{
		padding-right: 90px;
		margin-left: 80px;
	}
	.houmon_nayami ul li{
		text-align: left;
		position: relative;
		margin-bottom: 17px;
	}
	.houmon_nayami ul li::before{
		content: '';
		position: absolute;
		background: url(../img/check.jpg) center top / contain no-repeat;
		width: 26px;
		height: 23px;
		top: 7px;
		left: -32px;
	}

	/* 各ページにあるお問い合わせ */
	.contact_bg{
		background:url(../img/contact_bg.png) no-repeat center top / auto auto;
		height: 340px;
		text-align: center;
		padding: 91px 0 0 0;
	}
	.contact_bg-2{
		background:url(../img/contact_bg.png) no-repeat center top / auto auto;
		height: 340px;
		text-align: center;
		padding: 79px 0 0 0;
	}
	.contact_bg h3,
	.contact_bg-2 h3{
		font-size: 30px;
		padding-bottom: 12px;
		font-weight: 500;
	}
	.contact_bg a,
	.contact_bg-2 a{
		font-size: 35px;
		color: #ffaa06;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* 草背景 */
	.green_bg{
		position: relative;
		background: url(../img/row02_bg.jpg) center top / contain no-repeat #fff;
	}
		/* PCはテキスト中央・SPは左詰 */
		.content_text{
			text-align: left;
		}

	/* こんな悩み〜こんな方〜 */
	.houmon_nayami ul li{
		position: relative;
		margin-bottom: 1vw;
		margin-left: 6vw;
	}
	.houmon_nayami ul li::before{
		content: '';
		position: absolute;
		background: url(../img/check.jpg) center top / contain no-repeat;
		width: 4vw;
		height: 4vw;
		top: 1.6vw;
		left: -6vw;
	}


		/* 各ページにあるお問い合わせ */
		.contact_bg{
			background: url(../img/c_contact_bg_sp.png) no-repeat center top / 100% auto;
			height: 106vw;
			text-align: center;
			padding: 20vw 11vw 14vw;
		}
		.contact_bg-2{
			background: url(../img/c_contact_bg_sp.png) no-repeat center top / 100% auto;
			height: 106vw;
			text-align: center;
			padding: 22vw 11vw 14vw;
		}
		.contact_bg h3,
		.contact_bg-2 h3{
			font-size: 5vw;
			padding-bottom: 4vw;
			font-weight: 500;
		}
		.contact_bg a,
		.contact_bg-2 a{
			font-size: 8vw;
			color: #ffaa06;
		}
	
}





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

	会社概要ページ

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

/* MAP */

.map_box{
	position:relative;
}
.map a{
	width:100%;
	height:450px;
	display:block;
	z-index:100;
	position:absolute;
}
/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* ハリネズミ */
	.green_bg::after {
		content: '';
		position: absolute;
		background: url(../img/row01_after.png) center top / contain no-repeat;
		width: 138px;
		height: 87px;
		bottom: -34px;
		right: 44px;
	}

	.map_img img{
		width: 289px;
		margin-bottom: -8px;
		position: relative;
		z-index: 1;
		margin-left: -12px;
	}
	
	.map_box {
		position: relative;
		background-color: #fbc610;
		border-radius: 30px;
		padding: 25px;
		z-index: 0;
	}
	._box::after {
		content: '';
		position: absolute;
		background: url(../img/skay_bg.png) center top / contain no-repeat;
		width: 459px;
		height: 236px;
		bottom: -34px;
		right: 44px;
		z-index: -1;
	}


}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		/* ハリネズミ */
		.green_bg::after {
			content: '';
			position: absolute;
			background: url(../img/row01_after.png) center top / contain no-repeat;
			width: 20vw;
			height: 13vw;
			bottom: -4vw;
			right: -2vw;
		}
		.map_img img{
			position: relative;
			z-index: 1;
			width: 55vw;
			margin: 0 0 -1vw -2vw;
		}
		.map_box {
			background-color: #fbc610;
			border-radius: 30px;
			padding: 1.5em;
		}
}





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

	ご利用の流れページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.h2_flow h2{
		color: #ffaa06;
		font-size: 27px;
		border-bottom: dotted 2px;
		padding: 0 11px 11px;
		margin-bottom: 11px;
		font-weight: 500;
	}

	.next-img img{
		width: 51px;
		padding: 30px 0;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.h2_flow h2{
		color: #ffaa06;
		font-size: 6vw;
		border-bottom: dotted 2px;
		padding: 0.5em;
		margin-bottom: 0.5em;
		font-weight: 500;
	}

	.next-img img{
		width: 7vw;
		padding: 4vw 0;
	}
}





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

	施術料金ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* 治療部位 */
	.massage-price_box{
		width: 750px !important;
		margin: 40px auto 0;
		margin-bottom: 0px;
		background-color: #fbcc27;
		padding: 30px;
		border-radius: 30px;
	}
	.massage-price_box h3{
		font-size: 23px;
		border-bottom: 1px dotted;
		font-weight: 500;
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	/* 料金ひょう */
	.massage-price_table table,
	.massage-price_table02 table{
		border: 1px solid #5db4eb;
		border-collapse: collapse;
		width: 100%;
	}
	.massage-price_table table td{
		border: 1px solid #5db4eb;
		border-collapse: collapse;
		padding: 10px;
		width: 15%;
		text-align: right;
	}
	.massage-price_table table th{
		border: 1px solid #ffffff;
		border-collapse: collapse;
		padding: 10px;
		width: 15%;
		background: #5db4eb;
	}
	.massage-price_table02 table td{
		border: 1px solid #5db4eb;
		border-collapse: collapse;
		padding: 10px;
		text-align: right;
	}
	.massage-price_table02 table th{
		border: 1px solid #5db4eb;
		border-collapse: collapse;
		padding: 10px;
		background: #5db4eb;
	}


}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		/* 治療部位 */
		.massage-price_box{
			width: 750px !important;
			margin: 40px auto 0;
			margin-bottom: 0px;
			background-color: #fbcc27;
			padding: 30px;
			border-radius: 30px;
		}
		.massage-price_box h3{
			font-size: 5vw;
			border-bottom: 1px dotted;
			font-weight: 500;
			padding-bottom: 5px;
			margin-bottom: 5px;
		}
	
		/* 料金ひょう */
		.massage-price_table table,
		.massage-price_table02 table{
			border: 1px solid #5db4eb;
			border-collapse: collapse;
			width: 100%;
		}
		.massage-price_table table td,
		.massage-price_table02 table td{
			border: 1px solid #5db4eb;
			border-collapse: collapse;
			padding: 1vw;
			text-align: right;
		}
		.massage-price_table table th,
		.massage-price_table02 table th{
			border: 1px solid #ffffff;
			border-collapse: collapse;
			padding: 2vw;
			background: #5db4eb;
		}
}





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

	お問い合わせページ

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

.contact_row01 .elementor-toggle .elementor-tab-title,
.contact_row01 .elementor-toggle .elementor-tab-content {
    border-bottom: none;
}


.doui_box{
	text-align: center;
}
.doui_box .doui_ichi{
	display: block;
	margin-left:-1em;
	margin-bottom:1em;
}
/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}



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

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

	在宅訪問ページ

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

.voice-list_2 a{
	color: #252525;
}
/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.voice-list_2 .voice_date{
		padding: 4px 0 0 9px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.voice-list_2 .voice_date {
		padding: 2vw 0 0 2vw;
	}
}


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

	お客様の声ページ

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.row02 {
		padding: 85px 0 50px 0;
		background-color: #fff;
		margin:0 auto 50px;
		width:1180px;
		border-radius:30px;
	}
	.row02_title02 {
		padding: 20px 0 44px;
		text-align: center;
	}
	.row02_title02 h2 {
		font-size: 40px;
		font-weight: normal;
		display: inline-block;
		position: relative;
		letter-spacing: 0.03em;
	}
	.row02_title02 h2:before {
		position: absolute;
		content: '';
		background: url(../img/flag01.png) center top / contain no-repeat;
		width: 219px;
		height: 109px;
		left: -283px;
		top: -21px;
	}
	.row02_title02 h2:after {
		position: absolute;
		content: '';
		background: url(../img/flag02.png) center top / contain no-repeat;
		width: 219px;
		height: 109px;
		right: -283px;
		top: -21px;
	}
	
	.voice_content01 {
		margin: 53px 120px 0;
		text-align: center;
	}
	.voice_content02 {
		margin: 39px 120px 0;
		text-align: center;
	}
	
	.lines3,
	.lines4 {
		width: 290px;
		height: 290px;
	}
	
	.lines3 .voice_title {
		padding-top: 100px;
		letter-spacing: 0.03em;
	}
	.lines4 .voice_title {
		padding-top: 80px;
		letter-spacing: 0.03em;
	}
	.voice_text {
		margin-top: 7px;
		letter-spacing: 0.03em;
		font-weight: 300;
	}
	
	.voice01 {
		background: url(../img/voice01.jpg) center top / contain no-repeat;
	}
	.voice01 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people01.png) center top / contain no-repeat;
		width: 62px;
		height: 54px;
		top: 41px;
		left: 50%;
		margin-left: -31px;
	}
	
	.voice02 {
		background: url(../img/voice02.jpg) center top / contain no-repeat;
		margin: 0 36px;
	}
	.voice02 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people02.png) center top / contain no-repeat;
		width: 58px;
		height: 49px;
		top: 20px;
		left: 50%;
		margin-left: -29px;
	}

	.voice03 {
		background: url(../img/voice03.jpg) center top / contain no-repeat;
	}
	.voice03 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people03.png) center top / contain no-repeat;
		width: 69px;
		height: 58px;
		top: 18px;
		left: 50%;
		margin-left: -34.5px;
	}

	.voice04 {
		background: url(../img/voice04.jpg) center top / contain no-repeat;
	}
	.voice04 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people04.png) center top / contain no-repeat;
		width: 59px;
		height: 61px;
		top: 18px;
		left: 50%;
		margin-left: -29.5px;
	}

	.voice05 {
		background: url(../img/voice05.jpg) center top / contain no-repeat;
		margin: 0 36px;
	}
	.voice05 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people05.png) center top / contain no-repeat;
		width: 57px;
		height: 64px;
		top: 28px;
		left: 50%;
		margin-left: -28.5px;
	}

	.voice06 {
		background: url(../img/voice06.jpg) center top / contain no-repeat;
	}
	.voice06 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people06.png) center top / contain no-repeat;
		width: 59px;
		height: 64px;
		top: 18px;
		left: 50%;
		margin-left: -29.5px;
	}

	
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.row02 {
		padding: 0 0 12vw;
		background-color: #fff;
		border-radius:4vw;
	}
	.row02_title02 {
		margin-top: 12vw;
		padding: 16vw 8vw 0;
		text-align: center;
	}
	.row02_title02 h2 {
		font-size: 6vw;
		font-weight: normal;
		display: inline-block;
		position: relative;
		letter-spacing: 0.03em;
	}
	.row02_title02 h2:before {
		position: absolute;
		content: '';
		background: url(../img/flag01.png) center top / contain no-repeat;
		width: 28vw;
		height: 14vw;
		left: -13vw;
		top: -16vw;
	}
	.row02_title02 h2:after {
		position: absolute;
		content: '';
		background: url(../img/flag02.png) center top / contain no-repeat;
		width: 28vw;
		height: 14vw;
		right: -13vw;
		top: -16vw;
	}
	
	.voice_content01 {
		margin: 8vw 13.5vw 0;
		text-align: center;
	}
	.voice_content02 {
		margin: 8vw 13.5vw 0;
		text-align: center;
	}
	
	.lines3,
	.lines4 {
		width: 65vw;
		height: 65vw;
	}
	
	.lines3 .voice_title {
		padding-top: 24vw;
		letter-spacing: 0.03em;
	}
	.lines4 .voice_title {
		padding-top: 19vw;
		letter-spacing: 0.03em;
	}
	.voice_text {
		padding-top: 2vw;
		letter-spacing: 0.03em;
		font-weight: 300;
	}
	
	.voice01 {
		background: url(../img/voice01.jpg) center top / contain no-repeat;
	}
	.voice01 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people01.png) center top / contain no-repeat;
		width: 13vw;
		height: 12vw;
		top: 8vw;
		left: 50%;
		margin-left: -6.5vw;
	}
	
	.voice02 {
		background: url(../img/voice02.jpg) center top / contain no-repeat;
		margin: 8vw 0;
	}
	.voice02 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people02.png) center top / contain no-repeat;
		width: 14vw;
		height: 12vw;
		top: 4vw;
		left: 50%;
		margin-left: -7vw;
	}

	.voice03 {
		background: url(../img/voice03.jpg) center top / contain no-repeat;
	}
	.voice03 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people03.png) center top / contain no-repeat;
		width: 15vw;
		height: 13vw;
		top: 4vw;
		left: 50%;
		margin-left: -7.5vw;
	}

	.voice04 {
		background: url(../img/voice04.jpg) center top / contain no-repeat;
	}
	.voice04 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people04.png) center top / contain no-repeat;
		width: 13.5vw;
		height: 14vw;
		top: 2vw;
		left: 50%;
		margin-left: -6.75vw;
	}

	.voice05 {
		background: url(../img/voice05.jpg) center top / contain no-repeat;
		margin: 8vw 0;
	}
	.voice05 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people05.png) center top / contain no-repeat;
		width: 13.4vw;
		height: 15vw;
		top: 6vw;
		left: 50%;
		margin-left: -6.7vw;
	}

	.voice06 {
		background: url(../img/voice06.jpg) center top / contain no-repeat;
	}
	.voice06 .voice_title:before {
		position: absolute;
		content: '';
		background: url(../img/people06.png) center top / contain no-repeat;
		width: 13.5vw;
		height: 15vw;
		top: 2vw;
		left: 50%;
		margin-left: -6.75vw;
	}
	
	
}