@charset "utf-8";
/*--Index
custom_color --- 主要色
base --- 全体（body,リンク文字色など）
heading --- 下層の見出し
header --- ヘッダー
navigation --- グローバルナビ、スマホ固定ボタン
mainimg --- メイン画像
contactinfo --- お問い合せ
menu_sidebar --- メニュー（サイドバー）
copyright --- コピーライト
toppage --- トップページ
custom_block --- カスタムブロックの色設定
--*/
/*==================================
custom_color
==================================*/
:root {
	--c-01: #fff;
	--c-02: #333;/*文字色*/
	--c-03: #49b6b9;/*メイン色01 この色コードをBlock/setting.phpのmain01にも指定してください*/
	--c-04: #ddd;/*メイン色02 この色コードをBlock/setting.phpのmain02にも指定してください*/
	--c-05: #cf2e2e;/*赤色*/
	/*以下はカスタムブロックでよく使う色*/
	--c-06: #eee;/*薄い背景色*/
	--c-07: #ccc;/*グレーや茶などの薄めの線*/
	--c-08: #ff6900;/*orange01*/
	--c-09: #f43900;/*orange02*/
	--c-10: #eeb005;/*yellow01*/
	--c-11: #f05a5f;/*pink01*/
	--c-12: #22865e;/*green01*/
	--c-13: #507518;/*green02*/
	--c-14: #fffd284d;/*pale-yellow*/
	--c-15: #ffeddb;/*pale-orange*/	
}
/*カスタムカラー白黒以外*/
.has-main-01-color {
	color: var(--c-03);
}
.has-main-01-background-color {
	background-color: var(--c-03);
}
.has-main-02-color {
	color: var(--c-04);
}
.has-main-02-background-color {
	background-color: var(--c-04);
}
.has-red-color {
	color: var(--c-05);
}
.has-red-background-color {
	background-color: var(--c-05);
}
.has-orangeone-color {
	color: var(--c-08);
}
.has-orangeone-background-color {
	background-color: var(--c-08);
}
.has-bloodorange-color {
	color: var(--c-09);
}
.has-bloodorange-background-color {
	background-color: var(--c-09);
}
.has-yellow-color {
	color: var(--c-10);
}
.has-yellow-background-color {
	background-color: var(--c-10);
}
.has-pink-color {
	color: var(--c-11);
}
.has-pink-background-color {
	background-color: var(--c-11);
}
.has-green-color {
	color: var(--c-12);
}
.has-green-background-color {
	background-color: var(--c-12);
}
.has-yellowgreengreen-color {
	color: var(--c-13);
}
.has-yellowgreengreen-background-color {
	background-color: var(--c-13);
}
.has-pale-yellow-color {
	color: var(--c-14);
}
.has-pale-yellow-background-color {
	background-color: var(--c-14);
}
.has-pale-orange-color {
	color: var(--c-15);
}
.has-pale-orange-background-color {
	background-color: var(--c-15);
}

