@charset "UTF-8";

/* ====================================
	製品トップ共通スタイル
 ==================================== */

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	width: 100%;
}

/* サブセクション */

.sub-title {
	background: #e6e6e6;
}

/* メインタイトル */
.main-title {
	font-weight: bold;
}

/* 製品ラインアップ */
#lineup .prod-name {
	font-weight: 700;
}

.prod-colors {
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 1rem;
}

.prod-colors .pcolor {
	display: inline-block;
	width: 1.2rem;
	height: 1.2rem;
	margin-right: 0.5rem;
	background: #fff;
	border: solid 1px #a2a2a2;
	border-radius: 50%;
}

.prod-colors .pcolor.red {
	background: #be000b;
}

.prod-colors .pcolor.brown {
	background: #78512B;
}

.prod-colors .pcolor.silver {
	background: #b4b4b4;
}

.prod-colors .pcolor.black {
	background: #000;
}

.prod-colors .pcolor.white {
	background: #fff;
}

.prod-colors .pcolor.metal-gray {
	background: #696969;
}

#lineup .prod-text {
	font-weight: 500;
}

ul.img-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 0.5em;
}

/* フッター：サポート・お問い合わせ */
.list-global-support {
	grid-template-columns: repeat(3, 1fr);
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {

	/* メインタイトル */
	.main-title {
		padding-block: 2rem 1rem;
		display: flex;
		align-items: center;
		font-size: 2.6rem;
	}

	.list-bottom-link {
		margin-top: 8rem;
		display: flex;
		justify-content: center;
	}

	/* カテゴリーナビ */

	ul.list-category {
		display: flex;
		flex-wrap: wrap;
	}

	ul.list-category li a {
		display: inline-block;
		padding: .8em 1em .8em 1.5em;
		font-size: 1.4rem;
		line-height: 1;
		font-weight: 500;
		background-image: url(/assets/common/images/chevron-down-solid.svg);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: auto 1em;
		color: #535353;
		text-align: center;
		text-decoration: none;
	}


	/* サブセクション */
	.sub-section {
		padding-bottom: 4rem;
	}

	.sub-title-area {
		margin-top: 3rem;
		padding-top: 3rem;
		margin-bottom: 4rem;
	}

	.sub-title {
		padding: 0.25em 0;
		font-size: 1.8rem;
		text-align: center;
	}

	.sub-section .base-width>.sub-title-area:first-of-type {
		margin-top: 0;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.half>.flex-item {
		margin-top: 3rem;
	}

	.flex-container.half>.flex-item:first-of-type {
		margin-top: 0;
	}

	/* フレックスコンテナ：イメージテキスト */
	.flex-container.img-text {
		justify-content: space-between;
	}

	.flex-container.img-text>.text-container {
		width: 53%;
	}

	.flex-container.img-text>.img-container {
		width: 42%;
	}


	/* 製品ラインアップ */
	#lineup .img-container {
		padding: 0 5%;
	}

	#lineup .prod-text {
		font-size: 1.5rem;
		line-height: 1.4;
	}

	#lineup .prod-name {
		font-size: 1.7rem;
	}

	.prod-colors {
    padding-bottom: .5rem;
}

	#lineup .flex-item .prod-info {
		margin-top: 0.4em;
		font-size: 1.2rem;
	}

	ul.img-icons .icon-healsio {
		width: 84px;
		margin-right: 10px;
	}

	ul.img-icons .icon-cocoro {
		width: 85px;
	} 

	ul.img-icons .icon-plainly {
		width: 90px;
	}

}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {


	main[data-footer-type] {
		padding-bottom: 8rem;
	}

	/* メインタイトル */
	.main-title {
		display: flex;
		align-items: center;
		height: 10rem;
		font-size: 3.6rem;
	}

	/* リンクボタンリスト */
	.list-top-link {
		display: flex;
		justify-content: flex-end;
	}

	/* カテゴリーナビ */
	ul.list-category {
		display: flex;
		flex-wrap: wrap;
		margin-top: 4rem;
	}

	ul.list-category li {
		margin-right: 1rem;
	}

	ul.list-category li a {
		display: inline-block;
		padding: .8em 1em .8em 2.5em;
		line-height: 1;
		font-weight: 500;
		background-image: url(/assets/common/images/chevron-down-solid.svg);
		background-position: left .75em center;
		background-repeat: no-repeat;
		background-size: auto 1em;
		color: #535353;
		text-align: center;
		text-decoration: none;
	}

	/* サブセクション */

	.sub-title-area {
		margin-top: 6rem;
		padding-top: 6rem;
		margin-bottom: 4rem;
	}

	.sub-title {
		padding: 0.2em 0;
		font-size: 1.8rem;
		text-align: center;
	}

	.sub-section .base-width>.sub-title-area:first-of-type {
		margin-top: 0;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.half {
		justify-content: space-between;
	}

	.flex-container.half>.flex-item {
		width: 48%;
		margin-top: 6rem;
	}

	.flex-container.half>.flex-item:nth-of-type(-n+2) {
		margin-top: 0;
	}

	/* フレックスコンテナ：イメージテキスト */
	.flex-container.img-text {
		justify-content: space-between;
	}

	.flex-container.img-text>.img-container,
	.flex-container.img-text>.text-container {
		width: 48%;
	}

	/* 製品ラインアップ */

	#lineup .img-container {
		padding: 0 6.8%;
	}

	#lineup .prod-name {
		margin-top: 1rem;
		font-size: 2.3rem;
	}

	#lineup .flex-item .prod-info {
		margin-top: 0.5em;
		font-size: 1.4rem;
		margin-top: 1rem;
	}

	ul.img-icons .icon-healsio {
		width: 110px;
		margin-right: 14px;
	}

	ul.img-icons .icon-cocoro {
		width: 130px;
	}

	ul.img-icons .icon-plainly {
		width: 96px;
	}

}

/* ====================================
	タブレット専用スタイル
===================================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {}