@charset "utf-8";

/* tags */
body {
	font-weight: 900;
	font-family: 'Noto Sans JP', sans-serif;
}
section {
	margin: 4rem 0;
}
i,
em {
	font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
}
a {
	transition: opacity .25s;
	-webkit-transition: opacity .25s;
	-moz-transition: opacity .25s;
	-ms-transition: opacity .25s;
	-o-transition: opacity .25s;
}
a:hover {
	opacity: .8;
}
.ERR {
	color: #ec1d1e;
	font-size: 12px;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
	section {
		margin: 3.125rem 0;
	}
}

/* header */
.header {
	padding: 1rem 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 10;
}
.header_inner {
	margin: auto;
	padding: 0 2rem;
	max-width: 1024px;
	box-sizing: content-box;
}
.header_logo {
	max-width: 100px;
}

@media screen and (max-width: 768px) {
	.header {
		padding: .625rem 0;
	}
	.header_inner  {
		padding: 0 .625rem;
	}
	.header_logo {
		max-width: 88px;
	}
}

/* main */
.mv {
	padding-top: 68.36px;
}

@media screen and (max-width: 768px) {
	.mv {
		padding-top: 52px;
	}
}

/* mv */
.mv {
	margin: 0;
}
.mv_bg {
	margin: auto;
	max-width: 984px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/mv_bg_pc.png);
}
.mv_flex {
	display: flex;
	align-items: center;
	font-size: 50px;
}
.mv_text {
	color: #fff;
	font-weight: 900;
	line-height: 1.2;
	font-size: 100px;
}
.mv_img {
	margin: auto;
	transform: translateY(3rem);
}

@media screen and (max-width: 1024px) {
	.mv_text {
		font-size: 89px;
	}
}

@media screen and (max-width: 768px) {
	.mv_text {
		font-size: calc(40 / 375 * 100vw);
	}
	.mv_img {
		width: calc(128 / 375 * 100vw);
		transform: translateY(1.5rem);
		-webkit-transform: translateY(1.5rem);
		-moz-transform: translateY(1.5rem);
		-ms-transform: translateY(1.5rem);
		-o-transform: translateY(1.5rem);
}
}

/* note */
.note {
	text-align: center;
}
.note_text {
	font-size: 18px;
	line-height: 1.75;
}
.note_text a {
	display: inline;
	color: #d42134;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.note_text {
		font-size: 14px;
	}
}