/*==================================
base
==================================*/
body {
	background: var(--c-01);
	color: var(--c-02);
	/* font-family: var(--f-gothic); */
	font-weight: 500;/*ゴシック体以外は無し*/
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	font-family: var(--f-rounded);
}
a:hover {
	color: var(--c-04);
}
a:active {
	color: var(--c-04);
}
/*==================================
heading
==================================*/
.h_style01 {
	background: #fce5e7;
	color: #363636;
	/* border: solid 4px #666; */
	/* border-radius: 12px; */
}
.h_style02,
.post h3:not([class]),
.block_wrapper h2:not([class]),
h2.is-style-default,
.is-style-h_style02 {
	color: var(--c-01);
	background: #49b6b9;
}
.h_style03,
.post h4,
.block_wrapper h3:not([class]),
h3.is-style-default,
.is-style-h_style03 {
	border-left: solid 8px #49b6b9;
	border-bottom: dotted 2px #49b6b9;
}
.h_style04,
.post h5,
.block_wrapper h4:not([class]),
h4.is-style-default,
.is-style-h_style04 {
	border-bottom: dotted 2px #f09192;
}
.h_style04::before,
.post h5::before,
.block_wrapper h4:not([class])::before,
h4.is-style-default::before,
.is-style-h_style04::before {
	background: var(--c-01);
	box-shadow: 0 0 0 8px #f09192;
}
.h_style05,
.post h6,
.block_wrapper h5:not([class]),
h5.is-style-default,
.is-style-h_style05 {
	border-bottom: double 4px #f09192;
}
/*==================================
header
==================================*/
#header {
	background: var(--c-01);
}
.h_upper {
	background: #fff;
	color: var(--c-02);
}
@media screen and (min-width: 782px) {
	.h_upper {
		padding: 2px 8px;
		background: #ccc;
	}
	.h_box01 {
		width: min(calc(60% - 1em),680px);
	}
	.h_box02 {
		width: min(calc(40% - 1em),320px);
	}
	.h_contact a {
		background-color: var(--c-03);
		border: solid 2px var(--c-03);
		color: var(--c-01);
		font-family: var(--f-gothic);
		font-weight: 500;
		/* font-family: var(--f-mincho);
		transform: rotate(.03deg); */
		/* font-family: var(--f-rounded); */
		/* box-shadow: 1.5px 1.5px 2px 0px rgba(0, 0, 0, 0.2); */
	}
	.h_contact a:hover,
	.h_contact a:active {
		background: var(--c-01);
		color: var(--c-03);
	}
}
/*==================================
navigation
==================================*/
.gnav_sp {
	background: var(--c-01);
}
.f_contact {
	background: #eee;
}
@media screen and (min-width: 782px) {
	.gnav_pc li::before,.gnav_pc li:last-child::after {
		padding-top: 2em;/*線の長さ*/
		border-left: dotted 1px #ccc;
	}
	.gnav_pc li a {
		color: inherit;
	}
	.gnav_pc li a:hover {
		color: var(--c-04);
	}
}
/*==================================
mainimg
==================================*/
.main_img {
	margin: 0 auto;
	background: #f1f1f1;
	/* background: linear-gradient(to right, #f1f1f1 0%,#f1f1f1 50%,#ddd 50%,#ddd 100%); */
}
/*==================================
contactinfo
==================================*/
/*上から順に「単色」「ストライプ」「チェック」*/
.contact {
	background: #ebf2f8;
}
/* .contact {
background-color: #f2f2f2;
background-size: 6px 6px;
background-image: linear-gradient(-45deg, #dfdfdf 10%, transparent 10%, transparent 50%, #dfdfdf 50%, #dfdfdf 60%, transparent 60%, transparent);
} */
/* .contact  {
background-color: #eaeaea;
background-size: 6px 6px;
background-image: linear-gradient(90deg, #dddddd 10%, transparent 10%),linear-gradient(#dddddd 10%, transparent 10%);
} */

/*カスタムフィールド内で<span class="em"></span>で指定*/
.contact_uketsuke_note .em {
	color: var(--c-05);
}
@media screen and (min-width: 782px) {
	.page_top_pc a {
		color: inherit;
		text-decoration: none;
	}
	.page_top_pc a:hover {
		color: var(--c-04);
	}
}
/*==================================
menu_sidebar
==================================*/
.side_fixed_menu li a {
	color: var(--c-01);
	font-size: 18px;
	text-align: center;
	background: var(--c-04);
	border-radius: 12px;
}
.widget_nav_menu,
.widget_categories,
.widget_recent_entries {
	border: solid 1px var(--c-03);
	border-radius: 12px;
}
.widget_nav_menu p,
.widget_categories p,
.widget_recent_entries p {
	background: var(--c-03);
	color: var(--c-01);
	font-size: 20px;
	border-radius: 10px 10px 0 0;
}
.widget_nav_menu li,
.widget_categories li,
.widget_recent_entries li {
	border-bottom: dotted 1px var(--c-03);
}
.widget_nav_menu li:last-child,
.widget_categories li:last-child,
.widget_recent_entries li:last-child  {
	border-bottom: dotted 1px var(--c-03);
}
.widget_nav_menu li a,
.widget_categories li a,
.widget_recent_entries li a {
	color: inherit;
}
/*上から順に▲、→、＞*/
.widget_nav_menu li a::after,
.connection_menu li a::after {
	content:"▲";
	transform: translate(0,-50%) rotate(90deg);
	font-size: 14px;
	color: var(--c-03);
}
/* .widget_nav_menu li a::after,
.connection_menu li a::after {
content:"→";
transform: translate(0,-50%) scale(.8,1.5);
font-family: var(--f-rounded);
font-size: 20px;
color: var(--c-03);
} */
/* .widget_nav_menu li a::after,
.connection_menu li a::after {
content:">";
transform: translate(0,calc((50% + .2em) * -1));
font-family: var(--f-rounded);
font-size: 20px;
color: var(--c-03);
} */

@media screen and (min-width: 782px) {
	.widget_nav_menu li a:hover,
	.widget_categories li a:hover,
	.widget_recent_entries li a:hover {
		color: inherit;
	}
	.widget_nav_menu li a:hover::after,
	.connection_menu li a:hover::after {
		color: var(--c-04);
	}
}
/*==================================
footer
==================================*/
/* フッターCTAが“見えていなくても”クリックを奪わないようにする（枠＝透過） */
.f_cta { pointer-events: none !important; }

/* a 自体はクリック不可、画像の上だけをクリック可にする */
.f_cta .bnr a { pointer-events: none !important; }
.f_cta .bnr a img { pointer-events: auto !important; display:block !important; }

@media screen and (min-width: 782px) {
	.f_cta { pointer-events: auto !important; }
}
/*==================================
copyright
==================================*/
.copyright {
	background: #62b0dc;
	color: var(--c-01);
}
/*==================================
toppage
==================================*/
/*---見出し01（選ばれるポイント）---*/
/*ベタ*/
/* .top_heading01 {
color: #fff;
background: #6e6e6e;
}
.top_heading01::after {
content: '';
display: none;
} */
/*グラデーション*/
.top_heading01 {
	color: #fff;
	background: linear-gradient( to bottom, #b3b3b3 0%, #e6e6e6 100%);
}
.top_heading01::after {
	content: '';
	display: none;
}
/*吹き出し*/
/* .top_heading01 {
color: #fff;
background: #6e6e6e;
}
.top_heading01::after {
display: block;
border-top: min(4vw,48px) solid #6e6e6e;
} */
/*画像部分(共通) */
.top_heading01 img {
	width: min(60%,400px)!important;
}
/*---見出し02（おすすめ、挨拶、流れ）---*/
/* － 横棒 － */
/* .top_heading02 {
width: min(100%,680px);
font-size: clamp(24px,5vw,40px);
font-weight: bold;
text-align: center;
}
.top_heading02::before, .top_heading02::after {
width: 1.5em;
height: 2px;
background: #563e18;
}
.top_heading02::before {
margin-right: .5em;
}
.top_heading02::after {
margin-left: .5em;
} */
/* アンダーライン青*/
.top_heading02 {
	width: min(100%,680px);
	font-size: clamp(24px,5vw,40px);
	font-weight: bold;
	text-align: center;
	position: relative;
	white-space: nowrap;
}
.top_heading02::after {
	content: '';
	width: 110px;
	height: 4px;
	background-color: #7dbde2;
	display: inline-block;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 55px)
}
/* アンダーライン緑 */
.top_heading02-g {
	width: min(100%,680px);
	font-size: clamp(24px,5vw,40px);
	font-weight: bold;
	text-align: center;
	position: relative;
	white-space: nowrap;
}
.top_heading02-g::after {
	content: '';
	width: 110px;
	height: 4px;
	background-color: #49b6b9;
	display: inline-block;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 55px)
}

.top_heading_omoi {
	width: min(100%,680px);
	font-size: clamp(19px,5vw,36px);
	font-weight: bold;
	text-align: center;
	position: relative;
	white-space: nowrap;
	background: linear-gradient(transparent 70%, #a6d6f1 70%);
	display: inline;
}
.top_heading_line_g {
	width: min(100%,680px);
	font-size: clamp(19px,5vw,36px);
	font-weight: bold;
	text-align: center;
	position: relative;
	white-space: nowrap;
	background: linear-gradient(transparent 70%, #c9f2e6 70%);
	display: inline;
}
.top_heading_line_p {
	width: min(100%,680px);
	font-size: clamp(19px,5vw,36px);
	font-weight: bold;
	text-align: center;
	position: relative;
	white-space: nowrap;
	background: linear-gradient(transparent 70%, #f7d1d2 70%);
	display: inline;
}
@media screen and (min-width: 782px) {
	.top_heading_omoi,.top_heading_line_p,.top_heading_line_g {
		padding: 0 15px;
	}
}
/* ／ 斜線 ／ */
/* .top_heading02 {
width: min(100%,680px);
font-size: clamp(24px,5vw,40px);
font-weight: bold;
text-align: center;
}
.top_heading02::before, .top_heading02::after {
width: 1.5em;
height: 2px;
background: #563e18;
}
.top_heading02::before {
transform: rotate(45deg);
}
.top_heading02::after {
transform: rotate(45deg);
} */
/* ＼ 吹き出し風 ／ */
/* .top_heading02 {
width: min(100%,680px);
font-size: clamp(24px,5vw,40px);
font-weight: bold;
text-align: center;
}
.top_heading02::before, .top_heading02::after {
width: 1.5em;
height: 2px;
background: #563e18;
}
.top_heading02::before {
transform: rotate(45deg);
}
.top_heading02::after {
transform: rotate(-45deg);
} */

/*---リンクボタン---*/
.top_btn a {
	width: min(90%,500px);
	border: solid 2px var(--c-03);
	background: var(--c-03);
	color: var(--c-01);
	font-size: clamp(18px,3.5vw,24px);
	font-weight: bold;
	box-shadow: 3px 3px 3px 0px rgba(74, 38, 6, 0.1);
}
.top_btn a:hover,
.top_btn a:active {
	background: var(--c-01);
	color: var(--c-03);
}

/*---お悩みタイトル---*/
.top_catch_ttl {
	background: #d8d8d8;
}

/*---おすすめ背景---*/
/*上から順に「単色」「ストライプ」「チェック」*/
.top_osusume {
	background: #ebf2f8;
}
/* .top_osusume {
background-color: #f2f2f2;
background-size: 6px 6px;
background-image: linear-gradient(-45deg, #dfdfdf 10%, transparent 10%, transparent 50%, #dfdfdf 50%, #dfdfdf 60%, transparent 60%, transparent);
} */
/* .top_osusume  {
background-color: #eaeaea;
background-size: 6px 6px;
background-image: linear-gradient(90deg, #dddddd 10%, transparent 10%),linear-gradient(#dddddd 10%, transparent 10%);
} */

/*---挨拶背景---*/
/*上から順に「単色」「ストライプ」「チェック」*/
.top_greet {
	background: #edfcf7;
}
/* .top_greet {
background-color: #f2f2f2;
background-size: 6px 6px;
background-image: linear-gradient(-45deg, #dfdfdf 10%, transparent 10%, transparent 50%, #dfdfdf 50%, #dfdfdf 60%, transparent 60%, transparent);
} */
/* .top_greet  {
background-color: #eaeaea;
background-size: 6px 6px;
background-image: linear-gradient(90deg, #dddddd 10%, transparent 10%),linear-gradient(#dddddd 10%, transparent 10%);
} */
/* ドット */
.top_hoiku  {
	background-image:
		radial-gradient(#eeeded 30%, transparent 30%);
	background-size: 11px 13px;
}
.top_news  {
	background-image:
		radial-gradient(#eeeded 30%, transparent 30%);
	background-size: 11px 13px;
}
.top_bgcol_p {
	background: #fcf6f6;
}
@media screen and (min-width: 782px) {
	.top_hoiku {
		background:url(image/top/top_hoiku_bg.png)no-repeat;
		background-position: 50% 27%;
	}
	.top_news {
		background:url(image/top/top_hoiku_bg.png)no-repeat;
		background-position: 50% 42%;
	}
}
/*==================================
custom_block
==================================*/
/* お客様の声 */
div.block_voice {
	background: var(--c-01);
	border: solid 1px var(--c-07);
}
p.block_voice_ttl {
	border-bottom: dotted 2px var(--c-07);
}
/* キャッチリスト */
li.block_catch_list_li {
	border-bottom: dotted 2px var(--c-07);
}
/* よくある質問 */
dt.block_faq_list_q {
	color: var(--c-02);
	border-bottom: dashed 2px var(--c-03);
}
dt.block_faq_list_q::before {
	color: var(--c-03);
}
dd.block_faq_list_a::before {
	color: var(--c-05);
}
/* 〇つのポイント */
li.block_point_list {
	border-bottom: dotted 2px var(--c-07);
}
p.block_point_list_ttl {
	color: var(--c-02);
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
p.block_point_list_ttl::before {
	background: #49b6b9;
	color: var(--txtcolor01);
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
p.block_point_list_ttl::after {
	color: var(--txtcolor01);
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
/* 料金表 */
th.block_price_th,
td.block_price_td {
	border: solid 1px var(--c-07);
}
th.block_price_th {
	background-color: var(--c-06);
}
/* 受付時間 */
.block_uketsuke tr:not(:first-child) > * {
	border-top: 1px solid var(--c-02);
}
.block_uketsuke tr:last-child > * {
	border-bottom: 1px solid var(--c-02);
}
.contact_uketsuke_note {
	text-align: center;
	font-size: clamp(14px,2.8vw,20px);
	font-weight: bold;
}
/* 施術の流れ */
ul.block_flow li {
	border-bottom: solid 2px var(--c-07);
	position: relative;
}
ul.block_flow li::before {
	border-color: var(--c-07) transparent transparent;
}
ul.block_flow li::after {
	border-color: #fff transparent transparent;
}
li.block_flow_list dl dt::before {
	background: var(--c-03);
	color: var(--c-01);
}
p.block_flow_list_ttl {
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
/* 施術の流れ（3カラム） */
ol.block_flow_column li figure::before {
	background: var(--bgcolor04);
	color: var(--txtcolor01);
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
.block_flow_column_ttl {
	color: var(--txtcolor01);
	font-family: var(--f-gothic);
	/* font-family: var(--f-mincho);
	transform: rotate(.03deg); */
	/* font-family: var(--f-rounded); */
}
