@charset "UTF-8";

:root {
	--i_bg_color: #FFFFFF;
	--i_txt_color: #333333;
	--i_main_color: #0051C5;
	--i_main2_color: #ff0000;
	--i_sub_color: #C3C300;
	--i_sub2_color: #fafeff;
	--i_sub3_color: #fafeff;
	--i_btn_color: #0051C5;
	--i_btn_hover_color: #0061EC;
	--i_btn_txt_color: #FFFFFF;
	--i_btn_hover_txt_color: #FFFFFF;
	--i_shadow_color: rgba(0, 0, 0, 0.05);
	--i_border_color: rgba(0, 0, 0, 0.13);
	--i_noimg_bg_color: #FFFFFF;
	--i_padding: 20px;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.65rem;
	line-height: 1.9;
	letter-spacing: 0.02rem;
	-webkit-text-size-adjust: 100%;
	color: var(--i_txt_color);
	font-weight: 500;
}
body,
main {
	background: var(--i_bg_color);
}
@media screen and (max-width: 850px) {
	html {
		font-size: 60.606%;
	}
	body {
		letter-spacing: 0px;
	}
}
a {
	outline: 0;
	text-decoration: none;
	color: var(--i_txt_color);
}
section[style*=" color:"]:not([style*=" color: inherit"]) a,
div[style*=" color:"]:not([style*=" color: inherit"]) a {
	color: inherit;
}
/*composite_boxの最大高さとトリミングの起点　基本はjsにより各カラム中から最大の画角に設定*/
.composite_box01 .inner_item_img img {
	object-position: 50% 50%;
}
.no_img {
	background: var(--i_noimg_bg_color, rgba(200, 200, 200, 0.3));
	border: solid 1px var(--i_border_color);
}

/*----------------------------余白設定----------------------------*/

main > section:first-child:not([class*="pt"]),
main > div:first-child:not([class*="pt"]),
div[class*="pb"] + .contents_related,
section[class*="pb"] + .contents_related,
div[class*="pb"] + .contents_related_tags,
section[class*="pb"] + .contents_related_tags {
	padding-top: calc(var(--i_padding) * 3);
}
main > section:not([class*="pt"]),
main > div:not([class*="pt"]),
aside > section:not([class*="pt"]),
aside > div:not([class*="pt"]) {
	padding-bottom: calc(var(--i_padding) * 3);
}
@media screen and (max-width: 800px) {
	main > section:first-child:not([class*="pt"]),
	main > div:first-child:not([class*="pt"]),
	div[class*="pb"] + .contents_related,
	section[class*="pb"] + .contents_related,
	div[class*="pb"] + .contents_related_tags,
	section[class*="pb"] + .contents_related_tags {
		padding-top: calc(var(--i_padding) * 2);
	}
	main > section:not([class*="pt"]),
	main > div:not([class*="pt"]),
	aside > section:not([class*="pt"]),
	aside > div:not([class*="pt"]) {
		padding-bottom: calc(var(--i_padding) * 2);
	}
}

/*----------------------------背景パララックス----------------------------*/

.parallax {
	box-shadow: 0 0 5px var(--i_shadow_color) inset;
}

/*----------------------------ボタン----------------------------*/

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}
#fixbtn .contents_btn01 a:before {
	display: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

/*----------------------------other parts----------------------------*/

/*--リスト--*/
.default_ul li:before {
	border-top: 1px solid var(--i_sub_color);
	border-right: 1px solid var(--i_sub_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: 8px;
	left: 0;
}

/*--アーカイブページ カテゴリー--*/
.category1 li a {
	border: 1px solid var(--i_main2_color);
	border-radius: 50px;
	color: var(--i_main2_color);
	font-size: 1.4rem;
}
.category1 li a:hover,
.category1 li a.current {
	background: var(--i_main2_color);
	color: #fff;
}

/*--sidebar--*/
#sidebar section,
#sidebar > div {
	border-bottom: 1px solid var(--i_border_color);
}
#sidebar h2 {
	text-align: left;
	font-size: 2.2rem;
}
#sidebar .sidebar_tag li {
	border: 1px solid var(--i_border_color);
	background: var(--i_sub2_color);
}
#sidebar .sidebar_list a {
	position: relative;
	padding-left: 15px;
}
#sidebar .sidebar_list a:before {
	content: "";
	display: block;
	position: absolute;
	border-top: 1px solid var(--i_sub_color);
	border-right: 1px solid var(--i_sub_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: calc(50% - 3px);
	left: 0;
}
@media screen and (max-width: 850px) {
	#sidebar {
		border: 5px solid var(--i_sub2_color);
	}
}

/*----------------------------pager----------------------------*/

/*アーカイブページページャー*/
.pager li a {
	height: 45px;
	width: 45px;
	line-height: 45px;
	border: 1px solid var(--i_main2_color);
	font-size: 1.4rem;
	color: var(--i_main2_color);
}
.pager li:not(.arrow) a:hover,
.pager li:not(.arrow).current a {
	background: var(--i_main2_color);
	color: #fff;
}
.pager li.arrow a {
	background: none;
}

/*シングルページページャー*/
.pager2 li a {
	border: 1px solid var(--i_main2_color);
	color: var(--i_main2_color);
	line-height: 45px;
	padding: 0 15px;
	font-size: 1.4rem;
}
.pager2 li a:hover {
	background: var(--i_main2_color);
	color: #fff;
}

/*----------------------------popup----------------------------*/
/*画像ポップアップ拡大表示*/
.popup {
	background: rgba(255, 255, 255, 0.7);
}
.popclose {
	color: var(--i_main_color);
}
.popnav li {
	background: var(--i_main_color);
}
.poptxt {
	font-size: 1.2rem;
}

/*------------------------------------------------------------------*/
/*----------------------------widget--------------------------------*/
/*------------------------------------------------------------------*/

/*----------------------------contents_faq01----------------------------*/
.contents_faq01 dt {
	padding-left: 5rem;
	margin-bottom: 25px;
	min-height: 35px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
}
.contents_faq01 dd {
	padding-left: 7.3rem;
	margin-bottom: 15px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
}
.contents_faq01 dt:before,
.contents_faq01 dd:before {
	width: 4rem;
	height: 4rem;
	font-size: 2.6rem;
	line-height: 1.35;
	box-sizing: border-box;
	font-weight: bold;
	color: var(--i_bg_color);
	background: var(--i_main_color);
	text-align: center;
}
.contents_faq01 dd:before {
	line-height: 1.4;
	background: var(--i_main2_color);
}

/*----------------------------contents_related_tags----------------------------*/

.contents_related_tags .inner_item {
	border: 1px solid var(--i_border_color);
}
.contents_related_tags .inner_item:hover {
	background: var(--i_sub2_color);
}
.contents_related .inner_item a:hover {
	background: var(--i_sub2_color);
	opacity: 0.8;
}

/*----------------------------block_table_1----------------------------*/

.block_table_1 table thead {
	background: var(--i_sub2_color);
}
.block_table_1 table thead th,
.block_table_1 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_1 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_1 table td {
	background-color: #fff;
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_1 table thead td {
	text-align: center;
	font-weight: bold;
}

/*----------------------------block_table_2,5,6----------------------------*/
.block_table_2 table thead,
.block_table_2 table thead th,
.block_table_2 table thead td,
.block_table_5 table thead,
.block_table_5 table thead th,
.block_table_5 table thead td,
.block_table_6 table thead,
.block_table_6 table thead th,
.block_table_6 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_2 table th,
.block_table_5 table th,
.block_table_6 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_2 table td,
.block_table_5 table td,
.block_table_6 table td {
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_2 table thead td,
.block_table_5 table thead td,
.block_table_6 table thead td {
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 500px) {
	.block_table_2 table {
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_2 table th {
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_2 table td {
		border-top: 1px dotted var(--i_border_color);
	}
}

/*----------------------------block_table_3----------------------------*/
.block_table_3 table thead,
.block_table_3 table thead th,
.block_table_3 table thead td,
.block_table_7 table thead,
.block_table_7 table thead th,
.block_table_7 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_3 table th,
.block_table_7 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_3 table td,
.block_table_7 table td {
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
@media screen and (max-width: 500px) {
	.block_table_3 table {
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_3 table th {
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_3 table td {
		border-top: 1px dotted var(--i_border_color);
	}
}
.block_table_3_item li {
	vertical-align: middle;
}

/*----------------------------gallery_archive / gallery_single----------------------------*/
.gallery_archive .inner_item a,
.gallery_single .inner_item a {
	transition: 0.2s ease-in-out;
	background-color: transparent;
}
.gallery_archive .inner_item a:hover,
.gallery_single .inner_item a:hover {
	background-color: #000;
}
.gallery_archive .inner_item a:hover img,
.gallery_single .inner_item a:hover img {
	opacity: 0.8;
}
.gallery_archive .inner_item a:after,
.gallery_single .inner_item a:after {
	color: #fff;
}
.gallery_archive .inner_item p span,
.gallery_single .inner_item p span {
	color: #fff;
}
.gallery_single_slider .slick-arrow::before {
	border-color: var(--i_btn_color);
}

/*----------------------------widget_gallery01----------------------------*/
.widget_gallery01 .slick-arrow {
	height: 40px;
	width: 30px;
	top: calc(50% - 20px);
	left: 0;
}
.widget_gallery01 .slick-next {
	left: auto;
	right: 0;
}

/*----------------------------gallery hover効果----------------------------*/
main .widget_gallery01 a,
main .gallery_archive .inner_item a,
main .gallery_single .inner_item a {
	overflow: hidden;
}
main .widget_gallery01 a img,
main .gallery_archive .inner_item a img,
main .gallery_single .inner_item a img {
	/*▼ 位置調整 美容院などの人物の場合は50% 30%あたり*/
	object-fit: cover;
	object-position: 50% 50%;
	backface-visibility: visible;
	transition: 1s ease-out !important;
	transition-property: transform opacity !important;
	transform: scale(1.001, 1.001);
}
main .widget_gallery01 a:hover img,
main .gallery_archive .inner_item a:hover img,
main .gallery_single .inner_item a:hover img {
	transform: scale(1.1, 1.1);
	opacity: 0.8;
}

/*----------------------------news_archive----------------------------*/
.news_archive article .inner_item_img:hover {
	opacity: 0.8;
}
.news_archive article .entry_meta {
	font-size: 1.3rem;
}
.add_design5 #primary article .inner_item_img a i:nth-last-child(1) {
	background-size: 50% !important;
}
#sidebar .widget_news02 li a div span i {
	background-size: 50% !important;
}

/*----------------------------widget_coupon----------------------------*/
.widget_coupon .content_wrapper {
	max-width: 900px !important;
}
.widget_coupon .inner_item > div,
.widget_coupon .inner_item > dl {
	font-size: 1.4rem;
	line-height: 1.7;
}

/*----------------------------widget_form----------------------------*/
.widget_form .privacypolicy {
	border: 1px solid var(--i_border_color);
}
.widget_form form {
	border-top: 1px solid var(--i_border_color);
}
.widget_form form dl {
	border-bottom: 1px solid var(--i_border_color);
}
.widget_form form dt,
.widget_form form dd {
	vertical-align: middle;
}
.widget_form form dt span {
	color: var(--i_sub2_color);
	color: #d43b3b !important;
	font-size: 1.2rem;
	font-weight: bold;
}
@media screen and (max-width: 770px) {
	.widget_form form dt {
		border-bottom: 1px dotted var(--i_border_color);
	}
}
main form dl input,
main form textarea {
	background: var(--i_sub2_color);
	border: 1px solid transparent;
	letter-spacing: 1px;
}
main form dl input:focus,
main form textarea:focus {
	background: var(--i_bg_color);
	color: var(--i_txt_color);
	border: 1px solid var(--i_border_color);
}
main form .submit input {
	letter-spacing: 3px;
	border: none;
}
main form select {
	background: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	letter-spacing: 1px;
}
main form input[type="radio"] + label,
main form input[type="checkbox"] + label {
	padding: 0 15px 0 22px;
}
main form input[type="radio"] + label::before,
main form input[type="checkbox"] + label::before {
	top: 50%;
	left: 0;
	width: 17px;
	height: 17px;
	margin-top: -9px;
	background: var(--i_sub2_color);
}
main form input[type="radio"] + label::before {
	border-radius: 30px;
}
main form input[type="radio"]:checked + label::after,
main form input[type="checkbox"]:checked + label::after {
	left: 4px;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	background: var(--i_main_color);
}
main form input[type="radio"]:checked + label::after {
	border-radius: 100%;
}

/*----------------------------widget_link----------------------------*/
.widget_link .inner_item_txt {
	font-size: 2rem;
}
.widget_link .inner_item_url {
	color: var(--i_main_color);
	font-weight: bold;
}
.widget_link.block_link_1 .wrapper_item a {
	border-left: 1px solid var(--i_main_color);
}

/*----------------------------widget_lp01----------------------------*/
.widget_lp01 li a:hover {
	opacity: 0.8;
}
.widget_lp01 li a div span {
	background-size: 60% auto;
}

/*----------------------------widget_menu01----------------------------*/
.widget_menu01 h3 {
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.widget_menu01 li dd {
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_menu02----------------------------*/
.widget_menu02 h3 {
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
}
.widget_menu02 li > p {
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_news02----------------------------*/
.block_news_2 li {
	box-shadow: 5px 5px 0 var(--i_shadow_color);
}
.block_news_2 li a {
	padding: 30px;
}
.block_news_2 li a:after {
	border: 0 solid var(--i_sub2_color);
}
.block_news_2 li a:hover:after {
	border-width: 10px !important;
}

/*----------------------------widget_shop01----------------------------*/
.widget_staff01 .inner_item a:hover * {
	opacity: 0.8;
}
.widget_staff01 .sub {
	font-size: 1.2rem;
	font-weight: bold;
}

/*----------------------------widget_tel----------------------------*/
.widget_tel .inner_item_tel a,
.widget_tel .inner_item_tel span {
	font-size: 3.6rem;
	letter-spacing: 0.1rem;
	line-height: 1.1;
	padding: 20px;
	font-weight: bold;
}
@media screen and (max-width: 450px) {
	.widget_tel .inner_item_tel a,
	.widget_tel .inner_item_tel span {
		font-size: 2.6rem;
		padding: 15px 10px;
	}
	.widget_tel .inner_item_tel img {
		margin: 0 5px -2px 0;
	}
	.widget_tel .inner_item_tel svg {
		height: 16px;
		width: 16px;
	}
}

/*------------------blog------------------------*/
.block_news_2 li {
	box-shadow: none;
	border: 1px solid var(--i_border_color);
}

/*------------------glossary_archive------------------------*/

.glossary_archive .content_wrapper article {
	margin-bottom: 30px;
	padding-bottom: 30px;
	/*★1*/
}
.glossary_archive .content_wrapper .heading.block_header_2 {
	margin-bottom: 10px;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h {
	font-size: 1.8rem;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h:after {
	top: 1em;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:after {
	content: "View More";
	position: absolute;
	width: 150px;
	bottom: 32px;
	/*★1 + 数px*/
	right: 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: normal;
	padding: 3px 10px;
}
.glossary_archive .content_wrapper article .entry_body {
	padding-right: 180px;
}
@media screen and (max-width: 1224px) {
	.glossary_archive .content_wrapper .heading.block_header_2 a:after {
		bottom: calc(32px + 1.8rem);
		/*★1 + 数px*/
	}
}
@media screen and (max-width: 650px) {
	.glossary_archive .content_wrapper article {
		padding-bottom: 60px;
	}
	.glossary_archive .content_wrapper .heading.block_header_2 a:after {
		bottom: 30px;
		/*★1*/
	}
	.glossary_archive .content_wrapper article .entry_body {
		padding-right: 0;
	}
}

/*------------------recruit------------------------*/
.recruit_archive.add_design1 .recruitment_list .inner_item {
	background: rgba(255, 255, 255, 0.8);
}

/*------------------------------------------------------------------*/
/*---------------------------Generated------------------------------*/
/*------------------------------------------------------------------*/

/* ===== load ===== */

#load div:nth-of-type(1) {
	background: var(--i_bg_color);
}
#load.load8 {
	background-color: var(--i_txt_color);
}
#load .loader {
	border: 1px solid var(--i_main_color);
}
#load .loader,
#load .loader::before {
	border-top-color: var(--i_main_color);
}
#load .loader::before,
#load .loader::after {
	/*★*-1*/
	left: -1px;
	top: -1px;
}
#load .loader,
#load .loader::before {
	border-top-color: var(--i_main_color) !important;
}
#load img {
	max-width: 280px;
}
@media screen and (max-width: 650px) {
	#load img {
		max-width: 200px;
	}
}

/* ===== header ===== */
header {
	font-size: 1.4rem;
	color: var(--i_txt_color);
	background: var(--i_bg_color);
}
.scrolled header {
	box-shadow: 0 0 20px rgba(0, 0, 0, .13);
}
header .wraper,
header#pattern2:not(.width_full) nav {
	max-width: 1400px;
}
header h1 {
	line-height: 1.5;
	font-size: 1.3rem;
	font-weight: normal;
	opacity: .7;
	fill: var(--i_txt_color);
}
body.scrolled header .logo {
	padding: 20px 0 !important;
}
header .logo,
body header .logo a img {
	max-width: 280px;
}
body.scrolled header .logo a img {
	max-height: 45px;
}
header .header_contents .header_col1 {
	/* ▼水平方向レイアウト */
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
header .header_contents .header_col1 .tel {
	position: relative;
	font-size: 26px;
	line-height: 1;
	padding-left: 26px;
	font-weight: 600;
	fill: var(--i_txt_color);
}
header .header_contents .header_col1 .tel svg,
header .burger li.sp_translate a svg,
header .header_contents .header_sns li svg {
	fill: var(--i_txt_color);
}
header .sp_menu a div span,
header .sp_menu a div:before,
header .sp_menu a div:after {
	background: var(--i_txt_color);
}
header .header_contents .header_col1 .tel svg {
	width: 22px;
	height: 22px;
	top: calc(50% - 10px);
	left: 0;
}
header#pattern1 nav,
header#pattern3 nav {
	position: relative;
}
header nav * {
	color: var(--i_txt_color);
}
header nav ul.nav_1st {
	width: 100%;
	max-width: 1300px !important;
}
header nav ul.nav_1st > li {
	box-sizing: border-box;
	position: relative;
}
header nav ul.nav_1st > li:after {
	/*罫線*/
	content: "";
	width: 1px;
	height: 50%;
	position: absolute;
	top: 25%;
	left: 0;
}
header nav ul.nav_1st > li:last-child:before {
	/*罫線*/
	content: "";
	width: 1px;
	height: 50%;
	position: absolute;
	top: 25%;
	right: 0;
}
header nav ul.nav_1st > li > a {
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-left: 1vw;
	padding-right: 1vw;
}
header nav ul.nav_1st > li > a span {
	/*ナビの高さはline-heightで調整*/
	line-height: 3;
	/* マージン普通選択時 */
	letter-spacing: .1rem;
	transition: .4s ease-in-out;
	font-size: 1.45rem;
	font-weight: 600;
}
body.scrolled header:not(.nofixed) nav ul.nav_1st > li > a span {
	line-height: 4;
}
header nav ul.nav_1st > li > a:hover span {
	color: var(--i_main_color);
}
header#pattern2 nav ul.nav_1st > li > a span {
	line-height: 3.5;
}
body.scrolled header#pattern2 nav ul.nav_1st > li > a span {
	line-height: 2.5;
}
body.margin header nav ul.nav_1st > li > a span {
	line-height: 4;
}
header nav ul.nav_2nd {
	padding-top: 20px;
}
header nav ul.nav_1st > li:hover ul.nav_2nd {
	padding-top: 15px;
	box-shadow: 2px 2px 5px var(--i_shadow_color);
}
header nav ul.nav_2nd > li {
	background: rgba(255, 255, 255, .9);
	border-bottom: 1px solid var(--i_border_color);
}
header nav ul.nav_2nd > li:nth-last-of-type(1) {
	border-bottom: none;
}
header nav ul.nav_2nd li a {
	padding: 10px 20px;
	font-weight: normal;
	font-size: 1.4rem;
}
header nav ul.nav_2nd > li > a {
	padding-right: 30px;
}
header nav ul.nav_2nd > li > a:after {
	height: 5px;
	width: 5px;
	transform: rotate(-45deg);
	border-right: 1px solid var(--i_sub_color);
	border-bottom: 1px solid var(--i_sub_color);
	top: calc(50% - 2.5px);
	right: 20px;
}
header nav ul.nav_3rd {
	padding-left: 20px;
}
header nav ul.nav_3nd li a {
	padding: 5px 20px;
}
header nav ul.nav_3rd > li > a:after {
	height: 1px;
	width: 4px;
	background: var(--i_sub_color);
	top: calc(50% - .5px);
	left: 5px;
}
@media screen and (max-width: 900px) {
	body.scrolled header .logo {
		padding: 10px 0 !important;
	}
	header.open:after,
	header .header_contents {
		/*background: rgba(255, 255, 255, 0.9);*/
		background: #FFFFFF;
	}
	header .burger li.sp_translate a svg {
		height: 28px;
		width: 28px;
		margin: 10% auto;
	}
	header .header_sns,
	header .header_contents .header_col1,
	header .header_contents .header_col2 {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid var(--i_border_color);
	}
	header .header_sns {
		border-bottom: none;
	}
	header .header_sns:empty,
	header .header_contents .header_col1:empty,
	header .header_contents .header_col2:empty {
		border: none;
	}
	header .header_contents .header_col1 .tel {
		float: none;
	}
	header .header_contents .header_col2 {
		display: block !important;
	}
	header nav {
		border-bottom: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st li {
		border-bottom: 1px solid var(--i_border_color);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	header nav ul.nav_1st > li:before,
	header nav ul.nav_1st > li:after {
		display: none !important;
	}
	header nav ul.nav_1st > li i:before,
	header nav ul.nav_1st > li i:after {
		background: var(--i_sub_color);
	}
	header nav ul.nav_2nd {
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_2nd > li {
		box-shadow: none;
	}
	header nav ul.nav_2nd > li * {
		color: #473b2b;
	}
	header nav ul.nav_3rd {
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_3rd > li:nth-last-of-type(1) {
		border-bottom: none;
	}
	header .logo a img {
		max-height: 40px !important;
	}
	header nav ul.nav_1st > li > a:hover:before {
		transform: scale(0, 0);
	}
	header#pattern1 nav,
	header#pattern3 nav {
		border-bottom: 0;
		border-top: 0;
	}
	header nav ul.nav_1st > li > a:hover {
		background: none;
	}
	header nav ul.nav_1st > li > a span {
		color: var(--i_txt_color);
	}
	header#pattern2 nav ul.nav_1st {
		border-bottom: 0px;
	}
	header .wraper > .inner {
		min-height: 45px !important;
	}
}

/* ===== MV LV ===== */

#mv_outer {
	/*mvに背景とかはここを利用する*/
	position: relative;
}
#mv {
	width: 100%;
	height: 100vh;
}

