@charset "UTF-8";
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
@media screen and (max-width: 767px) {
	html {
		font-size: 1.3333333333vw;
	}
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	letter-spacing: 0;
	list-style-type: none;
	font-style: normal;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	font-feature-settings: "palt";
	word-break: break-all;
	line-break: strict;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}

select::-ms-expand {
	display: none;
}

button:hover {
	cursor: pointer;
}

img,
object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.preload* {
	transition: none !important;
}

@media screen and (max-width: 767px) {
	img {
		width: 100%;
	}
}
/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
/* base
--------------------------------*/
body {
	color: #3D464C;
	font-size: 1rem;
	text-align: left;
}

.main {
	display: block;
	overflow: hidden;
}

section {
	position: relative;
}

.wrap {
	position: relative;
	width: 100%;
	max-width: 117rem;
	padding: 0 3.5rem;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.wrap._s {
		padding: 0 8.5rem;
	}
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.8rem;
	line-height: 2.2222222222;
	letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.left {
	float: left;
}

.right {
	float: right;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.bold,
strong {
	font-weight: bold;
	font-weight: 700;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.blue {
	color: #0C5093;
}

.lightblue {
	color: #17A4FB;
}

.white {
	color: #fff;
}

.yellow {
	color: #FFEE88;
}

.en {
	font-weight: 700;
	font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
	a, .fade {
		cursor: pointer;
		transition: opacity 0.3s ease;
	}
	a:hover, .fade:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 767px) {
	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 2.5rem;
		line-height: 2;
	}
}
/* scroll-animation
--------------------------------*/
.fadeup {
	opacity: 0;
	translate: 0 3rem;
	transition: opacity 1s, translate 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	translate: 0 0;
}

.onload.is-show .fadein,
.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}

/* fixed_btn
--------------------------------*/
#fixed_btn {
	position: fixed;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
	z-index: 998;
}
#fixed_btn.is-show {
	opacity: 1;
	pointer-events: all;
}
#fixed_btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 28.5rem;
	writing-mode: vertical-lr;
	text-orientation: upright;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 1.5rem;
	background-color: #F78C00;
	border-radius: 1.5rem 0 0 1.5rem;
}
@media screen and (min-width: 768px) {
	#fixed_btn a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#fixed_btn a:hover {
		opacity: 0.7;
	}
}
#fixed_btn a span {
	display: inline-block;
	transform: translateX(0.25em);
}
#fixed_btn a::before {
	content: "";
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: url(../img/ico_mail.svg) no-repeat center/contain;
	margin-bottom: 1rem;
}

/* ---------------------------------------
	header
-----------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}
@media screen and (max-width: 767px) {
	#header {
		background-color: #fff;
		position: fixed;
	}
}
#header .header_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.6rem 2rem;
}
@media screen and (max-width: 767px) {
	#header .header_wrap {
		height: 11rem;
		padding: 0;
	}
}
#header .logo {
	display: flex;
	align-items: center;
	gap: 0 2.8rem;
}
@media screen and (max-width: 767px) {
	#header .logo {
		gap: 0 1.3rem;
	}
}
#header .logo img {
	display: block;
	width: 19.2rem;
}
@media screen and (max-width: 767px) {
	#header .logo img {
		width: auto;
		height: 11rem;
	}
}
#header .logo .txt {
	font-weight: 500;
	font-size: 1.7rem;
	line-height: 1.4117647059;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
	#header .logo .txt {
		font-size: 1.9rem;
		line-height: 1.6315789474;
	}
}
#header .btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 0.8rem;
	width: 25rem;
	height: 4.6rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1.5;
	padding: 1rem 1.5rem;
	background-color: #F78C00;
	border-radius: 100vh;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
	#header .btn a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#header .btn a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	#header .btn a {
		display: block;
		width: 13rem;
		height: 11rem;
		text-align: center;
		font-size: 2.1rem;
		line-height: 1.2380952381;
		padding: 1.4rem 1.4rem 0;
		border-radius: 0;
	}
}
#header .btn a::before {
	content: "";
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background: url(../img/ico_mail.svg) no-repeat center/contain;
	translate: 0 0.2rem;
}
@media screen and (max-width: 767px) {
	#header .btn a::before {
		display: block;
		width: 3.2rem;
		height: 2.6rem;
		margin: 0 auto 0.8rem;
		translate: 0;
	}
}

/* ---------------------------------------
	main
-----------------------------------------*/
/* parts
--------------------------------*/
.sec_ttl {
	position: relative;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.3888888889;
	letter-spacing: 0.1em;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.sec_ttl {
		font-size: 4rem;
	}
}

.txt_message {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	margin-top: 5rem;
}
.txt_message._white {
	color: #fff;
}

