@charset "UTF-8";

/* ====================================
	共通スタイル
 ==================================== */

article {
	padding-top: 3.2rem;
}

/* セクション設定 */
.sub-section {
	--section-gap: 6rem;
	padding-top: var(--section-gap);
}

.category__wrap>.sub-section:nth-child(1 of section) {
	padding-top: 4rem;
}

.sub-section__border {
	border-top: none;
	border-bottom: 1px solid var(--light-gray);
	padding-bottom: var(--section-gap);
}

/* セクション見出し */
.sub-section__title {
	font-size: 2rem;
	font-weight: 700;
}

/* サブセクション設定 */
.sub-section__wrap--column2 {
	display: grid;
	--sub-sub-section-gap: 5rem;
	gap: var(--sub-sub-section-gap) 6%;
	margin-top: var(--sub-sub-section-gap);
}

.sub-section__wrap--column2 .sub-section {
	padding-top: 0;
}

/* サブセクション見出し */
.sub-section__sub-title {
	font-size: 1.8rem;
	font-weight: 700;
}

/* コラム */
.column__container {
	background: #fff;
	margin-top: var(--margin-medium);
}

.page-title {
	font-size: 2.4rem;
	font-weight: 700;
}

/* サブセクション */

/* 汎用テキストボックスのマージン設定 */
.text__container {
	margin-top: var(--margin-small);
}

/* 汎用画像ボックスのマージン設定 */
.img__container {
	margin-top: var(--margin-small);
}

/* カテゴリスキップリンク */
.category-navi {
	background-color: #000;
	margin-top: 2rem;
}

.category-navi__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 3em;
	font-size: 1.4rem;
	padding-block: .8em;
}

.category-navi__list>li>a {
	font-weight: 500;
	color: #fff;
	padding-right: 1.5em;
	background: url('/assets/common/images/chevron-down-solid-w.svg') no-repeat right center/auto 0.7lh;
	/* position: relative; */
}

/* .category-navi__list>li>a::after {
	content: '';
	inline-size: 1em;
	block-size: 1em;
	background: url('/assets/common/images/chevron-down-solid-w.svg') no-repeat center center/contain;
	position: absolute;
	right: 0;
	top: .35em;
} */

/* カテゴリタイトル */
.category {
	padding-top: 6rem;
}

.category-title-wrapper {
	padding-top: 6rem;
}


.category__title {
	display: flex;
	align-items: center;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
}

.category__title span {
	font-size: 1.4rem;
	font-weight: 500;
	margin-left: .8em;
}

/* スライダー */
.swiper-caption {
	font-size: 1.2rem;
	font-weight: 400;
	margin-block: .5em 1.1em;
}

.swiper-outer {
	margin-top: 4rem;
}

.swiper-controller {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}

.btn-swiper-next,
.btn-swiper-prev {
	inline-size: 25px;
	block-size: 20px;
	background: no-repeat center center / contain;
}

.btn-swiper-next {
	background-image: url('../images/swiper-slide-arrow.svg');
}

.btn-swiper-prev {
	transform: rotate(180deg);
	background-image: url('../images/swiper-slide-arrow.svg');
}

.swiper-button-disabled {
	opacity: .5;
	pointer-events: none;
}

.swiper-pagination-fraction {
	position: static;
	display: inline-block;
	inline-size: fit-content;
	font-size: 2rem;
	font-weight: 500;
}

/* サムネイル設定 */
.swiper-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(60px, 9%));
	column-gap: 1%;
	row-gap: 1rem;
	margin-top: .6em;
}

/* サムネイル・アクティブスライド */
.swiper-thumbs>li {
	border: 2px solid #fff;
}

.swiper-thumbs>li:has(.active) {
	border-color: #000;
}

/* ボタンリンク */
.btn-has-arrow-left {
	inline-size: fit-content;
	font-weight: 400;
	color: #fff;
	background-color: #000;
	transition: background-color .3s ease;
}

/* 特長ポップアップボタン */
.btn-feature-open {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: .8em;
	inline-size: fit-content;
	block-size: fit-content;
	align-items: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 400;
	background-color: #000;
	border: 1px solid #000;
	border-radius: 5px;
	padding: .5em 1em;
	transition: background-color .3s ease;
}

.btn-feature-open svg {
	inline-size: 1em;
	block-size: auto;
}

/* 2カラムレイアウト */
.flex-container.column2 {
	row-gap: 0;
}

/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {

	.local-sub-navi__list--expand a:hover {
		text-decoration: none;
	}

	/* 特長ポップアップボタン */
	:is(.btn-has-arrow-left, .btn-feature-open):hover {
		background-color: #fff;
		color: #000;
	}
}

/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {

	article {
		padding-top: 6rem;
	}

	/* セクション設定 */
	.sub-section__container {
		inline-size: min(100%, 900px);
		margin-inline: auto 0;
	}

	.sub-section {
		--section-gap: 10rem;
	}

	.sub-section__title {
		font-size: 3rem;
	}

	/* サブセクション設定 */
	.sub-section__wrap .sub-section {
		padding-top: 7rem;
	}

	.sub-section__wrap--column2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		--sub-sub-section-gap: 7rem;
		gap: var(--sub-sub-section-gap) 6%;
	}

	.sub-section__wrap--column2 .sub-section {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;
		gap: 0;
	}

	.sub-section__sub-title {
		font-size: 2.4rem;
	}

	.page-title {
		font-size: 4rem;
	}

	.sub-section__wrap--column2 .text__container,
	.sub-section__wrap--column2 .img__container {
		--margin-small: 2rem;
	}

	/* カテゴリスキップリンク */
	.category-navi {
		margin-top: 4rem;
	}

	.category-navi__list {
		font-size: 1.6rem;
	}

	/* カテゴリタイトル */
	.category {
		padding-top: 10rem;
	}

	.category__wrap>.sub-section:nth-child(1 of section) {
		padding-top: 6rem;
	}

	.category__title {
		font-size: 8rem;
	}

	.category__title span {
		font-size: 1.8rem;
	}

	/* 特長ポップアップボタン */
	.btn-feature-open {
		font-size: 1.6rem;
	}

	/* 2カラムレイアウト */
	.flex-container.column2 {
		column-gap: 4%;
	}

	.flex-container.column2 .sub-item {
		display: flex;
		flex-direction: column;
		inline-size: 48%;
	}

	.flex-container.column2 .sub-item .text__container {
		flex-grow: 1;
	}
}

/* ====================================
	PC専用スタイル（1200px～）
===================================== */
@media screen and (768px<=width <1200px) {}

/* ====================================
	PC専用スタイル（1200px～）
===================================== */
@media screen and (width >=1200px) {

	/* サブセクション */
	.category__wrap>.sub-section:nth-child(1 of section) {
		padding-top: 10rem;
	}

	.category {
		padding-top: 0;
	}

	.category__container {
		display: grid;
		grid-template-columns: auto 900px;
		align-items: start;
	}

	.category__container .outer-base-width {
		padding-inline: 0;
	}

	.category__wrap {
		inline-size: min(100%, 900px);
	}

	.category-title-wrapper {
		display: block;
		flex: 1 0;
	}

	.category__title {
		display: block;
		justify-self: start;
		padding-top: 10rem;
		margin-right: auto;
		font-size: 10rem;
		font-weight: 700;
		text-align: center;
		position: sticky;
		top: 20px;
		opacity: 0;
		transform: translateX(-30px);
	}

	.category__title span {
		display: block;
		font-size: 1.6rem;
		font-weight: 500;
		margin-top: 1em;
		margin-left: unset;
	}

	.category-wrapper {
		inline-size: 100%;
		max-inline-size: 900px;
	}
}