#mv::after {
	pointer-events: none;
}
#mv .mv_text {
	height: 90%;
	align-items: flex-end;
	width: 100% !important;
	left: 0 !important;
	bottom: 10% !important;
}
#mv .mv_text > div {
	max-width: none !important;
	box-sizing: border-box;
	width: 90%;
	position: relative;
	color: var(--i_txt_color);
}
#mv .mv_text h2 {
	font-size: 3.8rem !important;
	/* ←max-font-size的意味合いで使用する。動作はjs。*/
	line-height: 1.1;
	font-weight: bold;
	position: relative;
	display: inline-block;
	letter-spacing: 0rem;
}
#mv .mv_text p {
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 0rem;
}
#mv .mv_scroll {
	position: absolute;
	width: 2.5%;
	height: auto;
	left: auto;
	right: 0;
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}
#mv .mv_scroll a {
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
	font-weight: bold;
	letter-spacing: 0rem;
	font-size: 1.2rem;
	position: relative;
	padding-bottom: 40px;
	height: auto;
	width: 100%;
	text-indent: 0;
	transition: all .3s ease-in-out;
	text-align: center;
	color: var(--i_bg_color);
	display: flex;
	align-items: center;
}
#mv .mv_scroll a::before {
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--i_bg_color);
	border-bottom: 2px solid var(--i_bg_color);
	position: absolute;
	bottom: 0;
	left: calc(50% - 4px);
	top: auto;
	transition: all .3s ease-in-out;
}
#mv .mv_scroll a:hover {
	padding-top: 10px;
	padding-bottom: 30px;
}
#mv .mv_pointer,
#mv .mv_arrow {
	display: none;
}
#mv .mv_textimg {
	width: 95%;
	left: 2.5%;
	height: calc(100% - 105px);
	top: auto;
	bottom: 0;
}
#mv .mv_textimg img {
	max-width: 530px;
	width: 100%;
}
#mv .mv_textimg a {
	height: auto;
	width: 65%;
	aspect-ratio: 1 / 1;
	left: auto;
	right: 0;
	border-radius: 50px;
	max-width: 180px;
}
@media screen and (max-width: 100vh) {
	#mv {
		height: 80vh;
	}
}
@media screen and (max-height: 800px) and (min-width: 901px) {
	#mv {
		min-height: 600px !important;
	}
}
@media screen and (max-width: 900px) {
	#mv .mv_text h2 {
		font-size: 6vw !important;
		line-height: 1.5;
	}
	#mv .mv_text p {
		font-size: 1.8rem;
	}
	#mv .mv_scroll {
		display: none;
	}
	#mv .mv_textimg {
		height: calc(100% - 65px);
	}
}
#lv {
	background: var(--i_txt_color);
	height: 450px !important;
	padding-bottom: 0;
	width: 100%;
}
#lv_outer {
	/*mvに背景とかはここを利用する*/
	position: relative;
}
header.over + #lv_outer #lv {
	min-height: 300px;
}
#lv div {
	opacity: .5;
}
#lv p {
	left: 0;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px 0;
}
#lv p span {
	display: inline-block;
	font-size: 4.0rem;
	font-weight: bold;
	text-align: center;
	position: relative;
	word-break: break-all;
	line-height: 1.2;
	color: var(--i_bg_color);
	letter-spacing: 0;
}
@media screen and (max-width: 800px) {
	#lv {
		height: 250px !important;
	}
	#lv p span {
		font-size: 2.8rem;
	}
}

/* ===== pan ===== */

#pan {
	padding: 0;
	border-bottom: 1px solid var(--i_border_color);
}
#pan li {
	font-size: 1.2rem;
	padding: 5px 0 3px 30px;
}
#pan li:before,
#pan li:after {
	border-top: 1px solid var(--i_border_color);
	border-right: 1px solid var(--i_border_color);
}

