@charset "UTF-8";

h1.ttl-page{
	font-size: 28px;
	color: #323232;
	background: -webkit-linear-gradient(0deg, #323232 0%, #323232 100%) 0% 0% no-repeat padding-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h2.ttl{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 20px;
}
h2.ttl:before{
	content: '';
	display: block;
	width: 6em;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -3em;
	background-color: #ff0033;
	height: 2px;
}
.page-link-btn{
	display: flex;
	gap: 0 20px;
	justify-content: center;
}
.page-link-btn li{
	width: 30%;
}
.page-link-btn li a{
	display: block;
	font-size: 15px;
	font-weight: bold;
	background-color: #ff0033;
	border-radius: 5px;
	color: #fff;
}
.page-link-btn li.btn-kihen a{
	background-color: #0BAAEE;
}
.page-link-btn li a span{
	display: block;
	position: relative;
	padding: 15px 10px 15px 60px;
}
.page-link-btn li a span:after{
	position: absolute;
	content: '';
	display: block;
	width: 7px;
	height: 11px;
	background: url(../images/icon-link.svg) no-repeat top left;
	top: 50%;
	right: 10px;
	margin-top: -5px;
}
.page-link-btn li.btn-sim span:before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	width: 18px;
	height: 23px;
	background: url(../images/icon-sim.svg) no-repeat top left;
	background-size: 18px 23px;
	margin-top: -11px;
}
.page-link-btn li.btn-smartphone span:before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	width: 12px;
	height: 23px;
	background: url(../images/icon-smartphone.svg) no-repeat top left;
	background-size: 12px 23px;
	margin-top: -11px;
}
.page-link-btn li.btn-kihen span:before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	width: 23px;
	height: 24px;
	background: url(../images/icon-kihen.svg) no-repeat top left;
	background-size: 23px 24px;
	margin-top: -12px;
}
.tab-target-item div{
	display: flex;
	max-width: 950px;
	gap: 25px;
	flex-wrap: wrap;
	margin: 0 auto;
}
.tab-target-item div p{
	width: 300px;
	position: relative;
}

.tab-target-item div p:after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	right: -20px;
	margin-top: -20px;
	border-left: 13px solid #D9D9D9;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}
.tab-target-item div p:last-child:after{
	display: none;
}

.tab-target-item div img{
	border-radius: 5px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.btn-guide{
	border: 1px solid #323232;
	border-radius: 100px;
	font-size: 14px;
	font-weight: bold;
	color: #323232;
	text-decoration: none;
	background-color: #fff;
	display: inline-block;
	min-width: 225px;
}
.btn-guide span{
	display: inline-block;
	position: relative;
	padding: 10px 20px 10px 25px;
}
.btn-guide span:before{
	display: block;
	content: '';
	width: 18px;
	height: 22px;
	background: url(../images/icon-guide.svg) no-repeat top left;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -11px;
}

.tab-list-3{
	padding: 0 15px;
}
.tab-list-3 .tab-list-item {
	border-radius: 5px 5px 0 0;
	background-color: #DFE1E9;
	border: 0;
	font-weight: bold;
	color: #7C7E87;
	height: 32px;
	font-size: 14px;
}
.tab-list-3 .tab-list-item.is-active {
	background-color: #ff0033;
	color: #fff;
}
.tab-list-3 .tab-list-item.is-active:after{
	display: none;
}

/* SP */
@media (max-width: 768px) {
	.page-link-btn{
		display: flex;
		gap: 10px 0;
		flex-flow: column;
		margin: 0 20px;
	}
	.page-link-btn li{
		width: 100%;
	}
	.tab-target-item div{
		gap: 40px;
	}
	.tab-target-item div p{
		width: 100%;
		text-align: center;
		padding: 0 15px 0 15px;
	}
	.tab-target-item div p:after{
		transform: rotate(90deg);
		top: auto;
		bottom: -40px;
		left: 50%;
	}
}