@charset "UTF-8";
/*
Theme Name: eftcle
Author: Catwork Co., Ltd.
Version: 1.0.0
*/

/* サイトの基本カラーに合わせて変更 */
:root {
	--main-color: #013571;
	--main-light-color: #C9EBFB;
	--main-dark-color: #1f7ed5;
}

/* Reset
----------------------------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, code,
del, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, u,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
}

html{
	scroll-behavior: smooth;
}
body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	/*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-size: 16px;
	line-height: 2;
	color:#000;
}
a {
	color:#333;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
strong {
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color, #333);
}
textarea {
	overflow: auto;
}
::placeholder {
	color: #999;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.wrap {
	width: 100%;
	overflow-x: hidden;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}



/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 0
}
.mv01_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*下から*/
.mv02_on{
	-webkit-transition: all 1s ease-out 0.2s;
	-moz-transition: all 1s ease-out 0.2s;
	-ms-transition: all 1s ease-out 0.2s;
	-o-transition: all 1s ease-out 0.2s;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 45px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 45px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 45px, 0);
	-o-transform: scale(1, 1) translate3d(0, 45px, 0);
	transform: scale(1, 1) translate3d(0, 45px, 0);
	opacity: 0
}
.mv02_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*右から*/
.mv03_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(100px, 0, 0);
	transform: scale(1, 1) translate3d(100px, 0, 0);
	opacity: 0
}
.mv03_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*左から*/
.mv04_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(-100px, 0, 0);
	transform: scale(1, 1) translate3d(-100px, 0, 0);
	opacity: 0
}
.mv04_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}



/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 441px){
html,
body,
.wrap{
	width:1240px;
}
}

/*===============================================
横幅441px以上
===============================================*/
@media screen and (min-width: 441px) {
a {
	transition: all .5s;
}
a:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	transition: all .5s;
}
.sp {
	display:none;
}



/* header
------------------------------------------------------------------------*/
	header{
		top: 0;
		left: 0;
		width: 100%;
		height: 150px;
		z-index: 10000;
		position: relative;
	}
	header h1{
		position: absolute;
		top: 150px;
		right: 50%;
		transform: translateX(600px);
		font-size: 12px;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 0;
	}
	header .header_box {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 1200px;
		height: 150px;
		box-sizing: border-box;
		transition: margin-top .5s;
	}
	header .header_box.active01 {
		margin-top: -150px;
	}
	header .header_box.active02 {
		position: fixed;
		margin-top: 0;
	}
	header .header_box::before {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		width: 100vw;
		height: 150px;
		z-index: -1;
		background: #e2f1ff;
	}
	header .header_box.active02::before {
		height: 130px;
	}
	@media screen and (max-width: 1240px) {
		header .header_box::before {
		width: 1240px;
		}

		header .header_box::after {
		width: 1240px;
		}
	}
	header .header_box .logo a {
		position: absolute;
		top: 20px;
		left: 0;
		display: block;
		width: 230px;
		height: 50px;
		background: url("img/header_logo.png") no-repeat;
		background-size: 100%;
		padding: 42px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box.active02 .logo a {
		top: 10px;
	}
	header .header_box .text01 {
		text-align: center;
		position: absolute;
		top: 20px;
		left: 265px;
		font-size: 16px;
		line-height: 1.2;
		width: 220px;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		letter-spacing: 1px;
	}
	header .header_box.active02 .text01 {
		top: 10px;
	}
	header .header_box .text01::before {
		content: "";
		position: absolute;
		border-left: solid 1px #000;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
		height: 100%;
		width: 8px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	header .header_box .text01::after {
		content: "";
		position: absolute;
		border-right: solid 1px #000;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
		height: 100%;
		width: 8px;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	header .header_box .text02 {
		position: absolute;
		top: 17px;
		left: 643px;
		width: 155px;
		height: 36px;
		border-top: 1px solid #182e73;
		border-bottom: 1px solid #182e73;
		box-sizing: border-box;
		color: #182e73;
		font-size: 16px;
		line-height: 34px;
		text-align: center;
	}
	header .header_box.active02 .text02 {
		top: 7px;
	}
	header .header_box .text02::after {
		position: absolute;
		top: -18px;
		left: -18px;
		content: "";
		background: #eaf5fa;
		width: 595px;
		height: 72px;
		z-index: -1;
	}
	header .header_box .bubble {
		position: absolute;
		top: 20px;
		left: 515px;
	}
	header .header_box.active02 .bubble {
		top: 10px;
	}
	header .header_box .tel a {
		position: absolute;
		top: 25px;
		left: 754px;
		font-size: 14px;
		line-height: 1.8;
		text-align: center;
		font-weight: bold;
	}
	header .header_box.active02 .tel a {
		top: 15px;
	}
	header .header_box .tel a img {
		display: block;
	}
	header .header_box .button {
		position: absolute;
		width: 220px;
		height: 50px;
		top: 20px;
		right: 0;
	}
	header .header_box.active02 .button {
		top: 10px
	}
	header .header_box .button a {
		position: absolute;
		width: 100%;
		height: 100%;
		background: #06c755;
		padding-left: 58px;
		box-sizing: border-box;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
		transition:
		background-color 0.4s ease,
		color 0.4s ease,
		border-color 0.4s ease;
	}
	header .header_box .button a::before {
		position: absolute;
		content: "";
		width: 24px;
		height: 24px;
		left: 26px;
		top: 50%;
		transform: translateY(-50%);
		background: url(img/header_icon02.png) center center / contain no-repeat;
		transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	}
	header .header_box .button a::after {
		position: absolute;
		content: "";
		width: 24px;
		height: 24px;
		left: 26px;
		top: 50%;
		transform: translateY(-50%);
		background: url(img/header_icon04.png) center center / contain no-repeat;
		opacity: 0;
		transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	}
	header .header_box .button a:hover {
		background: #fff;
		color: #06c755;
	}
	header .header_box .button a:hover::before {
		opacity: 0;
	}
	header .header_box .button a:hover::after {
		opacity: 1;
	}



	/* nav
------------------------------------------------------------------------*/

	header #nav {
		position: absolute;
		top: 80px;
		color: #fff;
	}
	header .header_box.active02 #nav {
		top: 70px;
	}
	header nav #nav .main_nav {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1200px;
		height: 50px;
		background: #348de2;
		border-radius: 25px;
		margin: 0 auto;
		gap: 35px;
	}
	header nav #nav .main_nav li {
		font-size: 14px;
		letter-spacing: 1.2px;
		height: 100%;
	}
	header nav #nav .main_nav a {
		color: #fff;
		font-weight: bold;
		position: relative;
		display: block;
		height: 100%;
	}
	header nav #nav .main_nav>li>a,
	header nav #nav .main_nav>li>span {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	header nav #nav .main_nav a::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 15px;
		width: 0;
		height: 1px;
		background: #fff;
		transition: 0.4s;
		transform: translateX(-50%);
	}
	header nav #nav .main_nav .sub_nav_list a::after {
		display: none;
	}
	header nav #nav .main_nav a:hover::after {
		width: 100%;
	}
	header nav #nav .main_nav .sub_nav_list a:hover {
		opacity: 0.7;
	}
	header nav #nav .main_nav>li>span {
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		height: 100%;
		color: #fff;
		font-weight: bold;
	}
	header nav #nav .main_nav>li>a .span01 {
		display: block;
		height: 35px;
		padding: 0 23px;
		color: #fff;
		font-size: 15px;
		line-height: 35px;
		transition: all 0.4s;
		position: relative;
	}
	header nav #nav .main_nav>li>a .span01::before {
		position: absolute;
		top: 50%;
		left: -0.5px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 1px;
		height: 15px;
	}
	header nav #nav .main_nav>li:nth-of-type(8)>a .span01::after {
		position: absolute;
		top: 50%;
		right: -0.5px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 1px;
		height: 15px;
	}
	header nav #nav .main_nav>li>a .span01:hover {
		color: #ffd34d;
		transition: all 0.4s;
	}
	header nav #nav .main_nav>li.mark .span01 {
		display: block;
		height: 35px;
		padding: 0 40px 0 23px;
		color: #fff;
		font-size: 15px;
		line-height: 35px;
		transition: all 0.4s;
		position: relative;
	}
	header nav #nav .main_nav>li.mark .span01:hover {
		color: #ffd34d;
		cursor: pointer;
		opacity: 1;
	}
	header nav #nav .main_nav>li.mark .span01::before {
		position: absolute;
		top: 50%;
		left: -0.5px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 1px;
		height: 15px;
	}
	header nav #nav .main_nav>li.mark .span01::after {
		position: absolute;
		top: 50%;
		right: 28px;
		transform: translateY(-50%);
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 7px 4px 0 4px;
		border-color: #ffffff transparent transparent transparent;
	}
	header nav #nav .main_nav>li.mark .span01:hover::after {
		position: absolute;
		top: 50%;
		right: 28px;
		transform: translateY(-50%);
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 4px 7px 4px;
		border-color: transparent transparent #ffffff transparent;
	}
	header nav #nav .main_nav li.mark .sub_nav {
		position: absolute;
		top: 35px;
		left: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		width: 1200px;
		height: 244px;
		box-sizing: border-box;
		opacity: 0;
		visibility: hidden;
	}
	header nav #nav .main_nav li.mark:hover .sub_nav {
		visibility: visible;
		opacity: 1;
		z-index: 10;
	}
	header nav #nav .main_nav li.mark .sub_nav {
		opacity: 0;
		visibility: hidden;
		top: 30px;
		transform: translateY(10px);
		transition:
		opacity 0.4s ease,
		transform 0.4s ease,
		visibility 0.4s;
	}
	header nav #nav .main_nav li.mark:hover .sub_nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(15px);
	}
	header nav #nav .main_nav li.mark .sub_nav::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 100%, 100% 100%, 50% 0);
		background: #e2f1ff;
		left: 387px;
		top: -4px;
		margin: auto 0;
		width: 11px;
		height: 9px;
	}
	header nav #nav .main_nav li.mark .sub_nav::after {
		position: absolute;
		top: 5px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #e2f1ff;
		width: 100vw;
		height: 100%;
		z-index: -1;
		border-bottom: 2px solid #348de2;
		border-left: none;
		border-right: none;
		box-sizing: border-box;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_title {
		color: #fff;
		font-size: 24px;
		font-weight: normal;
		line-height: 1.58;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list {
		display: flex;
		flex-wrap: wrap;
		gap: 18px;
		width: 1200px;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li {
		width: 225px;
		box-sizing: border-box;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a {
		display: block;
		position: relative;
		z-index: 100;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a img{
		border-radius: 10px 10px 0 0;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a span {
		background: #348de2;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 30px;
		display: block;
		text-align: center;
		border-radius: 0 0 10px 10px;
	}
	header nav #nav .main_nav li.mark .sub_nav .sub_nav_list li a:hover {
		color: #fff;
	}
	@media screen and (max-width: 1240px) {
		header nav #nav .main_nav li.mark .sub_nav::after {
		width: 1240px;
		}
	}



/* home
------------------------------------------------------------------------*/
	.home {
		font-weight: bold;
		color: #1d1d1d;
	}

	/* key */
	.home .key {
		position: relative;
		padding-top: 20px;
		height: 758px;
		background: #e2f1ff;
	}

	.home .key .bg_img {
		position: absolute;
		top: -23px;
		left: 198px;
		width: 1129px;
		height: 758px;
		z-index: -2;
	}

	.home .key::before {
		content: "";
		position: absolute;
		left: -10%;
		right: -10%;
		top: 180px;
		height: 340px;
		background: url("img/home_key_bg02.png");
		transform: rotate(-5deg);
	}

	.home .key .inner::after {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%) rotate(-5deg);
		width: 105vw;
		height: 280px;
		bottom: -245px;
		background: url(img/home_key_bg03.png) repeat-x left top;
		background-size: auto 100%;
		animation: slider 40s linear infinite;
	}

	@keyframes slider {
		0% {
		background-position: 0 0;
		}

		100% {
		background-position: -1800px 0;
		}
	}

	.home .key .inner::before {
		content: "";
		position: absolute;
		right: 0;
		bottom: -290px;
		width: 545px;
		height: 174px;
		background: url(img/home_key_text03.png) center center / cover no-repeat;
		z-index: 1;
	}

	.home .key .inner .text_box {
		position: relative;
		width: 1075px;
		height: 600px;
		left: -300px;
		padding: 70px 100px 70px 300px;
		box-sizing: border-box;
		background: rgba(255, 255, 255, 0.7);
		border-radius: 0 18px 18px 0;
	}

	.home .key .inner .text_box::before {
		content: "";
		position: absolute;
		right: -170px;
		top: 316px;
		width: 221px;
		height: 192px;
		background: url(img/home_key_bg04.png) center center / cover no-repeat;
	}

	.home .key .inner .text_box .text01:nth-of-type(1) {
		position: relative;
		font-size: 26px;
		color: #333;
		padding-left: 85px;
		line-height: 50px;
		font-weight: bold;
		left: 50%;
		transform: translateX(-50%);
		width: fit-content;
	}

	.home .key .inner .text_box .text01:nth-of-type(1)::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		background: url("img/key_deco01.png") center center / cover no-repeat;
		width: 74px;
		height: 50px;
	}

	.home .key .inner .text_item:nth-of-type(1) {
		display: flex;
		text-align: center;
		line-height: 40px;
		gap: 18px;
		margin-top: 10px;
	}

	.home .key .inner .text_item .text02 {
		width: 210px;
		height: 40px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 20px;
		font-weight: bold;
		color: #065aaa;
		font-size: 20px;
	}

	.home .key .inner .text_item:nth-of-type(2) {
		display: flex;
		text-align: center;
		gap: 10px;
		line-height: 60px;
		margin-top: 20px;
	}

	.home .key .inner .text_box .text03 {
		margin-top: 25px;
		text-align: center;
	}

	.home .key .inner .text_item .text04 {
		color: #fff;
		width: 330px;
		height: 60px;
		background: #065aaa;
		border: 2px solid #065aaa;
		border-radius: 10px;
		font-size: 34px;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.home .key .inner .text_item .text04 span {
		font-size: 16px;
		display: block;
		line-height: 1.3;
		padding-right: 14px;
		font-weight: bold;
		letter-spacing: 2px;
	}

	@media screen and (max-width: 1300px) {
		.home .key .inner::after {
		width: 1300px;
		}
	}


	/* topic_wrap */
	.home .topic_wrap {
		margin: 205px auto 100px;
		display: flex;
		justify-content: space-between;
	}

	.home .topic_wrap .breaking_wrap {
		position: relative;
		width: 590px;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 18px;
		padding: 34px 10px 10px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.home .topic_wrap .breaking_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.home .topic_wrap .breaking_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .topic_wrap .breaking_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
	}

	.home .topic_wrap .breaking_wrap .breaking_box {
		width: 570px;
		height: 260px;
		background: #fff;
		border-radius: 8px;
		margin-top: 14px;
		overflow-y: auto;
		padding: 33px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont {
		position: relative;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: repeating-linear-gradient(to right,
			#082a4a 0,
			#082a4a 11px,
			transparent 11px,
			transparent 22px);
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont .date {
		color: #082a4a;
		font-weight: bold;
		line-height: 1;
		padding-top: 30px;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
		padding-top: 0;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
		line-height: 1.5;
		font-weight: bold;
		padding: 18px 0 30px;
	}

	.home .topic_wrap .reviews_wrap {
		position: relative;
		width: 590px;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 18px;
		padding: 34px 10px 10px;
		box-sizing: border-box;
	}

	.home .topic_wrap .reviews_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.home .topic_wrap .reviews_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.home .topic_wrap .reviews_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .topic_wrap .reviews_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
	}

	.home .topic_wrap .reviews_wrap .reviews_box {
		overflow-y: auto;
		width: 570px;
		height: 260px;
		background: #fff;
		border-radius: 8px;
		margin-top: 14px;
		border-top: none;
        padding: 15px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_box::-webkit-scrollbar,
	.home .topic_wrap .reviews_box::-webkit-scrollbar {
		width: 3px;
	}
	.home .topic_wrap .breaking_box::-webkit-scrollbar-track,
	.home .topic_wrap .reviews_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .topic_wrap .breaking_box::-webkit-scrollbar-thumb,
	.home .topic_wrap .reviews_box::-webkit-scrollbar-thumb {
		background-color: #eee;
	}


	/* cont01 */
	.home .cont01 {
		background: url("img/common_bg_01.png");
		background-size: 88px auto;
		text-align: center;
		padding: 100px 0;
	}

	.home .cont01 .inner h2 {
		position: relative;
		font-weight: bold;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.home .cont01 .inner h2 span {
		display: block;
		font-size: 60px;
		font-weight: bold;
		color: #082a4a;
		padding-bottom: 18px;
	}

	.home .cont01 .inner h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -22px;
		top: -42px;
	}

	.home .cont01 .inner .text01 {
		font-size: 36px;
		font-weight: bold;
		line-height: 1;
		margin-top: 60px;
	}

	.home .cont01 .inner .thanks_box {
		display: flex;
		justify-content: space-between;
	}

	.home .cont01 .inner .thanks_box .cont {
		position: relative;
		width: 380px;
		height: 250px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 18px;
		margin-top: 63px;
		padding: 30px 0;
		box-sizing: border-box;
	}

	.home .cont01 .inner .thanks_box .cont::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -40px;
		left: 15px;
		width: 89px;
		height: 103px;
	}

	.home .cont01 .inner .thanks_box .cont h3 {
		line-height: 1;
		font-size: 36px;
		font-weight: bold;
		color: #065aaa;
	}

	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(1) {
		display: block;
		font-weight: bold;
		color: #555;
		padding-bottom: 18px;
		position: relative;
	}
   
	.home .cont01 .inner .thanks_box .cont.box01 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks01.png) center center/cover no-repeat; 
	   width: 292px;
	   height: 58px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
	.home .cont01 .inner .thanks_box .cont.box02 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks02.png) center center/cover no-repeat; 
	   width: 260px;
	   height: 58px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
	.home .cont01 .inner .thanks_box .cont.box03 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks03.png) center center/cover no-repeat; 
	   width: 78px;
	   height: 51px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
    
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(2),
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(3),
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(4) {
       visibility: hidden;
	}


	.home .cont01 .inner .thanks_box .cont .text02 {
		line-height: 1.5;
		font-size: 20px;
		font-weight: bold;
		margin-top: 40px;
	}


	/* cont02 */
	.home .cont02 {
		position: relative;
		padding-top: 620px;
		margin: 100px auto;
	}

	.home .cont02 .text_box01 {
		position: absolute;
		left: 620px;
		top: 0;
		height: 620px;
		width: 604px;
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.home .cont02 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1;
		padding: 12px 0 12px 30px;
		width: fit-content;
	}

	.home .cont02 h2 span {
		font-size: 28px;
		font-weight: bold;
		padding-top: 12px;
		display: block;
	}

	.home .cont02 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.home .cont02 .text01 {
		padding: 42px 0 38px;
		line-height: 2.5;
	}

	.home .cont02 .button {
		width: 360px;
		height: 50px;
		text-align: center;
	}

	.home .cont02 .button a {
		position: relative;
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		line-height: 50px;
		font-weight: bold;
		border-radius: 25px;
		transition:
		background-color 0.4s ease,
		color 0.4s ease;
	}

	.home .cont02 .button a:hover {
		background: #fff;
		color: #065aaa;
	}

	.home .cont02 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition:
		background-color 0.4s ease,
		color 0.4s ease;
	}

	.home .cont02 .button a:hover::before {
		background: #065aaa;
	}

	.home .cont02 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		width: 890px;
		height: 620px;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.home .cont02 figure {
		border-radius: 10px;
		border-left: 3px solid #065aaa;
		}
	}

	@media screen and (max-width: 1300px) {
		.home .cont02 .text_box01 {
		padding: 25px 25px 30px 5px;
		}
	}


	/* cont03 */
	.home .cont03 {
		background: #e2f1ff;
		padding: 130px 0 75px;
	}

	.home .cont03 .inner:nth-of-type(1) {
		position: relative;
	}

	.home .cont03 .inner:nth-of-type(1)::before {
		position: absolute;
		content: "";
		background: url("img/common_deco06.png") center center / cover no-repeat;
		right: 0;
		top: -312px;
		width: 152px;
		height: 348px;
	}

	.home .cont03 .cont03_01>h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont03 .cont03_01>h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont03 .cont03_01>h2 span::after {
		position: absolute;
		content: "";
		background: url("img/home_text01.png") center center / cover no-repeat;
		width: 617px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont03 .cont03_01 .service_box {
		display: flex;
		justify-content: space-between;
		margin-top: 60px;
	}

	.home .cont03 .cont03_01 .service_box .cont {
		position: relative;
		width: 580px;
		padding-top: 300px;
	}

	.home .cont03 .cont03_01 .service_box .cont figure {
		position: absolute;
		top: 0;
		left: 0;
		width: 580px;
		height: 300px;
		border: 5px solid #348de2;
		border-radius: 18px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box {
		position: relative;
		line-height: 1;
		padding: 10px 0 8px 36px;
		margin-top: 35px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) figure {
		border-color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 10px;
		height: 140px;
		background: #348de2;
		border-radius: 5px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box h3 {
		font-size: 22px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 {
		margin-top: 6px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01 {
		position: relative;
		color: #686868;
		font-size: 22px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01>span {
		font-size: 30px;
		font-weight: bold;
		display: inline-block;
		padding-left: 6px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01>span>span {
		font-size: 26px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		padding-left: 30px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02::before {
		content: "";
		position: absolute;
		background: #348de2;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		width: 8px;
		height: 14px;
		top: 50%;
		left: 11px;
		transform: translateY(-50%);
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02>span {
		font-size: 42px;
		font-weight: bold;
		color: #348de2;
		padding-left: 10px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02>span {
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02 {
		margin-top: 12px;
		font-size: 20px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02>span {
		padding-left: 5px;
		font-size: 34px;
		font-weight: bold;
		color: #348de2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text02>span {
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02>span>span {
		font-size: 24px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .text03 {
		margin-top: 30px;
		font-size: 20px;
	}

	.home .cont03 .cont03_01 .service_box .cont .button {
		position: relative;
		width: 580px;
		text-align: center;
		margin-top: 32px;
	}

	.home .cont03 .cont03_01 .service_box .cont .button a {
		display: block;
		background: #fff;
		border: 3px solid #348de2;
		color: #348de2;
		font-size: 20px;
		line-height: 64px;
		border-radius: 14px;
		font-weight: bold;
		transition:
		background-color 0.4s ease,
		color 0.4s ease;
	}

	.home .cont03 .cont03_01 .service_box .cont .button a:hover {
		color: #fff;
		background: #065aaa;
	}

	.home .cont03 .cont03_01 .service_box .cont a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition:
		background-color 0.4s ease;
	}

	.home .cont03 .cont03_01 .service_box .cont a:hover::before {
		background: #fff;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .button a {
		border-color: #0091a2;
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) a::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .button a:hover {
		background: #0091a2;
		color: #fff;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) a:hover::before {
		background: #fff;
	}

	.home .cont03 .cont03_01 .text04 {
		text-align: right;
		margin: 25px 0 78px;
		line-height: 1;
	}

	.home .cont03 .cont03_02 {
		border: 1px solid #065aaa;
		border-radius: 10px;
		background: #fff;
	}

	.home .cont03 .cont03_02 h2 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		text-align: center;
		padding: 15px 0;
		line-height: 1;
		border-radius: 9px 9px 0 0;
	}

	.home .cont03 .cont03_02 h2::before {
		content: "";
		position: absolute;
		background: url("img/common_deco05.png") no-repeat;
		width: 131px;
		height: 151px;
		right: 176px;
		top: -62px;
	}

	.home .cont03 .cont03_02 .flex {
		display: flex;
	}

	.home .cont03 .cont03_02 figure {
		margin: 60px 30px 0 30px;
	}

	.home .cont03 .cont03_02 .box01,
	.home .cont03 .cont03_02 .box02 {
		border: 1px solid #348de2;
		background: #e2f1ff;
		width: 340px;
		position: relative;
		margin: 35px 0 0;
	}

	.home .cont03 .cont03_02 .box02 {
		border: 1px solid #0091a2;
	}

	.home .cont03 .cont03_02 .box01::after,
	.home .cont03 .cont03_02 .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #348de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.home .cont03 .cont03_02 .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.home .cont03 .cont03_02 .box01 h3,
	.home .cont03 .cont03_02 .box02 h3 {
		background: #348de2;
		color: #fff;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
	}

	.home .cont03 .cont03_02 .box02 h3 {
		background: #0091a2;
	}

	.home .cont03 .cont03_02 .box01 ul,
	.home .cont03 .cont03_02 .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 40px;
	}

	.home .cont03 .cont03_02 .box01 ul li,
	.home .cont03 .cont03_02 .box02 ul li {
		font-weight: bold;
	}

	.home .cont03 .cont03_02 .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 27px;
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.home .cont03 .cont03_02 .text span {
		color: #065aaa;
		font-weight: bold;
	}


	/* cont04 */
	.home .cont04 {
		position: relative;
		padding: 130px 0 100px;
	}

	.home .cont04::before {
		position: absolute;
		content: "";
		background: url("img/common_deco07.png") center center / cover no-repeat;
		left: 40px;
		top: -45px;
		width: 168px;
		height: 346px;
		z-index: 1;
	}

	.home .cont04::after {
		position: absolute;
		content: "";
		background: url("img/common_deco08.png") center center / cover no-repeat;
		left: 990px;
		top: -24px;
		width: 383px;
		height: 278px;
	}

	.home .cont04 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont04 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont04 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/home_text02.png) center center / cover no-repeat;
		width: 670px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont04 .box {
		display: flex;
		justify-content: space-between;
		margin-top: 60px;
	}

	.home .cont04 .box .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
	}

	.home .cont04 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.home .cont04 .box .item figure img {
		border-radius: 15px;
		border: 3px solid #065aaa;
	}

	.home .cont04 .box .item .text_box {
		margin-top: 26px;
	}

	.home .cont04 h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.home .cont04 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.home .cont04 .text01 {
		margin-top: 18px;
	}

	.home .cont04 .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.home .cont04 .button a {
		display: block;
		background: #fff;
		border: 2px solid #065aaa;
		line-height: 46px;
		border-radius: 14px;
		font-weight: bold;
		transition: background-color 0.4s ease, color 0.4s ease;
	}

	.home .cont04 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont04 .button a:hover {
		background: #065aaa;
		color: #fff;
	}

	.home .cont04 .button a:hover::before {
		background: #fff;
	}


	/* cont05 */
	.home .cont05 {
		background: url(img/common_bg_01.png);
		padding: 110px 0 100px;

	}

	.home .cont05 .inner {
		position: relative;
	}

	.home .cont05 .inner::after {
		position: absolute;
		content: "";
		background: url("img/common_deco10.png") center center / cover no-repeat;
		right: -120px;
		bottom: -210px;
		width: 254px;
		height: 192px;
		z-index: 1;
	}

	.home .cont05 .inner {
		width: 900px;
		margin: 0 auto;
	}

	.home .cont05 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont05 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont05 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/home_text03.png) center center / cover no-repeat;
		width: 322px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont05 h3 {
		position: relative;
		font-weight: bold;
		font-size: 22px;
		color: #082a4a;
		padding-left: 20px;
		height: 32px;
		line-height: 32px;
	}

	.home .cont05 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 6px;
		height: 32px;
		border-radius: 3px;
		left: 0;
		top: 0;
	}

	.home .cont05 .text01 {
		margin-top: 4px;
	}

	.home .cont05 .box .item {
		position: relative;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 9px;
		padding: 24px 0 22px 99px;
		margin-bottom: 50px;
	}

	.home .cont05 .box .item::before {
		position: absolute;
		content: "";
		background: url("img/reason_01.png") center center / cover no-repeat;
		width: 144px;
		height: 134px;
		left: -66px;
		top: 1px;
	}

	.home .cont05 .box .item:nth-of-type(2):before {
		background: url("img/reason_02.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(3):before {
		background: url("img/reason_03.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(4):before {
		background: url("img/reason_04.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(5):before {
		background: url("img/reason_05.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:first-of-type {
		margin-top: 50px;
	}

	.home .cont05 .box .item:last-of-type {
		margin-bottom: 0;
	}

	.home .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 60px auto 0;
	}

	.home .cont05 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont05 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont05 .button a:hover::before {
		background: #065aaa;
	}


	/* cont06 */
	.home .cont06 {
		padding: 95px 0 100px;
		margin: 0 auto;
		width: 1380px;
	}

	.home .cont06 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont06 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text05.png) center center / cover no-repeat;
		width: 294px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont06 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 30px;
		line-height: 1.8;
	}

	.home .cont06 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.home .cont06 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.home .cont06 .category_01,
	.home .cont06 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.home .cont06 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.home .cont06 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.home .cont06 .text02 {
		margin-top: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.home .cont06 .box {
		display: flex;
		justify-content: center;
		gap: 60px;
		margin: 55px auto 0;
	}

	.home .cont06 .box .item {
		width: 50%;
		position: relative;
	}

	.home .cont06 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.home .cont06 .box .img_box {
		display: flex;
	}

	.home .cont06 .box .img_box figure {
		position: relative;
	}

	.home .cont06 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}
	
	.home .cont06 .box .img_box figure img {
		width: 330px;
	}

	.home .cont06 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.home .cont06 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.home .cont06 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.home .cont06 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.home .cont06 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 90px auto 0;
	}

	.home .cont06 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont06 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont06 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (max-width: 1450px) {
		.home .cont06 .box {
			gap: 20px;
			justify-content: center;
			padding: 0 30px;
		}

		.home .cont06 {
			width: 1240px;
		}
	}


	/* cont07 */
	.home .cont07 {
		background: #e2f1ff;
		padding: 100px 0;
	}

	.home .cont07 .inner {
		position: relative;
	}

	.home .cont07 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -200px;
		left: 40px;
	}

	.home .cont07 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont07 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text04.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont07 .box {
		display: flex;
		justify-content: space-between;
		margin-top: 60px;
	}

	.home .cont07 .box .item {
		position: relative;
		width: 380px;
		height: 250px;
		border: 2px solid #065aaa;
		border-radius: 18px;
		box-sizing: border-box;
		background: #fff;
		padding: 65px 50px 30px;
	}

	.home .cont07 .box .item::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: -26px;
		top: 50%;
		transform: translateY(-50%);
		width: 26px;
		height: 46px;
	}

	.home .cont07 .box .item:last-of-type::before {
		display: none;
	}

	.home .cont07 .box .item:nth-of-type(2) {
		padding: 65px 45px 30px;
	}

	.home .cont07 .box .item:nth-of-type(3) {
		padding: 60px 46px 30px;
	}

	.home .cont07 .box .item h3 {
		position: relative;
		text-align: center;
		font-size: 26px;
		color: #082a4a;
		line-height: 1;
		font-weight: bold;
	}

	.home .cont07 .box .item h3::before {
		position: absolute;
		content: "FLOW 01";
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		top: -35px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .cont07 .box .item:nth-of-type(2) h3::before {
		content: "FLOW 02";
	}

	.home .cont07 .box .item:nth-of-type(3) h3::before {
		content: "FLOW 03";
	}

	.home .cont07 .box .item p {
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.6;
	}

	.home .cont07 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 60px auto 0;
	}

	.home .cont07 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont07 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont07 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont07 .button a:hover::before {
		background: #065aaa;
	}


	/* cont08 */
	.home .cont08 {
		padding: 100px 0;
	}

	.home .cont08 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont08 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont08 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text06.png) center center / cover no-repeat;
		width: 152px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}


	.home .cont08 p {
		text-align: center;
		font-weight: bold;
		margin-top: 55px;
	}

	.home .cont08 .qa_box {
		margin-top: 50px;
		border-bottom: 1px dashed #065aaa;
	}

	.home .cont08 .qa_box .qes {
		position: relative;
		width: 100%;
		padding: 37px 100px 37px 152px;
		border-top: 1px dashed #065aaa;
		box-sizing: border-box;
		font-size: 20px;
		font-weight: bold;
		cursor: pointer;
		line-height: 1;
	}

	.home .cont08 .qa_box .qes::before {
		position: absolute;
		top: 50%;
		left: 100px;
		transform: translateY(-50%);
		content: "Q";
		display: flex;
		justify-content: center;
		align-items: center;
		color: #065aaa;
		border: 2px solid #065aaa;
		font-size: 18px;
		font-weight: bold;
		width: 36px;
		height: 36px;
		box-sizing: border-box;
		border-radius: 50%;
	}

	.home .cont08 .qa_box .qes::after {
		position: absolute;
		top: 50%;
		right: 100px;
		transform: translateY(-50%);
		content: "";
		background: url(img/faq_icon01.png) no-repeat;
		width: 20px;
		height: 20px;
		transition: .3s;
	}

	.home .cont08 .qa_box .qes.open::after {
		transform: translateY(-50%) rotate(180deg);
		background: url(img/faq_icon02.png) no-repeat;
	}

	.home .cont08 .qa_box .ans {
		display: none;
		padding-left: 152px;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 2;
		margin-bottom: 37px;
		position: relative;
	}

	.home .cont08 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 53px auto 0;
	}

	.home .cont08 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont08 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont08 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont08 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (max-width: 1300px) {
		.home .cont08 {
		width: 1100px;
		}
	}

	/* cont09 */
	.home .cont09 {
		background: url(img/common_bg_01.png);
		padding: 100px 0;
	}

	.home .cont09 .inner {
		padding-top: 620px;
		position: relative;
	}

	.home .cont09 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center center / cover no-repeat;
		width: 233px;
		height: 184px;
		bottom: -235px;
		right: 48px;
	}

	.home .cont09 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		width: 870px;
		height: 620px;
		overflow: hidden;
		box-sizing: border-box;
	}

	.home .cont09 .text_box {
		position: absolute;
		right: 0;
		top: 0;
		height: 560px;
		width: 680px;
		padding: 48px 0 54px 50px;
		box-sizing: border-box;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 18px;
		margin: 30px auto;
		z-index: 2;
	}

	.home .cont09 h2 {
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
	}

	.home .cont09 .text_box .text01 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
		line-height: 34px;
		padding-left: 22px;
		margin-top: 26px;
	}

	.home .cont09 .text_box .text01::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 34px;
		border-radius: 3px;
		left: 0;
		top: 0;
	}

	.home .cont09 .text_box .info_box {
		margin-top: 24px;
	}

	.home .cont09 .text_box .tel,
	.home .cont09 .text_box .mail,
	.home .cont09 .text_box .time,
	.home .cont09 .text_box .place {
		position: relative;
		font-weight: bold;
		padding-left: 32px;
	}

	.home .cont09 .text_box .tel::before {
		position: absolute;
		content: "";
		background: url("img/contact_tel_img01.png") center center / cover no-repeat;
		width: 18px;
		height: 18px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .mail::before {
		position: absolute;
		content: "";
		background: url("img/contact_mail_img01.png") center center / cover no-repeat;
		width: 18px;
		height: 14px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .time::before {
		position: absolute;
		content: "";
		background: url("img/contact_time_img01.png") center center / cover no-repeat;
		width: 19px;
		height: 19px;
		top: 50%;
		left: -0.5px;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .place::before {
		position: absolute;
		content: "";
		background: url("img/contact_place_img01.png") center center / cover no-repeat;
		width: 16px;
		height: 20px;
		top: 50%;
		left: 2px;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .text02 {
		margin-top: 20px;
	}

	.home .cont09 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.home .cont09 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont09 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont09 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont09 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (min-width: 1800px) {
		.home .cont09 figure {
		border-left: 3px solid #065aaa;
		border-radius: 18px;
		}
	}


	/* cont10 */
	.home .cont10 {
		padding: 100px 0;
		z-index: 10;
		position: relative;
	}

	.home .cont10 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont10 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.home .cont10 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text07.png) center center / cover no-repeat;
		width: 209px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.home .cont10 .text01 {
		margin-top: 52px;
		text-align: center;
		font-size: 18px;
	}

	.home .cont10 .blog_box {
		margin-top: 49px;
	}

	.home .cont10 .blog_box .swiper-slide {
		display: block;
		width: 336px;
	}

	.home .cont10 .blog_box .swiper-slide a {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		box-sizing: border-box;
	}

	.home .cont10 .blog_box .swiper-slide a h3 {
		width: 100%;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 26px;
		order: 2;
		line-height: 1;
	}

	.home .cont10 .blog_box .swiper-slide a .date {
		width: 100%;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		margin: 20px 0 0;
		order: 3;
	}

	.home .cont10 .blog_box .swiper-slide a .cate {
		height: 28px;
		background: #065aaa;
		padding: 0 10px;
		border-radius: 2px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 28px;
		text-align: center;
		margin: 20px 0 0;
		order: 4;
	}

	.home .cont10 .blog_box .swiper-slide a .text02 {
		font-size: 16px;
		line-height: 2;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		margin-top: 15px;
		order: 5;
	}

	.home .cont10 .blog_box .swiper-slide a figure {
		width: 330px;
		height: 220px;
		border: 3px solid #065aaa;
		overflow: hidden;
		order: 1;
	}

	.home .cont10 .swiper-button-prev {
		top: -103px;
		left: calc(50% + 420px);
		width: 80px;
		height: 80px;
		background: url(img/common_arrow.png) 28px center no-repeat #0068b7;
		border-radius: 40px;
		transition: opacity 0.4s ease;
	}

	.home .cont10 .swiper-button-prev:hover {
		opacity: 0.7;
	}

	.home .cont10 .swiper-button-next {
		top: -103px;
		right: calc(50% + 420px);
		width: 80px;
		height: 80px;
		background: url("img/common_arrow.png") 28px center no-repeat #0068b7;
		border-radius: 40px;
		transform: rotate(-180deg);
		transition: opacity 0.4s ease;
	}

	.home .cont10 .swiper-button-next:hover {
		opacity: 0.7;
	}


	.home .cont10 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 53px auto 0;
	}

	.home .cont10 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont10 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.home .cont10 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.home .cont10 .button a:hover::before {
		background: #065aaa;
	}


	.home .cont10 .swiper-button-prev::after,
	.home .cont10 .swiper-button-next::after {
		content: "";
	}



	.single-area .pankuzu {
		margin-top: 180px;
	}
	.single-area .topic_wrap {
		margin-top: 105px;
	}



/* common
------------------------------------------------------------------------*/

	/* header */
	.common header {
		height: 130px;
	}
	.common header .header_box {
		height: 130px;
	}
	.common header .header_box::before {
		background: #fff;
		z-index: -1;
		position: fixed;
		height: 105px;
		transition: height 0.5s;
	}
	.common header .header_box.active02::before {
		height: 130px;
	}


	/* key */
	.common .key {
		text-align: center;
		height: 253px;
		background: url("img/common_bg_01.png");
		position: relative;
		top: -25px;
	}
	.common .key .text01 {
		position: relative;
		text-align: center;
		font-size: 32px;
		font-weight: bold;
		line-height: 1;
		top: 110.5px;
		color: #082a4a;
	}
	.common .key .text01::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: -1;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}


	/* pankuzu */
	.pankuzu {
		margin-top: 20px;
		line-height: 1.3;
		position: relative;
	}
	.pankuzu ul li {
		display: inline-block;
		margin-right: 10px;
		color: var(--main-color);
		font-size: 14px;
		font-weight: bold;
	}
	.pankuzu ul li a {
		color: #333;
		font-weight: bold;
	}
	.pankuzu ul li:not(:last-of-type)::after {
		content: "-";
		margin-left: 10px;
		flex-shrink: 0;
	}
	.pankuzu ul li:last-of-type {
		margin-right: 0;
	}


/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin:120px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	display: flex;
	justify-content: space-between;
	margin: 120px auto;
}
.single-pager .prev-pager-box,
.single-pager .next-pager-box{
	width: calc(50% - 30px);
}
.single-pager .prev-pager-box {
	margin-left: 20px;
}
.single-pager .next-pager-box {
	margin-right: 20px;
}
.single-pager a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 14px;
	position: relative;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 35px;
	height: 35px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -20px;
}
.single-pager .next-pager-box a::before {
	right: -20px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 8px solid #fff;
	left: -7px;
}
.single-pager .next-pager-box a::after {
	border-left: 8px solid #fff;
	right: -7px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.3;
	margin-bottom: 10px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px !important;
	border-radius: 5px !important;
}



/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */

	/* about */
	.about .key .text01::after {
		background: url("img/about_key_text.png");
		width: 343px;
		height: 74px;
	}

	/* professional */
	.professional .key .text01::after {
		background: url("img/professional_key_text.png");
		width: 783px;
		height: 74px;
	}

	/* cleaning */
	.cleaning .key .text01::after {
		background: url("img/cleaning_key_text.png");
		width: 519px;
		height: 74px;
	}

	/* complete */
	.complete .key .text01::after {
		background: url("img/complete_key_text.png");
		width: 519px;
		height: 74px;
	}

	/* flow */
	.flow .key .text01::after {
		background: url("img/flow_key_text.png");
		width: 282px;
		height: 74px;
	}

	/* housecleaning */
	.housecleaning .key .text01::after {
		background: url(img/housecleaning_key_text.png);
		width: 901px;
		height: 74px;
	}

	/* price */
	.price .key .text01::after {
		background: url(img/price_key_text.png);
		width: 297px;
		height: 74px;
	}

	/* reason */
	.reason .key .text01::after {
		background: url("img/reason_key_text.png");
		width: 404px;
		height: 74px;
	}

	/* aircon-install */
	.aircon-install .key .text01::after {
		background: url(img/aircon-install_key_text.png);
		width: 428px;
		height: 74px;
	}

	/* works-archive */
	.works-archive .key .text01::after {
		background: url(img/works-archive_key_text.png);
		width: 368px;
		height: 74px;
	}

	/* works-single */
	.works-single .key .text01::after {
		background: url(img/works-single_key_img.png);
		width: 368px;
		height: 74px;
	}


	/* blog */
	.blog .key .text01::after {
		background: url(img/blog_key_img.png);
		width: 244px;
		height: 74px;
	}

	/* faq */
	.faq .key .text01::after {
		background: url(img/faq_key_img.png);
		width: 183px;
		height: 74px;
	}

	/* company */
	.company .key .text01::after {
		background: url(img/company_key_img.png);
		width: 482px;
		height: 74px;
	}

	/* privacy */
	.privacy .key .text01::after {
		background: url(img/privacy_key_img.png);
		width: 786px;
		height: 74px;
	}

	/* contact */
	.contact .key .text01::after {
		background: url(img/contact_key_img.png);
		width: 452px;
		height: 74px;
	}

	/* thanks */
	.thanks .key .text01::after {
		background: url(img/thanks_key_img.png);
		width: 400px;
		height: 74px;
	}

	/* 404 */
	.yonmaruyon .key .text01::after {
		background: url(img/yonmaruyon_key_img.png);
		width: 174px;
		height: 74px;
	}

	/* 410 */
	.yonichimaru .key .text01::after {
		background: url(img/yonichimaru_key_img.png);
		width: 173px;
		height: 74px;
	}




/* about
------------------------------------------------------------------------*/

	/* cont01 */
	.about .cont01 {
		padding: 90px 0 100px;
		display: flex;
		gap: 18px;
		position: relative;
	}

	.about .cont01 h2 {
		font-size: 20px;
		font-weight: bold;
		padding-left: 47px;
		position: relative;
	}

	.about .cont01 h2::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 155px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 32px;
		color: #065aaa;
		line-height: 1.6;
		margin-top: 10px;
	}

	.about .cont01 .text01 {
		font-size: 18px;
		line-height: 2.3;
		margin-top: 24px;
	}

	.about .cont01 .text01:first-of-type {
		margin-top: 45px;
	}

	.about .cont01 .img_box {
		position: absolute;
		right: 0;
		top: 90px;
	}

	.about .cont01 .img_box figure {
		position: absolute;
	}

	.about .cont01 .img_box figure:nth-of-type(1) {
		right: 288px;
		top: 178px;
		width: 185px;
	}

	.about .cont01 .img_box figure:nth-of-type(2) {
		top: 0;
		right: -58px;
		width: 336px;
	}

	.about .cont01 .img_box figure:nth-of-type(3) {
		width: 224px;
		top: 420px;
		right: 158px;
	}

	.about .cont01 .img_box figure:nth-of-type(4) {
		right: 1px;
		top: 420px;
		width: 148px;
	}
	.about .cont01 .img_box figure img {
		border-radius: 10px;
	}


	/* cont02 */
	.about .cont02 {
		padding: 100px 0;
		background: #e2f1ff;
	}

	.about .cont02 .cont02_01 {
		position: relative;
	}

	.about .cont02 .cont02_01::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -125px;
		left: 20px;
	}

	.about .cont02 .cont02_01::after {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -109px;
		right: 22px;
	}

	.about .cont02 .cont02_01 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.about .cont02 .cont02_01 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.about .cont02 .cont02_01 span::before {
		position: absolute;
		content: "";
		background: url(img/about_text01.png) center center / cover no-repeat;
		width: 479px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.about .cont02 .cont02_01 .box {
		position: relative;
		display: flex;
		margin-top: 80px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(2) {
		justify-content: end;
	}

	.about .cont02 .cont02_01 .text_box {
		position: absolute;
		right: -300px;
		top: 50%;
		transform: translateY(-50%);
		width: 635px;
		height: 340px;
		border-radius: 10px 0 0 10px;
		padding: 0 300px 0 48px;
		background: #fff;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(2) .text_box {
		border-radius: 0 10px 10px 0;
		left: -300px;
		padding: 0 0 0 300px;
	}

	.about .cont02 .cont02_01 .box .text01 {
		font-size: 16px;
		margin-top: 25px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(3) .text01 {
		margin-top: 12px;
	}

	.about .cont02 .cont02_01 .box h3 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 107px;
		line-height: 58px;
		margin-top: 40px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(3) h3 {
		line-height: 1.5;
	}

	.about .cont02 .cont02_01 .box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont02 .cont02_01 .box:nth-of-type(1) h3::before {
		background: url("img/vision01.png");
		width: 43px;
		height: 55px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(2) h3::before {
		background: url("img/vision02.png");
		width: 49px;
		height: 55px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(3) h3::before {
		background: url("img/vision03.png");
		width: 49px;
		height: 55px;
	}

	.about .cont02 .cont02_01 .box h3::after {
		position: absolute;
		content: "";
		left: 73px;
		top: 0;
		width: 3px;
		height: 58px;
		border-radius: 2px;
		background: #065aaa;
	}

	.about .cont02 .cont02_01 .box.box:nth-of-type(3) h3::after {
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont02 .cont02_01 .box figure img{
		border-radius: 10px;
		border: 3px solid #348de2;
	}

	.about .cont02 .cont02_02 {
		margin-top: 100px;
		width: 1200px;
		background: #fff;
		border: 3px solid #065aaa;
		padding: 0 0 45px;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.about .cont02 .cont02_02 h2 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 60px;
	}

	.about .cont02 .cont02_02 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco05.png") no-repeat;
		width: 131px;
		height: 151px;
		right: 40px;
		top: -70px;
	}

	.about .cont02 .cont02_02 .tet_box {
		text-align: center;
		margin: 45px 70px 0;
	}

	.about .cont02 .cont02_02 .tet_box .text01 {
		line-height: 1;
	}

	.about .cont02 .cont02_02 .tet_box .text01 {
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.about .cont02 .cont02_02 .tet_box .text01 span {
		font-size: 28px;
		font-weight: bold;
		color: #065aaa;
	}

	.about .cont02 .cont02_02 .tet_box .text02 {
		font-size: 16px;
		margin-top: 35px;
		line-height: 2.25;
	}

	.about .cont02 .cont02_02 .tet_box:nth-of-type(1) .text02 {
		padding-bottom: 40px;
		border-bottom: 2px dashed #065aaa;
		line-height: 2.25;
	}

	.about .cont02 .cont02_02 .tet_box .text02 span {
		font-size: 16px;
		font-weight: bold;
		color: #065aaa;
	}

	@media screen and (min-width: 1800px) {
		.about .cont02 .cont02_01 .box .text_box {
		border-radius: 10px;
		padding: 0 100px;
		right: -200px;
		}

		.about .cont02 .cont02_01 .box:nth-of-type(2) .text_box {
		border-radius: 10px;
		padding: 0 100px;
		left: -200px;
		}
	}


	/* cont03 */
	.about .cont03 {
		position: relative;
		padding: 252px 0 0;
	}

	.about .cont03::before {
		position: absolute;
		content: "";
		background: url("img/common_deco06.png") no-repeat;
		width: 152px;
		height: 348px;
		top: 5px;
		right: 65px;
		z-index: 1;
	}

	.about .cont03 .box figure {
		position: absolute;
		top: 100px;
		left: -300px;
		z-index: -1;
		border: 3px solid #065aaa;
		border-radius: 18px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.about .cont03 .text_box {
		background: url(img/common_bg_01.png);
		background-size: 89px auto;
		height: 500px;
		width: 1175px;
		box-sizing: border-box;
		padding: 78px 0 0 80px;
		border-radius: 10px;
		position: absolute;
		right: -300px;
		top: 252px;
	}

	.about .cont03 .text_box h2 {
		position: relative;
		font-size: 32px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1.37;
		padding-left: 42px;
	}

	.about .cont03 .text_box h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 6px;
		height: 85px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 3px;
	}

	.about .cont03 .text_box .text01 {
		margin-top: 22px;
		font-size: 20px;
	}

	.about .cont03 .review_box {
		display: flex;
		justify-content: space-between;
		margin-top: 310px;
	}

	.about .cont03 .review_box .cont {
		position: relative;
		width: 380px;
		height: 250px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 18px;
		padding: 30px 0;
		box-sizing: border-box;
		text-align: center;
	}

	.about .cont03 .review_box .cont::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -40px;
		left: 15px;
		width: 89px;
		height: 103px;
	}


	.about .cont03 .review_box .cont h3 {
		line-height: 1;
		font-size: 36px;
		font-weight: bold;
		color: #065aaa;
	}

	.about .cont03 .review_box .cont h3 span:nth-of-type(1) {
		display: block;
		font-weight: bold;
		color: #555;
		padding-bottom: 18px;
		position: relative;
	}
    .about .cont03.inner .review_box .cont.box01 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks01.png) center center/cover no-repeat; 
	   width: 292px;
	   height: 58px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
	.about .cont03.inner .review_box .cont.box02 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks02.png) center center/cover no-repeat; 
	   width: 260px;
	   height: 58px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
	.about .cont03.inner .review_box .cont.box03 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks03.png) center center/cover no-repeat; 
	   width: 78px;
	   height: 51px;
	   position: absolute;
       top: 60px;
	   left: 50%;
	   transform: translateX(-50%);
	}
    
	.about .cont03.inner .review_box .cont h3 span:nth-of-type(2),
	.about .cont03.inner .review_box .cont h3 span:nth-of-type(3),
	.about .cont03.inner .review_box .cont h3 span:nth-of-type(4) {
       visibility: hidden;
	}
	/* .about .cont03 .review_box .cont h3 span:nth-of-type(2) {
		font-size: 60px;
		font-weight: bold;
	}

	.about .cont03 .review_box .cont h3 span:nth-of-type(3) {
		font-size: 48px;
		font-weight: bold;
	} */

	.about .cont03 .review_box .cont .text02 {
		line-height: 1.5;
		font-size: 20px;
		font-weight: bold;
		margin-top: 40px;
	}

	/* topic_wrap */
	.about .topic_wrap {
		margin: 120px auto 100px;
		display: flex;
		justify-content: space-between;
	}

	.about .topic_wrap .breaking_wrap {
		position: relative;
		width: 590px;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 18px;
		padding: 34px 10px 10px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.about .topic_wrap .breaking_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.about .topic_wrap .breaking_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.about .topic_wrap .breaking_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
	}

	.about .topic_wrap .breaking_wrap .breaking_box {
		width: 570px;
		height: 260px;
		background: #fff;
		border-radius: 8px;
		margin-top: 14px;
		overflow-y: auto;
		padding: 33px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont {
		position: relative;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: repeating-linear-gradient(to right,
			#082a4a 0,
			#082a4a 11px,
			transparent 11px,
			transparent 22px);
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont .date {
		color: #082a4a;
		font-weight: bold;
		line-height: 1;
		padding-top: 30px;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
		padding-top: 0;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
		line-height: 1.5;
		font-weight: bold;
		padding: 18px 0 30px;
	}

	.about .topic_wrap .reviews_wrap {
		position: relative;
		width: 590px;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 18px;
		padding: 34px 10px 10px;
		box-sizing: border-box;
	}

	.about .topic_wrap .reviews_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.about .topic_wrap .reviews_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.about .topic_wrap .reviews_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.about .topic_wrap .reviews_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
	}

	.about .topic_wrap .reviews_wrap .reviews_box {
		overflow-y: auto;
		width: 570px;
		height: 260px;
		background: #fff;
		border-radius: 8px;
		margin-top: 14px;
		border-top: none;
        padding: 15px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_box::-webkit-scrollbar,
	.about .topic_wrap .reviews_box::-webkit-scrollbar {
		width: 3px;
	}
	.about .topic_wrap .breaking_box::-webkit-scrollbar-track,
	.about .topic_wrap .reviews_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.about .topic_wrap .breaking_box::-webkit-scrollbar-thumb,
	.about .topic_wrap .reviews_box::-webkit-scrollbar-thumb {
		background-color: #eee;
	}



/* professional
------------------------------------------------------------------------*/

	/* cont01 */
	.professional .cont01 {
		padding: 90px 0 20px;
		display: flex;
		gap: 18px;
		position: relative;
	}

	.professional .cont01 h2 {
		font-size: 16px;
		padding-left: 47px;
		position: relative;
	}

	.professional .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 32px;
		color: #065aaa;
		line-height: 1.6;
		padding-top: 8px;
	}

	.professional .cont01 h2::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 148px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont01 .text01 {
		font-size: 18px;
		line-height: 2.3;
		margin-top: 24px;
	}

	.professional .cont01 .text01:first-of-type {
		margin-top: 40px;
	}

	.professional .cont01 figure {
		position: absolute;
		right: -300px;
		top: 75px;
		width: 798px;
		border: 3px solid #065aaa;
		border-right: none;
		border-radius: 10px 0 0 10px;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.professional .cont01 figure {
		border-radius: 10px;
		border-right: 3px solid #065aaa;
		}
	}


	/* cont02 */
	.professional .cont02 {
		padding: 120px 0 100px;
	}

	.professional .cont02 .cont02_01 h2 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		text-align: center;
	}

	.professional .cont02 .cont02_01 h2::before {
		position: absolute;
		content: "";
		background: url(img/professional_text01.png) no-repeat;
		width: 466px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: -1;
	}

	.professional .cont02 .cont02_01 .text01 {
		position: relative;
		font-size: 32px;
		font-weight: bold;
		width: fit-content;
		margin: 65px auto 0;
	}

	.professional .cont02 .cont02_01 .text01::before {
		position: absolute;
		content: "";
		background: url("img/common_deco03.png") no-repeat;
		width: 23px;
		height: 33px;
		left: -40px;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont02 .cont02_01 .text01::after {
		position: absolute;
		content: "";
		background: url("img/common_deco04.png") no-repeat;
		width: 23px;
		height: 33px;
		right: -40px;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont02 .cont02_01 .box {
		display: flex;
		gap: 33px;
		justify-content: center;
		margin-top: 55px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 {
		position: relative;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		width: 375px;
		padding: 226px 33px 33px;
		overflow: hidden;
	}

	.professional .cont02 .cont02_01 .box .text_box01::before {
		position: absolute;
		content: "";
		top: 186px;
		left: 50%;
		transform: translate(-50%);
		width: 80px;
		height: 80px;
		z-index: 1;
		border-radius: 40px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(1):before {
		background: url("img/point01.png") center center no-repeat #fff;
		background-size: 36px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(2):before {
		background: url("img/point02.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(3):before {
		background: url("img/point03.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}

	.professional .cont02 .cont02_01 .box .text_box01 h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 20px;
		margin-top: 35px;
		line-height: 32px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 0;
		top: 0;
		width: 6px;
		height: 32px;
		border-radius: 3px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 20px;
	}


	/*.cont02_02  */
	.professional .cont02 .cont02_02 {
		margin-top: 84px;
		width: 1200px;
		background: #e2f1ff;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.professional .cont02 .cont02_02 h2 {
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #348de2;
		border-radius: 6px 6px 0 0;
		line-height: 54px;
	}

	.professional .cont02 .cont02_02 ul {
		padding: 38px 0;
		gap: 17px;
		grid-template-columns: repeat(4, auto);
		display: grid;
		width: 1118px;
		margin: 0 auto;
	}

	.professional .cont02 .cont02_02 ul li {
		position: relative;
		line-height: 60px;
		width: 263px;
		border: 2px solid #348de2;
		font-size: 18px;
		font-weight: bold;
		border-radius: 5px;
		box-sizing: border-box;
		color: #082a4a;
		padding-left: 66px;
		background: #fff;
	}

	.professional .cont02 .cont02_02 ul li::before {
		position: absolute;
		content: "";
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(1):before {
		background: url("img/professional_item01.png") no-repeat;
		width: 44px;
		height: 34px;
		left: 12px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(2):before {
		background: url("img/professional_item02.png") no-repeat;
		width: 42px;
		height: 34px;
		left: 14px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(3):before {
		background: url("img/professional_item03.png") no-repeat;
		width: 39px;
		height: 34px;
		left: 14px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(4):before {
		background: url("img/professional_item04.png") no-repeat;
		width: 36px;
		height: 37px;
		left: 16px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(5):before {
		background: url("img/professional_item05.png") no-repeat;
		width: 31px;
		height: 35px;
		left: 18px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(6):before {
		background: url("img/professional_item06.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 16px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(7):before {
		background: url("img/professional_item07.png") no-repeat;
		width: 37px;
		height: 34px;
		left: 16px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(8):before {
		background: url("img/professional_item08.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 17px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(9):before {
		background: url("img/professional_item09.png") no-repeat;
		width: 36px;
		height: 36px;
		left: 16px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(10):before {
		background: url("img/professional_item10.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 16px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(11):before {
		background: url("img/professional_item11.png") no-repeat;
		width: 34px;
		height: 35px;
		left: 17px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(12):before {
		background: url("img/professional_item12.png") no-repeat;
		width: 28px;
		height: 35px;
		left: 20px;
	}


	/*.cont02_03  */
	.professional .cont02 .cont02_03 {
		margin-top: 84px;
		width: 1200px;
		background: #e2f1ff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.professional .cont02 .cont02_03 h2 {
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 54px;
	}

	.professional .cont02 .cont02_03 ul {
		display: flex;
		gap: 20px;
		justify-content: center;
		padding: 44px 0;
	}

	.professional .cont02 .cont02_03 ul li {
		font-size: 18px;
		font-weight: bold;
		width: 320px;
		color: #fff;
		background: #348de2;
		line-height: 40px;
		text-align: center;
		border: 2px solid #348de2;
		border-radius: 8px;
		box-sizing: border-box;
		overflow: hidden;
	}


	/* cont03 */
	.professional .cont03 {
		background: url(img/common_bg_01.png);
		padding: 122px 0 100px;
	}

	.professional .cont03 .inner {
		position: relative;
	}

	.professional .cont03 .inner::before {
		position: absolute;
		content: "";
		background: url("img/common_deco12.png") center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -160px;
		right: 18px;
	}

	.professional .cont03 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.professional .cont03 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.professional .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text02.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.professional .cont03 .box {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 67px;
	}

	.professional .cont03 .item {
		position: relative;
		width: 380px;
		background: #fff;
		padding: 43px 39px 38px;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.professional .cont03 .item::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: -13px;
		top: 50%;
		transform: translateY(-50%);
		width: 13px;
		height: 25px;
	}

	.professional .cont03 .item:nth-of-type(3):before,
	.professional .cont03 .item:nth-of-type(6):before {
		display: none;
	}

	.professional .cont03 .item .text01 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		padding-left: 86px;
		line-height: 45px;
	}

	.professional .cont03 .item .text01::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 43px;
	}

	.professional .cont03 .item:nth-of-type(1) .text01:before {
		width: 36px;
		background: url("img/flow01.png") no-repeat;
	}

	.professional .cont03 .item:nth-of-type(2) .text01:before {
		background: url("img/flow02.png") no-repeat;
	}

	.professional .cont03 .item:nth-of-type(3) .text01:before {
		background: url("img/flow03.png") no-repeat;
	}

	.professional .cont03 .item:nth-of-type(4) .text01:before {
		background: url("img/flow04.png") no-repeat;
	}

	.professional .cont03 .item:nth-of-type(5) .text01:before {
		background: url("img/flow05.png") no-repeat;
	}

	.professional .cont03 .item:nth-of-type(6) .text01:before {
		background: url("img/flow06.png") no-repeat;
	}

	.professional .cont03 .item .text01::after {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 60px;
		top: 0;
		width: 3px;
		height: 43px;
	}

	.professional .cont03 .item .text02 {
		margin-top: 20px;
		letter-spacing: -1.2px;
	}

	.professional .cont03 .item figure {
		margin-top: 25px;
	}


	/* cont04 */
	.professional .cont04 {
		padding: 120px 0 100px;
		margin: 0 auto;
		max-width: 1380px;
	}

	.professional .cont04 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.professional .cont04 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.professional .cont04 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text05.png) center center / cover no-repeat;
		width: 294px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.professional .cont04 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 35px;
	}

	.professional .cont04 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.professional .cont04 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.professional .cont04 .category_01,
	.professional .cont04 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.professional .cont04 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.professional .cont04 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.professional .cont04 .text02 {
		margin-top: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.professional .cont04 .box {
		display: flex;
		justify-content: center;
		gap: 60px;
		margin: 55px auto 0;
	}

	.professional .cont04 .box .item {
		width: 50%;
		position: relative;
	}

	.professional .cont04 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.professional .cont04 .box .img_box {
		display: flex;
	}

	.professional .cont04 .box .img_box figure {
		position: relative;
	}

	.professional .cont04 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}
	
	.professional .cont04 .box .img_box figure img {
		width: 330px;
	}

	.professional .cont04 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.professional .cont04 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.professional .cont04 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.professional .cont04 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.professional .cont04 .button {
		position: relative;
		width: 462px;
		height: 50px;
		text-align: center;
		margin: 65px auto 0;
	}

	.professional .cont04 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.professional .cont04 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.professional .cont04 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.professional .cont04 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (max-width: 1450px) {
		.professional .cont04 .box {
			gap: 20px;
			justify-content: center;
			padding: 0 40px;
		}
	}


	/* cont05 */
	.professional .cont05 {
		background: #e2f1ff;
		padding: 122px 0 100px;
	}

	.professional .cont05 .inner {
		position: relative;
	}

	.professional .cont05 .inner::before {
		position: absolute;
		content: "";
		background: url("img/common_deco07.png") center / cover no-repeat;
		width: 168px;
		height: 364px;
		top: -178px;
		left: 45px;
	}

	.professional .cont05 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.professional .cont05 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.professional .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text04.png) center center / cover no-repeat;
		width: 427px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.professional .cont05 .cate {
		display: flex;
		gap: 15px;
		justify-content: center;
		margin-top: 40px;
	}

	.professional .cont05 .cate p {
		color: #fff;
		line-height: 36px;
		text-align: center;
		font-size: 16px;
		font-weight: bold;
	}

	.professional .cont05 .cate p:nth-of-type(1) {
		width: 245px;
		background: #348de2;
	}

	.professional .cont05 .cate p:nth-of-type(2) {
		width: 150px;
		background: #0091a2;
	}

	.professional .cont05 .text01 {
		margin-top: 30px;
		font-size: 20px;
		text-align: center;
	}

	.professional .cont05 .price_box {
		display: flex;
		gap: 20px;
		margin: 45px auto 0;
		width: 1000px;
	}

	.professional .cont05 .price_box .item {
		width: 320px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
	}

	.professional .cont05 .price_box .item p:nth-of-type(1) {
		font-size: 18px;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.professional .cont05 .price_box .item p:nth-of-type(2) {
		font-size: 44px;
		font-weight: bold;
	}

	.professional .cont05 .price_box .item p:nth-of-type(2) span {
		font-size: 28px;
		font-weight: bold;
		font-weight: bold;
	}

	.professional .cont05 .text03 {
		margin: 20px 100px 0 0;
		line-height: 1;
		text-align: right;
	}

	.professional .cont05 .option_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #fff;
		width: 1200px;
		padding: 65px 0 28px;
		text-align: center;
		margin-top: 30px;
	}

	.professional .cont05 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 204px;
		height: 161px;
		top: 23px;
		right: 20px;
	}

	.professional .cont05 .option_box h3 {
		position: relative;
		font-size: 40px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.professional .cont05 .option_box h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		width: 53px;
		height: 47px;
		left: -45px;
		top: -40px;
	}

	.professional .cont05 .option_box .text02 {
		font-size: 20px;
		margin-top: 28px;
	}

	.professional .cont05 .option_box .text04 {
		text-align: right;
		padding-right: 98px;
		margin-top: 10px;
	}

	.professional .cont05 .option_box .price_table {
		width: 1000px;
		margin: 30px auto 0;
		border-collapse: separate;
		border-spacing: 10px 10px;
	}

	.professional .cont05 .option_box .price_table th,
	.professional .cont05 .option_box .price_table td {
		background: #e6f0fa;
		color: #065aaa;
		font-size: 24px;
		font-weight: bold;
		line-height: 65px;
		margin: 0 auto;
	}

	.professional .cont05 .option_box .price_table th {
		width: 650px;
	}

	.professional .cont05 .option_box .price_table td {
		width: 340px;
	}

	.professional .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 60px auto 0;
	}

	.professional .cont05 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.professional .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.professional .cont05 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.professional .cont05 .button a:hover::before {
		background: #065aaa;
	}


	/* cont06 */
	.professional .cont06 {
		padding: 122px 0 150px;
	}

	.professional .cont06 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.professional .cont06 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.professional .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url("img/professional_text05.png") center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.professional .cont06 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 120px;
	}

	.professional .cont06 .box .text_box {
		margin-top: -35px;
	}

	.professional .cont06 .box figure {
		position: absolute;
		left: -300px;
		top: -50px;
	}

	.professional .cont06 .area {
		width: 565px;
		height: 328px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 50px;
	}

	.professional .cont06 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.professional .cont06 .area .area_list {
		text-align-last: left;
		height: 216px;
		overflow-y: auto;
		margin: 33px 10px 33px 33px;
		padding-right: 33px;
	}

	.professional .cont06 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
	}

	.professional .cont06 .area .area_list li {
		font-size: 16px;
		line-height: 1;
	}
	.professional .cont06 .area .area_list li a:hover{
		color: #7db4ee;
		text-decoration: underline;
		opacity: 1;
	}

	.professional .cont06 .area .area_list>li {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}



/* cleaning
------------------------------------------------------------------------*/

	/* cont01 */
	.cleaning .cont01 {
		position: relative;
		padding-top: 535px;
		margin: 100px auto;
	}

	.cleaning .cont01 .text_box01 {
		position: absolute;
		left: 620px;
		top: 0;
		height: 535px;
		width: 600px;
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.cleaning .cont01 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.cleaning .cont01 h2::before {
		position: absolute;
		content: "";
		background: #348de2;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%)
	}

	.cleaning .cont01 .text01 {
		padding: 50px 0;
		line-height: 2.5;
	}

	.cleaning .cont01 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #348de2;
		border-left: none;
		border-radius: 0 18px 18px 0;
		width: 870px;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.cleaning .cont01 figure {
		border-left: 3px solid #348de2;
		border-radius: 18px;
		}
	}


	/* cony02 */
	.cleaning .cont02 {
		background: url(img/common_bg_01.png);
		padding: 100px 0;
	}

	.cleaning .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.cleaning .cont02 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -169px;
		right: 0;
	}

	.cleaning .cont02 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.cleaning .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text01.png) center center / cover no-repeat;
		width: 480px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.cleaning .cont02 .box {
		display: flex;
		gap: 33px;
		justify-content: center;
		margin-top: 55px;
	}

	.cleaning .cont02 .box .text_box01 {
		position: relative;
		border: 3px solid #348de2;
		background: #fff;
		border-radius: 10px;
		box-sizing: border-box;
		width: 375px;
		padding: 226px 33px 33px;
		overflow: hidden;
	}

	.cleaning .cont02 .box .text_box01::before {
		position: absolute;
		content: "";
		top: 186px;
		left: 50%;
		transform: translate(-50%);
		width: 80px;
		height: 80px;
		z-index: 1;
		border-radius: 40px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(1):before {
		background: url(img/point01.png) center center no-repeat #fff;
		background-size: 36px 43px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(2):before {
		background: url(img/point02.png) center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(3):before {
		background: url(img/point03.png) center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.cleaning .cont02 .box .text_box01 h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 20px;
		margin-top: 35px;
		line-height: 32px;
	}

	.cleaning .cont02 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 0;
		top: 0;
		width: 6px;
		height: 32px;
		border-radius: 3px;
	}

	.cleaning .cont02 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 20px;
	}


	.cleaning .cont02 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}


	/* cont03 */
	.cleaning .cont03 {
		position: relative;
		padding-top: 506px;
		margin: 100px auto;
	}

	.cleaning .cont03 .text_box01 {
		position: absolute;
		left: 620px;
		top: 0;
		height: 506px;
		width: 600px;
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.cleaning .cont03 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.cleaning .cont03 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%)
	}

	.cleaning .cont03 .text01 {
		padding: 40px 0 0;
		line-height: 2.5;
	}

	.cleaning .cont03 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		width: 870px;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.cleaning .cont03 figure {
		border-left: 3px solid #065aaa;
		border-radius: 18px;
		}
	}

	.cleaning .cont03 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin-top: 40px;
	}

	.cleaning .cont03 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.cleaning .cont03 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.cleaning .cont03 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.cleaning .cont03 .button a:hover::before {
		background: #065aaa;
	}


	/* cont04 */
	.cleaning .cont04 {
		background: #e2f1ff;
		padding: 110px 0 90px;
	}

	.cleaning .cont04 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.cleaning .cont04 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center center / cover no-repeat;
		right: 0;
		bottom: -8px;
		width: 152px;
		height: 348px;
		z-index: 1;
	}

	.cleaning .cont04 h2::after {
		content: "";
		position: absolute;
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		left: 100px;
		bottom: -5px;
	}

	.cleaning .cont04 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.cleaning .cont04 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text02.png) center center / cover no-repeat;
		width: 476px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.cleaning .cont04 .text01 {
		font-size: 20px;
		margin-top: 40px;
		text-align: center;
	}

	.cleaning .cont04 .box {
		background: #fff;
		border: 1px solid #065aaa;
		border-radius: 10px;
		margin-top: 40px;
	}

	.cleaning .cont04 .flex {
		display: flex;
	}

	.cleaning .cont04 .flex figure {
		margin: 60px 30px 0 30px;
	}

	.cleaning .cont04 .flex .box01,
	.cleaning .cont04 .flex .box02 {
		border: 1px solid #348de2;
		background: #e2f1ff;
		width: 340px;
		position: relative;
		margin: 35px 0 0;
	}

	.cleaning .cont04 .flex .box02 {
		border: 1px solid #0091a2;
		background: #e9fdff;
	}

	.cleaning .cont04 .flex .box01 h3,
	.cleaning .cont04 .flex .box02 h3 {
		background: #348de2;
		color: #fff;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
	}

	.cleaning .cont04 .flex .box02 h3 {
		background: #0091a2;
	}

	.cleaning .cont04 .flex .box01 ul,
	.cleaning .cont04 .flex .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 40px;
	}

	.cleaning .cont04 .flex .box01 ul li,
	.cleaning .cont04 .flex .box02 ul li {
		font-weight: bold;
	}

	.cleaning .cont04 .flex .box01::after,
	.cleaning .cont04 .flex .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #348de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.cleaning .cont04 .flex .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.cleaning .cont04 .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 27px;
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.cleaning .cont04 .text span {
		color: #004688;
		font-weight: bold;
	}


	/* cont05 */
	.cleaning .cont05 {
		position: relative;
		padding-top: 393px;
		margin: 97px auto;
	}

	.cleaning .cont05 .text_box {
		position: absolute;
		left: 620px;
		top: 0;
		height: 393px;
		width: 600px;
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.cleaning .cont05 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.cleaning .cont05 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.cleaning .cont05 p {
		padding: 30px 0 0;
		line-height: 2.5;
	}

	.cleaning .cont05 iframe {
		height: 393px;
		width: 570px;
		position: absolute;
		left: 0;
		top: 0;
		border: 3px solid #065aaa;
		border-radius: 18px;
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont06 */
	.cleaning .cont06 {
		background: url(img/common_bg_01.png);
		padding: 120px 0 100px;
	}

	.cleaning .cont06 .inner {
		width: 1380px;
		margin: 0 auto;
	}

	.cleaning .cont06 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.cleaning .cont06 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center / cover no-repeat;
		width: 113px;
		height: 131px;
		right: -177px;
		bottom: -3px;
	}

	.cleaning .cont06 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.cleaning .cont06 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.cleaning .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text03.png) center center / cover no-repeat;
		width: 548px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.cleaning .cont06 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 35px;
	}

	.cleaning .cont06 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.cleaning .cont06 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.cleaning .cont06 .category_01,
	.cleaning .cont06 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.cleaning .cont06 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.cleaning .cont06 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.cleaning .cont06 .text02 {
		margin-top: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.cleaning .cont06 .box {
		display: flex;
		justify-content: center;
		gap: 60px;
		margin: 55px auto 0;
	}

	.cleaning .cont06 .box .item {
		width: 50%;
		position: relative;
	}

	.cleaning .cont06 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.cleaning .cont06 .box .img_box {
		display: flex;
	}

	.cleaning .cont06 .box .img_box figure {
		position: relative;
	}

	.cleaning .cont06 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.cleaning .cont06 .box .img_box figure img {
		width: 330px;
	}

	.cleaning .cont06 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.cleaning .cont06 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.cleaning .cont06 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.cleaning .cont06 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.cleaning .cont06 .button {
		position: relative;
		width: 400px;
		height: 50px;
		text-align: center;
		margin: 70px auto 0;
	}

	.cleaning .cont06 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.cleaning .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.cleaning .cont06 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.cleaning .cont06 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (max-width: 1450px) {
		.cleaning .cont06 .box {
		gap: 20px;
		justify-content: center;
		padding: 0 30px;
		}

		.cleaning .cont06 .box .item {
		width: 610px;
		padding-top: 203px;
		}

		.cleaning .cont06 .item::before {
		top: 80px;
		}

		.cleaning .cont06 .box .img_box figure {
		max-width: 290px;
		height: auto;
		flex: 0 0 290px;
		}

		.cleaning .cont06 .inner {
		width: 1240px;
		}
	}

	@media screen and (max-width: 1240px) {
		.cleaning .cont06 .box .item {
		padding-top: 189px;
		}
	}


	/* cont07 */
	.cleaning .cont07 {
		padding: 120px 0 100px;
	}

	.cleaning .cont07 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.cleaning .cont07 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco10.png) no-repeat;
		width: 254px;
		height: 192px;
		top: -202px;
		left: 0;
	}

	.cleaning .cont07 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.cleaning .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text04.png) center center / cover no-repeat;
		width: 225px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.cleaning .cont07 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 25px;
	}

	.cleaning .cont07 .price_box {
		display: flex;
		margin-top: 40px;
		gap: 34px;
		text-align: center;
	}

	.cleaning .cont07 .price_box .item {
		background: #fff;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) {
		border: 3px solid #065aaa;
	}

	.cleaning .cont07 .price_box h3 {
		font-size: 26px;
		color: #fff;
		line-height: 68px;
		font-weight: bold;
		background: #348de2;
		border-radius: 6px 6px 0 0;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) h3 {
		background: #065aaa;
	}
	
	.cleaning .cont07 .price_box h3 span {
        font-size: 16px;
        padding-left: 10px;
    }

	.cleaning .cont07 .price_box .price_text01 {
		font-size: 20px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 60px;
		text-align: left;
	}

	.cleaning .cont07 .price_box .price_text01 span {
		font-size: 20px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;

	}

	.cleaning .cont07 .price_box .price_text01 span .span01 {
		font-size: 24px;
	}

	.cleaning .cont07 .price_box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.cleaning .cont07 .price_box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -36px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.cleaning .cont07 .price_box .price_text02 {
		display: inline-block;
		font-size: 66px;
		font-weight: bold;
		color: #348de2;
		padding-left: 20px;
		line-height: 1;
	}

	.cleaning .cont07 .price_box .price_text02 span {
		font-size: 56px;
		font-weight: bold;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) .price_text02 {
		color: #065aaa;
	}

	.cleaning .cont07 .price_box .item .cate01,
	.cleaning .cont07 .price_box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 42px;
		margin-top: 30px;
	}

	.cleaning .cont07 .price_box .item .cate01 {
		padding: 0 29px;
		background: #348de2;
	}

	.cleaning .cont07 .price_box .item .cate02 {
		padding: 0 45px;
		background: #0091a2;
	}


	.cleaning .cont07 .price_box .item .text02 {
		font-size: 20px;
		font-weight: bold;
		padding: 20px 45px 40px;
		text-align-last: left;
	}

	.cleaning .cont07 .text03 {
		text-align: right;
		font-size: 14px;
		line-height: 1;
		margin-top: 30px;
	}

	.cleaning .cont07 .option_box .text03 {
		margin: 10px 98px 0 0;
	}

	.cleaning .cont07 .option_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #e2f1ff;
		width: 1200px;
		padding: 65px 0 28px;
		text-align: center;
		margin-top: 55px;
	}

	.cleaning .cont07 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 204px;
		height: 161px;
		top: 30px;
		right: 35px;
	}

	.cleaning .cont07 .option_box h4 {
		position: relative;
		font-size: 40px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.cleaning .cont07 .option_box h4::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		width: 53px;
		height: 47px;
		left: -45px;
		top: -40px;
	}

	.cleaning .cont07 .option_box .text02 {
		font-size: 20px;
		margin-top: 28px;
	}

	.cleaning .cont07 .option_box .text04 {
		text-align: right;
		padding-right: 97px;
		margin-top: 10px;
	}

	.cleaning .cont07 .option_box .price_table {
		width: 1000px;
		margin: 30px auto 0;
		border-collapse: separate;
		border-spacing: 10px 10px;
	}

	.cleaning .cont07 .option_box .price_table th,
	.cleaning .cont07 .option_box .price_table td {
		background: #fff;
		color: #065aaa;
		font-size: 24px;
		font-weight: bold;
		line-height: 65px;
		margin: 0 auto;
	}

	.cleaning .cont07 .option_box .price_table th {
		width: 650px;
	}

	.cleaning .cont07 .option_box .price_table td {
		width: 340px;
	}

	.cleaning .cont07 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 80px auto 0;
	}

	.cleaning .cont07 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.cleaning .cont07 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.cleaning .cont07 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.cleaning .cont07 .button a:hover::before {
		background: #065aaa;
	}


	/* cont08 */
	.cleaning .cont08 {
		background: #e2f1ff;
	}

	.cleaning .cont08 {
		padding: 120px 0 180px;
	}

	.cleaning .cont08 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.cleaning .cont08 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.cleaning .cont08 h2 span::before {
		position: absolute;
		content: "";
		background: url("img/cleaning_text06.png") center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.cleaning .cont08 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 120px;
	}

	.cleaning .cont08 .box figure {
		position: absolute;
		left: -300px;
		top: -25px;
	}


	.cleaning .cont08 .area {
		width: 565px;
		height: 328px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 50px;
	}


	.cleaning .cont08 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.cleaning .cont08 .area .area_list {
		text-align-last: left;
		height: 216px;
		overflow-y: auto;
		margin: 33px 10px 33px 33px;
		padding-right: 33px;
	}

	.cleaning .cont08 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
	}

	.cleaning .cont08 .area .area_list li {
		font-size: 16px;
		line-height: 1;
	}
	.cleaning .cont08 .area .area_list li a:hover{
		color: #7db4ee;
		text-decoration: underline;
		opacity: 1;
	}

	.cleaning .cont08 .area .area_list>li {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.cleaning .contact_box {
		margin-top: 100px;
		margin-bottom: 100px;
	}



/* complete
------------------------------------------------------------------------*/

	/* cont01 */
	.complete .cont01 {
		position: relative;
		padding-top: 494px;
		margin: 100px auto;
	}

	.complete .cont01 .text_box01 {
		position: absolute;
		left: 620px;
		top: 0;
		height: 494px;
		width: 600px;
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.complete .cont01 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.complete .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%)
	}

	.complete .cont01 .text01 {
		padding: 30px 0;
		line-height: 2.5;
	}

	.complete .cont01 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #348de2;
		border-left: none;
		border-radius: 0 18px 18px 0;
		width: 870px;
		height: 494px;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.complete .cont01 figure {
		border-left: 3px solid #348de2;
		border-radius: 18px;
		}
	}


	/* cony02 */
	.complete .cont02 {
		background: url(img/common_bg_01.png);
		padding: 120px 0 100px;
	}

	.complete .cont02 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.complete .cont02 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.complete .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text01.png) center center / cover no-repeat;
		width: 322px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.complete .cont02 .box {
		display: flex;
		gap: 70px 60px;
		justify-content: center;
		margin-top: 90px;
		flex-wrap: wrap;
	}

	.complete .cont02 .box .text_box01 {
		position: relative;
		border: 3px solid #348de2;
		background: #fff;
		border-radius: 10px;
		box-sizing: border-box;
		width: 550px;
		padding: 65px 48px 45px;
	}

	.complete .cont02 .box .text_box01::before {
		position: absolute;
		content: "";
		top: -43.5px;
		left: 50%;
		transform: translate(-50%);
		width: 87px;
		height: 87px;
		z-index: 1;
		border-radius: 44px;
		background-size: 46px 44px;
	}

	.complete .cont02 .box .text_box01:nth-of-type(1):before {
		background: url(img/reason_img02_01.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(2):before {
		background: url(img/reason_img02_02.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(3):before {
		background: url(img/reason_img02_03.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(4):before {
		background: url(img/reason_img02_04.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01 h3 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont02 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		transform: scale(0.68);
		left: -36px;
		top: -32px;
		width: 53px;
		height: 47px;
		border-radius: 3px;
	}

	.complete .cont02 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 20px;
	}

	.complete .cont02 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}


	/* cont03 */
	.complete .cont03 {
		padding: 120px 0 100px;
	}

	.complete .cont03 h2 {
		position: relative;
		text-align: center;
		font-size: 43px;
		font-weight: bold;
		line-height: 1;
		color: #082a3a;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont03 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco05.png");
		width: 131px;
		height: 151px;
		left: -183px;
		bottom: -8px;
	}

	.complete .cont03 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #333;
		padding-bottom: 24px;
	}

	.complete .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text02.png) center center / cover no-repeat;
		width: 476px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.complete .cont03 .text01 {
		font-size: 20px;
		margin-top: 30px;
		text-align: center;
	}

	.complete .cont03 .box {
		background: #fff;
		border: 3px solid #348de2;
		border-radius: 10px;
		margin-top: 30px;
	}

	.complete .cont03 .flex {
		display: flex;
	}

	.complete .cont03 .flex figure {
		margin: 60px 30px 0 30px;
	}

	.complete .cont03 .flex .box01,
	.complete .cont03 .flex .box02 {
		border: 1px solid #338de2;
		background: #e2f1ff;
		width: 330px;
		position: relative;
		margin: 35px 0 0;
	}

	.complete .cont03 .flex .box02 {
		border: 1px solid #0091a2;
	}

	.complete .cont03 .flex .box01 h3,
	.complete .cont03 .flex .box02 h3 {
		background: #338de2;
		color: #fff;
		text-align: center;
		font-size: 20px;
		font-weight: bold;
	}

	.complete .cont03 .flex .box02 h3 {
		background: #0091a2;
	}

	.complete .cont03 .flex .box01 ul,
	.complete .cont03 .flex .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 30px;
	}

	.complete .cont03 .flex .box01 ul li,
	.complete .cont03 .flex .box02 ul li {
		font-weight: bold;
	}

	.complete .cont03 .flex .box01::after,
	.complete .cont03 .flex .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #338de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.complete .cont03 .flex .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.complete .cont03 .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 27px;
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.complete .cont03 .text span {
		color: #003688;
		font-weight: bold;
	}


	/* cont04 */
	.complete .cont04 {
		background: #e2f1ff;
		padding: 100px 0;
	}

	.complete .cont04 .inner {
		position: relative;
		padding-top: 393px;
	}

	.complete .cont04 .text_box {
		position: absolute;
		left: 620px;
		top: 0;
		height: 393px;
		width: 600px;
		padding: 24px 0 30px 30px;
		box-sizing: border-box;
	}

	.complete .cont04 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.complete .cont04 h2::before {
		position: absolute;
		content: "";
		background: #064aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.complete .cont04 p {
		padding: 30px 0 0;
		line-height: 2.4;
	}

	.complete .cont04 iframe {
		position: absolute;
		left: 0;
		top: 0;
		border: 3px solid #064aaa;
		border-radius: 18px;
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont05 */
	.complete .cont05.inner {
		width: 1380px;
		padding: 120px 0 100px;
	}

	.complete .cont05 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont05 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco02.png") center / cover no-repeat;
		width: 113px;
		height: 131px;
		right: -177px;
		bottom: -3px;
	}

	.complete .cont05 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.complete .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text03.png) center center / cover no-repeat;
		width: 548px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.complete .cont05 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 35px;
	}

	.complete .cont05 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #055aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.complete .cont05 h3::before {
		content: "";
		position: absolute;
		background: #055aaa;
		width: 5px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.complete .cont05 .category_01,
	.complete .cont05 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.complete .cont05 .category_01 {
		padding: 7px 14px;
		background: #055aaa;
	}

	.complete .cont05 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.complete .cont05 .text02 {
		margin-top: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.complete .cont05 .box {
		display: flex;
		justify-content: center;
		gap: 60px;
		margin: 55px auto 0;
	}

	.complete .cont05 .box .item {
		width: 50%;
		position: relative;
	}

	.complete .cont05 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.complete .cont05 .box .img_box {
		display: flex;
	}

	.complete .cont05 .box .img_box figure {
		position: relative;
	}

	.complete .cont05 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}
	
	.complete .cont05 .box .img_box figure img {
		width: 330px;
	}

	.complete .cont05 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.complete .cont05 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.complete .cont05 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.complete .cont05 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.complete .cont05 .button {
		position: relative;
		width: 400px;
		height: 50px;
		text-align: center;
		margin: 70px auto 0;
	}

	.complete .cont05 .button a {
		display: block;
		background: #055aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.complete .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.complete .cont05 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.complete .cont05 .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (max-width: 1450px) {
		.complete .cont05 .box {
		gap: 20px;
		justify-content: center;
		padding: 0 30px;
		}

		.complete .cont05 .box .item {
		width: 610px;
		padding-top: 203px;
		}

		.complete .cont05 .item::before {
		top: 80px;
		}

		.complete .cont05 .box .img_box figure {
		max-width: 290px;
		height: auto;
		flex: 0 0 290px;
		}

		.complete .cont05.inner {
		width: 1240px;
		}
	}


	/* cont06 */
	.complete .cont06 {
		position: relative;
		padding: 120px 0 100px;
		background: #e2f1ff;
	}

	.complete .cont06 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont06 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco10.png") no-repeat;
		width: 254px;
		height: 192px;
		top: -150px;
		left: -186px;
	}

	.complete .cont06 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.complete .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text04.png) center center / cover no-repeat;
		width: 225px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.complete .cont06 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
	}

	.complete .cont06 .price_box {
		display: flex;
		margin-top: 40px;
		gap: 34px;
		text-align: center;
	}

	.complete .cont06 .price_box .item {
		background: #fff;
		border: 3px solid #00bcc3;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) {
		border: 3px solid #0091a2;
	}

	.complete .cont06 .price_box h3 {
		font-size: 26px;
		color: #fff;
		line-height: 68px;
		font-weight: bold;
		background: #00bcc3;
		border-radius: 6px 6px 0 0;
		letter-spacing: 0.7px;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) h3 {
		background: #0091a2;
	}

	.complete .cont06 .price_box h3 span{
		font-size: 16px;
	    padding-left: 10px;
	}

	.complete .cont06 .price_box .price_text01 {
		font-size: 20px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 60px;
		text-align: left;
	}

	.complete .cont06 .price_box .price_text01 span {
		font-size: 20px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;

	}

	.complete .cont06 .price_box .price_text01 span .span01 {
		font-size: 24px;
	}

	.complete .cont06 .price_box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.complete .cont06 .price_box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -36px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.complete .cont06 .price_box .price_text02 {
		display: inline-block;
		font-size: 66px;
		font-weight: bold;
		color: #00bcc3;
		padding-left: 20px;
		line-height: 1;
	}

	.complete .cont06 .price_box .price_text02 span {
		font-size: 56px;
		font-weight: bold;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) .price_text02 {
		color: #0091a2;
	}

	.complete .cont06 .price_box .item .cate01,
	.complete .cont06 .price_box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 42px;
		margin-top: 30px;
		letter-spacing: 2px;
	}

	.complete .cont06 .price_box .item .cate01 {
		padding: 0 82px;
		background: #00bcc3;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) .cate01 {
		padding: 0 97px;
		background: #0091a2;
	}

	.complete .cont06 .price_box .item .cate02 {
		padding: 0 50px;
		background: #348de2;
		margin-left: 10px;
	}


	.complete .cont06 .price_box .item .text02 {
		font-size: 20px;
		padding: 20px 45px 40px;
		text-align-last: left;
	}

	.complete .cont06 .text03 {
		text-align: right;
		font-size: 14px;
		line-height: 1;
		margin-top: 30px;
	}

	.complete .cont06 .option_box .text03 {
		margin: 10px 98px 0 0;
	}

	.complete .cont06 .option_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #fff;
		width: 1200px;
		padding: 65px 0 28px;
		text-align: center;
		margin-top: 50px;
	}

	.complete .cont06 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 204px;
		height: 161px;
		top: 20px;
		right: 18px;
	}

	.complete .cont06 .option_box h4 {
		position: relative;
		font-size: 40px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont06 .option_box h4::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		width: 53px;
		height: 46px;
		left: -45px;
		top: -40px;
	}

	.complete .cont06 .option_box .text02 {
		font-size: 20px;
		margin-top: 28px;
	}

	.complete .cont06 .option_box .text04 {
		text-align: right;
		padding-right: 96px;
		margin-top: 10px;
	}

	.complete .cont06 .option_box .price_table {
		width: 1000px;
		margin: 30px auto 0;
		border-collapse: separate;
		border-spacing: 10px 10px;
	}

	.complete .cont06 .option_box .price_table th,
	.complete .cont06 .option_box .price_table td {
		background: #e2f1ff;
		color: #065aaa;
		font-size: 24px;
		font-weight: bold;
		line-height: 65px;
		margin: 0 auto;
	}

	.complete .cont06 .option_box .price_table th {
		width: 650px;
	}

	.complete .cont06 .option_box .price_table td {
		width: 340px;
	}

	.complete .cont06 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 80px auto 0;
	}

	.complete .cont06 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.complete .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.complete .cont06 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.complete .cont06 .button a:hover::before {
		background: #065aaa;
	}


	/* cont07 */
	.complete .cont07 {
		padding: 120px 0 180px;
	}

	.complete .cont07 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #072a4a;
	}

	.complete .cont07 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 36px;
	}

	.complete .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url("img/complete_text05.png") center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 17px));
		z-index: -1;
	}

	.complete .cont07 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 120px;
	}

	.complete .cont07 .box figure {
		position: absolute;
		left: -300px;
		top: -25px;
	}

	.complete .cont07 .box figure img {
		border-radius: 15px;
	}

	.complete .cont07 .area {
		width: 565px;
		height: 327px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 50px;
	}

	.complete .cont07 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.complete .cont07 .area .area_list {
		text-align-last: left;
		height: 216px;
		overflow-y: auto;
		margin: 33px 10px 33px 33px;
		padding-right: 33px;
	}

	.complete .cont07 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
	}

	.complete .cont07 .area .area_list li {
		font-size: 16px;
		line-height: 1;
	}
	.complete .cont07 .area .area_list li a:hover{
		color: #7db4ee;
		text-decoration: underline;
		opacity: 1;
	}

	.complete .cont07 .area .area_list>li {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}



/* flow
------------------------------------------------------------------------*/

	/* cont01 */
	.flow .cont01 {
		padding: 100px 0 60px;
	}

	.flow .cont01 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.flow .cont01 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.flow .cont01 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/flow_text01.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.flow .cont01 p {
		text-align: center;
		font-size: 20px;
		line-height: 1.8;
		margin-top: 45px;
	}


	/* cont02 */
	.flow .cont02 .inner {
		width: 1000px;
		padding-top: 206px;
		position: relative;
	}

	.flow .cont02 .flow01,
	.flow .cont02 .flow03,
	.flow .cont02 .flow05 {
		background: #e8f4ff;
	}

	.flow .cont02 .flow_box {
		padding: 65px 0;
	}

	.flow .cont02 .flow_box.flow02 .inner {
		position: relative;
	}

	.flow .cont02 .flow_box.flow02 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco10.png) center / cover no-repeat;
		width: 225px;
		height: 170px;
		top: -126px;
		right: -138px;
	}

	.flow .cont02 .flow_box.flow04>.inner:not(.flow_04_sub) {
		position: relative;
	}

	.flow .cont02 .flow_box.flow04>.inner:not(.flow_04_sub)::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 234px;
		height: 192px;
		top: -132px;
		right: 23px;
	}

	.flow .cont02 .flow_box figure {
		position: absolute;
		left: 0;
		top: 0;
	}

	.flow .cont02 .flow_box figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}

	.flow .cont02 .flow_box .box figure img {
		border: 3px solid #348de2;
	}

	.flow .cont02 .flow_box .text_box {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 655px;
	}

	.flow .cont02 .flow_box h3 {
		position: relative;
		font-size: 32px;
		font-weight: bold;
		line-height: 38px;
		color: #082a4a;
		padding-left: 90px;
		white-space: nowrap;
	}

	.flow .cont02 .flow_box h3::before {
		position: absolute;
		content: "";
		width: 44px;
		height: 32px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.flow .cont02 .flow_box:nth-of-type(1) h3::before {
		background: url("img/common_no01.png") no-repeat;
		width: 39px;
	}

	.flow .cont02 .flow_box:nth-of-type(2) h3::before {
		background: url("img/common_no02.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(3) h3::before {
		background: url("img/common_no03.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(4) h3::before {
		background: url("img/common_no04.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(5) h3::before {
		background: url("img/common_no05.png") no-repeat;
	}


	.flow .cont02 .flow_box h3::after {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 3px;
		height: 38px;
		border-radius: 2px;
		left: 63px;
		top: 0;
	}

	.flow .cont02 .flow_box .text01 {
		font-size: 20px;
		color: #082a4a;
		margin-top: 20px;
		line-height: 1.8;
	}

	.flow .cont02 .flow_box.flow01 .text01 {
		white-space: nowrap;
	}

	.flow .cont02 .flow_box.flow01 .info_box {
		display: flex;
		gap: 15px;
		margin-top: 20px;
	}

	.flow .cont02 .flow_box.flow01 .info_box .tel {
		text-align: center;
	}

	.flow .cont02 .flow_box.flow01 .info_box .tel a {
		font-size: 14px;
		line-height: 1.8;
		font-weight: bold;
	}

	.flow .cont02 .flow_box.flow01 .info_box .btn-01 a {
		display: block;
		width: 220px;
		height: 50px;
		background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
		padding: 0px 0 0 58px;
		box-sizing: border-box;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
		transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
	}

	.flow .cont02 .flow_box.flow01 .info_box .btn-01 a:hover {
		background: #fff url(img/header_icon04.png) left 26px top 14px no-repeat;
		color: #06c755;
	}

	.flow .cont02 .flow_box .flow_04_sub {
		background: #e2f1ff;
		border: 3px solid #065aaa;
		border-radius: 10px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box {
		position: relative;
		height: 163px;
		margin-top: 40px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box:first-of-type {
		margin-top: 50px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box:last-of-type {
		margin-bottom: 50px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(3) {
		margin-top: 216px;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box02 {
		position: absolute;
		left: 346px;
		top: 50%;
		transform: translateY(-50%);
		margin-right: 49px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box figure {
		position: absolute;
		left: 54px;
		top: 0;
	}

	.flow .cont02 .flow_box .flow_04_sub.inner {
		padding-top: 0;
		margin-top: 65px;
	}


	.flow .cont02 .flow_box .flow_04_sub h4 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		text-align: center;
		line-height: 60px;
		border-radius: 9px 9px 0 0;
	}

	.flow .cont02 .flow_box .flow_04_sub h4::before {
		content: "";
		position: absolute;
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		right: 176px;
		top: -60px;
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		padding-left: 18px;
		line-height: 32px;
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01::before {
		position: absolute;
		content: "";
		background: #064aaa;
		width: 6px;
		height: 32px;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01 span {
		font-size: 14px;
		font-weight: bold;
	}

	.flow .cont02 .flow_box .flow_04_sub .box .text02 {
		position: relative;
		font-size: 16px;
		color: #082a4a;
		margin-top: 15px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box .text02::before {
		position: absolute;
		content: "";
		width: 599px;
		height: 1px;
		background: #959595;
		bottom: -30px;
		left: 0;
	}

	.flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(2) .text02::before,
	.flow .cont02 .flow_box .flow_04_sub .box:last-of-type .text02::before {
		display: none;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 {
		width: 890px;
		margin: 0 auto;
		padding-top: 163px;
		text-align: center;
		box-sizing: border-box;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .ttl02 {
		color: #ffff00;
		background: #348de2;
		line-height: 35px;
		font-weight: bold;
		margin-top: 40px;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 {
		background: #fff;
		font-weight: bold;
		font-size: 18px;
		padding: 17px 0;
		border: 3px solid #348de2;
		border-top: none;
		line-height: 1.78;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 span {
		font-weight: bold;
		color: #348de2;
	}

	/* contact_box */
	.flow .contact_box {
		margin-top: 100px;
	}



/* housecleaning
------------------------------------------------------------------------*/

	/* cont01 */
	.housecleaning .cont01 {
		position: relative;
		padding-top: 665px;
		margin: 100px auto;
	}

	.housecleaning .cont01 .text_box01 {
		position: absolute;
		left: 620px;
		top: 50%;
		transform: translateY(-50%);
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.housecleaning .cont01 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.housecleaning .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.housecleaning .cont01 .text01 {
		margin-top: 35px;
	}

	.housecleaning .cont01 .button {
		margin-top: 35px;
	}

	.housecleaning .cont01 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.housecleaning .cont01 figure {
		border-radius: 10px;
		border-left: 3px solid #065aaa;
		}
	}


	/* cont02 */
	.housecleaning .cont02 {
		padding: 120px 0 100px;
		background: #e2f1ff;
	}

	.housecleaning .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont02 h2::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_deco01.png") no-repeat;
		width: 228px;
		height: 292px;
		bottom: -25px;
		right: -316px;
	}

	.housecleaning .cont02 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.housecleaning .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text01.png) center center / cover no-repeat;
		width: 721px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.housecleaning .cont02 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
		line-height: 1.8;
	}

	.housecleaning .cont02 .box {
		display: flex;
		flex-wrap: wrap;
		margin-top: 60px;
		gap: 60px 30px;
	}

	.housecleaning .cont02 .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
	}

	.housecleaning .cont02 .box .item .text_box {
		margin-top: 26px;
	}

	.housecleaning .cont02 .box .item .text_box h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont02 .box .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont02 .box .item .text_box .text02 {
		margin-top: 20px;
		font-size: 14px;
		letter-spacing: .7px;
	}

	.housecleaning .cont02 .box .item:nth-of-type(6) .text_box .text02 {
		letter-spacing: .65px;
	}

	.housecleaning .cont02 .box .item .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.housecleaning .cont02 .box .item .button a {
		display: block;
		background: #fff;
		border: 2px solid #065aaa;
		line-height: 46px;
		border-radius: 14px;
		font-weight: bold;
		transition: background-color 0.4s ease, color 0.4s ease;
	}

	.housecleaning .cont02 .box .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.housecleaning .cont02 .box .item .button a:hover {
		background: #065aaa;
		color: #fff;
	}

	.housecleaning .cont02 .box .item .button a:hover::before {
		background: #fff;
	}


	.housecleaning .cont02 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.housecleaning .cont02 .box .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}


	/* cont03 */
	.housecleaning .cont03 {
		padding: 120px 0 100px;
	}

	.housecleaning .cont03 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont03 h2::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_deco02.png") no-repeat;
		width: 225px;
		height: 225px;
		left: -312px;
		top: -180px;
	}

	.housecleaning .cont03 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.housecleaning .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text02.png) center center / cover no-repeat;
		width: 535px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.housecleaning .cont03 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
		line-height: 1.8;
	}

	.housecleaning .cont03 .box {
		display: flex;
		justify-content: center;
		margin-top: 60px;
		gap: 40px;
	}

	.housecleaning .cont03 .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
	}

	.housecleaning .cont03 .box .item .text_box {
		margin-top: 26px;
	}

	.housecleaning .cont03 .box .item .text_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont03 .box .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont03 .box .item .text_box .text02 {
		margin-top: 20px;
		font-size: 14px;
		letter-spacing: .6px;
	}

	.housecleaning .cont03 .box .item .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.housecleaning .cont03 .box .item .button a {
		display: block;
		background: #fff;
		border: 2px solid #065aaa;
		line-height: 46px;
		border-radius: 14px;
		font-weight: bold;
		transition: background-color 0.4s ease, color 0.4s ease;
	}

	.housecleaning .cont03 .box .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.housecleaning .cont03 .box .item .button a:hover {
		background: #065aaa;
		color: #fff;
	}

	.housecleaning .cont03 .box .item .button a:hover::before {
		background: #fff;
	}

	.housecleaning .cont03 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.housecleaning .cont03 .box .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}


	/* cont04 */
	.housecleaning .cont04 {
		padding: 120px 0 100px;
		background: url(img/common_bg_01.png);
	}

	.housecleaning .cont04 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont04 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco12.png") center / cover no-repeat;
		width: 233px;
		height: 184px;
		right: -336px;
		bottom: 77px;
	}

	.housecleaning .cont04 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.housecleaning .cont04 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text03.png) center center / cover no-repeat;
        width: 367px;
        height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.housecleaning .cont04 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
		line-height: 1.8;
	}

	.housecleaning .cont04 .box {
		display: flex;
		justify-content: center;
		margin-top: 60px;
		gap: 40px;
	}

	.housecleaning .cont04 .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
	}

	.housecleaning .cont04 .box .item .text_box {
		margin-top: 26px;
	}

	.housecleaning .cont04 .box .item .text_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont04 .box .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont04 .box .item .text_box .text02 {
		margin-top: 20px;
		font-size: 14px;
		letter-spacing: .6px;
	}

	.housecleaning .cont04 .box .item .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.housecleaning .cont04 .box .item .button a {
		display: block;
		background: #fff;
		border: 2px solid #065aaa;
		line-height: 46px;
		border-radius: 14px;
		font-weight: bold;
		transition: background-color 0.4s ease, color 0.4s ease;
	}

	.housecleaning .cont04 .box .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.housecleaning .cont04 .box .item .button a:hover {
		background: #065aaa;
		color: #fff;
	}

	.housecleaning .cont04 .box .item .button a:hover::before {
		background: #fff;
	}


	.housecleaning .cont04 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.housecleaning .cont04 .box .item figure img{
		border-radius: 10px;
		border: 3px solid #065aaa;
	}


	/* cont05 */
	.housecleaning .cont05 {
		padding: 120px 0 100px;
	}

	.housecleaning .cont05 h2 {
		position: relative;
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont05 h2::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_deco03.png") center / cover no-repeat;
		width: 219px;
		height: 282px;
		left: -343px;
		bottom: 0;
	}

	.housecleaning .cont05 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.housecleaning .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text04.png) center center / cover no-repeat;
		width: 237px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.housecleaning .cont05 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
		line-height: 1.8;
	}

	.housecleaning .cont05 .price_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #e2f1ff;
		width: 1200px;
		padding: 50px 0;
		text-align: center;
		margin-top: 30px;
	}

	.housecleaning .cont05 .price_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center / cover no-repeat;
		width: 102px;
		height: 118px;
		top: 25px;
		right: 134px;
	}

	.housecleaning .cont05 .price_box .text02 {
		position: relative;
		font-size: 32px;
		font-weight: bold;
		line-height: 1.4;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
		letter-spacing: 0.7px;
	}

	.housecleaning .cont05 .price_box .text02 span {
		color: #065aaa;
		font-size: 36px;
		font-weight: bold;
	}

	.housecleaning .cont05 .price_box .text02::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) center / cover no-repeat;
		width: 45px;
		height: 40px;
		left: -35px;
		top: -30px;
	}

	.housecleaning .cont05 .price_box table {
		margin: 50px auto 0;
		border-collapse: separate;
		border-spacing: 10px 10px;
	}

	.housecleaning .cont05 .price_box table th,
	.housecleaning .cont05 .price_box table td {
		background: #fff;
		color: #065aaa;
		font-size: 22px;
		font-weight: bold;
		line-height: 65px;
		margin: 0 auto;
	}

	.housecleaning .cont05 .price_box table th {
		width: 667px;
		text-align: left;
		padding-left: 60px;
		box-sizing: border-box;
	}

	.housecleaning .cont05 .price_box table td {
		width: 323px;
		text-align: right;
		padding-right: 45px;
		box-sizing: border-box;
	}

	.housecleaning .cont05 .price_box table td span {
		font-weight: bold;
	}

	.housecleaning .cont05 .text03 {
		font-size: 14px;
		text-align: right;
		margin: 10px 97px 0 0;
	}

	.housecleaning .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 70px auto 0;
	}

	.housecleaning .cont05 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		border: 1px solid #065aaa;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.housecleaning .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.housecleaning .cont05 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.housecleaning .cont05 .button a:hover::before {
		background: #065aaa;
	}


	/* cont06 */
	.housecleaning .cont06 {
		background: #e2f1ff;
	}

	.housecleaning .cont06 {
		padding: 120px 0 180px;
	}

	.housecleaning .cont06 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.housecleaning .cont06 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.housecleaning .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_text05.png") center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.housecleaning .cont06 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 120px;
	}

	.housecleaning .cont06 .box figure {
		position: absolute;
		left: -300px;
		top: -25px;
	}


	.housecleaning .cont06 .area {
		width: 565px;
		height: 328px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 50px;
	}


	.housecleaning .cont06 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.housecleaning .cont06 .area .area_list {
		text-align-last: left;
		height: 216px;
		overflow-y: auto;
		margin: 33px 10px 33px 33px;
		padding-right: 33px;
	}

	.housecleaning .cont06 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
	}

	.housecleaning .cont06 .area .area_list li {
		font-size: 16px;
		line-height: 1;
	}
	.housecleaning .cont06 .area .area_list li a:hover{
		color: #7db4ee;
		text-decoration: underline;
		opacity: 1;
	}

	.housecleaning .cont06 .area .area_list>li {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	/* contact-box */
	.housecleaning .contact_box {
		margin-top: 100px;
	}



/* price
------------------------------------------------------------------------*/

	/* cont01 price_box*/
	.price .cont01 {
		margin: 80px auto 100px;
	}

	.price .cont01 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.price .cont01 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.price .cont01 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/price_text01.png) center center / cover no-repeat;
		width: 427px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.price .cont01 .text01 {
		text-align: center;
		font-size: 20px;
		margin-top: 40px;
	}

	.price .cont01 .price_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #e2f1ff;
		width: 1200px;
		padding: 65px 0 60px;
		text-align: center;
		margin-top: 50px;
	}

	.price .cont01 .price_box:nth-of-type(2) {
		border: 3px solid #0091a2;
		background: #e9fdff;
	}

	.price .cont01 .price_box h3 {
		font-size: 38px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.price .cont01 .price_box .box {
		display: flex;
		margin-top: 40px;
		justify-content: center;
		gap: 34px;
		text-align: center;
	}

	.price .cont01 .price_box .box .item {
		background: #fff;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		width: 483px;
	}


	.price .cont01 .price_box .box .item:nth-of-type(2) {
		border: 3px solid #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item {
		border: 3px solid #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) {
		border: 3px solid #0091a2;
	}

	.price .cont01 .price_box .box .item .text02 {
		font-size: 24px;
		color: #fff;
		line-height: 56px;
		font-weight: bold;
		background: #348de2;
		border-radius: 6px 6px 0 0;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .text02 {
		background: #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .text02 {
		background: #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .text02 {
		background: #0091a2;
	}


	.price .cont01 .price_box .box .price_text01 {
		font-size: 17px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 45px;
		text-align: left;
	}

	.price .cont01 .price_box .box .price_text01 span {
		font-size: 16px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;
	}

	.price .cont01 .price_box .box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.price .cont01 .price_box .box .price_text01 span .span01 {
		font-size: 20px;
	}

	.price .cont01 .price_box .box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -36px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.price .cont01 .price_box .box .price_text02 {
		display: inline-block;
		font-size: 56px;
		font-weight: bold;
		color: #348de2;
		padding-left: 16px;
		line-height: 1;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .price_text02 {
		color: #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .price_text02 {
		color: #00a8b8;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .price_text02 {
		color: #0091a2;
	}

	.price .cont01 .price_box .box .price_text02 span {
		font-size: 46px;
		font-weight: bold;
	}

	.price .cont01 .price_box .box .item .cate01,
	.price .cont01 .price_box .box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 35px;
		margin: 25px 0 50px;
	}

	.price .cont01 .price_box .box .item .cate01 {
		padding: 0 23px;
		background: #348de2;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .cate01 {
		background: #065aaa;
		padding: 0 42px;
	}

	.price .cont01 .price_box .box .item .cate02 {
		padding: 0 38px;
		background: #0091a2;
		margin-left: 10px;
	}


	.price .cont01 .price_box:nth-of-type(2) .box .item .cate01 {
		padding: 0 23px;
		background: #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .cate01 {
		background: #0091a2;
		padding: 0 37px;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .cate02 {
		padding: 0 38px;
		background: #348de2;
		margin-left: 10px;
	}

	.price .cont01 .price_box .text03 {
		font-size: 14px;
		text-align: right;
		margin: 24px 100px 0 0;
		line-height: 1;
	}

	.price .cont01 .price_box .text04 {
		font-size: 20px;
		line-height: 1.8;
		margin-top: 32px;
	}

	.price .cont01 .price_box .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin: 38px auto 0;
	}

	.price .cont01 .price_box .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease;
	}

	.price .cont01 .price_box:nth-of-type(2) .button a {
		background: #0091a2;
		border: 1px solid #0091a2;
	}

	.price .cont01 .price_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.price .cont01 .price_box .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.price .cont01 .price_box .button a:hover::before {
		background: #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .button a:hover {
		background: #fff;
		color: #0091a2;
		border: 1px solid #0091a2;
	}

	.price .cont01 .price_box:nth-of-type(2) .button a:hover::before {
		background: #0091a2;
	}

	/* cont01 option_box*/

	.price .cont01 .option_box {
		margin-top: 105px;
	}

	.price .cont01 .option_box h3 {
		position: relative;
		font-size: 38px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
	}

	.price .cont01 .option_box h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -45px;
		top: -40px;
	}

	.price .cont01 .option_box .text01 {
		font-size: 20px;
		margin-top: 28px;
	}

	.price .cont01 .option_box .box {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 52px;
	}

	.price .cont01 .option_box .box .item {
		position: relative;
		width: 585px;
		height: 241px;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.price .cont01 .option_box .box .item .text_box {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 314px;
		margin-right: 30px;
	}

	.price .cont01 .option_box .box .item .text_box .tte01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 17px;
		line-height: 28px;
	}

	.price .cont01 .option_box .box .item .text_box .tte01::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 0;
		top: 0;
		width: 5px;
		height: 28px;
		border-radius: 3px;
	}

	.price .cont01 .option_box .box .item .text_box .text02 {
		font-size: 14px;
		margin-top: 8px;
		line-height: 1.7;
	}

	.price .cont01 .option_box .box .item .text_box .text03 {
		font-size: 48px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		margin-top: 15px;
		text-align: right;
	}

	.price .cont01 .option_box .box .item .text_box .text03 span {
		font-size: 38px;
		font-weight: bold;
	}

	.price .cont01 .option_box .box .item:nth-of-type(4) .text_box .text03 {
		font-size: 21px;
		margin-top: 35px;
		text-align: justify;
	}

	.price .cont01 .option_box .box .item figure {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 15px;
	}

	.price .cont01 .option_box .box .item figure img{
		border-radius: 5px;
	}

	.price .cont01 .option_box .text04 {
		text-align: right;
		line-height: 1;
		margin-top: 15px;
	}

	.price .cont01 .text05 {
		position: relative;
		width: 1200px;
		height: 180px;
		font-weight: bold;
		font-size: 26px;
		line-height: 1.85;
		background: url(img/common_bg_01.png);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin-top: 50px;
	}

	.price .cont01 .text05::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -21px;
		right: 158px;
		width: 89px;
		height: 103px;
	}


	/* cont02 */
	.price .cont02 {
		background: #e2f1ff;
		padding: 120px 0 110px;
	}

	.price .cont02 .inner::before {
		position: absolute;
		content: "";
		background: url("img/common_deco07.png") center / cover no-repeat;
		width: 168px;
		height: 364px;
		top: -177px;
		left: 54px;
	}

	.price .cont02 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.price .cont02 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.price .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/price_text02.png) center center / cover no-repeat;
		width: 427px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.price .cont02 .cate {
		display: flex;
		gap: 15px;
		justify-content: center;
		margin-top: 45px;
	}

	.price .cont02 .cate p {
		color: #fff;
		line-height: 36px;
		text-align: center;
		font-size: 16px;
		font-weight: bold;
	}

	.price .cont02 .cate p:nth-of-type(1) {
		width: 245px;
		background: #348de2;
	}

	.price .cont02 .cate p:nth-of-type(2) {
		width: 150px;
		background: #0091a2;
	}

	.price .cont02 .text01 {
		margin-top: 28px;
		font-size: 20px;
		text-align: center;
	}

	.price .cont02 .price_box {
		display: flex;
		gap: 20px;
		margin: 45px auto 0;
		width: 1000px;
	}

	.price .cont02 .price_box .item {
		width: 320px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
	}

	.price .cont02 .price_box .item p:nth-of-type(1) {
		font-size: 18px;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.price .cont02 .price_box .item p:nth-of-type(2) {
		font-size: 44px;
		font-weight: bold;
	}

	.price .cont02 .price_box .item p:nth-of-type(2) span {
		font-size: 28px;
		font-weight: bold;
		font-weight: bold;
	}

	.price .cont02 .text03 {
		margin: 20px 100px 0 0;
		line-height: 1;
		text-align: right;
	}

	.price .cont02 .option_box {
		position: relative;
		border: 3px solid #065aaa;
		border-radius: 10px;
		background: #fff;
		width: 1200px;
		padding: 65px 0 28px;
		text-align: center;
		margin-top: 35px;
	}

	.price .cont02 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 204px;
		height: 161px;
		top: 30px;
		right: 35px;
	}

	.price .cont02 .option_box h3 {
		position: relative;
		font-size: 40px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.price .cont02 .option_box h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		width: 53px;
		height: 47px;
		left: -45px;
		top: -40px;
	}

	.price .cont02 .option_box .text02 {
		font-size: 20px;
		margin-top: 28px;
	}

	.price .cont02 .option_box .text04 {
		text-align: right;
		padding-right: 98px;
		margin-top: 10px;
	}

	.price .cont02 .option_box .price_table {
		width: 1000px;
		margin: 30px auto 0;
		border-collapse: separate;
		border-spacing: 10px 10px;
	}

	.price .cont02 .option_box .price_table th,
	.price .cont02 .option_box .price_table td {
		background: #e6f0fa;
		color: #065aaa;
		font-size: 24px;
		font-weight: bold;
		line-height: 65px;
		margin: 0 auto;
	}

	.price .cont02 .option_box .price_table th {
		width: 650px;
	}

	.price .cont02 .option_box .price_table td {
		width: 340px;
	}

	.price .cont02 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 60px auto 0;
	}

	.price .cont02 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.price .cont02 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.price .cont02 .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.price .cont02 .button a:hover::before {
		background: #065aaa;
	}

	/* contact-box */
	.price .contact_box {
		margin-top: 100px;
	}



/* reason
------------------------------------------------------------------------*/

	/* cont01 */
	.reason .cont01 {
		position: relative;
		margin: 100px auto 85px;
	}

	.reason .cont01::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -74px;
		right: 18px;
	}

	.reason .cont01 h2 {
		font-size: 20px;
		font-weight: bold;
		padding-left: 40px;
		position: relative;
		line-height: 2.3;
	}

	.reason .cont01 h2::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 105px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.reason .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 32px;
		color: #065aaa;
		line-height: 1.5;
	}

	.reason .cont01 p {
		margin-top: 30px;
		line-height: 2.33;
		font-size: 18px;
	}


	/* cont02 */
	.reason .cont02 {
		padding: 100px 0;
		background: #e2f1ff;
	}


	.reason .cont02 .reason_box {
		position: relative;
		display: flex;
		margin-top: 80px;
	}

	.reason .cont02 .reason_box:first-of-type {
		margin-top: 0;
	}

	.reason .cont02 .reason_box .text_box {
		position: absolute;
		right: -300px;
		top: 50%;
		transform: translateY(-50%);
		width: 635px;
		height: 330px;
		border-radius: 10px 0 0 10px;
		padding: 0 300px 0 48px;
		background: #fff;
	}

	.reason .cont02 .reason_box:nth-child(even) {
		justify-content: end;
	}

	.reason .cont02 .reason_box:nth-of-type(even) .text_box {
		border-radius: 0 10px 10px 0;
		left: -300px;
		padding: 0 0 0 300px;
	}


	.reason .cont02 .reason_box .text_box h3 {
		position: relative;
		font-size: 26px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 107px;
		line-height: 1.38;
		margin-top: 40px;
	}

	.reason .cont02 .reason_box:nth-of-type(3) .text_box h3,
	.reason .cont02 .reason_box:nth-of-type(5) .text_box h3 {
		margin-top: 50px;
	}


	.reason .cont02 .reason_box .text_box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.reason .cont02 .reason_box .text_box:nth-of-type(1) h3::before {
		background: url(img/reason_no01.png);
		width: 43px;
		height: 48px;
	}

	.reason .cont02 .reason_box:nth-of-type(2) .text_box h3::before {
		background: url(img/reason_no02.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(3) .text_box h3::before {
		background: url(img/reason_no03.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(4) .text_box h3::before {
		background: url(img/reason_no04.png);
		width: 51px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(5) .text_box h3::before {
		background: url(img/reason_no05.png);
		width: 49px;
		height: 50px;
	}


	.reason .cont02 .reason_box:nth-of-type(7) .text_box h3::before {
		background: url(img/reason_no07.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(8) .text_box h3::before {
		background: url(img/reason_no08.png);
		width: 50px;
		height: 50px;
	}


	.reason .cont02 .reason_box .text_box h3::after {
		position: absolute;
		content: "";
		left: 73px;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 66px;
		border-radius: 2px;
		background: #065aaa;
	}

	.reason .cont02 .reason_box .text_box .text01 {
		font-size: 16px;
		margin-top: 20px;
		padding-right: 50px;
	}

	.reason .cont02 .reason_box figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}

	.reason .cont02 .reason06_box {
		background: #fff;
		border-radius: 10px;
		padding: 52px 38px 49px;
		margin-top: 80px;
	}

	.reason .cont02 .reason06_box h3 {
		position: relative;
		font-size: 26px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 107px;
		line-height: 1.38;
	}

	.reason .cont02 .reason06_box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		background: url(img/reason_no06.png);
		width: 50px;
		height: 50px;
	}

	.reason .cont02 .reason06_box h3::after {
		position: absolute;
		content: "";
		left: 73px;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 66px;
		border-radius: 2px;
		background: #065aaa;
	}


	.reason .cont02 .reason06_box .text01 {
		margin-top: 16px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box {
		border: 3px solid #065aaa;
		border-radius: 10px;
		margin-top: 42px;
		padding: 100px 0 80px;
		text-align: center;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 {
		position: relative;
		text-align: center;
		font-size: 35px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02::before {
		position: absolute;
		content: "";
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		right: 115px;
		top: -62px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
		z-index: 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 span::before {
		position: absolute;
		content: "";
		background: url(img/reason_text01.png) center center / cover no-repeat;
		width: 415px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text03 {
		margin-top: 33px;
		font-size: 18px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box {
		display: flex;
		justify-content: center;
		margin-top: 42px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before,
	.reason .cont02 .reason06_box .reason06_sub_box .img_box .after {
		position: relative;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%) scale(1.5);
		z-index: 1;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::after {
		position: absolute;
		content: "";
		background: url(img/before_text.png) no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(1.4);
		transform-origin: left top;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .after::after {
		position: absolute;
		content: "";
		background: url(img/after_text.png) no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(1.4);
		transform-origin: left top;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%) scale(1.5);
		z-index: 1;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button {
		position: relative;
		width: 470px;
		height: 50px;
		text-align: center;
		margin: 60px auto 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a span {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a:hover::before {
		background: #065aaa;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box {
		height: 400px;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button {
		position: relative;
		width: 378px;
		height: 45px;
		text-align: center;
		margin: 40px 0 0;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 45px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a:hover {
		background: #fff;
		color: #065aaa;
		border: 1px solid #065aaa;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a:hover::before {
		background: #065aaa;
	}

	@media screen and (min-width: 1800px) {
		.reason .cont02 .reason_box .text_box {
		border-radius: 10px;
		padding: 0 100px;
		right: -200px;
		}

		.reason .cont02 .reason_box:nth-of-type(even) .text_box {
		border-radius: 10px;
		padding: 0 100px;
		left: -200px;
		}
	}

	/* cont03 */
	.reason .cont03 {
		position: relative;
		padding: 120px 0 80px;
	}

	.reason .cont03::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -50px;
		left: 20px;
	}

	.reason .cont03::after {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center center / cover no-repeat;
		right: 10px;
		top: -75px;
		width: 152px;
		height: 348px;
	}


	.reason .cont03 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.reason .cont03 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.reason .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/reason_text02.png) center center / cover no-repeat;
		width: 570px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.reason .cont03 .text01 {
		font-size: 20px;
		text-align: center;
		line-height: 1.8;
		margin-top: 40px;
	}



	.reason .cont03 table {
		border-collapse: separate;
		margin-top: 50px;
	}

	.reason .cont03 table th {
		vertical-align: middle;
	}

	.reason .cont03 table thead th.eclean {
		position: relative;
		background: #065aaa;
		color: #fff;
		width: 490px;
		height: 82px;
		border: 6px solid #065aaa;
		border-radius: 10px 10px 0 0;
		font-weight: bold;
		font-size: 30px;
	}

	.reason .cont03 table thead th.eclean::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -28px;
		right: 22px;
		width: 89px;
		height: 103px;
	}

	.reason .cont03 table tbody th {
		text-align: left;
		font-size: 22px;
		font-weight: bold;
		color: #fff;
		background: #348de2;
		width: 267px;
		height: 84px;
		border-bottom: 1px solid #b0b0b0;
		box-sizing: border-box;
		padding-left: 30px;
	}


	.reason .cont03 table tbody tr td.eclean {
		border-bottom: 1px solid #b0b0b0;
		border-left: 6px solid #065aaa;
		border-right: 6px solid #065aaa;
		width: 490px;
		height: 84px;
		box-sizing: border-box;
		background: #e2f1ff;
		font-size: 23px;
		font-weight: bold;
		color: #065aaa;
		vertical-align: middle;
		padding-left: 37px;
	}

	.reason .cont03 table tbody tr:last-of-type td.eclean {
		border-bottom: 6px solid #065aaa;
	}

	.reason .cont03 table thead th.other {
		vertical-align: bottom;
	}

	.reason .cont03 table thead th.other span {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 444px;
		height: 60px;
		background: #c4c4c4;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
	}

	.reason .cont03 table tbody tr td.other {
		border-bottom: 1px solid #b0b0b0;
		background: #f7f7f7;
		width: 444px;
		height: 84px;
		box-sizing: border-box;
		font-size: 22px;
		vertical-align: middle;
		padding-left: 42px;
	}



	/* cont04 */
	.reason p.cont04 {
		position: relative;
		text-align: center;
		font-weight: bold;
		font-size: 28px;
		height: 234px;
		line-height: 1.64;
		padding: 48px 0 52px;
		box-sizing: border-box;
	}

	.reason p.cont04 span {
		font-weight: bold;
		font-size: 20px;
		color: #065aaa;
	}

	.reason p.cont04::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: 7px;
		right: 44px;
		width: 100px;
		height: 116px;
	}


	.reason p.cont04::after {
		position: absolute;
		content: "";
		background: url(img/common_bg_01.png);
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		height: 234px;
		z-index: -1;
	}


	/* contact-box */
	.reason .contact_box {
		margin-top: 100px;
	}

	@media screen and (max-width: 1240px) {
		.reason p.cont04::after {
		width: 1240px;
		}
	}



/* aircon-install
------------------------------------------------------------------------*/

	/* cont01 */
	.aircon-install .cont01 {
		position: relative;
		padding-top: 622px;
		margin: 100px auto;
	}

	.aircon-install .cont01 .text_box01 {
		position: absolute;
		left: 620px;
		top: 50%;
		transform: translateY(-50%);
		padding: 25px 0 30px 30px;
		box-sizing: border-box;
	}

	.aircon-install .cont01 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.7;
		padding-left: 30px;
		width: fit-content;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
	}

	.aircon-install .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 80px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.aircon-install .cont01 .text01 {
		margin-top: 35px;
		line-height: 2.5;
	}

	.aircon-install .cont01 .button {
		margin-top: 38px;
	}

	.aircon-install .cont01 figure {
		position: absolute;
		left: -300px;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		overflow: hidden;
		box-sizing: border-box;
	}

	@media screen and (min-width: 1800px) {
		.aircon-install .cont01 figure {
		border-radius: 10px;
		border-left: 3px solid #065aaa;
		}
	}

	/* cont02 */
	.aircon-install .cont02 {
		background: #e2f1ff;
		padding: 120px 0 100px;
	}


	.aircon-install .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 33px;
		font-weight: bold;
		line-height: 1;
		color: #082a3a;
		width: fit-content;
		margin: 0 auto;
	}

	.aircon-install .cont02 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco10.png") no-repeat;
		width: 254px;
		height: 192px;
		top: -150px;
		left: -350px;
	}

	.aircon-install .cont02 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #333;
		padding-bottom: 24px;
	}

	.aircon-install .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/aircon-install_text01.png) center center / cover no-repeat;
		width: 557px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.aircon-install .cont02 .text01 {
		font-size: 20px;
		margin-top: 35px;
		text-align: center;
	}

	.aircon-install .cont02 .box {
		display: flex;
		margin-top: 43px;
		gap: 30px;
	}

	.aircon-install .cont02 .box .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
	}

	.aircon-install .cont02 .box .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		top: 208.5px;
		right: 21px;
		z-index: 1;
	}

	.aircon-install .cont02 .box .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco01.png") no-repeat;
	}

	.aircon-install .cont02 .box .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco02.png") no-repeat;
	}

	.aircon-install .cont02 .box .item:nth-of-type(3)::before {
		background: url("img/aircon-install_deco03.png") no-repeat;
	}

	.aircon-install .cont02 .box .item .text_box {
		margin-top: 26px;
	}

	.aircon-install .cont02 .box .item .text_box h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.aircon-install .cont02 .box .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.aircon-install .cont02 .box .item .text_box .text02 {
		margin-top: 19px;
		font-size: 16px;
		letter-spacing: .7px;
	}

	.aircon-install .cont02 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.aircon-install .cont02 .box .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}

	.aircon-install .cont02 .flow_box {
		text-align: center;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		margin-top: 60px;
	}

	.aircon-install .cont02 .flow_box h3 {
		position: relative;
		font-size: 28px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 60px;
	}

	.aircon-install .cont02 .flow_box h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		right: 208px;
		top: -70px;
	}

	.aircon-install .cont02 .flow_box .text02 {
		margin-top: 35px;
	}

	.aircon-install .cont02 .flow_box .item {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px 18px;
		margin: 35px 0 43px;
	}

	.aircon-install .cont02 .flow_box .item p {
		position: relative;
		width: 230px;
		height: 55px;
		line-height: 55px;
		font-weight: bold;
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #e2f1ff;
		box-sizing: border-box;
	}

	.aircon-install .cont02 .flow_box .item p::before {
		position: absolute;
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: -9px;
		top: 50%;
		transform: translateY(calc(-50% - 5.5px));
		bottom: 0;
		margin: auto 0;
		width: 8px;
		height: 15px;
	}

	.aircon-install .cont02 .flow_box .item p:last-of-type::before {
		display: none;
	}

	.aircon-install .cont02 .flow_box .item p:nth-of-type(1) {
		line-height: 1.3;
		padding: 9px 0;
	}

	.aircon-install .cont02 .flow_box .item p:nth-of-type(5) {
		margin-left: 18px;
	}

	.aircon-install .cont02 .flow_box .item p span {
		font-size: 11px;
		font-weight: bold;
		display: block;
	}


	/* cont03 */
	.aircon-install .cont03 {
		position: relative;
		padding: 120px 0 100px;
	}

	.aircon-install .cont03::before {
		position: absolute;
		content: "";
		background: url("img/common_deco06.png") no-repeat;
		transform: scaleX(-1);
		width: 152px;
		height: 348px;
		top: -84px;
		left: 21px;
	}

	.aircon-install .cont03::after {
		position: absolute;
		content: "";
		background: url("img/common_deco12.png") no-repeat;
		width: 233px;
		height: 184px;
		top: -25px;
		right: 30px;
	}

	.aircon-install .cont03 h2 {
		text-align: center;
		font-size: 33px;
		font-weight: bold;
		line-height: 1;
		color: #082a3a;
	}

	.aircon-install .cont03 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #333;
		padding-bottom: 24px;
	}

	.aircon-install .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/aircon-install_text02.png) center center / cover no-repeat;
		width: 237px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.aircon-install .cont03 .text01 {
		font-size: 20px;
		margin-top: 40px;
		text-align: center;
	}


	.aircon-install .cont03 .about_box01 {
		display: flex;
		gap: 42px;
	}

	.aircon-install .cont03 .about_box01 .item {
		position: relative;
		background: #fff;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		width: 577px;
		box-sizing: border-box;
		margin-top: 45px;
	}

	.aircon-install .cont03 .about_box01 .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		z-index: 1;
		top: -17px;
		left: 22px;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco04.png") no-repeat;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco05.png") no-repeat;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) {
		border: 3px solid #065aaa;
	}


	.aircon-install .cont03 .about_box01 .item h3 {
		font-size: 28px;
		color: #fff;
		line-height: 68px;
		font-weight: bold;
		background: #348de2;
		border-radius: 6px 6px 0 0;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) h3 {
		background: #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .price_box {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 35px 23px;
		margin: 60px 76px 36px;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .cate {
		width: 145px;
		line-height: 45px;
		border: 2px solid #348de2;
		color: #348de2;
		font-weight: bold;
		font-size: 20px;
		box-sizing: border-box;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) .price_box .cate {
		color: #065aaa;
		border: 2px solid #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .price_text {
		font-weight: bold;
		font-size: 60px;
		color: #082a4a;
		line-height: 1;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .price_text span {
		font-weight: bold;
		font-size: 36px;
	}


	.aircon-install .cont03 .about_box01 .item .text02 {
		margin: 0 60px 36px;
		font-size: 20px;
		text-align: left;
	}

	.aircon-install .cont03 .about_box01 .item .button {
		position: relative;
		width: 460px;
		margin: 35px auto 47px;
		text-align: left;
		line-height: 1;
	}

	.aircon-install .cont03 .about_box01 .item .button a {
		position: relative;
		display: inline-block;
		color: #348de2;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box01 .item .button a::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 0;
		height: 2px;
		background: #adcbf1;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) .button a::before {
		background: #a4b8d7;
	}

	.aircon-install .cont03 .about_box01 .item .button a:hover::before {
		animation: line 0.3s forwards;
	}

	@keyframes line {
		from {
		width: 0;
		}

		to {
		width: calc(100% + 25px);
		}
	}


	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) .button a {
		color: #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .button a::after {
		position: absolute;
		content: ">>";
		right: -25px;
		bottom: 0;
	}

	.aircon-install .cont03 .text03 {
		line-height: 1;
		text-align: right;
		margin-top: 22px;
	}

	.aircon-install .cont03 .about_box02 {
		margin-top: 40px;
		text-align: center;
		border: 3px solid #065aaa;
		background: #e2f1ff;
		border-radius: 10px;
		padding: 55px 50px;
	}

	.aircon-install .cont03 .about_box02 h3 {
		position: relative;
		font-size: 32px;
		font-weight: bold;
		width: fit-content;
		margin: 0 auto;
		line-height: 1;
	}

	.aircon-install .cont03 .about_box02 h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -41px;
		top: -36px;
	}

	.aircon-install .cont03 .about_box02 .text02 {
		margin-top: 20px;
	}

	.aircon-install .cont03 .about_box02 .box {
		display: flex;
		gap: 15px;
		justify-content: center;
		margin-top: 30px;
	}

	.aircon-install .cont03 .about_box02 .box .item {
		position: relative;
		width: 354px;
		height: 230px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.aircon-install .cont03 .about_box02 .item::before {
		position: absolute;
		content: "";
		width: 70px;
		height: 70px;
		z-index: 1;
		top: -16px;
		left: 22px;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco06.png") no-repeat;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco07.png") no-repeat;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(3)::before {
		background: url("img/aircon-install_deco08.png") no-repeat;
	}


	.aircon-install .cont03 .about_box02 .box .item .ttl01 {
		font-size: 20px;
		color: #fff;
		line-height: 40px;
		font-weight: bold;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
	}

	.aircon-install .cont03 .about_box02 .box .item .price_text {
		font-size: 42px;
		font-weight: bold;
		line-height: 1;
		margin-top: 31px;
	}

	.aircon-install .cont03 .about_box02 .box .item .price_text span {
		font-size: 38px;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box02 .box .item .text04 {
		font-size: 12px;
		text-align: left;
		margin: 12px 32px 0;
	}

	.aircon-install .cont03 .about_box02 .text05 {
		text-align: right;
		line-height: 1;
		margin-top: 10px;
		font-size: 14px;
	}

	.aircon-install .cont03 .about_box03 {
		margin-top: 70px;
		display: flex;
		gap: 34px;
		text-align: center;
	}

	.aircon-install .cont03 .about_box03 .item {
		position: relative;
		background: #fff;
		border: 3px solid #00bcc3;
		border-radius: 10px;
		box-sizing: border-box;
		width: 580px;
		height: 500px;
	}

	.aircon-install .cont03 .about_box03 .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		z-index: 1;
		top: -18px;
		left: 22px;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco09.png") no-repeat;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco10.png") no-repeat;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) {
		border: 3px solid #0091a2;
	}

	.aircon-install .cont03 .about_box03 .item h3 {
		font-size: 24px;
		color: #fff;
		line-height: 68px;
		font-weight: bold;
		background: #00bcc3;
		border-radius: 6px 6px 0 0;
		padding-left: 70px;
		letter-spacing: 1px;

	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) h3 {
		background: #0091a2;
		padding-left: 105px;
	}

	.aircon-install .cont03 .about_box03 .item .text02 {
		font-size: 36px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1.4;
		margin-top: 45px;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 {
		font-size: 34px;
	}

	.aircon-install .cont03 .about_box03 .item .text02 .span01 {
		font-size: 42px;
		font-weight: bold;
		color: #00bcc3;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 .span01 {
		color: #0091a2;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 .span01 span {
		color: #082a4a;
		font-size: 18px;
		font-weight: bold;
		padding-left: 3px;
	}

	.aircon-install .cont03 .about_box03 .item .text04 {
		margin: 25px 58px 0;
		font-size: 20px;
		text-align: left;
	}

	.aircon-install .cont03 .about_box03 .item .button {
		position: relative;
		width: 455px;
		height: 68px;
		text-align: center;
		margin: 38px auto 0;
	}

	.aircon-install .cont03 .about_box03 .item .button a {
		display: block;
		background: #fff;
		border: 2px solid #00bcc3;
		line-height: 68px;
		border-radius: 14px;
		font-weight: bold;
		font-size: 20px;
		color: #00bcc3;
		transition: background-color 0.4s ease, color 0.4s ease;
	}

	.aircon-install .cont03 .about_box03 .item .button a:hover {
		background: #0091a2;
		color: #fff;
	}

	.aircon-install .cont03 .about_box03 .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #00bcc3;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.aircon-install .cont03 .about_box03 .item .button a:hover::before {
		background: #fff;
	}


	/* cont04 */
	.aircon-install .cont04 {
		padding: 90px 0;
		background: url(img/common_bg_01.png);
		text-align: center;
	}

	.aircon-install .cont04 h2 {
		position: relative;
		font-size: 36px;
		font-weight: bold;
		width: fit-content;
		margin: 0 auto;
		line-height: 1;
	}

	.aircon-install .cont04 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -45px;
		top: -40px;
	}

	.aircon-install .cont04 h2::after {
		position: absolute;
		content: "";
		background: url("img/common_deco09.png") no-repeat;
		width: 263px;
		height: 215px;
		top: -145px;
		right: -291px;
	}


	.aircon-install .cont04 .text01 {
		line-height: 1.8;
		margin-top: 34px;
		font-weight: bold;
		font-size: 20px;
	}

	.aircon-install .cont04 .text01:first-of-type {
		margin-top: 50px;
	}

	.aircon-install .cont04 .text01 span {
		font-weight: bold;
		font-size: 22px;
		color: #065aaa;
	}

	.aircon-install .cont04 .button {
		margin-top: 55px;
	}


	/* cont05 */
	.aircon-install .cont05 {
		padding: 122px 0 150px;
	}

	.aircon-install .cont05 h2 {
		text-align: center;
		font-size: 44px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.aircon-install .cont05 h2 span {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 24px;
	}

	.aircon-install .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url("img/aircon-install_text03.png") center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 12px));
		z-index: -1;
	}

	.aircon-install .cont05 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 120px;
	}

	.aircon-install .cont05 .box .text_box {
		margin-top: -35px;
	}

	.aircon-install .cont05 .box figure {
		position: absolute;
		left: -300px;
		top: -50px;
	}

	.aircon-install .cont05 .box figure img {
		border-radius: 15px;
	}

	.aircon-install .cont05 .area {
		width: 565px;
		height: 328px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 50px;
	}

	.aircon-install .cont05 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.aircon-install .cont05 .area .area_list {
		text-align-last: left;
		height: 216px;
		overflow-y: auto;
		margin: 33px 10px 33px 33px;
		padding-right: 33px;
	}

	.aircon-install .cont05 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
	}

	.aircon-install .cont05 .area .area_list li {
		font-size: 16px;
		line-height: 1;
	}
	.aircon-install .cont05 .area .area_list li a:hover{
		color: #7db4ee;
		text-decoration: underline;
		opacity: 1;
	}

	.aircon-install .cont05 .area .area_list>li {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}



/* works-archive
------------------------------------------------------------------------*/

	/* cont01 */
	.works-archive .cont01 {
		display: flex;
		justify-content: center;
		margin-top: 80px;
		gap: 28px;
	}

	.works-archive .cont01 .btn {
		width: 382px;
		line-height: 72px;
		box-sizing: border-box;
	}

	.works-archive .cont01 .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 20px;
		text-align: center;
		border-radius: 10px;
	}

	.works-archive .cont01 .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.works-archive .cont01 .btn:nth-of-type(1) a {
		background: #065aaa;
		border: 2px solid #065aaa;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a {
		background: #0091a2;
		border: 2px solid #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a {
		background: #348de2;
		border: 2px solid #348de2;
	}

	.works-archive .cont01 .btn:nth-of-type(1) a:hover {
		background: #fff;
		color: #065aaa;
	}

	.works-archive .cont01 .btn:nth-of-type(1) a:hover::before {
		background: #065aaa;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a:hover {
		background: #fff;
		color: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a:hover::before {
		background: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a:hover {
		background: #fff;
		color: #348de2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a:hover::before {
		background: #348de2;
	}



	.works-archive .contact_box {
		margin-top: 100px;
	}


	.works-archive .cont02{
		width: 1380px;
		margin: 0 auto;
	}

	.works-archive .cont02 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.works-archive .cont02 h3:before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.works-archive .cont02 .category_01,
	.works-archive .cont02 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 20px;
	}

	.works-archive .cont02 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.works-archive .cont02 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.works-archive .cont02 .text02 {
		margin-top: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.works-archive .cont02 .box {
		display: flex;
		flex-wrap: wrap;
		gap: 60px;
		margin: 90px auto 0;
	}

	.works-archive .cont02 .item {
		width: 660px;
		position: relative;
	}

	.works-archive .cont02 .box .item a {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.works-archive .cont02 .img_box {
		display: flex;
	}

	.works-archive .cont02 .box .img_box figure {
		position: relative;
	}

	.works-archive .cont02 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.works-archive .cont02 .img_box figure img{
		width: 330px;
	}

	.works-archive .cont02 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.works-archive .cont02 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.works-archive .cont02 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .p_button_box {
		display: flex;
		justify-content: center;
		gap: 0 15px;
		margin: 90px auto 0;
	}

	.works-archive .cont02 .p_button a {
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		color: #065aaa;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid #065aaa;
		box-sizing: border-box;
	}

	.works-archive .cont02 .p_button.current {
		display: block;
		width: 40px;
		height: 40px;
		background: #065aaa;
		border-radius: 50%;
		color: #fff;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid #065aaa;
		box-sizing: border-box;
		pointer-events: none;
	}

	@media screen and (max-width: 1480px) {
		.works-archive .cont02{
			width: 1180px;
		}
		.works-archive .cont02 .box {
			gap: 40px 20px;
		}
		.works-archive .cont02 .item {
			width: calc(50% - 10px);
		}
		.works-archive .cont02 .img_box figure {
			width: 290px;
		}
	}



/* works-single
------------------------------------------------------------------------*/

	.works-single .cont01 h2 {
		position: relative;
		font-weight: bold;
		font-size: 26px;
		line-height: 1;
		background: #e2f1ff;
		color: #065aaa;
		padding: 18px 0 18px 39px;
		border-radius: 10px;
		margin-top: 100px;
	}

	.works-single .cont01 h2::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 36px;
		background: #065aaa;
		border-radius: 3px;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .cate01,
	.works-single .cont01 .cate02 {
		display: inline-block;
		line-height: 28px;
		color: #fff;
		font-weight: bold;
		margin-top: 30px;
		font-size: 14px;
	}

	.works-single .cont01 .cate01 {
		padding: 0 30px;
		background: #0091a2;
	}

	.works-single .cont01 .cate02 {
		padding: 0 25px;
		background: #348de2;
		margin-left: 10px;
	}

	.works-single .cont01 dl {
		display: grid;
		grid-template-columns: 162px 1fr;
		align-items: center;
		margin-top: 18px;
	}

	.works-single .cont01 dl dt,
	.works-single .cont01 dl dd {
		width: auto;
	}

	.works-single .cont01 dl dt {
		position: relative;
		font-weight: bold;
		color: #065aaa;
		padding-left: 33px;
		box-sizing: border-box;
	}

	.works-single .cont01 dl dt::before {
		position: absolute;
		content: "";
		top: 50%;
		transform: translateY(-50%);
	}


	.works-single .cont01 dl dt.day::before {
		background: url("img/works-single_deco01.png") no-repeat;
		left: 2px;
		width: 17px;
		height: 18px;
	}

	.works-single .cont01 dl dt.work::before {
		background: url("img/works-single_deco02.png") no-repeat;
		left: 2px;
		width: 16px;
		height: 20px;
	}

	.works-single .cont01 dl dt.time::before {
		background: url("img/works-single_deco03.png") no-repeat;
		left: 0;
		width: 20px;
		height: 19px;
	}

	.works-single .cont01 dl dt.type::before {
		background: url("img/works-single_deco04.png") no-repeat;
		left: 1px;
		width: 19px;
		height: 12px;
	}

	.works-single .cont01 dl dt.maker::before {
		background: url("img/works-single_deco05.png") no-repeat;
		left: 1px;
		width: 19px;
		height: 20px;
	}


	.works-single .cont01 dl dd {
		position: relative;
		font-weight: bold;
		padding-left: 15px;
		box-sizing: border-box;
	}

	.works-single .cont01 dl dd::before {
		position: absolute;
		content: ":";
		font-weight: bold;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .text01 {
		margin-top: 25px;
	}

	.works-single .cont01 .img_box {
		display: flex;
		margin-top: 50px;
		position: relative;
	}

	.works-single .cont01 .img_box figure {
		width: 600px;
		height: 400px;
		overflow: hidden;
	}

	.works-single .cont01 .img_box figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.works-single .cont01 .img_box .before {
		position: relative;
	}

	.works-single .cont01 .img_box .after {
		position: relative;
	}

	.works-single .cont01 .img_box .before {
		border: 1px solid #065aaa;
	}
	.works-single .cont01 .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(1.4);
		transform-origin: left top;
	}

	.works-single .cont01 .img_box .after {
		border: 1px solid #348de2;
	}
	.works-single .cont01 .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(1.4);
		transform-origin: left top;
	}

	.works-single .cont01 .img_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: 592px;
		transform: translateY(-50%) scale(1.3);
		transform-origin: center;
		z-index: 1;
	}

	.works-single .cont01 .h3_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 23px;
		line-height: 36px;
		margin: 36px 0 30px 0;
	}

	.works-single .cont01 .h3_box h3::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 36px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .h3_box h3::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		background: #065aaa;
		bottom: -15px;
		left: 0;
	}

	.works-single .cont01 .h3_box .text02 {
		margin-top: 32px;
	}

	.works-single .cont01 .h4_box h4 {
		position: relative;
		font-size: 22px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 15px;
		line-height: 25px;
		margin: 38px 0 15px 0;
	}

	.works-single .cont01 .h4_box h4::before {
		position: absolute;
		content: "";
		width: 5px;
		height: 25px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .h5_box h5 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 21px;
		line-height: 1;
		margin: 40px 0 20px 0;
	}

	.works-single .cont01 .h5_box h5::before {
		position: absolute;
		content: "";
		width: 16px;
		height: 16px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}


	/* cot02 */
	.works-single .cont02 {
		display: flex;
		margin-top: 88px;
		padding: 0 16px;
		box-sizing: border-box;
	}

	.works-single .cont02 .prev_box,
	.works-single .cont02 .next_box {
		position: relative;
		width: 560px;
		border-radius: 10px;
		border: 2px solid #065aaa;
		box-sizing: border-box;
		background: #e2f1ff;
	}

	.works-single .cont02 .prev_box a,
	.works-single .cont02 .next_box a {
		position: relative;
	}

	.works-single .cont02 .next_box {
		margin-left: auto;
		border: 2px solid #348de2;
	}

	.works-single .cont02 .prev_box a::before {
		position: absolute;
		content: "";
		width: 35px;
		height: 35px;
		background: url("img/prev_next_btn01.png") no-repeat;
		left: -17.5px;
		top: 190px;
	}

	.works-single .cont02 .next_box a::before {
		position: absolute;
		content: "";
		width: 35px;
		height: 35px;
		background: url("img/prev_next_btn01.png") no-repeat;
		transform: rotate(-180deg);
		right: -17.5px;
		top: 190px;
	}

	.works-single .cont02 h3 {
		line-height: 38px;
		background: #065aaa;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		border-radius: 6px 6px 0 0;
	}

	.works-single .cont02 .next_box h3 {
		background: #348de2;
	}

	.works-single .cont02 .ttl01 {
		line-height: 1;
		font-size: 20px;
		color: #082a4a;
		font-weight: bold;
		margin: 30px 30px 0;
	}

	.works-single .cont02 .cate01,
	.works-single .cont02 .cate02 {
		color: #fff;
		font-weight: bold;
		font-size: 13px;
		line-height: 22px;
		display: inline-block;
		border-radius: 3px;
		margin-top: 20px;
	}

	.works-single .cont02 .cate01 {
		padding: 0 24px;
		background: #0091a2;
		margin-left: 30px;
	}

	.works-single .cont02 .cate02 {
		padding: 0 22px;
		margin-left: 8px;
		background: #348de2;
	}

	.works-single .cont02 .date {
		display: inline-block;
		margin-left: 5px;
		font-size: 14px;
		line-height: 22px;
		margin-top: 20px;
	}

	.works-single .cont02 .img_box {
		display: flex;
		justify-content: center;
		margin: 25px auto 30px;
		position: relative;
	}

	.works-single .cont02 .img_box figure {
		position: relative;
	}

	.works-single .cont02 .img_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 1;
	}

	.works-single .cont02 .img_box figure img {
		width: 249px;
	}

	.works-single .cont02 .img_box .before img {
		border: 1px solid #065aaa;
	}
	.works-single .cont02 .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-single .cont02 .img_box .after img {
		border: 1px solid #348de2;
	}
	.works-single .cont02 .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}


	/* cont03 */
	.works-single .cont03 h2 {
		position: relative;
		font-weight: bold;
		font-size: 26px;
		line-height: 1;
		background: #e2f1ff;
		color: #065aaa;
		padding: 18px 0 18px 39px;
		border-radius: 10px;
		margin-top: 100px;
	}

	.works-single .cont03 h2::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 36px;
		background: #065aaa;
		border-radius: 3px;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont03 .cate_box {
		display: flex;
		justify-content: space-between;
		margin-top: 50px;
	}

	.works-single .cont03 .cate_box .btn {
		width: 382px;
		line-height: 72px;
		box-sizing: border-box;
	}

	.works-single .cont03 .cate_box .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 20px;
		text-align: center;
		border-radius: 10px;
	}

	.works-single .cont03 .cate_box .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(1) a {
		background: #065aaa;
		border: 2px solid #065aaa;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(2) a {
		background: #0091a2;
		border: 2px solid #0091a2;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(3) a {
		background: #348de2;
		border: 2px solid #348de2;
	}

	.works-single .contact_box {
		margin-top: 100px;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(1) a:hover {
		background: #fff;
		color: #065aaa;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(1) a:hover::before {
		background: #065aaa;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(2) a:hover {
		background: #fff;
		color: #0091a2;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(2) a:hover::before {
		background: #0091a2;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(3) a:hover {
		background: #fff;
		color: #348de2;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(3) a:hover::before {
		background: #348de2;
	}



/* faq
------------------------------------------------------------------------*/
.faq .cont01,
.faq .cont02,
.faq .cont03 {
	box-sizing: border-box;
	margin: 120px auto 0;
	width: 1000px;
}
.faq .cont03 {
	margin: 120px auto;
}
.faq .cont01 h2,
.faq .cont02 h2,
.faq .cont03 h2 {
	position: relative;
	font-size: 22px;
	font-weight: bold;
	color: #082a4a;
	padding-left: 55px;
	padding-bottom: 25px;
	line-height: 1.38;
}
.faq .cont01 h2:before,
.faq .cont02 h2:before,
.faq .cont03 h2:before {
	position: absolute;
	content: "";
	left: 0;
	top: -2px;
	width: 42px;
	height: 29px;
	background: url(img/key_deco01.png) center / contain no-repeat;
}
.faq .cont01 .box,
.faq .cont02 .box,
.faq .cont03 .box {
	padding: 30px 40px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:first-of-type,
.faq .cont02 .box:first-of-type,
.faq .cont03 .box:first-of-type {
	border-top: 1px solid var(--main-color);
}
.faq .cont01 .box span,
.faq .cont02 .box span,
.faq .cont03 .box span {
	position: absolute;
	top: 38px;
	right: 40px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span,
.faq .cont02 .box.active span,
.faq .cont03 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before,
.faq .cont02 .box span::before,
.faq .cont03 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after,
.faq .cont02 .box span::after,
.faq .cont03 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after,
.faq .cont02 .box.active span::after,
.faq .cont03 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p,
.faq .cont02 .box p,
.faq .cont03 .box p {
	padding-left: 40px;
	position: relative;
	font-weight: bold;
}
.faq .cont01 .box .qus::before,
.faq .cont02 .box .qus::before,
.faq .cont03 .box .qus::before {
	content: 'Q';
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
}
.faq .cont01 .box .qus,
.faq .cont02 .box .qus,
.faq .cont03 .box .qus {
	font-size: 18px;
	transition: all .3s;
}
.faq .cont01 .box.active .qus,
.faq .cont02 .box.active .qus,
.faq .cont03 .box.active .qus {
	color: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box .ans,
.faq .cont02 .box .ans,
.faq .cont03 .box .ans {
	padding-top: 15px;
	display: none;
}
.faq .cont02 .cancel-table {
	width: 400px;
	margin: 20px 0 20px 40px;
	border-collapse: collapse;
}
.faq .cont02 .cancel-table th,
.faq .cont02 .cancel-table td {
	border: 1px solid #ddd;
	padding: 10px;
	font-size: 16px;
}
.faq .cont02 .cancel-table th {
	background: #f5f5f5;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 28px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 16px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.company table tr {
	border-top: 1px solid #fff;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	width: 250px;
	padding: 23px 0 20px 30px;
	font-weight: bold;
	vertical-align: middle;
	position: relative;
}
.company table th:before {
	content: "";
	width: 2px;
	height: 20px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.company table td {
	padding: 23px 0 20px;
	vertical-align: middle;
}

/* cont01 */
.company .cont01 {
	margin: 120px auto;
}
.company .cont01 .flex {
	display: flex;
	/* align-items: center; */
	padding-top: 50px;
}
.company .cont01 .flex .text_box {
	padding-left: 50px;
	width: 550px;
}
.company .cont01 .flex .text_box h3 {
	font-size: 22px;
	padding-bottom: 25px;
}
.company .cont01 .flex .text_box .text01 span{
	display: block;
    margin-block: 15px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 24px;
	margin-top: 40px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 16px;
	font-weight: bold;
}
.company .cont01 .img {
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}


/* cont02 */
.company .cont02 {
	margin: 120px auto;
	padding: 120px 0;
	background: #e2f1ff;
}
.company .cont02 .inner {
	width: 1000px;
}


/* cont02 */
.company .cont03 {
	width: 1000px;
	/* margin: 100px auto; */
	margin: 120px auto 0;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}



/*blog共通項目
--------------------------------------------------------------------------*/
.blog .flex {
	display: flex;
	justify-content: flex-start;
	margin: 120px auto;
}
.blog .flex .left_box{
	flex-shrink: 1;
	width: 800px;
	margin-right: 30px;
}
.blog .flex .side {
	width: 370px;
	flex-shrink: 0;
	margin-top: -5px;
}
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 60px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	margin-left: 15px;
	font-size: 14px;
	width: 205px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	position: relative;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 1;
	box-sizing: border-box;
	padding-top: 6px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1.2;
	font-size: 12px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


/*blog_archive
------------------------------------------------------------------------*/
.blog_archive .cont01 .cont:nth-of-type(1) {
	margin-top: 0;
}
.blog_archive .cont01 .cont {
	border-bottom: 1px solid var(--main-color);
	margin-top: 30px;
}
.blog_archive .cont01 .cont a{
	display: block;
	box-sizing: border-box;
	padding: 0 0 30px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.blog_archive .cont01 .cont .img {
	flex-shrink: 0;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
	border-radius: 10px;
}
.blog_archive .cont01 .cont .img img {
	border-radius: 10px;
}
.blog_archive .cont01 .cont .text_box {
	width: 440px;
	padding-left: 30px;
}
.blog_archive .cont01 .cont h2 {
	font-size: 18px;
}
.blog_archive .cont01 .cont .text_box .cate_box {
	margin: 15px 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 100px;
	padding: 7px 15px;
	text-align: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .date {
	font-size: 14px;
	line-height: 1;
}
.blog_archive .cont01 .cont .text_box .text {
	line-height: 1.8;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}*/
.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}

.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}



/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
	width: 1000px;
	margin: 70px auto 0;
}
.contact .cont01 .tel-box {
	padding: 40px 0 35px;
	border-top: 1px solid var(--main-dark-color);
	/* border-bottom: 1px solid var(--main-color); */
}
.contact .cont01 .line-box {
	padding: 60px 0 65px;
	border-top: 1px solid var(--main-dark-color);
	border-bottom: 1px solid var(--main-dark-color);
	position: relative;
}
.contact .cont01 .line-box::after {
	content: "";
	background: url(img/contact-qr.jpg) no-repeat;
	background-size: 150px;
	width: 150px;
	height: 150px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 240px;
}
.contact .cont01 h2{
	font-size: 20px;
	font-weight: bold;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	display: flex;
	align-items: center;
	margin-top: 15px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
	padding-right: 20px;
	pointer-events: none;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	font-size: 18px;
	line-height: 1;
	padding: 20px 75px 20px 55px;
	background: url(img/contact-line.png) no-repeat center left;
}


/* cont02 */
.contact .cont02 {
	width: 1000px;
	margin: 40px auto 100px;
}
.contact .cont02 h2{
	font-size: 20px;
	font-weight: bold;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.contact .cont02 table{
	width: 1000px;
	margin: 40px auto 0;
}
.contact .cont02 table tr {
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table th{
	width: 265px;
	text-align: left;
	vertical-align: middle;
	box-sizing: border-box;
	font-weight: bold;
	padding: 30px 0 30px 30px;
	position: relative;
}
.contact .cont02 table th:before{
	content: "";
	width: 2px;
	height: 20px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	float: right;
	padding: 7px 15px;
	line-height: 1;
	position: absolute;
	/* top: 50%; */
	top: 44px;
	right: 0;
	/* transform: translateY(-50%); */
}
/* .contact .cont02 tr.address-contact th {
	vertical-align: top;
	padding-top: 48px;
}
.contact .cont02 tr.address-contact th span {
	top: 45px;
	transform: none;
} */
.contact .cont02 table td{
	vertical-align: middle;
	padding: 30px 0 30px 25px;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 60px;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px 30px;
	border: none !important;
	background: #e2f1ff;
	border-radius: 5px !important;
}
.contact .cont02 tr.address-contact input {
	margin-bottom: 10px !important;
}
.contact .cont02 tr.address-contact input:first-of-type {
	margin-right: 20px;
}
.contact .cont02 tr.address-contact input:first-of-type,
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 210px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-bottom: 0 !important;
}

.contact .cont02 table .hope-tr .hope-title {
	margin-block: 10px;
}
.contact .cont02 table .hope-tr .hope-row {
	display: flex;
	align-items: center;
	gap: 30px;
}
.contact .cont02 table .hope-tr .hope-row span {
	font-size: 16px;
}
.contact .cont02 table .hope-tr .hope-row .month,
.contact .cont02 table .hope-tr .hope-row .day {
	width: 90px;
	max-width: 100px;
	flex: 0 0 100px;
}
.contact .cont02 table .hope-tr .hope-row .time {
	width: 180px;
	max-width: 300px;
	flex: 0 0 300px;
}

.contact .cont02 table td select {
	cursor: pointer;
}
.contact .cont02 table td textarea{
	height: 250px !important;
	vertical-align: middle;
	resize:none
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	margin: 0 5px;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px!important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input{
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.contact .cont02 .button input:hover{
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 70px 0 100px;
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: var(--main-color);
}
.thanks .cont01 .text{
	margin: 40px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 50px;
}
.thanks .cont01 .button a{
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.thanks .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	width: 1000px;
	margin: 50px auto 100px;
}
.privacy .cont01 h2 {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	color: #082a4a;
}
.privacy .cont01 .text01 {
	margin-top: 35px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 45px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	color: #082a4a;
	font-size: 20px;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 8px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px 30px;
	background: var(--main-light-color);
	margin-top: 20px;
}



/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/
.yonmaruyon .cont01,
.yonichimaru .cont01 {
	padding: 70px 0 100px;
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: var(--main-color);
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text {
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a {
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.yonmaruyon .cont01 .button a:hover,
.yonichimaru .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* contact_box
------------------------------------------------------------------------*/
	.contact_box {
		width: 1000px;
		height: 420px;
		margin: 0 auto 80px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 18px;
		padding: 94px 0 68px;
		box-sizing: border-box;
		z-index: 12;
		position: relative;
	}
	.contact_box h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}
	.contact_box h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}
	.contact_box h2 span::before {
		position: absolute;
		content: "";
		background: url(img/contact_text01.png) center center / cover no-repeat;
		width: 377px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}
	.contact_box .text01 {
		text-align: center;
		font-weight: bold;
		margin-top: 42px;
	}
	.contact_box .info_box {
		margin-top: 42px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.contact_box .info_box .tel {
		text-align: center;
		margin-left: 10px;
	}
	.contact_box .info_box .tel {
		text-align: center;
		margin-left: 10px;
		line-height: 1;
	}
	.contact_box .info_box .tel img {
		padding-bottom: 7px;
	}
	.contact_box .info_box .tel a {
		font-weight: bold;
	}
	.contact_box .info_box .btn-01 {
		position: relative;
		width: 220px;
		height: 50px;
		text-align: center;
	}
	.contact_box .info_box .btn-01 a {
		display: block;
		background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
		padding-left: 58px;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
		transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
	}
	.contact_box .info_box .btn-01 a:hover {
		background: #fff url(img/header_icon04.png) left 26px top 14px no-repeat;
		color: #06c755;
	}
	.contact_box .info_box .btn-01 {
		position: relative;
		width: 220px;
		height: 50px;
		text-align: center;
	}
	.contact_box .info_box .btn-01 a {
		display: block;
		background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
		padding-left: 36px;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
	}
	.contact_box .info_box .btn-02 {
		position: relative;
		width: 220px;
		height: 50px;
		text-align: center;
	}
	.contact_box .info_box .btn-02 a {
		display: block;
		background: #065aaa url(img/contact_mail_img02.png) left 39px top 17px no-repeat;
		padding-left: 36px;
		border: 1px solid #065aaa;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
		transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
	}
	.contact_box .info_box .btn-02 a:hover {
		background: #fff url(img/contact_mail_img03.png) left 39px top 17px no-repeat;
		color: #065aaa;
	}


	/*  other_sight */
	.other_sight {
		padding: 50px 0 100px;
		width: 1000px;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		gap: 14px;
	}
	.other_sight::after {
		content: "";
		position: absolute;
		background: url(img/common_bg_01.png);
		width: 100vw;
		height: 524px;
		bottom: 0;
		left: 50%;
		transform: translate(-50%);
		z-index: -1;
	}

	@media screen and (max-width: 1240px) {
		.other_sight::after {
		width: 1240px;
		}
	}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 40px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 25px;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 15px;
}
.post_cont .index_nav ul li a {
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 16px;
}
.post_cont .index_nav ul li a:hover {
	text-decoration: none;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 24px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:20px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:18px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 350px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-buttons a:hover {
	color: var(--main-color);
	background: #fff;
	opacity: 1;
}
.post_cont .wp-block-buttons a:hover::after {
	filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(5355%) hue-rotate(201deg) brightness(95%) contrast(101%);
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
	footer{
		color: #fff;
		background: #065aaa;
		position: relative;
	}
	footer .inner{
		display: flex;
		justify-content: space-between;
		padding: 120px 0;
		position: relative;
	}
	footer p{
		font-weight: bold;
	}
	footer p.tel {
		margin-top: 40px;
	}
	footer p.tel,
	footer p.mail,
	footer p.time {
		position: relative;
		font-weight: bold;
		padding-left: 32px;
		line-height: 2.5;
	}
	footer p.tel::before {
		position: absolute;
		content: "";
		background: url(img/contact_tel02.png) center center / cover no-repeat;
		width: 18px;
		height: 18px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	footer p.mail::before {
		position: absolute;
		content: "";
		background: url(img/contact_mail_img02.png) center center / cover no-repeat;
		width: 18px;
		height: 14px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	footer p.time::before {
		position: absolute;
		content: "";
		background: url(img/contact_time02.png) center center / cover no-repeat;
		width: 19px;
		height: 19px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	footer p.place {
		margin-top: 38px;
	}
	footer p.place:first-of-type {
		margin-top: 45px;
	}
	footer p.place span {
		position: relative;
		font-weight: bold;
		display: block;
		font-size: 18px;
		line-height: 26px;
		padding-left: 16px;
		margin-bottom: 10px;
	}
	footer p.place span::before {
		content: "";
		position: absolute;
		background: #fff;
		width: 5px;
		height: 26px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}
	footer .sitemap_box .text01,
	footer .area_box .text01,
	footer .blog_box .text01 {
		position: relative;
		width: fit-content;
		padding: 0 10px;
	}
	footer .sitemap_box .text01::before,
	footer .area_box .text01::before,
	footer .blog_box .text01::before {
		content: "[";
		position: absolute;
		left: 0;
		top: 0;
	}
	footer .sitemap_box .text01::after,
	footer .area_box .text01::after,
	footer .blog_box .text01::after {
		content: "]";
		position: absolute;
		right: 0;
		top: 0;
	}
	footer .sitemap_box {
		margin-left: 85px;
	}
	footer .sitemap_box ul {
		list-style-type: disc;
		margin: 18px 0 0 18px;
		line-height: 2.2;
	}
	footer .sitemap_box li a {
		font-weight: bold;
		color: #fff;
	}
	footer .sitemap_box li a:hover{
		text-decoration: underline;
	}
	footer .area_box {
		margin-left: 60px;
	}
	footer .area_list {
		max-height: calc(32px * 16);
		overflow-y: scroll;
		margin: 18px 0 0;
		line-height: 2.2;
	}
	footer .area_list ul {
		list-style-type: disc;
		padding-right: 21px;
	}
	footer .area_list li a {
		color: #fff;
		font-weight: bold;
	}
	footer .area_list li a:hover{
		text-decoration: underline;
	}
	footer .area_list>li {
		position: relative;
		padding-left: 18px;
		font-weight: bold;
	}
	footer .area_list>li::before {
		position: absolute;
		content: "";
		width: 14px;
		height: 14px;
		background: #fff;
		left: 0;
		top: 9px;
	}
	footer .area_list>li:nth-of-type(2),
	footer .area_list>li:nth-of-type(3) {
		margin-top: 25px;
	}
	footer .blog_box {
		margin-left: 50px;
		line-height: 2.2;
	}
	footer .blog_box .blog_list {
		max-height: calc(32px * 16);
		overflow-y: scroll;
		padding-right: 21px;
		margin-top: 18px;
		list-style-type: disc;
		list-style-position: inside;
	}
	footer .blog_box .blog_list li {
		width: 192px;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow-x: hidden;
	}
	footer .blog_box .blog_list li a {
		font-weight: bold;
		color: #fff;
	}
	footer .blog_box .blog_list li a:hover{
		text-decoration: underline;
	}
	footer ul::-webkit-scrollbar {
		width: 3px
	}
	footer ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer ul::-webkit-scrollbar-thumb {
		background-color: #fff;
	}
	footer .to_top {
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 10;
	}
	footer .copy {
		position: absolute;
		bottom: 120px;
		right: 0;
	}
	@media screen and (max-width: 1300px) {
		footer .inner {
			width: 1100px;
		}
		footer .sitemap_box {
			margin-left: 50px;
		}
		footer .area_box {
			margin-left: 25px;
		}
		footer .blog_box {
			margin-left: 23px;
		}
		footer .area_list ul {
			padding-right: 19px;
		}
	}



}/*PCの記述ここまで*/



/*===============================================
横幅441px以下 sp
===============================================*/

@media screen and (max-width: 441px) {
html,
body,
.wrap {
	width: 440px;
	position: relative;
}
.inner {
	box-sizing: border-box;
	padding: 0 30px;
	width: auto;
}
.pc {
	display: none;
}
.sp {
	display: inline;
}
p {
	font-size: 14px;
}

/* header
------------------------------------------------------------------------*/
	header{
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 10000;
		position: relative;
	}
	header h1{
		position: absolute;
		top: 61px;
		left: 10px;
		font-size: 10px;
		line-height: 1;
	}
    header .header_box .bubble {
		display: none;
	}

	header .header_box .sp_bubble {
		width: 220px;
		left: 152px;
		margin-left: 8px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	header .header_box {
		position: fixed;
		top: 0;
		left: 0;
		width: 440px;
		height: 50px;
		background: #e2f1ff;
	}
	header .header_box .logo a {
		position: absolute;
		top: 10px;
		left: 8px;
		display: block;
		width: 138px;
		height: 30px;
		background: url(img/header_logo.png) no-repeat;
		background-size: 138px;
		padding: 30px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box .text01 {
		display: none;
	}
	header .header_box .text02 {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 142px;
		height: 50px;
		color: #182e73;
		font-size: 14px;
		line-height: 50px;
		text-align: center;
		z-index: 9999;
	}
	header .header_box .text02::after {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		background: #eaf5fa;
		width: 440px;
		height: 50px;
		z-index: -1;
	}
	header .header_box .tel {
	    display: none;
    }
    header .header_box .button {
        display: none;
	}
	/* header .header_box .tel a {
		display: block;
		width: 100%;
		height: 100%;
		background: #065aaa url(img/contact_tel02.png) center center no-repeat;
		background-size: 15px;
		border-radius: 50%;
		box-sizing: border-box;
	}

	header .header_box .button a {
		display: block;
		background: url(img/header_icon03.png) no-repeat;
		background-size: 33px;
		padding: 31px 0 0;
		box-sizing: border-box;
	} */

   header .header_box .sp_bottom{
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 50px;
    z-index: 11;
}

header .header_box .sp_bottom p{
    margin: 0;
}

header .header_box .sp_bottom .bottom_tel,
header .header_box .sp_bottom .bottom_button{
    flex: 1;
}

header .header_box .sp_bottom .bottom_tel a,
header .header_box .sp_bottom .bottom_button a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}
header .header_box .sp_bottom .bottom_tel a{
    flex-direction: column;
}
header .header_box .sp_bottom .bottom_button a{
    flex-direction: row;
	gap: 8px;
}
header .header_box .sp_bottom .bottom_tel a{
    background: var(--main-color);
}
header .header_box .sp_bottom .bottom_button a{
    background: #06c755; 
}
header .header_box .sp_bottom .bottom_button a::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url(img/contact-line_sp.png) center center / contain no-repeat;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

header .header_box .sp_bottom .bottom_tel a img{
    display: block;
    width: 190px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(98%) sepia(15%) saturate(0%) hue-rotate(121deg) brightness(110%) contrast(100%);
}

header .header_box .sp_bottom .bottom_tel a span{
    display: block;
    margin-top: 3px;
    font-size: 12px;
}

/* nav
------------------------------------------------------------------------*/
	#nav {
		display: none;
		width: 100%;
		position: fixed;
		z-index: 100;
	}
	#nav-btn.active + #nav{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 440px;
		background: #eaf5fa;
		z-index: 10000;
		overflow-y: scroll;
		height: 100%;
	}
	#nav-btn.active + #nav::before{
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		background: #eaf5fa;
		width: 440px;
		height: 50px;
	}

	#nav > .main_nav{
		width: 440px;
		min-height: 100dvh;
		height: auto;
		padding: 94px 65px 70px;
		box-sizing: border-box;
		overflow-y: scroll;
	}

	#nav>.main_nav li span {
		font-weight: bold;
	}
	#nav>.main_nav .mark {
		margin: 15px 0 7px;
	}
	#nav>.main_nav li a {
		display: block;
		padding: 15px 0;
		font-weight: bold;
	}
	
	#nav .main_nav .sub_nav_list li a span::before {
		content: "−";
		margin-right: 5px;
	}
	#nav .main_nav .sub_nav a {
		padding: 10px 0;
	}
	#nav>.main_nav li a img {
		display: none;
	}

	#nav-btn{
		width: 50px;
		height: 50px;
		background: var(--main-color);
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10010;
		cursor: pointer;
		transition: all .5s;
	}
	.menu-btn{
		position: absolute;
		width: 20px;
		height: 14px;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
	}
	.menu-btn,
	header .menu-btn span{
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-btn span{
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
	}
	.menu-btn span:nth-of-type(1){
		top: 0;
		transition: all 0.5s;
	}
	.menu-btn span:nth-of-type(2){
		top: 6px;
		transition: all 0.5s;
	}
	.menu-btn span:nth-of-type(3){
		bottom: 0;
		transition: all 0.5s;
	}
	#nav-btn.active span:nth-of-type(1){
		transform: translateY(6px) rotate(-45deg);
		transition: all 0.5s;
	}
	#nav-btn.active span:nth-of-type(2){
		opacity: 0;
		transition: all 0.5s;
	}
	#nav-btn.active span:nth-of-type(3){
		transform: translateY(-6px) rotate(45deg);
		transition: all 0.5s;
	}



/* home
------------------------------------------------------------------------*/
	.home {
		font-weight: bold;
		color: #1d1d1d;
	}

	/* key */
	.home .key {
		position: relative;
		padding-top: 30px;
		height: 658px;
		background: #e2f1ff;
	}

	.home .key .inner {
		position: relative;
		padding: 0;
	}

	.home .key .bg_img {
		position: absolute;
		top: 320px;
		z-index: -2;
		left: -40px;
	}

	.home .key::before {
		content: "";
		position: absolute;
		left: -10%;
		right: -10%;
		top: 180px;
		height: 340px;
		background: url("img/home_key_bg02.png");
		transform: rotate(-5deg);
	}

	.home .key .inner::after {
		content: "";
		position: absolute;
		left: -10%;
		right: -10%;
		transform: rotate(-5deg);
		height: 130px;
		bottom: -350px;
		background: url(img/home_key_bg03.png) repeat-x left top;
		background-size: auto 100%;
		animation: slider 40s linear infinite;
	}

	@keyframes slider {
		0% {
		background-position: 0 0;
		}

		100% {
		background-position: -1800px 0;
		}
	}

	.home .key .inner::before {
		content: "";
		position: absolute;
		right: -100px;
		bottom: -420px;
		width: 545px;
		height: 175px;
		background: url(img/home_key_text03.png) center center / cover no-repeat;
		z-index: 1;
		transform: scale(0.6);
	}

	.home .key .inner .text_box {
		position: relative;
		box-sizing: border-box;
		background: rgba(255, 255, 255, 0.7);
		border-radius: 0 18px 18px 0;
		left: 0;
		width: 410px;
		padding: 15px 20px;
	}

	.home .key .inner .text_box::before {
		content: "";
		position: absolute;
		right: 85px;	
		top: 405px;
		width: 221px;
		height: 192px;
		background: url(img/home_key_bg04.png) center center / cover no-repeat;
		transform: scale(0.7);
	}

	.home .key .inner .text_box .text01:nth-of-type(1) {
		position: relative;
		font-size: 18px;
		color: #333;
		padding-left: 70px;
		line-height: 50px;
		font-weight: bold;
		width: fit-content;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .key .inner .text_box .text01:nth-of-type(1)::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		background: url("img/key_deco01.png") center center / cover no-repeat;
		width: 74px;
		height: 50px;
		transform: scale(0.7);
	}

	.home .key .inner .text_item:nth-of-type(1) {
		display: flex;
		text-align: center;
		gap: 5px;
		line-height: 1;
		margin-top: 10px;
	}

	.home .key .inner .text_item .text02 {
		background: #fff;
		border: 1px solid #065aaa;
		border-radius: 15px;
		font-weight: bold;
		color: #065aaa;
		padding: 5px 8px;
		font-size: 16px;
	}

	.home .key .inner .text_item:nth-of-type(2) {
		display: flex;
		text-align: center;
		gap: 10px;
		line-height: 60px;
		margin-top: 20px;
	}

	.home .key .inner .text_box .text03 {
		margin-top: 18px;
		text-align: center;
	}

	.home .key .inner .text_item .text04 {
		width: 50%;
		color: #fff;
		background: #065aaa;
		border: 2px solid #065aaa;
		border-radius: 10px;
		font-size: 20px;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
		line-height: 1;
		padding: 5px 0;
	}

	.home .key .inner .text_item .text04 span {
		font-size: 14px;
		display: block;
		line-height: 1.2;
		padding-right: 5px;
		font-weight: bold;
		letter-spacing: 1.5px;
	}



	/* topic_wrap */
	.home .topic_wrap {
		margin: 160px auto 80px;
		padding: 0 20px;
	}

	.home .topic_wrap .breaking_wrap {
		position: relative;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 10px;
		padding: 40px 8px 8px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.home .topic_wrap .breaking_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.home .topic_wrap .breaking_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .topic_wrap .breaking_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
		word-break: keep-all;
	}

	.home .topic_wrap .breaking_wrap .breaking_box {
		height: 230px;
		background: #fff;
		border-radius: 5px;
		margin-top: 18px;
		overflow-y: auto;
		padding: 25px 15px 15px 15px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont {
		position: relative;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: repeating-linear-gradient(to right,
			#082a4a 0,
			#082a4a 11px,
			transparent 11px,
			transparent 22px);
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont .date {
		color: #082a4a;
		font-weight: bold;
		line-height: 1;
		padding-top: 25px;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
		padding-top: 0;
	}

	.home .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
		line-height: 1.5;
		font-weight: bold;
		padding: 15px 0 25px;
	}

	.home .topic_wrap .reviews_wrap {
		position: relative;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 10px;
		padding: 40px 8px 8px;
		box-sizing: border-box;
		margin-top: 50px;
	}

	.home .topic_wrap .reviews_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.home .topic_wrap .reviews_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.home .topic_wrap .reviews_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .topic_wrap .reviews_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5;
	}

	.home .topic_wrap .reviews_wrap .reviews_box {
		overflow-y: auto;
		height: 260px;
		background: #fff;
		border-radius: 5px;
		margin-top: 18px;
		border-top: none;
        padding: 15px;
		box-sizing: border-box;
	}

	.home .topic_wrap .breaking_box::-webkit-scrollbar,
	.home .topic_wrap .reviews_box::-webkit-scrollbar {
		width: 3px;
	}
	.home .topic_wrap .breaking_box::-webkit-scrollbar-track,
	.home .topic_wrap .reviews_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .topic_wrap .breaking_box::-webkit-scrollbar-thumb,
	.home .topic_wrap .reviews_box::-webkit-scrollbar-thumb {
		background-color: #eee;
	}


	/* cont01 */
	.home .cont01 {
		background: url("img/common_bg_01.png");
		text-align: center;
		padding: 85px 0 80px;
	}

	.home .cont01 .inner {
		padding: 0 20px;
	}

	.home .cont01 .inner h2 {
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
	}

	.home .cont01 .inner h2 span {
		display: block;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		padding-bottom: 14px;
	}

	.home .cont01 .inner h2 span::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		transform: scale(0.7);
		left: 110px;
		top: -35px;
	}

	.home .cont01 .inner .text01 {
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5;
		margin-top: 30px;
	}


	.home .cont01 .inner .thanks_box {
		padding: 0 30px;
	}

	.home .cont01 .inner .thanks_box .cont {
		position: relative;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 10px;
		margin-top: 20px;
		padding: 30px 0;
		box-sizing: border-box;
	}

	.home .cont01 .inner .thanks_box .cont::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -35px;
		left: 1px;
		width: 89px;
		height: 103px;
		transform: scale(0.85);
	}

	.home .cont01 .inner .thanks_box .cont:first-of-type {
		margin-top: 50px;
	}

	.home .cont01 .inner .thanks_box .cont h3 {
		line-height: 1;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
	}

	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(1) {
		display: block;
		font-weight: bold;
		color: #555;
		padding-bottom: 15px;
	}

	.home .cont01 .inner .thanks_box .cont.box01 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks01.png) center center/cover no-repeat; 
	   width: 292px;
	   height: 58px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
	.home .cont01 .inner .thanks_box .cont.box02 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks02.png) center center/cover no-repeat; 
	   width: 260px;
	   height: 58px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
	.home .cont01 .inner .thanks_box .cont.box03 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks03.png) center center/cover no-repeat; 
	   width: 78px;
	   height: 51px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
    
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(2),
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(3),
	.home .cont01 .inner .thanks_box .cont h3 span:nth-of-type(4) {
       visibility: hidden;
	}

	.home .cont01 .inner .thanks_box .cont .text02 {
		line-height: 1.5;
		font-size: 18px;
		font-weight: bold;
		margin-top: 33px;
	}

	/* cont02 */
	.home .cont02 {
		position: relative;
		padding: 0 20px;
		margin: 80px auto;
	}

	.home .cont02 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding: 11px 0 5px 30px;
		width: fit-content;
		font-size: 14px;
		margin-top: 20px;
	}

	.home .cont02 h2 span {
		font-size: 24px;
		font-weight: bold;
		padding-top: 5px;
		display: block;
		line-height: 1.2;
	}

	.home .cont02 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.home .cont02 .text_box01 {
		padding-top: 298px;
	}

	.home .cont02 .text01 {
		padding: 30px 0 40px;
		font-size: 16px;
		line-height: 2.2;
	}

	.home .cont02 .button {
		width: 360px;
		height: 50px;
		text-align: center;
		margin: auto;
	}

	.home .cont02 .button a {
		position: relative;
		display: block;
		font-weight: bold;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		border-radius: 25px;
	}

	.home .cont02 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.home .cont02 figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		width: calc(100% - 20px);
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont03 */
	.home .cont03 {
		background: #e2f1ff;
		padding: 80px 20px;
	}

	.home .cont03 .inner {
		padding: 0;
	}

	.home .cont03 .inner:nth-of-type(1) {
		position: relative;
	}

	.home .cont03 .inner:nth-of-type(1)::before {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center center / cover no-repeat;
		right: -48px;
		top: -255px;
		width: 152px;
		height: 348px;
		transform: scale(0.4);
	}

	.home .cont03 .cont03_01>h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.6;
		color: #082a4a;
	}

	.home .cont03 .cont03_01>h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont03 .cont03_01>h2 span::after {
		position: absolute;
		content: "";
		background: url("img/home_text01.png") center center / contain no-repeat;
		width: 600px;
		height: 40.6px;
		top: calc(50% - 10px);
		left: 50%;
		transform: translate(-50%, -50%) scale(0.9);
		z-index: -1;
	}

	.home .cont03 .cont03_01 .service_box {
		margin-top: 40px;
	}

	.home .cont03 .cont03_01 .service_box .cont {
		position: relative;
		padding-top: 216px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) {
		margin-top: 60px;
	}

	.home .cont03 .cont03_01 .service_box .cont figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 3px solid #348de2;
		border-radius: 8px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box {
		position: relative;
		line-height: 1;
		padding: 10px 0 8px 20px;
		margin-top: 15px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) figure {
		border-color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 5px;
		height: 100%;
		background: #348de2;
		border-radius: 5px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box h3 {
		font-size: 24px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 {
		margin-top: 20px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01 {
		position: relative;
		color: #686868;
		font-size: 14px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01>span {
		font-size: 22px;
		font-weight: bold;
		display: inline-block;
		padding-left: 6px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span01>span>span {
		font-size: 18px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02 {
		position: relative;
		font-size: 16px;
		font-weight: bold;
		padding-left: 22px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02::before {
		content: "";
		position: absolute;
		background: #348de2;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		width: 8px;
		height: 14px;
		top: 50%;
		left: 8px;
		transform: translateY(-50%);
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02>span {
		font-size: 32px;
		font-weight: bold;
		color: #348de2;
		padding-left: 5px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text01 .span02>span>span {
		font-size: 20px;
		font-weight: bold;
		color: #348de2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02 {
		letter-spacing: -0.5px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02>span>span {
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text01 .span02>span {
		color: #0091a2;
		padding-left: 1px;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02 {
		margin-top: 10px;
		font-size: 18px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02>span {
		padding-left: 5px;
		font-size: 32px;
		font-weight: bold;
		color: #348de2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .h_box .text02>span {
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont .h_box .text02>span>span {
		font-size: 20px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont .text03 {
		margin-top: 15px;
		font-size: 16px;
	}

	.home .cont03 .cont03_01 .service_box .cont .button {
		position: relative;
		text-align: center;
		margin-top: 15px;
	}

	.home .cont03 .cont03_01 .service_box .cont .button a {
		display: block;
		background: #fff;
		border: 2px solid #348de2;
		color: #348de2;
		font-size: 18px;
		line-height: 48px;
		border-radius: 8px;
		font-weight: bold;
	}

	.home .cont03 .cont03_01 .service_box .cont a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) .button a {
		border-color: #0091a2;
		color: #0091a2;
	}

	.home .cont03 .cont03_01 .service_box .cont:nth-of-type(2) a::before {
		background: #0091a2;
	}

	.home .cont03 .cont03_01 .text04 {
		margin: 10px 0 30px;
	}

	.home .cont03 .cont03_02 {
		border: 1px solid #065aaa;
		border-radius: 5px;
		background: #fff;
	}

	.home .cont03 .cont03_02 {
		border: 1px solid #065aaa;
		border-radius: 10px;
		background: #fff;
	}

	.home .cont03 .cont03_02 h2 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		text-align: center;
		padding: 10px 0;
		line-height: 1.4;
		border-radius: 7px 7px 0 0;
	}

	.home .cont03 .cont03_02 figure {
		margin: 30px 15px;
	}

	.home .cont03 .cont03_02 .box01,
	.home .cont03 .cont03_02 .box02 {
		border: 1px solid #348de2;
		background: #e2f1ff;
		position: relative;
		margin: 25px 15px 0;
	}

	.home .cont03 .cont03_02 .box02 {
		border: 1px solid #0091a2;
	}

	.home .cont03 .cont03_02 .box01::after,
	.home .cont03 .cont03_02 .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #348de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.home .cont03 .cont03_02 .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.home .cont03 .cont03_02 .box01 h3,
	.home .cont03 .cont03_02 .box02 h3 {
		background: #348de2;
		color: #fff;
		text-align: center;
		font-size: 18px;
		font-weight: bold;
	}

	.home .cont03 .cont03_02 .box02 h3 {
		background: #0091a2;
	}

	.home .cont03 .cont03_02 .box01 ul,
	.home .cont03 .cont03_02 .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 40px;
	}

	.home .cont03 .cont03_02 .box01 ul li,
	.home .cont03 .cont03_02 .box02 ul li {
		font-weight: bold;
	}

	.home .cont03 .cont03_02 .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 20px 15px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.home .cont03 .cont03_02 .text span {
		color: #065aaa;
		font-weight: bold;
	}

	/* cont04 */
	.home .cont04 {
		position: relative;
		padding: 80px 20px;
	}

	.home .cont04::before {
		position: absolute;
		content: "";
		background: url(img/common_deco07.png) center center / cover no-repeat;
		left: -22px;
		top: -195px;
		width: 152px;
		height: 348px;
		z-index: 1;
		transform: scale(0.5);
	}

	.home .cont04::after {
		position: absolute;
		content: "";
		background: url("img/common_deco08.png") center center / cover no-repeat;
		left: 990px;
		top: -24px;
		width: 383px;
		height: 278px;
	}

	.home .cont04 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
		color: #082a4a;
	}

	.home .cont04 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont04 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/home_text02.png) center center / contain no-repeat;
		width: 600px;
		height: 58px;
		top: calc(50% - 10px);
		left: 50%;
		transform:
		translate(-50%, -50%) scale(0.6);
		z-index: -1;
	}


	.home .cont04 .box .item {
		position: relative;
		padding-top: 280px;
		margin-top: 55px;
	}

	.home .cont04 .box .item:first-of-type {
		margin-top: 50px;
	}

	.home .cont04 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.home .cont04 .box .item figure img {
		width: 410px;
		border-radius: 15px;
		border: 3px solid #065aaa;
	}

	.home .cont04 .box .item .text_box {
		margin-top: 20px;
	}

	.home .cont04 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.home .cont04 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.home .cont04 .text01 {
		margin-top: 8px;
		font-size: 16px;
	}

	.home .cont04 .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin-top: 15px;
	}

	.home .cont04 .button a {
		display: block;
		background: #fff;
		border: 1px solid #065aaa;
		line-height: 46px;
		border-radius: 8px;
		font-weight: bold;
		font-size: 18px;
	}

	.home .cont04 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* cont05 */
	.home .cont05 {
		background: url(img/common_bg_01.png);
		padding: 80px 0 78px;

	}

	.home .cont05 .inner {
		position: relative;
		padding: 0 20px;
	}

	.home .cont05 .inner::after {
		position: absolute;
		content: "";
		background: url(img/common_deco10.png) center center / cover no-repeat;
		right: -48px;
		bottom: -166px;
		width: 254px;
		height: 192px;
		transform: scale(0.6);
		z-index: 1;
	}


	.home .cont05 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont05 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont05 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/home_text03.png) center center / cover no-repeat;
		width: 322px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.home .cont05 h3 {
		position: relative;
		font-weight: bold;
		font-size: 20px;
		color: #082a4a;
		padding-left: 15px;
		height: 32px;
		line-height: 32px;
		margin: 22px 0 0 98px;
	}

	.home .cont05 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 6px;
		height: 32px;
		border-radius: 3px;
		left: 0;
		top: 0;
	}

	.home .cont05 .text01 {
		margin-top: 15px;
		padding: 0 30px 20px;
	}

	.home .cont05 .box .item {
		position: relative;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 8px;
		margin-bottom: 40px;
	}

	.home .cont05 .box .item::before {
		position: absolute;
		content: "";
		background: url(img/reason_01.png) center center / cover no-repeat;
		width: 100.8px;
		height: 93.8px;
		left: -13px;
		top: -35px;
	}

	.home .cont05 .box .item:nth-of-type(2):before {
		background: url("img/reason_02.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(3):before {
		background: url("img/reason_03.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(4):before {
		background: url("img/reason_04.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:nth-of-type(5):before {
		background: url("img/reason_05.png") center center / cover no-repeat;
	}

	.home .cont05 .box .item:first-of-type {
		margin-top: 50px;
	}

	.home .cont05 .box .item:last-of-type {
		margin-bottom: 0;
	}

	.home .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.home .cont05 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.home .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* cont06 */
	.home .cont06 {
		padding: 80px 20px;
		margin: 0 auto;
		max-width: 1380px;
	}

	.home .cont06 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont06 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text05.png) center center / cover no-repeat;
		width: 294px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.home .cont06 .text01 {
		text-align: center;
		margin-top: 30px;
		font-size: 16px;
	}

	.home .cont06 h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.home .cont06 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.home .cont06 .category_01,
	.home .cont06 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 12px;
		color: #fff;
		font-weight: bold;
		margin-top: 15px;
	}

	.home .cont06 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.home .cont06 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.home .cont06 .text02 {
		margin-top: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.home .cont06 .box .item {
		width: 100%;
		position: relative;
		margin-top: 40px;
	}

	.home .cont06 .box .item:first-of-type {
		margin-top: 40px;
	}

	.home .cont06 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.home .cont06 .box .img_box {
		display: flex;
	}

	.home .cont06 .box .img_box figure {
		position: relative;
	}

	.home .cont06 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.home .cont06 .box .img_box figure img {
		width: 205px;
	}

	.home .cont06 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.home .cont06 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.home .cont06 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.home .cont06 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.home .cont06 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 30px auto 0;
	}

	.home .cont06 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.home .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont07 */
	.home .cont07 {
		background: #e2f1ff;
		padding: 80px 15px;
	}

	.home .cont07 .inner {
		position: relative;
		padding: 0 15px;
	}

	.home .cont07 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		transform: scale(0.6);
		top: -190px;
		left: -62px;
	}

	.home .cont07 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont07 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text04.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.home .cont07 .box {
		margin-top: 50px;
	}

	.home .cont07 .box .item {
		position: relative;
		border: 2px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		background: #fff;
		padding: 60px 25px 35px;
		margin-top: 30px;
	}

	.home .cont07 .box .item::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		background: #065aaa;
		left: 50%;
		bottom: -15px;
		transform: translateX(-50%);
		width: 35px;
		height: 15px;
	}

	.home .cont07 .box .item:last-of-type::before {
		display: none;
	}

	.home .cont07 .box .item h3 {
		position: relative;
		text-align: center;
		font-size: 22px;
		color: #082a4a;
		line-height: 1;
		font-weight: bold;
	}

	.home .cont07 .box .item h3::before {
		position: absolute;
		content: "FLOW 01";
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		top: -28px;
		left: 50%;
		transform: translateX(-50%);
	}

	.home .cont07 .box .item:nth-of-type(2) h3::before {
		content: "FLOW 02";
	}

	.home .cont07 .box .item:nth-of-type(3) h3::before {
		content: "FLOW 03";
	}

	.home .cont07 .box .item p {
		margin-top: 18px;
		font-size: 14px;
		line-height: 2;
	}

	.home .cont07 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 50px auto 0;
	}

	.home .cont07 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.home .cont07 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont08 */
	.home .cont08 {
		padding: 80px 20px;
	}

	.home .cont08 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont08 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.home .cont08 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text06.png) center center / cover no-repeat;
		width: 152px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}



	.home .cont08 p {
		text-align: center;
		font-weight: bold;
		margin-top: 40px;
	}

	.home .cont08 .qa_box {
		margin-top: 50px;
		border-bottom: 1px dashed #065aaa;
	}

	.home .cont08 .qa_box .qes {
		position: relative;
		width: 100%;
		padding: 30px 25px 30px 45px;
		border-top: 1px dashed #065aaa;
		box-sizing: border-box;
		font-size: 16px;
		font-weight: bold;
		cursor: pointer;
		line-height: 1.3;
	}

	.home .cont08 .qa_box .qes::before {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "Q";
		display: flex;
		justify-content: center;
		align-items: center;
		color: #065aaa;
		border: 2px solid #065aaa;
		font-size: 18px;
		font-weight: bold;
		width: 36px;
		height: 36px;
		box-sizing: border-box;
		border-radius: 50%;
	}

	.home .cont08 .qa_box .qes::after {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url(img/faq_icon01.png) no-repeat;
		width: 20px;
		height: 20px;
		transition: .3s;
	}

	.home .cont08 .qa_box .qes.open::after {
		transform: translateY(-50%) rotate(180deg);
		background: url(img/faq_icon02.png) no-repeat;
	}

	.home .cont08 .qa_box .ans {
		display: none;
		padding: 0 25px 0 45px;
		box-sizing: border-box;
		font-size: 14px;
		line-height: 2;
		margin-bottom: 30px;
		position: relative;
	}

	.home .cont08 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 50px auto 0;
	}

	.home .cont08 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.home .cont08 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* cont09 */
	.home .cont09 {
		background: url(img/common_bg_01.png);
		padding: 80px 0;
	}

	.home .cont09 .inner {
		padding: 0 15px;
		position: relative;
		display: flex;
		flex-direction: column;
		height: 857px;
	}

	.home .cont09 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center center / cover no-repeat;
		width: 163.1px;
		height: 128.8px;
		bottom: -163px;
		right: 20px;
	}

	.home .cont09 figure {
		width: 95%;
		position: absolute;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		overflow: hidden;
		box-sizing: border-box;
		order: 1;
	}

	.home .cont09 .text_box {
		padding: 50px 30px;
		box-sizing: border-box;
		background: #fff;
		border: 2px solid #065aaa;
		border-right: none;
		border-radius: 10px 0 0 10px;
		z-index: 2;
		order: 2;
		position: absolute;
		right: 0;
		width: 95%;
		bottom: 0;
	}

	.home .cont09 h2 {
		font-size: 14px;
		font-weight: bold;
		line-height: 1.3;
	}

	.home .cont09 .text_box .text01 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
		line-height: 34px;
		padding-left: 22px;
		margin-top: 12px;
	}

	.home .cont09 .text_box .text01::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 34px;
		border-radius: 3px;
		left: 0;
		top: 0;
	}

	.home .cont09 .text_box .info_box {
		margin-top: 24px;
	}

	.home .cont09 .text_box .tel,
	.home .cont09 .text_box .mail,
	.home .cont09 .text_box .time,
	.home .cont09 .text_box .place {
		position: relative;
		font-weight: bold;
		padding-left: 32px;
	}

	.home .cont09 .text_box .place {
		line-height: 1.2;
		margin-top: 7px;
	}

	.home .cont09 .text_box .tel::before {
		position: absolute;
		content: "";
		background: url("img/contact_tel_img01.png") center center / cover no-repeat;
		width: 18px;
		height: 18px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .mail::before {
		position: absolute;
		content: "";
		background: url("img/contact_mail_img01.png") center center / cover no-repeat;
		width: 18px;
		height: 14px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .time::before {
		position: absolute;
		content: "";
		background: url("img/contact_time_img01.png") center center / cover no-repeat;
		width: 19px;
		height: 19px;
		top: 50%;
		left: -0.5px;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .place::before {
		position: absolute;
		content: "";
		background: url("img/contact_place_img01.png") center center / cover no-repeat;
		width: 16px;
		height: 20px;
		top: 50%;
		left: 2px;
		transform: translateY(-50%);
	}

	.home .cont09 .text_box .text02 {
		margin-top: 20px;
	}

	.home .cont09 .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin-top: 28px;
	}

	.home .cont09 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.home .cont09 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* cont10 */
	.home .cont10 {
		padding: 80px 0;
		z-index: 10;
		position: relative;
	}

	.home .cont10 h2 {
		text-align: center;
		font-size: 34px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.home .cont10 h2 span {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 30px;
	}

	.home .cont10 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/home_text07.png) center center / cover no-repeat;
		width: 209px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.home .cont10 .text01 {
		margin-top: 34px;
		text-align: center;
	}

	.home .cont10 .blog_box {
		margin-top: 49px;
	}

	.home .cont10 .blog_box .swiper-slide {
		display: block;
		width: 330px;
	}

	.home .cont10 .blog_box .swiper-slide a {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		box-sizing: border-box;
	}

	.home .cont10 .blog_box .swiper-slide a h3 {
		width: 100%;
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 20px;
		order: 2;
		line-height: 1;
	}

	.home .cont10 .blog_box .swiper-slide a .date {
		width: 100%;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		margin: 12px 0 0;
		order: 3;
	}

	.home .cont10 .blog_box .swiper-slide a .cate {
		height: 28px;
		background: #065aaa;
		padding: 0 10px;
		border-radius: 2px;
		box-sizing: border-box;
		color: #fff;
		font-weight: bold;
		line-height: 28px;
		text-align: center;
		margin: 12px 0 0;
		order: 4;
		font-size: 12px;
	}

	.home .cont10 .blog_box .swiper-slide a .text02 {
		line-height: 2;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		margin-top: 10px;
		order: 5;
	}

	.home .cont10 .blog_box .swiper-slide a figure {
		box-sizing: border-box;
		width: 330px;
		height: 220px;
		border: 1px solid #065aaa;
		overflow: hidden;
		order: 1;
	}

	.home .cont10 .blog_box .swiper-slide a figure img {
		width: 330px;
		height: 220px;
	}

	.home .cont10 .swiper-button-prev {
		top: -170px;
		left: calc(50% + 120px);
		width: 80px;
		height: 80px;
		background: url(img/common_arrow.png) 28px center no-repeat #0068b7;
		border-radius: 40px;
		transform: scale(0.5);
	}

	.home .cont10 .swiper-button-next {
		top: -170px;
		right: calc(50% + 120px);
		width: 80px;
		height: 80px;
		background: url("img/common_arrow.png") 28px center no-repeat #0068b7;
		border-radius: 40px;
		transform: rotate(-180deg) scale(0.5);
	}

	.home .cont10 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.home .cont10 .button a {
		display: block;
		background: #065aaa;
		border: 1px solid #065aaa;
		line-height: 50px;
		box-sizing: border-box;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
	}

	.home .cont10 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}


	.home .cont10 .swiper-button-prev::after,
	.home .cont10 .swiper-button-next::after {
		content: "";
	}


	.single-area .pankuzu {
		margin-top: 100px;
	}
	.single-area .topic_wrap {
		margin-top: 90px;
	}



/* common
------------------------------------------------------------------------*/

	/* key */
	.common .key {
		height: 140px;
		background: url(img/common_bg_01.png);
		background-size: 88px auto;
	}

	.common .key .text01 {
		position: relative;
		text-align: center;
		font-size: 26px;
		font-weight: bold;
		line-height: 1;
		top: 65px;
		color: #082a4a;
	}

	.common .key .text01::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(0.5);
		z-index: -1;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}


	/* pankuzu */
	.pankuzu {
		margin-top: 10px;
		line-height: 1.3;
	}
	.pankuzu .inner{
		padding: 0 20px;
	}
	.pankuzu ul li {
		display: inline-block;
		margin-right: 10px;
		color: var(--main-color);
		font-size: 12px;
		font-weight: bold;
		max-width: 400px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.pankuzu ul li a {
		color: #333;
		font-size: 12px;
		font-weight: bold;
	}
	.pankuzu ul li:not(:last-of-type)::after {
		content: "-";
		margin-left: 10px;
		flex-shrink: 0;
	}
	.pankuzu ul li:last-of-type {
		margin-right: 0;
	}


/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 380px;
	margin:70px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	width: 100%;
	margin: 60px auto;
}
.single-pager .prev-pager-box {
	margin:0 10px 30px;
}
.single-pager .next-pager-box {
	margin:0 10px;
}
.single-pager a {
	display: flex;
	align-items: center;
	text-decoration: none !important;
	text-align: left;
	font-size: 14px;
	position: relative;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 25px;
	height: 25px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -10px;
}
.single-pager .next-pager-box a::before {
	right: -10px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 6px solid #fff;
	left: -2px;
}
.single-pager .next-pager-box a::after {
	border-left: 6px solid #fff;
	right: -2px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.5;
	margin-bottom: 5px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px;
	border-radius: 5px;
}


/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */

	/* about */
	.about .key .text01::after {
		background: url("img/about_key_text.png");
		width: 343px;
		height: 74px;
	}

	/* professional */
	.professional .key .text01::after {
		background: url("img/professional_key_text.png");
		width: 783px;
		height: 74px;
	}

	/* cleaning */
	.cleaning .key .text01::after {
		background: url("img/cleaning_key_text.png");
		width: 519px;
		height: 74px;
	}

	/* complete */
	.complete .key .text01 {
		margin: 0 auto;
		white-space: nowrap;
		white-space: nowrap;
		width: max-content;
		font-size: 23px;
		left: 50%;
		transform: translateX(-50%);
	}
	.complete .key .text01::after {
		background: url("img/complete_key_text.png");
		width: 519px;
		height: 74px;
	}

	/* flow */
	.flow .key .text01::after {
		background: url("img/flow_key_text.png");
		width: 282px;
		height: 74px;
	}

	/* housecleaning */
	.housecleaning .key .text01::after {
		background: url(img/housecleaning_key_text.png);
		width: 901px;
		height: 74px;
	}

	/* price */
	.price .key .text01::after {
		background: url(img/price_key_text.png);
		width: 297px;
		height: 74px;
	}

	/* reason */
	.reason .key .text01::after {
		background: url("img/reason_key_text.png");
		width: 404px;
		height: 74px;
	}

	/* aircon-install */
	.aircon-install .key .text01::after {
		background: url(img/aircon-install_key_text.png);
		width: 428px;
		height: 74px;
	}

	/* works-archive */
	.works-archive .key .text01::after {
		background: url(img/works-archive_key_text.png);
		width: 368px;
		height: 74px;
	}

	/* works-single */
	.works-single .key .text01::after {
		background: url(img/works-single_key_img.png);
		width: 368px;
		height: 74px;
	}


	/* blog */
	.blog .key .text01::after {
		background: url(img/blog_key_img.png);
		width: 244px;
		height: 74px;
	}

	/* faq */
	.faq .key .text01::after {
		background: url(img/faq_key_img.png);
		width: 183px;
		height: 74px;
	}

	/* company */
	.company .key .text01::after {
		background: url(img/company_key_img.png);
		width: 482px;
		height: 74px;
	}

	/* privacy */
	.privacy .key .text01::after {
		background: url(img/privacy_key_img.png);
		width: 786px;
		height: 74px;
	}

	/* contact */
	.contact .key .text01::after {
		background: url(img/contact_key_img.png);
		width: 452px;
		height: 74px;
	}

	/* thanks */
	.thanks .key .text01::after {
		background: url(img/thanks_key_img.png);
		width: 400px;
		height: 74px;
	}

	/* 404 */
	.yonmaruyon .key .text01::after {
		background: url(img/yonmaruyon_key_img.png);
		width: 174px;
		height: 74px;
	}

	/* 410 */
	.yonichimaru .key .text01::after {
		background: url(img/yonichimaru_key_img.png);
		width: 173px;
		height: 74px;
	}



/* about
------------------------------------------------------------------------*/
	/* cont01 */
	.about .cont01 {
		padding: 20px 20px 520px;
		margin-bottom: 80px;
	}

	.about .cont01 h2 {
		font-size: 14px;
		font-weight: bold;
		padding-left: 28px;
		position: relative;
		line-height: 1;
	}

	.about .cont01 h2::before {
		content: "";
		position: absolute;
		width: 3px;
		height: 85px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 22px;
		color: #065aaa;
		line-height: 1.4;
		padding-top: 5px;
	}

	.about .cont01 .text01 {
		font-size: 16px;
		line-height: 2.3;
		margin-top: 18px;
	}

	.about .cont01 .text01:first-of-type {
		margin-top: 30px;
	}

	.about .cont01 .img_box {
		position: absolute;
		right: 0;
		margin-top: 20px;
	}

	.about .cont01 .img_box figure {
		position: absolute;
	}

	.about .cont01 .img_box figure:nth-of-type(1) {
		right: 208px;
		top: 85px;
		width: 185px;
		transform: scale(0.7);
	}

	.about .cont01 .img_box figure:nth-of-type(2) {
		width: 336px;
		top: -66px;
		right: -55px;
		transform: scale(0.7);
	}

	.about .cont01 .img_box figure:nth-of-type(3) {
		width: 224px;
		top: 243px;
		right: 153px;
		transform: scale(0.7);
	}

	.about .cont01 .img_box figure:nth-of-type(4) {
		right: 55px;
		top: 265px;
		width: 148px;
		transform: scale(0.7);
	}
	.about .cont01 .img_box figure img {
		border-radius: 10px;
	}


	/* cont02 */
	.about .cont02 {
		position: relative;
	}

	.about .cont02::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -25px;
		left: 20px;
		top: -624px;
		left: -35px;
		transform: scale(0.5);
	}

	.about .cont02 .inner {
		padding: 90px 20px;
		background: #e2f1ff;
	}

	.about .cont02 .cont02_01 {
		position: relative;
	}

	.about .cont02 .cont02_01::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		bottom: -93px;
		left: -4px;
		transform: scale(0.7);
	}

	.about .cont02 .cont02_01::after {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -138px;
		right: -38px;
		transform: scale(0.6);
	}

	.about .cont02 .cont02_01 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.about .cont02 .cont02_01 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.about .cont02 .cont02_01 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/about_text01.png) center center / cover no-repeat;
		width: 335.3px;
		height: 40.6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.8);
		z-index: -1;
	}


	.about .cont02 .cont02_01 .box {
		position: relative;
		margin-top: 25px;
	}

	.about .cont02 .cont02_01 .box:first-of-type {
		margin-top: 50px;
	}

	.about .cont02 .cont02_01 .box figure {
		position: absolute;
		width: 380px;
		left: 50%;
		transform: translateX(-50%);
		top: 15px;
		z-index: 1;
	}

	.about .cont02 .cont02_01 .text_box {
		border-radius: 10px;
		background: #fff;
		padding: 272px 20px 30px;
	}

	.about .cont02 .cont02_01 .box .text01 {
		font-size: 16px;
		margin-top: 15px;
		line-height: 2.3;
	}

	.about .cont02 .cont02_01 .box h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 74px;
		line-height: 48px;
		margin-top: 25px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(3) h3 {
		line-height: 1.5;
	}

	.about .cont02 .cont02_01 .box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont02 .cont02_01 .box:nth-of-type(1) h3::before {
		background: url(img/vision01.png) center / cover;
		width: 34.4px;
		height: 44px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(2) h3::before {
		background: url(img/vision02.png) center / cover;
		width: 39.2px;
		height: 44px;
	}

	.about .cont02 .cont02_01 .box:nth-of-type(3) h3::before {
		background: url(img/vision03.png) center / cover;
		width: 39.2px;
		height: 44px;
	}

	.about .cont02 .cont02_01 .box h3::after {
		position: absolute;
		content: "";
		left: 55px;
		top: 0;
		width: 3px;
		height: 48px;
		border-radius: 2px;
		background: #065aaa;
	}

	.about .cont02 .cont02_01 .box.box:nth-of-type(3) h3::after {
		top: 50%;
		transform: translateY(-50%);
	}

	.about .cont02 .cont02_01 .box figure img{
		border-radius: 10px;
		border: 2px solid #348de2;
	}

	.about .cont02 .cont02_02 {
		background: #fff;
		border: 3px solid #065aaa;
		padding: 0 0 45px;
		margin: 90px 20px 0;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.about .cont02 .cont02_02 h2 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #065aaa;
		border-radius: 3px 3px 0 0;
		line-height: 1;
		padding-block: 10px;
	}

	.about .cont02 .cont02_02 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco05.png) center / cover no-repeat;
		width: 104.8px;
		height: 120.8px;
		right: -16px;
		top: -100px;
	}

	.about .cont02 .cont02_02 .tet_box {
		text-align: center;
		margin: 35px 20px 0;
	}

	.about .cont02 .cont02_02 .tet_box .text01 {
		line-height: 1.3;
	}

	.about .cont02 .cont02_02 .tet_box .text01 {
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
	}

	.about .cont02 .cont02_02 .tet_box .text01 span {
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
	}

	.about .cont02 .cont02_02 .tet_box .text02 {
		font-size: 16px;
		margin-top: 20px;
		text-align: left;
	}

	.about .cont02 .cont02_02 .tet_box:nth-of-type(1) .text02 {
		padding-bottom: 40px;
		border-bottom: 2px dashed #065aaa;
	}

	.about .cont02 .cont02_02 .tet_box .text02 span {
		font-size: 16px;
		font-weight: bold;
		color: #065aaa;
	}


	/* cont03 */
	.about .cont03 {
		position: relative;
		padding: 45px 0 0;
	}

	.about .cont03 .box {
		padding: 0 15px;
	}

	.about .cont03::before {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center / cover no-repeat;
		width: 152px;
		height: 348px;
		top: -157px;
		transform: scale(0.5);
		right: -28px;
		z-index: 1;
	}

	.about .cont03 .box figure {
		position: absolute;
		top: 50px;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		box-sizing: border-box;
		overflow: hidden;
		width: 380px;
	}

	.about .cont03 .text_box {
		margin-top: 235px;
		position: relative;
		background: url(img/common_bg_01.png);
		border-radius: 10px 0 0 10px;
		padding: 30px 20px 25px;
		z-index: 1;
		right: -15px;
	}

	.about .cont03 .text_box h2 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1.5;
		padding-left: 20px;
		letter-spacing: -0.5px;
		word-break: keep-all;
	}

	.about .cont03 .text_box h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 6px;
		height: 60px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 3px;
	}

	.about .cont03 .text_box .text01 {
		margin-top: 15px;
		font-size: 16px;
	}

	.about .cont03 .review_box {
		text-align: center;
		padding: 0 30px;
		margin-top: 40px;
	}

	.about .cont03 .review_box .cont {
		position: relative;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 10px;
		margin-top: 20px;
		padding: 30px 0;
		box-sizing: border-box;
	}

	.about .cont03 .review_box.cont:first-of-type {
		margin-top: 50px;
	}

	.about .cont03 .review_box .cont::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -35px;
		left: 1px;
		width: 89px;
		height: 103px;
		transform: scale(0.85);
	}


	.about .cont03 .review_box .cont h3 {
		line-height: 1;
		font-size: 24px;
		font-weight: bold;
		color: #065aaa;
	}

	.about .cont03 .review_box .cont h3 span:nth-of-type(1) {
		display: block;
		font-weight: bold;
		color: #555;
		padding-bottom: 15px;
	}
	.about .cont03 .review_box .cont.box01 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks01.png) center center/cover no-repeat; 
	   width: 292px;
	   height: 58px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
	.about .cont03 .review_box .cont.box02 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks02.png) center center/cover no-repeat; 
	   width: 260px;
	   height: 58px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
	.about .cont03 .review_box .cont.box03 h3 span:nth-of-type(1)::after {
       content: "";
	   background: url(img/home_thanks03.png) center center/cover no-repeat; 
	   width: 78px;
	   height: 51px;
	   position: absolute;
       top: 66px;
	   left: 50%;
	   transform: translateX(-50%) scale(0.8);
	}
	.about .cont03 .review_box .cont h3 span:nth-of-type(2),
	.about .cont03 .review_box .cont h3 span:nth-of-type(3),
	.about .cont03 .review_box .cont h3 span:nth-of-type(4) {
       visibility: hidden;
	}
	.about .cont03 .review_box .cont .text02 {
		line-height: 1.5;
		font-size: 18px;
		font-weight: bold;
		margin-top: 33px;
	}


	/* topic_wrap */
	.about .topic_wrap {
		margin: 60px auto 80px;
		padding: 0 20px;
	}

	.about .topic_wrap .breaking_wrap {
		position: relative;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 10px;
		padding: 40px 8px 8px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.about .topic_wrap .breaking_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.about .topic_wrap .breaking_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.about .topic_wrap .breaking_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
		word-break: keep-all;
	}

	.about .topic_wrap .breaking_wrap .breaking_box {
		height: 230px;
		background: #fff;
		border-radius: 5px;
		margin-top: 18px;
		overflow-y: auto;
		padding: 25px 15px 15px 15px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont {
		position: relative;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: repeating-linear-gradient(to right,
			#082a4a 0,
			#082a4a 11px,
			transparent 11px,
			transparent 22px);
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont .date {
		color: #082a4a;
		font-weight: bold;
		line-height: 1;
		padding-top: 25px;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont:nth-of-type(1) .date {
		padding-top: 0;
	}

	.about .topic_wrap .breaking_wrap .breaking_box .cont .text02 {
		line-height: 1.5;
		font-weight: bold;
		padding: 15px 0 25px;
	}

	.about .topic_wrap .reviews_wrap {
		position: relative;
		background: #e2f1ff;
		border: 1px solid #065aaa;
		border-radius: 10px;
		padding: 40px 8px 8px;
		box-sizing: border-box;
		margin-top: 50px;
	}

	.about .topic_wrap .reviews_wrap h2 {
		position: absolute;
		top: -17.5px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		color: #444;
		font-size: 14px;
		font-weight: bold;
		width: 400px;
		height: 35px;
		line-height: 35px;
		border: 1px solid #065aaa;
		border-radius: 17.5px;
		background: #fff;
	}

	.about .topic_wrap .reviews_wrap h2 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
	}

	.about .topic_wrap .reviews_wrap h2::before {
		content: "";
		position: absolute;
		background: #065aaa;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		width: 18px;
		height: 11px;
		bottom: -11px;
		left: 50%;
		transform: translateX(-50%);
	}

	.about .topic_wrap .reviews_wrap .text01 {
		text-align: center;
		color: #082a4a;
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5;
	}

	.about .topic_wrap .reviews_wrap .reviews_box {
		overflow-y: auto;
		height: 260px;
		background: #fff;
		border-radius: 5px;
		margin-top: 18px;
		border-top: none;
        padding: 15px;
		box-sizing: border-box;
	}

	.about .topic_wrap .breaking_box::-webkit-scrollbar,
	.about .topic_wrap .reviews_box::-webkit-scrollbar {
		width: 3px;
	}
	.about .topic_wrap .breaking_box::-webkit-scrollbar-track,
	.about .topic_wrap .reviews_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.about .topic_wrap .breaking_box::-webkit-scrollbar-thumb,
	.about .topic_wrap .reviews_box::-webkit-scrollbar-thumb {
		background-color: #eee;
	}



/* professional
------------------------------------------------------------------------*/
	/* cont01 */
	.professional .cont01 {
		margin-top: 20px;
		padding: 295px 20px 45px;
		display: flex;
		gap: 18px;
		position: relative;
	}

	.professional .cont01 h2 {
		font-size: 14px;
		font-weight: bold;
		padding-left: 18px;
		position: relative;
		line-height: 1;
		margin-top: 35px;
	}

	.professional .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 20px;
		color: #065aaa;
		line-height: 1.4;
		padding-top: 8px;
	}

	.professional .cont01 h2::before {
		content: "";
		position: absolute;
		width: 4px;
		height: 79px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont01 .text01 {
		font-size: 16px;
		line-height: 2.2;
		margin-top: 15px;
	}

	.professional .cont01 .text01:first-of-type {
		margin-top: 20px;
	}

	.professional .cont01 figure {
		position: absolute;
		top: 0;
		left: -2px;
		width: 420px;
		border-radius: 0 10px 10px 0;
		border: 2px solid #348de2;
		border-left: none;
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont02 */
	.professional .cont02 {
		padding: 50px 20px 80px;
	}

	.professional .cont02 .cont02_01 h2 {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		text-align: center;
	}

	.professional .cont02 .cont02_01 h2::before {
		position: absolute;
		content: "";
		background: url(img/professional_text01.png) center / cover no-repeat;
		width: 326.2px;
		height: 40.6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: -1;
	}

	.professional .cont02 .cont02_01 .text01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		text-align: center;
		margin: 25px auto 0;
		line-height: 1.3;
	}

	.professional .cont02 .cont02_01 .text01::before {
		position: absolute;
		content: "";
		background: url("img/common_deco03.png") no-repeat;
		width: 23px;
		height: 33px;
		left: -0;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont02 .cont02_01 .text01::after {
		position: absolute;
		content: "";
		background: url("img/common_deco04.png") no-repeat;
		width: 23px;
		height: 33px;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.professional .cont02 .cont02_01 .box {
		margin-top: 45px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 {
		position: relative;
		border: 2px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		width: 375px;
		padding: 226px 33px 33px;
		margin: 30px auto 0;
		overflow: hidden;
	}

	.professional .cont02 .cont02_01 .box .text_box01::before {
		position: absolute;
		content: "";
		top: 186px;
		left: 50%;
		transform: translate(-50%);
		width: 80px;
		height: 80px;
		z-index: 1;
		border-radius: 40px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(1):before {
		background: url("img/point01.png") center center no-repeat #fff;
		background-size: 36px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(2):before {
		background: url("img/point02.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01:nth-of-type(3):before {
		background: url("img/point03.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}

	.professional .cont02 .cont02_01 .box .text_box01 h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 20px;
		margin-top: 35px;
		line-height: 32px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 0;
		top: 0;
		width: 6px;
		height: 32px;
		border-radius: 3px;
	}

	.professional .cont02 .cont02_01 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 20px;
	}


	/*.cont02_02  */
	.professional .cont02 .cont02_02 {
		margin-top: 40px;
		background: #e2f1ff;
		border: 2px solid #348de2;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.professional .cont02 .cont02_02 h2 {
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #348de2;
		border-radius: 3px 3px 0 0;
		line-height: 45px;
	}

	.professional .cont02 .cont02_02 ul {
		width: 388px;
		padding: 15px 0;
		gap: 12px;
		grid-template-columns: repeat(2, auto);
		display: grid;
		margin: 0 auto;
	}

	.professional .cont02 .cont02_02 ul li {
		position: relative;
		line-height: 36px;
		border: 1px solid #348de2;
		font-weight: bold;
		border-radius: 3px;
		box-sizing: border-box;
		color: #082a4a;
		padding-left: 50px;
		background: #fff;
		font-size: 14px;
	}

	.professional .cont02 .cont02_02 ul li::before {
		position: absolute;
		content: "";
		top: 50%;
		transform: translateY(-50%) scale(0.7);
		transform-origin: center;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(1):before {
		background: url("img/professional_item01.png") no-repeat;
		width: 44px;
		height: 34px;
		left: 5.4px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(2):before {
		background: url("img/professional_item02.png") no-repeat;
		width: 42px;
		height: 34px;
		left: 5.8px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(3):before {
		background: url("img/professional_item03.png") no-repeat;
		width: 39px;
		height: 34px;
		left: 9.8px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(4):before {
		background: url("img/professional_item04.png") no-repeat;
		width: 36px;
		height: 37px;
		left: 11.2px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(5):before {
		background: url("img/professional_item05.png") no-repeat;
		width: 31px;
		height: 35px;
		left: 12.6px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(6):before {
		background: url("img/professional_item06.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 11.2px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(7):before {
		background: url("img/professional_item07.png") no-repeat;
		width: 37px;
		height: 34px;
		left: 11.2px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(8):before {
		background: url("img/professional_item08.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 11.9px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(9):before {
		background: url("img/professional_item09.png") no-repeat;
		width: 36px;
		height: 36px;
		left: 11.2px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(10):before {
		background: url("img/professional_item10.png") no-repeat;
		width: 35px;
		height: 35px;
		left: 11.2px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(11):before {
		background: url("img/professional_item11.png") no-repeat;
		width: 34px;
		height: 35px;
		left: 11.9px;
	}

	.professional .cont02 .cont02_02 ul li:nth-of-type(12):before {
		background: url("img/professional_item12.png") no-repeat;
		width: 28px;
		height: 35px;
		left: 17px;
	}


	/*.cont02_03  */
	.professional .cont02 .cont02_03 {
		margin-top: 30px;
		background: #e2f1ff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.professional .cont02 .cont02_03 h2 {
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #065aaa;
		border-radius: 3px 3px 0 0;
		line-height: 45px;
	}

	.professional .cont02 .cont02_03 ul {
		padding: 15px 0;
	}

	.professional .cont02 .cont02_03 ul li {
		font-weight: bold;
		width: 320px;
		margin: 15px auto 0;
		color: #fff;
		background: #348de2;
		font-size: 16px;
		line-height: 32px;
		text-align: center;
		border: 2px solid #348de2;
		border-radius: 5px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.professional .cont02 .cont02_03 ul li:first-of-type {
		margin-top: 0;
	}


	/* cont03 */
	.professional .cont03 {
		background: url(img/common_bg_01.png);
		padding: 80px 0;
		background-size: 88px auto;
	}

	.professional .cont03 .inner {
		position: relative;
	}

	.professional .cont03 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -167px;
		right: -35px;
		transform: scale(0.6);
	}

	.professional .cont03 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
	}

	.professional .cont03 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.professional .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text02.png) center center / cover no-repeat;
		width: 158.2px;
		height: 40.6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.professional .cont03 .box {
		display: flex;
		flex-wrap: wrap;
		gap: 28px;
		margin-top: 50px;
	}

	.professional .cont03 .item {
		position: relative;
		width: 380px;
		background: #fff;
		padding: 43px 39px 38px;
		border: 2px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.professional .cont03 .item::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		background: #065aaa;
		left: 50%;
		bottom: -13px;
		transform: translateX(-50%);
		width: 25px;
		height: 13px;
	}

	.professional .cont03 .item:last-of-type:before {
		display: none;
	}

	.professional .cont03 .item .text01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		padding-left: 86px;
		line-height: 40px;
	}

	.professional .cont03 .item .text01::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 34px;
		height: 43px;
	}

	.professional .cont03 .item:nth-of-type(1) .text01:before {
		width: 30px;
		background: url("img/flow01.png") no-repeat;
		background-size: 30px;
	}

	.professional .cont03 .item:nth-of-type(2) .text01:before {
		background: url("img/flow02.png") no-repeat;
		background-size: 34px;
	}

	.professional .cont03 .item:nth-of-type(3) .text01:before {
		background: url("img/flow03.png") no-repeat;
		background-size: 34px;
	}

	.professional .cont03 .item:nth-of-type(4) .text01:before {
		background: url("img/flow04.png") no-repeat;
		background-size: 34px;
	}

	.professional .cont03 .item:nth-of-type(5) .text01:before {
		background: url("img/flow05.png") no-repeat;
		background-size: 34px;
	}

	.professional .cont03 .item:nth-of-type(6) .text01:before {
		background: url("img/flow06.png") no-repeat;
		background-size: 34px;
	}

	.professional .cont03 .item .text01::after {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 60px;
		top: 0;
		width: 3px;
		height: 38px;
	}

	.professional .cont03 .item .text02 {
		font-size: 16px;
		margin-top: 20px;
		letter-spacing: -1.2px;
	}

	.professional .cont03 .item figure {
		margin-top: 25px;
	}


	/* cont04 */
	.professional .cont04 {
		padding: 80px 20px;
		margin: 0 auto;
		max-width: 1380px;
	}

	.professional .cont04 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.4;
		color: #082a4a;
	}

	.professional .cont04 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.professional .cont04 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text03.png) center center / cover no-repeat;
		width: 205.8px;
		height: 40.6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.professional .cont04 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 30px;
	}

	.professional .cont04 h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.professional .cont04 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.professional .cont04 .category_01,
	.professional .cont04 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 12px;
		color: #fff;
		font-weight: bold;
		margin-top: 15px;
	}

	.professional .cont04 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.professional .cont04 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.professional .cont04 .text02 {
		margin-top: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.professional .cont04 .box .item {
		width: 100%;
		position: relative;
		margin-top: 30px;
	}

	.professional .cont04 .box .item:first-of-type {
		margin-top: 40px;
	}

	.professional .cont04 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.professional .cont04 .box .img_box {
		display: flex;
	}

	.professional .cont04 .box .img_box figure {
		position: relative;
	}

	.professional .cont04 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.professional .cont04 .box .img_box figure img {
		width: 205px;
	}

	.professional .cont04 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.professional .cont04 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.professional .cont04 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.professional .cont04 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.professional .cont04 .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin: 30px auto 0;
	}

	.professional .cont04 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.professional .cont04 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont05 */
	.professional .cont05 {
		background: #e2f1ff;
		padding: 80px 20px;
	}

	.professional .cont05 .inner {
		position: relative;
		padding: 0;
	}

	.professional .cont05 .inner::before {
		position: absolute;
		content: "";
		background: url("img/common_deco07.png") center / cover no-repeat;
		width: 168px;
		height: 364px;
		top: -260px;
		left: -52px;
		transform: scale(0.4);
	}

	.professional .cont05 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.4;
		color: #082a4a;
	}

	.professional .cont05 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
	}

	.professional .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text04.png) center center / cover no-repeat;
		width: 298.9px;
		height: 40.6px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.professional .cont05 .cate {
		display: flex;
		gap: 10px;
		justify-content: center;
		margin-top: 35px;
	}

	.professional .cont05 .cate p {
		color: #fff;
		line-height: 36px;
		text-align: center;
		font-weight: bold;
	}

	.professional .cont05 .cate p:nth-of-type(1) {
		width: 245px;
		background: #348de2;
	}

	.professional .cont05 .cate p:nth-of-type(2) {
		width: 150px;
		background: #0091a2;
	}

	.professional .cont05 .text01 {
		line-height: 2.3;
		font-size: 16px;
		margin-top: 30px;
	}

	.professional .cont05 .price_box .item {
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		width: 360px;
		margin: 15px auto 0;
	}

	.professional .cont05 .price_box .item:first-of-type {
		margin-top: 35px;
	}

	.professional .cont05 .price_box .item p:nth-of-type(1) {
		font-size: 16px;
		color: #fff;
		background: #065aaa;
		border-radius: 3px 3px 0 0;
		line-height: 30px;
		font-weight: bold;
	}

	.professional .cont05 .price_box .item p:nth-of-type(2) {
		font-size: 34px;
		font-weight: bold;
	}

	.professional .cont05 .price_box .item p:nth-of-type(2) span {
		font-size: 26px;
		font-weight: bold;
		font-weight: bold;
	}

	.professional .cont05 .text03 {
		margin-top: 10px;
		text-align: right;
	}

	.professional .cont05 .option_box {
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #fff;
		padding: 45px 15px 28px;
		text-align: center;
		margin-top: 30px;
	}

	.professional .cont05 .option_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.professional .cont05 .option_box h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		background-size: 36px;
        width: 36px;
        height: 35px;
        left: -34px;
        top: -27px;
	}

	.professional .cont05 .option_box .text02 {
		font-size: 16px;
		margin-top: 20px;
	}

	.professional .cont05 .option_box .text04 {
		text-align: right;
	}

	.professional .cont05 .option_box .price_table {
		margin: 10px auto 0;
		border-collapse: separate;
		border-spacing: 3px 8px;
	}

	.professional .cont05 .option_box .price_table th,
	.professional .cont05 .option_box .price_table td {
		background: #e6f0fa;
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		line-height: 50px;
		margin: 0 auto;
	}

	.professional .cont05 .option_box .price_table th {
		padding: 0 30px;
	}

	.professional .cont05 .option_box .price_table td {
		padding: 0 25px;
	}

	.professional .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.professional .cont05 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 16px;
	}

	.professional .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont06 */
	.professional .cont06 {
		padding: 80px 20px
	}

	.professional .cont06 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.professional .cont06 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.professional .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text05.png) center center / cover no-repeat;
		width: 144.2px;
		height: 39.2px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.professional .cont06 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 50px;
	}

	.professional .cont06 .box .text_box {
		padding-top: 329px;
	}

	.professional .cont06 .box figure {
		position: absolute;
		top: 0;
	}

	.professional .cont06 .box .text_box p {
		margin-top: 30px;
		font-size: 16px;
		line-height: 2.1;
	}

	.professional .cont06 .area {
		height: 328px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 30px;
	}


	.professional .cont06 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 3px 3px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.professional .cont06 .area .area_list {
		text-align-last: left;
		height: 255px;
		overflow-y: auto;
		margin: 25px 5px 0 15px;
		padding-right: 20px;
	}

	.professional .cont06 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		padding: 25px 0;
	}

	.professional .cont06 .area .area_list li {
		line-height: 1;
		font-size: 14px;
	}

	.professional .cont06 .area .area_list>li {
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.professional .cont06 .area .area_list>li:last-of-type {
		margin: 0;
	}



/* cleaning
------------------------------------------------------------- */
	/* cont01 */
	.cleaning .cont01 {
		position: relative;
		padding: 0 20px;
		margin: 20px auto 60px;
	}

	.cleaning .cont01 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.8;
		padding: 0 0 0 18px;
		width: fit-content;
		font-size: 18px;
		margin-top: 20px;
	}

	.cleaning .cont01 h2 span {
		font-size: 24px;
		font-weight: bold;
		padding-top: 5px;
		display: block;
		line-height: 1.2;
	}

	.cleaning .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.cleaning .cont01 .text_box01 {
		padding-top: 255px;
	}

	.cleaning .cont01 .text01 {
		font-size: 16px;
		line-height: 2.2;
		padding: 20px 0 0;
	}

	.cleaning .cont01 .button a {
		position: relative;
		display: block;
		width: 360px;
		height: 50px;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		border-radius: 25px;
	}

	.cleaning .cont01 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.cleaning .cont01 figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		width: calc(100% - 30px);
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont02 */

	.cleaning .cont02 {
		background: url(img/common_bg_01.png);
		padding: 80px 0;
		background-size: 88px auto;
	}

	.cleaning .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
	}

	.cleaning .cont02 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -198px;
		right: -74px;
		transform: scale(0.6);
	}

	.cleaning .cont02 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 10px;
	}

	.cleaning .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text01.png) center center / cover no-repeat;
		width: 480px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}


	.cleaning .cont02 .box .text_box01 {
		position: relative;
		border: 2px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		width: 375px;
		padding: 226px 33px 33px;
		margin: 30px auto 0;
		background: #fff;
		overflow: hidden;
	}

	.cleaning .cont02 .box .text_box01::before {
		position: absolute;
		content: "";
		top: 186px;
		left: 50%;
		transform: translate(-50%);
		width: 80px;
		height: 80px;
		z-index: 1;
		border-radius: 40px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(1):before {
		background: url("img/point01.png") center center no-repeat #fff;
		background-size: 36px 43px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(2):before {
		background: url("img/point02.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.cleaning .cont02 .box .text_box01:nth-of-type(3):before {
		background: url("img/point03.png") center center no-repeat #fff;
		background-size: 40px 43px;
	}

	.cleaning .cont02 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}

	.cleaning .cont02 .box .text_box01 h3 {
		position: relative;
		font-size: 21px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 20px;
		margin-top: 35px;
		line-height: 32px;
	}

	.cleaning .cont02 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left: 0;
		top: 0;
		width: 6px;
		height: 32px;
		border-radius: 3px;
	}

	.cleaning .cont02 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 20px;
	}


	/* cont03 */
	.cleaning .cont03 {
		position: relative;
		padding: 0 20px;
		margin: 80px auto;
	}

	.cleaning .cont03 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.8;
		padding: 0 0 0 18px;
		width: fit-content;
		font-size: 18px;
		margin-top: 20px;
	}

	.cleaning .cont03 h2 span {
		font-size: 24px;
		font-weight: bold;
		padding-top: 5px;
		display: block;
		line-height: 1.2;
	}

	.cleaning .cont03 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.cleaning .cont03 .text_box01 {
		padding-top: 242px;
	}

	.cleaning .cont03 .text01 {
		font-size: 16px;
		line-height: 2.2;
		padding: 20px 0 40px;
	}

	.cleaning .cont03 .button a {
		position: relative;
		display: block;
		width: 360px;
		height: 50px;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		border-radius: 25px;
		margin: auto;
	}

	.cleaning .cont03 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.cleaning .cont03 figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		width: calc(100% - 30px);
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont04 */
	.cleaning .cont04 {
		background: #e2f1ff;

	}

	.cleaning .cont04 .inner {
		padding: 80px 20px;
	}

	.cleaning .cont04 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.5;
		color: #082a4a;
	}

	.cleaning .cont04 h2::after {
		content: "";
		position: absolute;
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		left: -48px;
        top: -85px;
		transform: scale(0.4);
	}

	.cleaning .cont04 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center center / cover no-repeat;
		right: -45px;
		top: -258px;
		width: 152px;
		height: 348px;
		z-index: 1;
		transform: scale(0.4);
	}

	.cleaning .cont04 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 10px;
	}

	.cleaning .cont04 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/cleaning_text02.png) center center / cover no-repeat;
		width: 476px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.cleaning .cont04 .text01:first-of-type {
		font-size: 16px;
		text-align: center;
		margin-top: 32px;
	}

	.cleaning .cont04 .box {
		border: 1px solid #065aaa;
		border-radius: 10px;
		background: #fff;
		margin-top: 40px;
	}

	.cleaning .cont04 .box .flex figure {
		margin: 30px 15px;
	}

	.cleaning .cont04 .box .flex .box01,
	.cleaning .cont04 .box .flex .box02 {
		border: 1px solid #348de2;
		background: #e2f1ff;
		position: relative;
		margin: 25px 15px 0;
	}

	.cleaning .cont04 .box .flex .box02 {
		border: 1px solid #0091a2;
		background: #e9fdff;
	}

	.cleaning .cont04 .box .flex .box01 h3,
	.cleaning .cont04 .box .flex .box02 h3 {
		background: #348de2;
		color: #fff;
		text-align: center;
		font-size: 18px;
		font-weight: bold;
	}

	.cleaning .cont04 .box .flex .box02 h3 {
		background: #0091a2;
	}

	.cleaning .cont04 .box .flex .box01 ul,
	.cleaning .cont04 .box .flex .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 40px;
	}

	.cleaning .cont04 .box .flex .box01 ul li,
	.cleaning .cont04 .box .flex .box02 ul li {
		font-weight: bold;
	}

	.cleaning .cont04 .box .flex .box01::after,
	.cleaning .cont04 .box .flex .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #348de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.cleaning .cont04 .box .flex .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.cleaning .cont04 .box .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 20px 15px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.cleaning .cont04 .box .text span {
		color: #065aaa;
		font-weight: bold;
	}


	/* cont05 */
	.cleaning .cont05.inner {
		margin: 80px auto;
		padding: 0 20px;
        display: flex;
		flex-direction: column;
	}

	.cleaning .cont05 .text_box {
		position: relative;
		order: 2;
	}

	.cleaning .cont05 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding: 0 0 0 15px;
		width: fit-content;
		font-size: 20px;
		margin-top: 30px;
		white-space: nowrap;
	}

	.cleaning .cont05 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.cleaning .cont05 p {
		font-size: 16px;
		margin-top: 15px;
	}

	.cleaning .cont05 iframe {
		width: 410px;
		aspect-ratio: 16 / 9;
		height: auto;
		position: static;
		border: 2px solid #065aaa;
		border-radius: 8px;
		box-sizing: border-box;
		display: block;
		order: 1;
	}


	/* cont06 */
	.cleaning .cont06 {
		background: url(img/common_bg_01.png);
		background-size: 88px auto;
	}

	.cleaning .cont06 .inner {
		padding: 80px 20px;
		margin: 0 auto;
	}

	.cleaning .cont06 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
	}

	.cleaning .cont06 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center / cover no-repeat;
		width: 113px;
		height: 131px;
        right: -12px;
		top: 57px;
		transform: scale(0.4);
	}

	.cleaning .cont06 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.cleaning .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text03.png) center center / cover no-repeat;
		width: 548px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.cleaning .cont06 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 30px;
	}

	.cleaning .cont06 h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.cleaning .cont06 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.cleaning .cont06 .category_01,
	.cleaning .cont06 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 12px;
		color: #fff;
		font-weight: bold;
		margin-top: 15px;
	}

	.cleaning .cont06 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.cleaning .cont06 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.cleaning .cont06 .text02 {
		margin-top: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.cleaning .cont06 .box .item {
		width: 100%;
		position: relative;
		margin-top: 30px;
	}

	.cleaning .cont06 .box .item:first-of-type {
		margin-top: 40px;
	}

	.cleaning .cont06 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.cleaning .cont06 .box .img_box {
		display: flex;
	}

	.cleaning .cont06 .box .img_box figure {
		position: relative;
	}

	.cleaning .cont06 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.cleaning .cont06 .box .img_box figure img {
		width: 205px;
	}

	.cleaning .cont06 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.cleaning .cont06 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.cleaning .cont06 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.cleaning .cont06 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.cleaning .cont06 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.cleaning .cont06 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.cleaning .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont07 */
	.cleaning .cont07 {
		padding: 80px 20px;
	}

	.cleaning .cont07 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.cleaning .cont07 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco10.png) no-repeat;
		width: 254px;
		height: 192px;
		top: -94px;
		left: -56px;
		transform: scale(0.5);
	}

	.cleaning .cont07 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.cleaning .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/cleaning_text04.png) center center / cover no-repeat;
		width: 225px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.cleaning .cont07 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 20px;
	}

	.cleaning .cont07 .price_box {
		text-align: center;
		margin-top: 40px;
	}

	.cleaning .cont07 .price_box .item {
		background: #fff;
		border: 2px solid #348de2;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) {
		border: 2px solid #065aaa;
		margin-top: 30px;
	}

	.cleaning .cont07 .price_box h3 {
		color: #fff;
		background: #348de2;
		border-radius: 3px 3px 0 0;
		line-height: 1;
		font-weight: bold;
		font-size: 20px;
		padding: 12px 0;
	}
	
	.cleaning .cont07 .price_box h3 {
		display: block;
		padding-top: 5px;
		font-size: 14px;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) h3 {
		background: #065aaa;
	}

	.cleaning .cont07 .price_box .price_text01 {
		font-size: 16px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 25px;
		text-align: left;
	}

	.cleaning .cont07 .price_box .price_text01 span {
		font-size: 14px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;

	}

	.cleaning .cont07 .price_box .price_text01 span .span01 {
		font-size: 20px;
	}

	.cleaning .cont07 .price_box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.cleaning .cont07 .price_box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -34px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.cleaning .cont07 .price_box .price_text02 {
		display: inline-block;
		font-size: 50px;
		font-weight: bold;
		color: #348de2;
		padding-left: 5px;
		line-height: 1;
	}

	.cleaning .cont07 .price_box .price_text02 span {
		font-size: 28px;
		font-weight: bold;
	}

	.cleaning .cont07 .price_box .item:nth-of-type(2) .price_text02 {
		color: #065aaa;
		letter-spacing: -1px;
	}

	.cleaning .cont07 .price_box .item .cate01,
	.cleaning .cont07 .price_box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 30px;
		margin-top: 10px;
	}

	.cleaning .cont07 .price_box .item .cate01 {
		padding: 0 29px;
		background: #348de2;
	}

	.cleaning .cont07 .price_box .item .cate02 {
		padding: 0 45px;
		background: #0091a2;
	}


	.cleaning .cont07 .price_box .item .text02 {
		font-size: 16px;
		padding: 15px 15px 28px;
		text-align: left;
		line-height: 1.5;
	}

	.cleaning .cont07 .text03 {
		line-height: 1.5;
		margin-top: 10px;
	}


	.cleaning .cont07 .option_box {
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #e2f1ff;
		padding: 45px 15px 28px;
		text-align: center;
		margin-top: 30px;
		position: relative;
	}

	.cleaning .cont07 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 186.4px;
		height: 147.2px;
		top: 36px;
		right: -65px;
		transform: scale(0.4);
	}

	.cleaning .cont07 .option_box h4 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.cleaning .cont07 .option_box h4::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		background-size: 36px;
        width: 36px;
        height: 35px;
        left: -34px;
        top: -27px;
	}

	.cleaning .cont07 .option_box .text02 {
		font-size: 16px;
		margin-top: 20px;
	}

	.cleaning .cont07 .option_box .text04 {
		text-align: right;
		padding-right: 97px;
		margin-top: 10px;
	}

	.cleaning .cont07 .option_box .price_table {
		margin: 10px auto 0;
		border-collapse: separate;
		border-spacing: 3px 8px;
	}

	.cleaning .cont07 .option_box .price_table th,
	.cleaning .cont07 .option_box .price_table td {
		background: #fff;
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		line-height: 50px;
		margin: 0 auto;
	}

	.cleaning .cont07 .option_box .price_table th {
		padding: 0 30px;
	}

	.cleaning .cont07 .option_box .price_table td {
		padding: 0 25px;
	}

	.cleaning .cont07 .option_box .text03 {
		text-align: right;
		margin-top: 0;
	}

	.cleaning .cont07 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.cleaning .cont07 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.cleaning .cont07 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont08 */
	.cleaning .cont08 {
		background: #e2f1ff;
	}

	.cleaning .cont08 .inner {
		padding: 80px 20px
	}

	.cleaning .cont08 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.cleaning .cont08 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.cleaning .cont08 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text05.png) center center / cover no-repeat;
		width: 144.2px;
		height: 39.2px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px));
		z-index: -1;
	}

	.cleaning .cont08 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 50px;
	}

	.cleaning .cont08 .box .text_box {
		padding-top: 329px;
	}

	.cleaning .cont08 .box figure {
		position: absolute;
		top: 0;
	}

	.cleaning .cont08 .box .text_box p {
		margin-top: 30px;
		font-size: 16px;
		line-height: 2.1;
	}

	.cleaning .cont08 .area {
		height: 328px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 30px;
	}

	.cleaning .cont08 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 4px 4px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.cleaning .cont08 .area .area_list {
		text-align-last: left;
		height: 255px;
		overflow-y: auto;
		margin: 25px 5px 0 15px;
		padding-right: 20px;
	}

	.cleaning .cont08 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		padding: 25px 0;
	}

	.cleaning .cont08 .area .area_list li {
		line-height: 1;
		font-size: 14px;
	}

	.cleaning .cont08 .area .area_list>li {
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.cleaning .cont08 .area .area_list>li:last-of-type {
		margin: 0;
	}


	/* contact_box */
	.cleaning .contact_box {
		margin-top: 80px;
		margin-bottom: 80px;
	}



/* complete
------------------------------------------------------------- */
	/* cont01 */
	.complete .cont01 {
		position: relative;
		padding: 0 20px;
		margin: 20px auto 80px;
	}

	.complete .cont01 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding: 0 0 0 18px;
		width: fit-content;
		font-size: 20px;
		margin-top: 25px;
	}

	.complete .cont01 h2 span {
		font-size: 24px;
		font-weight: bold;
		padding-top: 5px;
		display: block;
		line-height: 1.2;
	}

	.complete .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.complete .cont01 .text_box01 {
		padding-top: 236px;
	}

	.complete .cont01 .text01 {
		font-size: 16px;
		padding: 20px 0 0;
		line-height: 2.2;
	}

	.complete .cont01 .button a {
		position: relative;
		display: block;
		width: 360px;
		height: 50px;
		background: #065aaa;
		border: 1px solid #065aaa;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		border-radius: 25px;
	}

	.complete .cont01 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.complete .cont01 figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		width: calc(100% - 20px);
		overflow: hidden;
		box-sizing: border-box;
	}


	/* cont02 */
	.complete .cont02 {
		background: url(img/common_bg_01.png);
		padding: 80px 0;
		background-size: 88px auto;
	}

	.complete .cont02 .inner {
		padding: 0 30px;
	}

	.complete .cont02 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.complete .cont02 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.complete .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text01.png) center center / cover no-repeat;
		width: 322px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}


	.complete .cont02 .box {
		margin-top: 59px;
	}

	.complete .cont02 .box .text_box01 {
		position: relative;
		border: 2px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		padding: 58px 20px 35px;
		margin: 57px auto 0;
		background: #fff;
	}

	.complete .cont02 .box .text_box01::before {
		position: absolute;
		content: "";
		top: -43.5px;
		left: 50%;
		transform: translate(-50%);
		width: 87px;
		height: 87px;
		z-index: 1;
		border-radius: 44px;
		background-size: 46px 44px;
	}

	.complete .cont02 .box .text_box01:nth-of-type(1):before {
		background: url(img/reason_img02_01.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(2):before {
		background: url(img/reason_img02_02.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(3):before {
		background: url(img/reason_img02_03.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01:nth-of-type(4):before {
		background: url(img/reason_img02_04.png) center center no-repeat #065aaa;
	}

	.complete .cont02 .box .text_box01 figure {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
	}

	.complete .cont02 .box .text_box01 h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont02 .box .text_box01 h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
		transform: scale(0.68);
		left: -36px;
		top: -32px;
		width: 53px;
		height: 47px;
		border-radius: 3px;
	}

	.complete .cont02 .box .text_box01 .text02 {
		font-size: 16px;
		margin-top: 15px;
	}


	/* cont03 */
	.complete .cont03 .inner {
		padding: 80px 20px;
	}

	.complete .cont03 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.4;
		color: #082a4a;
	}

	.complete .cont03 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco05.png);
		width: 131px;
		height: 151px;
		left: -48px;
		top: -85px;
		transform: scale(0.4);
	}

	.complete .cont03 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.complete .cont03 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/complete_text02.png) center center / cover no-repeat;
		width: 476px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.complete .cont03 .text01:first-of-type {
		font-size: 16px;
		text-align: center;
		margin-top: 40px;
	}

	.complete .cont03 .box {
		border: 1px solid #065aaa;
		border-radius: 10px;
		background: #fff;
		margin-top: 40px;
	}

	.complete .cont03 .box .flex figure {
		margin: 30px 15px;
	}

	.complete .cont03 .box .flex .box01,
	.complete .cont03 .box .flex .box02 {
		border: 1px solid #348de2;
		background: #e2f1ff;
		position: relative;
		margin: 25px 15px 0;
	}

	.complete .cont03 .box .flex .box02 {
		border: 1px solid #0091a2;
		background: #e9fdff;
	}

	.complete .cont03 .box .flex .box01 h3,
	.complete .cont03 .box .flex .box02 h3 {
		background: #348de2;
		color: #fff;
		text-align: center;
		font-size: 18px;
		font-weight: bold;
	}

	.complete .cont03 .box .flex .box02 h3 {
		background: #0091a2;
	}

	.complete .cont03 .box .flex .box01 ul,
	.complete .cont03 .box .flex .box02 ul {
		list-style-type: disc;
		margin: 20px 0 20px 40px;
	}

	.complete .cont03 .box .flex .box01 ul li,
	.complete .cont03 .box .flex .box02 ul li {
		font-weight: bold;
	}

	.complete .cont03 .box .flex .box01::after,
	.complete .cont03 .box .flex .box02::after {
		content: "";
		display: block;
		width: 300px;
		height: 1px;
		border-bottom: 1px dashed #348de2;
		position: absolute;
		top: 165px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.complete .cont03 .box .flex .box02::after {
		border-bottom: 1px dashed #0091a2;
	}

	.complete .cont03 .box .text {
		border: 2px dashed #065aaa;
		text-align: center;
		margin: 20px 15px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0;
		line-height: 1.8;
	}

	.complete .cont03 .box .text span {
		color: #065aaa;
		font-weight: bold;
	}


	/* cont04 */
	.complete .cont04 {
		background: #e2f1ff;
		padding: 80px 20px;
	}

	.complete .cont04 .inner {
		padding: 0;
		display: flex;
		flex-direction: column;
	}

	.complete .cont04 .text_box {
		position: relative;
		order: 2;
	}

	.complete .cont04 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding: 0 0 0 18px;
		width: fit-content;
		font-size: 20px;
		margin-top: 30px;
		white-space: nowrap;
	}

	.complete .cont04 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.complete .cont04 p {
		font-size: 16px;
		margin-top: 15px;
	}

	.complete .cont04 iframe {
		width: 400px;
		height: auto;
		position: static;
		border: 2px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
        display: block;
		order: 1;
	}


	/* cont05 */
	.complete .cont05 {
		padding: 80px 20px;
	}

	.complete .cont05 .inner {
		padding: 0;
		margin: 0 auto;
	}

	.complete .cont05 h2 {
		position: relative;
		text-align: center;
		font-size: 28px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.complete .cont05 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco02.png") center / cover no-repeat;
        width: 113px;
        height: 131px;
		top: -90px;
        right: -37px;
        bottom: 40px;
        transform: scale(0.4);  
	}

	.complete .cont05 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.complete .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text03.png) center center / cover no-repeat;
		width: 548px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.complete .cont05 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 30px;
	}

	.complete .cont05 h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 15px;
		margin-top: 19px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.complete .cont05 h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.complete .cont05 .category_01,
	.complete .cont05 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 12px;
		color: #fff;
		font-weight: bold;
		margin-top: 15px;
	}

	.complete .cont05 .category_01 {
		padding: 7px 14px;
		background: #065aaa;
	}

	.complete .cont05 .category_02 {
		padding: 7px 22px;
		background: #348de2;
	}

	.complete .cont05 .text02 {
		margin-top: 10px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.complete .cont05 .box .item {
		width: 100%;
		position: relative;
		margin-top: 30px;
	}

	.complete .cont05 .box .item:first-of-type {
		margin-top: 40px;
	}

	.complete .cont05 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.complete .cont05 .box .img_box {
		display: flex;
	}

	.complete .cont05 .box .img_box figure {
		position: relative;
	}

	.complete .cont05 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.complete .cont05 .box .img_box figure img {
		width: 205px;
	}

	.complete .cont05 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.complete .cont05 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.complete .cont05 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.complete .cont05 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.complete .cont05 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 30px auto 0;
	}

	.complete .cont05 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.complete .cont05 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont06 */
	.complete .cont06 .inner {
		padding: 80px 20px;
		background: #e2f1ff;
	}

	.complete .cont06 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.complete .cont06 h2::before {
		position: absolute;
		content: "";
		background: url("img/common_deco10.png") no-repeat;
		width: 254px;
		height: 192px;
		top: -177px;
		left: -54px;
		transform: scale(0.6);
	}

	.complete .cont06 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.complete .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text04.png) center center / cover no-repeat;
		width: 225px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.complete .cont06 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 20px;
	}

	.complete .cont06 .price_box {
		text-align: center;
		margin-top: 40px;
	}

	.complete .cont06 .price_box .item {
		background: #fff;
		border: 2px solid #00bcc3;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) {
		border: 2px solid #0091a2;
		margin-top: 30px;
	}

	.complete .cont06 .price_box h3 {
		color: #fff;
		background: #00bcc3;
		border-radius: 3px 3px 0 0;
        line-height: 1;
        font-weight: bold;
        font-size: 20px;
        padding: 12px 0;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) h3 {
		background: #0091a2;
	}

	.complete .cont06 .price_box h3 span{
		font-size: 14px;
		display: block;
		padding-top: 5px;
	}

	.complete .cont06 .price_box .price_text01 {
		font-size: 16px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 25px;
		text-align: left;
	}

	.complete .cont06 .price_box .price_text01 span {
		font-size: 14px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;

	}

	.complete .cont06 .price_box .price_text01 span .span01 {
		font-size: 20px;
	}

	.complete .cont06 .price_box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.complete .cont06 .price_box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -34px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.complete .cont06 .price_box .price_text02 {
		display: inline-block;
		font-size: 50px;
		font-weight: bold;
		color: #00bcc3;
		padding-left: 5px;
		line-height: 1;
	}

	.complete .cont06 .price_box .price_text02 span {
		font-size: 28px;
		font-weight: bold;
	}

	.complete .cont06 .price_box .item:nth-of-type(2) .price_text02 {
		color: #0091a2;
		letter-spacing: -1px;
	}

	.complete .cont06 .price_box .item .cate01,
	.complete .cont06 .price_box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 30px;
		margin-top: 10px;
	}

	.complete .cont06 .price_box .item .cate01 {
		padding: 0 29px;
		background: #00bcc3;
	}

	.complete .cont06 .price_box .item .cate02 {
		padding: 0 45px;
		background: #348de2;
	}


	.complete .cont06 .price_box .item .text02 {
		font-size: 16px;
		padding: 20px 20px 28px;
		text-align: left;
		line-height: 1.5;
	}

	.complete .cont06 .text03 {
		line-height: 1.5;
		margin-top: 10px;
	}

	.complete .cont06 .option_box {
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #fff;
		padding: 45px 15px 28px;
		text-align: center;
		margin-top: 30px;
		position: relative;
	}

	.complete .cont06 .option_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 186.4px;
		height: 147.2px;
		top: 36px;
		right: -65px;
		transform: scale(0.4);
	}

	.complete .cont06 .option_box h4 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.complete .cont06 .option_box h4::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
        background-size: 36px;
        width: 36px;
        height: 35px;
        left: -34px;
        top: -27px;
	}

	.complete .cont06 .option_box .text02 {
		font-size: 16px;
		margin-top: 20px;
	}

	.complete .cont06 .option_box .text04 {
		text-align: right;
		padding-right: 97px;
		margin-top: 10px;
	}

	.complete .cont06 .option_box .price_table {
		margin: 10px auto 0;
		border-collapse: separate;
		border-spacing: 3px 8px;
	}

	.complete .cont06 .option_box .price_table th,
	.complete .cont06 .option_box .price_table td {
		background: #e6f0fa;
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		line-height: 50px;
		margin: 0 auto;
	}

	.complete .cont06 .option_box .price_table th {
		padding: 0 30px;
	}

	.complete .cont06 .option_box .price_table td {
		padding: 0 25px;
	}

	.complete .cont06 .option_box .text03 {
		text-align: right;
		margin-top: 0;
	}

	.complete .cont06 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.complete .cont06 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.complete .cont06 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont07 */
	.complete .cont07 {
		padding: 80px 20px;
	}

	.complete .cont07 .inner {
		padding: 80px 15px
	}

	.complete .cont07 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.complete .cont07 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.complete .cont07 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/complete_text05.png) center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.7);
		z-index: -1;
	}

	.complete .cont07 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 50px;
	}

	.complete .cont07 .box .text_box {
		padding-top: 329px;
	}

	.complete .cont07 .box figure {
		position: absolute;
		top: 0;
	}

	.complete .cont07 .box .text_box p {
		margin-top: 30px;
		font-size: 16px;
		line-height: 2.1;
	}

	.complete .cont07 .area {
		height: 328px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 30px;
	}


	.complete .cont07 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 4px 4px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.complete .cont07 .area .area_list {
		text-align-last: left;
		height: 255px;
		overflow-y: auto;
		margin: 25px 5px 0 15px;
		padding-right: 20px;
	}

	.complete .cont07 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		padding: 25px 0;
	}

	.complete .cont07 .area .area_list li {
		line-height: 1;
		font-size: 14px;
	}

	.complete .cont07 .area .area_list>li {
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.complete .cont07 .area .area_list>li:last-of-type {
		margin: 0;
	}


/* flow
------------------------------------------------------------------------*/
	/* cont01 */
	.flow .cont01 {
		padding: 80px 20px;
	}

	.flow .cont01 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.flow .cont01 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.flow .cont01 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/flow_text01.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.flow .cont01 p {
		text-align: center;
		font-size: 16px;
		line-height: 2.5;
		margin-top: 35px;
	}


	/* cont02 */
	.flow .cont02 .inner {
		position: relative;
		padding: 0;
	}

	.flow .cont02 .flow01,
	.flow .cont02 .flow03,
	.flow .cont02 .flow05 {
		background: #e8f4ff;
	}

	.flow .cont02 .flow_box {
		position: relative;
		padding: 116px 0 70px;
	}

	.flow .cont02 .flow_box::before {
		position: absolute;
		content: "";
		width: 44px;
		height: 32px;
		left: 86px;
		top: 71.5px;
	}

	.flow .cont02 .flow_box:nth-of-type(1)::before {
		background: url("img/common_no01.png") no-repeat;
		width: 39px;
	}

	.flow .cont02 .flow_box:nth-of-type(2)::before {
		background: url("img/common_no02.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(3)::before {
		background: url("img/common_no03.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(4)::before {
		background: url("img/common_no04.png") no-repeat;
	}

	.flow .cont02 .flow_box:nth-of-type(5)::before {
		background: url("img/common_no05.png") no-repeat;
	}

	.flow .cont02 .flow_box h3::after {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 4px;
		height: 36px;
		border-radius: 2px;
		left: 68px;
		top: -47px;
	}

	.flow .cont02 .flow_box figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}

	.flow .cont02 .flow_box .box figure img {
		border: 3px solid #348de2;
	}

	.flow .cont02 .flow_box .text_box {
		padding: 206px 30px 0;
	}

	.flow .cont02 .flow_box figure {
		position: absolute;
		width: 440px;
		text-align: center;
		top: 0;
	}

	.flow .cont02 .flow_box h3 {
		font-size: 20px;
		font-weight: bold;
		line-height: 30px;
		color: #082a4a;
		white-space: nowrap;
		width: fit-content;
		margin: 20px auto 0;
	}

	.flow .cont02 .flow_box .text01 {
		font-size: 16px;
		color: #082a4a;
		margin-top: 10px;
		line-height: 1.8;
	}

	.flow .cont02 .flow_box.flow01 .info_box {
		margin-top: 20px;
	}

	.flow .cont02 .flow_box.flow01 .info_box .tel {
		text-align: center;
	}

	.flow .cont02 .flow_box.flow01 .info_box .tel a {
		font-size: 16px;
		line-height: 1.8;
		font-weight: bold;
	}

	.flow .cont02 .flow_box.flow01 .info_box .btn-01 {
		width: 220px;
		height: 50px;
		margin: 15px auto 0;
	}

	.flow .cont02 .flow_box.flow01 .info_box .btn-01 a {
		display: block;
		background: #06c755 url(img/header_icon02.png) left 26px top 14px no-repeat;
		padding: 0px 0 0 58px;
		box-sizing: border-box;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
	}

	.flow .cont02 .flow_box.flow02 .inner {
		position: relative;
	}

	.flow .cont02 .flow_box.flow02 .inner::before {
		position: absolute;
		content: "";
		background: url(img/common_deco10.png) center / cover no-repeat;
		width: 225px;
		height: 170px;
		top: -170px;
		right: -32px;
		transform: scale(0.6);
	}

	.flow .cont02 .flow_box.flow04>.inner:not(.flow_04_sub) {
		position: relative;
	}

	.flow .cont02 .flow_box.flow04>.inner:not(.flow_04_sub)::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 234px;
		height: 192px;
		top: -203px;
		right: -37px;
		transform: scale(0.6);
	}

	.flow .cont02 .flow_box .flow_04_sub {
		background: #e2f1ff;
		border: 3px solid #065aaa;
		border-radius: 10px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box {
		position: relative;
		margin-top: 50px;

	}

	.flow .cont02 .flow_box .flow_04_sub .box:first-of-type {
		margin-top: 25px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box:last-of-type {
		margin-bottom: 50px;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box02 {
		padding: 163px 30px 0;
	}

	.flow .cont02 .flow_box .flow_04_sub .box figure {
		width: 100%;
	}

	.flow .cont02 .flow_box .flow_04_sub.inner {
		padding-top: 0;
		margin: 60px 15px 0;
	}

	.flow .cont02 .flow_box .flow_04_sub h4 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		text-align: center;
		line-height: 40px;
		border-radius: 3px 3px 0 0;
	}

	.flow .cont02 .flow_box .flow_04_sub h4::before {
		content: "";
		position: absolute;
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		right: -22px;
		top: -72px;
		transform: scale(0.6);
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		padding-left: 18px;
		line-height: 25px;
		width: fit-content;
		margin-top: 20px;
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01::before {
		position: absolute;
		content: "";
		background: #064aaa;
		width: 3px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.flow .cont02 .flow_box .flow_04_sub .ttl01 span {
		font-size: 14px;
		font-weight: bold;
	}

	.flow .cont02 .flow_box .flow_04_sub .box .text02 {
		font-size: 16px;
		position: relative;
		color: #082a4a;
		margin-top: 10px;
	}

	.flow .cont02 .flow_box .flow_04_sub .box .text02::before {
		position: absolute;
		content: "";
		width: 105%;
		height: 1px;
		background: #959595;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
	}

	.flow .cont02 .flow_box .flow_04_sub .box:nth-of-type(2) .text02::before,
	.flow .cont02 .flow_box .flow_04_sub .box:last-of-type .text02::before {
		display: none;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 {
		margin: 30px 15px 0;
		text-align: center;
		box-sizing: border-box;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .ttl02 {
		color: #ffff00;
		background: #348de2;
		line-height: 1.3;
		font-size: 16px;
		font-weight: bold;
		padding: 10px 0;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 {
		background: #fff;
		font-weight: bold;
		font-size: 14px;
		padding: 17px 0;
		border: 1px solid #348de2;
		border-top: none;
		line-height: 1.78;
	}

	.flow .cont02 .flow_box .flow_04_sub .text_box03 .text03 span {
		font-weight: bold;
		color: #348de2;
	}


	/* contact_box */
	.flow .contact_box {
		margin-top: 100px;
	}



/* housecleaning
------------------------------------------------------------------------*/
	/* cont01 */
	.housecleaning .cont01 {
		position: relative;
		padding: 0 20px;
		margin: 20px auto 80px;
	}

	.housecleaning .cont01 h2 {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding: 0 0 0 15px;
		width: fit-content;
		font-size: 20px;
		margin-top: 30px;
	}

	.housecleaning .cont01 h2 span {
		font-size: 24px;
		font-weight: bold;
		padding-top: 5px;
		display: block;
		line-height: 1.2;
	}

	.housecleaning .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 8px;
		height: 100%;
		border-radius: 4px;
		left: 0;
		top: 0;
	}

	.housecleaning .cont01 .text_box01 {
		padding-top: 313px;
	}

	.housecleaning .cont01 .text01 {
		font-size: 16px;
		margin-top: 15px;
	}

	.housecleaning .cont01 figure {
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #065aaa;
		border-left: none;
		border-radius: 0 10px 10px 0;
		width: calc(100% - 20px);
		overflow: hidden;
		box-sizing: border-box;
	}

	.housecleaning .cont01 .button {
		margin-top: 25px;
	}


	/* cont02 */
	.housecleaning .cont02 {
		background: #e2f1ff;
	}

	.housecleaning .cont02 .inner {
		padding: 80px 15px;
	}

	.housecleaning .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
		color: #082a4a;
		white-space: nowrap;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont02 h2::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_deco01.png") no-repeat;
		width: 228px;
		height: 292px;
        bottom: -2px;
        right: -105px;
        transform: scale(0.5);
	}

	.housecleaning .cont02 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom:15px;
		white-space: nowrap;
	}

	.housecleaning .cont02 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text01.png) center center / cover no-repeat;
        width: 721px;
        height: 58px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, calc(-50% - 10px)) scale(0.55);
        z-index: -1;
	}

	.housecleaning .cont02 .text01 {
		text-align: center;
		margin-top: 35px;
		font-size: 16px;
	}

	.housecleaning .cont02 .item {
		position: relative;
		padding: 260px 15px 0;
		margin-top: 40px;
	}

	.housecleaning .cont02 .item:first-of-type {
		margin-top: 50px;
	}

	.housecleaning .cont02 .item .text_box {
		margin-top: 24px;
	}

	.housecleaning .cont02 .item .text_box h3 {
		position: relative;
		font-size: 22px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont02 .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont02 .item .text_box .text02 {
		font-size: 16px;
		margin-top: 10px;
	}

	.housecleaning .cont02 .item .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin-top: 15px;
	}

	.housecleaning .cont02 .item .button a {
		display: block;
		background: #fff;
		border: 1px solid #065aaa;
		line-height: 46px;
		border-radius: 8px;
		font-weight: bold;
		font-size: 18px;
	}

	.housecleaning .cont02 .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.housecleaning .cont02 .item figure {
		position: absolute;
		top: 0;
		text-align: center;
		width: 380px;
	}

	.housecleaning .cont02 .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}


	/* cont03 */
	.housecleaning .cont03 {
		padding: 80px 15px;
	}

	.housecleaning .cont03 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
		color: #082a4a;
		white-space: nowrap;
	}

	.housecleaning .cont03 h2::before {
		position: absolute;
		content: "";
		background: url("img/housecleaning_deco02.png") no-repeat;
		width: 225px;
		height: 225px;
		left: -60px;
		top: -197px;
		transform: scale(0.5);
	}

	.housecleaning .cont03 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
	}

	.housecleaning .cont03 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text02.png) center center / cover no-repeat;
		width: 535px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.housecleaning .cont03 .text01 {
		text-align: center;
		margin-top: 35px;
		font-size: 16px;
	}

	.housecleaning .cont03 .item {
		position: relative;
		padding: 260px 15px 0;
		margin-top: 40px;
	}

	.housecleaning .cont03 .item:first-of-type {
		margin-top: 50px;
	}

	.housecleaning .cont03 .item .text_box {
		margin-top: 24px;
	}

	.housecleaning .cont03 .item .text_box h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont03 .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont03 .item .text_box .text02 {
		font-size: 16px;
		margin-top: 10px;
	}

	.housecleaning .cont03 .item .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin-top: 15px;
	}

	.housecleaning .cont03 .item .button a {
		display: block;
		background: #fff;
		border: 1px solid #065aaa;
		line-height: 46px;
		border-radius: 8px;
		font-weight: bold;
		font-size: 18px;
	}

	.housecleaning .cont03 .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.housecleaning .cont03 .item figure {
		position: absolute;
		top: 0;
		text-align: center;
		width: 380px;
	}

	.housecleaning .cont03 .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}



	/* cont04 */
	.housecleaning .cont04 {
		background: url(img/common_bg_01.png);
		background-size: 88px auto;
	}

	.housecleaning .cont04 .inner {
		padding: 80px 20px;
	}

	.housecleaning .cont04 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
		color: #082a4a;
		white-space: nowrap;
	}

	.housecleaning .cont04 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
	}

	.housecleaning .cont04 h2 span::after {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text03.png) center center / cover no-repeat;
		width: 332px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.housecleaning .cont04 .text01 {
		text-align: center;
		line-height: 2.5;
		margin-top: 35px;
		font-size: 16px;
	}

	.housecleaning .cont04 .item {
		position: relative;
		padding: 260px 15px 0;
		margin-top: 40px;
	}

	.housecleaning .cont04 .item:first-of-type {
		margin-top: 50px;
	}

	.housecleaning .cont04 .item .text_box {
		margin-top: 24px;
	}

	.housecleaning .cont04 .item .text_box h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.housecleaning .cont04 .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.housecleaning .cont04 .item .text_box .text02 {
		font-size: 16px;
		margin-top: 10px;
	}

	.housecleaning .cont04 .item .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin-top: 15px;
	}

	.housecleaning .cont04 .item .button a {
		display: block;
		background: #fff;
		border: 1px solid #065aaa;
		line-height: 46px;
		border-radius: 8px;
		font-weight: bold;
		font-size: 18px;
	}

	.housecleaning .cont04 .item .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.housecleaning .cont04 .item figure {
		position: absolute;
		top: 0;
		text-align: center;
		width: 380px;
	}

	.housecleaning .cont04 .box .item figure img{
		border-radius: 10px;
		border: 3px solid #065aaa;
	}


	/* cont05 */
	.housecleaning .cont05 {
		padding: 80px 20px;
	}

	.housecleaning .cont05 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.2;
		color: #082a4a;
		white-space: nowrap;
	}

	.housecleaning .cont05 h2::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_deco03.png) center / cover no-repeat;
		width: 219px;
		height: 282px;
		left: -58px;
		bottom: 24px;
		transform: scale(0.5);
	}

	.housecleaning .cont05 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
	}

	.housecleaning .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text04.png) center center / cover no-repeat;
		width: 237px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.housecleaning .cont05 .text01 {
		text-align: center;
		font-size: 16px;
		margin-top: 40px;
	}

	.housecleaning .cont05 .price_box {
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #e2f1ff;
		padding: 45px 15px 28px;
		text-align: center;
		margin-top: 30px;
		position: relative;
	}

	.housecleaning .cont05 .price_box::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center / cover no-repeat;
		width: 102px;
		height: 118px;
        top: -37px;
        right: -30px;
        transform: scale(0.4);

	}

	.housecleaning .cont05 .price_box .text02 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1.3;
		width: fit-content;
		margin: 0 auto;
	}

	.housecleaning .cont05 .price_box .text02 span {
		color: #065aaa;
		font-size: 24px;
		font-weight: bold;
	}

	.housecleaning .cont05 .price_box .text02::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
        left: -22px;
        top: -35px;
        transform: scale(0.6);
	}

	.housecleaning .cont05 .price_box table {
		margin: 30px auto 0;
		border-collapse: separate;
		border-spacing: 5px;
	}

	.housecleaning .cont05 .price_box table th,
	.housecleaning .cont05 .price_box table td {
		background: #fff;
		color: #065aaa;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.3;
		margin: 0 auto;
	}

	.housecleaning .cont05 .price_box table th {
		padding: 8px 18px;
	}

	.housecleaning .cont05 .price_box table td {
		font-size: 18px;
		padding: 0 20px;
		vertical-align: middle;
	}

	.housecleaning .cont05 .price_box table tr:nth-of-type(5) td {
		line-height: 1.2;
		padding-bottom: 2px;
	}

	.housecleaning .cont05 .price_box table td span {
		font-size: 14px;
		font-weight: bold;
	}

	.housecleaning .cont05 .text03 {
		margin: 5px 0 0 10px;
		text-align: left;
	}

	.housecleaning .cont05 .button a {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.housecleaning .cont05 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}


	/* cont06 */
	.housecleaning .cont06 {
		background: #e2f1ff;
	}

	.housecleaning .cont06 .inner {
		padding: 80px 15px
	}

	.housecleaning .cont06 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.housecleaning .cont06 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.housecleaning .cont06 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/housecleaning_text05.png) center center / cover no-repeat;
		width: 206px;
		height: 56px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.housecleaning .cont06 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 50px;
	}

	.housecleaning .cont06 .box .text_box {
		padding-top: 329px;
	}

	.housecleaning .cont06 .box figure {
		position: absolute;
		top: 0;
	}

	.housecleaning .cont06 .box .text_box p {
		margin-top: 30px;
		font-size: 16px;
		line-height: 2.1;
	}

	.housecleaning .cont06 .area {
		height: 328px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 30px;
	}

	.housecleaning .cont06 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 4px 4px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.housecleaning .cont06 .area .area_list {
		text-align-last: left;
		height: 255px;
		overflow-y: auto;
		margin: 25px 5px 0 15px;
		padding-right: 20px;
	}

	.housecleaning .cont06 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		padding: 25px 0;
	}

	.housecleaning .cont06 .area .area_list li {
		line-height: 1;
		font-size: 14px;
	}

	.housecleaning .cont06 .area .area_list>li {
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.housecleaning .cont06 .area .area_list>li:last-of-type {
		margin: 0;
	}


	/* contact_box */
	.housecleaning .contact_box {
		margin-top: 80px;
		margin-bottom: 80px;
	}



/* price
------------------------------------------------------------------------*/
	/* cont01 price_box*/
	.price .cont01.inner {
		margin: 80px auto;
		padding: 0 20px;
	}

	.price .cont01 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.price .cont01 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.price .cont01 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/price_text01.png) center center / cover no-repeat;
		width: 427px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.price .cont01 .text01 {
		font-size: 16px;
		text-align: center;
		line-height: 2.5;
		margin-top: 35px;
	}

	.price .cont01 .price_box {
		position: relative;
		border: 2px solid #065aaa;
		border-radius: 10px;
		background: #e2f1ff;
		padding: 35px 10px 45px;
		text-align: center;
		margin-top: 50px;
	}

	.price .cont01 .price_box:nth-of-type(2) {
		border: 2px solid #0091a2;
		background: #e9fdff;
	}

	.price .cont01 .price_box h3 {
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.price .cont01 .price_box .box {
		text-align: center;
		margin-top: 25px;
	}

	.price .cont01 .price_box .box .item {
		background: #fff;
		border: 1px solid #348de2;
		border-radius: 5px;
		box-sizing: border-box;
	}


	.price .cont01 .price_box .box .item:nth-of-type(2) {
		border: 1px solid #065aaa;
		margin-top: 15px;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item {
		border: 1px solid #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) {
		border: 1px solid #0091a2;
	}

	.price .cont01 .price_box .box .item .text02 {
		font-size: 18px;
		color: #fff;
		line-height: 45px;
		font-weight: bold;
		background: #348de2;
		border-radius: 4px 4px 0 0;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .text02 {
		background: #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .text02 {
		background: #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .text02 {
		background: #0091a2;
	}

	.price .cont01 .price_box .box .price_text01 {
		font-size: 16px;
		font-weight: bold;
		display: inline-block;
		line-height: 1.5;
		padding-top: 25px;
		text-align: left;
	}

	.price .cont01 .price_box .box .price_text01 span {
		font-size: 14px;
		font-weight: bold;
		position: relative;
		color: #686868;
		letter-spacing: .5px;
	}

	.price .cont01 .price_box .box .price_text01>span::before {
		content: "";
		position: absolute;
		background: #686868;
		width: 100%;
		height: 1px;
		top: 50%;
		left: 0;
	}

	.price .cont01 .price_box .box .price_text01 span .span01 {
		font-size: 18px;
	}

	.price .cont01 .price_box .box .price_text01 span .span01::after {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #348de2;
		right: -34px;
		top: 50%;
		transform: translateY(-50%);
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.price .cont01 .price_box .box .price_text02 {
		display: inline-block;
		font-size: 48px;
		font-weight: bold;
		color: #348de2;
		padding-left: 5px;
		line-height: 1;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .price_text02 {
		color: #065aaa;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .price_text02 {
		color: #00a8b8;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .price_text02 {
		color: #0091a2;
	}

	.price .cont01 .price_box .box .price_text02 span {
		font-size: 28px;
		font-weight: bold;
	}

	.price .cont01 .price_box .box .item .cate01,
	.price .cont01 .price_box .box .item .cate02 {
		display: inline-block;
		color: #fff;
		line-height: 1;
		font-weight: bold;
		letter-spacing: 1.2px;
		line-height: 30px;
		margin: 10px auto 25px;
	}

	.price .cont01 .price_box .box .item .cate01 {
		padding: 0 23px;
		background: #348de2;
	}

	.price .cont01 .price_box .box .item:nth-of-type(2) .cate01 {
		background: #065aaa;
		padding: 0 40px;
	}

	.price .cont01 .price_box .box .item .cate02 {
		padding: 0 38px;
		background: #0091a2;
		margin-left: 10px;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .cate01 {
		padding: 0 25px;
		background: #00bcc3;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item:nth-of-type(2) .cate01 {
		background: #0091a2;
		padding: 0 40px;
	}

	.price .cont01 .price_box:nth-of-type(2) .box .item .cate02 {
		padding: 0 30px;
		background: #348de2;
		margin-left: 3px;
	}

	.price .cont01 .price_box .text03 {
		margin-top: 10px;
		line-height: 1.5;
		text-align: left;
	}

	.price .cont01 .price_box .text04 {
		font-size: 16px;
		line-height: 2.5;
		margin-top: 32px;
	}

	.price .cont01 .price_box .button {
		position: relative;
		width: 380px;
		height: 50px;
		text-align: center;
		margin: 25px auto 0;
	}

	.price .cont01 .price_box .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.price .cont01 .price_box:nth-of-type(2) .button a {
		background: #0091a2;
	}

	.price .cont01 .price_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* cont01 option_box*/

	.price .cont01 .option_box {
		margin-top: 55px;
	}

	.price .cont01 .option_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		width: fit-content;
		margin: 0 auto;
		text-align: center;
	}

	.price .cont01 .option_box h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -35px;
		top: -35px;
		transform: scale(0.6);
	}

	.price .cont01 .option_box .text01 {
		font-size: 16px;
		margin-top: 28px;
	}


	.price .cont01 .option_box .box .item {
		position: relative;
		width: 400px;
		height: 215px;
		border: 2px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		margin-top: 30px;
	}

	.price .cont01 .option_box .box .item:first-of-type {
		margin-top: 30px;
	}

	.price .cont01 .option_box .box .item .text_box {
		position: absolute;
		top: 47px;
		left: 157px;
		margin-right: 8px;
		width: 215px;
	}

	.price .cont01 .option_box .box .item .text_box .tte01 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 31px;
		line-height: 20px;
	}

	.price .cont01 .option_box .box .item .text_box .tte01::before {
		position: absolute;
		content: "";
		background: #065aaa;
		left:21px;
		top: 0;
		width: 3px;
		height: 20px;
		border-radius: 3px;
	}

	.price .cont01 .option_box .box .item .text_box .text02 {
		font-size: 15px;
		line-height: 1.7;
		position: absolute;
		top: 97px;
    	left: -141px;
		width: 360px;
	}

	.price .cont01 .option_box .box .item .text_box .text03 {
		font-size: 30px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		margin-top: 8px;
		text-align: right;
	}

	.price .cont01 .option_box .box .item .text_box .text03 span {
		font-size: 24px;
		font-weight: bold;
	}

	.price .cont01 .option_box .box .item:nth-of-type(4) .text_box .text03 {
		font-size: 18px;
	}

	.price .cont01 .option_box .box .item figure {
		width: 140px;
		position: absolute;
		top: 20px;
		left: 20px;
	}

	.price .cont01 .option_box .box .item figure img{
		border-radius: 5px;
	}

	.price .cont01 .option_box .text04 {
		text-align: right;
		line-height: 1;
		margin-top: 15px;
	}

	.price .cont01 .text05 {
		position: relative;
		height: 150px;
		font-weight: bold;
		font-size: 16px;
		line-height: 1.85;
		background: url(img/common_bg_01.png);
		background-size: 88px auto;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin-top: 30px;
	}

	.price .cont01 .text05::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
        bottom: -6px;
        right: -3px;
        width: 89px;
        height: 103px;
        transform: scale(0.4);
	}


	/* cont02 */
	.price .cont02 {
		background: #e2f1ff;
		padding: 80px 20px;
	}

	.price .cont02 .inner {
		padding: 0;
	}

	.price .cont02 h2 {
		position: relative;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.4;
		color: #082a4a;
	}

	.price .cont02 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
	}

	.price .cont02 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco07.png) center / cover no-repeat;
		width: 168px;
		height: 364px;
		top: -258px;
		left: -43px;
		transform: scale(0.4);
	}

	.price .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/price_text01.png) center center / cover no-repeat;
		width: 427px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.price .cont02 .cate {
		display: flex;
		gap: 10px;
		justify-content: center;
		margin-top: 25px;
	}

	.price .cont02 .cate p {
		color: #fff;
		line-height: 36px;
		text-align: center;
		font-weight: bold;
	}

	.price .cont02 .cate p:nth-of-type(1) {
		width: 245px;
		background: #348de2;
	}

	.price .cont02 .cate p:nth-of-type(2) {
		width: 150px;
		background: #0091a2;
	}

	.price .cont02 .text01 {
		line-height: 2.3;
		font-size: 16px;
		margin-top: 15px;
	}

	.price .cont02 .price_box .item {
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		width: 400px;
		margin: 15px auto 0;
	}

	.price .cont02 .price_box .item:first-of-type {
		margin-top: 35px;
	}

	.price .cont02 .price_box .item p:nth-of-type(1) {
		font-size: 16px;
		color: #fff;
		background: #065aaa;
		border-radius: 2px 2px 0 0;
		line-height: 30px;
		font-weight: bold;
	}

	.price .cont02 .price_box .item p:nth-of-type(2) {
		font-size: 34px;
		font-weight: bold;
	}

	.price .cont02 .price_box .item p:nth-of-type(2) span {
		font-size: 26px;
		font-weight: bold;
		font-weight: bold;
	}

	.price .cont02 .text03 {
		margin-top: 10px;
		text-align: right;
	}

	.price .cont02 .option_box {
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #fff;
		padding: 45px 15px 28px;
		text-align: center;
		margin-top: 30px;
	}

	.price .cont02 .option_box h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1;
		width: fit-content;
		margin: 0 auto;
	}

	.price .cont02 .option_box h3::after {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 204px;
		height: 161px;
        top: -28px;
        right: -120px;
        transform: scale(0.3);
	}

	.price .cont02 .option_box h3::before {
		position: absolute;
		content: "";
		background: url("img/common_deco13.png") no-repeat;
        background-size: 36px;
        width: 36px;
        height: 47px;
        left: -27px;
        top: -29px;
	}

	.price .cont02 .option_box .text02 {
		font-size: 16px;
		margin-top: 20px;
	}

	.price .cont02 .option_box .text04 {
		text-align: right;
	}

	.price .cont02 .option_box .price_table {
		margin: 10px auto 0;
		border-collapse: separate;
		border-spacing: 3px 8px;
	}

	.price .cont02 .option_box .price_table th,
	.price .cont02 .option_box .price_table td {
		background: #e6f0fa;
		color: #065aaa;
		font-size: 18px;
		font-weight: bold;
		line-height: 50px;
		margin: 0 auto;
	}

	.price .cont02 .option_box .price_table th {
		padding: 0 30px;
	}

	.price .cont02 .option_box .price_table td {
		padding: 0 25px;
	}

	.price .cont02 .button {
		position: relative;
		width: 360px;
		height: 50px;
		text-align: center;
		margin: 40px auto 0;
	}

	.price .cont02 .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.price .cont02 .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	/* contact_box */
	.price .contact_box {
		margin-top: 80px;
	}



/* reason
------------------------------------------------------------------------*/
	/* cont01 */
	.reason .cont01 {
		position: relative;
		margin: 100px auto 65px;
		padding: 0 20px;
	}

	.reason .cont01::before {
		position: absolute;
		content: "";
		background: url(img/common_deco09.png) center center / cover no-repeat;
		width: 263px;
		height: 215px;
		top: -138px;
		right: -44px;
		transform: scale(0.5);
	}

	.reason .cont01 h2 {
		font-size: 16px;
		font-weight: bold;
		padding-left: 25px;
		position: relative;
		line-height: 1.5;
	}

	.reason .cont01 h2::before {
		content: "";
		position: absolute;
		width: 5px;
		height: 65px;
		background: #065aaa;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.reason .cont01 h2 span {
		display: block;
		font-weight: bold;
		font-size: 26px;
		color: #065aaa;
	}

	.reason .cont01 p {
		margin-top: 20px;
		line-height: 2.3;
		font-size: 16px;
	}


	/* cont02 */
	.reason .cont02 {
		background: #e2f1ff;
	}

	.reason .cont02 .inner {
		padding: 80px 15px 110px;
	}

	.reason .cont02 .reason_box {
		position: relative;
		display: flex;
		padding-top: 250px;
		margin-top: 30px;
	}

	.reason .cont02 .reason_box:nth-of-type(1) {
		margin-bottom: 321px;
		margin-top: 0;
	}

	.reason .cont02 .reason_box:nth-of-type(2) {
		margin-bottom: 322px;
	}

	.reason .cont02 .reason_box:nth-of-type(3) {
		margin-bottom: 294px;
	}

	.reason .cont02 .reason_box:nth-of-type(4) {
		margin-bottom: 322px;
	}

	.reason .cont02 .reason_box:nth-of-type(5) {
		margin-bottom: 294px;
	}

	.reason .cont02 .reason_box:nth-of-type(7) {
		margin-bottom: 356px;
	}

	.reason .cont02 .reason_box:nth-of-type(8) {
		margin-bottom: 241px;
	}

	.reason .cont02 .reason_box .text_box {
		border-radius: 10px 0 0 10px;
		background: #fff;
		position: absolute;
		z-index: 1;
		right: -15px;
		width: 390px;
		padding: 25px 15px;
		margin-top: -30px;
	}

	.reason .cont02 .reason_box .text_box h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 82px;
		line-height: 1.38;
	}

	.reason .cont02 .reason_box .text_box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%) scale(0.8);
	}

	.reason .cont02 .reason_box .text_box h3::after {
		position: absolute;
		content: "";
		left: 60px;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 47px;
		border-radius: 2px;
		background: #065aaa;
	}

	.reason .cont02 .reason_box .text_box:nth-of-type(1) h3::before {
		background: url(img/reason_no01.png);
		width: 43px;
		height: 48px;
	}

	.reason .cont02 .reason_box:nth-of-type(2) .text_box h3::before {
		background: url(img/reason_no02.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(3) .text_box h3::before {
		background: url(img/reason_no03.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(4) .text_box h3::before {
		background: url(img/reason_no04.png);
		width: 51px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(5) .text_box h3::before {
		background: url(img/reason_no05.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box h3::before {
		background: url(img/reason_no07.png);
		width: 49px;
		height: 50px;
	}

	.reason .cont02 .reason_box:nth-of-type(8) .text_box h3::before {
		background: url(img/reason_no08.png);
		width: 50px;
		height: 50px;
	}

	.reason .cont02 .reason_box .text_box .text01 {
		font-size: 16px;
		margin-top: 15px;
		line-height: 1.8;
	}

	.reason .cont02 .reason_box figure {
		position: absolute;
		left: -20px;
		width: 420px;
		top: 0;
	}

	.reason .cont02 .reason_box figure img {
		border-radius: 0 10px 10px 0;
		border: 3px solid #065aaa;
	}

	.reason .cont02 .reason06_box {
		background: #fff;
		border-radius: 10px;
		padding: 35px 15px;
	}

	.reason .cont02 .reason06_box h3 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 82px;
		line-height: 1.38;
	}

	.reason .cont02 .reason06_box h3::before {
		position: absolute;
		content: "";
		left: 0;
		top: 50%;
		transform: translateY(-50%) scale(0.8);
		background: url(img/reason_no06.png);
		width: 50px;
		height: 50px;
	}

	.reason .cont02 .reason06_box h3::after {
		position: absolute;
		content: "";
		left: 60px;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 47px;
		border-radius: 2px;
		background: #065aaa;
	}

	.reason .cont02 .reason06_box .text01 {
		margin-top: 16px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box {
		border: 1px solid #065aaa;
		border-radius: 5px;
		margin-top: 25px;
		padding: 50px 15px 30px;
		text-align: center;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 span {
		position: relative;
		font-size: 16px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 20px;
		z-index: 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text02 span::before {
		position: absolute;
		content: "";
		background: url(img/reason_text01.png) center center / cover no-repeat;
		width: 415px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.6);
		z-index: -1;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .text03 {
		font-size: 16px;
		margin-top: 15px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box {
		display: flex;
		justify-content: center;
		margin-top: 25px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before,
	.reason .cont02 .reason06_box .reason06_sub_box .img_box .after {
		position: relative;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .before::after {
		position: absolute;
		content: "";
		background: url(img/before_text.png) no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .img_box .after::after {
		position: absolute;
		content: "";
		background: url(img/after_text.png) no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin: 25px auto 0;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a {
		display: block;
		background: #065aaa;
		line-height: 50px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
		font-size: 13px;
		padding-right: 13px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 14px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.reason .cont02 .reason06_box .reason06_sub_box .button a span {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button {
		position: relative;
		width: 378px;
		height: 45px;
		text-align: center;
		margin: 15px 0 0;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a {
		display: block;
		background: #065aaa;
		line-height: 45px;
		border-radius: 25px;
		font-weight: bold;
		color: #fff;
	}

	.reason .cont02 .reason_box:nth-of-type(7) .text_box .button a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont03 */
	.reason .cont03 {
		position: relative;
		padding: 80px 0;
	}

	.reason .cont03::before {
		position: absolute;
		content: "";
		background: url(img/common_deco12.png) center / cover no-repeat;
		width: 233px;
		height: 184px;
		top: -83px;
		left: -50px;
		transform: scale(0.4);
	}

	.reason .cont03::after {
		position: absolute;
		content: "";
		background: url(img/common_deco06.png) center center / cover no-repeat;
		right: -25px;
		top: -202px;
		width: 152px;
		height: 348px;
		transform: scale(0.5);
	}

	.reason .cont03 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.reason .cont03 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
		white-space: nowrap;
		width: fit-content;
		left: 50%;
		transform: translateX(-50%);
	}

	.reason .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/reason_text02.png) center center / cover no-repeat;
		width: 580px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 15px)) scale(0.65);
		z-index: -1;
	}

	.reason .cont03 .text01 {
		font-size: 16px;
		line-height: 2.2;
		margin: 40px auto 30px;
		padding: 0 20px;
	}

	.reason .cont03 .scroll {
		overflow-x: auto;
		margin: 0 15px;
	}

	.reason .cont03 table {
		border-collapse: separate;
		width: 660px;
	}

	.reason .cont03 table th {
		vertical-align: middle;
	}

	.reason .cont03 table thead th.eclean {
		position: relative;
		background: #065aaa;
		color: #fff;
		border: 4px solid #065aaa;
		border-radius: 5px 5px 0 0;
		font-weight: bold;
		font-size: 18px;
	}

	.reason .cont03 table thead th.eclean::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -36px;
		right: 8px;
		height: 103px;
		width: 89px;
		transform: scale(0.3);
	}

	.reason .cont03 table tbody th {
		text-align: left;
		font-size: 14px;
		font-weight: bold;
		color: #fff;
		background: #348de2;
		border-bottom: 1px solid #b0b0b0;
		box-sizing: border-box;
		padding: 0 20px;
		width: 160px;
		height: 40px;
		line-height: 1.6;
	}

	.reason .cont03 table tbody tr td{
		padding: 10px 20px;
		line-height: 1.6;
	}

	.reason .cont03 table tbody tr td.eclean {
		border-bottom: 1px solid #b0b0b0;
		border-left: 4px solid #065aaa;
		border-right: 4px solid #065aaa;
		box-sizing: border-box;
		background: #e2f1ff;
		font-size: 15px;
		font-weight: bold;
		color: #065aaa;
		vertical-align: middle;
		width: 260px;
		line-height: 1.6;
	}

	.reason .cont03 table tbody tr:last-of-type td.eclean {
		border-bottom: 4px solid #065aaa;
	}

	.reason .cont03 table thead th.other {
		vertical-align: bottom;
	}

	.reason .cont03 table thead th.other span {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #c4c4c4;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		width: 260px;
	}

	.reason .cont03 table tbody tr td.other {
		border-bottom: 1px solid #b0b0b0;
		background: #f7f7f7;
		box-sizing: border-box;
		vertical-align: middle;
		font-size: 14px;
		width: 260px;
	}


	/* cont04 */
	.reason p.cont04 {
		position: relative;
		text-align: center;
		font-weight: bold;
		font-size: 18px;
		height: 280px;
		line-height: 1.7;
		padding: 50px 0;
		box-sizing: border-box;
	}

	.reason p.cont04 span {
		font-weight: bold;
		font-size: 16px;
		color: #065aaa;
		line-height: 2;
	}

	.reason p.cont04::before {
		position: absolute;
		content: "";
		background: url(img/common_deco02.png) center center / cover no-repeat;
		top: -21px;
		right: -8px;px;
		width: 89px;
		height: 103px;
		transform: scale(0.5);
	}

	.reason p.cont04::after {
		position: absolute;
		content: "";
		background: url(img/common_bg_01.png);
		background-size: 88px auto;
		width: 440px;
		left: 50%;
		transform: translateX(-50%);
		top: 0;
		height: 280px;
		z-index: -1;
	}


	/* contact-box */
	.reason .contact_box {
		margin-top: 80px;
	}



/* aircon-install
------------------------------------------------------------------------*/
	/* cont01 */
	.aircon-install .cont01 {
		position: relative;
		padding: 386px 20px;
		margin: 20px auto;
	}

	.aircon-install .cont01 .text_box01 {
		position: absolute;
		padding: 25px 0 30px 0;
		box-sizing: border-box;
		top: 294px;
		width: 410px;
	}

	.aircon-install .cont01 h2 {
		position: relative;
		white-space: nowrap;
		line-height: 1.4;
		padding-left: 20px;
		width: fit-content;
		font-size: 22px;
		font-weight: bold;
		color: #082a4a;
	}

	.aircon-install .cont01 h2::before {
		position: absolute;
		content: "";
		background: #065aaa;
		width: 5px;
		height: 87px;
		border-radius: 4px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.aircon-install .cont01 .text01 {
		font-size: 16px;
		margin-top: 28px;
		line-height: 2.2;
	}

	.aircon-install .cont01 .button {
		margin-top: 35px;
	}

	.aircon-install .cont01 figure {
		position: absolute;
		left: 0;
		top: 0;
		border: 3px solid #065aaa;
		border-left: none;
		border-radius: 0 18px 18px 0;
		overflow: hidden;
		box-sizing: border-box;
		width: 420px;
	}

	@media screen and (min-width: 1800px) {
		.aircon-install .cont01 figure {
		border-radius: 10px;
		border-left: 3px solid #065aaa;
		}
	}


	/* cont02 */
	.aircon-install .cont02 {
		position: relative;
		background: #e2f1ff;
	}

	.aircon-install .cont02::before {
		position: absolute;
		content: "";
		background: url("img/common_deco10.png") no-repeat;
		width: 254px;
		height: 192px;
		top: -96px;
		left: 247px;
		transform: scale(0.5);
	}

	.aircon-install .cont02 .inner {
		padding: 80px 20px;
	}

	.aircon-install .cont02 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.aircon-install .cont02 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.aircon-install .cont02 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/flow_text01.png) center center / cover no-repeat;
		width: 226px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.aircon-install .cont02 .text01 {
		font-size: 16px;
		margin-top: 30px;
		text-align: center;
	}

	.aircon-install .cont02 .box {
		margin: 40px auto 0;
	}

	.aircon-install .cont02 .box .item {
		position: relative;
		width: 380px;
		padding-top: 260px;
		margin: 25px auto;
	}

	.aircon-install .cont02 .box .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		top: 208.5px;
		right: 21px;
		z-index: 1;
	}

	.aircon-install .cont02 .box .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco01.png") no-repeat;
	}

	.aircon-install .cont02 .box .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco02.png") no-repeat;
	}

	.aircon-install .cont02 .box .item:nth-of-type(3)::before {
		background: url("img/aircon-install_deco03.png") no-repeat;
	}

	.aircon-install .cont02 .box .item .text_box {
		margin-top: 25px;
	}

	.aircon-install .cont02 .box .item .text_box h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 32px;
		height: 32px;
		padding-left: 16px;
	}

	.aircon-install .cont02 .box .item .text_box h3::before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 6px;
		height: 32px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.aircon-install .cont02 .box .item .text_box .text02 {
		margin-top: 12px;
		font-size: 16px;
		letter-spacing: .7px;
	}

	.aircon-install .cont02 .box .item figure {
		position: absolute;
		top: 0;
		left: 0;
	}

	.aircon-install .cont02 .box .item figure img {
		border-radius: 10px;
		border: 3px solid #065aaa;
	}

	.aircon-install .cont02 .flow_box {
		text-align: center;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 10px;
		margin-top: 65px;
	}

	.aircon-install .cont02 .flow_box h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #fff;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
		line-height: 60px;
	}

	.aircon-install .cont02 .flow_box h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco05.png) no-repeat;
		width: 131px;
		height: 151px;
		right: -36px;
		top: -92px;
		transform: scale(0.6);
	}

	.aircon-install .cont02 .flow_box .text02 {
		font-size: 16px;
		margin-top: 25px;
		text-align: left;
		padding: 0 15px;
	}

	.aircon-install .cont02 .flow_box .item {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
		margin: 20px 0 30px;
	}

	.aircon-install .cont02 .flow_box .item p {
		position: relative;
		width: 170px;
		line-height: 46px;
		font-weight: bold;
		border: 2px solid #065aaa;
		border-radius: 5px;
		background: #e2f1ff;
		box-sizing: border-box;
	}

	.aircon-install .cont02 .flow_box .item p::before {
		position: absolute;
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #065aaa;
		right: -9px;
		top: 50%;
		transform: translateY(calc(-50% - 5.5px));
		bottom: 0;
		margin: auto 0;
		width: 8px;
		height: 15px;
	}

	.aircon-install .cont02 .flow_box .item p:last-of-type::before {
		display: none;
	}

	.aircon-install .cont02 .flow_box .item p:nth-of-type(1) {
		line-height: 1.3;
		padding: 6px 0;
	}

	.aircon-install .cont02 .flow_box .item p span {
		font-size: 11px;
		font-weight: bold;
		display: block;
	}


	/* cont03 */
	.aircon-install .cont03 {
		padding: 80px 20px;
	}

	.aircon-install .cont03 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.3;
		color: #082a4a;
		white-space: nowrap;
	}

	.aircon-install .cont03 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.aircon-install .cont03 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/aircon-install_text02.png) center center / cover no-repeat;
		width: 237px;
		height: 58px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px)) scale(0.7);
		z-index: -1;
	}

	.aircon-install .cont03 .text01 {
		font-size: 16px;
		line-height: 2.3;
		margin-top: 30px;
		text-align: center;
	}

	.aircon-install .cont03 .about_box01 .item {
		position: relative;
		background: #fff;
		border: 3px solid #348de2;
		border-radius: 10px;
		box-sizing: border-box;
		text-align: center;
		box-sizing: border-box;
		margin-top: 25px;
	}

	.aircon-install .cont03 .about_box01 .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		z-index: 1;
		top: -27px;
		left: 22px;
		transform: scale(0.8);
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco04.png") no-repeat;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco05.png") no-repeat;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) {
		border: 3px solid #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item h3 {
		font-size: 22px;
		color: #fff;
		line-height: 50px;
		font-weight: bold;
		background: #348de2;
		border-radius: 5px 5px 0 0;
	}

	.aircon-install .cont03 .about_box01 .item:first-of-type h3 {
		padding-left: 40px;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) h3 {
		background: #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .price_box {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 15px 10px;
		margin-top: 25px;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .cate {
		width: 120px;
		line-height: 40px;
		border: 2px solid #348de2;
		color: #348de2;
		font-weight: bold;
		font-size: 18px;
		box-sizing: border-box;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) .price_box .cate {
		color: #065aaa;
		border: 2px solid #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .price_text {
		font-weight: bold;
		font-size: 52px;
		color: #082a4a;
		line-height: 1;
	}

	.aircon-install .cont03 .about_box01 .item .price_box .price_text span {
		font-weight: bold;
		font-size: 36px;
	}

	.aircon-install .cont03 .about_box01 .item .text02 {
		font-size: 16px;
		margin: 20px 15px;
		text-align: left;
	}

	.aircon-install .cont03 .about_box01 .item .button {
		position: relative;
		margin: 0 auto 35px;
		text-align: left;
		border-bottom: 2px solid #adcbf1;
		line-height: 1;
		font-size: 13px;
		width: 375px;
	}

	.aircon-install .cont03 .about_box01 .item .button a {
		position: relative;
		display: block;
		color: #348de2;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box01 .item:nth-of-type(2) .button a {
		color: #065aaa;
	}

	.aircon-install .cont03 .about_box01 .item .button a::before {
		position: absolute;
		content: ">>";
		right: 0;
		bottom: 0;
	}

	.aircon-install .cont03 .text03 {
		line-height: 1;
		text-align: right;
		margin-top: 10px;
	}

	.aircon-install .cont03 .about_box02 {
		margin-top: 30px;
		text-align: center;
		border: 3px solid #065aaa;
		background: #e2f1ff;
		border-radius: 10px;
		padding: 45px 30px 45px;
	}

	.aircon-install .cont03 .about_box02 h3 {
		position: relative;
		font-size: 24px;
		font-weight: bold;
		width: fit-content;
		margin: 0 auto;
		line-height: 1;
	}

	.aircon-install .cont03 .about_box02 h3::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -39px;
		top: -36px;
		transform: scale(0.7);
	}

	.aircon-install .cont03 .about_box02 .text02 {
		font-size: 16px;
		margin-top: 20px;
		text-align: left;
	}

	.aircon-install .cont03 .about_box02 .box {
		margin-top: 25px;
	}

	.aircon-install .cont03 .about_box02 .box .item {
		position: relative;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 10px;
		box-sizing: border-box;
		margin-top: 25px;
	}

	.aircon-install .cont03 .about_box02 .item::before {
		position: absolute;
		content: "";
		width: 70px;
		height: 70px;
		z-index: 1;
		top: -16px;
		left: 22px;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco06.png") no-repeat;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco07.png") no-repeat;
	}

	.aircon-install .cont03 .about_box02 .item:nth-of-type(3)::before {
		background: url("img/aircon-install_deco08.png") no-repeat;
	}

	.aircon-install .cont03 .about_box02 .box .item .ttl01 {
		font-size: 20px;
		color: #fff;
		line-height: 40px;
		font-weight: bold;
		background: #065aaa;
		border-radius: 6px 6px 0 0;
	}

	.aircon-install .cont03 .about_box02 .box .item:nth-of-type(3) .ttl01 {
		padding-left: 18px;
	}

	.aircon-install .cont03 .about_box02 .box .item .price_text {
		font-size: 38px;
		font-weight: bold;
		line-height: 1;
		margin-top: 20px;
	}

	.aircon-install .cont03 .about_box02 .box .item .price_text span {
		font-size: 32px;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box02 .box .item .text04 {
		font-size: 16px;
		text-align: left;
		margin: 10px 15px 25px;
	}

	.aircon-install .cont03 .about_box02 .text05 {
		text-align: right;
		line-height: 1;
		margin-top: 10px;
		font-size: 14px;
	}

	.aircon-install .cont03 .about_box03 {
		margin-top: 30px;
		text-align: center;
	}

	.aircon-install .cont03 .about_box03 .item {
		position: relative;
		background: #fff;
		border: 3px solid #00bcc3;
		border-radius: 10px;
		box-sizing: border-box;
	}

	.aircon-install .cont03 .about_box03 .item::before {
		position: absolute;
		content: "";
		width: 103px;
		height: 103px;
		z-index: 1;
		top: -27px;
		left: -15px;
		transform: scale(0.7);
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(1)::before {
		background: url("img/aircon-install_deco09.png") no-repeat;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2)::before {
		background: url("img/aircon-install_deco10.png") no-repeat;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) {
		border: 3px solid #0091a2;
		margin-top: 30px;
	}

	.aircon-install .cont03 .about_box03 .item h3 {
		font-size: 20px;
		color: #fff;
		line-height: 50px;
		font-weight: bold;
		background: #00bcc3;
		border-radius: 6px 6px 0 0;
		padding-left: 40px;

	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) h3 {
		background: #0091a2;
		padding-left: 65px;
	}

	.aircon-install .cont03 .about_box03 .item .text02 {
		font-size: 28px;
		font-weight: bold;
		color: #082a4a;
		line-height: 1.4;
		margin-top: 30px;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 {
		font-size: 28px;
	}

	.aircon-install .cont03 .about_box03 .item .text02 .span01 {
		font-size: 32px;
		font-weight: bold;
		color: #00bcc3;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 .span01 {
		color: #0091a2;
		font-weight: bold;
	}

	.aircon-install .cont03 .about_box03 .item:nth-of-type(2) .text02 .span01 span {
		color: #082a4a;
		font-size: 16px;
		font-weight: bold;
		padding-left: 3px;
	}

	.aircon-install .cont03 .about_box03 .item .text04 {
		margin: 12px 15px 30px;
		font-size: 16px;
		text-align: left;
	}

	.aircon-install .cont03 .about_box03 .item .button {
		position: relative;
		height: 50px;
		text-align: center;
		margin: 20px auto 40px;
		width: 380px;
	}

	.aircon-install .cont03 .about_box03 .item .button a {
		display: block;
		background: #fff;
		border: 2px solid #00bcc3;
		line-height: 50px;
		border-radius: 14px;
		font-weight: bold;
		font-size: 18px;
		color: #00bcc3;
		box-sizing: border-box;
	}

	.aircon-install .cont03 .about_box03 .item .button ::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #00bcc3;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
	}


	/* cont04 */
	.aircon-install .cont04 {
		position: relative;
		background: url(img/common_bg_01.png);
	}

	.aircon-install .cont04::before {
		position: absolute;
		content: "";
		background: url("img/common_deco09.png") no-repeat;
		width: 263px;
		height: 215px;
		top: -105px;
		right: -58px;
		transform: scale(0.5);

	}

	.aircon-install .cont04 .inner {
		padding: 90px 15px 80px;
	}

	.aircon-install .cont04 h2 {
		position: relative;
		font-size: 26px;
		font-weight: bold;
		width: fit-content;
		margin: 0 auto;
		line-height: 1;
		text-align: center;
	}

	.aircon-install .cont04 h2::before {
		position: absolute;
		content: "";
		background: url(img/common_deco13.png) no-repeat;
		width: 53px;
		height: 47px;
		left: -31px;
		top: -31px;
		transform: scale(0.6);
	}

	.aircon-install .cont04 .text01 {
		font-size: 16px;
		padding: 0 15px;
		line-height: 2;
		margin-top: 25px;
	}

	.aircon-install .cont04 .text01:first-of-type {
		margin-top: 50px;
	}

	.aircon-install .cont04 .text01 span {
		font-weight: bold;
		font-size: 16px;
		color: #065aaa;
	}

	.aircon-install .cont04 .button {
		margin-top: 45px;
	}


	/* cont05 */
	.aircon-install .cont05 {
		padding: 80px 20px;
	}

	.aircon-install .cont05 .inner {
		padding: 80px 20px
	}

	.aircon-install .cont05 h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
		white-space: nowrap;
	}

	.aircon-install .cont05 h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.aircon-install .cont05 h2 span::before {
		position: absolute;
		content: "";
		background: url(img/professional_text05.png) center center / cover no-repeat;
		width: 144.2px;
		height: 39.2px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.aircon-install .cont05 .box {
		position: relative;
		display: flex;
		justify-content: end;
		margin-top: 50px;
	}

	.aircon-install .cont05 .box .text_box {
		padding-top: 329px;
	}

	.aircon-install .cont05 .box figure {
		position: absolute;
		top: 0;
	}

	.aircon-install .cont05 .box .text_box p {
		margin-top: 30px;
		font-size: 16px;
		line-height: 2.3;
	}

	.aircon-install .cont05 .area {
		height: 328px;
		background: #fff;
		border: 2px solid #065aaa;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: center;
		padding-bottom: 33px;
		margin-top: 30px;
	}

	.aircon-install .cont05 .area h3 {
		color: #fff;
		background: #065aaa;
		border-radius: 4px 4px 0 0;
		line-height: 40px;
		font-weight: bold;
	}

	.aircon-install .cont05 .area .area_list {
		text-align-last: left;
		height: 255px;
		overflow-y: auto;
		margin: 25px 5px 0 15px;
		padding-right: 20px;
	}

	.aircon-install .cont05 .area .area_list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		padding: 25px 0;
	}

	.aircon-install .cont05 .area .area_list li {
		line-height: 1;
		font-size: 14px;
	}

	.aircon-install .cont05 .area .area_list>li {
		font-size: 18px;
		font-weight: bold;
		color: #065aaa;
		margin-bottom: 30px;
	}

	.aircon-install .cont05 .area .area_list>li:last-of-type {
		margin: 0;
	}



/* works-archive
------------------------------------------------------------------------*/
	/* cont01 */
	.works-archive .cont01 {
		margin-top: 25px;
	}

	.works-archive .cont01 .btn {
		line-height: 68px;
		margin: 15px auto 0;
		width: 390px;
	}

	.works-archive .cont01 .btn:first-of-type {
		margin-top: 80px;
	}

	.works-archive .cont01 .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		border-radius: 10px;
	}

	.works-archive .cont01 .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.works-archive .cont01 .btn:nth-of-type(1) a {
		background: #065aaa;
	}

	.works-archive .cont01 .btn:nth-of-type(2) a {
		background: #0091a2;
	}

	.works-archive .cont01 .btn:nth-of-type(3) a {
		background: #348de2;
	}

	.works-archive .contact_box {
		margin-top: 100px;
	}

	.works-archive .cont02 .box {
		margin: 80px auto 0;
		padding: 0 20px;
	}

	.works-archive .cont02 .item {
		width: 100%;
		position: relative;
		margin-top: 50px;
	}

	.works-archive .cont02 .box .item:first-of-type {
		margin-top: 60px;
	}

	.works-archive .cont02 h3 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #065aaa;
		line-height: 26px;
		height: 26px;
		padding-left: 10px;
		margin-top: 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.works-archive .cont02 h3:before {
		content: "";
		position: absolute;
		background: #065aaa;
		width: 3px;
		height: 26px;
		left: 0;
		top: 0;
		border-radius: 3px;
	}

	.works-archive .cont02 .category_01,
	.works-archive .cont02 .category_02 {
		display: inline-block;
		line-height: 1;
		font-size: 14px;
		color: #fff;
		font-weight: bold;
		margin-top: 12px;
	}

	.works-archive .cont02 .category_01 {
		padding: 8px 14px 7px;
		background: #065aaa;
	}

	.works-archive .cont02 .category_02 {
		padding: 8px 22px 7px;
		background: #348de2;
	}

	.works-archive .cont02 .text02 {
		font-size: 16px;
		margin-top: 8px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.works-archive .cont02 .box .item a {
		display: flex;
		flex-direction: column-reverse;
	}

	.works-archive .cont02 .box .img_box {
		display: flex;
	}

	.works-archive .cont02 .box .img_box figure {
		position: relative;
	}

	.works-archive .cont02 .box .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.works-archive .cont02 .box .img_box figure img {
		width: 205px;
	}

	.works-archive .cont02 .box .img_box .before img {
		border: 1px solid #065aaa;
	}
	.works-archive .cont02 .box .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .box .img_box .after img {
		border: 1px solid #348de2;
	}
	.works-archive .cont02 .box .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-archive .cont02 .p_button_box {
		display: flex;
		justify-content: center;
		gap: 0 15px;
		margin: 50px auto 0;
	}

	.works-archive .cont02 .p_button a {
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		color: #065aaa;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid #065aaa;
		box-sizing: border-box;
	}

	.works-archive .cont02 .p_button.current {
		display: block;
		width: 40px;
		height: 40px;
		background: #065aaa;
		border-radius: 50%;
		color: #fff;
		font-size: 16px;
		line-height: 36px;
		text-align: center;
		border: 2px solid #065aaa;
		box-sizing: border-box;
		pointer-events: none;
	}



/* works-single
------------------------------------------------------------------------*/
	/* cont01 */
	.works-single .cont01 {
		padding: 0 15px;
	}

	.works-single .cont01 h2 {
		position: relative;
		font-weight: bold;
		font-size: 22px;
		line-height: 1.2;
		background: #e2f1ff;
		color: #065aaa;
		padding: 18px 10px 18px 39px;
		border-radius: 5px;
		margin-top: 60px;
	}

	.works-single .cont01 h2::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 53px;
		background: #065aaa;
		border-radius: 3px;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .cate01,
	.works-single .cont01 .cate02 {
		display: inline-block;
		line-height: 28px;
		color: #fff;
		font-weight: bold;
		margin-top: 30px;
		font-size: 14px;
	}

	.works-single .cont01 .cate01 {
		padding: 0 30px;
		background: #0091a2;
	}

	.works-single .cont01 .cate02 {
		padding: 0 25px;
		background: #348de2;
		margin-left: 10px;
	}

	.works-single .cont01 dl {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 407px;
		margin-top: 18px;
	}

	.works-single .cont01 dl dt {
		position: relative;
		font-weight: bold;
		color: #065aaa;
		padding-left: 33px;
		width: 162px;
		box-sizing: border-box;
	}

	.works-single .cont01 dl dt::before {
		position: absolute;
		content: "";
		top: 50%;
		transform: translateY(-50%);
	}


	.works-single .cont01 dl dt.day::before {
		background: url("img/works-single_deco01.png") no-repeat;
		left: 2px;
		width: 17px;
		height: 18px;
	}

	.works-single .cont01 dl dt.work::before {
		background: url("img/works-single_deco02.png") no-repeat;
		left: 2px;
		width: 16px;
		height: 20px;
	}

	.works-single .cont01 dl dt.time::before {
		background: url("img/works-single_deco03.png") no-repeat;
		left: 0;
		width: 20px;
		height: 19px;
	}

	.works-single .cont01 dl dt.type::before {
		background: url("img/works-single_deco04.png") no-repeat;
		left: 1px;
		width: 19px;
		height: 12px;
	}

	.works-single .cont01 dl dt.maker::before {
		background: url("img/works-single_deco05.png") no-repeat;
		left: 1px;
		width: 19px;
		height: 20px;
	}


	.works-single .cont01 dl dd {
		position: relative;
		font-weight: bold;
		line-height: 1.5;
		padding-left: 15px;
		width: 240px;
		box-sizing: border-box;
	}

	.works-single .cont01 dl dd::before {
		position: absolute;
		content: ":";
		font-weight: bold;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .text01 {
		margin-top: 25px;
	}

	.works-single .cont01 .img_box {
		display: flex;
		margin-top: 35px;
	}

	.works-single .cont01 .img_box .before {
		position: relative;
	}

	.works-single .cont01 .img_box .after {
		position: relative;
	}

	.works-single .cont01 .img_box .before {
		border: 1px solid #065aaa;
	}
	.works-single .cont01 .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(0.8);
		transform-origin: left top;
	}

	.works-single .cont01 .img_box .after {
		border: 1px solid #348de2;
	}
	.works-single .cont01 .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
		transform: scale(0.8);
		transform-origin: left top;
	}

	.works-single .cont01 .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		transform-origin: center;
		z-index: 1;
	}

	.works-single .cont01 .h3_box h3 {
		position: relative;
		font-size: 22px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 23px;
		line-height: 36px;
		margin: 36px 0 20px 0;
	}

	.works-single .cont01 .h3_box h3::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 34px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .h3_box h3::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		background: #065aaa;
		bottom: -10px;
		left: 0;
	}

	.works-single .cont01 .h3_box .text02 {
		margin-top: 32px;
	}

	.works-single .cont01 .h4_box h4 {
		position: relative;
		font-size: 20px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 15px;
		line-height: 25px;
		margin: 38px 0 15px 0;
	}

	.works-single .cont01 .h4_box h4::before {
		position: absolute;
		content: "";
		width: 5px;
		height: 25px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont01 .h5_box h5 {
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #082a4a;
		padding-left: 21px;
		line-height: 1;
		margin: 40px 0 20px 0;
	}

	.works-single .cont01 .h5_box h5::before {
		position: absolute;
		content: "";
		width: 16px;
		height: 16px;
		background: #065aaa;
		border-radius: 3px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}


	/* cot02 */
	.works-single .cont02 {
		margin-top: 50px;
		padding: 0 20px;
	}

	.works-single .cont02 .prev_box,
	.works-single .cont02 .next_box {
		position: relative;
		border-radius: 8px;
		border: 2px solid #065aaa;
		box-sizing: border-box;
		background: #e2f1ff;
	}

	.works-single .cont02 .next_box {
		border: 2px solid #348de2;
		margin-top: 25px;
	}

	.works-single .cont02 .prev_box a,
	.works-single .cont02 .next_box a {
		position: relative;
	}

	.works-single .cont02 .prev_box a::before {
		position: absolute;
		content: "";
		width: 35px;
		height: 35px;
		background: url("img/prev_next_btn01.png") no-repeat;
		left: -17.5px;
		top: 50%;
		z-index: 1;
	}

	.works-single .cont02 .next_box a::before {
		position: absolute;
		content: "";
		width: 35px;
		height: 35px;
		background: url("img/prev_next_btn01.png") no-repeat;
		transform: rotate(-180deg);
		right: -17.5px;
		top: 50%;
		z-index: 1;
	}

	.works-single .cont02 h3 {
		line-height: 42px;
		background: #065aaa;
		color: #fff;
		font-weight: bold;
		font-size: 20px;
		text-align: center;
		border-radius: 5px 5px 0 0;
	}

	.works-single .cont02 .next_box h3 {
		background: #348de2;
	}

	.works-single .cont02 .ttl01 {
		line-height: 1.2;
		font-size: 20px;
		color: #082a4a;
		font-weight: bold;
		margin: 18px 15px 0;
	}

	.works-single .cont02 .cate01,
	.works-single .cont02 .cate02 {
		color: #fff;
		font-weight: bold;
		font-size: 13px;
		line-height: 22px;
		display: inline-block;
		border-radius: 3px;
		margin-top: 10px;
	}

	.works-single .cont02 .cate01 {
		padding: 0 24px;
		background: #0091a2;
		margin-left: 15px;
	}

	.works-single .cont02 .cate02 {
		padding: 0 22px;
		margin-left: 5px;
		background: #348de2;
	}

	.works-single .cont02 .date {
		display: inline-block;
		font-size: 14px;
		line-height: 22px;
		font-weight: bold;
		margin: 0 15px;
	}

	.works-single .cont02 .img_box {
		display: flex;
		justify-content: center;
		margin: 15px 15px 25px;
		position: relative;
	}

	.works-single .cont02 .img_box figure {
		position: relative;
	}

	.works-single .cont02 .img_box .before::before {
		position: absolute;
		content: "";
		background: url(img/common_deco11.png) center center / cover no-repeat;
		width: 16px;
		height: 30px;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		z-index: 1;
	}

	.works-single .cont02 .img_box figure img {
		width: 183px;
	}

	.works-single .cont02 .img_box .before img {
		border: 1px solid #065aaa;
	}
	.works-single .cont02 .img_box .before::after {
		position: absolute;
		content: "";
		background: url("img/before_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}

	.works-single .cont02 .img_box .after img {
		border: 1px solid #348de2;
	}
	.works-single .cont02 .img_box .after::after {
		position: absolute;
		content: "";
		background: url("img/after_text.png") no-repeat;
		width: 99px;
		height: 28px;
		top: 0;
		left: 0;
	}


	/* cont03 */
	.works-single .cont03 {
		padding: 0 15px;
	}

	.works-single .cont03 h2 {
		position: relative;
		font-weight: bold;
		font-size: 22px;
		line-height: 1;
		background: #e2f1ff;
		color: #065aaa;
		padding: 18px 0 18px 39px;
		border-radius: 5px;
		margin-top: 50px;
	}

	.works-single .cont03 h2::before {
		position: absolute;
		content: "";
		width: 6px;
		height: 36px;
		background: #065aaa;
		border-radius: 3px;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
	}

	.works-single .cont03 .cate_box {
		margin-top: 25px;
	}

	.works-single .cont03 .cate_box .btn {
		line-height: 68px;
		margin-top: 15px;
	}

	.works-single .cont03 .cate_box .btn a {
		position: relative;
		display: block;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		border-radius: 10px;
	}

	.works-single .cont03 .cate_box .btn a::before {
		content: "";
		position: absolute;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		background: #fff;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 6px;
		height: 10px;
		transition: background-color 0.4s ease;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(1) a {
		background: #065aaa;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(2) a {
		background: #0091a2;
	}

	.works-single .cont03 .cate_box .btn:nth-of-type(3) a {
		background: #348de2;
	}

	.works-single .contact_box {
		margin-top: 100px;
	}



/* faq
------------------------------------------------------------------------*/
.faq .cont01,
.faq .cont02,
.faq .cont03 {
	box-sizing: border-box;
	margin: 70px 30px 0;
}
.faq .cont03 {
	margin: 70px 30px;
}
.faq .cont01 h2,
.faq .cont02 h2,
.faq .cont03 h2 {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	color: #082a4a;
	padding-left: 55px;
	padding-bottom: 20px;
	line-height: 1.38;
}
.faq .cont01 h2:before,
.faq .cont02 h2:before,
.faq .cont03 h2:before {
	position: absolute;
	content: "";
	left: 0;
	top: -3px;
	width: 40px;
	height: 27px;
	background: url(img/key_deco01.png) center / contain no-repeat;
}
.faq .cont01 .box,
.faq .cont02 .box,
.faq .cont03 .box {
	padding: 30px 30px 30px 27px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:first-of-type,
.faq .cont02 .box:first-of-type,
.faq .cont03 .box:first-of-type {
	border-top: 2px solid var(--main-color);
}
.faq .cont01 .box:last-of-type,
.faq .cont02 .box:last-of-type,
.faq .cont03 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span,
.faq .cont02 .box span,
.faq .cont03 .box span {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span,
.faq .cont02 .box.active span,
.faq .cont03 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before,
.faq .cont02 .box span::before,
.faq .cont03 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after,
.faq .cont02 .box span::after,
.faq .cont03 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after,
.faq .cont02 .box.active span::after,
.faq .cont03 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p,
.faq .cont02 .box p,
.faq .cont03 .box p {
	position: relative;
}
.faq .cont01 .box .qus::before,
.faq .cont02 .box .qus::before,
.faq .cont03 .box .qus::before {
	content: 'Q';
	position: absolute;
	top: -2px;
	left: -20px;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
.faq .cont01 .box .qus,
.faq .cont02 .box .qus,
.faq .cont03 .box .qus {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
}
.faq .cont01 .box.active .qus,
.faq .cont02 .box.active .qus,
.faq .cont03 .box.active .qus {
	color: #bbbbbb;
}
.faq .cont01 .box .ans,
.faq .cont02 .box .ans,
.faq .cont03 .box .ans {
	line-height: 2;
	padding-top: 15px;
	display: none;
}
.faq .cont02 .cancel-table {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
}
.faq .cont02  .cancel-table tr,
.faq .cont02  .cancel-table td {
	border: 1px solid #ddd;
	padding: 5px;
	font-size: 14px;
}
.faq .cont02  .cancel-table th {
	background: #f5f5f5;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 22px;
	text-align: center;
	padding-bottom: 25px;
	font-weight: bold;
	position: relative;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 12px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "OUTLINE";
}
.company .cont03 h2::before {
	content: "Specified Commercial Transaction Law";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
	font-size: 14px;
}
.company table tr {
	border-top: 1px solid #fff;
	padding: 20px;
	display: block;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.company table td {
	display: block;
}


/* cont01 */
.company .cont01 {
	margin: 60px auto;
	padding: 0 30px;
}
.company .cont01 .flex {
	margin-top: 20px;
}
.company .cont01 .flex .text_box {
	padding-top: 25px;
	line-height: 1.9;
}
.company .cont01 .flex .text_box h3 {
	font-size: 18px;
	padding-bottom: 12px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 18px;
	margin-top: 15px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 14px;
	font-weight: bold;
}
.company .cont01 .flex .img img {
	width: 100%;
	border-radius: 10px;
}


/* cont02 */
.company .cont02 {
	margin: 60px auto 80px;
	padding: 60px 0 80px;
	background: #e2f1ff;
}


/* cont03 */
.company .cont03 {
	/* margin: 60px auto; */
	margin: 80px auto 0;
	padding: 0 30px;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}



/*blog 共通項目
--------------------------------------------------------------------------*/
.blog .flex{
	margin:70px auto;
}
.blog .flex .side .side_box01,
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 70px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	padding-left: 15px;
	font-size: 14px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	max-width: 100%;
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img {
	position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 25px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1.2;
	font-size: 12px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/* blog_archive
------------------------------------------------------------------------*/

.blog_archive .cont01 .cont{
	width: 330px;
	margin:0 auto 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--main-color);
}
.blog_archive .cont01 .cont a {
	display: flex;
	flex-direction: column-reverse;
}
.blog_archive .cont01 .cont h2 {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 95px;
	padding: 7px 15px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	margin: 10px 0;
}
.blog_archive .cont01 .cont .text {
	margin-top: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.blog_archive .cont01 .cont .img{
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog_archive .cont01 .cont .img img {
	background: var(--main-light-color);
	border-radius: 5px;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
	box-sizing: border-box;
	margin: 0;
}*/

.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}

.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}



/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 70px auto 0;
}
.contact .cont01 .tel-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	/* border-bottom: 1px solid var(--main-color); */
}
.contact .cont01 .line-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 h2{
	font-size: 16px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	margin-top: 5px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	padding: 15px 30px 15px 70px;
	border-radius: 30px;
	background: url(img/contact-line_sp.png) no-repeat center left 30px #00b12b;
}


/* cont02 */
.contact .cont02 {
	margin: 30px auto 70px;
	padding: 0 30px;
}
.contact .cont02 h2{
	font-size: 16px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.8;
}
.contact .cont02 .lead li:nth-of-type(n+2) {
	margin-top: 10px;
}
.contact .cont02 table{
	width:100%;
	margin: 20px auto 0;
	font-size: 14px;
}
.contact .cont02 table tr {
	display: block;
	padding: 20px 0;
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table tr:first-of-type {
	border-top: none;
}
.contact .cont02 table th{
	display: block;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
}
.contact .cont02 table th:before{
	content: "";
	width: 2px;
	height: 20px;
	background-color: var(--main-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	padding: 7px 15px;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 table td{
	display: block;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px;
	border: none !important;
	background: #e2f1ff;
	border-radius: 5px !important;
}
.contact .cont02 table .hope-tr .hope-title {
    margin-block: 10px;
	font-size: 18px;
	margin-left: 5px;
}
.contact .cont02 table .hope-tr .hope-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap	;
}
.contact .cont02 table .hope-tr .hope-row span {
	font-size: 16px;
}
.contact .cont02 table .hope-tr .hope-row .month,
.contact .cont02 table .hope-tr .hope-row .day {
	width: 90px;
	max-width: 100px;
	flex: 0 0 100px;
}
.contact .cont02 table .hope-tr .hope-row .time {
	max-width: 312px;
}
.contact .cont02 table td textarea{
	height: 250px !important;
}
.contact .cont02 tr.address-contact td {
	position: relative;
	padding-top: 30px;
}
.contact .cont02 tr.address-contact td span {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
}
.contact .cont02 tr.address-contact input:first-of-type {
	width: 150px !important;
	margin-right: 5px;
}
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 220px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-top: 10px !important;
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 20px;
	font-size: 16px;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin: 0 5px !important;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px !important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input[type="submit"] {
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 50px 15px 70px;
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
.thanks .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 40px;
}
.thanks .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	padding: 70px 30px 0;
}
.privacy .cont01 h2 {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	color: #082a4a;
}
.privacy .cont01 .text01 {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 25px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 30px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	font-size: 18px;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
	font-size: 14px;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li {
	font-size: 14px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 10px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px;
	background: #e2f1ff;
	margin-top: 20px;
	font-size: 14px;
	margin-bottom: 40px;
}


/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/

.yonmaruyon .cont01,
.yonichimaru .cont01{
	padding: 50px 0 80px;
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: var(--main-color);
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button ,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}


/* contact_box
------------------------------------------------------------------------*/
	.contact_box {
		width: 380px;
		margin: 0 auto 80px;
		background: #fff;
		border: 3px solid #065aaa;
		border-radius: 18px;
		padding: 60px 30px 55px;
		box-sizing: border-box;
	}

	.contact_box h2 {
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #082a4a;
	}

	.contact_box h2 span {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		display: block;
		line-height: 1;
		color: #444;
		padding-bottom: 15px;
	}

	.contact_box h2 span::before {
		position: absolute;
		content: "";
		background: url(img/contact_text01.png) center center / cover no-repeat;
		width: 226.2px;
		height: 34.8px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, calc(-50% - 10px));
		z-index: -1;
	}

	.contact_box .text01 {
		text-align: center;
		margin-top: 30px;
	}

	.contact_box .info_box {
		margin-top: 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.contact_box .info_box .tel {
		text-align: center;
		margin-left: 10px;
	}

	.contact_box .info_box .tel {
		text-align: center;
		line-height: 1;
		width: 280px;
	}

	.contact_box .info_box .tel img {
		padding-bottom: 7px;
		width: 100%;
	}

	.contact_box .info_box .tel a {
		font-weight: bold;
	}

	.contact_box .info_box .btn-01 {
		position: relative;
		width: 260px;
		height: 50px;
		text-align: center;
	}

	.contact_box .info_box .btn-01 a {
		display: block;
		background: #06c755 url(img/header_icon02.png) left 60px top 14px no-repeat;
		padding-left: 43px;
		border: 1px solid #06c755;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
	}

	.contact_box .info_box .btn-01 {
		position: relative;
		width: 280px;
		height: 50px;
		text-align: center;
	}

	.contact_box .info_box .btn-02 {
		position: relative;
		width: 280px;
		height: 50px;
		text-align: center;
	}

	.contact_box .info_box .btn-02 a {
		display: block;
		background: #065aaa url(img/contact_mail_img02.png) left 63px top 18px no-repeat;
		padding-left: 34px;
		border: 1px solid #065aaa;
		border-radius: 10px;
		font-size: 16px;
		line-height: 50px;
		color: #fff;
		font-weight: bold;
		letter-spacing: 1.5px;
	}



	/*  other_sight */
	.other_sight {
		padding: 25px 0 50px;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 14px;
		z-index: -1;
	}
	.other_sight figure {
		width: 380px;
		margin: 0 auto;
	}
	.other_sight::after {
		content: "";
		position: absolute;
		background: url(img/common_bg_01.png);
		width: 100%;
		height: 500px;
		bottom: 0;
		z-index: -1;
	}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 30px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 30px;
	line-height: 1.2;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 25px;
}
.post_cont .index_nav ul li a {
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 14px;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 20px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:18px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:16px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 1.5;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 380px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
	footer{
		color: #fff;
		background: #065aaa;
		position: relative;
	}
	footer .inner{
		display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        padding: 80px 20px 70px;
        position: relative;
	}
	footer .address_box {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	footer .address_box figure {
		text-align: center;
	}
	footer p.tel,
	footer p.mail,
	footer p.time {
		position: relative;
		font-weight: bold;
		padding-left: 26px;
		line-height: 2;
		font-size: 16px;
		width: fit-content;
	}
	footer p.tel {
		margin-top: 50px;
	}

	footer p.tel::before {
		position: absolute;
		content: "";
		background: url(img/contact_tel02.png) center center / cover no-repeat;
		width: 16px;
		height: 16px;
		top: 50%;
		left:  0;
		transform: translateY(-50%);
	}

	footer p.mail::before {
		position: absolute;
		content: "";
		background: url(img/contact_mail_img02.png) center center / cover no-repeat;
		width: 16px;
		height: 13px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	footer p.time::before {
		position: absolute;
		content: "";
		background: url(img/contact_time02.png) center center / cover no-repeat;
		width: 16px;
		height: 16px;
		top: 50%;
		left:  0;
		transform: translateY(-50%);
	}

	footer p.place {
		margin-top: 25px;
		line-height: 1.5;
		font-size: 16px;
	}
	footer p.place:first-of-type {
		margin-top: 48px;
	}

	footer p.place span {
		position: relative;
		font-weight: bold;
		display: block;
		font-size: 16px;
		line-height: 24px;
		padding-left: 16px;
		margin-bottom: 8px;
	}
	footer p.place span::before {
		content: "";
		position: absolute;
		background: #fff;
		width: 3px;
		height: 24px;
		left: 0;
		top: 0;
		border-radius: 2px;
	}

	footer .sitemap_box .text01,
	footer .area_box .text01,
	footer .blog_box .text01 {
		position: relative;
		width: fit-content;
		padding: 0 10px;
		font-weight: bold;
		font-size: 18px;
	}
	footer .sitemap_box .text01::before,
	footer .area_box .text01::before,
	footer .blog_box .text01::before {
		content: "[";
		position: absolute;
		left: 0;
		top: 0;
	}
	footer .sitemap_box .text01::after,
	footer .area_box .text01::after,
	footer .blog_box .text01::after {
		content: "]";
		position: absolute;
		right: 0;
		top: 0;
	}
	footer .inner .sitemap_box ul{
		margin-top: 10px;
	}
	footer .inner .sitemap_box ul li a{
		color: #fff;
		font-size: 14px;
		line-height: 2.3;
		font-weight: bold;
		position: relative;
	}
	footer .inner .area_box{
		width: 150px;
	}
	footer .inner .area_box ul.area_list{
		height: 515px;
		overflow-y: auto;
		margin-top: 12px;
	}
	footer .inner .area_list ul li {
		list-style-type: disc;
	}
	footer .inner .area_box ul::-webkit-scrollbar {
		width: 3px;
	}
	footer .inner .area_box ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .inner .area_box ul::-webkit-scrollbar-thumb {
		background-color: #959595;
	}
	footer .inner .area_box ul li a{
		color: #fff;
		font-weight: bold;
		font-size: 14px;
		line-height: 2.71;
		position: relative;
	}
	footer .area_list>li {
		position: relative;
		padding-left: 18px;
		font-weight: bold;
	}
	footer .area_list>li::before {
		position: absolute;
		content: "";
		width: 8px;
		height: 8px;
		background: #fff;
		left: 0;
		top: 10px;
	}
	footer .inner .blog_box{
		width: 360px;
	}
	footer .inner .blog_box ul{
		margin-top: 10px;
	}
	footer .inner .blog_box ul li a{
		color: #fff;
		font-weight: bold;
		width: 350px;
		font-size: 14px;
		line-height: 2.71;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		position: relative;
	}

	footer .to_top {
		position: fixed;
		right: 5px;
		bottom: 5px;
		z-index: 10;
	}
	footer .copy {
		font-size: 12px;
		line-height: 1;
		margin-top: 30px;
		text-align: center;
	}



}/*SPの記述ここまで*/





/* swiper
----------------------------------------------------------*/

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}





/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
}
div#mfp_hidden input {
	margin: 10px;
}
div.mfp_thanks {
	padding: 30px;
}
div.mfp_thanks p {
	line-height: 1.7em;
}
div.mfp_thanks ul.mfp_caution {
	margin: 0px;
	padding: 0px;
}
div.mfp_thanks ul.mfp_caution li {
	display: block;
	color: #C00;
	margin: 0px;
	padding: 5px 0px;
}
div#mfp_thanks {
	text-align: center;
	font-size: 18px;
	padding: 20px 0px;
}
div#mfp_thanks strong {
	color: #C00;
	font-size: 24px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
form#mailformpro .must {
	display: block;
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro .optionally {
	display: block;
	background-color: #06C;
	border: solid 2px #06C;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	border-top: solid 1px #CCC;
	padding: 9px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
div#mfp_phase_confirm {
	clear: both;
}
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
div#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_overlay_inner {
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_loading_screen {
	z-index: 20000;
	opacity: 0.8;
	display: none;
	background-color: #000;
	position: absolute;
}
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(img/mfp_loading.gif);
}
.mfp_colored {
	background-color: #F6F7F9;
}
.mfp_achroma {
	background-color: #FFF;
}
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 14px;
	line-height: normal;
	background-image: url(img/mfp_error.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
}
.mfp_parent_error {
	border: solid 2px #F00;
}
form#mailformpro .problem {
	background-color: #FCC;
}
div#mfp_error {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
}
div#mfp_error p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_error p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_warning {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
	border-radius: 5px;
}
div#mfp_warning p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_warning p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_price {
	color: #C00;
	font-size: 36px;
	padding: 10px;
	font-weight: bolder;
}
div#mfp_price span {
	color: #666;
	font-size: 12px;
	font-weight: normal;
}
button.mfp_next,button.mfp_prev {
	font-size: 18px;
	margin: 10px;
	padding: 5px 10px;
}
button.mfp_next {
	float: right;
}
button.mfp_prev {
	float: left;
}
ul#mfp_phase_stat {
	padding: 10px;
	text-align: center;
}
ul#mfp_phase_stat li {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 5px;
	margin: 0px 5px;
	list-style: none;
	font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
	box-shadow: none;
	color: #999;
	padding: 8px 0px;
}
ul#mfp_phase_stat li.mfp_active_phase {
	box-shadow: 0px 1px 6px #000;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #0068B7;
	border: solid 2px #0068B7;
	font-weight: bolder;
	color: #FFF;
	text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #EEE;
	border: solid 2px #EEE;
	color: #999;
	box-shadow: 0px 1px 6px #CCC;
}
div#mfp_shopping_cart {
	border: solid 1px #CCC;
	margin: 0px;
	padding: 0px;
}
div#mfp_shopping_cart p {
	margin: 0px;
	text-align: center;
	padding: 20px 10px;
	font-size: 12px;
	background-color: #FEE;
}
table.mfp_shoppingcart {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table.mfp_shoppingcart thead tr td {
	background-color: #EEE;
	border-bottom: solid 1px #CCC;
	text-align: center;
	font-size: 12px;
	padding: 5px;
}
table.mfp_shoppingcart tbody tr th,table.mfp_shoppingcart tbody tr td {
	font-size: 12px;
	padding: 5px;
	border-bottom: solid 1px #CCC;
}
table.mfp_shoppingcart tbody tr td select {
	display: block;
	margin: 0px auto;
	text-align: center;
}
table.mfp_shoppingcart tbody tr td select option {
	text-align: center;
}
table.mfp_shoppingcart tbody tr th span {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #666;
	padding: 3px 0px;
}
table.mfp_shoppingcart tfoot tr td {
	padding: 5px;
	font-size: 16px;
	font-weight: bolder;
	color: #900;
}
td.msc_price {
	font-size: 12px;
	text-align: right;
}
div.mfp_buttons {
	clear: both;
	padding: 10px 0px;
	text-align: center;
}
div.mfp_buttons button#mfp_button_send {
	padding: 10px 100px;
	background-color: #3ac5ff;
	border: 1px solid #3ac5ff;
	color: #FFFFFF;
	cursor: pointer;
}
div.mfp_buttons button#mfp_button_cancel {
	padding: 10px 100px;
	border: 1px solid #3ac5ff;
	color: #3ac5ff;
	cursor: pointer;
	background:#fff;
}
.imagebutton {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	background: none;
}
.mfp_element_checkbox,
.mfp_element_radio {
	vertical-align: middle;
	margin: 0px 2px;
}
.mfp_element_file {
	font-size: 12px;
	display: inline-block;
	padding: 10px 10px;
	vertical-align: middle;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
.mfp_element_reset {
	color: #333;
}
button.mfp_next,button.mfp_prev {
	font-size: 14px;
}
input#mfp_reserve_item,input#mfp_reserve_date {
	display: none;
}
div#mfp_reserve_wrapper {
	position: relative;
	overflow: hidden;
	border: solid 1px #CCC;
}
div#mfp_reserve_inner {
	position: relative;
	padding: 0px 0px 0px 100px;
	overflow: auto;
}
div#mfp_reserve_wrapper table {
	border-spacing: 0px;
	border-collapse: collapse;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	background-color: #FEE;
	z-index: 100;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value {
	padding: 0px 0px 0px 0px;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
	background-color: #E8EEF9;
}
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
	background-color: #0068B7;
	color: #FFF;
}
td.mfp_reserve_disabled {
	background-color: #CCC;
}
td.mfp_reserve_warning {
	background-color: #FFC;
}
div#mfp_reserve_wrapper table tr td,div#mfp_reserve_wrapper table tr th {
	border: solid 1px #CCC;
	padding: 0px 5px;
	font-size: 12px;
	text-align: center;
	font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
	height: 20px;
	text-align: left;
}
td.mfp_reserve_week_0 {
	color: #F00;
	background-color: #FEE;
}
td.mfp_reserve_week_6 {
	color: #00F;
	background-color: #EEF;
}
div.mfp_ok {
	border: solid 1px #111;
	display: inline-block;
	padding: 1px 10px;
	margin-top: 5px;
	color: #111;
	font-size: 12px;
	display: none;
    background: var(--main-color);
    color: #fff;
}
div.prefcodeWrapper {
	position: relative;
}
div.prefcodeResult {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	border: solid 1px #CCC;
	background-color: #FFF;
	box-shadow: 0px 0px 5px #CCC;
	display: none;
}
div.prefcodeResult div {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div.prefcodeResult div:hover {
	background-color: var(--main-light-color);
}
}
div.prefcodeResult div.prefcodeNext {
	background-color: #EEE;
	text-align: center;
}
div.prefLoading {
	padding: 60px 100px;
	background: url(img/mfp_zip_loading.gif) no-repeat center center;
}
.hidefield {
	height: 0px;
	overflow: hidden;
}
.showfield {
	height: auto;
	overflow: visible;
}
div.mfp_attached_thumbnails {
	display: none;
	padding: 5px;
	margin: 5px auto;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
div.mfp_attached_thumbnails ul {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	border: solid 4px #FFF;
	margin: 5px;
	box-shadow: 0px 2px 5px #999;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
	display: block;
	max-height: 100px;
	overflow: hidden;
}
div.mfp_attached_thumbnails ul li a img {
	display: block;
	max-width: 80px;
}
button.mfp_attached_reset {
	font-size: 14px;
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner {
	display: none;
}
div#mfp_OperationCheck strong {
	background: #090;
	display: block;
	color: #222;
	text-align: center;
	border-radius: 3px;
}
div#mfp_OperationCheck * {
	padding: 0px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p {
	padding: 0px 5px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p a {
	color: #0C0;
	text-decoration: none;
}
@media screen and (min-width: 441px){
div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
	text-decoration: underline;
}
}
div#mfp_OperationCheck p button {
	border: none;
	background: none;
	color: #0C0;
	cursor: pointer;
}
div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
	line-height: 12px;
	font-size: 12px;
	list-style: none;
	vertical-align: middle;
}
div#mfp_OperationCheck ul li {
	padding: 5px 10px;
}
div#mfp_OperationCheck ul li
{
	text-decoration: underline;
}
button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
	border-radius: 5px;
	padding: 5px 10px 5px 2em;
	border: solid 1px #CCC;
	background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -moz-linear-gradient(top, #EEE, #CCC);
	background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
	text-shadow: 0px 2px 0px #FFF;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	margin: 5px auto;
}
button#mfp_recorder_record {
	background: url(img/mfp_record_disabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_clear {
	background: url(img/mfp_record_remove.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_restore {
	background: url(img/mfp_record_restore.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
	background: url(img/mfp_record_enabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
div#mfp_recorder_wrap {
	border: solid 1px #CCC;
	padding: 10px;
	text-align: center;
	margin: 5px auto;
}
td.request_image {
	width: 100px;
}
td.request_image img {
	max-width: 100px;
}
span.mfp_tips {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #FCC;
	display: block;
	border-radius: 5px;
	padding: 10px;
	margin: 2px;
	box-shadow: 0px 2px 10px #999;
}
span.mfp_tips strong {
	color: #800040;
}
span.mfp_tips span {
	display: block;
	padding: 10px;
	color: #008080;
}
span.mfp_tips em {
	font-style: normal;
	color: #090;
	font-weight: bold;
}
@media screen and (max-width: 1240px) {
	div#mfp_overlay_background{
		width:1240px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:1240px !important;
	}
}
@media screen and (max-width: 800px) {
	form#mailformpro dl dt {
		float: none;
		width: auto;
		font-size: 12px;
		padding: 5px;
		text-align: left;
	}
	form#mailformpro dl dd {
		clear: both;
		border-top: none;
		padding: 5px 15px;
		font-size: 12px;
		line-height: 1.5em;
	}
	div.mfp_buttons button {
		font-size: 14px;
	}
	div#mfp_phase_confirm h4 {
		font-size: 18px;
	}
	ul#mfp_phase_stat {
		padding: 0px;
		text-align: left;
	}
	ul#mfp_phase_stat li {
		text-align: center;
		padding: 5px 0px;
		border-radius: 3px;
		margin: 5px;
		list-style: none;
		font-size: 14px;
		width: 28%;
	}
	ul#mfp_phase_stat li.mfp_phase_arrow {
		bos-shadow: none;
		display: none;
	}
	table#mfp_confirm_table tr th {
		white-space: nowrap;
		width: 150px;
	}
	div#mfp_thanks {
		text-align: center;
		font-size: 18px;
		padding: 20px 0px;
	}
	div#mfp_thanks strong {
		color: #C00;
		font-size: 24px;
		display: block;
	}
}

@media screen and (max-width: 441px) {
	div#mfp_overlay_background{
		width:440px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:440px !important;
	}
	div#mfp_overlay_inner{
		width:390px;
		max-width:none;
	}
	div.mfp_buttons button#mfp_button_send {
		padding: 10px 0;
		width:300px;
		margin-bottom: 10px;
	}
	div.mfp_buttons button#mfp_button_cancel {
		padding: 9px 0;
		width:300px;
		margin-right: 3px;
	}
}


body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
