/* base
------------------------------------------*/
.download * {
	box-sizing: border-box;
	--co-blue: #2985ef;
}

.download sup {
	font-size: .75em;
}

.download .inner {
	width: min(1080px, 90vw);
	padding: min(5em, 12vw) 0;

}

.download .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blue {
	color: var(--co-blue);
}

/* header
------------------------------------------*/
.hd {
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	background-color: #f6f0bd;
}

.hdTitleArea {
	padding: 60px 1.5em 1px;
}

.hdTitleArea .title {
	display: inline-block;
	width: fit-content;
	font-size: min(1.8em, 4.8vw);
	line-height: 1.5;
	text-align: center;
	margin-bottom: 1em;
	padding: 0.75em 5em 0.75em 1.5em;
	font-feature-settings: "palt";
	position: relative;
	z-index: 0;

}

.hdTitleArea .title::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: .3em;
	top: .3em;
	background-color: #fff;
	z-index: -1;
}

.hdTitleArea .title .frame {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: 3px solid;
	clip-path: polygon(0 0, 101% 0, 101% 101%, calc(50% + .7em) 101%, calc(50% + .7em) 95%, calc(50% - .7em) 95%, calc(50% - .7em) 101%, 0 101%);
}

.hdTitleArea .title::after {
	content: '';
	width: 1.25em;
	position: absolute;
	top: calc(100% - 2px);
	right: calc(50% - .7em);
	transform: rotate(-45deg);
	transform-origin: right top;
	border-top: solid 3px var(--co-blue);
}

.hdTitleArea .title .main-table {
	width: 4em;
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-55%);
}

/* img */
.main-img {
	width: min(450px, 78%);
	margin: 0 auto max(-2.5em, -6vw);

}

/* co
------------------------------------------*/
.co .title-wrp {
	margin: 0 auto min(4em, 8vw);
	text-align: center;
}

.co .title-wrp .title {
	width: max-content;
	margin-inline: auto;
	font-size: min(1.7em, 4.8vw);
	line-height: 1.5;
	position: relative;
}

.co .title-wrp .title::before,
.co .title-wrp .title::after {
	content: '';
	display: inline-block;
	width: min(1.5em, 5vw);
	margin: 0 .5em;
	border: solid 1px;
	vertical-align: .4em;
}

.co .title-wrp .lead {
	margin-top: 1.5em;
	line-height: 1.8;
}

.co img {
	width: 100%;
	height: auto;
}

/* intro
------------------------------------------*/
.intro .data-item {
	display: grid;
	grid-auto-flow: column dense;
	grid-template-columns: 60% 1fr;
	grid-template-rows: auto auto;
	gap: 1.5em 2em;
}

@media screen and (max-width:767px) {
	.intro .data-item {
		display: block;
	}
}

.intro .data-item>li {
	padding: 1em 1.5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #f9f9f9;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.intro .data-item .e_power {
	grid-row: span 2;
}

@media screen and (max-width:767px) {
	.intro .data-item .e_power {
		margin-bottom: 1em;
	}
}

.intro .data-item .item-title {
	color: var(--co-blue);
	text-align: center;
	font-size: min(1.15em, 4vw);
	font-weight: bold;
	letter-spacing: .05em;
}

.intro .data-item .e_power .item-title {
	padding: .5em;
}

.intro .data-item .item-title .icon {
	width: 2em;
	display: block;
	margin: 0 auto .75em;
}

.intro .data-item .e_power .item-title .icon {
	margin: 0 auto .5em;
}

.intro .data-item .details .item-title .icon {
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

/* e_power-type */
.intro .e_power-type {
	margin-top: 1em;
	display: flex;
	justify-content: center;
	position: relative;
	gap: 5em;
}

.intro .e_power-type::before,
.intro .e_power-type::after {
	content: '';
	width: 3em;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) rotate(45deg);
	border-top: solid 1px var(--co-blue);
}