/* ===== btn ===== */
header .header_contents .header_col1 .btn .translate a svg {
	fill: var(--i_txt_color);
}
header .header_contents .header_col1 .btn > a {
	display: block;
	text-align: center;
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
	font-weight: 600;
	padding: 9px 10px 10px;
	border-radius: 50px;
}
header .header_contents .header_col1 .btn > a:hover {
	background-position: right center;
	background-size: 200% auto;
	animation: btn 1.5s infinite;
}
header .header_contents .header_col1 .btn .translate a svg {
	max-width: 74%;
	max-height: 74%;
	margin: 13% auto 0;
}
header .header_contents .header_col1 .btn .translate a:hover {
	opacity: .8;
}
@media screen and (max-width: 900px) {
	header .header_contents .header_col1 .btn {
		float: none;
	}
	header .header_contents .header_col1 .btn > a {
		padding: 9px 15px 10px;
	}
}
.contents_btn01 {
	overflow: visible;
	margin-bottom: 8px;
}
.contents_btn01 a,
.glossary_archive .content_wrapper .heading.block_header_2 a:after {
	border: 1px solid var(--i_btn_color);
	background: var(--i_btn_color);
	color: #fff !important;
	position: relative;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	transition: .4s ease-in-out;
	font-family: inherit;
	border-radius: 50px;
}
main form .submit span input {
	border: 1px solid var(--i_btn_color);
	background: var(--i_btn_color);
	color: #fff !important;
	position: relative;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	transition: .4s ease-in-out;
	font-family: inherit;
	border-radius: 50px;
}
main form .submit {
	position: relative;
}
.contents_btn01 a:hover,
main form .submit span input:hover {
	background-position: right center;
	background-size: 200% auto;
	animation: btn 1.5s infinite;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:hover:after {
	background: var(--i_btn_hover_color);
}
.contents_btn01 a[target=_blank] span:before,
.contents_btn01 a[target=_blank] span:after {
	border: 1px solid var(--i_btn_txt_color);
}
.contents_btn01 a span {
	text-align: center;
	line-height: 1.6;
	font-size: 1.5rem;
	padding: 10px 10px 11px;
}
@keyframes btn {
	0% {
		box-shadow: 0 0 0 0 var(--i_main_color);
	}
	70% {
		box-shadow: 0 0 0 10px rgb(22 149 166 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(22 149 166 / 0%);
	}
}
@keyframes btn {
	0% {
		box-shadow: 0 0 0 0 var(--i_btn_hover_color);
	}
	70% {
		box-shadow: 0 0 0 10px rgb(0 70 67 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(0 70 67 / 0%);
	}
}

/* ===== heading ===== */

section .content_wrapper > .heading:first-child:last-child {
	margin-bottom: 0;
}
section:not([class*="pt"]) .content_wrapper > .heading:first-child:last-child {
	margin-bottom: 0;
}
.heading.block_header_1,
.heading.block_header_6 {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
}
.heading.block_header_1 p,
.heading.block_header_6 .h {
	font-size: 2.1rem !important;
	line-height: 1.4;
	position: relative;
	color: var(--i_main_color);
	font-weight: normal;
}
section[style*=" color: #FFFFFF;"] .heading.block_header_1 p,
section[style*=" color: #FFFFFF;"] .heading.block_header_6 .h,
div[style*=" color: #FFFFFF;"] .heading.block_header_1 p,
div[style*=" color: #FFFFFF;"] .heading.block_header_6 .h {
	color: #fff !important;
}
.heading.block_header_1 .h,
.heading.block_header_6 p {
	font-size: 1.7rem;
	color: var(--i_txt_color);
	font-weight: bold;
}
@media screen and (max-width: 800px) {
	.heading.block_header_1,
	.heading.block_header_6 {
		margin-bottom: 20px;
	}
	.heading.block_header_1 p,
	.heading.block_header_6 .h {
		font-size: 2.5rem !important;
	}
	.heading.block_header_1 .h,
	.heading.block_header_6 p {
		font-size: 1.5rem;
	}
}
.heading.block_header_2 {
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 600;
	color: #313131;
	border-bottom: 2px solid #0e0e0e;
	margin: 0 0 30px;
	padding: 5px;
}
section[style*=" color: #FFFFFF;"] .heading.block_header_2,
div[style*=" color: #FFFFFF;"] .heading.block_header_2 {
	border-bottom-color: #fff;
}
.heading.block_header_2.align-center:before {
	display: none;
}
.heading.block_header_2.align-left:before {
	left: 0;
}
.heading.block_header_2.align-right:before {
	right: 0;
}
.heading.block_header_2 .h {
	display: inline-block;
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.5;
	position: relative;
	color: var(--i_main_color);
	color: #313131;
}
.heading.block_header_2 p {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--i_main_color);
}
.news_archive .heading.block_header_2,
.glossary_archive .heading.block_header_2,
.widget_gallery01 .heading.block_header_2,
.gallery_archive .heading.block_header_2 {
	border: none;
}
.widget_gallery01.add_design4 .inner_item .heading.block_header_2 {
	padding-left: 2em !important;
}
@media screen and (max-width: 800px) {
	.heading.block_header_2 {
		margin-bottom: 20px;
	}
	.heading.block_header_2 .h {
		font-size: 2.1rem;
	}
}
.heading.block_header_3 {
	overflow: hidden;
	background: var(--i_sub2_color);
	padding: 10px;
	margin-bottom: 30px;
	color: var(--i_main_color);
}
.heading.block_header_3 .h {
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.5;
}
.heading.block_header_3 p {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--i_main_color);
}
@media screen and (max-width: 800px) {
	.heading.block_header_3 {
		padding: 5px;
		margin-bottom: 20px;
	}
	.heading.block_header_3 .h {
		font-size: 2.0rem;
	}
	.heading.block_header_3 p {
		font-size: 1.3rem;
	}
}
.heading.block_header_4 {
	margin-bottom: 15px;
}
.heading.block_header_4:before {
	display: none;
}
.heading.block_header_4 .h {
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 5px;
	color: var(--i_main_color);
}
.heading.block_header_4 p {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--i_txt_color);
}
.heading.block_header_5 {
	margin-bottom: 15px;
}
.heading.block_header_5 .h {
	display: inline;
	font-weight: 600;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.heading.block_header_5 p {
	display: inline;
	font-size: 1.4rem;
	font-weight: 600;
}
.heading.block_header_5 p:before {
	content: " / ";
}
#sidebar .heading.block_header_5 {
	background: var(--i_sub_color);
	color: var(--i_bg_color);
	padding: 5px 15px;
}
@media screen and (max-width: 900px) {
	.heading.block_header_1.align-left,
	.heading.block_header_6.align-left {
		align-items: center;
	}
}

/* ===== footer ===== */

#fixbtn {
	margin-bottom: 40px;
	font-size: 1.55rem;
}
#fixbtn .fixbtnwrap {
	background: var(--i_sub2_color);
}
#fixbtn.no .fixbtnwrap {
	background-color: transparent;
}
#fixbtn .fixbtntel:nth-last-of-type(2) {
	border-right: none;
}
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span {
	font-size: 3.4rem;
	line-height: 1;
	margin-right: 10px;
	font-weight: bold;
}
#fixbtn .contents_btn01 a:hover {
	transform: none;
}
#fixbtn .fixbtntel a:last-child,
#fixbtn .fixbtntel span:last-child {
	margin-right: 0;
}
#fixbtn .fixbtntel svg {
	width: 22px;
	height: 22px;
	margin-right: 5px;
	fill: var(--i_txt_color);
}
#fixbtn .contents_btn01 {
	border-left: 1px solid rgba(255, 255, 255, .1);
	margin-bottom: 0;
}
#fixbtn .contents_btn01:nth-of-type(1) {
	border-left: none;
}
#fixbtn .contents_btn01:nth-of-type(1) {
	/*▼ telない場合中央揃え*/
	margin-left: auto;
	margin-right: auto;
}
#fixbtn .contents_btn01 a {
	padding: 0;
}
#fixbtn .contents_btn01 span {
	text-align: center;
	padding: 10px 10px 9px;
}
#fixbtn .contents_btn01 a:before,
#fixbtn .contents_btn01 a:after {
	display: none;
}
#fixbtn #scrolltop:nth-of-type(1) {
	margin-left: auto;
	/*▼ 右揃え*/
	margin-right: 0;
	/*▼ 中央揃え*/
	margin-right: auto;
}
#fixbtn #scrolltop a {
	height: 40px;
	width: 40px;
}
#fixbtn #scrolltop a:before {
	transition: .2s ease-in-out;
	width: 40px;
	height: 40px;
	border: none !important;
	background: var(--i_txt_color);
	mask-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%20style%3D%22enable-background%3Anew%200%200%2040%2040%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%235F6368%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M20%2C14.5l-7.3%2C7.3l2%2C1.9l5.3-5.3l5.3%2C5.3l2-1.9L20%2C14.5z%20M20%2C3.3c2.3%2C0%2C4.4%2C.4%2C6.5%2C1.3s3.8%2C2.1%2C5.3%2C3.6%20c1.5%2C1.5%2C2.7%2C3.3%2C3.6%2C5.3s1.3%2C4.2%2C1.3%2C6.5c0%2C2.3-.4%2C4.5-1.3%2C6.5s-2.1%2C3.8-3.6%2C5.3c-1.5%2C1.5-3.3%2C2.7-5.3%2C3.6s-4.2%2C1.3-6.5%2C1.3%20c-2.3%2C0-4.5-.4-6.5-1.3s-3.8-2.1-5.3-3.6c-1.5-1.5-2.7-3.3-3.6-5.3S3.3%2C22.3%2C3.3%2C20c0-2.3%2C.4-4.4%2C1.3-6.5s2.1-3.8%2C3.6-5.3%20c1.5-1.5%2C3.3-2.7%2C5.3-3.6S17.7%2C3.3%2C20%2C3.3z%20M20%2C6.1c-3.9%2C0-7.2%2C1.4-9.8%2C4.1c-2.7%2C2.7-4%2C6-4%2C9.8c0%2C3.9%2C1.3%2C7.2%2C4%2C9.8%20c2.7%2C2.7%2C6%2C4%2C9.8%2C4c3.9%2C0%2C7.1-1.3%2C9.8-4c2.7-2.7%2C4.1-6%2C4.1-9.8c0-3.9-1.4-7.1-4.1-9.8S23.9%2C6.1%2C20%2C6.1z%22%2F%3E%3C%2Fsvg%3E');
}
#fixbtn #scrolltop a:hover:before {
	opacity: .7;
}
#fixbtn.no #scrolltop a:before {
	border-color: rgba(120, 120, 120, .6);
}
#fixbtn.no #scrolltop a:hover:before {
	border-left: 2px solid #787878;
	border-top: 2px solid #787878;
}
@media screen and (max-width: 600px) {
	#fixbtn {
		margin-bottom: 0;
	}
	#fixbtn,
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span {
		font-size: 1.7rem;
	}
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span {
		font-size: 2rem;
		color: var(--i_txt_color) !important;
	}
	#fixbtn .fixbtntel svg {
		width: 14px !important;
		height: 14px !important;
	}
	#fixbtn .contents_btn01 a {
		padding: 0;
		letter-spacing: 0;
	}
	#fixbtn .contents_btn01 a:before {
		display: none;
	}
	#fixbtn .contents_btn01 a span {
		padding: 10px 5px 8px;
		font-size: 1.45rem !important;
	}
}
footer {
	background: var(--i_sub2_color);
	padding: 0;
	color: var(--i_txt_color);
	text-align: center;
	font-size: 1.35rem;
}
footer a {
	color: var(--i_txt_color);
}
footer nav li {
	padding: 5px 0;
}
footer nav li a {
	font-size: 1.55rem;
	font-weight: 600;
}
footer .logo {
	width: 330px;
}
footer .sns {
	margin: 0 auto 30px;
}
footer .sns svg {
	width: 40px;
	height: 40px;
	padding: 10px 10px;
	fill: var(--i_main_color);
	transition: .2s ease-in-out;
}
footer .sns a:hover svg {
	opacity: .8;
}
#cp {
	padding: 30px 0;
	font-size: 1.1rem;
	letter-spacing: .1rem;
	/*color: var(--i_txt_color);*/
	color: #fff;
	text-align: left;
	margin: 30px 20px 0;
	background: repeating-linear-gradient(90deg, var(--i_txt_color) 0 1px, transparent 1px 3px) left top / 100% 1px repeat-x;
}
@media screen and (max-width: 600px) {
	footer {
		padding: 0 0 20px;
	}
	footer nav ul {
		border-bottom: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(2n) {
		border-right: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(2n+1) {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(2),
	footer nav ul li:nth-of-type(3):nth-last-of-type(2n-1) {
		border-top: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(1),
	footer nav ul li:nth-last-of-type(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	footer .logo {
		width: 220px;
	}
	#fixbtn .fixbtnwrap {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
}
@media screen and (min-width: 701px) {
	footer .logo a {
		max-width: 100% !important;
	}
	footer nav:nth-last-child(2),
	footer .logo {
		margin-bottom: 20px !important;
	}
}

/* ===== 追加 ===== */
/* -----------ボタン中央寄せ------------ */
@media screen and (max-width: 950px) {
	.index .contents_box01 .inner_item_txt .contents_btn01 {
		text-align: center;
	}
}

/* -----------新着情報・コラム------------ */
#nc + .block_news_1 > .content_wrapper {
	display: grid;
	grid-template-columns: 30% 65%;
	align-items: center;
	justify-content: space-between;
}
#nc + .block_news_1 .content_wrapper > .heading {
	grid-row: 1;
	grid-column: 1;
}
#nc + .block_news_1 .content_wrapper > .add_text {
	grid-row: 2;
	grid-column: 1;
	font-size: 95%;
	text-align: left;
}
#nc + .block_news_1 .content_wrapper > ul {
	grid-row: 1/4;
	grid-column: 2;
	min-width: 0;
	width: 100%;
}
#nc + .block_news_1 .content_wrapper > .contents_btn01 {
	grid-row: 3;
	grid-column: 1;
	padding-top: 0;
	padding-left: 0;
}
#nc + .block_news_1 li a {
	padding: 15px 0;
	line-height: 1.6;
}
#nc + .block_news_1 ul > li {
	border: 1px solid var(--i_txt_color) !important;
	background: var(--i_bg_color);
	padding: 5px 20px;
	margin-bottom: 20px;
	position: relative;
}
#nc + .block_news_1 ul > li:before {
	position: absolute;
	display: block;
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 13px;
	height: 13px;
	background: var(--i_sub_color);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: 2;
}
#nc + .block_news_1 ul > li:last-of-type {
	margin-bottom: 0;
}
@media screen and (min-width: 901px) {
	#nc + .block_news_1 .content_wrapper {
		text-align: left;
	}
}
@media screen and (max-width: 650px) {
	#nc + .block_news_1 > .content_wrapper {
		display: block;
	}
	#nc + .block_news_1 .content_wrapper > .contents_btn01 {
		padding-top: 30px;
		padding-left: 8px;
	}
	#nc + .block_news_1 .content_wrapper > .contents_btn01 a {
		min-width: 200px;
	}
}