/* cta
--------------------------------*/
.cta {
	padding: 5rem 0 6rem;
	background-color: #052A49;
}
.cta .txt {
	color: #fff;
	font-weight: 700;
}
.cta .btn {
	margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
	.cta .btn {
		margin-top: 2.8rem;
	}
}
.cta .btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 0.8rem;
	width: 50rem;
	height: 7rem;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 1rem 5rem;
	background-color: #F78C00;
	border-radius: 100vh;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.cta .btn a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	.cta .btn a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.cta .btn a {
		width: 65rem;
		height: 11rem;
		font-size: 2.8rem;
		gap: 0 1.5rem;
	}
}
.cta .btn a::before {
	content: "";
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: url(../img/ico_mail.svg) no-repeat center/contain;
	translate: 0 0.3rem;
}
@media screen and (max-width: 767px) {
	.cta .btn a::before {
		width: 2.6rem;
		height: 2.6rem;
	}
}
.cta .btn a::after {
	content: "";
	width: 1.7rem;
	height: 1.7rem;
	background: url(../img/arw_btn.svg) no-repeat center/contain;
	position: absolute;
	right: 2.9rem;
}
@media screen and (max-width: 767px) {
	.cta .btn a::after {
		width: 2.1rem;
		height: 2.1rem;
		right: 3.9rem;
	}
}

/* fv
--------------------------------*/
#sec_fv {
	padding: 16rem 0 7rem;
	background: url(../img/fv_bg_pc.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
	#sec_fv {
		padding: 16rem 0 6rem;
		background: url(../img/fv_bg_sp.png) no-repeat center bottom/cover;
	}
}
@media screen and (max-width: 767px) {
	#sec_fv .wrap {
		padding: 0 4.8rem;
	}
}
#sec_fv .txt_wrap {
	position: relative;
	width: 63.1rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap {
		width: 100%;
	}
}
#sec_fv .txt_wrap .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .ttl {
		text-align: center;
		font-size: 3.9rem;
		line-height: 1.5384615385;
	}
}
#sec_fv .txt_wrap .ttl .bg {
	display: block;
	color: #fff;
	font-weight: 900;
	font-size: 3.8rem;
	line-height: 1;
	letter-spacing: 0.04em;
	padding: 1.2rem 1rem 0.8rem;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
	margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .ttl .bg {
		font-size: 4rem;
		padding: 1.2rem 1rem 0.9rem;
	}
}
#sec_fv .txt_wrap .ttl .bg .en {
	vertical-align: -0.075em;
	font-weight: 900;
	font-size: 120%;
}
#sec_fv .txt_wrap .fv_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 2rem;
	margin-top: 8.7rem;
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .fv_list {
		width: 42.7rem;
		grid-template-columns: 100%;
		gap: 2.7rem 0;
		margin-top: 4.5rem;
	}
}
#sec_fv .txt_wrap .fv_list .item {
	position: relative;
	padding: 4.5rem 2rem 2.5rem;
	background: linear-gradient(0deg, rgb(242, 242, 242) 0%, rgb(255, 255, 255) 100%);
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .fv_list .item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0 2.3rem;
		height: 13.7rem;
		padding: 1.7rem 2.3rem;
	}
}
#sec_fv .txt_wrap .fv_list .item .ico {
	width: 9rem;
}
@media screen and (min-width: 768px) {
	#sec_fv .txt_wrap .fv_list .item .ico {
		position: absolute;
		left: 0;
		right: 0;
		top: -6.2rem;
		margin: 0 auto;
	}
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .fv_list .item .ico {
		width: 10.3rem;
	}
}
#sec_fv .txt_wrap .fv_list .item .txt {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.25;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
	#sec_fv .txt_wrap .fv_list .item .txt {
		text-align: left;
		font-size: 2.8rem;
		line-height: 1.2857142857;
	}
}
#sec_fv .img {
	width: 60.3rem;
	position: absolute;
	right: -3.5rem;
	bottom: -7rem;
}
@media screen and (max-width: 767px) {
	#sec_fv .img {
		width: 37.5rem;
		right: 0;
		bottom: -6rem;
	}
}

