/*===============================
MARK: root 
=================================*/
:root {
	--main-color: #293f55;
	--main-key: #ee7801;
	--main-txt: #000;
	--fz10: 0.625rem;
	--fz12: 0.75rem;
	--fz13: 0.8125rem;
	--fz14: 0.875rem;
	--fz16: 1rem;
	--fz17: 1.0625rem;
	--fz18: 1.125rem;
	--fz20: 1.25rem;
	--fz22: 1.375rem;
	--fz24: 1.5rem;
	--fz26: 1.625rem;
	--fz28: 1.75rem;
	--fz30: 1.875rem;
	--fz32: 2rem;
	--fz34: 2.125rem;
	--fz36: 2.25rem;
	--fz38: 2.375rem;
	--fz40: 2.5rem;
}

/*===============================
MARK: common
=================================*/
body {
	position: relative;
	overflow-x: hidden;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
		'游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, メイリオ, Meiryo,
		sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	color: var(--main-txt);
	font-display: swap;
	background-color: #fff;
}

main {
	overflow-x: hidden;
}

a {
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

img {
	display: block;
	max-width: 100%;
}

ul {
	list-style: none;
}

.d-flex {
	display: flex;
	align-items: start;
	justify-content: start;
}

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.pc-content {
	display: block;
}

.indent1em {
	text-indent: -1em;
	margin-left: 1em;
}

.indent2em {
	text-indent: -2em;
	margin-left: 2em;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.c-white,
.c-white * {
	color: #fff;
}

.container {
	margin-inline: auto;
	width: min(100%, 1130px);
	padding-inline: 15px;
}

/*===============================
MARK: ボタン
=================================*/

.btn {
	position: relative;
	display: inline-block;
	line-height: 1.5;
	text-decoration: none;
	padding: 0.7em 1.2em;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	border-radius: 50em;
	background-color: #ee3901;
}

/*===============================
MARK: header
=================================*/
.site-header {
	position: fixed;
	top: 24px;
	left: 0;
	width: 100%;
	z-index: 10;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 50em;
	margin-inline: 30px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
	padding: 10px 16px 10px 46px;
}

.site-logo {
	max-width: 270px;
}

.g-nav {
	width: 45%;
}

.g-nav ul {
	display: flex;
	justify-content: end;
	gap: 15px;
}

.g-nav li {
	width: min(100%, 263px);
}

.g-nav .btn {
	font-size: 19px;
	width: min(100%, 263px);
	padding: 0.7em 1.3em 0.7em 1.3em;
	font-weight: 600;
}

.g-nav li:nth-child(2) .btn {
	background-color: var(--main-key);
}
.g-nav .btn span {
	display: block;
	position: absolute;
	width: 42px;
	height: 44px;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.g-nav li:nth-child(1) .btn span {
	background-image: url(../images/arrow01_r.svg);
}
.g-nav li:nth-child(2) .btn span {
	background-image: url(../images/arrow01_o.svg);
}

/*===============================
MARK: MV
=================================*/

.mv-inner {
	position: relative;
	background-color: #fbf8f5;
	background-image: url(../images/mv_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-block: 140px 70px;
}

.hidden {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -100;
}

.mv-txt {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 1298px;
	padding-inline: 15px;
	margin-inline: auto;
}

.mv-copy {
	width: 52%;
	margin-bottom: 25px;
	position: relative;

}

.mv-lead {
	font-size: 30px;
	font-weight: 700;
	color: var(--main-key);
}

.mv-lead:nth-child(2) {
	margin-top: 5px;
}

.mv-lead span {
	display: inline-block;
	padding: 0.2em 0;
	background-image: linear-gradient(0deg, #ee7801 0.2em, transparent 0.2em);
}

.mv-speech{
	position: absolute;
	width: calc(100% - 400px);
	right: 0;
}


.main-copy {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.main-copy p {
	font-weight: 800;
	font-size: 45px;
	color: var(--main-color);
	letter-spacing: 0.03em;
}

.main-copy p.sub {
	font-size: 40px;
	font-weight: 900;
}

.main-copy p.sub span {
	color: var(--main-key);
	letter-spacing: normal;
}

.mv-copy .about {
	margin-top: 12px;
	font-weight: 600;
	font-size: 25px;
	letter-spacing: 0.025em;
}

.mv-copy .img-wrap {
	border-radius: 10px;
	padding: 3px 11px 3px 6px;
	width: 97%;
}

.mv-copy .img-wrap img {
	width: min(100%, 620px);
}

.mv-image {
	flex: 1;
}

.mv-under {
	background: var(--main-key);
	padding-block: 37px 30px;
}

.mv-under ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 22px;
}

.mv-under .notice {
	margin-top: 10px;
	text-align: right;
	letter-spacing: 0.025em;
	font-weight: 600;
}

/*===============================
MARK: main content
=================================*/

#features {
	padding-block: 200px 85px;
	background-color: #fbf8f5;
}

.section-heading {
	display: flex;
	align-items: start;
	flex-direction: column;
	font-size: clamp(2rem, calc(1.3571428571428572rem + 2.571428571428571vw), 3.125rem);
	color: var(--main-key);
	font-weight: 700;
}

.section-heading span {
	display: inline-block;
	background: var(--main-color);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	padding: 1px 1.5rem 3px;
	font-weight: 500;
}

.section-heading.text-center {
	justify-content: center;
	align-items: center;
}

.worries {
	position: relative;
	margin-top: 30px;
	background: #dee9fa;
	border-radius: 25px;
	padding: 30px 50px 50px;
}

.worries::after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	display: inline-block;
	width: 170px;
	height: 63px;
	background: #dee9fa;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.worries h3 {
	font-size: clamp(1.25rem, calc(0.8214285714285714rem + 1.7142857142857144vw), 2rem);
	color: var(--main-color);
	font-weight: 600;
}

.worries ul {
	display: flex;
	gap: 50px;
	margin-top: 27px;
}

.worries ul li {
	flex: 1;
	background: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.36);
	border-radius: 10px;
	padding: 30px 20px 25px;
	font-size: var(--fz18);
	font-weight: 600;
	color: var(--main-color);
}

.worries ul li .icon {
	border: 3px solid #a0afbf;
	border-radius: 50%;
	padding: 20px;
	width: 165px;
	height: 165px;
	margin-inline: auto;
	margin-bottom: 25px;
}

.worries ul li:nth-child(2) .icon {
	padding-top: 10px;
}

.worries ul li:nth-child(3) p {
	text-indent: -1em;
	padding-left: 1em;
}

.solution {
	display: flex;
	align-items: center;
	margin-top: 63px;
}

.solution-text {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 10px;
}

.solution-text p:nth-child(1) {
	font-weight: 700;
	font-size: var(--fz28);
	color: var(--main-color);
	line-height: 1.6;
}

.solution-text p span {
	color: var(--main-key);
}

.solution-text .logo {
	background: #fff;
	border-radius: 10px;
	padding: 3px 11px 3px 6px;
	width: 97%;
}

.solution-text .logo img {
	width: min(100%, 620px);
}

.solution-text p:nth-child(3) {
	font-weight: 600;
	font-size: var(--fz26);
	line-height: 1.6;
}

.solution-text p:nth-child(4) {
	margin-top: 20px;
}

.solution-image {
	flex: 1;
	width: 50%;
	background-image: radial-gradient(circle, #fff calc(120% / 2), transparent 0);
}

#movie {
	background: #fbf8f5;
	padding-bottom: 60px;
}

#movie .inner {
	background: #fff;
	padding-block: 80px;
}

#movie h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: var(--main-color);
	font-size: var(--fz24);
	font-weight: 600;
	margin-bottom: 13px;
}

