/* ---------------------------------------------------------------- 
 * service.css - サービスページ
 * 今後、サービスカテゴリー共通に移行予定
 * 追加日： 2026/07/31
 * ---------------------------------------------------------------- */
@import url("common.css");

/* [layout] */
.serviceWrap header,
.others .head {
	padding: 2.5em 0 1.5em;
}
.serviceWrap header .title,
.others .head .title {
	font-size: 2.2em;
	line-height: 1.4;
}

.compare{
	margin: 4rem 0;
}
.pln_comparison {
	position: relative;
}

/* [link] */
a.plan {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-width: 0;
	padding: 20px;
	border-radius: 3px;
	background-color: #fff;
	box-sizing: border-box;
	isolation: isolate;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 8px rgba(0,0,0,.4);
}
a.plan.pln_comparison {
	gap: 0px 30px;
}
a.plan:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 3px;
	padding: 1px;
	background: linear-gradient(135deg, #C6AE5C 0%, #A88817 95%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.col1Main a.plan:hover,
.col2Main a.plan:hover,
.compare a.plan:hover {
	text-decoration: none;
	opacity: .6;
}

.pln_comparison .more {
	padding: 0 .5em;
	/* line-height: 0; */
	/* vertical-align: middle; */
}
.pln_comparison .more span {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: .5em;
	right: 15px;
	font-size: 1.13em;
	font-weight: bolder;
	/* line-height: 0; */
}
.pln_comparison .more span:before {
	content: '';
	display: block;
	position: absolute;
	width: .8rem;
	height: .8rem;
	bottom: calc( 50% - .4rem );
	right: 1rem;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	transform: rotate(45deg);
	transition: .3s all;
}
.pln_comparison .more span:after {
	content: '';
	display: inline-block;
	/* align-items: center; */
	width: 1.5em;
	height: 1.5em;
	margin-left: .25em;
	background: #0171bc;
	border-radius: 50%;
}

/* [icon] */
.item {
	position: relative;
	padding-left: 2em;
}
.item:before {
	content: '';
	display: block;
	position: absolute;
	width: 2.4rem;
	height: 2.4rem;
	top: calc( 50% - 1.2rem );
	left: 0;
	border-radius: 50%;
	background: #999;
	transition: .3s all;
}
.item:after {
	content: '';
	display: block;
	position: absolute;
	width: .35em;
	height: .7em;
	top: calc( 50% - .8rem );
	left: .45em;
	border-bottom: 2.5px solid #FFF;
	border-right: 2.5px solid #FFF;
	transform: rotate(45deg);
}

.plan_list .item {
	font-family: "Noto Sans JP",sans-serif;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .05em;
	color: #000;
}

/* [text color] */
.svc_normal .plan_list .item:before{ background: #009244; }
.svc_fullsupport .plan_list .item:before{ background: #1b6c99; }
.svc_before .plan_list .item:before{ background: #724f28; }
.svc_after .plan_list .item:before{ background: #4f2866; }

/* [card] */
.svc_normal .plan_head,
.svc_fullsupport .plan_head {
	position: relative;
	padding: 1em 0 1em 4.5em;
	box-sizing: border-box;
}
.svc_normal .plan_head .icon,
.svc_fullsupport .plan_head .icon {
	position: absolute;
	top: .5em;
	left: 0;
	display: block;
	width: 4em;
	height: 4em;
}
.compare .title,
.plan_head .title {
	font-size: 3rem;
	line-height: 1.2;
	margin: .25em 0 .5em;
}
.plan_head .catch {
	margin: 1rem;
	font-size: 1.8rem;
	font-weight: bolder;
}
.others .plan_desc {
	margin: 0;
}

.svc_normal .plan_head .catch {
	color: #009244;
}
.svc_fullsupport .plan_head .catch {
	color: #1b6c99;
}
.svc_before .plan_head .catch {
	color: #724f28;
}
.svc_after .plan_head .catch {
	color: #4f2866;
}

@media screen and (min-width: 1000px) {
	.plan_list .item {
		font-size: 2rem;
	}
}