/* subsidy
--------------------------------*/
#sec_subsidy {
	padding: 3rem 0 4rem;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
}
@media screen and (max-width: 767px) {
	#sec_subsidy {
		padding: 6rem 0;
	}
}
#sec_subsidy .sec_ttl {
	font-size: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .sec_ttl {
		font-size: 3.6rem;
	}
}
#sec_subsidy .sec_ttl .bg {
	display: inline-block;
	vertical-align: 0.1em;
	color: #04608E;
	font-size: 2.2rem;
	line-height: 1.6363636364;
	letter-spacing: 0.1em;
	padding: 0 0.4em 0 0.7em;
	background-color: #FFEE88;
	margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .sec_ttl .bg {
		font-size: 2.6rem;
		line-height: 1.6538461538;
	}
}
#sec_subsidy .sec_ttl .fukidashi {
	display: inline-block;
	position: relative;
	font-size: 4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 0 1em;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .sec_ttl .fukidashi {
		font-size: 5rem;
		line-height: 1.28;
		padding: 0 0.75em;
		margin-top: 1.5rem;
	}
}
#sec_subsidy .sec_ttl .fukidashi::before, #sec_subsidy .sec_ttl .fukidashi::after {
	content: "";
	width: 0.3rem;
	height: 125%;
	background-color: #fff;
	position: absolute;
	bottom: -0.2em;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .sec_ttl .fukidashi::before, #sec_subsidy .sec_ttl .fukidashi::after {
		height: 90%;
	}
}
#sec_subsidy .sec_ttl .fukidashi::before {
	rotate: -23deg;
	left: 0;
}
#sec_subsidy .sec_ttl .fukidashi::after {
	rotate: 23deg;
	right: 0;
}
#sec_subsidy .sec_ttl .fukidashi .yellow {
	display: inline-block;
	font-size: 130%;
	letter-spacing: 0.1em;
	padding-top: 0.15em;
	background-image: radial-gradient(0.1em 0.1em at center center, #FFEE88, #FFEE88 100%, transparent, transparent);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: 1.05em 0.25em;
	padding-top: 0.25em;
	margin-top: -0.25em;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .sec_ttl .fukidashi .yellow {
		padding-top: 0.15em;
		margin-top: 0;
	}
}
#sec_subsidy .sec_ttl .fukidashi .small {
	font-size: 80%;
}
#sec_subsidy .box {
	width: 83.8rem;
	display: flex;
	align-items: center;
	gap: 0 3rem;
	padding: 3rem 2rem 3rem 3rem;
	background-color: #fff;
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	margin: 3rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .box {
		width: 100%;
		display: block;
		padding: 4rem 4rem 3rem;
	}
}
#sec_subsidy .box .img {
	width: 30rem;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .box .img {
		width: 100%;
	}
}
#sec_subsidy .box .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_subsidy .box .txt_wrap {
		margin-top: 1.5rem;
	}
}
#sec_subsidy .box .txt_wrap .txt {
	font-weight: 700;
}

/* trouble
--------------------------------*/
#sec_trouble {
	padding: 8rem 0 0;
}
#sec_trouble .sec_ttl {
	font-size: 4.2rem;
	line-height: 1.15;
}
#sec_trouble .sec_ttl .blue {
	font-size: 6rem;
	letter-spacing: 0.1em;
}
#sec_trouble .sec_ttl .underline {
	font-size: 3rem;
	letter-spacing: 0.1em;
	padding: 0 0.25em 0.4em;
	border-bottom: 0.2rem solid #3D464C;
}
#sec_trouble .box {
	position: relative;
	width: 84rem;
	padding: 4rem 4.5rem;
	background-color: #EBF4F7;
	border-radius: 0.7rem;
	margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_trouble .box {
		width: 100%;
		padding: 5rem 2rem 5rem 4rem;
	}
}
#sec_trouble .box::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3.2rem 4.9rem 0 4.9rem;
	border-color: #0C5093 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2.4rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_trouble .box::after {
		border-width: 4.4rem 6.8rem 0 6.8rem;
	}
}
#sec_trouble .box .list li {
	position: relative;
	font-weight: 700;
	line-height: 1.6666666667;
	padding-left: 1.7em;
}
#sec_trouble .box .list li + li {
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_trouble .box .list li + li {
		margin-top: 3rem;
	}
}
#sec_trouble .box .list li::before {
	content: "";
	width: 1em;
	height: 1em;
	background: url(../img/ico_check01.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.45em;
}
@media screen and (max-width: 767px) {
	#sec_trouble .box .list li::before {
		top: 0.3em;
	}
}
#sec_trouble .box .img {
	width: 29.8rem;
	position: absolute;
	right: -1.4rem;
	top: 2.2rem;
}
@media screen and (max-width: 767px) {
	#sec_trouble .box .img {
		width: 22.3rem;
		right: 0;
		top: auto;
		bottom: -3.3rem;
	}
}
#sec_trouble .txt_message {
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_trouble .txt_message {
		margin-top: 5rem;
	}
}
#sec_trouble .txt_message .bg {
	display: inline-block;
	color: #fff;
	font-size: 3.6rem;
	line-height: 1.3888888889;
	letter-spacing: 0.1em;
	padding: 0 0.27em;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
	margin-right: 0.4em;
}

/* solution
--------------------------------*/
#sec_solution {
	padding: 7rem 0 8rem;
	background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(204, 233, 240) 100%);
}
#sec_solution .sec_ttl {
	font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .sec_ttl {
		font-size: 5rem;
	}
}
#sec_solution .sec_ttl .blue {
	font-weight: 900;
	font-size: 5rem;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#sec_solution .sec_ttl .blue {
		font-size: 6rem;
	}
}
#sec_solution .sec_ttl .fukidashi {
	display: inline-block;
	position: relative;
	color: #0C5093;
	font-size: 2.94rem;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 0 0.8em;
}
@media screen and (max-width: 767px) {
	#sec_solution .sec_ttl .fukidashi {
		font-size: 3.6rem;
	}
}
#sec_solution .sec_ttl .fukidashi::before, #sec_solution .sec_ttl .fukidashi::after {
	content: "";
	width: 0.3rem;
	height: 125%;
	background-color: #0C5093;
	position: absolute;
	bottom: -0.2em;
}
#sec_solution .sec_ttl .fukidashi::before {
	rotate: -23deg;
	left: 0;
}
#sec_solution .sec_ttl .fukidashi::after {
	rotate: 23deg;
	right: 0;
}
#sec_solution .inner {
	display: flex;
	align-items: flex-start;
	gap: 0 3.5rem;
	margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .inner {
		display: block;
	}
}
#sec_solution .inner .img {
	width: 61.2rem;
	margin-left: -2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .inner .img {
		width: 100%;
	}
}
#sec_solution .inner .txt_wrap {
	flex: 1;
	margin-top: 1rem;
}
#sec_solution .inner .txt_wrap .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#sec_solution .inner .txt_wrap .ttl {
		font-size: 3.8rem;
	}
}
#sec_solution .inner .txt_wrap .txt {
	margin-top: 1em;
}

