@charset "UTF-8";
:root {
	--main-color: #00a0e9;/*各タイトル背景色等*/
	--base-color: #fff2d0;/*各セクション背景色等*/
	--sub-color: #00285a;/*主要文字色やフッターや背景色等、削除不可*/
	--sub-color1: #00285a;
	--sub-color2: #f65100;
	--sub-color3: #fffb89;
}
html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-size: 62.5%;
}
*, *:before, *:after {
	box-sizing: inherit;
	--min-size: 53;
	--max-size: 146;
	--min-viewport: 375;
	--max-viewport: 1440;
	--slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
	--intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
	--fluid-size: calc(var(--slope) * 100vw + var(--intercept) * .1rem);
	--clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}
body {
	line-height: 1.7;
	--min-size: 15;
	--max-size: 17;
	font-size: var(--clamp-size);
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #333;
	letter-spacing: 0.05em;
}
img {
	vertical-align: bottom;
}
figure {
	margin: 0;
}
iframe {
	width: 100%;
}
table {
	border-spacing: 0;
}
button {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
a {
	color: inherit;
	text-decoration: none;
}
a, input, textarea {
	transition: all .3s ease-in-out;
}
ol {
	text-align: left;
}
.din2014{
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.txt-under-line {text-decoration: underline;}

/* レイアウト */
.w-container {
	width: min(90%, 1000px);
	margin-inline: auto;
}
.h-container {
	padding: clamp(4rem, 5vw, 70px) 0;
}
/* 見出し */
.heading {
	font-weight: 700;
	--min-size: 26;
	--max-size: 32;
	font-size: var(--clamp-size);
	color: var(--base-color);
}
.subHeading {
	font-weight: 600;
	--min-size: 22;
	--max-size: 28;
	font-size: var(--clamp-size);
	color: var(--sub-color);
}
/* 共通パーツ */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}


.bg-basecolor{
	background: var(--base-color);
}

/* header */
.header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 10000;
	background: #fff;
	padding: 1.8rem 1.8rem 1rem;
	box-shadow: 0px 3px 10px #00000014;
	@media (width >=744px) {
	padding: 10px 10px 4px;
	}
}
.headerInner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between !important;
	gap: 1rem;
	@media (width >=744px) {
		padding-top: .2rem 2rem ;
		justify-content: center;
		width:95%;
		max-width:96rem;
		margin:auto;
	}
}
.headerLogobox {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:2rem;
}
.headerLogo {
	/*position: fixed;
	top: 2rem;
	left: 2rem;
	z-index: 10002;*/
	width: 22rem;
	@media (width >=744px) {
		/*position: static;
		padding-right: 0px;*/
		max-width: 256px;
	}
}
.header .itemname {
	width: 40%;
	white-space: nowrap;
	color: #716f70;
	--min-size: 16;
	--max-size: 24;
	font-size: var(--clamp-size);
}



.header .ctabox { 
	text-align: center;
	@media (width >=744px) {
	max-width: 44rem;
	width: 55%;
	}
}
.ctabox .ctabtns {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	@media (width >=744px) {
		gap: 1rem;
	}
}
.ctabox .ctabtns img {
	filter: drop-shadow(1px 2px 0px #d4d4d4);
	@media (width >=744px) {
		filter: drop-shadow(3px 3px 0px #d4d4d4);
	}
}
.ctabox p {
	--min-size: 10;
	--max-size: 13.5;
	font-size: var(--clamp-size);
	color: var(--sub-color1);
	line-height: 1.2;
	font-weight: bold;
	letter-spacing: -0.02em;
	margin-top: 0.5rem
}
.ctabox strong {
	color: #ffffff;
	display: inline-block;
	background-color: var(--sub-color2);
	padding: 0.2rem 0.4rem 0.3rem;
	margin: 0 0.4rem;
}


/* gnav */
.hamburger {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	width: 3rem;
	cursor: pointer;
	z-index: 10001;
	position: relative;
	margin-left: auto;
}
.hamburger span {
	height: .3rem;
	/*background-color: var(--sub-color);*/
	background-color: #00a0ea;
	width: 100%;
	border-radius: .2rem;
	transition: all 0.3s ease;
}
/* メニューオーバーレイ */
.menu-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(30, 46, 57, 0.37);
	z-index: 10001;
	justify-content: center;
	align-items: start;
	padding-top: 6rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.menu-overlay.active {
	display: flex;
	opacity: 1;
}
/* メニュー本体 */
.menu-content {
	background: #fff;
	width: 100%;
	max-width: 100%;
	padding: 2rem;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	transition: transform 0.3s ease;
}
.menu-overlay.active .menu-content {
	transform: translateY(0);
}
/* 閉じるボタン */
.menu-close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	width: 3rem;
	height: 2.4rem;
	font-size: 3.2rem;
	background: none;
	border: none;
	color: var(--sub-color);
	text-align: center;
	line-height: 2.4rem;
	padding: 0;
	z-index: 10002;
}
/* メニューリスト */
.menu-list {
	margin-top: 5rem;
}
.menu-list li {
	padding: 2rem 0;
	text-align: center;
}
.menu-list li:not(:last-of-type) {
	border-bottom: .1rem solid #cccccc;
}
.menu-list a {
	font-size: 1.7rem;
	font-weight: bold;
}
/* PC版では非表示 */
@media (min-width: 744px) {
	.hamburger {
		display: none;
	}
	.menu-overlay {
		display: none !important;
	}
	nav.gnav ul {
		display: flex;
		gap: 2rem;
	}
	nav.gnav li a {
		text-decoration: none;
		color: var(--base-color);
		font-weight: bold;
	}
}
/* PCナビ：スマホでは非表示 */
.pc-nav {
	display: none;
}
@media (min-width: 744px) {
	.pc-nav {
		display: block;
	}
	.pc-nav-list {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		list-style: none;
		flex-wrap: nowrap;
	}
	.pc-nav-list li {
		flex-basis: auto;
		border-right: 1px solid #b5b5b5;
		padding: 0 4px;
	}
	.pc-nav-list li:first-child {
		border-left: 1px solid #b5b5b5;
	}
	.pc-nav-list li.noborder {
		border: none;
	}
	.pc-nav-list li a {
		text-decoration: none;
		/*font-size: 1.4rem;*/
		--min-size: 8;
		--max-size: 14;
		font-size: var(--clamp-size);
		white-space: nowrap;
	}
	.pc-nav-list li img {
		--min-size: 80;
		--max-size: 164;
		width: var(--clamp-size);
		vertical-align: middle;
		margin: 14px 1px 10px;
	}
	.pc-nav-list li.pdl20 {
		padding-left: 20px;
	}
}
.pc-nav-list li:not(:has(img)) {
	@media (width >=960px) {
		padding-inline: 1rem;
	}
}
/* メイン画像 */
.mainVisual {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;/**/
	@media (width >=744px) {
		background-image: url(../img/fv/fv-bg.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
	}
}
.container {
	position: relative;
	width: 100%;
	height: 410px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4.2rem;
	@media (width >=744px) {
		margin-top: 8.1rem;
		height: 500px;
	}
}
.image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	animation: image-switch-animation 20s infinite;
}
.src1 {
	background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-01.jpg);
	@media (width >=744px) {
		background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-pc01.jpg);
	}
}
.src2 {
	background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-02.jpg);
	@media (width >=744px) {
		background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-pc02.jpg);
	}
}
.src3 {
	background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-03.jpg);
	@media (width >=744px) {
		background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-pc03.jpg);
	}
}
.src4 {
	background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-04.jpg);
	@media (width >=744px) {
		background-image: url(https://www.yutoriform.com/lp/cp17/img/fv/fv-pc04.jpg);
	}
}
.image:nth-of-type(1) {
	animation-delay: 0s;
}
.image:nth-of-type(2) {
	animation-delay: 5s;
}
.image:nth-of-type(3) {
	animation-delay: 10s;
}
.image:nth-of-type(4) {
	animation-delay: 15s;
}
@keyframes image-switch-animation {
	0% {
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
}
/* main */
.topPeriod {
	--min-size: 15;
	--max-size: 24;
	font-size: var(--clamp-size);
	line-height: 1.5;
	background: #ad136e;
	color: #ffffff;
	/*font-weight: bold;*/
	padding-top: .5rem;
	padding-bottom: .6rem;
	text-align: center;
	@media (width >=744px) {
		border: #FFFFFF;
		color: #ffffff;
		padding-bottom: 1rem;
	}
}
.large {
	font-size: 1.7em;
}
.topLink {
	padding: 4rem 0rem 3rem;
	text-align: center;
    --min-size: 12;
    --max-size: 17;
    font-size: var(--clamp-size);
	line-height: 1.6;
	@media (width >=744px) {
		padding: 6rem 0 4rem;
	}
}
.topLink ul {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding-bottom: 0.4rem;
	@media (width >=744px) {
		gap: 4rem;
	}
}
.problems {
	padding: 0;
	text-align: center;
	background-color: #dee7ec;
}

.section {
	padding: 2.5rem 0 0;
	text-align: center;
	@media (width >=744px) {
		padding: 8rem 0 0;
	}
}

#hikaku table {
	border-collapse: collapse;
	margin: 2rem auto 0;
	table-layout: fixed;
	width: min(100%, 760px);
	--min-size: 12;
	--max-size: 17;
	font-size: var(--clamp-size);
	color: #393939;
	@media (width >=744px) {
		margin: 6rem auto 0;
	}
}
#hikaku table tr {
	background-color: #ffe8eb;
	padding: .35em;
	border-bottom: 1px solid #fff;
}
#hikaku table th, #hikaku table td {
	padding: 0.92em;
	border-right: 1px solid #fff;
	vertical-align: middle;
}
#hikaku table th {
	background-color: #ff6e7f;
}
#hikaku table thead tr {
	background-color: #d3d3d3;
	color: #fff;
}
#hikaku table thead th {
	width: 36%;
	--min-size: 11;
	--max-size: 20;
	font-size: var(--clamp-size);
	font-weight: bold;
	@media (width >=744px) {
		width: 40%;
	}
}
#hikaku table tbody th {
	background: #d3d3d3;
	font-weight: bold;
}
#hikaku table th.spplan {
	background: #009839;
	box-shadow: inset 0px 0px 0px 4px #00a0e9;
	font-weight: bold;
}
#hikaku table td.spplan {
	background: #ccf5de;
	color: #e72e31;
	font-weight: bold;
}
#hikaku table .non {
	background: #fff
}
#hikaku table strong {
	font-weight: bold;
}
.note {
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	text-align: left;
	padding: 2rem 0;
	line-height: 1.4;
}
#plan01 .note{
	@media (width >=744px) {
		padding: 2rem;
	}
}