/* form */
.area_form {
	padding: 0;
}
.form_bg {
	margin: auto;
	padding: 4rem 0;
	max-width: 984px;
	background-color: #00aef0;
}
.area_form_wrap {
	margin-top: 2rem;
	padding: 2rem;
	background-color: #fff;
}
.area_form_container {
	margin: auto;
	max-width: 470px;
}
.area_form_wrap dl {
	margin-bottom: 1.25rem;
}
.area_form_wrap dt {
	display: flex;
	align-items: center;
	margin-bottom: .5rem;
}
.area_form_wrap i,
.area_form_wrap b {
	margin-left: .5rem;
	padding: .25rem;
	font-size: .57142857em;
	line-height: 1;
	color: #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}
.area_form_wrap i {
	background-color: #e62320;
}
.area_form_wrap b {
  background-color: #707070;
}
.area_form_wrap dd input {
	display: block;
	padding: .75rem .5rem;
	width: 100%;
	font-size: 16px;
	font-weight: 900;
	border-radius: 4px;
	border: solid 1px #ccc;
	background-color: #f8f4f4;
}
.area_form_wrap dd input::placeholder {
	font-weight: 900;
}
.submit {
	position: relative;
	max-width: 350px;
	margin: auto;
}
.submit input {
	-webkit-appearance: none;
	border-style:none;
	display: block;
	padding: 1.5rem;
	font-size: 18px;
	width: 100%;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	border: none;
	box-shadow: 0 4px 0 0 #067fad;
	background-color: #00aef0;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
	transition: opacity .25s, box-shadow .25s, transform .25s;
	-webkit-transition: opacity .25s, box-shadow .25s, transform .25s;
	-moz-transition: opacity .25s, box-shadow .25s, transform .25s;
	-ms-transition: opacity .25s, box-shadow .25s, transform .25s;
	-o-transition: opacity .25s, box-shadow .25s, transform .25s;
}
.submit:hover input {
	opacity: .8;
	box-shadow: 0 0 0 0 #067fad;
	transform: translateY(4px);
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
}
.submit::before {
	position: absolute;
	top: 0;
	left: 1.5rem;
	bottom: 0;
	content: '';
	margin: auto;
	width: 2rem;
	height: 2rem;
	background-image: url(../img/icon_serch.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
	transition: transform .25s;
	-webkit-transition: transform .25s;
	-moz-transition: transform .25s;
	-ms-transition: transform .25s;
	-o-transition: transform .25s;
}
.submit:hover::before {
	transform: translateY(4px);
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
}
input[type="submit"][disabled] {
	opacity: .5;
	cursor: auto;
	box-shadow: none;
	background: #E0E0E0;
}

@media screen and (max-width: 768px) {
	.form_bg {
		padding: 3.125rem 0;
	}
	.area_form_wrap {
		padding: 2rem 1rem 3.125rem;
	}
}
@media screen and (max-width: 320px) {
	.submit input {
		font-size: 16px;
	}
	.submit::before {
		left: .75rem;
		width: 1.5rem;
		height: 1.5rem;
	}
}

/* point */
.point_list_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.point_list_wrap > li {
	width: calc(50% - 1rem);
	border-radius: 20px;
	border: solid 4px #ec1d1e;
	overflow: hidden;

}
.point_list_wrap > li:nth-child(-n+2) {
	margin-bottom: 2rem;
}
.point_head {
	padding: 1rem;
	background-color: #ffebea;
}
.point_head h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	max-width: 180px;
	font-size: 14px;
	padding: 0.4375rem;
	line-height: 1;
	color: #fff;
	background-color: #ec1d1e;
	border-radius: 23px;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	-ms-border-radius: 23px;
	-o-border-radius: 23px;
}
.point_head h3 em {
	font-size: 1.85714286em;
}
.point_head_flex {
	display: flex;
	align-items: center;
	justify-content: center;
}
.point_head_flex p {
	font-size: 28px;
	text-align: center;
	line-height: 1.3;
}
.point_head_flex b {
	font-size: .78571429em;
	font-weight: 900;
}
.point_head_flex em,
.point_head_flex span {
	color: #ec1d1e;
}
.point_head_flex em {
	line-height: 1;
}
.point_head_flex span {
	font-size: .78571429em;
}
.point_head_flex div {
	margin-left: .5rem;
	max-width: 43px;
}
.point_text {
	padding: 1rem;
	font-size: 14px;
	line-height: 1.75;
	text-align: justify;
}
.point_text span {
	font-size: .85714286em;
}
.point_strong_text {
	padding: 0 1rem 1rem;
	text-align: center;
	color: #ec1d1e;
}
.point_strong_text strong {
	position: relative;
	display: inline-block;
	margin-bottom: .5rem;
	font-size: 32px;
	line-height: 1;
	font-weight: 900;
	text-align: center;
}
.point_strong_text strong::before,
.point_strong_text strong::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 2rem;
	background-color: #d9382e;
}
.point_strong_text strong::before {
	left: -.75rem;
	transform: rotate(-22.5deg);
	-webkit-transform: rotate(-22.5deg);
	-moz-transform: rotate(-22.5deg);
	-ms-transform: rotate(-22.5deg);
	-o-transform: rotate(-22.5deg);
}
.point_strong_text strong::after {
	right: -.75rem;
	transform: rotate(22.5deg);
	-webkit-transform: rotate(22.5deg);
	-moz-transform: rotate(22.5deg);
	-ms-transform: rotate(22.5deg);
	-o-transform: rotate(22.5deg);
}
.point_strong_text ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.point_strong_text ul li {
	padding: 0.825rem;
	width: calc(50% - 0.5rem);
	line-height: 1;
	border: 2px #ec1d1e dotted;
	border-radius: 23px;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	-ms-border-radius: 23px;
	-o-border-radius: 23px;
}
.point_strong_text ul li:nth-child(-n+2) {
	margin-bottom: .5rem;
}
.point_plan_text {
	padding: 0 1rem 1rem;
}
.point_plan_text h4 {
	margin-bottom: .75rem;
	font-size: 16px;
	font-weight: 900;
}
.point_plan_text p {
	font-size: 14px;
	line-height: 1.75;
	text-align: justify;
}
.point_plan_text span {
	display: block;
	font-size: 12px;
}
.point_slide {
	margin: 0 1rem 1rem;
	padding: 0.5rem 1rem;
	font-size: 12px;
	border: solid 1px #acacac;
	background-color: #f7f7f7;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.point_slide dt {
	position: relative;
}
.point_slide dt::after {
	content: '';
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 6px;
	background-image: url(../img/icon_point_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform .25s;
	-webkit-transition: transform .25s;
	-moz-transition: transform .25s;
	-ms-transition: transform .25s;
	-o-transition: transform .25s;
}
.point_slide dt.active::after{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.point_slide dd {
	display: none;
	margin-top: .5rem;
	line-height: 1.75;
	text-align: justify;
}
.point_slide li {
	padding-left: 1em;
	text-indent: -1em;
}
.point_slide li:not(:last-child) {
	margin-bottom: .5rem;
}
.point_slide p {
	margin-top: .5rem;
}

@media screen and (max-width: 768px) {
	.point_list_wrap {
		flex-direction: column;
		align-items: center;
	}
	.point_list_wrap > li {
		max-width: 350px;
		width: 100%;
	}
	.point_list_wrap > li:nth-child(-n+2),
	.point_list_wrap > li:not(:last-child) {
		margin-bottom: 1.25rem;
	}
}

/* flow */
.flow_list {
	margin-top: 4rem;
}
.flow_list > li {
	position: relative;
	padding: 2rem 1rem 2rem 3rem;
	border-radius: 20px;
  border: solid 4px #f46f81;
  background-color: #fff;
}
.flow_list > li:not(:last-child) {
	margin-bottom: 4rem;
}
.flow_list > li:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: -3.5rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 2rem 2rem 0 2rem;
	border-color: #f46f81 transparent transparent transparent;
}
.flow_num {
	position: absolute;
	top: -2.25rem;
	left: -2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 4rem;
	height: 4rem;
	color: #ffff;
	background-color: #f46f81;
	border: 2px solid #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.flow_num i {
	margin-bottom: .25rem;
	font-size: 12px;
}
.flow_num span {
	font-size: 20px;
}
.flow_list h3 {
	margin-bottom: 0.625rem;
	color: #f46f81;
	font-size: 16px;
}
.flow_list p {
	font-size: 14px;
}
.flow_list .cta_list {
	margin-top: 2rem;
}
.flow_list .cta_list li {
	width: calc(50% - (0.5rem));
}
.flow_list .cta_list li:nth-child(-n+2) {
	margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
	.flow_list .cta_list {
		font-size: 13px;
	}
	.flow_list .cta_list li:nth-child(-n+2) {
		margin-bottom: calc(0.75rem + 1.25rem);
	}
	.flow_list .cta_list li a::before {
		left: 1rem;
	}
}
@media screen and (max-width: 768px) {
	.flow_list > li {
		margin: auto;
		max-width: 350px;
		padding: 2rem 1rem;
	}
	.flow_list > li:not(:last-child)::after {
		margin: auto;
		left: 0;
		right: 0;
		bottom: -1.5rem;
	}
	.flow_num {
		left: 0;
		right: 0;
		margin: auto;
	}
	.flow_list h3 {
		text-align: center;
	}
	.flow_list .cta_list li {
		width: 100%;
	}
}
@media screen and (max-width: 375px) {
	.flow_list .cta_list {
		font-size: 12px;
	}
	.flow_list .cta_list li a::before {
		left: .5rem;
		width: 18px;
	}
	.flow_list .cta_list li a::after {
		right: .5rem;
	}
}

/* stop */
.stop_list li {
	border-radius: 13px;
	padding: 2rem;
	background-color: #ffebea;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
}
.stop_list li:not(:last-child) {
	margin-bottom: 2rem;
}
.stop_list_a {
	margin: 1.25rem auto 0;
	padding: 0 1rem 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 416px;
	height: 4.375rem;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
}
.stop_list_a i {
	max-width: 22px;
}
.stop_list_a b {
	max-width: 9.7px;
}
.stop_list_a span {
	margin: 0 .5rem;
}
.stop_list h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: solid 2px #000;
}
.stop_list p:not(:last-child) {
	margin-bottom: .25rem;
}

@media screen and (max-width: 768px) {
	.stop_list {
		flex-direction: column;
		margin: auto;
		max-width: 350px;
	}
	.stop_list li {
		padding: 0;
		background-color: unset;
	}
	.stop_list h3 {
		margin-bottom: .625rem;
		padding-bottom: .625rem;
		height: auto;
	}
	.stop_list_a {
		padding: 0 1rem;
		font-size: 13px;
	}
}

/* faq */
.faq h2 {
	font-size: 28px;
	text-align: center;
	color: #f46f81;
}
.faq_img {
	margin: 0.5rem auto 1rem;
	max-width: 100px;
}
.faq_list {
	text-align: justify;
}
.faq_list dt {
	position: relative;
	display: flex;
	align-items: center;
	border: solid 1px #ccc;
	padding: .75rem 1rem;
	border-width: 1px 0 0;
}
.faq_list dt::after {
	content: '';
	position: absolute;
	top: 0;
	right: 1rem;
	bottom: 0;
	margin: auto;
	width: 1rem;
	height: 1rem;
	background-image: url(../img/faq_icon_minus.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.faq_list dt b {
	margin-left: auto;
	width: 1rem;
	transition: opacity .25s;
	-webkit-transition: opacity .25s;
	-moz-transition: opacity .25s;
	-ms-transition: opacity .25s;
	-o-transition: opacity .25s;
}
.faq_list dt.active b {
	opacity: 0;
}
.faq_list dt span,
.faq_list dd p {
	margin-left: 1rem;
}
.faq_list dd {
	display: none;
	padding: .75rem 1rem;
	border: solid 1px #ccc;
	border-width: 1px 0;
	background-color: #ffe8e8;
}
.faq_list .dd_wrap {
	display: flex;
	align-items: center;
}
.faq_list i {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	width: 2rem;
	height: 2rem;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 1;
}
.faq_list dd i {
	align-self: flex-start;
}
.faq_list dt i::after,
.faq_list dd i::after {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: -1;
}
.faq_list dt i::after {
	top: 1.5px;
	left: .5px;
	background-color: #00aef0;
}
.faq_list dd i::after {
	background-color: #ec1d1e;
}

@media screen and (max-width: 768px) {
	.faq_list dt span,
	.faq_list dd p {
		margin-left: .625rem;
		line-height: 1.75rem;
	}
	.faq_list dt span {
		margin-right: .625rem;
	}
	.faq_list dt b {
	flex-shrink: 0;
	}
}

/* footer */
.footer {
	background-color: #f0f1f4;
}
.footer_ul {
	display: flex;
	justify-content: center;
	padding: .5rem 0;
}
.footer_ul li:not(:last-child) {
	margin-right: 2rem;
}
.footer_ul a {
	color: #000;
}
.footer_copy {
	display: block;
	padding: .5rem 0;
	text-align: center;
	color: #fff;
	background-color: #000;
}

@media screen and (max-width: 768px) {
	.footer_ul {
		flex-wrap: wrap;
		font-size: 12px;
	}
	.footer_ul li:not(:last-child) {
		margin-right: .5rem;
	}
}

/* cta */
.cta {
	margin: 0 0 -4rem;
}
.cta_bg {
	margin: auto;
	padding: 4rem 0;
	max-width: 984px;
	background-color: #fff5f6;
}
.cta_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cta_list li {
	width: calc(50% - (.5rem));
}
.cta_list li:nth-child(-n+2) {
	margin-bottom: 1rem;
}
.cta_list li > a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 1rem 0 1.5rem;
	text-align: center;
	height: 4.375rem;
	line-height: 1.2;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
}
.cta_list li a::before,
.cta_list li dt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 1.5rem;
	bottom: 0;
	margin: auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.cta_list li a::after,
.cta_list li dt::after {
	content: '';
	position: absolute;
	top: 0;
	right: 1.5rem;
	bottom: 0;
	margin: auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.cta_list li a p {
	margin-top: .5rem;
	font-size: 10px;
	font-weight: normal;
}
.cta_move {
	color: #fff;
	box-shadow: 0 4px 0 0 #123e6c;
	background-color: #1b61ab;
}
.cta_move::before,
.cta_sp_move dt::before {
	width: 30px;
	height: 20.7px;
	background-image: url(../img/icon_car.png);
}
.cta_move::after,
.cta_sp_move dt::after {
	width: 18px;
	height: 18px;
	background-image: url(../img/icon_plus_bule.png);
}
.cta_sp_move .active::after {
	background-image: url(../img/icon_minus_blue.png);
}
.cta_apply,
.cta_sp_apply dt {
	color: #fff;
	box-shadow: 0 4px 0 0 #c31b21;
	background-color: #e62320;
	z-index: 2;
}
.cta_apply::before,
.cta_sp_apply dt::before {
	 width: 30px;
	height: 26.7px;
	background-image: url(../img/icon_pen.png);
}

.cta_sp_apply .active::after {
	background-image: url(../img/icon_minus_red.png);
}
.cta_apply::after,
.cta_sp_apply dt::after {
	width: 18px;
	height: 18px;
	background-image: url(../img/icon_plus_red.png);
}
.cta_stop,
.cta_other,
.stop_list_a {
	color: #e73330;
	border: solid 2px #e47783;
	background-color: #fff;
	box-shadow: 0 4px 0 0 #b9b9b9;
	z-index: 2;
}
.cta_stop::before {
	width: 22.5px;
	height: 30px;
	background-image: url(../img/icon_paper.png);
}
.cta_other::before {
	width: 30px;
	height: 30px;
	background-image: url(../img/icon_headphone.png);
}
.cta_stop::after,
.cta_other::after {
	width: 9.7px;
	height: 16px;
	background-image: url(../img/icon_arrow_red.png);
}

@media screen and (max-width: 768px) {
	.cta_list {
		flex-direction: column;
		align-items: center;
	}
	.cta_list li {
		max-width: 340px;
		width: 100%;
	}
	.cta_list li:not(:last-child) {
		margin-bottom: 1.25rem;
	}
	.cta_list li:nth-child(-n+2) {
		margin-bottom: calc(0.75rem + 1.25rem);
	}
	.cta_list li > a {
		padding: 0 .5rem;
	}
	.cta_list dt {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-bottom: -.75rem;
		text-align: center;
		height: 4.375rem;
		line-height: 1.2;
		border-radius: 13px;
		-webkit-border-radius: 13px;
		-moz-border-radius: 13px;
		-ms-border-radius: 13px;
		-o-border-radius: 13px;
	}
	.cta_sp_move dt {
		color: #fff;
		box-shadow: 0 4px 0 0 #123e6c;
		background-color: #1b61ab;
		z-index: 2;
	}
	.cta_sp_move dd {
		display: none;
		border: solid 4px #1b61ab;
		border-width: 0 4px 4px;
	}
	.cta_sp_apply dd {
		display: none;
		border: solid 4px #e62320;
		border-width: 0 4px 4px;
	}
}
@media screen and (max-width: 375px) {
	.cta_move {
		font-size: 12px;
	}
}
@media screen and (max-width: 320px) {
	.cta_list li dt::before {
		left: .5rem;
		width: 1.5rem;
	}
	.cta_list li a::before {
		left: .5rem;
		width: 1.25rem;
	}
	.cta_list li dt::after {
		right: .5rem;
	}
	.cta_list li a::after {
		right: .5rem;
	}

}

/* modal */
.modal {
	margin: auto;
	max-width: 700px;
}
.modal_h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 1rem;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
	z-index: 2;
}
.modal_h2 i {
	max-width: 30px;
}
.modal_h2 p {
	margin: 0 .75rem 0 1.25rem;
}
.modal_h3 {
	margin-bottom: .625rem;
	text-align: center;
}
.modal_text {
	padding: 2rem 0;
	background-color: #fff;
}
.modal_item:first-child {
	text-align: center;
}
.modal_item:last-child {
	text-align: justify;
}
.modal_item:not(:last-child) {
	margin-bottom: 1.25rem;
}
.modal_item p {
	font-size: 14px;
}
#modal_close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 1.25rem;
	height: 1.25rem;
}