.intro .e_power-type::after {
	transform: translateX(-50%) rotate(-45deg);
}

.intro .e_power-type .box {
	width: max(38%, 12em);
	padding: min(1em, 3vw);
	text-align: left;
	display: grid;
	place-items: center;
	border: solid 1px var(--co-blue);
	background-color: #fff;
}

.intro .e_power-type .box ul li {
	padding-left: .7em;
	font-size: min(.95em, 3vw);
	position: relative;
}

.intro .e_power-type .box ul li+li {
	margin-top: .2em;
}

.intro .e_power-type .box ul li::before {
	content: '';
	width: .4em;
	height: .4em;
	position: absolute;
	left: 0;
	top: 50%;
	background-color: currentColor;
	border-radius: 100%;
	transform: translateY(-.25em);
}

.intro .note {
	margin: 1em auto 0;
	text-align: left;
	font-size: min(.8rem, 3.6vw);
	color: #666;
}

@media screen and (max-width:767px) {

	.intro .price,
	.intro .details {
		margin-bottom: 1em;
	}
}

/* utilization
------------------------------------------*/
.utilization-wrp .inner {
	background-color: #f9f9f2;
	counter-reset: title;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.utilization-wrp .utilization {
	width: min(860px, 90%);
	margin: 0 auto;
	text-align: center;
}

.utilization-wrp .utilization+.utilization {
	margin-top: 5em;
}

.utilization-wrp .utilization-title {
	margin-bottom: 1.5em;
	color: var(--co-blue);
	font-size: min(1.3em, 4.4vw);
}

.utilization-wrp .utilization-title::before {
	counter-increment: title;
	content: '0' counter(title);
	display: block;
	margin-bottom: .3em;
	color: #333;
	font-size: 2.5em;
	font-weight: bold;
	line-height: 1;
}

.utilization-wrp .utilization-lead {
	line-height: 1.8;
}

.utilization-wrp figure {
	margin-top: min(3em, 8vw);
}

.utilization-wrp figure img {
	border: solid 1px #ccc;
}

.utilization-wrp figcaption {
	margin-bottom: 1em;
	text-align: left;
	font-size: min(.9em, 3.8vw);
	font-weight: bold;
}

.utilization-wrp figcaption::before {
	content: '';
	display: inline-block;
	width: .8em;
	height: .8em;
	margin-right: .5em;
	background-color: currentColor;
}

/* utilization2 */
.utilization-wrp .utilization2 figure {
	display: grid;
	grid-auto-flow: column dense;
	grid-template-columns: 55% 1fr;
	grid-template-rows: auto auto;
	gap: 2em 3em;
}

.utilization-wrp .utilization2 figure .img {
	position: relative;
}

.utilization-wrp .utilization2 figure .img:last-child {
	grid-row: span 2;
}

.utilization-wrp .utilization2 figure .img:nth-child(1)::after,
.utilization-wrp .utilization2 figure .img:nth-child(2)::after {
	content: '';
	position: absolute;
	background-color: var(--co-blue);
	width: 1.5em;
	height: 1em;
	left: 50%;
	top: 100%;
	transform: translate(-50%, .5em);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width:768px) {
	.utilization-wrp .utilization2 figure .img:nth-child(2)::after {
		width: 1em;
		height: 1.5em;
		left: 100%;
		top: 50%;
		transform: translate(1em, -50%);
		clip-path: polygon(0 0, 100% 50%, 0 100%);
	}
}

@media screen and (max-width:767px) {
	.utilization-wrp .utilization2 figure {
		display: flex;
		flex-wrap: wrap;
	}

}

/* btn
------------------------------------------*/
.btn-wrp {
	margin-top: min(5em, 8vw);
}

.btn-wrp .blueBtn {
	font-size: min(1.3em, 4vw);
}

@media screen and (max-width:767px) {
	.btn-wrp .blueBtn {
		width: 90%;
	}
}