/* step-nagare */

.step-nagare {
	/*padding: 2rem 0 2rem 0;*//*画像の時*/
	display: flex;
	flex-direction: column;
	padding: 2rem 0 0;
	@media (width >=744px) {
		flex-direction: row;
		justify-content: space-between;
		width:100%;height:auto;
		padding: 5.6rem 0 0;
	}
}
.step-nagare .item {
	background: #48c6ff;
    color: #ffffff;
	width:100%;
	position: relative;
    padding: 2rem 2rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
    line-height: 1.3;
	box-sizing:border-box;
	@media (width >=744px) {
		width:20%;
		display: flex;
		flex-direction: column; /* 子要素の中身を縦並びにする */
		gap: 1rem;
		position: relative;
    	padding: 2rem 0 2rem 1.2rem;
	}
}
.step-nagare .item:not(:last-child)::before,
.step-nagare .item:not(:last-child)::after {
	
	@media (width >=744px) {
	position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 17.5rem solid transparent;
    border-left: 2rem solid #48c6ff;
    margin: auto;
	}
}
.step-nagare .item:nth-child(2) {
    background: #00a0e9;
}
.step-nagare .item:nth-child(2)::after {
    border-left: 2rem solid #00a0e9;
}
.step-nagare .item:nth-child(3) {
    background: #0077ca;
}
.step-nagare .item:nth-child(3)::after {
    border-left: 2rem solid #0077ca;
}
.step-nagare .item:nth-child(4) {
    background: #004ba0;
}
.step-nagare .item:nth-child(4)::after {
    border-left: 2rem solid #004ba0;
}
.step-nagare .item:nth-child(5) {
    background: #00285a;
}
.step-nagare .item:nth-child(5)::after {
    border-left: 2rem solid #00285a;
}
.step-nagare .item:not(:last-child)::before {
    /*margin-left: 1px;
    border-left-color: #FFF;*/
}

.step-nagare .triangle {
	order: 1;
  background: #48c6ff;
  height: calc(tan(60deg) * 2rem / 2);
  width: calc(100% + 0rem);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
	order: 5;
	position: absolute;
	top:0;
	left: 0;
}
.step-nagare .item:nth-child(3) .triangle {
    background: #00a0e9;
}
.step-nagare .item:nth-child(4) .triangle {
    background: #0077ca;
}
.step-nagare .item:nth-child(5) .triangle {
    background: #004ba0;
}
.step-nagare .item:not(:last-child)::before {
    /*margin-left: 1px;
    border-left-color: #FFF;*/
}
.step-nagare .num{
	width:20%;
	order: 2;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	--min-size: 40;
	--max-size: 48;
	font-size: var(--clamp-size);
	line-height: 1;
	text-align: left;
	@media (width >=744px) {
		order: 0;
		width:100%;
		text-align: center;
	}
}
.step-nagare .icon{
	order: 4;
	width:20%;
	margin-right: -1rem;
	@media (width >=744px) {
		order: 0;
		width:100%;
		margin-right: 0;
	}
}
.step-nagare .h3box{
	order: 3;
	display: flex;
	width:60%;
	text-align: left;
  	align-items: center; /* 縦の中央揃え */
	@media (width >=744px) {
		order: 0;
		height: 5rem;
		width:100%;
  		justify-content: center; /* 横の中央揃え（不要なら削除） */
	}
}
.step-nagare h3{
	--min-size: 16;
	--max-size: 16;
	font-size: var(--clamp-size);
	line-height: 1.14;
	@media (width >=744px) {
		line-height: 1.3;
	}
}
.step-nagare .step-txt{
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	padding: 0.5rem 0;
	text-align: justify;
	order: 5;
	min-height: 5rem;
	@media (width >=744px) {
		order: 0;
	padding: 0 1.6rem;
	flex-grow: 1 ; 
		width: 100%;
		height: auto;
	}
}

