@charset "utf-8";
/* ページ汎用 ----------------------------------------*/
/* Safariのclamp関数対策 */
* {
	min-height: 0vw;
}

body {
	background-color: #FFF !important;
	color: #212121;
	font-family: 'Noto Sans JP', sans-serif !important;
	font-style: normal;
	overflow-wrap: break-word;
	text-align: justify;
	word-break: break-all;
}

body * {
	box-sizing: border-box;
	line-height: 1.5;
}

p {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

ol,
ul {
	margin: 0;
	padding-left: 0 !important;
}

ol li,
ul li {
	list-style: none;
}

form * {
	font-family: 'Noto Sans JP', sans-serif !important;
}

a,
button,
input[type="image"],
input[type="submit"] {
	color: #212121;
	cursor: pointer;
	text-decoration: none;
	transition: 0.2s;
}

a:hover,
button:hover,
input[type="image"]:hover,
input[type="submit"]:hover {
	opacity: 0.8;
}

a:disabled,
button:disabled,
input[type="image"]:disabled,
input[type="submit"]:disabled {
	opacity: 1.0 !important;
}

.contentsWrap {
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
	width: calc(100% - 80px);
}

@media screen and (max-width: 1024px) {
	.contentsWrap {
		width: calc(100% - 40px);
	}
}

.btnWrap {
	position: relative;
	text-align: center;
	width: 100%;
}

.btnWrap .microCopy {
	color: #0099D9;
	display: block;
	font-size: clamp(16px,0.9vw,18px);
	font-weight: 700;
	margin-bottom: 5px;
	text-align: center;
	width: 100%;
}

.btnWrap br {
	display: none;
}

.btnWrap a {
	text-decoration: none;
}

.btnWrap input[type="image"],
.btnWrap a img {
	filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
	height: auto;
	max-width: 500px;
	padding: 0;
	width: 100%;
}

.page_thanks .btnWrap a,
.page_lpForm .btnWrap a {
	align-items: center;
	background: none;
	border: 3px solid #0099D9;
	border-radius: clamp(25px,2vw,40px);
	color: #0099D9;
	display: flex;
	font-size: clamp(16px,0.9vw,18px);
	font-weight: 700;
	height: clamp(40px,2.6vw,50px);
	justify-content: center;
	letter-spacing: 0.12em;
	margin: 0 auto;
	max-width: 250px;
	position: relative;
	width: 100%;
}

.page_thanks .btnWrap a::after,
.page_lpForm .btnWrap a::after {
	content: '\f054';
	font-family: "Font Awesome 6 Free" !important;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	right: 15px;
	top: calc((100% - 12px) / 2);
}

.page_thanks .btnWrap a span b,
.page_lpForm .btnWrap a span b {
	background-color: #FFF;
	border-radius: 3px;
	color: #DE561C;
	font-size: 80%;
	font-weight: 900;
	letter-spacing: 0.15em;
	line-height: 1;
	margin-right: 5px;
	padding: 2px 3px;
}

/* カラムレイアウト ----------------------------------------*/
.columnFlex {
	display: flex;
	overflow-x: hidden;
	width: 100%;
}

.columnFlex .column_left {
	width: calc(100% - 370px);
}

.columnFlex .column_right {
	background-color: #FFF;
	border: 1px solid #0099D9;
	box-shadow: 0 0 20px 0 rgba(51,51,51,0.1);
	position: fixed;
	right: 0;
	top: 0;
	width: 370px;
	z-index: 9999;
}

@media screen and (max-width: 1500px) {
	.columnFlex .column_left {
		width: calc(100% - 260px);
	}
	.columnFlex .column_right {
		width: 260px;
	}
}

@media screen and (max-width: 1024px) {
	.columnFlex {
		display: block;
	}
	.columnFlex .column_left {
		width: 100%;
	}
	.columnFlex .column_right {
		display: none;
	}
}

/* フォーム周り ----------------------------------------*/
/* 汎用 */
.sidebar h2,
.section_form h2 {
	align-items: center;
	background-color: #0099D9 !important;
	color: #FFF;
	display: flex;
	font-size: clamp(16px,1.2vw,24px);
	font-weight: 700;
	height: clamp(30px,3.1vw,60px);
	justify-content: center;
	margin: 0 !important;
	width: 100%;
}

.formWrap {
	height: 100%;
	padding: 0 20px 20px 20px;
}

.formWrap::-webkit-scrollbar {
	background: rgba(255,255,255,0);
	height: 5px;
	width: 5px;
}

.formWrap::-webkit-scrollbar-thumb {
	background-color: rgba(51,51,51,0.3);
	border-radius: 2.5px;
}

.formWrap form p {
	margin-bottom: 30px !important;
	text-align: justify;
}

.formWrap form p:first-of-type {
	margin-top: 20px !important;
}

.formWrap form p label {
	color: #0099D9;
	display: block;
	font-size: clamp(16px,1vw,20px);
	font-weight: 600;
	margin-bottom: 10px;
}

.formWrap form p label::before {
	border-radius: 3px;
	color: #FFF;
	font-size: 70%;
	margin-right: 5px;
	padding: 3px 6px;
}

.formWrap form p label.required::before {
	background-color: #F7AB00;
	content: '必須';
}

.formWrap form p label.optional::before {
	background-color: #212121;
	content: '任意';
}

.formWrap form p label + br {
	display: none;
}

.formWrap form select,
.formWrap form input {
	background-color: #FFF;
	border: 1px solid #212121;
	font-size: 16px;
	padding: 5px;
	width: 100%;
}

.formWrap form .btnWrap input {
	background-color: unset;
	border: unset;
}

.wpcf7-not-valid-tip {
	color: red;
	display: block;
	font-size: 12px !important;
	margin-top: 3px;
}

.wpcf7-not-valid-tip::before {
	content: '※';
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
	font-size: clamp(16px,8.3vw,16px);
	font-weight: 600;
	margin: 0 !important;
	margin-top: 30px !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #EC1A23 !important;
}

.formWrap .btnWrap p,
.formWrap .btnWrap + p {
	margin-bottom: 0 !important;
}

/* サイドバー */
.sidebar {
	border: 0 !important;
	height: 100vh;
	margin: 0 !important;
	padding: 0;
	width: 100% !important;
}

.sidebar .formWrap {
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0 20px 50px 20px;
}

.sidebar h2 {
	font-size: clamp(16px,1.1vw,22px);
	height: clamp(25px,2.6vw,50px);
}

.sidebar .formWrap p {
	margin-bottom: 20px !important;
}

.sidebar .btnWrap {
	margin-top: 30px;
}

/* メインコンテンツ */
.section_form {
	display: none;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(25px,2.6vw,50px);
	text-align: center;
}

.section_form .box {
	background-color: #FFF;
	border: 1px solid #0099D9;
	margin: 0 auto;
	max-width: 600px;
}

.section_form h2 {
	font-size: clamp(18px,2vw,40px);
	height: clamp(50px,5.2vw,100px);
}

.section_form .formWrap form input[type="image"] {
	max-width: 400px;
}

.formWrap .btnWrap p {
	display: block;
	text-align: center;
}

/*スマホ用フォームのラジオボタン*/
.wpcf7-radio {
	align-items: stretch;
    display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.wpcf7-radio .wpcf7-list-item {
	margin: 0 10px 0 0;
}

.wpcf7-radio.type .wpcf7-list-item {
	width: calc((100% - 30px) / 4);
}

.wpcf7-radio.section .wpcf7-list-item {
	width: calc((100% - 40px) / 5);
}

.wpcf7-radio.type .wpcf7-list-item:last-of-type,
.wpcf7-radio.section .wpcf7-list-item:last-of-type {
	margin-right: 0;
}

.wpcf7-radio .wpcf7-list-item label {
	align-items: center;
	border: 1px solid #212121;
	border-radius: 5px;
    display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: center;
	margin-bottom: 0;
	min-height: 80px;
	padding: 0 0 clamp(10px,0.7vw,15px) 0 !important;
	width: 100%;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:checked) {
	background: #FFFBF2;
	border: 2px solid #F7AB00;
}

.wpcf7-radio .wpcf7-list-item label input {
	display: block;
    order: 2;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #212121;
	border-radius: 50%;
	height: 16px;
	position: relative;
	vertical-align: -2px;
	width: 16px;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked {
	border: 1px solid #3498DB;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"]:checked::before {
	background: #3498DB;
	border-radius: 50%;
	content: '';
	height: 9px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
	color: #212121;
	font-size: 16px;
	line-height: 1.2;
	margin: 10px !important;
	order: 1;
	padding: 0;
	width: 100%;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
	display: none;
}

@media screen and (min-width: 530px) {
	.section_lpForm .wpcf7-response-output,
	.section_thanks .wpcf7-response-output {
		text-align: center;
	}
}

@media screen and (max-width: 1500px) {
	.sidebar .formWrap form p:first-of-type {
		margin-top: 20px !important;
	}
	.sidebar .wpcf7-response-output {
		margin-top: 20px !important;
	}
}

@media screen and (max-width: 1024px) {
	.section_form {
		display: block;
	}
	.formWrap form p label.required::before {
		background-color: #EC1A23;
	}
}

@media screen and (max-width: 768px) {
	.formWrap form select,
	.formWrap form input[type=text],
	.formWrap form input[type=tel],
	.formWrap form input[type=email] {
		padding: 10px;
	}
}

@media screen and (max-width: 670px) {
	.section_form .wpcf7-response-output,
	.section_lpForm .wpcf7-response-output {
		text-align: justify !important;
	}
}

@media screen and (max-width: 650px) {
	.wpcf7-radio .wpcf7-list-item {
		width: calc((100% - 10px) / 2) !important;
	}
	.wpcf7-radio .wpcf7-list-item:nth-of-type(2n) {
		margin-right: 0 !important;
	}
	.wpcf7-radio .wpcf7-list-item:nth-child(n+3) {
		margin-top: 10px !important;
	}
	.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label br {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.section_form h2 span br {
		display: block;
	}
	.wpcf7-radio.type .wpcf7-list-item label .wpcf7-list-item-label br {
		display: block;
	}
}

@media screen and (max-width: 370px) {
	.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label br {
		display: block !important;
	}
}

@media screen and (max-width: 340px) {
	.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
		font-size: clamp(14px,0.8vw,16px);
	}
}

/* ヘッダー ----------------------------------------*/
header nav {
	align-items: center;
	background-color: #FFF;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.1);
	display: flex;
	height: clamp(50px,4.1vw,80px);
	justify-content: space-between;
	padding: 0 20px;
	position: relative;
	width: 100%;
	z-index: 9999;
}

header nav img {
	height: clamp(25px,2.6vw,50px);
	width: auto;
}

header h1 img {
	height: auto;
	vertical-align: bottom;
	width: 100%;
}

/* ギャラリー ----------------------------------------*/
.gallery {
	background-color: #fff;
	/* padding: 60px 0 40px; */
	padding: 60px 0 0;
}

.galleryMsg {
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	font-size: 24px;
}

.gallerySlider {
	margin-top: 70px;
}

@media screen and (min-width: 768px) {
	.galleryMsg .sp {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.gallery {
		/* padding: clamp(10px, 1.46vw , 20px) 0 clamp(20px, 8vw , 40px); */
		padding: clamp(10px, 1.46vw , 20px) 0 0;
	}
	.gallerySlider {
		margin-top: clamp(30px, 10.6vw , 50px);
	}
}

@media screen and (max-width: 650px) {
    .galleryMsg {
        font-size: clamp(16px, 5vw, 24px);
    }
}

/* セクション（法人向け） ----------------------------------------*/
.section_corporation {
	background-color: #CCEBF7;
	position: relative;
	padding: 50px 0;
	margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
	.section_corporation {
		padding: min(50px, 8vw) 0;
		margin-bottom: 40px;
	}
}
.bannerButton {
    position: relative;
    padding-block: 14px 19px;
    border-radius: 16px;
    border: 4px solid #0E4C97;
    background: #FFF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: block;
    transition: 0.3s;
	padding-block: 14px 22px;
	margin: 0 auto;
	max-width: 736px;
}
@media screen and (max-width: 1024px) {
    .bannerButton {
        padding-block: 14px 19px;
        max-width: auto;
    }
}
@media screen and (max-width: 768px) {
	.bannerButton {
		padding-left: 4vw;
		padding-right: 4vw;
		
	}
}

.bannerButton:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.bannerArrow {
    padding: 13px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0062B1;
    border-radius: 50%;
    top: 50%;
	width: 48px;
	height: 48px;
	transform: translateY(-50%);
	right: 28px;
}
@media screen and (max-width: 1024px) {
    .bannerArrow {
		/*padding: min(13px, 2.08vw);*/
		padding: min(13px, 2.08vw);
        width: min(56px, 7.46vw);
		height: min(56px, 7.46vw);
        right: min(15px, 4vw);
    }
}

.bannerButton_content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
	text-align: center;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .bannerButton_content {
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
	.bannerButton_content {
        padding-right: min(8vw, 30px);
    }
}

.bannerButton_title {
    color: #0E4C97;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
	font-size: 32px;
    font-weight: 500;
    line-height: 120%;
	white-space: nowrap;
	margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .bannerButton_title {
        font-size: min(32px, 5.0vw);
    }
}

@media screen and (max-width: 480px) {
	.bannerButton_title {
        font-size: min(20px, 4.8vw);
    }
}

.bannerButton_text {
	color: #333333;
	font-weight: 500;
	font-size: 18px;
}



@media screen and (max-width: 1024px) {
    .bannerButton_text {
        font-size: min(18px, 4.26vw);
    }
}

@media screen and (max-width: 768px) {
	.bannerButton_text {
		text-align: center;
        font-size: min(18px, 4.26vw);
    }
}

@media screen and (min-width: 769px) {
	.bannerButton_text .sp-br {
		display: none;
	}
}

.bannerButton[target="_blank"]:after {
	display: none;
}

/* セクション（お悩み） ----------------------------------------*/
.section_worries {
	padding-top: clamp(25px,2.6vw,50px);
}

.section_worries h2 {
	font-size: clamp(16px,1.6vw,32px);
	font-weight: 700;
	letter-spacing: 0.25em;
	margin-bottom: clamp(35px,3.6vw,70px);
	text-align: center;
}

.section_worries h2 span {
	color: #F7AB00;
	display: inline-block;
	font-size: 175%;
	letter-spacing: 0.2em;
	margin-bottom: clamp(5px,0.5vw,10px);
	padding-bottom: clamp(5px,0.5vw,10px);
	position: relative;
}

.section_worries h2 span::after {
	background-color: #F7AB00;
	border-radius: clamp(2px,0.2vw,4px);
	bottom: 0;
	content: '';
	height: clamp(4px,0.4vw,8px);
	left: 0;
	position: absolute;
	width: 100%;
}

.section_worries ul {
	display: flex;
	width: 100%;
}

.section_worries ul li {
	align-items: center;
	background-color: #F6F5F5;
	border-radius: clamp(25px,2.6vw,50px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: clamp(220px,15vw,300px);
	margin-right: 3%;
	padding: clamp(25px,1.5vw,30px);
	position: relative;
	text-align: center;
	width: calc((100% - 6%) / 2);
}

.section_worries ul li:last-of-type {
	margin-right: 0;
}

.section_worries ul li::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	bottom: -205px;
	content: '';
	height: 220px;
	left: 0;
	position: absolute;
	width: 100%;
}

.section_worries ul li:nth-of-type(1)::after {
	background-image: url("../images/worries_01.png");
}

.section_worries ul li:nth-of-type(2)::after {
	background-image: url("../images/worries_02.png");
}

.section_worries ul li:nth-of-type(3)::after {
	background-image: url("../images/worries_03.png");
}

.section_worries ul li h3 {
	font-size: clamp(12px,0.9vw,18px);
	font-weight: 600;
	margin-bottom: clamp(5px,0.5vw,10px);
	text-align: center;
}

.section_worries ul li h3 span {
	color: #0099D9;
	display: block;
	font-size: clamp(18px,1.8vw,36px);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: clamp(5px,0.5vw,10px);
}

.section_worries ul li h3 span b {
	font-size: 55%;
}

.section_worries ul li p {
	font-size: clamp(14px,0.9vw,18px);
	font-weight: 700;
}

.section_worries ul li:not(:nth-of-type(3)) p br {
	display: none;
}

.section_worries .btm {
	background-color: #7FCBEB;
	background-image: url("../images/bg_01.png");
	background-position: center top clamp(50px,5.2vw,100px);
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: clamp(50px,5.2vw,100px);
	position: relative;
}

.section_worries .btm::before {
	background-color: #FFF;
	content: '';
	display: block;
	height: clamp(50px,5.2vw,100px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.section_worries .btm .contentsWrap {
	max-width: 800px;
	padding-bottom: clamp(15px,1.5vw,30px);
	width: 60%;
}

.section_worries .btm h4 {
	align-items: center;
	background-color: #0099D9;
	border-radius: clamp(5px,0.5vw,10px);
	color: #FFF;
	display: flex;
	font-size: clamp(16px,1.2vw,24px);
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.05em;
	margin: 0 auto clamp(50px,5.2vw,100px) 32%;
	max-width: clamp(250px,16.6vw,320px);
	min-height: clamp(40px,4.1vw,80px);
	padding: clamp(5px,0.5vw,10px) 20px;
	position: relative;
	width: auto;
	transform: translateX(max(-1.0vw, -15px));
}

.section_worries .btm h4 br {
	display: none;
}

.section_worries .btm h4::after {
	border-color: transparent #0099D9 transparent transparent;
	border-style:solid;
	border-width: clamp(5px,0.5vw,10px) clamp(12px,1.3vw,25px) clamp(5px,0.5vw,10px) 0;
	content: '';
	height: 0;
	left: clamp(-12px,-1.3vw,-25px);
	position: absolute;
	top: calc((100% - clamp(10px,1vw,20px)) / 2);
	width: 0;
}

.section_worries .btm p {
	background-color: #FFF;
	border-radius: clamp(5px,0.5vw,10px);
	color: #0099D9;
	font-size: clamp(18px,1.6vw,32px);
	font-weight: 700;
	letter-spacing: 0.25em;
	margin: 0 0 0 auto;
	max-width: 600px;
	padding-bottom: clamp(20px,2vw,40px);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: clamp(10px,1vw,20px);
	text-align: center;
	width: 75%;
}

.section_worries .btm p span {
	color: #F7AB00;
	font-size: clamp(26px,2.9vw,56px);
	display: inline-block;
	letter-spacing: 0.2em;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

.section_worries .btm img {
	bottom: 0;
	display: block;
	height: 105%;
	left: 0;
	position: absolute;
	width: auto;
	transform: translateX(min(1.0vw, 15px));
	/* margin-right: -50px; */
}

.section_worries .btm p span::after {
	background-color: #EDF8FC;
	bottom: clamp(2px,0.2vw,5px);
	content: '';
	height: clamp(7px,0.7vw,15px);
	left: -5%;
	position: absolute;
	width: calc(110%);
	z-index: -1;
}

.section_worries .btm p span b {
	font-size: 57%;
}

@media screen and (max-width: 1024px) {
	.section_worries ul {
		margin-bottom: clamp(25px,2.6vw,50px);
	}
	.section_worries .btm .contentsWrap {
		width: 50%;
	}
	.section_worries .btm h4 {
		margin: 0 auto clamp(50px,5.2vw,100px) 30%;
	}
}

@media screen and (max-width: 900px) {
	.section_worries .btm .contentsWrap {
		width: 58%;
	}
	.section_worries .btm h4 {
		margin: 0 auto clamp(50px,5.2vw,100px) 32%;
	}
}

@media screen and (max-width: 768px) {
	.section_worries ul {
		display: block;
	}
	.section_worries ul li {
		display: block;
		margin-bottom: clamp(35px,3.6vw,70px);
		margin-right: 0;
		width: 90%;
	}
	.section_worries ul li:last-of-type {
		margin-bottom: 0;
	}
	.section_worries ul li:nth-child(odd) {
		margin-left: 10%;
	}
	.section_worries ul li:nth-child(even) {
		margin-right: 10%;
	}
	.section_worries ul li::after {
		bottom: unset;
		height: 100%;
		top: 0;
		width: 110%;
	}
	.section_worries ul li:nth-child(odd)::after {
		background-position: left 50%;
		left: -10%;
	}
	.section_worries ul li:nth-child(even)::after {
		background-position: right 50%;
		right: -10%;
	}
	.section_worries ul li h3 br {
		display: none;
	}
	.section_worries ul li:nth-of-type(3) p br {
		display: none;
	}
	.section_worries .btm {
		background-position: center top 120px;
		background-size: 100% 50px;
		padding-top: clamp(25px,2.6vw,50px);
	}
	.section_worries .btm::before {
		height: 120px;
	}
	.section_worries .btm .contentsWrap {
		display: flex;
		flex-wrap: wrap;
		max-width: 285px;
		width: 76%;
	}
	.section_worries .btm h4 {
		margin: 5% 0 clamp(50px,5.2vw,100px) 50%;
		order: 1;
		position: absolute;
	}
	.section_worries .btm h4 br {
		display: block;
	}
	.section_worries .btm p {
		order: 2;
		width: 100%;
	}
	.section_worries .btm img {
		height: auto;
		margin-left: 3%;
		order: 0;
		position: relative;
		width: 125px; 
	}
}

@media screen and (max-width: 480px) {
	.section_worries ul li {
		display: flex;
		height: 160px;
		padding: 20px;
	}
	.section_worries ul li h3,
	.section_worries ul li p {
		width: 80%;
	}
	.section_worries ul li:nth-child(odd) {
		justify-content: right;
	}
	.section_worries ul li:nth-child(even) {
		justify-content: left;
	}
	.section_worries ul li h3 br {
		display: block;
	}
	.section_worries ul li h3 span br {
		display: none;
	}
	.section_worries ul li h3 span b {
		font-size: 12px;
	}
	.section_worries ul li p br {
		display: block !important;
	}
}

@media screen and (max-width: 350px) {
	.section_worries ul li::after {
		height: 90%;
		top: 5%;
	}
	.section_worries ul li h3 span {
		font-size: 16px;
	}
	.section_worries .btm .contentsWrap {
		max-width: unset;
		width: calc(100% - 40px);
	}
}

/* セクション（プレマスタイルの特長） ----------------------------------------*/
.section_merits {
	background-color: #F2FAFD;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(60px,6.2vw,120px);
	position: relative;
}

.section_merits h2 {
	color: #0099D9;
	font-weight: 700;
	margin-bottom: clamp(25px,2.6vw,50px);
	text-align: center;
}

.section_merits h2 span:nth-of-type(1) {
	display: block;
	font-size: clamp(18px,1.6vw,32px);
	letter-spacing: 0.2em;
	margin-bottom: clamp(-15px,-1.5vw,-30px);
}

.section_merits h2 span:nth-of-type(1) b {
	color: #F7AB00;
	font-size: 150%;
	font-weight: 900;
}

.section_merits h2 span:nth-of-type(2) {
	display: block;
	margin: 0 auto;
	position: relative;
	width: clamp(220px,22vw,440px);
}

.section_merits h2 span:nth-of-type(2)::before,
.section_merits h2 span:nth-of-type(2)::after {
	background-image: url("../images/object_02.png");
	background-position: left 0 top 50%;
	background-repeat: no-repeat;
	background-size: auto 100%;
	content: '';
	height: clamp(45px,4.6vw,90px);
	position: absolute;
	top: clamp(22px,2.3vw,45px);
	width: clamp(30px,3.1vw,60px);
}

.section_merits h2 span:nth-of-type(2)::before {
	left: 0;
}

.section_merits h2 span:nth-of-type(2)::after {
	right: 0;
	transform: scaleX(-1);
}

.section_merits h2 span:nth-of-type(2) b:nth-of-type(1) {
	color: #F2FAFD;
	display: inline-block;
	font-size: clamp(24px,2.5vw,48px);
	font-weight: 900;
	margin-left: clamp(-12px,-1.2vw,-24px);
	text-stroke: clamp(2px,0.2vw,3px) #0099D9;
	-webkit-text-stroke: clamp(2px,0.2vw,3px) #0099D9;
}

.section_merits h2 span:nth-of-type(2) b:nth-of-type(1)::first-letter {
	font-size: 216%;
	letter-spacing: -0.17em;
}

.section_merits h2 span:nth-of-type(2) b:nth-of-type(2) {
	display: inline-block;
	font-size: clamp(36px,3.7vw,72px);
}

.section_merits h2 span:nth-of-type(2) b:nth-of-type(2)::first-letter {
	font-size: 66%;
}

.section_merits ul {
	display: flex;
}

.section_merits ul li {
	margin-bottom: clamp(15px,1.5vw,30px);
	margin-right: 3%;
	padding-bottom: clamp(20px,2vw,40px);
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	width: calc(100% - 6%);
}

.section_merits ul li:last-of-type {
	margin-right: 0;
}

.section_merits ul li::before {
	background-color: #FFF;
	border-radius: clamp(10px,1vw,20px);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.section_merits ul li * {
	position: relative;
	z-index: 1;
}

.section_merits ul li .caption {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: clamp(10px,1vw,20px);
	padding-top: clamp(40px,3.6vw,70px);
	position: relative;
}

.section_merits ul li .caption::before {
	background-color: #0099D9;
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	top: clamp(39px,3.5vw,69px);
	width: 100%;
}

.section_merits ul li .caption::after {
	align-items: center;
	background-image: url("../images/object_03.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	color: #FFF;
	display: flex;
	font-size: clamp(18px,1.3vw,26px);
	font-weight: 700;
	height: clamp(40px,3.1vw,60px);
	justify-content: center;
	left: calc((100% - clamp(40px,3.1vw,60px)) / 2);
	position: absolute;
	top: clamp(20px,2vw,40px);
	width: clamp(40px,3.1vw,60px);
}

.section_merits ul li:nth-of-type(1) .caption::after {
	content: '01';
}

.section_merits ul li:nth-of-type(2) .caption::after {
	content: '02';
}

.section_merits ul li:nth-of-type(3) .caption::after {
	content: '03';
}

.section_merits ul li .caption h3 {
	color: #0099D9;
	font-size: clamp(18px,1.3vw,25px);
	font-weight: 700;
	margin-top: clamp(30px,3.1vw,60px);
	text-align: center;
}

.section_merits ul li .caption h3 span {
	color: #F7AB00;
}

.section_merits ul li:nth-of-type(3) .caption h3 span + br {
	display: none;
}

.section_merits ul li:nth-of-type(1) .caption h3 {
	text-align: right;
}

.section_merits ul li:nth-of-type(1) .caption h3 span {
	font-size: 160%;
}

.section_merits ul li:nth-of-type(1) .caption h3 b {
	font-size: 88%;
}

.section_merits ul li .caption + p {
	font-size: clamp(16px,1vw,20px);
	line-height: 1.8;
	margin-bottom: clamp(15px,1.5vw,30px) !important;
}

.section_merits ul li img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.section_merits ul li:nth-of-type(1) h4 {
	align-items: center;
	border-bottom: 2px solid #0099D9;
	border-top: 2px solid #0099D9;
	color: #0099D9;
	display: flex;
	font-size: clamp(18px,1vw,20px);
	font-weight: 600;
	height: 35px;
	justify-content: center;
	margin-bottom: clamp(10px,1vw,20px);
	margin-top: clamp(10px,1vw,20px);
	position: relative;
}

.section_merits ul li:nth-of-type(1) h4::before,
.section_merits ul li:nth-of-type(1) h4::after {
	background-image: url("../images/object_04.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: auto 100%;
	content: '';
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

.section_merits ul li:nth-of-type(1) h4::before {
	left: 0;
}

.section_merits ul li:nth-of-type(1) h4::after {
	right: 0;
	transform: scaleX(-1);
}

.section_merits ul li:nth-of-type(1) h4 + p {
	margin: 0 auto;
	max-width: max-content;
	width: 80%;
}
.section_merits ul li:nth-of-type(1) h4 + p span {
	background-image: url("../images/icon_01.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: auto clamp(18px,1.3vw,26px);
	color: #0099D9;
	display: block;
	font-size: clamp(18px,1.3vw,26px);
	font-weight: 600;
	line-height: 1;
	margin-bottom: clamp(7px,0.7vw,15px);
	min-height: clamp(18px,1.3vw,26px);
	padding-left: clamp(20px,2vw,40px);
}

.section_merits ul li:nth-of-type(1) h4 + p span:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.section_merits ul {
		display: block;
	}
	.section_merits ul li {
		margin-bottom: 20px;
		margin-right: 0;
		width: 100%;
	}
	.section_merits ul li:last-of-type {
		margin-bottom: 0;
	}
	.section_merits ul li::before {
		width: calc(100% + 20px);
	}
	.section_merits ul li:nth-child(odd)::before {
		border-radius: 0 clamp(10px,1vw,20px) clamp(10px,1vw,20px) 0;
		left: -20px;
	}
	.section_merits ul li:nth-child(even)::before {
		border-radius: clamp(10px,1vw,20px) 0 0 clamp(10px,1vw,20px);
		right: -20px;
	}
	.section_merits ul li:nth-of-type(1) .caption h3 {
		text-align: center;
	}
	.section_merits ul li .caption h3 span + br {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.section_merits ul li .caption h3 span + br {
		display: block !important;
	}
}

/* セクション（アフターフォロー） ----------------------------------------*/
.section_followup h2 {
    align-items: center;
    background-color: #0099D9;
    color: #FFF;
    display: flex;
    font-size: clamp(18px,1.8vw,36px);
    font-weight: 700;
    height: clamp(55px,5.7vw,110px);
    justify-content: center;
    letter-spacing: 0.15em;
    margin-bottom: clamp(45px,4.6vw,90px);
    position: relative;
}

.section_followup h2::after {
    border-color: #0099D9 transparent transparent transparent;
    border-style: solid;
    border-width: clamp(25px,2.6vw,50px) clamp(37px,3.9vw,75px) 0 clamp(37px,3.9vw,75px);
    bottom: clamp(-25px,-2.6vw,-50px);
    content: '';
    height: 0;
    left: calc((100% - clamp(75px,7.8vw,150px)) / 2);
    position: absolute;
    width: 0;
}

.section_followup h2 span {
	color: #0E4C97;
}

.section_followup h2 span b {
	color: #DE561C;
}

.section_followup p {
	color: #0099D9;
	font-size: clamp(16px,2vw,40px);
	font-weight: 700;
	margin: 0 auto;
	margin-bottom: clamp(35px,3.6vw,70px) !important;
	text-align: center;
	width: 100%;
}

.section_followup figure {
	text-align: center;
}

.section_followup figure img {
	height: auto;
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

@media screen and (max-width: 1300px) {
	.section_followup figure img {
		margin-bottom: clamp(25px,2.6vw,50px);
	}
}

/* セクション（信頼と実績） ----------------------------------------*/
.section_achievements {
	background-color: #DDF7FC;
    background-image:
		url("../images/bg_02.png"),
		url("../images/bg_01.jpg");
    background-position:
		center top,
		center top;
    background-repeat:
		no-repeat,
		no-repeat;
    background-size:
		100% auto,
		cover;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_achievements h2 {
	display: flex;
}

.section_achievements h2 img {
	height: auto;
}

.section_achievements h2 img:nth-of-type(1) {
	width: 55%;
}

.section_achievements h2 img:nth-of-type(2) {
	width: 45%;
}

.section_achievements ul li img {
	height: clamp(170px,20vw,390px);
	width: auto;
}

.section_achievements .box {
	background-color: #FFF;
	border: 3px solid #B48A3C;
	margin-top: clamp(-5px,-0.5vw,-10px);
	padding: clamp(20px,2vw,40px);
	position: relative;
}

.section_achievements .box::before,
.section_achievements .box::after {
	background-image: url("../images/object_01.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	display: block;
	height: 64px;
	position: absolute;
	width: 64px;
}

.section_achievements .box::before {
	left: -10px;
	top: -10px;
}

.section_achievements .box::after {
	bottom: -10px;
	right: -10px;
	transform: scale(-1,-1);
}

.section_achievements .box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: clamp(20px,2vw,40px);
}

.section_achievements .box ul li {
	text-align: center;
	width: calc((100% - 18%) / 3);
}

.section_achievements .box ul li:nth-of-type(2) {
	margin: 0 7%;
}

.section_achievements .box ul li img {
	height: auto;
	width: 100%;
}

.section_achievements .box p {
	font-size: 14px;
	margin: 0 auto;
	max-width: 700px;
	width: 100%;
}

.section_achievements .box p span {
	display: block;
}

.section_achievements .box p br {
	display: none;
}

@media screen and (max-width: 768px) {
	.section_achievements {
		padding-top: 0;
	}
	.section_achievements .box::before,
	.section_achievements .box::after {
		height: clamp(32px,3vw,64px);
		width: clamp(32px,3vw,64px);
	}
	.section_achievements .box::before {
		left: 0;
		top: 0;
	}
	.section_achievements .box::after {
		bottom: 0;
		right: 0;
	}
}

@media screen and (max-width: 480px) {
	.section_achievements .box ul li:nth-of-type(1) {
		width: 100%;
	}
	.section_achievements .box ul li:not(:nth-of-type(1)) {
		width: calc((100% - 5%) / 2);
	}
	.section_achievements .box ul li:nth-of-type(2) {
		margin-left: 0;
		margin-right: 5%;
	}
	.section_achievements .box ul li:nth-of-type(1) img {
		width: calc((100% - 5%) / 2);
	}
}

/* セクション（助成金・補助金） ----------------------------------------*/
.section_subsidy {
	padding-bottom: clamp(35px,3.6vw,70px);
	padding-top: clamp(35px,3.6vw,70px);
}

.section_subsidy h2 {
	align-items: center;
	background-color: #F7AB00;
	border-radius: clamp(10px,1vw,20px);
	color: #FFF;
	display: flex;
	font-size: clamp(15px,1.5vw,30px);
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.25em;
	margin: 0 auto;
	margin-bottom: calc(30px + clamp(25px,2.6vw,50px));
	max-width: clamp(250px,26vw,500px);
	padding: 20px;
	position: relative;
	width: 100%;
}

.section_subsidy h2::after {
	border-color: #F7AB00 transparent transparent transparent;
	border-style:solid;
	border-width: 30px 15px 0 15px;
	bottom: -30px;
	content: '';
	height: 0;
	left: calc((100% - 30px) / 2);
	position: absolute;
	width: 0;
}

.section_subsidy dl {
	display: flex;
}

.section_subsidy dl dt {
	background-image: url("../images/subsidy_01.png");
	background-position: left 40% bottom 0;
	background-repeat: no-repeat;
	background-size: auto clamp(82px,8.5vw,165px);
	padding-bottom: clamp(95px,9.8vw,190px);
	width: 48%;
}

.section_subsidy dl dt h3 {
	margin-bottom: clamp(15px,1.5vw,30px);
}

.section_subsidy dl dt h3 span {
	align-items: center;
	border: 2px solid #F7AB00;
	color: #F7AB00;
	display: flex;
	font-size: clamp(16px,1.5vw,30px);
	font-weight: 700;
	height: clamp(32px,3.3vw,65px);
	justify-content: center;
	letter-spacing: 0.25em;
	width: 100%;
}

.section_subsidy dl dt p {
	width: 100%;
}

.section_subsidy dl dt p span {
	border-bottom: clamp(2px,0.2vw,5px) solid #F7AB00;
	display: block;
	font-size: clamp(20px,2.5vw,48px);
	font-weight: 700;
	margin-bottom: clamp(2px,0.2vw,5px);
}

.section_subsidy dl dt p span:last-of-type {
	margin-bottom: 0;
}

.section_subsidy dl dd {
	padding-left: 8%;
	width: 52%;
}

.section_subsidy dl dd p {
	font-size: clamp(16px,1.6vw,32px);
	letter-spacing: 0.1em;
}

.section_subsidy dl dd p span {
	font-size: clamp(14px,1.2vw,24px);
	display: block;
	letter-spacing: 0.1em;
	margin-top: clamp(70px,7.2vw,140px);
}

@media screen and (max-width: 1024px) {
	.section_subsidy h2 {
		max-width: 80%;
	}
	.section_subsidy h2 br {
		display: none;
	}
	.section_subsidy dl dd {
		padding-left: 3%;
	}
}

@media screen and (max-width: 768px) {
	.section_subsidy h2 br {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.section_subsidy dl {
		display: block;
	}
	.section_subsidy dl dt {
		background-position: right bottom;
		background-size: 23% auto;
		margin-bottom: clamp(35px,3.6vw,70px);
		padding-bottom: 0;
		padding-right: 25%;
		width: 100%;
	}
	.section_subsidy dl dd {
		padding-left: 0;
		width: 100%;
	}
	.section_subsidy dl dd p span {
		margin-top: clamp(25px,2.6vw,50px);
	}
}

@media screen and (max-width: 350px) {
	.section_subsidy h2 {
		max-width: 100%;
	}
}

/* セクション（施工事例紹介） ----------------------------------------*/
.section_work {
	background-color: #f2fafd;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_work h2 {
	align-items: center;
	display: flex;
	font-weight: 700;
	justify-content: center;
	margin-bottom: clamp(40px,5.5vw,60px);
	font-size: 26px;
}

.workSliderItem {
	background-color: #fff;
	padding: 40px 40px 60px;
	border-radius: 15px;
}

@media screen and (max-width: 1400px) {
	.workSliderItem {
		padding: 30px 30px 40px;
	}
}

@media screen and (max-width: 960px) {
	.workSliderItem {
		padding: 20px;
	}
}

.workSliderItem_ttl {
	position: relative;
	font-size: 17px;
	font-weight: 700;
	color: #004ea2;
}

@media screen and (max-width: 960px) {
	.workSliderItem_ttl {
		font-size: 14px;
	}
}

.workSliderItem_ttl-tag {
	position: absolute;
	display: inline-block;
	font-size: 15px;
	background-color: #e5f5fb;
	border-radius: 5px;
	padding: .2em .5em;
	font-weight: 500;
	top: 50%;
	left: 100px;
	transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
	.workSliderItem_ttl-tag {
		left: 80px;
		font-size: 12px;
	}
}

.workSliderItem_body {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	margin-top: 30px;
	gap: 30px;
}

@media screen and (max-width: 1400px) {
	.workSliderItem_body {
		align-items: flex-start;
		margin-top: 20px;
		gap: 20px;
	}
}

@media screen and (max-width: 960px) {
	.workSliderItem_body {
		flex-direction: column;
		margin-top: 10px;
		gap: 20px;
	}
}

.workSliderItem_body > * {
	width: calc(50% - 15px);
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (min-width: 961px) and (max-width: 1400px) {
	.workSliderItem_body > *:first-child {
		width: calc(58% - 15px);
	}
	.workSliderItem_body > *:last-child {
		width: calc(42% - 15px);
	}
}

@media screen and (max-width: 960px) {
	.workSliderItem_body > * {
		width: 100%;
	}
}

.workSliderItem_afterItem,
.workSliderItem_beforeItem {
	display: flex;
	gap: 15px;
}

@media screen and (max-width: 960px) {
	.workSliderItem_afterItem {
		flex-direction: column;
		gap: 10px;
	}
}

.workSliderItem_afterItem {
	height: 100%;
	align-items: stretch;
}

@media screen and (max-width: 960px) {
	.workSliderItem_afterItem {
		align-items: flex-start;
	}
}

.workSliderItem_label span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	white-space: nowrap;
	min-width: 80px;
	height: 25px;
	padding-bottom: .1em;
	border-radius: 5px;
}

@media screen and (max-width: 1400px) {
	.workSliderItem_label span {
		font-size: 13px;
		min-width: 67px;
		height: 20px;
		padding-bottom: .05em;
	}
}

.workSliderItem_afterItem .workSliderItem_label span {
	background-color: #f7ab00;
}

.workSliderItem_beforeItem .workSliderItem_label span {
	background-color: #333333;
}

.workSliderItem_afterItem picture,
.workSliderItem_beforeItem picture {
	flex-grow: 1;
	flex-shrink: 1;
	display: block;
}

.workSliderItem_afterItem img,
.workSliderItem_beforeItem img {
	display: block;
	object-fit: cover;
}

.workSliderItem_afterItem img {
	width: auto;
	height: 100%;
}

@media screen and (max-width: 960px) {
	.workSliderItem_afterItem img {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}
}

.workSliderItem_beforeItem img {
	width: 220px;
	height: auto;
}

@media screen and (max-width: 1400px) {
	.workSliderItem_beforeItem img {
		width: 60%;
	}
}

@media screen and (max-width: 960px) {
	.workSliderItem_beforeItem img {
		width: 104px;
	}
}

.workSliderItem_col2 .listItem_table {
	margin-top: 15px;
}

@media screen and (max-width: 1400px) {
	.workSliderItem_col2 .listItem_table {
		margin-top: 12px;
	}
}

@media screen and (max-width: 960px) {
	.workSliderItem_col2 .listItem_table {
		margin-top: 20px;
	}
	.workSliderItem_col2 .listItem_table th,
	.workSliderItem_col2 .listItem_table td {
		font-size: 10px;
	}

}

.workSlider .splide__arrow svg {
	display: none;
}

.workSlider .splide__arrow {
	background: transparent;
	opacity: 1;
	transition: opacity 0.4s ease;
	width: 60px;
	height: 60px;
	background-image: url("../images/general/slider-arrow_pc.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 960px) {
	.workSlider .splide__arrow {
		border-radius: 0;
		width: 25px;
		height: 80px;
		background-image: url("../images/general/slider-arrow_sp.png");
	}
}

.workSlider .splide__arrow.splide__arrow--next {
	transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 960px) {
	.workSlider .splide__arrow.splide__arrow--prev {
		left: 0;
	}
	.workSlider .splide__arrow.splide__arrow--next {
		right: 0;
	}
}

/* 事例スライダー：lp01用調整 */
@media screen and (min-width: 1401px) {
	.workSlider .splide__arrow.splide__arrow--prev {
		left: max(20px, calc((100vw - 1080px) / 2 - 238px));
	}
	.workSlider .splide__arrow.splide__arrow--next {
		right: max(20px, calc((100vw - 1080px) / 2 - 238px));
	}
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
	.workSlider .splide__arrow.splide__arrow--prev {
		left: max(20px, calc((100vw - 740px) / 2 - 176px));
	}
	.workSlider .splide__arrow.splide__arrow--next {
		right: max(20px, calc((100vw - 740px) / 2 - 176px));
	}
}

@media screen and (min-width: 961px) and (max-width: 1024px) {
	.workSlider .splide__arrow.splide__arrow--prev {
		left: calc((100vw - 740px) / 2 - 48px);
	}
	.workSlider .splide__arrow.splide__arrow--next {
		right: calc((100vw - 740px) / 2 - 48px);
	}
}


/* セクション（ご利用者様の声） ----------------------------------------*/
.section_voice {
	background-color: rgba(253, 229, 47, 0.05);
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_voice h2 {
	align-items: center;
	display: flex;
	font-weight: 700;
	justify-content: center;
	margin-bottom: clamp(40px,5.5vw,60px);
	font-size: 26px;
}

@media screen and (max-width: 768px) {
	.section_voice h2 {
		font-size: clamp(18px, 3.3vw, 26px);
	}
}

.voiceList {
	display: flex;
	flex-wrap: wrap;
	gap: min(35px, 3.2vw);
}

.voiceList > * {
	width: calc((100% - min(70px, 6.4vw)) / 3);
}

@media screen and (max-width: 1200px) {
	.voiceList {
		gap: min(30px, 2.7vw);
	}
	
	.voiceList > * {
		width: calc((100% - min(30px, 2.7vw)) / 2);
	}
}

@media screen and (max-width: 560px) {
	.voiceList {
		flex-direction: column;
		gap: 5vw;
	}
	
	.voiceList > * {
		width: 100%;
	}
}

.voiceListItem {
	background-color: #fff;
	padding: 20px;
	border-radius: 15px;
}
.voiceListItem_header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 15px;
}
.voiceListItem_icon {
	flex-shrink: 0;
	flex-grow: 0;
	width: clamp(50px, 7.4vw, 80px);
	height: clamp(50px, 7.4vw, 80px);
	border-radius: 50%;
	overflow: hidden;
}
@media screen and (max-width: 560px) {
	.voiceListItem_icon {
		width: min(80px, 21vw);
		height: min(80px, 21vw);
	}
}
.voiceListItem_meta {
	font-size: 12px;
}
.voiceListItem_comment {
	font-weight: 400;
	font-size: 15px;
}
.listItem_table {
	border-collapse: separate;
	border-radius: 8px;
	border: 0;
	padding: 2px 10px;
	overflow: hidden;
	margin-top: 15px;
	margin-bottom: 0;
	background-color: #f7f7f7;
}

.listItem_table * {
	border: 0;
	
}

.listItem_table tr {
	background-color: transparent !important;
}

.listItem_table th,
.listItem_table td {
	background-color: transparent !important;
	padding: 5px 0;
	border-top: solid 1px #d6d6d6;
	vertical-align: middle;
	font-size: 11px;
}

.listItem_table tr:first-child th,
.listItem_table tr:first-child td {
	border-top: none;
}

.listItem_table th {
	width: 55px;
	padding-right: 5px;
}


/* セクション（サービスの流れ） ----------------------------------------*/
.section_steps {
	background-color: #F2FAFD;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_steps h2 {
	align-items: center;
	color: #0099D9;
	display: flex;
	font-size: clamp(24px,2.5vw,48px);
	font-weight: 700;
	justify-content: center;
	margin-bottom: clamp(25px,2.6vw,50px);
}

.section_steps h2 span {
	align-items: center;
	background-image: url("../images/object_05.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	color: #FFF;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-size: clamp(14px,1.4vw,28px);
	font-weight: 600;
	height: clamp(65px,6.7vw,130px);
	justify-content: center;
	letter-spacing: -0.15em;
	line-height: 1;
	margin-right: clamp(7px,0.7vw,15px);
	text-align: center;
	width: clamp(65px,6.7vw,130px);
}

.section_steps h2 span b {
	visibility: hidden;
}

.section_steps ul {
	display: flex;
}

.section_steps ul li {
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.25);
	margin-top: 62px;
	padding: 20px;
	position: relative;
}

.section_steps ul li:nth-of-type(1),
.section_steps ul li:nth-of-type(2) {
	margin-right: 50px;
	padding-right: 5px;
}

.section_steps ul li:nth-of-type(3) {
	width: 24%;
}

.section_steps ul li:nth-of-type(1) {
	width: calc(44% - 50px);
}

.section_steps ul li:nth-of-type(2) {
	width: calc(32% - 50px);
}

.section_steps ul li::before {
	background-color: #FFF;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.section_steps ul li h3 {
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
	left: 0;
	line-height: 1;
	position: absolute;
	text-shadow: 0 2px 2px rgba(0,0,0,0.25);
	top: -65px;
	z-index: 0;
}

.section_steps ul li h3 b {
	font-size: 218%;
	line-height: 1;
}

.section_steps ul li * {
	position: relative;
	z-index: 3;
}

.section_steps ul li h4 {
	border-bottom: 2px solid #0099D9;
	color: #0099D9;
	font-size: clamp(18px,1.3vw,25px);
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 10px;
	text-align: justify;
}

.section_steps ul li p {
	font-size: clamp(16px,0.9vw,18px);
	letter-spacing: 0.03em;
	line-height: 1.8;
}

.section_steps ul li .arrow {
	filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.15));
	height: 100%;
	position: absolute;
	right: -48px;
	top: 0;
	width: 48px;
}

.section_steps ul li .arrow img {
	height: 100%;
	width: 100%;
}

.section_steps ul li .btnWrap {
	margin-top: 30px;
}

@media screen and (min-width: 1025px) {
	.section_steps ul li .btnWrap {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.section_steps ul li h3 {
		font-size: 26px;
		top: -53px;
	}
}

@media screen and (max-width: 768px) {
	.section_steps h2 span b {
		margin-bottom: clamp(-8px,-0.1vw,-20px);
		margin-top: clamp(-8px,-0.1vw,-20px);
	}
	.section_steps ul {
		display: block;
	}
	.section_steps ul li {
		box-shadow: 0 0 2px 0 rgba(0,0,0,0.25);
		margin-bottom: 110px;
		margin-right: 0 !important;
		margin-top: 70px;
		padding-right: 20px !important;
		width: 100% !important;
	}
	.section_steps ul li:nth-of-type(3) {
		margin-bottom: 0;
	}
	.section_steps ul li h4 {
		text-align: center;
	}
	.section_steps ul li h4 br {
		display: none;
	}
	.section_steps ul li .arrow {
		bottom: -60px;
		filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.15));
		height: 60px;
		left: 0;
		position: absolute;
		right: unset;
		top: unset;
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.section_steps ul li {
		margin-bottom: 80px;
		margin-top: 60px;
	}
	.section_steps ul li h3 {
		font-size: 20px;
		top: -40px;
	}
	.section_steps ul li .arrow {
		bottom: -50px;
		height: 50px;
	}
}

@media screen and (max-width: 390px) {
	.section_steps ul li h4 br {
		display: block;
	}
}

/* セクション（よくあるご質問） ----------------------------------------*/
.section_faq {
	background-color: #F6F5F5;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_faq h2 {
	color: #0099D9;
	font-size: clamp(24px,2.5vw,48px);
	font-weight: bold;
	margin-bottom: clamp(35px,3.6vw,70px);
	text-align: center;
}

.section_faq dl {
	background-color: #FFF;
	border-radius: clamp(10px,1vw,20px);
	box-shadow: 0 4px 4px 4px rgba(0,0,0,0.1);
	margin-bottom: clamp(20px,2vw,40px);
}

.section_faq dl:last-of-type {
	margin-bottom: 0;
}

.section_faq dl dt {
	position: relative;
}

.section_faq dl dt i {
	color: #0099D9;
	cursor: pointer;
	font-size: clamp(20px,2vw,40px);
	line-height: 1;
	position: absolute;
	right: clamp(20px,2vw,40px);
	top: calc((100% - clamp(20px,2vw,40px)) / 2);
	transform: rotate(0deg);
	transition: 0.2s;
}

.section_faq dl.open dt i {
	color: #726D6C;
	transform: rotate(180deg);
}

.section_faq dl dt h3 {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: clamp(16px,1vw,20px);
	font-weight: 700;
	justify-content: left;
	min-height: clamp(50px,5.2vw,100px);
	padding-bottom: clamp(10px,1vw,20px);
	padding-left: clamp(20px,2vw,40px);
	padding-right: clamp(60px,6.2vw,120px);
	padding-top: clamp(10px,1vw,20px);
}

.section_faq dl dt h3::before {
	color: #0099D9;
	content: 'Q';
	font-size: clamp(20px,2vw,40px);
	font-weight: 300;
	line-height: 1;
	margin-left: 0;
	margin-right: clamp(15px,1.5vw,30px);
}

.section_faq dl dd {
	display: none;
	padding-bottom: clamp(20px,2vw,40px);
	padding-left: clamp(20px,2.6vw,50px);
	padding-right: clamp(20px,2.6vw,50px);
	padding-top: 0;
}

.section_faq dl dd p {
	border-top: 1px solid #BFBFBF;
	font-size: clamp(16px,0.9vw,18px);
	line-height: 1.9;
	padding-top: clamp(15px,1.5vw,30px);
}

.section_faq dl dd p span {
	color: #0099D9;
	display: block;
	font-weight: 700;
	margin-bottom: clamp(5px,0.5vw,10px);
}

/* セクション（CTA） ----------------------------------------*/
.section_cta {
	background-color: #FFFDF4;
	padding-bottom: clamp(40px,4.1vw,80px);
	padding-top: clamp(40px,4.1vw,80px);
	text-align: center;
}

.section_cta img {
	height: auto;
	margin-bottom: clamp(25px,2.6vw,50px);
	width: 100%;
}

@media screen and (min-width: 1025px) {
	.section_cta img {
		margin-bottom: 0;
	}
	.section_cta .btnWrap {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.section_cta {
		background-color: #FFF3D8;
		padding-top: 0;
	}
	.section_cta .contentsWrap {
		width: 100% !important;
	}
	.section_cta img {
		margin-bottom: 0;
	}
	.section_cta .btnWrap {
		margin: 0 auto;
		width: 90%;
	}
}

/* セクション（運営会社） ----------------------------------------*/
.section_company {
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_company h2 {
	font-size: clamp(24px,2.5vw,48px);
	font-weight: bold;
	margin-bottom: clamp(35px,3.6vw,70px);
	text-align: center;
}

.section_company h2 + p,
.section_company table + p {
	font-size: clamp(16px,0.9vw,18px);
	line-height: 1.9;
	margin-bottom: clamp(30px,3.1vw,60px) !important;
}

.section_company table {
	border-top: 1px solid #D6D6D6;
	margin-bottom: clamp(30px,3.1vw,60px);
	width: 100%;
}

.section_company table tr {
	background-color: #FFF !important;
	border-bottom: 1px solid #D6D6D6;
	display: table;
	min-height: 100px;
	width: 100%;
}

.section_company table tr th,
.section_company table tr td {
	background-color: #FFF !important;
	border: 0;
	display: table-cell;
	font-size: clamp(16px,0.9vw,18px) !important;
	height: 100%;
	padding-bottom: clamp(10px,1vw,20px);
	padding-top: clamp(10px,1vw,20px);
	vertical-align: middle;
}

.section_company table tr th {
	font-weight: 700;
	width: 30%;
}

.section_company table tr th br {
	display: none;
}

.section_company table tr td {
	padding-left: clamp(10px,1vw,20px);
	width: 70%
}

.section_company table tr td a {
	text-decoration: underline;
}

.section_company table tr td a::after {
	content: '\f35d';
	font-family: "Font Awesome 6 Free" !important;
	font-size: 14px;
	font-weight: 900;
	margin-left: 10px;
}

@media screen and (max-width: 350px) {
	.section_company table tr th br {
		display: block;
	}
}

/* フッター ----------------------------------------*/
footer {
	align-items: center;
	background-color: #0099D9;
	color: #FFF;
	display: flex;
	font-size: clamp(12px,0.8vw,16px);
	/*height: clamp(50px,5.2vw,100px);*/
	height: 60px;
	justify-content: center;
	width: 100%;
}

.footerBanner {
	background:rgba(0,0,0,0.6);
	bottom: 0;
	display: none !important;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 9999;
}

.footerBanner .contentsWrap {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: center;
	padding: 0 10px;
	width: 100%;
}

.footerBanner a img {
	height: 70px;
	width: auto;
}

.pageTopBtn {
	align-items: center;
	background-color: #212121;
	border-radius: 100%;
	bottom: 10px;
	display: flex;
	height: 50px;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 10px;
	text-decoration: none;
	transform: translateY(60px);
    transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
	visibility: hidden;
	width: 50px;
	z-index: 9999;
}

.pageTopBtn.show {
    opacity: 1;
	transform: translateY(0);
    visibility: visible; 
}

.pageTopBtn:hover {
	opacity: 0.8;
}

.pageTopBtn i {
	color: #FFF;
	font-size: 30px;
}

@media screen and (min-width: 1025px) {
	.footerBanner {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	/*
	footer {
		margin-bottom: 70px;
	}
	*/
	.footerBanner .contentsWrap {
		height: 70px;
	}
	.footerBanner a img {
		height: 50px;
	}
	.pageTopBtn {
		/*bottom: 15px;*/
		bottom: 10px;
		height: 40px;
		width: 40px;
	}
	.pageTopBtn i {
		font-size: 25px;
	}
}

@media screen and (max-width: 360px) {
	.footerBanner .contentsWrap {
		justify-content: left;
	}
}

/* フォームページ＆サンクスページ ----------------------------------------*/
.page_thanks,
.page_lpForm {
	background-color: #0E4C97;
}

.section_thanks,
.section_lpForm {
	background-color: #F6F5F5;
	padding-bottom: clamp(50px,5.2vw,100px);
	padding-top: clamp(50px,5.2vw,100px);
}

.section_thanks .contentsWrap,
.section_lpForm .contentsWrap {
	background-color: #FFF;
	padding: clamp(25px,2.6vw,50px);
}

.section_lpForm .contentsWrap .formWrap {
	padding: 0;
}

.section_thanks h2,
.section_lpForm h2 {
	border-bottom: 2px solid #0099D9;
	color: #0099D9;
	font-size: clamp(18px,1.5vw,30px);
	font-weight: 700;
	margin-bottom: clamp(25px,2.6vw,50px);
	padding-bottom: clamp(5px,0.5vw,10px);
	text-align: center;
}

.section_thanks h2 br,
.section_lpForm h2 br {
	display: none;
}

.section_thanks p,
.section_lpForm p {
	font-size: clamp(16px,0.9vw,18px);
	line-height: 1.8;
	margin-bottom: clamp(10px,1vw,20px) !important;
	text-align: center;
}

.section_thanks h2 + p a,
.section_lpForm h2 + p a {
	text-decoration: underline !important;
}

.section_lpForm form p {
	display: flex;
}

.section_lpForm form p label {
	font-size: 16px;
	min-width: 170px;
	width: 18%;
}

.section_lpForm form p span {
	width: 82%;
}

.section_lpForm form p span textarea {
	resize: none;
}

.section_thanks address {
	align-items: center;
	color: #FD7900;
	display: flex;
	font-size: clamp(16px,1vw,20px);
	font-weight: 600;
	justify-content: center;
	margin-bottom: clamp(25px,2.6vw,50px);
}

.section_lpForm .btnWrap {
	margin-top: clamp(25px,2.6vw,50px);
}

.page_thanks footer,
.page_lpForm footer {
	margin-bottom: 0;
}

/*フォームページ（加盟希望施工店向け）*/
.section_lpForm.construction h2 + p {
	margin-bottom: clamp(25px,2.6vw,50px) !important;
}

.section_lpForm.construction form p label {
	min-width: 240px;
	width: 30%;
}

.section_lpForm.construction form p span {
	width: 70%;
}

.section_lpForm .privacyPolicy,
.section_lpForm .privacyPolicy *:not(a) {
	font-size: 14px;
	display: block;
	margin: 0 !important;
	margin-top: clamp(15px,1.5vw,30px);
	text-align: center !important;
}

.section_lpForm .privacyPolicy span {
	width: 100% !important;
}

.section_lpForm .privacyPolicy span {
	display: block;
	margin-top: clamp(10px,1vw,20px) !important;
}

.section_lpForm.construction .privacyPolicy a {
	text-decoration: underline;
}

.section_lpForm.construction input[type="checkbox"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #212121;
	display: inline-block;
	height: 30px;
	margin-right: 10px !important;
	position: relative;
	vertical-align: -11px;
	width: 30px;
}

.section_lpForm.construction input[type="checkbox"]:checked::before {
	border-bottom: 3px solid #0E4C97;
	border-right: 3px solid #0E4C97;
	content: '';
	height: 16px;
	left: 8px;
	position: absolute;
	top: 2px;
	transform: rotate(50deg);
	width: 8px;
}

.section_lpForm.construction input[type="image"]:disabled,
.section_lpForm.construction input[type="image"]:disabled:hover {
	background: none;
	border-color: unset;
	filter: grayscale(1);
}

.section_lpForm.construction .btnWrap {
	display: block;
}

@media screen and (max-width: 768px) {
	.section_lpForm form p {
		display: block;
	}
	.section_lpForm form p label,
	.section_lpForm form p span {
		width: 100%;
	}
	.section_thanks p,
	.section_lpForm p {
		text-align: justify;
	}
	.section_thanks p br,
	.section_lpForm p br {
		display: none;
	}
}

@media screen and (max-width: 550px) {
	.section_lpForm.construction form .privacyPolicy {
		text-align: justify !important;
	}
	.section_lpForm.construction form .privacyPolicy br {
		display: none;
	}
	.section_lpForm.construction form .privacyPolicy p:not(:last-of-type) {
		display: inline;
		text-align: justify !important;
	}
}

@media screen and (max-width: 480px) {
	.section_thanks .contentsWrap,
	.section_lpForm .contentsWrap {
		padding: 20px;
	}
}

@media screen and (max-width: 330px) {
	.section_thanks h2 br,
	.section_lpForm h2 br {
		display: block;
	}
}