@media screen and (max-width: 700px) {
	.modal {
		margin: auto 1rem;
	}
	.modal_h2 {
		font-size: 14px;
	}
}

/* modal move */
.modal_move h2 {
	background-color: #1b61ab;
	box-shadow: 0 4px 0 0 #123e6c;
}
.modal_move .modal_text {
	border: solid 4px #1b61ab;
	border-width: 0 4px 4px;
}
.tel,
.form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto .875rem;
	padding: 1rem;
	max-width: 450px;
	box-shadow: 0 4px 0 0 #b9b9b9;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	-o-border-radius: 13px;
}
.modal_move .tel,
.cta_sp_move .tel,
.modal_move .form,
.cta_sp_move .form {
	color: #1b61ab;
	border: solid 2px #4bacea;
}
.modal_move .tel,
.cta_sp_move .tel,
.modal_apply .tel,
.cta_sp_apply .tel {
	margin-top: .625rem;
}
.tel i {
	width: 1.125rem;
}
.form i {
	width: 1.5rem;
}
.tel b,
.form b {
	width: 9.7px;
}

@media screen and (max-width: 768px) {
	.tel.sp_only {
		display: flex;
	}
}

/* modal apply */
.modal_apply .modal_h2 {
	background-color: #e62320;
	box-shadow: 0 4px 0 0 #c31b21;
}
.modal_apply .modal_h2 p em {
	display: block;
}
.modal_apply .modal_h2 p span {
	display: block;
	font-size: .75em;
}
.modal_apply .modal_text {
	border: solid 4px #e62320;
}
.modal_apply .tel,
.cta_sp_apply .tel,
.modal_apply .form,
.cta_sp_apply .form {
	color: #ec1d1e;
	border: solid 2px #e47783;
}

