@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */
body {
	min-width: 320px;
}

article .pc,
article .sp {
	display: unset;
}

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	width: 100%;
}

/* サブセクション */
.sub-title {
	font-weight: bold;
	background-color: #E2EEF4;
	color: #0074A5;
}

.sub-header {
	padding: 0 0 0 .5em;
}

.sub-sub-title {
	font-weight: bold;
}

.ttl-square {
	margin-bottom: 1em;
	padding-left: 1.5em;
	font-weight: bold;
	position: relative;
}

.ttl-square::before {
	content: '■';
	color: #0074A5;
	position: absolute;
	left: 0;
	top: 0;
}

.ttl-lbdr {
	margin-bottom: 1em;
	padding: 0 0 0 .8em;
	border-left: solid 5px #0074A5;
}

/* 対応機種 */
.taioukishu {
	background-color: #F4F4F4;
	word-break: break-all;
}

.taioukishu .ttl-lbdr {
	font-weight: bold;
}

/* アローボタン */
.btn-arrow a {
	display: inline-block;
	padding: .6em 2em;
	line-height: 1.4;
	font-weight: bold;
	background-color: #0074A5;
	color: #fff;
	text-align: center;
	text-decoration: none;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.btn-arrow.small a {
	padding: .5em 1em;
}

.btn-arrow a::after {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(/products/common/images/chevron-right-solid-w.svg);
	background-repeat: no-repeat;
	background-position: right .8em center;
	background-size: .8em auto;
	position: absolute;
	top: 0;
	left: 0;
}

.btn-arrow a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #F6AB00;
	transition: all .2s linear;
}

.btn-arrow a.hovering {}

/* アローボタン */
.btn-arrow-chevron {
	text-align: center;
}

.btn-arrow-chevron a {
	display: block;
	font-weight: bold;
	line-height: 1.4;
	background-repeat: no-repeat;
	text-decoration: none;
	padding: 0.8em 1.5em;
	padding-right: 2.5em;
	background-image: url(/products/common/images/chevron-right-solid.svg);
	background-position: right 0.8em center;
	background-size: 1em auto;
	border-radius: 10px;
	border: solid 3px #0074A5;
	box-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}

.btn-arrow-chevron.senyou a {
	background-color: #E0F5FF;
}

/* 3カラム */
.flex-container.col3 .flex-item {
	border: solid 1px #707070;
	box-shadow: 5px 5px 0px #D9D9D9;
}


/* ====================================
	1023px以下専用スタイル
===================================== */
@media only screen and (max-width: 1023px) {
	article {
		padding-bottom: 4rem;
		font-size: 1.4rem;
	}

	article .pc {
		display: none;
	}

	.pc-large {
		display: none;
	}

	.pc-small {
		display: none;
	}

	article .base-width-sp,
	article .base-width {
		padding-left: 5%;
		padding-right: 5%;
	}

	article .outer-base-width {
		padding-left: 0;
		padding-right: 0;
	}

	.font-viewport-sp {
		font-size: 2.667vw;
	}

	.sp-ma {
		margin-left: auto;
		margin-right: auto;
	}

	.sp-maxw320 {
		max-width: 320px;
	}

	.sp-maxw480 {
		max-width: 480px;
	}

	.sp-maxw540 {
		max-width: 540px;
	}

	.sp-maxw768 {
		max-width: 768px;
	}

	.mts {
		margin-top: 3rem;
	}

	.mtm {
		margin-top: 5rem;
	}

	.btn-arrow-chevron {
		max-width: 480px;
		padding: 0 5%;
	}

	/* サブセクション */
	.sub-section {
		padding-bottom: 50px;
	}

	.sub-title {
		margin-bottom: 30px;
		padding: .7em;
		font-size: 1.8rem;
		text-align: center;
	}

	.sub-text {
		margin-bottom: 40px;
	}

	.sub-header {
		margin-bottom: 20px;
		border-left: solid 7px #0074A5;
	}

	.sub-sub-title {
		margin-top: 40px;
		font-size: 1.7rem;
	}

	.sub-sub-title.mt0 {
		margin-top: 0;
	}

	.ttl-square {
		font-size: 1.5rem;
	}

	.img-container {
		margin-top: 20px;
	}

	/* 3カラム */
	.flex-container.col3 {
		margin-top: 30px;
		padding: 0 5%;
	}

	.flex-container.col3 .flex-item {
		padding: 5%;
	}

	.flex-container.col3 .text {
		margin-bottom: 20px;
	}

	.flex-container.col3 .img {
		padding: 0 5%;
		margin-bottom: 20px;
	}

	.btn-arrow {
		text-align: center;
	}

	/* 対応機種 */
	.taioukishu .ttl-lbdr {
		font-size: 1.5rem;
	}

	/* 個別スタイル */
	#sub01 {
		margin-top: 40px;
	}
}

/* ====================================
	768px以上1023px以下専用スタイル
===================================== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

	.sp-small {
		display: none;
	}

	/* 対応機種 */
	.taioukishu {
		padding: 30px 5%;
	}

	/* 3カラム */
	.flex-container.col3 {
		justify-content: space-between;
	}

	.flex-container.col3 .flex-item {
		width: 48%;
	}

	.flex-container.col3 .flex-item:not(:nth-child(-n+2)) {
		margin-top: 30px;
	}
}


/* ====================================
	767px以下専用スタイル
===================================== */
@media only screen and (max-width: 767px) {

	/* 対応機種 */
	.taioukishu {
		padding: 5%;
	}

	/* 3カラム */
	.flex-container.col3 .flex-item:not(:first-child) {
		margin-top: 20px;
	}
}

/* ====================================
	1024px以上印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) {
	article {
		padding-bottom: 6rem;
	}

	.sp-small {
		display: none;
	}

	.sp-large {
		display: none;
	}

	.pc-ma {
		margin-left: auto;
		margin-right: auto;
	}

	.pc-maxw450 {
		max-width: 450px;
	}

	.pc-maxw520 {
		max-width: 520px;
	}

	.pc-maxw700 {
		max-width: 700px;
	}

	.pc-maxw750 {
		max-width: 750px;
	}

	.pc-maxw800 {
		max-width: 800px;
	}

	.pc-maxw850 {
		max-width: 850px;
	}

	.pc-maxw900 {
		max-width: 900px;
	}

	.pc-maxw960 {
		max-width: 960px;
	}

	.pc-maxw1024 {
		max-width: 1024px;
	}

	.mts {
		margin-top: 4rem;
	}

	.mtm {
		margin-top: 8rem;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.half {
		justify-content: space-between;
	}

	.flex-container.half>.flex-item {
		width: 48%;
	}

	/* 画像下揃え */
	.fix-bottom-img .flex-item {
		display: flex;
		flex-direction: column;
	}

	.fix-bottom-img .img-container {
		min-height: 0%;
		/* IE対応 */
		width: 100%;
		margin-top: auto;
		padding-top: 2rem;
	}

	/* サブセクション */
	.sub-section {
		padding: 60px 0 40px;
	}

	.sub-title {
		max-width: 1200px;
		margin: 0 auto 50px;
		padding: .7em;
		font-size: 2.4rem;
		text-align: center;
	}

	.sub-text {
		margin-bottom: 50px;
		text-align: center;
	}

	.sub-header {
		margin-bottom: 30px;
		border-left: solid 10px #0074A5;
	}

	.sub-sub-title {
		margin-top: 60px;
		font-size: 2rem;
	}

	.sub-sub-title.mt0 {
		margin-top: 0;
	}

	/* 3カラム */
	.flex-container.col3 .flex-item {
		width: 31.66%;
		padding: 30px 2.5% 30px;
	}

	.flex-container.col3 .flex-item:not(:nth-child(3n-2)) {
		margin-left: 2.5%;
	}

	.flex-container.col3 .flex-item:not(:nth-child(-n+3)) {
		margin-top: 30px;
	}

	.flex-container.col3 .text {
		margin-bottom: 20px;
	}

	.flex-container.col3 .img {
		padding: 0 5%;
		margin-bottom: 20px;
	}

	.btn-arrow {
		font-size: 1.5rem;
		text-align: center;
	}

	/* 対応機種 */
	.taioukishu {
		padding: 30px;
	}

	.taioukishu .ttl-lbdr {
		font-size: 1.8rem;
	}

	/* 個別スタイル */
	#sub04 .img-container {
		padding: 0 10%;
	}

}

/* ====================================
	1024px以上1199px以下専用スタイル
===================================== */
@media print,
screen and (min-width: 1024px) and (max-width: 1199px) {}