#movie .inner a {
	display: block;
	max-width: 750px;
	margin-inline: auto;
}

.cta {
	background: #e3edf9;
	padding-block: 48px;
	text-align: center;
}

.cta .btn {
	text-align: left;
	width: min(100%, 416px);
}

.cta .btn span {
	display: block;
	position: absolute;
	width: 51px;
	height: 54px;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	background: url(../images/arrow01_r.svg) no-repeat;
	background-position: center;
	background-size: contain;
}

#reason-first .heading {
	background: #fbf8f5;
	padding-block: 115px 170px;
}

#reason-first .heading h2 div span {
	font-size: inherit;
	background: var(--main-key);
	border-radius: 5px;
	padding: 1px 6px 8px;
	font-weight: 700;
	margin-right: 5px;
}

.merit-wrap {
	position: relative;
	background: var(--main-key);
	padding-block: 47px 75px;
	margin-bottom: 120px;
}

.merit-wrap img {
	position: absolute;
	left: 50%;
	bottom: 98%;
	transform: translateX(-50%);
	width: 166px;
}

.merit-wrap h2 {
	font-size: 50px;
	font-weight: 900;
	line-height: 1.2;
}

.merit-wrap h2 span {
	display: block;
	font-size: var(--fz28);
	font-weight: 600;
}

.merit-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 25px;
	margin-top: 23px;
}

.merit-list li {
	background-color: #fff;
	border-radius: 15px;
	text-align: center;
}

.merit-list li a {
	position: relative;
	color: var(--main-txt);
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: var(--fz24);
	font-weight: 600;
	line-height: 1.4;
	padding: 10px 20px 30px 20px;
}

.merit-list .num {
	color: var(--main-key);
	font-weight: 700;
	font-size: 75px;
}

.merit-list li a::after {
	content: '';
	display: block;
	width: 55px;
	height: 24px;
	background: #ee7801;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	margin-top: 13px;
}

.reason-item {
	display: flex;
	justify-content: space-between;
	margin-top: 95px;
	padding-bottom: 80px;
	border-bottom: 3px solid var(--main-color);
}

.reason-item:last-child {
	border: none;
}

.reason-item .section-heading {
	font-size: 75px;
	line-height: 1;
}

.reason-item .section-heading span {
	padding: 1px 0.8rem 3px;
}

.reason-read {
	font-size: 35px;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1.6;
	margin-top: 15px;
}

.reason-read span {
	color: var(--main-key);
}

.reason-txt {
	font-size: var(--fz20);
	font-weight: 500;
	line-height: 1.6;
	margin-top: 25px;
}

.reason-detail {
	flex: 1;
	max-width: 750px;
}

.reason-detail.border-top {
	border-top: 2px solid var(--main-color);
}

.coupon {
	display: flex;
	margin-top: 30px;
	gap: 10px;
}

.coupon-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 2fr;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	padding-block: 20px 10px;
}

.sample-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 12px;
	grid-row-gap: 12px;
	margin-top: 25px;
}

.sample-list li {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.sample-list li .sample-ttl {
	color: #fff;
	font-weight: 600;
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	width: 100%;
}

.reason-detail .option {
	background: #fbf8f5;
	border-radius: 10px;
	margin-top: 50px;
	padding: 40px 35px 25px 35px;
}

.option-ttl {
	font-weight: 500;
	font-size: var(--fz28);
}

.option-ttl .badge {
	display: inline-block;
	background: var(--main-key);
	color: #fff;
	font-size: var(--fz24);
	font-weight: 600;
	border-radius: 5px;
	padding: 0 1.5em 1px;
	margin-right: 13px;
}

.option-ttl span span {
	color: var(--main-key);
	font-weight: 700;
}

.option-list {
	margin-top: 23px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
}

.option-list li {
	border-radius: 5px;
	background: #fff;
	padding: 20px 16px 10px 16px;
}

.option-list li img {
	margin-inline: auto;
	height: 130px;
}

.option-list li p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fz18);
	min-height: 5em;
	margin-top: 10px;
}