/* -----------見出し------------ */
/*#ttl + section { overflow: visible;}#ttl + section:before {position: absolute;display: block;content: "";pointer-events: none;width: 50px;height: 20px;bottom: -20px;left: 50%;transform: translateX(-50%);clip-path: polygon(50% 100%, 0 0, 100% 0);background: var(--i_main_color);z-index: 2;}*/

/* -----------サービス------------ */
#seo + section:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	background: var(--i_sub2_color);
	pointer-events: none;
}
#seo + section > .content_wrapper {
	background: var(--i_main_color);
}
#seo + section > .content_wrapper:after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	border-width: 0 25px 25px 0;
	border-style: solid;
	border-color: var(--i_sub_color) var(--i_bg_color) var(--i_sub_color);
	box-shadow: -1px 1px 1px rgba(0, 0, 0, .5);
}
/*#seo + section .heading.block_header_1 .h,#seo + section .heading.block_header_1 p,#seo + section p {color: #fff !important;}*/
a[id^="hd"] + section .heading.block_header_2 .h {
	display: inline-block;
	font-size: 3.8rem !important;
	line-height: 1.4;
	color: var(--i_main_color);
	padding-left: 0;
}
a[id^="hd"] + section .heading.block_header_2 .h:before {
	display: none;
}
a[id^="hd"] + section .heading.block_header_2 p {
	font-size: 1.7rem !important;
	color: var(--i_txt_color);
	padding-left: 0;
}
@media screen and (max-width: 800px) {
	a[id^="hd"] + section .heading.block_header_2 .h {
		font-size: 2.5rem !important;
	}
	a[id^="hd"] + section .heading.block_header_2 p {
		font-size: 1.5rem !important;
	}
}
a[id^="hd"] + section .inner_item_img img {
	border: 4px solid var(--i_main_color);
}
#hd_l + section {
	overflow: visible;
}
#hd_l + section::before {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	width: 45vw;
	max-width: 450px;
	min-width: 200px;
	height: 100%;
	bottom: -120px;
	left: 0;
	background: url("/common/upload_data/h-c-mjp/image/air.png.webp") no-repeat bottom right / contain;
	z-index: 1;
}
#hd_l + section .inner_item_txt {
	padding-left: 5%;
}
#hd_r + section .inner_item_txt {
	padding-right: 5%;
}
#hd_r + section:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	background: var(--i_sub2_color);
	pointer-events: none;
}
@media screen and (max-width: 900px) {
	#hd_l + section::before {
		bottom: -50px;
	}
}

/* -----------サービス------------ */
#service + section .heading.block_header_3 {
	background: var(--i_btn_color);
	overflow: visible;
}
#service + section .heading.block_header_3::after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	border-width: 0 25px 25px 0;
	border-style: solid;
	border-color: var(--i_sub_color) var(--i_bg_color) var(--i_sub_color);
	box-shadow: -1px 1px 1px rgba(0, 0, 0, .5);
}
#service + section .heading.block_header_3::before {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	width: 50px;
	height: 20px;
	bottom: -19px;
	left: 50%;
	transform: translateX(-50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background: var(--i_btn_color);
}
#service + section .heading.block_header_3 .h {
	color: var(--i_bg_color);
	font-size: 3rem !important;
}
#sv2 + div .wrapper_item {
	overflow: visible;
}
#sv2 + div .heading.block_header_4 .h {
	font-size: 3rem !important;
}
#sv2 + div .heading.block_header_4 p {
	font-size: 1.7rem;
}
#sv2 + div .contents_btn01 {
	margin-left: auto;
	margin-right: 0;
	margin-top: -30px;
}
#sv2 + div .contents_btn01 a {
	min-width: auto;
	width: 80px !important;
	height: auto;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--i_main_color);
	border: none;
}
#sv2 + div .contents_btn01 a:after {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	transition: .4s ease-in-out;
	z-index: 5;
	width: 20px;
	height: 20px;
	right: 27px;
	bottom: calc(40px - 10px);
	background: var(--i_bg_color);
	mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjQ3IDFxLTExIDMtMjEgMTJhNDMgNDMgMCAwIDAtOSA0OGMyIDUgMTIgMTYgOTcgMTAwbDk0IDk1LTk0IDk1Yy04NSA4NC05NSA5NS05NyAxMDBxLTEwIDI3IDkgNDggMTYgMTUgMzcgMTJjMTQtMiA3IDQgMTMwLTExOCAxMDAtMTAwIDExMi0xMTMgMTE0LTExOHE5LTE4IDEtMzdjLTItNS0xNC0xNy0xMTMtMTE3TDI3OSA3bC05LTRjLTYtMi0xNy0zLTIzLTIiLz48cGF0aCBkPSJNMzUgMjJxLTExIDMtMjEgMTJhNDcgNDcgMCAwIDAtOSA1NGMzIDcgMCAzIDgxIDg5bDY1IDY4LTcgOEwxNyAzODdhNTMgNTMgMCAwIDAtMTYgMjljLTQgMjcgMTYgNTMgNDMgNTNxMTUgMCAyNy0xMGMzLTQgMTY1LTE3MyAxNzMtMTgzIDEyLTE0IDE1LTM0IDctNTItMy03IDAtMy05OC0xMDZMNjYgMjhxLTQtMy05LTRjLTUtMi0xNi0zLTIyLTIiLz48L3N2Zz4=');
}
#sv2 + div .contents_btn01 a span {
	text-indent: -1000px;
	color: transparent;
}
@media screen and (max-width: 800px) {
	#sv2 + div .heading.block_header_4 .h {
		font-size: 2.5rem !important;
	}
	#sv2 + div .heading.block_header_4 p {
		font-size: 1.55rem;
	}
}
/* -----------クリーニング------------ */
a[id^="cl_"] + div .heading.block_header_4 .h {
	font-size: 3.0rem !important;
	font-weight: 600;
	line-height: 1.4;
	color: var(--i_sub_color) !important;
}
a[id^="cl_"] + div .heading.block_header_4 p {
	font-size: 1.7rem;
	color: var(--i_bg_color);
}
@media screen and (max-width: 800px) {
	a[id^="cl_"] + div .heading.block_header_4 .h {
		font-size: 2.5rem !important;
	}
	a[id^="cl_"] + div .heading.block_header_4 p {
		font-size: 1.5rem;
	}
}
a[id^="cl_"] + div {
	overflow: visible;
}
a[id^="cl_"] + div .wrapper_item {
	justify-content: space-between;
	overflow: visible;
	gap: 30px 0;
}
a[id^="cl_"] + div .inner_item {
	min-height: 400px;
	width: calc(50% - 10px);
}
a[id^="cl_"] + div .inner_item::before,
a[id^="cl_"] + div .inner_item::after {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	transition: .4s ease-in-out;
	bottom: -20px;
	z-index: 5;
}
a[id^="cl_"] + div .inner_item::before {
	width: 80px;
	height: 80px;
	right: 20px;
	background: var(--i_sub_color);
	border-radius: 50px;
}
a[id^="cl_"] + div .inner_item:hover::before {
	box-shadow: 0 0 15px rgba(76, 76, 76, 0.2);
	background: var(--i_main_color);
}
a[id^="cl_"] + div a:hover + .inner_item_txt .heading.block_header_4 .h {
	color: var(--i_main_color) !important;
}
a[id^="cl_"] + div a:hover + .inner_item_txt .heading.block_header_4 p {
	color: var(--i_txt_color) !important;
}
.composite_box01.block_images_7 .inner_item_txt > * {
	transition: .4s ease-in-out;
}
a[id^="cl_"] + div .inner_item::after {
	width: 20px;
	height: 20px;
	right: 50px;
	bottom: calc(20px - 10px);
	background: var(--i_bg_color);
	mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjQ3IDFxLTExIDMtMjEgMTJhNDMgNDMgMCAwIDAtOSA0OGMyIDUgMTIgMTYgOTcgMTAwbDk0IDk1LTk0IDk1Yy04NSA4NC05NSA5NS05NyAxMDBxLTEwIDI3IDkgNDggMTYgMTUgMzcgMTJjMTQtMiA3IDQgMTMwLTExOCAxMDAtMTAwIDExMi0xMTMgMTE0LTExOHE5LTE4IDEtMzdjLTItNS0xNC0xNy0xMTMtMTE3TDI3OSA3bC05LTRjLTYtMi0xNy0zLTIzLTIiLz48cGF0aCBkPSJNMzUgMjJxLTExIDMtMjEgMTJhNDcgNDcgMCAwIDAtOSA1NGMzIDcgMCAzIDgxIDg5bDY1IDY4LTcgOEwxNyAzODdhNTMgNTMgMCAwIDAtMTYgMjljLTQgMjcgMTYgNTMgNDMgNTNxMTUgMCAyNy0xMGMzLTQgMTY1LTE3MyAxNzMtMTgzIDEyLTE0IDE1LTM0IDctNTItMy03IDAtMy05OC0xMDZMNjYgMjhxLTQtMy05LTRjLTUtMi0xNi0zLTIyLTIiLz48L3N2Zz4=');
}
a[id^="cl_"] + div .inner_item_txt {
	border-radius: 5px;
	box-shadow: 5px 5px 39px rgba(76, 76, 76, 0.15);
	padding: 50px 5% !important;
	transition: .4s ease-in-out !important;
}

