@charset "UTF-8";


/* コラム(共通) */
.column-container {
	position: relative;
	max-inline-size: 1200px;
	margin: 0 auto;
	padding: 4rem 5%;
	background: #f5f5f5;
}

.column-container .text-container {
	font-size: 1.5rem;
}

.column-index {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	inline-size: fit-content;
	padding: .4em 1.5em;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	background: #000;
	border-radius: 50px;
}

.column-title-wrap {
	text-align: center;
}

.column-title {
	display: inline;
	padding: 0 .2em .2em;
	font-size: 1.6rem;
	line-height: 2.4;
	font-weight: 700;
	border-bottom: 2px dotted #000;
}


/* コラム１ */

#column01 {
	margin-top: 8rem;
}

#column01 .img-container {
	inline-size: 90%;
	margin-inline: auto;
}

.column01-grid-container {
	margin-top: 4rem;
}

.column01-grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto auto;
	gap: 40px 30px;
}

.column01-grid-list li {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0;

}

.column01-grid-list h5 {
	font-size: 1.8rem;
	font-weight: bold;
}

.column01-grid-list p {
	margin-top: 1rem;
	font-weight: 400;
}

/* コラム・スライドショー */

.swiper-outer {
	position: relative;
}

#slide06 .swiper {
	margin-top: 4rem;
	background-color: #fff;
}

#slide06 .sensor-image {
	padding: 2rem 5%;
}

#slide06 em {
	display: block;
	margin-top: .6em;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
}

#slide06 .caption-r {
	padding-right: 1em;
	font-size: 1.2rem;
}

/* コラム・スライド前後切替ボタン */

#slide06 .swiper-button-disabled {
	display: none;
}

#slide06 .slider-next,
#slide06 .slider-prev {
	position: absolute;
	top: 45%;
	z-index: 2;
	inline-size: 30px;
	block-size: auto;
	aspect-ratio: 19 / 22;
	background: url('images/arrow-right.svg') no-repeat center center/contain;
	cursor: pointer;
}

#slide06 .slider-prev {
	left: 0;
	right: auto;
	transform: rotate(180deg);
}

#slide06 .slider-next {
	right: 0;
	left: auto;
}

/* コラム・スライドサムネイル */
#slide06 p {
	margin-block: .6em;
	font-size: 1.3rem;
	text-align: center;
}

.slider-thumbs {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.slider-thumbs>li {
	inline-size: calc(90% / 6);
}

.slider-thumbs button {
	min-block-size: unset;
	padding: 0;
	border: solid 2px #f5f5f5;
}

/* コラム・サムネイル・アクティブ時 */
.thumb.active button {
	border: solid 2px #A0A0A0;
	background: none;
}


/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {
	
.caption-r {
	text-align: right;
}


	/* コラム(共通) */

	.column-index {
		font-size: 1.6rem;
		padding: .4em 2.5em;
	}

	.column-container {
		padding: 6rem 5%;
	}

	.column-title {
		font-size: 2rem;
	}

	.column-container .text-container {
		font-size: 1.6rem;
	}

	/* コラム１ */

	#column01 {
		margin-top: 12rem;
	}



	/* コラム・スライドショー */

	#slide06 em {
		font-size: 2rem;
	}

	#slide06 p {
		font-size: 1.4rem;
	}

	/* コラム・スライド前後切替ボタン */
	#slide06 .slider-next,
	#slide06 .slider-prev {
		inline-size: 50px;
	}
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media screen and (width < 768px) {

	#column01 .img-container {
		inline-size: 100%;
	}

	.column01-grid-container {
		margin-top: 2rem;
	}

	.column01-grid-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}


	.column01-grid-list h5 {
		font-size: 1.6rem;
	}

	.column01-grid-list p {
		font-size: 1.4rem;
	}
}