#reason-first01 .option p.text-center {
	font-weight: 600;
	font-size: var(--fz24);
	margin-top: 15px;
}

#reason-first01 .option p.text-center span {
	color: var(--main-key);
	font-weight: 700;
}

.gift-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 17px;
	grid-row-gap: 13px;
}

.gift-list li {
	border: 2px solid var(--main-key);
	border-radius: 20px;
	font-size: var(--fz24);
	font-weight: 700;
	color: var(--main-color);
	padding: 20px 15px 20px 60px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center left;
}

.gift-list li:nth-child(1) {
	background-image: url(../images/gift_icon01.png);
	background-position: 13px center;
	background-size: 24%;
}
.gift-list li:nth-child(2) {
	background-image: url(../images/gift_icon02.png);
	background-position: 10px center;
	background-size: 24%;
}
.gift-list li:nth-child(3) {
	background-image: url(../images/gift_icon03.png);
	background-position: 6px center;
	background-size: 24%;
}
.gift-list li:nth-child(4) {
	background-image: url(../images/gift_icon04.png);
	background-position: 11px center;
	background-size: 23%;
	padding: 20px 10px 20px 70px;
}
.gift-list li:nth-child(5) {
	background-image: url(../images/gift_icon05.png);
	background-position: 9px center;
	background-size: 24%;
}
.gift-list li:nth-child(6) {
	background-image: url(../images/gift_icon06.png);
	background-position: 9px center;
	background-size: 23%;
}

.gift-list li img {
	width: 23%;
}

#reason-first02 .reason-detail .option {
	margin-top: 23px;
}

#reason-first02 .option {
	display: flex;
	justify-content: space-between;
}

#reason-first02 .option-img {
	margin-bottom: -25px;
	margin-right: 6%;
	width: 41%;
}

#reason-first02 .option-ttl p {
	font-size: var(--fz18);
	margin-top: 10px;
}

#reason-first02 .option-txt .text-l {
	font-size: var(--fz28);
	font-weight: 900;
	line-height: 1.3;
	margin-top: 8px;
	color: var(--main-key);
}

#reason-first02 .notice {
	margin-top: 7px;
	color: #8f8f8f;
}

#reason-first03 .reason-detail > h3 {
	background: var(--main-key);
	color: #fff;
	border-radius: 5px;
	font-size: var(--fz22);
	font-weight: 600;
	padding: 2px 10px 4px;
	margin-bottom: 37px;
}

#reason-first03 .reason-detail .option {
	margin-top: 23px;
}

#reason-first03 .option-ttl p {
	font-weight: 700;
	margin-top: 3px;
}

#reason-first03 .option-list {
	display: flex;
	gap: 14px;
	margin-top: 20px;
}

#reason-first03 .option-list li {
	border-radius: 5px;
	background: #fff;
	padding: 15px 16px 15px 16px;
	font-weight: 600;
}

#reason-first03 .option-list li img {
	margin-inline: auto;
	height: auto;
}

#reason-first03 .option-list li p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fz18);
	min-height: unset;
	margin-top: 10px;
}

#reason-second .merit-wrap {
	margin-top: 155px;
}

#reason-second .merit-wrap img {
	width: 186px;
	bottom: 95%;
}

#reason-second .merit-wrap h2 span {
	font-weight: 800;
	margin-top: 8px;
}

#reason-second .merit-wrap h2 span:nth-child(2) {
	margin-top: 12px;
}

#reason-second .merit-wrap h2 span span {
	display: inline-block;
	background-color: #fff;
	color: var(--main-key);
	border-radius: 10px;
	font-size: var(--fz24);
	padding: 10px 1.8em;
}

#reason-second .merit-list {
	margin-top: 29px;
}