a[id^="cl_"] + div .inner_item a:hover + .inner_item_txt {
	background: var(--i_sub2_color) !important;
}
a[id^="cl_"] + div .inner_item a:hover + .inner_item_txt * {
	color: var(--i_txt_color) !important;
}
a[id^="cl_"] + div .heading.block_header_1::before {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	width: 50px;
	height: 20px;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background: var(--i_main_color);
}
a[id^="cl_"] + div .heading.block_header_1 p {
	color: var(--i_main_color) !important;
	border-bottom: 5px dotted var(--i_main_color);
	margin-bottom: 10px;
}
a[id^="cl_"] + div .heading.block_header_1 {
	margin-bottom: 50px;
}

/* -----------ブログ------------ */
#blog_type08 + div .slick-arrow:before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	top: calc(50% - 5px);
	left: calc(50% - 0px);
	width: 8px;
	height: 8px;
}
#blog_type08 + div .slick-arrow:after {
	content: "";
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	left: calc(50% - 15px);
	background: var(--i_sub_color);
	border-radius: 100px;
	z-index: -1;
}
/*中央３つ大（記事数5件以上）*/
#blog_type08 + div.article5 .slick-next {
	left: auto;
	right: 20%;
	margin-top: -35px;
}
#blog_type08 + div.article5 .slick-prev {
	left: 20%;
	margin-top: -35px !important;
}
#blog_type08 + div.article5 .slick-next:before {
	left: calc(50% - 2px) !important;
}
/*中央３つ大（記事数4件）*/
#blog_type08 + div.article4 .slick-next {
	left: auto;
	margin-top: -35px;
	right: 12%;
}
#blog_type08 + div.article4 .slick-prev {
	left: 12%;
	margin-top: -35px !important;
}
#blog_type08 + div.article4 .slick-next:before {
	left: calc(50% - 7px) !important;
}
/* 中央以外のスライド */
#blog_type08 + div.article4 .slick-slide,
#blog_type08 + div.article5 .slick-slide {
	height: auto;
	opacity: .3;
	transform: scale(.8);
	transition: opacity .5s, transform .5s;
	width: 100%;
}

/* 中央のスライド */
#blog_type08 + div.article5 .slick-center,
#blog_type08 + div.article5 .slick-center + .slick-active,
#blog_type08 + div.article5 .slick-active:has(+ .slick-center),
#blog_type08 + div.article4 .slick-center,
#blog_type08 + div.article4 .slick-center + .slick-active,
#blog_type08 + div.article4 .slick-active:has(+ .slick-center) {
	opacity: 1;
	transform: scale(1);
}
@media (max-width:500px) {
	#blog_type08 + div .slick-prev,
	#blog_type08 + div.article5 .slick-prev,
	#blog_type08 + div.article4 .slick-prev {
		left: 15px;
	}
	#blog_type08 + div .slick-next,
	#blog_type08 + div.article5 .slick-next,
	#blog_type08 + div.article4 .slick-next {
		right: 10px;
	}
	#blog_type08 + div .content_wrapper ul li a span {
		width: 90%;
		margin: auto;
	}
	#blog_type08 + div.article5 .slick-center + .slick-active,
	#blog_type08 + div.article4 .slick-center + .slick-active {
		opacity: .3;
		transform: scale(.8);
	}
	#blog_type08 + div .heading + .add_text {
		padding: 0 20px;
	}
}


/* -----------特徴------------ */
.composite_box01.block_images_9 .inner_item_txt .heading::before {
	opacity: 0.75;
}
/* -----------特徴------------ */
@media screen and (min-width: 901px) {
	#seo2 + section {
		padding-top: 150px;
		padding-bottom: 150px;
	}
}

/* -----------サービス------------ */
#cl + div::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	background: var(--i_sub2_color);
	border-top-right-radius: 100vw 10vw;
	border-top-left-radius: 100vw 10vw;
	margin-left: -10vw;
	margin-right: -10vw;
	padding-left: 10vw;
	padding-right: 10vw;
	pointer-events: none;
}
@media screen and (max-width: 900px) {
	#cl + div::before {
		height: 90%;
	}
}

/* -----------テキスト中央------------ */
@media screen and (max-width: 900px) {
	a[id^="hd"] + section .heading.block_header_2 {
		text-align: center;
	}
}

/* -----------お客様の声------------ */
#voice + div {
	border-radius: 50px 50px 0 0;
	background: var(--i_sub2_color);
}
@media screen and (max-width: 600px) {
	#voice + div {
		border-radius: 20px 20px 0 0;
	}
}

/*フッター*/
#fixbtn[data-pattern="3"] .fixbtnwrap:not([style*="position: fixed;"]) .inner {
	width: auto;
}
footer {
	background: var(--i_sub3_color);
	border-radius: 0 0 50px 50px;
	box-sizing: border-box;
}

@media screen and (max-width: 600px) {
	footer {
		border-radius: 0 0 20px 20px;
	}
	footer nav ul {
		justify-content: flex-start;
		border-bottom: 0;
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
	footer nav ul li {
		border: 0 !important;
		width: auto;
	}
}
@media screen and (max-width: 480px) {
	#fixbtn[data-pattern="3"] .fixbtnwrap:not([style*="position: fixed;"]) .inner {
		width: 100%;
	}
}
/*追従SNS*/
footer:not(:has([style^="position: fixed"])) #fixsns {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
header .header_contents .header_col1 .btn > a[href="https://page.line.me/735iddqf"] {
	background-color: #0fb80c;
}


/*------20260706 footer------*/
footer nav .footer-sitemap-columns{
	display:flex;
	justify-content:space-between;
	gap:20px;
	margin-left: 20px;
}
footer nav .footer-sitemap-columns ul{
	width: 100%;
	margin:0;
	padding:0;
	list-style:none;
	height: auto !important;
}
footer nav .footer-sitemap-columns ul li {
	width: 100%!important;
	padding: 5px 0 5px 25px;
}
footer nav li a {
	width: fit-content;
}
/*アコーディオン*/
footer nav .footer-sitemap-columns ul:first-child li:nth-child(n+3),
footer nav .footer-sitemap-columns ul:last-child li:nth-child(n + 6):nth-child(-n + 10),
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(n + 2):nth-child(-n + 5) {
	padding-left: 35px;
}
@media screen and (max-width: 700px) {
	footer nav .footer-sitemap-columns ul {
		padding: 0 3rem;
	}
	footer nav li a {
		justify-content: flex-start;
	}
	.fnshow footer nav li a span {
		line-height: 1;
	}
	footer nav li:nth-last-of-type(2n-1):nth-of-type(1) {
		display: block;
	}
	footer nav .footer-sitemap-columns {
		gap: 0;
		flex-direction: column;
	}
	footer nav .footer-sitemap-columns ul {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	footer nav li a {
		padding: 5px 10px;
	}
}
/*------ footerアイコン ------*/
footer nav .footer-sitemap-columns ul li {
	position: relative;
}

/* アイコン共通 */
footer nav .footer-sitemap-columns ul:first-child li:first-child::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(2)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(3)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:first-child::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(6)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(7)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(8)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(9)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(10)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(1)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(2)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(3)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(4)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(5)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(11)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(12)::before,
footer nav .footer-sitemap-columns ul:last-child li:nth-child(13)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(5002%) hue-rotate(210deg) brightness(87%) contrast(101%);
}

