@charset "utf-8";
/* CSS Document */

/*申込み用ボタン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.cv{
	background-color: #EFF1F4;
	border-radius: 20px;
	margin: 0 auto;
	text-align: center;
	padding: 60px;
}
.cv .btn {
	display: inline-block;
}
.cv .btn a {
	width: 300px;
    background: #ea6068;
	border: 2px solid #ea6068;
    border-radius: 99em;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 15px 60px 15px 50px;
    color: #fff;
	font-size: 28px;
    font-weight: 700;
	text-decoration: none;
	transition: 0.3s ease-in-out;
	box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
}
.cv .btn a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
.cv .btn a:hover {
	background: #ffa6ab;
	color: #FFF;
	box-shadow: 0 0 0 #cccccc;
  transform: translateY(5px);
}
.cv .btn a:hover:after {
	right: 1.4rem;
}
@media only screen and (max-width: 736px) {
	.cv{
		padding: 18% 3% 19%;
	}
	.cv .btn{
		display: block;
	}
	.cv .btn a:after {
		width: 11px;
		height: 11px;
	}
	.cv .btn a {
		font-size: 1.6em;
		display: inline;
		width: 100%;
		padding: 7% 20% 7% 15%;
	}
}

/*ボタン上の文字*/
.cv_txt{
	color: #ea6068;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 60px;
	margin-top: 60px;
	margin: 0;
	align-items: center; 
	display: flex;
	justify-content: center; 
}
.cv_txt::before,
.cv_txt::after {
	background-color: #ea6068;
	border-radius: 5px;
	content: "";
	height: 3px; 
	width: 21px;
	margin: 0.3em 0 0;
}
.cv_txt::before {
	margin-right: 6px; 
	transform: rotate(60deg); /* 傾ける */
}
.cv_txt::after {
	margin-left: 4px; 
	transform: rotate(-60deg); /* 傾ける */
}
@media only screen and (max-width: 736px) {
	.cv_txt{
		font-size: 16px;
		margin-bottom: 10%;
	}
	.cv_txt::before,
	.cv_txt::after {
		width: 18px;
	}
}

/*お申込み前にご用意ください＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.preparation .item{
	border: 2px solid #eff1f4;
	border-radius: 20px;
	padding: 30px 40px 30px 20px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 736px) {
	.preparation .item {
		padding: 6%;
		flex-wrap: wrap;
	}
	.preparation .item h4{
		display: block;
		width: 100%;
		margin: 0 0 3%;
	}
}
.preparation p{
	margin: 0;
}
.preparation .item .img{
	width: 250px;
	text-align: center;
	align-self: center;
}
.preparation .item .img img{
	width: 170px;
}
@media only screen and (max-width: 736px) {
	.preparation .item .img {
		width: 35%;
	}
	.preparation .item .img img{
		width: 85%;
	}
	.preparation .item .img.mnp img{
		width: 70%;
	}
}
.preparation .txt {
	width: 540px;
}
.preparation .txt h4{
	font-size: 1.3em;
	font-weight: 700;
	margin: 0 0 5px;
}
.preparation .txt .indent{
	text-indent: -1em;
    padding-left: 1em;
}
@media only screen and (max-width: 736px) {
	.preparation .txt {
		width: 63%;
		font-size: 14px;
		line-height: 1.4em;
	}
	.preparation .txt h4{
		text-align: center;
		font-size: 1.2em;
	}
}
@media only screen and (max-width: 736px) {
	.preparation .txt .btn {
		display: block;
	}
	.preparation .txt .btn a {
		font-size: 12px;
		padding: 2% 8% 2% 5%;
		text-align: center;
	}
}

@media only screen and (max-width: 736px) {
	.cv{
		padding: 18% 3% 19%;
	}
	.cv .btn{
		display: block;
	}
	.cv .btn a:after {
		width: 11px;
		height: 11px;
	}
	.cv .btn a {
		font-size: 1.6em;
		display: inline;
		width: 100%;
		padding: 7% 20% 7% 15%;
	}
}


/*三角＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.triangle_bottom{
	background-color: #000;
	width: 50px;
	height: 20px;
	clip-path: polygon(0 0,100% 0, 50% 100%);
	text-align:center;
	margin: 0 auto 10px;
}

/*お申込みに進む＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.applytxt{
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 10px;
	}


/*追従ボタン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.follow_box{
	background-color: #0000003b;
	width: 100%;
    position: fixed;
    z-index: 99;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    height: 80px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.fix-btn a{
	width: 150px;
    background: #ea6068;
    border: 2px solid #ea6068;
    border-radius: 99em;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 15px 60px 15px 50px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
}
.fix-btn a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 10px;
	height: 10px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 736px) {
	.follow_box{
		display:block; 
	}
	.fix-btn a{
		padding: 10px 60px 10px 50px;
		width: 30%;
        display: inline-block;
	}
}