#reason-second .reason-detail h3 {
	background: var(--main-key);
	color: #fff;
	border-radius: 5px;
	font-size: var(--fz22);
	font-weight: 600;
	padding: 2px 10px 4px;
	margin-bottom: 18px;
}

#reason-second01 .reason-detail > p {
	font-size: var(--fz20);
	font-weight: 400;
	line-height: 1.7;
	margin-bottom: 0.9em;
}

#reason-second02 .img-wrap {
	display: flex;
	gap: 38px;
}

#reason-second02 .img-wrap .left p {
	font-size: var(--fz20);
	font-weight: 600;
}

#reason-second02 .img-wrap .right {
	width: 57%;
}

#reason-second #reason-second03 .reason-detail h3 {
	margin-bottom: 37px;
}

#reason-second03 .reason-detail .img-wrap {
	display: flex;
	align-items: start;
	gap: 20px;
}

#reason-second03 .reason-detail .option {
	margin-top: 40px;
}

#reason-second03 .reason-detail .option p {
	font-weight: 400;
	line-height: 1.7;
}

#reason-second #reason-second03 .reason-detail .option {
	padding-top: 25px;
}

#reason-second #reason-second03 .reason-detail .option h3 {
	position: relative;
	background: none;
	color: var(--main-key);
	font-size: 27px;
	padding: 0;
	margin-bottom: 15px;
}

#reason-second #reason-second03 .reason-detail .option h3 span {
	position: relative;
	background: #fbf8f5;
	display: inline-block;
	z-index: 1;
	padding-right: 0.8em;
}

#reason-second #reason-second03 .reason-detail .option h3::after {
	content: '';
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--main-key);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

#voice {
	margin: 123px 30px 0 30px;
	background: #fbf2ea;
	border-radius: 15px;
	padding-block: 87px 115px;
}

.voice-list {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 3%;
	grid-row-gap: 18px;
}

.voice-list li {
	color: var(--main-color);
	background: #fff;
	border-radius: 15px;
	font-size: var(--fz18);
	font-weight: 600;
	padding: 34px 20px 25px 20px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.voice-list li img {
	max-width: 148px;
	margin-inline: auto;
}

.voice-list li p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fz18);
	min-height: 5em;
	margin-top: 10px;
}

#recommend {
	padding-block: 117px 137px;
}

.recommend-list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 25px;
	grid-row-gap: 30px;
}

.recommend-list li {
	overflow: hidden;
	border-radius: 15px;
	border: 3px solid var(--main-color);
	color: var(--main-color);
}

.recommend-list li .img-wrap {
	overflow: hidden;
	aspect-ratio: 347 / 264;
}

.recommend-list li .img-wrap img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.recommend-lead {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: var(--fz24);
	min-height: 4.5em;
	margin-block: 20px;
	padding-inline: 10px;
}

.recommend-list li .inner {
	padding: 0 30px 40px;
}

.recommend-list .indent1em {
	font-weight: 400;
}

#induction {
	position: relative;
	background: var(--main-key);
	padding-block: 50px 60px;
}

#induction::after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	display: block;
	width: 114px;
	height: 44px;
	background: #ee7801;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.point-list li {
	background: #fff;
	color: var(--main-color);
	font-weight: 700;
	margin-bottom: 10px;
	border-radius: 10px;
	border: 4px solid #ee5a01;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
	font-size: var(--fz30);
	max-width: 427px;
	margin-inline: auto;
	padding: 6px 10px;
}

.fukidashi {
	color: #fff;
	font-weight: 600;
	font-size: var(--fz24);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	padding: 12px 16px;
}

.fukidashi::before {
	content: '';
	height: 70px;
	width: 3px;
	border-radius: 50em;
	transform: rotate(-20deg);
	background-color: #fff;
}
.fukidashi::after {
	content: '';
	height: 70px;
	width: 3px;
	border-radius: 50em;
	transform: rotate(20deg);
	background-color: #fff;
}

#induction h3 {
	border-radius: 10px;
	background: #fff;
	color: #ee3901;
	font-size: clamp(1.75rem, calc(1.1428571428571428rem + 2.4285714285714284vw), 2.8125rem);
	font-weight: 800;
	max-width: 750px;
	margin-inline: auto;
	letter-spacing: 0.04em;
	margin-top: 16px;
}

/*===============================
MARK: form
=================================*/
#form {
	padding-block: 85px 90px;
	background: #fbf2ea;
}

#form .form-wrap {
	border-radius: 20px;
	overflow: hidden;
}

#form .inner {
	background: #fff;
	padding: 80px 50px;
}

.formrun-box {
	padding-top: 45px;
}

.form_area label {
	font-size: var(--fz20);
}

.hissu {
	color: #ff2e2e;
}

.form_area .row {
	margin-block: 5px 30px;
}

.form_area input {
	border: 1px solid #cbcbcb;
	border-radius: 5px;
	width: 100%;
	padding: 0.6em 0.8em;
	font-size: var(--fz18);
	font-weight: 400;
}

.form_area input::placeholder {
	color: #d9d9d9;
}

.form_area .error {
	display: inline-block;
	color: #ff2e2e;
	padding-top: 5px;
}

.formrun .btn-wrap {
	text-align: center;
	margin-top: 40px;
}

.formrun .btn-wrap .submit-btn {
	font-size: 20px;
	padding: 1.4em 3em;
	background: var(--main-key);
}

.btn-wrap .btn-back {
	font-size: 20px;
	padding: 1.4em 3em;
	background: var(--main-color);
}

.confirm .lead {
	font-size: var(--fz18);
	font-weight: 700;
	color: #ee3901;
	margin-bottom: 20px;
}

.confirm label {
	font-size: var(--fz20);
}

.confirm .row {
	margin-block: 5px 30px;
}

.confirm .row .col {
	color: #474747;
	font-weight: 400;
}

.confirm .btn-wrap .row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.form-bottom {
	background: #ee3901;
	text-align: center;
	padding-block: 57px;
}

.form-bottom .btn {
	background: #fff;
	color: #ee3901;
	font-size: 19px;
	padding: 0.7em 1.3em 0.7em 1.3em;
	width: min(100%, 288px);
	text-align: left;
}

.form-bottom .btn span {
	background: url(../images/arrow03.svg) no-repeat;
	display: block;
	position: absolute;
	width: 42px;
	height: 44px;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	background-position: center;
	background-size: contain;
}

/*===============================
MARK: footer
=================================*/
.site-footer {
	background: #474747;
	color: #fff;
	font-size: var(--fz18);
	padding-block: 14px;
}

/*===============================
MARK: thanks
=================================*/
.thanks main {
	min-height: 95vh;
	position: relative;
	background-color: #fbf8f5;
	background-image: url(../images/mv_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thanks .inner {
	padding-block: 140px;
}

.thanks .inner .thanks-wrap {
	border-radius: 15px;
	border: 3px solid var(--main-color);
	color: var(--main-color);
	background: #fff;
	padding: 40px;
}

.thanks .section-heading {
	margin-bottom: 15px;
}

.thanks .message {
	margin-top: 20px;
}

.thanks .message h3 {
	margin-bottom: 1em;
}


/*===============================
MARK: 251216 フォーム項目追加
=================================*/
#form  select {
    border: solid 1px #cbcbcb;
    border-radius: 5px;
    padding: 0.9em 0.8em;
	position: relative;
    width: 100%;
}

#form .calendar-triangle {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2px;
}

#form .calendar-triangle::before, #form .calendar-triangle::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 25px;
    width: 2px;
    height: 10px;
    border-radius: 9999px;
    background-color: #000000;
    transform-origin: 50% calc(100% - 1px);
}

#form .calendar-triangle::before {
    transform: rotate(45deg);
}

#form .calendar-triangle::after {
    transform: rotate(-45deg);
}