/* merit
--------------------------------*/
#sec_merit {
	padding: 8rem 0 7rem;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
}
#sec_merit .sec_ttl .en {
	color: rgba(228, 239, 244, 0.15);
	font-weight: 900;
	font-size: 16.3rem;
	line-height: 1;
	letter-spacing: 0.12em;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	#sec_merit .sec_ttl .en {
		font-size: 16.5rem;
	}
}
#sec_merit .box {
	position: relative;
	width: 68rem;
	padding: 3rem 7.8rem;
	background-color: #fff;
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_merit .box {
		padding: 5rem 4rem;
	}
}
#sec_merit .box .list li {
	position: relative;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	padding: 1.6rem 0 1.6rem 3.6rem;
}
@media screen and (max-width: 767px) {
	#sec_merit .box .list li {
		font-size: 2.4rem;
		padding: 2rem 0 2rem 4.5rem;
	}
}
#sec_merit .box .list li + li {
	border-top: 1px solid #E4EFF4;
}
#sec_merit .box .list li::before {
	content: "";
	width: 1.8rem;
	height: 2.7rem;
	background: url(../img/merit_ico.png) no-repeat center/contain;
	position: absolute;
	left: 0.4rem;
	top: 1.9rem;
}
@media screen and (max-width: 767px) {
	#sec_merit .box .list li::before {
		width: 2.2rem;
		height: 3.3rem;
		top: 2.2rem;
	}
}
#sec_merit .box .img {
	width: 30.8rem;
	position: absolute;
	right: -24rem;
	bottom: -7rem;
}
@media screen and (max-width: 767px) {
	#sec_merit .box .img {
		width: 22rem;
		right: -3rem;
		bottom: -3rem;
	}
}

/* introduction
--------------------------------*/
#sec_introduction {
	padding: 8rem 0 7rem;
	background: url(../img/introduction_bg.png) no-repeat center top/cover;
}
#sec_introduction .box {
	display: flex;
	align-items: center;
	gap: 0 6rem;
	padding: 6rem;
	background-color: #fff;
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	#sec_introduction .box {
		display: block;
		padding: 5rem 4rem;
	}
}
#sec_introduction .box .img {
	position: relative;
	width: 53rem;
	margin-left: -12rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_introduction .box .img {
		width: 100%;
		margin: 0;
	}
}
#sec_introduction .box .img::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgb(204, 233, 240) 0%, rgb(232, 235, 255) 100%);
	position: absolute;
	right: -2rem;
	bottom: -2rem;
	z-index: -1;
}
#sec_introduction .box .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_introduction .box .txt_wrap {
		margin-top: 5rem;
	}
}
#sec_introduction .movie_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_introduction .movie_list {
		width: 54rem;
		grid-template-columns: 100%;
		margin: 6rem auto 0;
	}
}
#sec_introduction .movie_list .item iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
#sec_introduction .txt_message {
	margin-top: 6rem;
}

/* seo
--------------------------------*/
#sec_seo {
	padding: 8rem 0 7rem;
	background: url(../img/seo_bg.png) no-repeat center top/100% auto, linear-gradient(45deg, rgb(204, 233, 240) 0%, rgb(232, 235, 255) 100%);
}
#sec_seo .seo_list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6rem 0;
	margin-top: 7rem;
}
#sec_seo .seo_list .item {
	display: flex;
	align-items: center;
	gap: 0 6rem;
}
@media screen and (max-width: 767px) {
	#sec_seo .seo_list .item {
		display: block;
	}
}
#sec_seo .seo_list .item:nth-child(even) {
	flex-direction: row-reverse;
}
#sec_seo .seo_list .item .img {
	width: 48.7rem;
}
@media screen and (max-width: 767px) {
	#sec_seo .seo_list .item .img {
		width: 100%;
	}
}
#sec_seo .seo_list .item .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_seo .seo_list .item .txt_wrap {
		margin-top: 3rem;
	}
}
#sec_seo .seo_list .item .txt_wrap .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#sec_seo .seo_list .item .txt_wrap .ttl {
		font-size: 3.8rem;
	}
}
#sec_seo .seo_list .item .txt_wrap .txt {
	text-align: justify;
	margin-top: 0.5em;
}
#sec_seo .txt_message {
	margin-top: 7rem;
}