.step-sale1 {
	position: relative;
	border-radius:2rem;
	margin: 4rem 0;
	background: #ffd285;
	padding: 0;
	@media (width >=744px) {
		padding: 2.5rem 20rem 2.5rem 8rem;
		margin: 8rem 0 0;
	}
}
.step-sale1-img{
	position: absolute;
	right: -2rem;
	bottom: 0;
	width: 190px;
	height: 195px;
	@media (width >=744px) {
	right: 0;
	bottom: 0;
	width: 220px;
	height: 226px;
	}
}

.step-sale1-img img{
	@media (width >=744px) {
	border-radius:2rem;
	}
}
.step-sale1 p {
	position: relative;
	top: 2rem;
	left: 2rem;
	width: 80%;
	height: 21rem; 
	z-index: 1000;
	
	font-size: 13px;
	line-height: 1.65;
	color: var(--sub-color);
	text-align: left;
	font-weight: 600;
	@media (width >=744px) {
	--min-size: 13;
	--max-size: 22;
	font-size: var(--clamp-size);
	line-height: 1.78;
	position: static;
	width: auto;
	height: auto;
	}
}
.step-sale1 strong {
	background: #f65100;
	padding: 0 0.2rem 0.1rem;
	color: #ffffff;
	@media (width >=744px) {
	padding: 0.15rem 0.8rem 0.3rem;
	}
}


.step-sale2 {
	margin: 4rem 0 3rem;
	padding: 2.5rem 2rem 0.5rem;
	background: var(--base-color);
	@media (width >=744px) {
		margin: 10rem 0 8rem;
		padding: 3rem 4rem;
	}
}
.step-sale2 h3 {
	--min-size: 19;
	--max-size: 28;
	font-size: var(--clamp-size);
	color: var(--sub-color);
	font-weight: 600;
	line-height: 1.2;
	@media (width >=744px) {
		line-height: 1.4;
	}
}
.step-sale2 h3 strong {
	--min-size: 26.6;
	--max-size: 39.2;
	font-size: var(--clamp-size);
	color: var(--sub-color2);
	text-decoration: underline;
	display: block;
	@media (width >=744px) {
		display: inline-block;
	}
}
.reasons {
	margin-top: 3rem; 
	@media (width >=744px) {
	margin-top: 2.5rem; 
	}
}
.reasonbox {
	display: flex;
	background: #ffffff;
	border-radius: 2rem;
	margin-bottom: 2rem;
	text-align: left;
	flex-wrap: wrap;
	@media (width >=744px) {
	flex-wrap: nowrap;
	border-radius: 50rem;
	margin-bottom: 2rem;
	}
}
.reason-num {
	margin: -3rem 0 0 0;
	flex-basis: 10rem;
	@media (width >=744px) {
	margin: -1.6rem 0 0.4rem 1.7rem;
	padding-right: 2.5rem;
	flex-basis: auto;
	}
}
.reason-h4 {
	display: flex;
  align-items: center;
	flex-grow: 1 ;
	margin-bottom: -1rem;
	padding-left: 1rem;
	@media (width >=744px) {
	border-left: 2px solid #dcf4ff;
	padding-left: 3rem;
	flex-basis: 30rem;
	flex-grow: 0 ;
	}
}
.reason-h4 h4{
	--min-size: 18;
	--max-size: 24;
	font-size: var(--clamp-size);
	color: var(--sub-color2);
	font-weight: bold;
}
.reason-txt {
	border-top: 2px solid #dcf4ff;
	--min-size: 17;
	--max-size: 20;
	font-size: var(--clamp-size);
	display: flex;
  	align-items: center;
	margin: 0 auto;
	flex-basis: 100%;
	@media (width >=744px) {
	border: none;
	margin-left: 0;
	flex-basis: auto;
	}
}

.reason-txt p {
	padding: 1rem 1rem 1.8rem;
	text-align: center;
	width: 100%;
	@media (width >=744px) {
	padding: 0;
	text-align: left;
	width: auto;
	}
}
.reason-txt strong {
	color: var(--main-color);
	font-weight: bold;
}


/* カテゴリタイトル */
.categoryTop {
	z-index: 0;
	padding: 0;
}
.categoryTop img, .section img {
	margin:auto; 
}
.categoryTop h2 {
	display: flex;
	align-items:center;
	justify-content: center;
	background-color: var(--main-color);
	color: #ffffff;
	font-weight: 700;
	--min-size: 20;
	--max-size: 40;
	font-size: var(--clamp-size);
	line-height: 1.4;
	vertical-align:baseline;
	padding: 1.7rem 0;
	gap:1rem;
	@media (width >=744px) {
		padding: 2.4rem 0;
	}
}
.categoryTop h2 span.subcopy {
	color: #ffffff;
	font-weight: 700;
	--min-size: 13;
	--max-size: 20;
	font-size: var(--clamp-size);
	background-color: #f65100;
	border-radius: 30px;
	padding: .3rem 1rem .2rem;
	@media (width >=744px) {
		padding: .5rem 3rem;
		vertical-align: 20%;
	}
}

.categoryTop h2 span.number {
	color: var(--sub-color3);
	font-weight: 700;
	--min-size: 24;
	--max-size: 48;
	font-size: var(--clamp-size);
	margin: 0;
	line-height: 1;
	@media (width >=744px) {
		margin: 0 0.5rem;
	}
}

.summary {
	text-align: center;
	margin: 0 auto 3rem;
  @media (width >= 774px) {
	margin: 2.5rem auto 4rem;
  }
}
.summary-text {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #009839;
	color: #ffffff;
}
#plan02 .summary-text {
	background-color: #ff6e7f;
}
.summary-text-left {
	padding: 1rem;
	white-space: nowrap;
	font-weight: bold;
	--min-size: 16;
	--max-size: 26;
	font-size: var(--clamp-size);
	line-height: 1.2;
	flex-grow: 1;
  @media (width >= 774px) {
	width: 28.5rem;
  }
}
.summary-text-right {
	text-align: left;
	border-left: 1px solid #ffffff;
	flex-grow: 1;
}
#plan02 .summary-text-right {
	text-align: center;
}
.summary-text-right .text-large {
	color: var(--sub-color3);
	text-align: center;
	margin-top: 1.6rem;
	font-weight: bold;
	--min-size: 14;
	--max-size: 28;
	font-size: var(--clamp-size);
	line-height: 1.2;
}
#plan02 .summary-text-right .text-large {
	margin-top: 2.6rem;
	--min-size: 18;
	--max-size: 28;
	font-size: var(--clamp-size);
	white-space: nowrap;
  @media (width >= 774px) {
	margin-top: 5rem;
  }
}
.summary-text-right .text-large span {
	--min-size: 30;
	--max-size: 60;
	font-size: var(--clamp-size);
}
.summary-text-right .text-large small {
	--min-size: 8;
	--max-size: 16;
	font-size: var(--clamp-size);
}
.summary-text-right p {
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	line-height: 1.3;
	color: #ffffff;
	margin: -1rem 1.5rem 2rem;
	text-align: justify;
  @media (width >= 774px) {
	margin: -0.5rem 2rem 1.2rem;
  }
}
#plan02 .summary-text-right p {
	margin: 1.4rem 2rem 2rem;
}
.box-parent {
	width: 100%;
	height: auto;
	display: flex ;
	flex-direction: column;
	padding: 2rem 0 0;
	box-sizing: border-box;
	@media (width >=744px) {
		flex-direction: row;
		justify-content: space-between;
		padding: 3rem 2rem 0;
		box-sizing: border-box;
	}
}
.box-child {
	display: flex;
	flex-direction: column;
	padding: 0px;
	box-sizing: border-box; /*余白を設定*/
	margin-bottom: 2rem;
	border: 1px solid #c3c3c3;
	@media (width >=744px) {
		width: 48%;
		margin-bottom: 4rem;
	}
}
.linkbox {
	position: relative;
}
.linkbox laproduct-btn {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
}


