/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
}

@media (min-width: 600px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 480px) {
}

@media (min-width: 481px) and (max-width:767px) {
}

@media (min-width: 768px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
}

/* ---------------------------------------- common */

article h2 {
	color: #FC9913;
	font-weight: 600;
	text-align: center;
	margin: 0 0 2em;
}
article h2 + p { line-height: 2; }
article p a {
	color: #0075C2;
	text-decoration: underline;
}

@media (max-width: 767px) {

	.pc { display: none !important; }
	article h2 {
		font-size: clamp(1.6rem, -0.455rem + 7.27vw, 2rem);
	}

}

@media (min-width: 768px) {

	.sp { display: none !important; }
	article .inner-s {
		max-width: 780px;
	}
	article h2 {
		font-size: clamp(2.4rem, -30.5rem + 66.67vw, 3.2rem);
	}
	article h2 + p {
		text-align: center;
	}
	article a[href^="tel:"] {
		pointer-events: none;
	}
}

/* ---------------------------------------- section */

section {
	line-height: 1.6;
	font-weight: 600;
	margin: 5em 0 0;
}
section h3 {
	font-weight: 600;
	text-align: center;
	margin: 0 0 2em;s
}
section i { color: #FC9913; }

section ul {
	border-top: 1px #FC9913 solid;
}
section ul li {
	border-bottom: 1px #FC9913 solid;
}
section ul li > p { font-weight: 500; }

@media (max-width: 767px) {

	section {
		font-size: clamp(1.3rem, -0.278rem + 5.45vw, 1.6rem);
	}
	section ul li { 
		padding: 1.5em 1em; 
	}
	section ul li > h4 { margin: 0 0 1em; }

}

@media (min-width: 768px) {

	section {
		font-size: clamp(1.3rem, 0.195rem + 1.29vw, 1.6rem);
	}
	section ul li {
		display: flex;
		padding: 1.5em 0;
	}
	section ul li > h4 {
		width: 45%;
	}
	section ul li > p {
		width: 55%;
	}
	section ul li > h4 { padding: 0 2em; }

}