/* support
--------------------------------*/
#sec_support {
	padding: 7rem 0 8rem;
	background-image: repeating-linear-gradient(90deg, rgba(35, 24, 21, 0.06), rgba(35, 24, 21, 0.06) 1px, transparent 1px, transparent 1.8rem), repeating-linear-gradient(0deg, rgba(35, 24, 21, 0.06), rgba(35, 24, 21, 0.06) 1px, #fff 1px, #fff 1.8rem);
	background-size: 1.8rem 1.8rem;
	background-position: center top;
}
#sec_support .box {
	position: relative;
	padding: 6rem 5rem;
	background-color: #F4F4F4;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_support .box {
		padding: 5rem 4rem;
	}
}
#sec_support .box::before, #sec_support .box::after {
	content: "";
	width: 13rem;
	height: 10.5rem;
	background: linear-gradient(45deg, rgb(204, 233, 240) 0%, rgb(232, 235, 255) 100%);
	position: absolute;
	top: 0;
}
#sec_support .box::before {
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	left: 0;
}
#sec_support .box::after {
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	right: 0;
}
#sec_support .box .box_ttl {
	position: relative;
	color: #0C5093;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
	padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_support .box .box_ttl {
		font-size: 3.8rem;
		padding-bottom: 1.3rem;
	}
}
#sec_support .box .box_ttl::after {
	content: "";
	width: 7rem;
	height: 0.2rem;
	background-color: #0C5093;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_support .box .box_ttl::after {
		width: 8.4rem;
	}
}
#sec_support .support_list {
	display: grid;
	grid-template-columns: 100%;
	gap: 4.4rem 0;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list {
		gap: 6rem 0;
	}
}
#sec_support .support_list .item {
	display: flex;
	align-items: center;
	gap: 0 6rem;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item {
		display: block;
	}
}
#sec_support .support_list .item .img {
	width: 48.7rem;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item .img {
		width: 100%;
	}
}
#sec_support .support_list .item .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item .txt_wrap {
		margin-top: 2rem;
	}
}
#sec_support .support_list .item .txt_wrap .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item .txt_wrap .ttl {
		font-size: 3.8rem;
	}
}
#sec_support .support_list .item .txt_wrap .txt {
	text-align: justify;
	margin-top: 0.5em;
}

/* support_detail
--------------------------------*/
#sec_support_detail {
	padding: 8rem 0 7rem;
	background: linear-gradient(0deg, rgb(204, 233, 240) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 767px) {
	#sec_support_detail {
		padding-bottom: 18rem;
	}
}
#sec_support_detail .support_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	#sec_support_detail .support_list {
		grid-template-columns: 100%;
	}
}
#sec_support_detail .support_list .item {
	padding: 3rem 4rem 3.5rem;
	background-color: #fff;
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
#sec_support_detail .support_list .item .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #3D464C;
}
@media screen and (max-width: 767px) {
	#sec_support_detail .support_list .item .ttl {
		font-size: 3.8rem;
	}
}
#sec_support_detail .support_list .item ul {
	margin-top: 2rem;
}
#sec_support_detail .support_list .item ul li {
	position: relative;
	line-height: 1.6666666667;
	padding-left: 1.7em;
}
@media screen and (max-width: 767px) {
	#sec_support_detail .support_list .item ul li {
		letter-spacing: 0.05em;
		padding-left: 1.5em;
	}
}
#sec_support_detail .support_list .item ul li + li {
	margin-top: 1em;
}
#sec_support_detail .support_list .item ul li::before {
	content: "";
	width: 1em;
	height: 1em;
	background: url(../img/ico_check01.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.45em;
}
@media screen and (max-width: 767px) {
	#sec_support_detail .support_list .item ul li::before {
		top: 0.3em;
	}
}
#sec_support_detail .img {
	width: 46.7rem;
	position: absolute;
	right: 3.2rem;
	bottom: -16.6rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_support_detail .img {
		width: 32rem;
		right: -2rem;
		bottom: -24rem;
	}
}

/* plan
--------------------------------*/
#sec_plan {
	padding: 8rem 0 7rem;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
}
#sec_plan .sec_ttl .en {
	color: rgba(228, 239, 244, 0.15);
	font-weight: 900;
	font-size: 16.3rem;
	line-height: 1;
	letter-spacing: 0.12em;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	#sec_plan .sec_ttl .en {
		font-size: 16.5rem;
	}
}
#sec_plan .box {
	position: relative;
	width: 70rem;
	padding: 3rem 7.8rem;
	background-color: #fff;
	border-radius: 0.7rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_plan .box {
		width: 100%;
		padding: 4rem 2rem;
	}
}
#sec_plan .box .list {
	text-align: center;
}
#sec_plan .box .list li {
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 3rem;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	padding-left: 0.8em;
}
@media screen and (max-width: 767px) {
	#sec_plan .box .list li {
		font-size: 3.6rem;
	}
}
#sec_plan .box .list li::before {
	content: "";
	width: 0.6em;
	height: 0.6em;
	background: url(../img/ico_check02.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.63em;
}
#sec_plan .box .list li .price {
	display: flex;
	align-items: flex-end;
	gap: 0 1rem;
}
#sec_plan .box .list li .price dt {
	width: 6.4rem;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	background-color: #0C5093;
	border-radius: 100vh;
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
	#sec_plan .box .list li .price dt {
		font-size: 2.2rem;
		margin-bottom: 0.8rem;
	}
}
#sec_plan .box .list li .price dd {
	color: #0C5093;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	#sec_plan .box .list li .price dd {
		font-size: 3.6rem;
	}
}
#sec_plan .box .list li .price dd .en {
	display: inline-block;
	vertical-align: -0.1em;
	font-size: 150%;
	line-height: 1;
}

