@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* Global styles
-------------------------------*/
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* デバイス定義
-------------------------------*/
.only--pc {
	display: block;
}
br.only--pc,
span.only--pc {
	display: inline;
}
.only--sp {
	display: none;
}

@media (max-width: 520px) {
	.only--pc {
		display: none!important;
	}
	.only--sp {
		display: block;
	}
	br.only--pc,
	span.only--pc {
		display: none;
	}
	br.only--sp {
		display: inline;
	}
}


/* 基本的な骨組み
-------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #232323;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.03em;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	font-family: "Noto Sans JP", sans-serif;
	background: #FFCCCD;
}
body::before {
	position: fixed;
	content: "";
	right: 0;
	bottom: 56px;
	width: 65.4688vw;
	height: 17.0313vw;
	background: url(../img/main__bg.png) no-repeat;
	background-size: contain;
	z-index: -1;
}
.outer__wrapper {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.inner__wrapper {
	position: relative;
	width: 375px;
	margin: 0;
	padding: 0;
}

@media (max-width: 1100px) {
	.outer__wrapper {
		width: 100%;
		padding: 0 30px;
	}
}

@media (max-width: 920px) {
	.outer__wrapper {
		padding: 0;
		justify-content: center;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 14px;
		font-size: 1.4rem;
	}
	body::before {
		content: none;
	}
	.outer__wrapper {
		width: 100%;
	}
	.inner__wrapper {
		width: 100%;
	}
}

/* font text
-------------------------------*/
.text__bold {
	font-weight: 700;
}
.text__underline {
	display: inline-block;
	background: linear-gradient(transparent 60%, #FFE740 40%);
}
.text__corporatecolor {
	color: #D61926;
}



/* aタグ(リンクボタン)の設定
-------------------------------*/
a, a:hover, a::after, a::before {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}


/* 共通パーツ設定
-------------------------------*/
.l-inner {
	width: 335px;
	margin: 0 auto;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 36px;
	padding: 9px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	border-radius: 4px;
	border: 1px solid #b1b1b1;
	background: #fff;
	color: #404040;
}
input[type="text"].isError,
input[type="tel"].isError,
input[type="email"].isError {
	border: 1px solid #FFA6A6;
	background: #FFF4F4;
	color: #D61926;
}
button {
	font-family: "Noto Sans JP", sans-serif;
}

.selectbox {
	width: 100%;
	display: inline-flex;
	align-items: center;
	position: relative;
}
.selectbox::after {
	position: absolute;
	content: '';
	pointer-events: none;
	top: 45%;
	right: 20px;
	transform: translate(50%, -50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-bottom: 1px solid #161B1F;
	border-right: 1px solid #161B1F;
}
.selectbox select {
	appearance: none;
	width: 100%;
	margin: 0 auto;
	padding: 12px 12px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: #232323;
	border-radius: 4px;
	border: 1px solid #B1B1B1;
	background: #fff;
	cursor: pointer;
}
.selectbox select.isError {
	color: #D61926;
	border: 1px solid #FFA6A6;
	background: #FFF4F4;
}

.input__check {
	border: none;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.input__check label {
	position: relative;
	display: flex;
	align-items: center;
	width: 124px;
	height: 38px;
	padding-left: 9px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #000;
	background-color: #fff;
	border: 1px solid #BCBCBC;
	border-radius: 4px;
}
.input__check label:nth-of-type(1),
.input__check label:nth-of-type(2) {
	margin-bottom: 6px;
}
.input__check label span {
	margin-left: 5px;
}
.input__check label:has(:checked) {
	color: #000;
	background-color: #FFF7DF;
	border: 1px solid #FFB321;
}
.input__check label::before {
	content: '';
	width: 16px;
	height: 16px;
	background-color: #fff;
	border: 1px solid #BCBCBC;
	border-radius: 50%
}
.input__check label:has(:checked)::before {
	border: 1px solid #FFB321;
}
.input__check label:has(:checked)::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 17px;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	background-color: #FFB321;
	border:1px solid #FFB321;
	border-radius: 50%;
}
.input__check input {
	display: none;
}

.input__check label.isError  {
	color: #D61926;
	border: 1px solid #FFA6A6;
	background: #FFF4F4;
}
.input__check label.isError::before  {
	border: 1px solid #FFA6A6;
}

.form__box {
	width: 100%;
}
.form__box-a {
	margin-top: -40px;
	z-index: 2;
}
.form__box-b {
	position: relative;
	margin-top: -112px;
	z-index: 2;
}
.step__box {
	display: none;
	width: 100%
}
.step__box .step__box__wrap {
	padding: 20px 40px 40px;
	background: #d61926;
}
.step__box.current {
	display: block;
}
.step__box h2 {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 63px;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: .04em;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: url(../img/form__bg.png) no-repeat;
	background-size: 100% 100%;
}
.step__box .step__box__inner {
	width:100%;
	padding: 20px 0;
	background: #fff;
	border-radius: 12px;
}
.step__box .input__box {
	width:100%;
	padding: 0 20px;
}
.step__box .input__box:not(:first-of-type) {
	margin-top: 6px;
}
.step__box .input__box .zip__wrap {
	display: flex;
	justify-content: space-between;
}
.step__box .step__query {
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0;
}
.step__box .step__query.step__query-left {
	padding: 0 20px;
	text-align: left;
}
.step__box .step__box .step__query.step__query-mbsmall {
	margin-bottom: 6px;
}
.step__box .input__title {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}
.step__box .input__title span.req{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 15px;
	margin-left: 5px;
	font-size: 9px;
	color: #fff;
	background: #D61926;
	border-radius: 10px;
}
.step__box .input__box-select {
	margin: 0 auto;
}

.step__box .inputItem__wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.selectbox.input__year {
	width: 80px;
}
.selectbox.input__month {
	width: 50px;
}
.selectbox.input__day {
	width: 50px;
}
.input__box-birth .selectbox::after {
	content: none;
}
.input__box-birth .label__year,
.input__box-birth .label__month,
.input__box-birth .label__day {
	display: inline-block;
	margin-left: 4px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: #232323;
}
.input__box-birth .label__year,
.input__box-birth .label__month {
	margin-right: 12px;
}


input[type="text"].input-zip {
	width: 155px;
}
button.zip__search {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 33px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	background: #161B1F;
	border-radius: 20px;
	cursor: pointer;
}

.step__box .input__wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.step__box .error__text {
	margin: 5px auto 0;
	padding: 0 20px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.3;
	color: #FF3333;
	text-align: left;
}
.step__box .btn__wrap {
	width: 100%;
	margin: 12px auto 0;
}
.step__box .btn__wrap .next__btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 190px;
	height: 40px;
	margin: 0 auto;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	background: #fff;
	border: none;
	cursor: pointer;
	z-index: 0;
}
.step__box .btn__wrap .next__btn::before,
.step__box .btn__wrap .next__btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
.step__box .btn__wrap .next__btn::before {
	transition: all 0.6s;
	background: linear-gradient(to bottom, #FEC416, #FF6300);
	border-radius: 999px;
	z-index: -1;
}
.step__box .btn__wrap .next__btn::after {
	transition: all 0.6s;
	background: linear-gradient(to bottom, #FF6A17, #FF0C03);
	border-radius: 999px;
	z-index: -2;
}
.step__box .btn__wrap .next__btn:hover::before {
	opacity: 0;
}
.step__box .btn__wrap .next__btn:hover::after {
	transform:scale(1.05,1.05);
}
.step__box .btn__wrap .next__btn span {
	z-index: 2;
}
.step__box .btn__wrap .next__btn span::after {
	position: absolute;
	content: "";
	top: calc( 50% - 1px);
	right: 22px;
	transform: translate(50%, -50%) rotate(-45deg);
	width: 8px;
	height: 8px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	z-index: 2;
	transition: all 0.6s;
}
.step__box .btn__wrap .next__btn:hover span::after {
	right: 16px;
}
.step__box {
	display: none;
}
.step__box.current {
	display: block;
}

.step__box.step__box-pc .step__box__inner {
	padding: 30px 50px;
}
.step__box.step__box-pc .step__query {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 500;
}
.step__box.step__box-pc .step__query.step__query-left {
	padding: 0;
}
.step__box.step__box-pc.step__box-5 .step__query.step__query-left {
	white-space: nowrap;
}
.step__box.step__box-pc .selectbox select {
	padding: 13px 13px;
	font-size: 14px;
}
.step__box.step__box-pc .input__box-select {
	width: 300px;
	margin: 0 auto;
}
.step__box.step__box-pc .input__check label {
	width: 145px;
	height: 42px;
}
.step__box.step__box-pc .input__box {
	padding: 0;
}
.step__box.step__box-pc .btn__wrap {
	margin: 20px auto 0;
}
.step__box.step__box-pc .btn__wrap .next__btn {
	width: 210px;
	height: 50px;
}
.step__box.step__box-pc input[type="text"],
.step__box.step__box-pc input[type="tel"],
.step__box.step__box-pc input[type="email"] {
	height: 42px;
	padding: 14px;
	font-size: 14px;
}
.step__box.step__box-pc .input__title {
	margin-bottom: 5px;
	font-size: 14px;
}
.step__box.step__box-pc .input__title span.req{
	width: 40px;
	height: 16px;
	margin-left: 7px;
	font-size: 10px;
}
.step__box.step__box-pc button.zip__search{
	width: 120px;
	height: 42px;
	font-size: 14px;
	border-radius: 25px;
}
.step__box.step__box-pc .selectbox.input__year {
	width: 85px;
}
.step__box.step__box-pc .selectbox.input__month {
	width: 50px;
}
.step__box.step__box-pc .selectbox.input__day {
	width: 50px;
}
.step__box.step__box-pc .input__box-birth .label__year,
.step__box.step__box-pc .input__box-birth .label__month,
.step__box.step__box-pc .input__box-birth .label__day {
	width: 30px;
	font-size: 14px;
}
.step__box.step__box-pc .error__text {
	padding: 0;
}

.step__box-8 .step__box__inner,
.step__box.step__box-pc.step__box-8 .step__box__inner {
	padding: 20px 10px 0;
	text-align: center;
}
.step__box-8 .step__title {
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
}
.step__box-8 .step__text {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.45;
}
.step__box-8 .step__img {
	width: 105px;
	margin: 0 auto;
}



@media (max-width: 520px) {
	.l-inner {
		width: 89.3333vw;
	}
	input[type="text"],
	input[type="tel"],
	input[type="email"] {
		height: 9.6vw;
		padding: 2.4vw;
		font-size: 3.2vw;
	}
	.selectbox::after {
		right: 5.3333vw;
		width: 2.1333vw;
		height: 2.1333vw;
	}
	.selectbox select {
		padding: 3.2vw;
		font-size: 3.2vw;
	}
	.input__check label {
		width: 33.0667vw;
		height: 10.1333vw;
		padding-left: 2.4vw;
		font-size: 3.7333vw;
	}
	.input__check label:nth-of-type(1),
	.input__check label:nth-of-type(2) {
		margin-bottom: 1.6vw;
	}
	.input__check label span {
		margin-left: 1.3333vw;
	}
	.input__check label::before {
		width: 4.2667vw;
		height: 4.2667vw;
	}
	.input__check label:has(:checked)::after {
		left: 4.5333vw;
		width: 2.4vw;
		height: 2.4vw;
	}
	.form__box-a {
		margin-top: -10.6667vw;
	}
	.form__box-b {
		margin-top: -29.8667vw;
	}
	.step__box .step__box__wrap {
		padding: 5.3333vw 10.6667vw 10.6667vw;
	}
	.step__box h2 {
		height: 16.8vw;
		font-size: 5.8667vw;
	}
	.step__box .step__box__inner {
		padding: 5.3333vw 0;
		border-radius: 3.2vw;
	}
	.step__box .input__box:not(:first-of-type) {
		margin-top: 1.6vw;
	}
	.step__box .step__query {
		margin-bottom: 3.7333vw;
		font-size: 3.7333vw;
	}
	.step__box .step__query.step__query-mbsmall {
		margin-bottom: 1.6vw;
	}
	.step__box .step__query.step__query-left {
		padding: 0 5.3333vw;
	}
	.step__box .input__title {
		margin-bottom: 1.3333vw;
		font-size: 3.2vw;
	}
	.step__box .input__title span.req{
		width: 8vw;
		height: 4vw;
		margin-left: 1.3333vw;
		font-size: 2.4vw;
		border-radius: 2.6667vw;
	}
	.selectbox.input__year {
		width: 21.3333vw;
	}
	.selectbox.input__month {
		width: 13.3333vw;
	}
	.selectbox.input__day {
		width: 13.3333vw;
	}
	.input__box-birth .label__year,
	.input__box-birth .label__month,
	.input__box-birth .label__day {
		font-size: 3.2vw;
	}
	input[type="text"].input-zip {
		width: 41.3333vw;
	}
	button.zip__search {
		width: 24vw;
		height: 8.8vw;
		font-size: 3.2vw;
		border-radius: 5.4vw;
	}
	.step__box .error__text {
		margin: 1.3333vw auto 0;
		padding: 0 5.3333vw;
		font-size: 2.6667vw;
	}
	.step__box .btn__wrap {
		margin: 3.2vw auto 0;
	}
	.step__box .btn__wrap .next__btn {
		width: 50.6667vw;
		height: 10.6667vw;
		font-size: 4.2667vw;
	}
	.step__box .btn__wrap .next__btn span::after {
		right: 5.8667vw;
		width: 2.1333vw;
		height: 2.1333vw;
	}
	.step__box .btn__wrap .next__btn:hover span::after {
		right: 4.2667vw;
	}
}


/*-------------------------------
 header
-------------------------------*/
.headerSec {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 60px;
	margin: 0;
	background: #fff;
	z-index: 999;
}
.headerSec .header__logo {
	width: 207px;
	height: 100%;
}
.headerSec .header__logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.headerSec .header__logo a img {
	width: 165px;
}
.cv__button {
	width: 168px;
	height: 100%;
	background: linear-gradient( to bottom, #FEC417, #FF6802 );
}
.cv__button a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.36;
	color: #fff;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	background: linear-gradient(-45deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.46) 28%, rgba(255,255,255,0) 36%);
	background-size: 400% 100%;
	-webkit-animation: shine 20s infinite;
	animation: shine 20s infinite;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}
.cv__button a::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: -16px;
	width: 45px;
	height: 59px;
	background: url(../img/button__icon-l.png) no-repeat;
	background-size: contain;
}
.cv__button a::after {
	position: absolute;
	content: "";
	top: calc( 50% - 10px );
	right: 10px;
	width: 20px;
	height: 20px;
	background: url(../img/button__icon-r.png) no-repeat;
	background-size: contain;
}

@keyframes shine {
	0% {
		background-position-x: 400%;
	}
	50% {
		background-position-x: 0%;
	}
	100% {
		background-position-x: -400%;
	}
}

@media (max-width: 520px) {
	.headerSec {
		height: 16vw;
	}
	.headerSec .header__logo {
		width: 55.2vw;
	}
	.headerSec .header__logo a img {
		width: 44vw;
	}
	.cv__button {
		width: 44.8vw;
	}
	.cv__button a {
		font-size: 3.7333vw;
	}
	.cv__button a::before {
		left: -4.2667vw;
		width: 12vw;
		height: 15.7333vw;
	}
	.cv__button a::after {
		top: calc( 50% - 2.6667vw );
		right: 2.6667vw;
		width: 5.3333vw;
		height: 5.3333vw;
	}
}



/*-------------------------------
	footer
-------------------------------*/
.footerSec {
	width: 100%;
	padding: 18px 0;
	text-align: center;
	background: #fff;
}
.footerSec .footer__logo {
	margin-bottom: 7px;
}
.footerSec .copyright {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
}

@media (max-width: 520px) {
	.footerSec {
		padding: 4.8vw 0;
	}
	.footerSec .footer__logo {
		margin-bottom: 1.8667vw;
	}
	.footerSec .copyright {
		font-size: 3.2vw;
	}
}



/*-------------------------------
 Side Content
-------------------------------*/
.side__content {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 400px;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.side__inner {
	width: 100%;
	height: auto;
}
.side__img {
	margin-bottom: 38px;
}

@media (max-width: 920px) {
	.side__content {
		display: none;
	}
}



/*-------------------------------
 Main common
-------------------------------*/
.mvSec {}
.mv__box {
	position: relative;
	z-index: -1;
}


/*-------------------------------
 introSec
-------------------------------*/
.introSec .titleBox {
	padding: 30px 0;
	background: #FAEFEE;
}
.introSec .titleBox .l-inner {
	text-align: center;
}
.introSec .titleBox p {
	display: inline-block;
	padding: 0 10px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.55;
	background: #fff;
}
.introSec .worryBox {
	padding: 30px 0 70px;
	background: url(../img/warry__bg.png) no-repeat center bottom #FAEFEE;
	background-size: 100% auto;
}
.introSec .worryBox .worry__title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.worry__list {
	padding: 9px 0 23px 20px;
	background: #fff;
	border-radius: 8px;
}
.worry__list li {
	padding: 15px 0 4px 25px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	background: url(../img/warry__list__bg.png) no-repeat left bottom;
	background-size: 100% auto;
}
.worry__list li .text__corporatecolor {
	font-weight: 700;
}

@media (max-width: 520px) {
	.introSec .titleBox {
		padding: 8vw 0;
	}
	.introSec .titleBox p {
		display: inline-block;
		padding: 0 2.6667vw;
		font-size: 6.4vw;
	}
	.introSec .worryBox {
		padding: 8vw 0 18.6667vw;
	}
	.introSec .worryBox .worry__title {
		margin-bottom: 2.6667vw;
		font-size: 5.3333vw;
	}
	.worry__list {
		padding: 2.4vw 0 6.1333vw 5.3333vw;
		border-radius: 2.1333vw;
	}
	.worry__list li {
		padding: 4vw 0 1.0667vw 6.6667vw;
		font-size: 3.7333vw;
	}
}


/*-------------------------------
 meritSec
-------------------------------*/
.meritSec {
	padding: 15px 0 35px;
	background: #FAEFEE;
}
.meritSec .merit__title {
	margin-bottom: 32px;
	text-align: center;
}
.meritSec .merit__title p {
	display: inline-block;
	padding: 0 10px;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.8;
	background: #fff;
}
.meritSec .merit__item {
	position: relative;
	width: 100%;
	height: 100px;
	padding: 0 16px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	background: #fff;
	border: 3px solid #d61926;
}
.meritSec .merit__item:not(:last-of-type) {
	margin-bottom: 20px;
}
.meritSec .merit__item::after {
	position: absolute;
	content: "";
}
.meritSec .merit__item.merit__item-01::after {
	right: 8px;
	bottom: 16px;
	width: 57px;
	height: 95px;
	background: url(../img/merit__icon-01.png) no-repeat;
	background-size: cover;
}
.meritSec .merit__item.merit__item-02 {
	align-items: flex-end;
}
.meritSec .merit__item.merit__item-02::after {
	left: 11px;
	bottom: 57px;
	width: 79px;
	height: 43px;
	background: url(../img/merit__icon-02.png) no-repeat;
	background-size: cover;
}
.meritSec .merit__item.merit__item-03::after {
	right: 30px;
	bottom: 24px;
	width: 97px;
	height: 80px;
	background: url(../img/merit__icon-03.png) no-repeat;
	background-size: cover;
}
.meritSec .merit__item.merit__item-04 {
	flex-flow: row;
	align-items: center;
	justify-content: flex-start;
}
.meritSec .merit__item.merit__item-04 .merit__item__img {
	width: 74px;
	margin-right: 12px;
}
.meritSec .merit__item.merit__item-05::after {
	right: 22px;
	bottom: 51px;
	width: 89px;
	height: 63px;
	background: url(../img/merit__icon-05.png) no-repeat;
	background-size: cover;
}
.meritSec .merit__item .text__large{
	font-size: 20px;
}

@media (max-width: 520px) {
	.meritSec {
		padding: 4vw 0 9.3333vw;
	}
	.meritSec .merit__title {
		margin-bottom: 8.5333vw;
	}
	.meritSec .merit__title p {
		padding: 0 2.6667vw;
		font-size: 5.3333vw;
	}
	.meritSec .merit__item {
		height: 26.6667vw;
		padding: 0 4.2667vw;
		font-size: 4.2667vw;
	}
	.meritSec .merit__item:not(:last-of-type) {
		margin-bottom: 5.3333vw;
	}
	.meritSec .merit__item.merit__item-01::after {
		right: 2.1333vw;
		bottom: 4.2667vw;
		width: 15.2vw;
		height: 25.3333vw;
	}
	.meritSec .merit__item.merit__item-02::after {
		left: 2.9333vw;
		bottom: 15.2vw;
		width: 21.0667vw;
		height: 11.4667vw;
	}
	.meritSec .merit__item.merit__item-03::after {
		right: 8vw;
		bottom: 6.4vw;
		width: 25.8667vw;
		height: 21.3333vw;
	}
	.meritSec .merit__item.merit__item-04 .merit__item__img {
		width: 19.7333vw;
		margin-right: 3.2vw;
	}
	.meritSec .merit__item.merit__item-05::after {
		right: 5.8667vw;
		bottom: 13.6vw;
		width: 23.7333vw;
		height: 16.8vw;
	}
	.meritSec .merit__item .text__large{
		font-size: 5.3333vw;
	}
}


/*-------------------------------
 caseSec
-------------------------------*/
.caseSec {
	padding: 40px 0;
	background: #E86F71;
}
.caseSec .case__item {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 20px 20px 30px;
	background: #fff;
	border-radius: 8px;
}
.caseSec .case__item:first-of-type {
	margin-bottom: 30px;
}
.caseSec .profile__img {
	width: 138px;
	margin-bottom: 11px;
}
.caseSec .profile__text {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	padding-bottom: 5px;
	border-bottom: 2px solid #d61926;
}
.caseSec .profile__text .profile__name {
	margin-right: 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}
.caseSec .profile__text .profile__name .profile__name-large {
	font-size: 24px;
}
.caseSec .profile__text .profile__age {
	font-size: 14px;
	font-weight: 700;
}
.caseSec .income__previous {
	margin: 14px 0 18px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.caseSec .income__arrow {
	width: 40px;
	height: 17px;
}
.caseSec .income__after {
	display: inline-block;
	margin: 4px 0 20px;
	padding: 0 5px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #d61926;
	background: linear-gradient(transparent 60%, #FFE589 40%);
}
.caseSec .income__after .income__after-large {
	font-size: 37px;
}
.caseSec .case__item__text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}

@media (max-width: 520px) {
	.caseSec {
		padding: 10.6667vw 0;
	}
	.caseSec .case__item {
		padding: 5.3333vw 5.3333vw 8vw;
		border-radius: 2.1333vw;
	}
	.caseSec .case__item:first-of-type {
		margin-bottom: 8vw;
	}
	.caseSec .profile__img {
		width: 36.8vw;
		margin-bottom: 2.9333vw;
	}
	.caseSec .profile__text {
		padding-bottom: 1.3333vw;
	}
	.caseSec .profile__text .profile__name {
		margin-right: 2.1333vw;
		font-size: 5.3333vw;
	}
	.caseSec .profile__text .profile__name .profile__name-large {
		font-size: 6.4vw;
	}
	.caseSec .profile__text .profile__age {
		font-size: 3.7333vw;
	}
	.caseSec .income__previous {
		margin: 3.7333vw 0 4.8vw;
		font-size: 3.7333vw;
	}
	.caseSec .income__arrow {
		width: 10.6667vw;
		height: 4.5333vw;
	}
	.caseSec .income__after {
		margin: 1.0667vw 0 5.3333vw;
		padding: 0 1.3333vw;
		font-size: 6.4vw;
	}
	.caseSec .income__after .income__after-large {
		font-size: 9.8667vw;
	}
	.caseSec .case__item__text {
		font-size: 3.7333vw;
	}
}


/*-------------------------------
 pointSec
-------------------------------*/
.pointSec {
	background: #F8EAEA;
}
.pointSec .titleImg__box {
	margin-top: -58px;
}
.pointSec .point__box {
	position: relative;
	z-index: 1;
}
.pointSec .point__title {
	width: 300px;
	height: 90px;
	margin: -45px auto 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.4;
	color: #d61926;
	text-align: center;
	background: #fff;
	border: 3px solid #d61926;
}
.pointSec .point__list {
	padding-bottom: 66px;
}
.pointSec .point__item {
	padding: 12px 16px 28px 20px;
	background: #fff;
	border-radius: 8px;
}
.pointSec .point__item:not(:last-of-type) {
	margin-bottom: 28px;
}
.pointSec .point__item .point__item__img {
	width: 295px;
	margin-bottom: 12px;
}
.pointSec .point__item h3 {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
}
.pointSec .point__item h3 .text__corporatecolor {
	font-weight: 700;
}
.pointSec .point__item p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: .02em;
}

@media (max-width: 520px) {
	.pointSec .titleImg__box {
		margin-top: -15.4667vw;
	}
	.pointSec .point__title {
		width: 80vw;
		height: 24vw;
		margin: -12vw auto 8vw;
		font-size: 6.4vw;
	}
	.pointSec .point__list {
		padding-bottom: 17.6vw;
	}
	.pointSec .point__item {
		padding: 3.2vw 4.2667vw 7.4667vw 5.3333vw;
		border-radius: 2.1333vw;
	}
	.pointSec .point__item:not(:last-of-type) {
		margin-bottom: 7.4667vw;
	}
	.pointSec .point__item .point__item__img {
		width: 78.6667vw;
		margin-bottom: 3.2vw;
	}
	.pointSec .point__item h3 {
		margin-bottom: 2.1333vw;
		font-size: 4.8vw;
	}
	.pointSec .point__item p {
		font-size: 3.7333vw;
	}
}


/*-------------------------------
 flowSec
-------------------------------*/
.flowSec {
	background: linear-gradient(to bottom, #FBEDD2 52%, #FFD1D2);
}
.flowSec .l-inner {
	position: relative;
	padding: 50px 0 0;
	z-index: 1;
}
.flowSec .flow__title {
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
	width: 335px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.8;
	color: #d61926;
	text-align: center;
	background: #fff;
	border: 3px solid #d61926;
}
.flowSec .flow__list {
	padding-bottom: 23px;
}
.flowSec .flow__item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.flowSec .flow__item.flow__item-01 {
	margin-bottom: 11px;
}
.flowSec .flow__item.flow__item-02 {
	margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-03 {
	margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-04 {
	margin-bottom: 7px;
}
.flowSec .flow__item.flow__item-05 {
	margin-bottom: 7px;
}
.flowSec .flow__item .flow__item__no {
	width: 68px;
	padding-top: 5px;
}
.flowSec .flow__item.flow__item-02 .flow__item__no {
	padding-top: 3px;
}
.flowSec .flow__item .flow__item__body {
	width: 246px;
}
.flowSec .flow__item .flow__item__body h3 {
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}
.flowSec .flow__item .flow__item__body .flow__item__text {
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
	background: #fff;
	border-radius: 8px;
}
.flowSec .flow__under__text {
	margin-bottom: 20px;
	text-align: center;
}
.flowSec .flow__under__text p {
	display: inline-block;
	padding: 0 5px;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.8;
	color: #d61926;
	background: #fff;
	white-space: nowrap;
}

@media (max-width: 520px) {
	.flowSec .l-inner {
		padding: 13.3333vw 0 0;
	}
	.flowSec .flow__title {
		top: -6.1333vw;
		width: 89.3333vw;
		height: 12vw;
		font-size: 5.8667vw;
	}
	.flowSec .flow__list {
		padding-bottom: 6.1333vw;
	}
	.flowSec .flow__item.flow__item-01 {
		margin-bottom: 2.9333vw;
	}
	.flowSec .flow__item.flow__item-02 {
		margin-bottom: 1.8667vw;
	}
	.flowSec .flow__item.flow__item-03 {
		margin-bottom: 1.8667vw;
	}
	.flowSec .flow__item.flow__item-04 {
		margin-bottom: 1.8667vw;
	}
	.flowSec .flow__item.flow__item-05 {
		margin-bottom: 1.8667vw;
	}
	.flowSec .flow__item .flow__item__no {
		width: 18.1333vw;
		padding-top: 1.3333vw;
	}
	.flowSec .flow__item.flow__item-02 .flow__item__no {
		padding-top: 0.8vw;
	}
	.flowSec .flow__item .flow__item__body {
		width: 65.6vw;
	}
	.flowSec .flow__item .flow__item__body h3 {
		margin-bottom: 0.8vw;
		font-size: 4.2667vw;
	}
	.flowSec .flow__item .flow__item__body .flow__item__text {
		padding: 3.2vw 4.2667vw;
		font-size: 3.7333vw;
		border-radius: 2.1333vw;
	}
	.flowSec .flow__under__text {
		margin-bottom: 5.3333vw;
	}
	.flowSec .flow__under__text p {
		padding: 0 1.3333vw;
		font-size: 5.3333vw;
	}
}