/* ホーム */
footer nav .footer-sitemap-columns ul:first-child li:first-child::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706202525_2.png);
}
/* エアコンクリーニング */
footer nav .footer-sitemap-columns ul:first-child li:nth-child(3)::before {
background-image: url(/common/upload_data/h-c-mjp/image/20260713181620.png);
width: 14px;
height: 14px;
left: 25px;
}
/* クリーニング */
footer nav .footer-sitemap-columns ul:first-child li:nth-child(2)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706202525.png);
}
/* 建物メンテナンス */
footer nav .footer-sitemap-columns ul:nth-child(2) li:first-child::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706202525_1.png);
}
/* 料金 */
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(6)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706210143_2.png);
}
/* ギャラリー */
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(7)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_9.png);
}
/* よくある質問 */
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(8)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_3.png);
}
/* お客様の声 */
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(9)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_2.png);
}
/* 会社概要 */
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(10)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_1.png);
}
/* ブログ */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(1)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_4.png);
}
/* コラム */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(2)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_5.png);
}
/* 新着情報 */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(3)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_7.png);
}
/* 求人 */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(4)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200.png);
}
/* 特徴 */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(5)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706210143_1.png);
}
/* お問い合わせ */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(11)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706210143.png);
}
/* プライバシーポリシー */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(12)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_10.png);
}
/* サイトマップ */
footer nav .footer-sitemap-columns ul:last-child li:nth-child(13)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260706214200_6.png);
}
/*------見出しデザイン変更------*/
.heading.block_header_1,
.heading.block_header_6 {
	padding: 0.3em 0;
	color: var(--i_main_color)!important;
	border-top: solid 3px var(--i_main_color);
	border-bottom: solid 1px var(--i_main_color);
	padding-left: 5px;
	background: var(--i_sub2_color);
}
/*------TOP cleaning------*/
a[id^="cleaning_"] + div .inner_item_img img {
	/*border: solid 3px #e5dada;*/
	padding: 1px;
	width: 95% !important;
}
/*------メニューデザイン変更------*/
.widget_menu01 li {
	padding: 0;
	border-bottom: none;
}
.widget_menu01 li .inner_item_txt {
	justify-content: flex-start;
}
.widget_menu01 li div.inner_item_txt:nth-of-type(1) {
	width: 100%;
	margin: 0 auto;
	border: 1px solid #a1a1a1;
	border-collapse: collapse;
	border-bottom: none;
}
.widget_menu01 li:last-child .inner_item_txt:nth-of-type(1) {
	border-bottom: 1px solid #a1a1a1;
}
.widget_menu01 li .inner_item_txt dl {
	padding: 10px;
	background: #cfe3ff;
	width: 50%;
}
.widget_menu01 li dt:before {
	display: none;
}
.widget_menu01 li .inner_item_txt .price {
	color: #ff0000;
}
@media screen and (max-width: 500px) {
	.widget_menu01 li .inner_item_txt dl {
		padding: 10px 0;
		width: 100%;
	}
	.widget_menu01 li dd {
		padding: 0 10px;
	}
	.widget_menu01 li .inner_item_txt .price {
		padding: 10px;
	}
}
/*———基本料金の目安———*/
a#meyasu+section>.content_wrapper {
	border: 3px solid var(--i_main_color);
	background:  url(/common/upload_data/h-c-mjp/image/20260707153336.png) top 0 left 0 / 15px 15px no-repeat, url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 left 0 / 15px 15px no-repeat,url(/common/upload_data/h-c-mjp/image/20260707153336.png) top 0 right 0 / 15px 15px no-repeat, url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 right 0 / 15px 15px no-repeat, var(--i_sub2_color);
}
a#meyasu+section>.content_wrapper table {
	border-collapse: collapse;
	width: calc(100% - 40px);
	margin: 20px auto;
}
a#meyasu+section>.content_wrapper table th {
	width: 60%;
	text-align: left;
	padding: 5px 15px 5px 30px;
	font-size: 2rem;
	font-weight: 600;
}
a#meyasu+section>.content_wrapper table td {
	width: 40%;
	text-align: right;
	padding: 5px 30px 5px 15px;
	color: #ff0000;
	font-size: 2rem;
	font-weight: 600;
}
@media screen and (max-width: 700px) {
	a#meyasu+section>.content_wrapper table {
		width: 100%;
	}
	a#meyasu+section>.content_wrapper table th,
	a#meyasu+section>.content_wrapper table td {
		padding: 5px 20px;
	}
}
/*------口コミランキング全国１位獲得店------*/
a#top1+section .content_wrapper {
	position: relative;
	background: url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 left 0 / 15px 15px no-repeat, url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 right 0 / 15px 15px no-repeat, var(--i_sub2_color);
}
a#top1+section .content_wrapper:before,
a#top1+section .content_wrapper:after {
	content: "";
	position: absolute;
	background: url(/common/upload_data/h-c-mjp/image/20260707153336.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
}
a#top1+section .content_wrapper:before {
	top: 0;
	left: 0;
}
a#top1+section .content_wrapper:after {
	top: 0;
	right: 0;
}

footer {
  background: url(/common/upload_data/h-c-mjp/image/20260713171632.png)
	no-repeat;
  background-size: cover;
  position: relative;
  z-index: 100;
}
footer::before {
  content: "";
  background-color: hsla(0, 0%, 0%, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
}

footer nav li a {
	font-weight: 500;
	color: #fff;
}

footer nav .footer-sitemap-columns ul:first-child li:nth-child(4)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(5)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(6)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(7)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(8)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(9)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(10)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(11)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(12)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(13)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(14)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(15)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(16)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(17)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(18)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(19)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(20)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(2)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(3)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(4)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(5)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-size: contain;
	background-repeat: no-repeat;
	filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(5002%) hue-rotate(210deg) brightness(87%) contrast(101%);
}

footer nav .footer-sitemap-columns ul:first-child li:nth-child(4)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(5)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(6)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(7)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(8)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(9)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(10)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(11)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(12)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(13)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(14)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(15)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(16)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(17)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(18)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(19)::before,
footer nav .footer-sitemap-columns ul:first-child li:nth-child(20)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(2)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(3)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(4)::before,
footer nav .footer-sitemap-columns ul:nth-child(2) li:nth-child(5)::before {
	background-image: url(/common/upload_data/h-c-mjp/image/20260713181620.png);
}

#screwbg + section.contents_box01 .inner_item_txt {
  position: relative;
  box-shadow: rgb(102, 102, 102) 0px 2px 4px 2px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  border-image: none;
  border-radius: 3px;
  margin: 0px 0px 30px;
  padding: 30px;
  background:
	url(/common/upload_data/h-c-mjp/image/20260707153336.png) top 0 left 0 /
	  15px 15px no-repeat,
	url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 left 0 /
	  15px 15px no-repeat,
	url(/common/upload_data/h-c-mjp/image/20260707153336.png) top 0 right 0 /
	  15px 15px no-repeat,
	url(/common/upload_data/h-c-mjp/image/20260707153336.png) bottom 0 right 0 /
	  15px 15px no-repeat,
	var(--i_sub2_color);
}

@media screen and (max-width: 900px) {
	#screwbg + section.contents_box01 .inner_item_txt {
		padding: 30px !important;
		max-width: none !important;
	}
}

#blue_back_header + section .content_wrapper .heading.block_header_6 {
  display: block;
  font-size: 2.1rem;
  text-align: center;
  color: rgb(255, 255, 255);
  margin: 0px 0px 30px;
  background: rgb(0, 81, 197);
  padding: 10px;
  border-top: 3px solid rgb(0, 66, 161);
  border-bottom: 1px solid rgb(0, 66, 161);
}

#blue_back_header + section .content_wrapper .heading.block_header_6 .h {
  color: #ffffff;
}

.composite_box01 .inner_item>a{
object-fit: cover;
	object-position: center center;
	max-width: 100%;
	padding: 0.5rem;
	border-width: 3px;
	border-style: solid;
	border-color: rgb(229, 218, 218);
	border-image: none;
}

#before_after + div .content_wrapper .wrapper_item .inner_item > a {
  object-fit: cover;
  object-position: center center;
  max-width: 100%;
  padding: 0.5rem;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(229, 218, 218);
  border-image: none;
}

#before_after + div .content_wrapper .wrapper_item .inner_item .inner_item_txt {
  text-align: left;
  color: rgb(255, 255, 255);
  background: rgb(0, 81, 197);
  padding: 10px;
}
#before_after + .composite_box01 .inner_item_txt .h {
  color: #fff;
}
#before_after + .composite_box01 .wrapper_item .inner_item:first-child {
  position: relative;
}
#before_after + .composite_box01 .wrapper_item {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
#before_after + .composite_box01 .wrapper_item .inner_item {
  flex: 1;
}
#before_after + .composite_box01 .wrapper_item .inner_item:first-child {
  position: relative;
}
#before_after + .composite_box01 .wrapper_item .inner_item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translate(50%, -50%);
  width: 50px;
  height: 50px;
  background: url("/common/upload_data/h-c-mjp/image/20260714141119.png")
	center/contain no-repeat;
  z-index: 10;
}
#before_after + .composite_box01 .wrapper_item,
#before_after + .composite_box01 .wrapper_item .inner_item {
  overflow: visible;
}

#before_after + .composite_box01 .wrapper_item .inner_item:last-child {
  margin-left: unset !important;
}


/*SP*/
@media (max-width: 768px) {
	#before_after + .composite_box01 .wrapper_item {
		display: flex;
		flex-direction: column;
		gap: 60px;
	}
	#before_after + .composite_box01 .wrapper_item .inner_item {
		width: 100%;
		flex: 0 0 100%;
	}
	#before_after + .composite_box01 .wrapper_item .inner_item:first-child {
		position: relative;
	}
	#before_after + .composite_box01 .wrapper_item .inner_item:first-child::after {
		content: "";
		position: absolute;
		left: 50%;
		top: calc(100% + 40px);
		transform: translate(-50%, -50%) rotate(90deg);
		width: 50px;
		height: 50px;
		background: url("/common/upload_data/h-c-mjp/image/20260714141119.png") center/contain no-repeat;
		z-index: 10;
	}
	#before_after + .composite_box01 .wrapper_item .inner_item:last-child {
		margin-left: 0 !important;
	}
}

@media (max-width: 768px) {
  a#meyasu + section > .content_wrapper table {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody tr {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody tr td,
  a#meyasu + section > .content_wrapper table tbody tr th {
	display: block;
	width: 100%;
	box-sizing: border-box;
  }
  a#meyasu + section > .content_wrapper table tbody tr th {
	background: #D8E6FC;
  }
}

  a#meyasu + section > .content_wrapper table {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody tr {
	width: 100%;
	display: block;
  }
  a#meyasu + section > .content_wrapper table tbody tr td,
  a#meyasu + section > .content_wrapper table tbody tr th {
	display: block;
	width: 100%;
	box-sizing: border-box;
  }
  a#meyasu + section > .content_wrapper table tbody tr th {
	background: #D8E6FC;
  }


@media screen and (max-width: 500px) {
  a#meyasu + section {
	padding-left: 40px;
	padding-right: 40px;
  }
}

/*----------画像枠---------*/
.contents_box01 .inner_item_img {
	object-fit: cover;
	object-position: center center;
	max-width: 100%;
	padding: 0.5rem;
	border-width: 3px;
	border-style: solid;
	border-color: rgb(229, 218, 218);
	border-image: none;
}
a[id^="hd"] + section .inner_item_img img {
	width: calc(100% - 8px) !important;
}
a[id^="cleaning_"] + div .inner_item_img img {
	width: calc(100% - 8px) !important;
}

/*----------nパーツ---------*/
.composite_box01.block_images_7 .inner_item>a,
.composite_box01.block_images_11 .inner_item a,
.composite_box01.block_images_12 .inner_item a,
.composite_box01.block_images_16 .inner_item>a {
	padding: 0;
	border: 0;
}
.composite_box01.block_images_7 .inner_item_img,
.composite_box01.block_images_11 .inner_item_img,
.composite_box01.block_images_12 .inner_item_img,
.composite_box01.block_images_16 .inner_item_img,
.composite_box01.block_images_17 .inner_item .inner_item_img {
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	object-position: center center;
	max-width: 100%;
	padding: 0.5rem;
	border-width: 3px;
	border-style: solid;
	border-color: rgb(229, 218, 218);
	border-image: none;
}
.composite_box01.block_images_7 .inner_item_txt {
	margin: 8px;
	transition: 0.3s ease-in-out;
}
.composite_box01.block_images_7 .inner_item>a:hover+.inner_item_txt {
	margin: 0;
}
@media screen and (min-width: 1024px) {
.composite_box01.block_images_8 a {
	padding: 0;
	border: 0;
}
.composite_box01.block_images_8 .inner_item_txt {
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	object-position: center center;
	max-width: 100%;
	padding: 0.5rem;
	border-width: 3px;
	border-style: solid;
	border-color: rgb(229, 218, 218);
	border-image: none;
}
}
.composite_box01.block_images_8 .wrapper_item {
	gap: 1px;
}

.composite_box01.block_images_10 .wrapper_item {
	gap: 1px;
}
.composite_box01.block_images_10 .inner_item:nth-of-type(1):nth-last-of-type(2),
.composite_box01.block_images_10 .inner_item:nth-of-type(2):nth-last-of-type(1) {
	width: calc(50% - 1px);
}
.composite_box01.block_images_11 .inner_item_img img,
.composite_box01.block_images_12 .inner_item_img img {
	transform: scale(1);
}
.composite_box01.block_images_11 .inner_item_txt,
.composite_box01.block_images_12 .inner_item_txt {
	padding: 8px;
}
.composite_box01.block_images_12 .inner_item_txt .heading .h {
	margin: 8px;
}

.composite_box01.block_images_16 .inner_item_img:before {
	bottom: 5px;
	width: calc(100% - 9px);
	left: 5px;
	transition: 0.3s ease-in-out;
}
.composite_box01.block_images_16 .inner_item:hover .inner_item_img::before {
	width: 100%;
	left: 0;
	bottom: 0;
}
.composite_box01.block_images_16 .inner_item_txt {
	margin: 8px;
}
.composite_box01.block_images_17 .inner_item>a {
	border: 0;
}
.composite_box01.block_images_17 .inner_item .inner_item_img {
	margin-bottom: 0;
	overflow: hidden;
	border-radius: 50%;
}
.composite_box01.block_images_17 .inner_item_img img {
	box-sizing: border-box;
	padding: 0.5rem;
}

@media screen and (max-width: 768px) {
	.composite_box01.block_images_22 .inner_item_img img,
	.composite_box01.block_images_23 .inner_item_img img,
	.composite_box01.block_images_24 .inner_item_img img {
		margin-bottom: 0;
	}
	.composite_box01.block_images_22 .inner_item_txt,
	.composite_box01.block_images_23 .inner_item_txt,
	.composite_box01.block_images_24 .inner_item_txt {
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-top: 20px;
	}
}

/*---------タイトル-------*/
.heading.block_header_1 p,
.heading.block_header_6 .h {
	font-size: 2.5rem !important;
	font-weight: 600;
}
.heading.block_header_1 .h,
.heading.block_header_6 p {
	font-weight: 500;
}
/*---------ヘッダーナビ-------*/
@media screen and (min-width: 901px) {
header nav ul.nav_1st > li > a {
	position: relative;
	margin-bottom: 4px;
}
header nav ul.nav_1st > li > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--i_main_color);
	opacity: 0;
	transition: opacity .4s ease-in-out;
}
header nav ul.nav_1st > li:hover > a::after {
	opacity: 1;
}
}

/*コメントアウト 260717*/
/*.composite_box01 .wrapper_item {
	justify-content: center;
	gap: 40px;
}

.composite_box01 .inner_item:nth-of-type(1):nth-last-of-type(2), 
.composite_box01 .inner_item:nth-of-type(2):nth-last-of-type(1) {
	width: 45%;
}

.contents_box01.valign-center .wrapper_item {
	align-items: self-start;
}*/

@media screen and (min-width: 901px){
    .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) {
      justify-content: center;
      align-items: self-start;
      gap: 40px;
    }
    .composite_box01.valign-center .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) {
      align-items: self-start;
    }
    .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) .inner_item {
      width: 45%;
    }
}

/* Before After表示(2026/07/17) */
a[id^="bf0"] + .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) {
	justify-content: space-between;
	gap: 0;
        position: relative;
}
a[id^="bf0"] + .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) .inner_item {
	width: 43%;
}
a[id^="bf0"] + .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) .inner_item:nth-of-type(2) {
	margin-left: 0;
}
a[id^="bf0"] + .composite_box01.block_images_1 a+.inner_item_txt {
	margin-top: 0;
}
a[id^="bf0"] + .composite_box01 .heading.block_header_4 .h {
	padding: 10px;
	background: var(--i_main_color);
	color: var(--i_bg_color);
}
a[id^="bf0"] + .composite_box01 .inner_item_img img {
	aspect-ratio: 4 / 3;
	height: auto !important;
}
a[id^="bf0"] + .composite_box01 .inner_item:nth-of-type(1)::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-image: url(/common/upload_data/h-c-mjp/image/20260717092127.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media only screen and (max-width: 900px) {
	a[id^="bf0"] + .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) {
		flex-direction: column;
	}
	a[id^="bf0"] + .composite_box01 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) .inner_item {
		position: relative;
		width: 100% !important;
	}
	a[id^="bf0"] + .composite_box01.block_images_1 .wrapper_item:has(> .inner_item:nth-of-type(2)):not(:has(> .inner_item:nth-of-type(3))) .inner_item:nth-of-type(2n) {
		margin-left: 0 !important;
	}
	a[id^="bf0"] + .composite_box01 .inner_item:nth-of-type(1) {
		margin-bottom: 100px !important;
	}
	a[id^="bf0"] + .composite_box01 .inner_item:nth-of-type(1)::after {
		top: unset;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 75px) rotate(90deg);
	}
}
@media only screen and (max-width: 768px) {
	a[id^="bf0"] + .composite_box01.block_images_1:not(.col2) .inner_item:nth-of-type(2n-1):nth-last-of-type(2) {
		margin-bottom: 100px !important;
	}
}

/*------20260722------*/
a#meyasu+section>.content_wrapper .contact_area{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:2rem;
}
a#meyasu+section>.content_wrapper .contact_area>p{
    margin:0;
    flex:1;
}
a#meyasu+section>.content_wrapper .contact_area .contents_btn01{
    margin:0;
    flex-shrink:0;
}
@media (max-width:768px){
   a#meyasu+section>.content_wrapper .contact_area{
        flex-direction:column;
        align-items:flex-start;
    }
    a#meyasu+section>.content_wrapper .contact_area .contents_btn01 {
        margin: 0 auto;
    }
}
.contents_box01.valign-center .wrapper_item {
    align-items: flex-start;
}
a#top+section .heading.block_header_4 h2.h {
    color: #313131;
}
a#meyasu+section>.content_wrapper {
    padding: 20px 30px 40px;
}
@media (max-width:768px){
    a#meyasu+section>.content_wrapper p {
        font-size: 1.4rem;
    }
}


/*———基本料金の目安_260727———*/
@media (max-width:768px){
  a#meyasu+section>.content_wrapper {
	padding: 15px;
  }
}