/* case
--------------------------------*/
#sec_case {
	padding: 7rem 0 8rem;
	background-image: repeating-linear-gradient(90deg, rgba(35, 24, 21, 0.06), rgba(35, 24, 21, 0.06) 1px, transparent 1px, transparent 1.8rem), repeating-linear-gradient(0deg, rgba(35, 24, 21, 0.06), rgba(35, 24, 21, 0.06) 1px, #fff 1px, #fff 1.8rem);
}
#sec_case .case_list {
	display: grid;
	grid-template-columns: 100%;
	gap: 4rem 0;
	margin-top: 7rem;
}
#sec_case .case_list .item {
	display: flex;
	align-items: flex-start;
	gap: 0 4rem;
	padding: 5rem;
	background-color: #fff;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	border-radius: 0.7rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item {
		display: block;
		padding: 5rem 4rem;
	}
}
#sec_case .case_list .item .img {
	width: 20.7rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .img {
		width: 100%;
	}
}
#sec_case .case_list .item .img img {
	display: block;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .img img {
		width: 28rem;
		margin: 0 auto;
	}
}
#sec_case .case_list .item .img .name {
	text-align: center;
	font-weight: 700;
	line-height: 1.6666666667;
	margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .img .name {
		margin-top: 2rem;
	}
}
#sec_case .case_list .item .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .txt_wrap {
		margin-top: 4rem;
	}
}
#sec_case .case_list .item .txt_wrap .ttl {
	color: #0C5093;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
	margin-top: -1rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .txt_wrap .ttl {
		font-size: 3.8rem;
	}
}
#sec_case .case_list .item .txt_wrap .txt {
	text-align: justify;
	margin-top: 0.5em;
}

/* flow
--------------------------------*/
#sec_flow {
	padding: 8rem 0 7rem;
	background: linear-gradient(45deg, rgb(204, 233, 240) 0%, rgb(232, 235, 255) 100%);
}
#sec_flow .flow_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 4rem;
	margin-top: 7rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list {
		width: 52rem;
		grid-template-columns: 100%;
		gap: 10rem 0;
		margin: 7rem auto 0;
	}
}
#sec_flow .flow_list .item {
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
#sec_flow .flow_list .item + .item::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1.9rem 0 1.9rem 1.6rem;
	border-color: transparent transparent transparent #0C5093;
	position: absolute;
	left: -2.8rem;
	top: calc(50% - 1.9rem);
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list .item + .item::before {
		border-width: 4.4rem 6.8rem 0 6.8rem;
		border-color: #0C5093 transparent transparent transparent;
		left: 0;
		right: 0;
		top: -8rem;
		margin: 0 auto;
	}
}
#sec_flow .flow_list .item .num {
	width: 19.6rem;
	color: #fff;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	padding: 0.8rem 1rem;
	background-color: #0C5093;
	border-radius: 100vh;
	position: absolute;
	left: 0;
	right: 0;
	top: -2rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list .item .num {
		width: 24rem;
		font-size: 3rem;
		padding: 1rem;
		top: -2.5rem;
	}
}
#sec_flow .flow_list .item .txt_wrap {
	padding: 1.3rem 2.4rem 2.2rem;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list .item .txt_wrap {
		padding: 4rem;
	}
}
#sec_flow .flow_list .item .txt_wrap .ttl {
	color: #0C5093;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid #3D464C;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list .item .txt_wrap .ttl {
		font-size: 3rem;
		padding-bottom: 1.5rem;
	}
}
#sec_flow .flow_list .item .txt_wrap .txt {
	text-align: justify;
	line-height: 1.6666666667;
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_flow .flow_list .item .txt_wrap .txt {
		margin-top: 2rem;
	}
}
#sec_flow .flow_list .item .txt_wrap .txt a {
	color: #0C5093;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

/* faq
--------------------------------*/
#sec_faq {
	padding: 8rem 0;
}
#sec_faq .faq_list {
	display: grid;
	grid-template-columns: 100%;
	gap: 4rem 0;
	margin-top: 5rem;
}
#sec_faq .faq_list .item {
	padding: 4rem 5rem 2rem;
	background-color: #F4F4F4;
	border-radius: 0.7rem;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item {
		padding: 4rem 4rem 2rem;
	}
}
#sec_faq .faq_list .item .txt_q {
	position: relative;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
	padding: 0 5rem 2rem;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item .txt_q {
		font-size: 2.8rem;
		padding: 0 4rem 2rem 6rem;
	}
}
#sec_faq .faq_list .item .txt_q::before {
	content: "Q";
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	background-color: #17A4FB;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item .txt_q::before {
		width: 4.6rem;
		height: 4.6rem;
		font-size: 2.8rem;
	}
}
#sec_faq .faq_list .item .txt_q .ico {
	width: 2.3rem;
	height: 2.3rem;
	position: absolute;
	right: 0;
	top: calc(50% - 2.15rem);
}
#sec_faq .faq_list .item .txt_q .ico::before, #sec_faq .faq_list .item .txt_q .ico::after {
	content: "";
	width: 0.2rem;
	height: 100%;
	background-color: #3D464C;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: 0 -50%;
	transition: 0.3s ease;
}
#sec_faq .faq_list .item .txt_q .ico::after {
	transform: rotate(90deg);
}
#sec_faq .faq_list .item .txt_q.is-open .ico::before {
	transform: rotate(90deg);
}
#sec_faq .faq_list .item .txt_a {
	display: none;
	position: relative;
	padding: 2rem 0 1rem 5rem;
	border-top: 1px solid #3D464C;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item .txt_a {
		padding: 3rem 0 1rem 6rem;
	}
}
#sec_faq .faq_list .item .txt_a::before {
	content: "A";
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	background-color: #3D464C;
	position: absolute;
	left: 0;
	top: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_faq .faq_list .item .txt_a::before {
		width: 4.6rem;
		height: 4.6rem;
		font-size: 2.8rem;
		top: 3rem;
	}
}
#sec_faq .faq_list .item .txt_a .txt {
	text-align: justify;
}