.box-child-title {
	background-color: #08a1e8;
	color: #ffffff;
	--min-size: 19;
	--max-size: 28;
	font-size: var(--clamp-size);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.2;
	padding: 2rem;
	@media (width >=744px) {
		justify-content:flex-start;
	}
}
.box-child-title.text-left {
	justify-content:flex-start;
}


.box-parent.imadake {
	padding: 0;
	margin: -3rem 0 2rem;
	@media (width >=744px) {
		margin: -4rem 0 0;
	}
}
.imadake .box-child {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	padding: 0px;
	box-sizing: border-box; /*余白を設定*/
	border: none;
}
.imadake .box-child-main {
	display: flex;
	padding: 2rem;
	flex-direction: column;
	gap: 1rem;
	@media (width >=744px) {
		gap: 3rem;
		flex-direction: row;
		padding: 3rem 4rem;
	}
}
.imadake .box-child-img {
	padding: 0rem 2rem;
	background-color: #ffffff;
	@media (width >=744px) {
		padding: 0rem;
	}
}
.imadake .box-child {
	background-color: #ffebed;
	margin-top: 3rem;
  @media (width >= 774px) {
	 margin-top: 4rem;
  }
}
.imadake .box-child-title {
	background-color: #ff4258;
	--min-size: 17;
	--max-size: 25;
	font-size: var(--clamp-size);
	padding: 1.2rem;
	justify-content:center;
	@media (width >=744px) {
		padding: 1.4rem;
	}
}
.imadake .box-child-text {
	width: 100%;
	flex-grow: 1;
	padding: 0;
	box-sizing: border-box; /*余白を設定*/
	text-align: center;
	text-align: left;
	padding: 0;
	line-height: 1.4;
}
.imadake .product-off {
	--min-size: 16;
	--max-size: 21;
	font-size: var(--clamp-size);
	color: #ff4258;
	font-weight: bold;
}
.imadake .product-name {
	color: #393939;
}
.imadake .product-spec {
	--min-size: 12;
	--max-size: 18;
	font-size: var(--clamp-size);
	padding-top: 0;
}

.imadake .box-child-price {
	background-color: #ffffff;
	text-align: center;
	padding: 0.8rem;
	margin: 1.4rem 0;
	box-sizing: border-box; /*余白を設定*/
	display: flex;
	align-items: center;
	flex-direction: column;
	@media (width >= 774px) {
	flex-direction: row;
	padding: 0;
	margin: 1rem 0 2rem;
  }
}

.imadake .priceBlock-price-left{
	@media (width >= 774px) {
	border-right: 1px solid #ffebed;
  }
	
}
.imadake .priceBlock-price-right{
	flex-grow: 1;
}
.imadake .box-child-price-txt1{
	color: #ff4258;
	--min-size: 15;
	--max-size: 18;
	font-size: var(--clamp-size);
	@media (width >= 774px) {
	padding: 2rem 1rem 0;
  }
}
.imadake .box-child-price-txt2{
	color: #333;
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	padding: 0.2rem;
	font-weight: normal;
	@media (width >= 774px) {
	padding: 0.5rem 1rem 1.4rem;
  }
}
.imadake .priceBlock {
	color: #ff4258;
}
.imadake .priceBlock .price {
	--min-size: 24;
	--max-size: 33;
	font-size: var(--clamp-size);
	line-height: 1.4;
}
.imadake .priceBlock .price small {
	--min-size: 12;
	--max-size: 16.5;
	font-size: var(--clamp-size);
}

.imadake .imasugu-button {
  color: #ffffff;
  background-image: linear-gradient(#ff5471, #ff3040);
	text-shadow: none;
	filter: none;
}
.imadake .imasugu-button::before {
	content: url('../img/plan01/btn-icon-mail.png');
	filter: brightness(0) invert(1);
}
.box-child img {
	display: block;
	width: 100%;
	height: auto;
}
.box-child-img {
	width: 100%;
	flex-grow: 1;
	padding: 1rem 1rem 0;
	box-sizing: border-box; /*余白を設定*/
	text-align: center;
  @media (width >= 774px) {
	padding: 2rem 2rem 0;
  }
}
.box-child-text {
	width: 100%;
	flex-grow: 1;
	padding: 0;
	box-sizing: border-box; /*余白を設定*/
	text-align: center;
	text-align: left;
	padding: 2rem 2rem 3rem;
	line-height: 1.2;
  @media (width >= 774px) {
	padding: 2rem 3rem 2rem;
  }
}
.product-name {
	--min-size: 16;
	--max-size: 24;
	font-size: var(--clamp-size);
	font-weight: bold;
}
.product-spec {
	--min-size: 14;
	--max-size: 18;
	font-size: var(--clamp-size);
	padding-top: 1rem;
}
.product-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.6rem;
	background-color: #d7d7d7;
	cursor: pointer;
	position: relative;
	text-align: center;
	line-height: 1.1;
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	white-space: nowrap;
	border-radius: 40px;
	margin: -3rem -1rem 0 auto;
	width: 13rem;
	@media (width >=774px) {
		padding: 0.7rem;
		width: 18rem;
		margin: 0 -1rem 0 auto;
	}
}
.product-btn::after {
	/*font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: 600;*/
	opacity: 1;
	content: "＞";
	position: absolute;
	right: 0.5rem; /* 右端に配置 */
	@media (width >=774px) {
		right: 1rem; /* 右端に配置 */
	}
}
.product-btn:hover {
	background-color: #08a1e8;
}
.box-child-price {
	background-color: #ff6600;
	text-align: center;
	flex-grow: 1;
	padding: 1.5rem 1.5rem 1.5rem;
	box-sizing: border-box; /*余白を設定*/
  @media (width >= 774px) {
	  padding: 1rem 1.5rem 1.2rem;
  }
}
.box-child-price-txt1{
	color: #ffffff;
	--min-size: 15;
	--max-size: 20;
	font-size: var(--clamp-size);
	font-weight: bold;
	white-space: nowrap;
}
.box-child-price-txt2{
	color: #ffffff;
	--min-size: 12;
	--max-size: 14;
	font-size: var(--clamp-size);
	line-height: 1.2;
	white-space: nowrap;
}
/*.imasugu img{ 
	filter: drop-shadow(3px 3px 0px #d45500);
	padding: 0.5rem 0 0.3rem;
}
a.imasugu:hover img {
	opacity: 1;
	filter: brightness(1.4);
}*/

.imasugu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff4200;
  background-image: linear-gradient(#ffffff, #fff886);
  border: none;
	cursor: pointer;
  position: relative;
  text-align: center;
  margin: 0.3rem 2rem 0.3rem;
  line-height: 1.2;
    padding: 1.2rem;
    --min-size: 15.8;
    --max-size: 20;
    font-size: var(--clamp-size);
	font-weight: bold;
	border-radius: 5rem;
	text-shadow: 1px 1px 2px white;
	filter: drop-shadow(3px 3px 0px #d45500);
  @media (width >= 774px) {
	  margin: 0.3rem 0 0.3rem 0;
    	padding: 1.35rem;
  }
}
.imasugu-button::before {
	content: url('../img/plan01/btn-icon-mail.png');
	position: relative;
	  margin: 4px 12px 0 0;
	width: 31px;
	height: 20px;
}
.imasugu-button:hover {
	opacity: 0.7;
}
.box-child-price-txt3{
	--min-size: 12;
	--max-size: 15;
	font-size: var(--clamp-size);
}



.priceBlock {
	width: 100%;
	position: relative;
	display: inline-block;
	color: #ffff99;
	padding: 0;
	@media (width >=744px) {
		/*padding: 1rem 0 1rem;*/
	}
}
.priceBlock p {
	font-weight: 600;
	--min-size: 12;
	--max-size: 24;
	font-size: var(--clamp-size);
	line-height: 1.1;
	margin: .8rem 0 0;
	@media (width >=744px) {
		margin: 1rem 0 -1rem;
		line-height: 1.4;
	}
}
.priceBlock .fee {
	font-weight: 700;
	--min-size: 10;
	--max-size: 24;
	font-size: var(--clamp-size);
	display: inline-block;
	line-height: .9;
	text-align: center;
	margin-left: -0.2rem;
	@media (width >=744px) {
		line-height: .7;
	}
}
.priceBlock .fee small {
	font-size: 8px;
	letter-spacing: -0.05rem;
	transform: scale(-0.5, -0.5);
	@media (width >=744px) {
		line-height: .7;
		--min-size: 8;
		--max-size: 12;
		font-size: var(--clamp-size);
		letter-spacing: 0rem;
		transform: scale(1);
	}
}
.priceBlock .price {
	display: inline-block;
	font-weight: 600;
	--min-size: 32;
	--max-size: 48;
	font-size: var(--clamp-size);
	position: relative;
	line-height: 1.4;
}
.priceBlock .price .narrow {
	letter-spacing: -0.02em;
}
.priceBlock .price small {
	--min-size: 16;
	--max-size: 23;
	font-size: var(--clamp-size);
}

.productBoxFlex {
	display: flex;
	align-items: center;
	gap: 0rem;
	margin-bottom: 1rem;
	padding: 0 !important;
	background-color: white;
	box-shadow: 5px 7px 0px rgba(0, 0, 0, .1);
	@media (width >=744px) {
		flex: 1;
		flex-direction: column;
		align-items: flex-start;
		text-align: center;
		margin-bottom: 0;
	}
	& h3 {
		background-color: #08a1e8;
		color: #ffffff;
		width: 100%;
		--min-size: 16;
		--max-size: 24;
		font-size: var(--clamp-size);
		padding: 1.5rem 0;
		@media (width >=744px) {}
	}
	& img {
		width: 100%;
		height: 100%;
		object-fit: cover !important;
		@media (width >=744px) {
			width: 100%;
		}
	}
}


.btn-box-parent {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.4rem;
	padding: 0;
	box-sizing: border-box;
	@media (width >=744px) {
		gap: 0.8rem;
		padding: 2rem 2rem 0;
		box-sizing: border-box;
	}
}
.btn-box-child {
	width: calc((100% - 0rem) / 1);
	height: auto;
	display: flex;
	flex-direction: column;
	padding: 0px;
	box-sizing: border-box; /*余白を設定*/
	@media (width >=744px) {
		width: calc((100% - 0.8rem) / 2);
	}
}



/*==============================================================*/
/*popup template design*/
.popup-background{
  /*position size*/
  position: fixed;
  z-index : 100010;
  top : 0;
  left : 0;
  height : 100vh;
  width : 100vw;

  /*design*/
  background-color: #00a0e9;
  opacity : 0.8;
}
.popup{
  /*position size*/
  --height : 87%;
  --width : 90%;
  z-index : 100010;
  position: fixed;
  top : calc(50vh - calc(var(--height) / 2));
  left : calc(50vw - calc(var(--width) / 2));
  height : var(--height);
  width : var(--width);

  /*design*/
  overflow-y: auto; /* または scroll */
  -webkit-overflow-scrolling: touch; /* iOSでのスムーズスクロール用 */
  background-color: #ffffff;
  /*border-radius: 10px;*/
  /*box-shadow: 0px 0px 3px 1px gray;*/
	padding: 2rem !important;
	@media (width >=774px) {
		padding: 4rem 4rem 1rem !important;
  	/*position size*/
  	--height : 615px;
  	--width : 860px;
  	z-index : 100010;
  	position: fixed;
  	top : calc(50vh - calc(var(--height) / 2));
  	left : calc(50vw - calc(var(--width) / 2));
  	height : var(--height);
  	width : var(--width);
	}
}
.popup > .close-button{
  /*position size*/
  --size : 20px;
  position:absolute;
  /*top : calc(var(--size)/4);*/
	top: 0.1rem;
  /*left : calc(var(--width) - var(--size) * 5/4);*//*css variables are available in children*/
	right: 0.1rem;
  height : var(--size);
  width : var(--size);

  /*design*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color : gray;
  font-size: var(--size);
  border-radius: calc(var(--size)/5);
	@media (width >=744px) {
		top:1rem;
		right:1rem;
	}
}
.popup > .close-button:hover{
  /*design*/
  background-color: #08a1e8;
  color : white;
}
.popup > .content{
  padding: 10px;
  text-align: center;
}


/*hide popup*/
.popup-flag{
  display: none;
}
.popup-flag:not(:checked) + .popup-background{
  display:none;
}
.popup-flag:not(:checked) + * + .popup{
  display:none;
}


/*==============================================================*/
/*button-container*/
.button-container{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.button-container > *{
  margin : 15px;
}

label {
  display: inline-block; /* クリック範囲を広げやすくするためブロック化 */
  cursor: pointer;       /* マウスカーソルを指の形にしてクリック可能であることを明示 */
  user-select: none;     /* 文字列を意図せず選択（ドラッグ）してしまうのを防ぐ */
}
label:hover {
  /*background-color: #30b3ed80;*/
}




/*モーダル*/
.modal-checkbox {
	display: none;
}
.modal-open-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  background-image: linear-gradient(#00acec, #0095e6);
  border: none;
	cursor: pointer;
  position: relative;
  padding-right: 30px; /* 矢印のスペースを確保 */
  text-align: center;
  /*margin: 20px 0 0 0;*/
  line-height: 1.2;
    padding: 1.8rem;
    --min-size: 16;
    --max-size: 20;
    font-size: var(--clamp-size);
	font-weight: bold;
	border-radius: 10px;
  @media (width >= 774px) {
  }
}
.modal-open-button::after {
  font-family: "Font Awesome 5 Free";
  /*content: "\f0da";*/
  font-weight: 600;
	color: var(--sub-color3);
  opacity: 1;
  content: "▶︎";
  position: absolute;
  right: 20px; /* 右端に配置 */
    --min-size: 12;
    --max-size: 14;
    font-size: var(--clamp-size);
}
label.modal-open-button:hover { opacity: 0.7; }


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 60%);
}
.closetxt {
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.6rem;
	background-color: #c3c3c3;
	cursor: pointer;
	position: relative;
	text-align: center;
	line-height: 1.1;
	--min-size: 14;
	--max-size: 18;
	font-size: var(--clamp-size);
	white-space: nowrap;
	border-radius: 10px;
	width: 100%;
	margin: 2rem auto auto;
	@media (width >=774px) {
		width: 40rem;
		margin: 1rem auto auto;
	}
}
.closetxt:hover {
	background-color: #08a1e8;
}

.modal-content {}
.modal-content-parent {
	display: flex;
	flex-direction:column;
	gap:0;
	@media (width >=774px) {
		gap:4rem;
		flex-direction:row;
	}
}

.modal-content-img {
	margin-top: auto;
	border: 1px solid #cbcbcb;
}
.modal-content-data {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.modal-content .box-child-title {
	background: none;
	border-left: 0.6rem solid var(--sub-color);
	display: block;
	padding: 0 0 0.5rem 1rem;
	margin-bottom: auto;
	color: #393939;
	margin: 2rem 0;
	@media (width >=744px) {
	padding: 0 0 1rem 2rem;
	border-left: 1rem solid var(--sub-color);
	}
}
.modal-content .box-child-title h3 {
	color: var(--sub-color);
	text-align: left;
	font-weight: bold !important;
}
.modal-content .box-child-title .product-spec {
	line-height: 1.2;
	margin: -0.5rem 0 0;
	@media (width >=744px) {
	margin: 0;
	}
}
.modal-content .modal-content-price{
	margin-top: auto;
}
.modal-content .box-child-price-txt1{
	color: #393939;
	--min-size: 18;
	--max-size: 22 !important;
	font-size: var(--clamp-size);
	text-align: center;
	line-height: 1.2;
}
.modal-content .box-child-price-txt2{
	color: #393939;
	--min-size: 12;
	--max-size: 18;
	font-size: var(--clamp-size);
	text-align: center;
	font-weight: bold;
}

.modal-content table {
	border-collapse: collapse;
	margin: 1.2rem 0 0;
	table-layout: auto;
	--min-size: 12;
	--max-size: 18;
	font-size: var(--clamp-size);
	color: #393939;
	border: 1px solid #c3c3c3;
	text-align: center;
	line-height: 1.2 !important;
	width: 100%;
}
.modal-content table tr {
	background-color: #edf1f5;
	padding: .35em;
	border-bottom: 1px solid #c3c3c3;
}
.modal-content table th, .modal-content table td {
	padding: 0.95rem 1rem;
	border-right: 1px solid #c3c3c3;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: bold;
}
.modal-content table th {
	background-color: var(--sub-color);
	color: #ffffff;
	width: auto;
}
.modal-content table thead tr {
	background-color: #edf1f5;
	color: #393939;
}
.modal-content table thead th {
	font-weight: bold;
}
.modal-content table tbody th {
	background-color: #edf1f5;
	font-weight: normal;
	color: #393939;
	width: 5rem !important;
	@media (width >=774px) {
		width: 10rem !important;
	}
}

.modal-content table span.price {
	display: block;
	color: #ff4258;
}
.modal-content table span.price small {
	--min-size: 9.1;
	--max-size: 12.6;
	font-size: var(--clamp-size);
}

.modal-content table tr:nth-child(even) th, .modal-content table tr:nth-child(even) td {
  background: #ffffff;
}
.modal-content .box-child-price-txt3{
	--min-size: 12;
	--max-size: 16;
	font-size: var(--clamp-size);
	text-align: right;
}


.modal-content .box-parent {
	padding: 0;
	box-sizing: border-box;
}
.modal-content .box-child {
	box-shadow: unset;
	padding: 0;
	box-sizing: border-box;
}
.modal-content .box-child {
	width: auto;
}
.modal-content .box-child.w47pct {
	text-align: left;
}
.modal-content .box-child img {
	width: 100%;
}
.modal-content .box-child p {
	text-align: left;
}
.flexbox {
	display: flex;
	text-align: center;
	margin-bottom: 1rem;
	gap: 1rem;
	@media (width >=744px) {
		gap: 3rem;
		margin-bottom: 2rem;
	}
}
.flexbox.gap0 {
	gap: 0;
}
.flexbox.gap2 {
	gap: 2px;
	padding-top: 2px;
}
.flexbox.gap60 {
	gap: 0;
	@media (width >=744px) {
		gap: 6rem;
	}
}
.flexbox.mb0 {
	margin-bottom: 0;
}
.flexbox.mb40, .mb40 {
	margin-bottom: 20px;
	@media (width >=744px) {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
}
.flexbox.tate {
	flex-direction: row;
	gap: 0.8rem;
	@media (width >=744px) {
		flex-direction: column;
	}
}
.flex-item {
	width: 100%;
	text-align: left;
}
.item01 {
	flex: 47%;
	flex-shrink: 0;
}
.item02 {
	flex: 40%;
	flex-shrink: 0;
	@media (width >=744px) {
		flex: 32%;
	}
}
.item02-1 {
	flex: 60%;
	flex-shrink: 0;
	@media (width >=744px) {
		flex: 32%;
	}
}
.item03 {
	flex: 100%;
	flex-shrink: 0;
}
.item04 {
	flex-direction: column;
	@media (width >=744px) {
		flex-direction: row;
	}
}
.item04-1 {
	flex-direction: column !important;
	gap: 1rem;
	@media (width >=744px) {
		flex-direction: row;
	}
}
.item05 {
	flex-direction: column;
	@media (width >=744px) {
		flex-direction: row;
	}
}
.ctabtnbox {
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 2rem;
	padding: 0 2rem;
	@media (width >=744px) {
		flex-direction: row;
		gap: 2rem;
		margin-top: 4.5rem;
	}
}
.modal-content p {
	text-align: justify;
	line-height: 1.6;
}
.modal-content p.text01 {
	--min-size: 10;
	--max-size: 18;
	font-size: var(--clamp-size);
	line-height: 1.4;
	margin-bottom: 1rem;
	@media (width >=744px) {
		padding-top: 1rem;
		line-height: 1.8;
	}
}
.modal-content p.padtl {
	padding: 0 0 0 1rem;
	@media (width >=744px) {
		padding: 2.2rem 0 0 3rem;
	}
}
.modal-content p.text02 {
	--min-size: 10;
	--max-size: 15;
	font-size: var(--clamp-size);
	margin-bottom: 1rem;
	line-height: 1.4;
	@media (width >=744px) {
		line-height: 1.8;
	}
}
.modal-content p.text03 {
	--min-size: 8;
	--max-size: 12;
	font-size: var(--clamp-size);
	line-height: 1.4;
	color: #757575;
}
.modal-content p.text04 {
	--min-size: 10;
	--max-size: 15;
	font-size: var(--clamp-size);
	color: #08a1e8;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}
.modal-content p.text05 {
	--min-size: 14;
	--max-size: 14;
	font-size: var(--clamp-size);
	line-height: 1.4;
	font-weight: normal;
	margin-bottom: 0.5rem;
}
.modal-content p.text05 {
	--min-size: 14;
	--max-size: 14;
	font-size: var(--clamp-size);
	line-height: 1.4;
	font-weight: normal;
	margin-bottom: 0.5rem;
}
.modal-checkbox:checked + .modal {
	display: flex;
}


/* お問い合わせ */
.contactBox {
	padding: 3.8rem 0 3.5rem;
	text-align: center;
	margin-top: 6rem;
	margin-bottom: 3rem;
	@media (width >=744px) {
		margin-top: 12rem;
		padding: 3.8rem 0 3.9rem;
	}
}
.cta-title {
	font-weight: 700;
	--min-size: 22;
	--max-size: 38;
	font-size: var(--clamp-size);
	color: var(--sub-color);
	line-height: 1.3;
}
.cta-title .subcopy {
	--min-size: 15;
	--max-size: 22.8;
	font-size: var(--clamp-size);
	display: block;
}
.contactBox .ctabox .ctabtns {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 1.5rem 2rem 1rem;
	gap: 1rem;
  @media (width >= 768px) {
	 flex-direction: row;
	margin: 2rem 2rem 1rem;
  }
}
.contactBox .ctabox p {
	--min-size: 13;
	--max-size: 24;
	font-size: var(--clamp-size);
	color: var(--sub-color1);
	letter-spacing: normal;
}

/*よくある質問*/
.qaContainer { 
	text-align: left;
	padding: 3.5rem 0 2rem;
	--min-size: 12;
	--max-size: 17;
	font-size: var(--clamp-size);
	@media (width >= 774px) {
	  padding: 6rem 0 9rem;
  }
}
.qaContainer dt {
	padding: 0.6rem 0.5rem 0.6rem 4.8rem;
	font-weight: bold;
	position: relative;
	background: #ffffff;
	border-radius: 5px;
  @media (width >= 774px) {
	  padding: 1.5rem 1.5rem 1.5rem 9rem;
  }
}
.qaContainer dt .ill  {
	position: absolute;
	top: -2.35rem ;
	left: 0rem;
	width: 4.536rem;
	height: 5.67rem;
	background: url('../img/qa/qa_img01.png') no-repeat center center;
	background-size: contain;
	background-repeat: no-repeat;
  @media (width >= 774px) {
	top: -3.1rem;
	left: 0.7rem;
	width: 7.2rem;
	height: 9rem;
  }
}
.qaContainer dt:nth-of-type(5n + 2) .ill  {
	position: absolute;
	top: -2.35rem ;
	left: 0rem;
	width: 4.536rem;
	height: 5.67rem;
	background: url('../img/qa/qa_img02.png') no-repeat center center;
	background-size: contain;
	background-repeat: no-repeat;
  @media (width >= 774px) {
	top: -3.1rem;
	left: 0.7rem;
	width: 7.2rem;
	height: 9rem;
  }
}
.qaContainer dt:nth-of-type(5n + 3) .ill  {
	position: absolute;
	top: -2.35rem ;
	left: 0rem;
	width: 4.536rem;
	height: 5.67rem;
	background: url('../img/qa/qa_img03.png') no-repeat center center;
	background-size: contain;
	background-repeat: no-repeat;
  @media (width >= 774px) {
	top: -3.1rem;
	left: 0.7rem;
	width: 7.2rem;
	height: 9rem;
  }
}
.qaContainer dt:nth-of-type(5n + 4) .ill  {
	position: absolute;
	top: -2.35rem ;
	left: 0rem;
	width: 4.536rem;
	height: 5.67rem;
	background: url('../img/qa/qa_img04.png') no-repeat center center;
	background-size: contain;
	background-repeat: no-repeat;
  @media (width >= 774px) {
	top: -3.1rem;
	left: 0.7rem;
	width: 7.2rem;
	height: 9rem;
  }
}
.qaContainer dt:nth-of-type(5n + 5) .ill  {
	position: absolute;
	top: -2.35rem ;
	left: 0rem;
	width: 4.536rem;
	height: 5.67rem;
	background: url('../img/qa/qa_img05.png') no-repeat center center;
	background-size: contain;
	background-repeat: no-repeat;
  @media (width >= 774px) {
	top: -3.1rem;
	left: 0.7rem;
	width: 7.2rem;
	height: 9rem;
  }
}
.qaContainer dd {
	padding: 0.8rem 5rem 1.5rem 4.8rem;
	margin-bottom: 1.2rem;
	background: url('../img/qa/qa_img00.png') no-repeat top 0.5rem right;
	background-size: 4.32rem auto;
  @media (width >= 774px) {
	  background: url('../img/qa/qa_img00.png') no-repeat top 1rem right 2rem;
	padding: 3rem 8rem 1.5rem 9rem;
	background-size: auto;
	margin-bottom: 3.2rem;
  }
}

/* footer */
.footer {
	background: var(--sub-color);
	padding: 2rem 0;
}
/* hover設定 */
@media (hover: hover) {
	a img {
		opacity: 1;
		transition: opacity 0.3s ease;
	}
	a:hover img {
		opacity: 0.7;
	}
	.pc-nav-list li a:hover {
		opacity: 0.7;
	}
}
/* フローティングバナー */
.sp-bar {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.sp-bar.is-show {
	opacity: 1;
	pointer-events: auto;
}
.sp-bar__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	max-width: 720px;
	margin: 0 auto;
	padding: 15px;
	background-color: rgb(48 179 237 / 0.6);
}
.sp-bar__btn {
	display: inline-block;
}
.sp-bar__btn img {
	width: 100%;
	height: auto;
	filter: drop-shadow(1px 2px 1px #d4d4d4);
}
/* 744px以上では非表示 */
@media (min-width: 744px) {
	.sp-bar {
		display: none !important;
	}
}
/* 既存LPのコード */
.br-sm {
	display: none;
}
/* Inner */
/* ================== */
.inner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	/* padding: 70px 50px; */
	/*padding: 70px 0;*/
}
@media(max-width: 959px) {
	.inner {
		/*padding: 30px 30px;*/
	}
}
@media (max-width:743px) {
	.inner {
		/*padding: 30px 20px;*/
	}
}
/* lv2-heading02 */
/* ================== */
.lv2-heading02 {
	background: var(--sub-color);
	color: #fff;
	font-weight: 700;
	--min-size: 22;
	--max-size: 42;
	font-size: var(--clamp-size) !important;
	padding: 20px 0 !important;
	text-align: center;
	width: 100%;
	margin: 0 !important;
	position: relative;
	line-height: 1 !important;
	@media (width >=744px) {
		line-height: 1.6 !important;
		padding: 32px 0 !important;
	}
}
/* about */
/* ================== */
.about {
	background-image: url(../img/about/bg-pc.jpg);
	background-size: 780px;
	background-position: center top;
	background-color: #c1e5ff;
	background-repeat: repeat-x;
	padding-bottom: 0;
	@media (width >=744px) {
		background-size: contain;
	}
}
.about__item {
	display: flex;
	align-items: center;
	max-width: 1500px;
	width: 100%;
	margin: 0 auto 70px;
}
.about__head {
	padding: 0;
}
.about__item-col1 {
	width: 80% !important;
	margin: 2rem 0 !important;
	color: #001734;
	background-color: rgba(255, 255, 255, 0.76);
	padding: 2rem !important;
	border-radius: 0 !important;
	@media (width >=744px) {
		width: 580px !important;
		padding: 32px 80px 20px !important;
		margin: 80px auto 0 !important;
	}
}
.about__item-col1-txt {
	line-height: 1.8;
	font-size: 20px;
	margin-top: 20px;
	font-weight: 600;
}
.about__item-col1-txt span {
	color: #fff;
	font-size: 1.16em;
	font-weight: 700;
	background-color: #ff761c;
	padding: .1rem .3rem .3rem;
	margin: 0 .5rem;
}
.about__item-col2 {
	max-width: 820px;
	width: 100%;
	position: relative;
	margin-left: auto;
}
.about__item-col1-ttl {
	line-height: 1.1;
	font-size: 36px;
	font-weight: 700;
	font-feature-settings: "palt";
	text-align: center;
}
.about__item-col1-ttl span {
	font-size: .70em;
}
.about__item-col1-ttl span.num {
	font-size: 1.2em;
}
.about__item-col1-txt-note {
	margin-top: 10px;
	text-align: right;
	font-size: 11px;
	margin-top: 1rem;
	color: #666666;
}
.about__item-col2 img {
	width: 100%;
	border-radius: 10px 0 0 10px;
}
@media (max-width:959px) {
	.about__item {
		margin-bottom: 30px;
	}
	.about__item-col1 {
		max-width: 560px;
		padding: 30px 35px;
		margin-top: 80px;
	}
	.about__item-col1-ttl {
		font-size: 22px;
	}
	.about__item-col1-txt {
		font-size: 16px;
		margin-top: 20px;
	}
	.about__item-col2 {
		max-width: 480px;
	}
}
@media (max-width:743px) {
	.about__head {
		padding: 0;
	}
	.about__item-col1 {
		position: static;
		margin-top: 0;
		width: calc(100% - 30px);
		border-radius: 10px 0 0 10px;
		margin: 0 -30px -20px 0;
		padding: 25px 35px;
	}
	.about__item {
		flex-direction: column;
		margin-bottom: 0;
	}
	.about__item-col1-ttl {
		font-size: 18px;
	}
	.about__item-col1-txt {
		font-size: 13px;
		margin-top: 10px;
	}
	.about__item-col2 {
		margin-right: auto;
		margin-left: -36px;
	}
	.about__item-col2 img {
		border-radius: 0 10px 10px 0;
	}
}
/* service */
/* ================== */
.service__list {
	padding-bottom: 40px;
	@media (width >=744px) {
		padding-bottom: 100px;
	}
}
.service__item {
	width: min(92%, 1000px);
	background: #fff;
	border-radius: 8px;
	border: #002a68 solid 1px;
	background-image: url(../img/service/bg.jpg);
	background-size: 300px;
	background-position: right center;
	background-repeat: no-repeat;
	margin: 0 auto;
	@media (width >=744px) {
		padding: 58px 20px 30px 60px;
		border: #002a68 solid 2px;
		background-size: auto;
		background-position: right top;
		width: min(100%, 1000px);
	}
}
.service__item-ttl {
	--min-size: 18;
	--max-size: 40;
	font-size: var(--clamp-size) !important;
	color: #000;
	font-weight: 600;
	text-align: left;
	line-height: 1.4;
}
.service__item-ttl span {
	color: var(--sub-color);
	border-bottom: double 6px #0069eb;
}
.service__main-list {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
	max-width: 944px;
	width: 100%;
	@media (width >=744px) {
		margin-top: 5rem;
	}
}
.service__main-item-col1 {
	width: 430px;
}
.service__main-item-txt {
	font-weight: 600;
	--min-size: 14;
	--max-size: 18;
	font-size: var(--clamp-size) !important;
	font-size: 18px;
	line-height: 1.8;
	margin-top: 2rem;
	@media (width >=744px) {
		margin-top: 20px;
	}
}
.service__main-item-txt:first-child {
	margin-top: 0;
}
.sp-service__main-item-txt {
	display: none;
}
.service__main-item-txt span {
	color: #fff;
	font-size: 1.1em;
	font-weight: 700;
	background-color: #0069eb;
	padding: .1rem .4rem .2rem;
	margin: 0 2px;
}
.service__main-item-col2 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 450px);
	flex-wrap: wrap;
}
.service__item-col2-box {
	width: calc(50% - 10px);
	margin-left: 10px;
	/*display: flex;
  justify-content: space-between;*/
}
.service__item-pic {
	width: 100%;
}
.service__item-col2-hr {
	position: relative;
}
.service__item-col2-hr::before {
	content: '';
	border: #4aa3fd 1px dashed;
	transform: rotate(-155deg);
	position: absolute;
	left: 20px;
	padding: 0;
	height: 75px;
	bottom: 0;
}
.service__item-col2-hr::after {
	content: '';
	border: #4aa3fd 1px dashed;
	transform: rotate(-23deg);
	position: absolute;
	right: 20px;
	padding: 0;
	height: 75px;
	bottom: 0;
}
.service__item-col2-txt {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #ff8314;
	line-height: 1.4;
	/*margin-bottom: 27px;*/
	padding: 4px 0;
}
.service__item-bottom-txt {
	font-size: 12px;
	margin-left: 50%;
	margin-top: 10px;
	text-align: center;
}
.copyright {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	padding-top: 26px;
	padding-bottom: 26px;
}
.copyright small {
	font-size: inherit;
}
@media (max-width:1279px) {
	.service__item-col2-txt {
		font-size: 16px;
	}
}
@media (max-width:959px) {
	.service__item-ttl {
		font-size: 30px;
	}
	.service__item {
		padding: 46px 35px;
	}
	.service__main-list {
		display: block;
	}
	.service__main-item-col1 {
		width: 100%;
	}
	.service__main-item-col2 {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.service__item-col2-box {
		width: 100%;
		margin-left: 0;
	}
	.service__item-bottom-txt {
		margin: 40px 0 0 0;
	}
}
@media (max-width:743px) {
	.service__item {
		padding: 20px;
	}
	.service__item-ttl {
		font-size: 16px;
	}
	.service__main-item-txt {
		font-size: 11px;
	}
	.service__main-item-col2 {
		gap: 10px;
		margin: 16px auto 0;
	}
	.service__item-col2-txt {
		font-size: 12px;
		padding: 0;
		margin-bottom: 12px;
	}
	.service__item-col2-hr::after, .service__item-col2-hr::before {
		min-height: 26px;
		height: 50px;
	}
	.service__item-col2-hr::before {
		left: 20px;
	}
	.service__item-col2-hr::after {
		right: 20px;
	}
	.service__item-bottom-txt {
		margin-top: 0;
		margin-left: 0;
	}
	.copyright {
		padding-top: 17px;
		padding-bottom: 17px;
		font-size: 12px;
	}
}
/* 既存LPのコードここまで */