/* modal stop */
.modal_stop .modal_text {
	position: relative;
	border: solid 4px #e47783;
	background-color: #fff5f6;
}
.modal_stop .modal_text .modal_h3 {
	margin-bottom: 1.25rem;
}
.modal_stop .modal_text a {
	position: relative;
	justify-content: center;
	color: #ec1d1e;
	border: solid 2px #e47783;
	background-color: #fff;
}
.modal_stop .modal_text a::after {
	content: '';
	position: absolute;
	top: 0;
	right: .75rem;
	bottom: 0;
	margin: auto;
	width: 9.7px;
	height: 1rem;
	background-image: url(../img/icon_arrow_red.png);
	background-size: contain;
}

/* tel modal */
.tel_modal {
	max-width: 480px;
}
.tel_modal .modal_text {
	position: relative;
	background: #fff;
	border: 4px solid #e71a20;
}
.modal_number_flex {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e71a20;
	font-size: 44px;
	font-weight: bold;
}
.modal_number_flex i {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: .625rem;
	width: 50px;
	height: 50px;
	border: 2px solid #e71a20;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.modal_number_flex i img {
	width: 57%;
}
.modal_number_flex span {
	line-height: 1;
}
.tel_modal .modal_item p {
	margin-top: .75rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.modal_number_flex {
		font-size: 30px;
	}
	.modal_number_flex i {
		width: 2rem;
		height: 2rem;
	}
}

/* modal yet */
.modal_yet {
	border: solid 4px #e47783;
	background-color: #fff5f6;
}
.modal_yet  .modal_text {
	background-color: unset;
}
.modal_yet .tel,
.modal_yet .form {
	margin: .625rem auto;
	color: #ec1d1e;
	border: solid 2px #e47783;
	background-color: #fff;
}

/* common */
.inner {
	margin: auto;
	padding: 0 2rem;
	max-width: 920px;
	box-sizing: content-box;
}
.sp_only {
	display: none;
}
.common_h2 {
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
.common_h2_wide {
	margin: 0 -2rem 2rem;
	padding: 1rem 0;
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	text-align: center;
	background-color: #ec1d1e;
}
.common_a {
	color: #ec1d1e;
	display: inline-block;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.inner {
		padding: 0 1rem;
	}
	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	.common_h2_wide {
		margin: 0 -1rem 2rem;
	}
}