/* message
--------------------------------*/
#sec_message {
	padding: 7rem 0;
	background: linear-gradient(45deg, rgb(20, 54, 196) 0%, rgb(29, 207, 189) 100%);
}
@media screen and (max-width: 767px) {
	#sec_message {
		padding: 7rem 0 14rem;
	}
}
#sec_message .sec_ttl .en {
	color: rgba(228, 239, 244, 0.15);
	font-weight: 900;
	font-size: 16.3rem;
	line-height: 1;
	letter-spacing: 0.12em;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	#sec_message .sec_ttl .en {
		font-size: 16.5rem;
		letter-spacing: 0;
	}
}
#sec_message .txt {
	font-weight: 700;
	margin-top: 8rem;
}
#sec_message .img {
	width: 32.4rem;
	position: absolute;
	right: -12rem;
	bottom: -16rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_message .img {
		width: 24rem;
		right: -4rem;
		bottom: -20rem;
	}
}

/* realization
--------------------------------*/
#sec_realization {
	background: linear-gradient(45deg, rgb(204, 233, 240) 0%, rgb(232, 235, 255) 100%);
}
#sec_realization .wrap {
	max-width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding: 0;
}
@media screen and (max-width: 767px) {
	#sec_realization .wrap {
		display: block;
	}
}
#sec_realization .img {
	width: calc(50% - 5.9rem);
	height: 63.4rem;
}
@media screen and (max-width: 767px) {
	#sec_realization .img {
		width: 100%;
		height: 48rem;
	}
}
#sec_realization .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_realization .txt_wrap {
	flex: 1;
	max-width: 60.9rem;
	padding: 5rem 0 5rem 6rem;
}
@media screen and (max-width: 767px) {
	#sec_realization .txt_wrap {
		max-width: 100%;
		padding: 5rem 4rem;
	}
}
#sec_realization .txt_wrap .fukidashi span {
	display: inline-block;
	position: relative;
	font-weight: 700;
	color: #17A4FB;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 0 1em;
}
@media screen and (max-width: 767px) {
	#sec_realization .txt_wrap .fukidashi span {
		font-size: 3rem;
	}
}
#sec_realization .txt_wrap .fukidashi span::before, #sec_realization .txt_wrap .fukidashi span::after {
	content: "";
	width: 0.3rem;
	height: 1em;
	background-color: #17A4FB;
	position: absolute;
	bottom: -0.1em;
}
#sec_realization .txt_wrap .fukidashi span::before {
	rotate: -23deg;
	left: 0;
}
#sec_realization .txt_wrap .fukidashi span::after {
	rotate: 23deg;
	right: 0;
}
#sec_realization .txt_wrap .ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
	margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
	#sec_realization .txt_wrap .ttl {
		font-size: 3.8rem;
	}
}
#sec_realization .txt_wrap .txt {
	margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
	#sec_realization .txt_wrap .txt {
		text-align: left;
	}
}
#sec_realization .txt_wrap .txt .lightblue {
	font-weight: 700;
	font-size: 130%;
	line-height: 1;
}

/* contact
--------------------------------*/
#sec_contact {
	padding: 7rem 0 8rem;
}
#sec_contact .sec_ttl + .txt {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.6666666667;
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	#sec_contact .sec_ttl + .txt {
		font-size: 2.8rem;
	}
}
#sec_contact .form_tb {
	width: 84rem;
	display: grid;
	grid-template-columns: 20rem auto;
	gap: 3rem 2rem;
	margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_contact .form_tb {
		width: 100%;
		display: block;
		margin: 7rem auto 0;
	}
}
#sec_contact .form_tb dt {
	font-weight: 700;
	font-size: 1.8rem;
	padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
	#sec_contact .form_tb dt {
		font-size: 2.5rem;
		padding-top: 0;
		margin-bottom: 1.5rem;
	}
	#sec_contact .form_tb dt:not(:first-child) {
		margin-top: 3rem;
	}
}
#sec_contact .form_tb dt::before {
	width: 5rem;
	display: inline-block;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5625;
	letter-spacing: 0.1em;
	margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
	#sec_contact .form_tb dt::before {
		width: 6.3rem;
		font-size: 2rem;
		padding: 0 0 0.1rem;
		margin-right: 1.6rem;
	}
}
#sec_contact .form_tb dt.required::before {
	content: "必須";
	background-color: #AF2731;
}
#sec_contact .form_tb dt.optional::before {
	content: "任意";
	background-color: #808080;
}
#sec_contact .form_tb input[type=text],
#sec_contact .form_tb input[type=email],
#sec_contact .form_tb input[type=tel],
#sec_contact .form_tb textarea,
#sec_contact .form_tb select {
	width: 100%;
	height: 5rem;
	font-size: 1.6rem;
	padding: 0 1em;
	background-color: #F2F2F2;
}
@media screen and (max-width: 767px) {
	#sec_contact .form_tb input[type=text],
	#sec_contact .form_tb input[type=email],
	#sec_contact .form_tb input[type=tel],
	#sec_contact .form_tb textarea,
	#sec_contact .form_tb select {
		height: auto;
		font-size: 16px !important;
		padding: 0.25em 1em;
	}
}
#sec_contact .form_tb textarea {
	height: 30.4rem;
	resize: vertical;
}
#sec_contact .form_tb .error {
	color: #AF2731;
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	#sec_contact .form_tb .error {
		font-size: 2.3rem;
	}
}
#sec_contact .btn_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_contact .btn_wrap {
		flex-direction: column;
	}
}
#sec_contact .btn_wrap .btn_submit {
	position: relative;
	width: 43.4rem;
	height: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
	background-color: #F78C00;
	border-radius: 100vh;
}
@media screen and (max-width: 767px) {
	#sec_contact .btn_wrap .btn_submit {
		width: 65rem;
		height: 11rem;
		font-size: 2.8rem;
		gap: 0 1.5rem;
	}
}
#sec_contact .btn_wrap .btn_submit::after {
	content: "";
	width: 1.7rem;
	height: 1.7rem;
	background: url(../img/arw_btn.svg) no-repeat center/contain;
	position: absolute;
	right: 3rem;
}
@media screen and (max-width: 767px) {
	#sec_contact .btn_wrap .btn_submit::after {
		width: 2.1rem;
		height: 2.1rem;
		right: 3.9rem;
	}
}
#sec_contact .btn_wrap .btn_back {
	position: relative;
	width: 30rem;
	height: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
	background-color: #3D464C;
	border-radius: 100vh;
}
@media screen and (max-width: 767px) {
	#sec_contact .btn_wrap .btn_back {
		width: 42rem;
		height: 11rem;
		font-size: 2.8rem;
		gap: 0 1.5rem;
	}
}
#sec_contact .btn_wrap .btn_back::after {
	content: "";
	width: 1.7rem;
	height: 1.7rem;
	background: url(../img/arw_btn.svg) no-repeat center/contain;
	position: absolute;
	top: 50%;
	left: 3rem;
	translate: 0 -50%;
	scale: -1 1;
}
@media screen and (max-width: 767px) {
	#sec_contact .btn_wrap .btn_back::after {
		width: 2.1rem;
		height: 2.1rem;
		left: 3.9rem;
	}
}
#sec_contact.confirm, #sec_contact.thanks {
	padding-top: 18rem;
	min-height: calc(100vh - 8rem);
}
@media screen and (max-width: 767px) {
	#sec_contact.confirm, #sec_contact.thanks {
		min-height: calc(100vh - 14.4rem);
	}
}
#sec_contact.confirm .form_tb dt {
	padding-top: 0;
}
#sec_contact.thanks .btn {
	margin-top: 6rem;
}
#sec_contact.thanks .btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 0.8rem;
	width: 50rem;
	height: 7rem;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 1rem 5rem;
	background-color: #F78C00;
	border-radius: 100vh;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	#sec_contact.thanks .btn a {
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
	#sec_contact.thanks .btn a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	#sec_contact.thanks .btn a {
		width: 65rem;
		height: 11rem;
		font-size: 2.8rem;
		gap: 0 1.5rem;
	}
}
#sec_contact.thanks .btn a::after {
	content: "";
	width: 1.7rem;
	height: 1.7rem;
	background: url(../img/arw_btn.svg) no-repeat center/contain;
	position: absolute;
	right: 2.9rem;
}
@media screen and (max-width: 767px) {
	#sec_contact.thanks .btn a::after {
		width: 2.1rem;
		height: 2.1rem;
		right: 3.9rem;
	}
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
	padding: 2rem 0;
	background-color: #3D464C;
}
#footer .wrap {
	max-width: 100%;
	padding: 0 4rem;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	#footer .wrap {
		display: block;
	}
}
#footer .link {
	display: flex;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	#footer .link {
		justify-content: center;
	}
}
#footer .link a {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.2222222222;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#footer .link a {
		font-size: 2.5rem;
		line-height: 2;
	}
}
#footer .copyright {
	color: #fff;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	#footer .copyright {
		text-align: center;
		font-size: 1.8rem;
		margin-top: 1.5em;
	}
}

/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */