@charset "UTF-8";

/* ====================================
	製品トップ共通スタイル
 ==================================== */

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	width: 100%;
}

/* サブセクション */
.products-sub-title {
	font-weight: 300;
}


.sub-section .ttl {
	font-weight: 500;
}

.sub-title {
	background: #e6e6e6;
}

/* 左アローボタン */
.has-btn-show-list {
	display: flex;
}

ul.list-btn-show-list {
	display: flex;
	flex-wrap: wrap;
}

ul.list-btn-show-list li {
	display: flex;
	align-items: center;
	margin-right: 1rem;
}

/* メインビジュアル：スライドショー */
.main-visual-button-next,
.main-visual-button-prev {
	position: absolute;
	top: 50%;
	width: 6%;
	height: 12%;
	margin-top: -6%;
	z-index: 2;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.6);
	background-size: 40% auto;
	background-position: center;
	background-repeat: no-repeat;
}

.main-visual-button-prev {
	background-image: url(/products/common/images/arrow-prev-b.svg);
	left: 0;
	right: auto
}

.main-visual-button-next {
	background-image: url(/products/common/images/arrow-next-b.svg);
	right: 0;
	left: auto
}

.main-img .swiper-pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	position: relative;
}

.main-img .swiper-pagination-bullet {
	width: 40px;
	height: 4px;
	margin: 0 5px;
	background: #aaa;
	border-radius: 0;
}

.main-img .swiper-pagination-bullet-active {
	background: #878787;
}

/* メインビジュアルCMを見るボタン */
.btn-cm {
	position: absolute;
	bottom: 35px;
	left: 35px;
	transition: all .6s ease .6s;
}

.swiper-slide:not(.swiper-slide-active) .btn-cm {
	bottom: 0;
	opacity: 0;
}

.btn-cm a {
	display: inline-block;
	height: 100%;
	padding: 0.7em 1.5em 0.7em 2.5em;
	font-size: inherit;
	line-height: inherit;
	background-color: #535353;
	background-image: url(/products/common/images/chevron-right-solid-w.svg);
	background-repeat: no-repeat;
	background-position: left 0.7em center;
	background-size: auto 1em;
	color: #fff;
	text-decoration: none;
	box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.btn-cm a.hovering {
	opacity: 1;
	background-color: #878787;
}

/* 一覧ボタン */
.btn-arrow-left {
	text-align: center;
}

.btn-arrow-left a {
	display: inline-block;
	padding: 0.5em 1em 0.5em .75em;
	line-height: 1.4;
	background: #fff;
	color: #535353;
	border: solid 1px #535353;
	border-radius: 0.5rem;
	text-decoration: none;
}

.btn-arrow-left a svg {
	position: relative;
	top: -.1em;
}

.btn-arrow-left a:hover {
	background: #535353;
	color: #fff;
}

/* 製品ラインアップ */
#lineup .prod-name {
	font-weight: 700;
}

#lineup .icon-new {
	color: #e6000d;
}

#lineup .prod-text {
	font-weight: 500;
	border-top: dashed 1px #a0a0a0;
}

#lineup .prod-info {
	color: #959595;
}

ul.img-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

ul.img-icons li {
	margin-top: .5em;
}

#lineup .zaiko {
	display: inline-block;
	padding: 0 0.5em;
	font-size: 1.2rem;
	font-weight: normal;
	color: #E6000D;
	border: solid 1px #E6000D;
	position: relative;
	top: -0.25em;
}

a.hover-parent span.hover-trigger.has-zaiko {
	margin-right: 0.4em;
}

/* 発売予定 */
.yotei {
	font-size: 0.9em;
	color: #e6000d;
}

/* 関連コンテンツ */
.flex-container.column4 .category {
	color: #a0a0a0;
}

.flex-container.column4 .flex-item .img {
	border: solid 1px #d9d9d9;
}

/* 新着情報 */
ul.list-news a {
	text-decoration: underline;
}

ul.list-news a:hover {
	text-decoration: none;
}

/* よくある質問 */
.faq-container {
	background-color: #D9D9D9;
	padding: 5rem;
}

#faq .products-sub-title {
	text-align: center;
}

.accordion-container {
	width: 100%;
	margin-top: 4rem;
}

.ac-sec:not(:last-of-type) {
	margin-bottom: 2px;
}

.question {
	width: 40px;
	font-family: Helvetica;
	font-size: 2.4rem;
	font-weight: 700;
	color: #535353;
	position: relative;
	padding-right: 2%;
}

.question::before {
	content: "";
	position: absolute;
	right: 0%;
	top: 20%;
	background: #D9D9D9;
	width: 1px;
	height: 60%;
}

.accordion-title .ttl {
	display: flex;
	align-items: center;
	width: 91%;
	font-size: 1.8rem;
	padding-left: 2%;
	padding-right: 4%;
	color: #535353;
}

.accordion-title {
	position: relative;
	margin: 0;
	padding: 2rem 3.4rem;
	background-color: #fff;
	cursor: pointer;
	transition: .3s;
}

.accordion-title::before,
.accordion-title::after {
	content: "";
	position: absolute;
	top: 36px;
	right: 3.4%;
	width: 20px;
	height: 4px;
	border-radius: 2px;
	background: #535353;
}

.accordion-title::before {
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
}

.accordion-title::after {
	transition: all .2s ease-in-out;
}

.accordion-title.open::before {
	transform: rotate(180deg);
}

.accordion-title.open::after {
	opacity: 0;
}

.accordion-content {
	display: none;
	padding: 1rem 7% 1rem 3.4rem;
	background-color: #fff;
	border-top: dashed 1px #e5e5e5;
}

.answer {
	width: 40px;
	font-family: Helvetica;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 700;
	color: #a0a0a0;
	position: relative;
	padding-right: 2%;
	top: 8px;
}

.answer::before {
	content: "";
	position: absolute;
	right: 0%;
	top: 20%;
	background: #D9D9D9;
	width: 1px;
	height: 60%;
}

.detail {
	width: 91%;
	margin-left: 2%;
	font-size: 1.6rem;
	color: #535353;
	font-weight: 400;
	line-height: 1.8;
}

.detail.tlink a {
	color: #535353;
	text-decoration: underline;
	transition: .3s;
}

.detail.tlink a:hover {
	text-decoration: none;
	opacity: .7;
}

.detail .btn-wrap {
	margin-top: 2rem;
}

#accordion .flex-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: flex-start;
}

/* hタグ置き換え調整 */
.list-btn-show-list .tag-product {
	font-weight: 300;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
	.mts {
		margin-top: 2rem;
	}

	.mtm {
		margin-top: 4rem;
	}

	/* 一覧を見るボタン */
	.has-btn-show-list ul.list-btn-show-list {
		margin-left: 0;
		margin-top: 1em;
	}

	ul.list-btn-show-list li {
		margin-bottom: 1rem;
	}

	/* サブセクション */
	.sub-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
		border-top: solid 1px #d9d9d9;
	}

	.sub-title-container {
		margin-bottom: 2rem;
		display: flex;
		flex-direction: column;
	}

	.products-sub-title {
		flex-shrink: 0;
		font-size: 2.2rem;
	}

	.sub-section:first-of-type .products-sub-title {
		padding-top: 0;
		border-top: none;
	}

	.sub-title {
		margin-top: 6rem;
		margin-bottom: 2rem;
		padding: 0.25em 0;
		font-size: 1.8rem;
		text-align: center;
	}

	.sub-section .base-width>.sub-title:first-of-type {
		margin-top: 0;
	}

	/* その他エリア */
	.other-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
		border-top: solid 1px #d9d9d9;
	}

	/* フレックスコンテナ：ハーフ */
	.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>.img-container,
	.flex-container.img-text>.text-container {
		width: 48%;
	}

	/* フレックスコンテナ：スマホ2列 */
	.flex-container.sp-column2 {
		justify-content: space-between;
		font-size: 1.5rem;
	}

	.flex-container.sp-column2 .ttl {
		margin-top: 0.5em;
		font-size: 1.6rem;
	}

	.flex-container.sp-column2 .text {
		margin-top: 0.5em;
		font-size: 1.4rem;
	}

	.flex-container.sp-column2 .category {
		margin-top: 0.5em;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.flex-container.sp-column2>.flex-item {
		width: 48%;
		margin-top: 3rem;
	}

	.flex-container.sp-column2>.flex-item:nth-of-type(-n+2) {
		margin-top: 0;
	}

	/* 製品ラインアップ */
	#lineup {
		border-top: none;
	}

	#lineup .img-container {
		padding: 0 2%;
	}

	#lineup .flex-item .text-container {
		padding-top: 10px;
	}

	#lineup .prod-name {
		font-size: 1.7rem;
	}

	#lineup .icon-new {
		display: inline-block;
		margin-left: 0.5em;
		font-size: 1.4rem;
		line-height: 1;
		position: relative;
		top: -0.1em;
	}

	#lineup .prod-text {
		margin-top: 0.6em;
		padding-top: 0.6em;
		font-size: 1.5rem;
	}

	#lineup .flex-item .prod-info {
		margin-top: 0.4em;
		font-size: 1.3rem;
		padding-top: 0.4em;
	}

	.flex-container.half>.flex-item:last-of-type .sub-title {
		margin-top: 3rem;
	}

	ul.img-icons .icon-pci {
		width: 100px;
		margin-right: 14px;
	}

	ul.img-icons .icon-cocoro {
		width: 86px;
	}

	/* 一覧ボタン */
	.btn-arrow-left {
		margin-top: 4rem;
		font-size: 1.5rem;
	}

	/* 一覧を見る */
	.more-lineup {
		margin-top: 3em;
	}

	.btn-lineup {
		margin-top: 4rem;
		font-size: 1.5rem;
	}

	.btn-lineup a {
		padding: 0.8em 2em 0.8em 4em;
	}

	/* 新着情報 */
	ul.list-news li {
		margin-top: 1em;
		padding-top: 1em;
		border-top: dashed 1px #a0a0a0;
		display: none;
	}

	ul.list-news li:first-child {
		margin-top: 0;
		padding-top: 0;
		border-top: none;
	}

	ul.list-news li:nth-child(-n + 12) {
		display: inherit;
	}

	ul.list-news li .text {
		margin-top: 0.2em;
	}

	ul.list-news li .date {
		font-size: 1.4rem;
	}

	ul.list-news li .text {
		font-size: 1.4rem;
	}

	/* よくある質問 */
	.faq-container {
		padding: 4rem 2rem;
	}

	.accordion-title {
		padding: 1.4rem;
	}

	.question {
		font-size: 1.8rem;
		width: 14px;
		padding-right: 8%;
		top: 2px;
	}

	.accordion-title .ttl {
		width: 84%;
		font-size: 1.4rem;
		line-height: 1.6;
		padding-left: 4%;
		padding-right: 1.4%;
	}

	.accordion-title::before,
	.accordion-title::after {
		top: 28px;
		right: 14px;
		margin: auto;
		width: 16px;
		height: 3px;
	}

	.accordion-content {
		padding: 1.4rem 2rem 1.4rem 1.4rem;
	}

	.answer {
		font-size: 1.8rem;
		width: 14px;
		padding-right: 8%;
		top: 3px;
	}

	.answer::before {
		top: 16%;
	}

	.detail {
		width: 87%;
		margin-left: 4%;
		font-size: 1.2rem;
	}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {
	main[data-footer-type] {
		padding-bottom: 8rem;
	}

	.mts {
		margin-top: 4rem;
	}

	.mtm {
		margin-top: 6rem;
	}

	/* 一覧を見るボタン */
	.has-btn-show-list ul.list-btn-show-list {
		margin-left: 3rem;
	}

	/* サブセクション */
	.sub-section {
		padding-top: 6rem;
	}

	.sub-title-container {
		padding-top: 5rem;
		border-top: solid 1px #d9d9d9;
	}

	.sub-title-container .products-sub-title {
		font-size: 2.8rem;
	}

	.sub-section:first-of-type .sub-title-container {
		padding-top: 0;
		border-top: none;
	}

	.sub-title {
		margin-top: 12rem;
		margin-bottom: 3rem;
		padding: 0.2em 0;
		font-size: 1.8rem;
		text-align: center;
	}

	.sub-section .base-width>.sub-title:first-of-type {
		margin-top: 4rem;
	}

	/* その他エリア */
	.other-section {
		padding-top: 6rem;
	}

	.other-section .base-width {
		padding-top: 5rem;
		position: relative;
	}

	.other-section .base-width::before {
		content: '';
		display: block;
		width: 100%;
		border-top: solid 1px #d9d9d9;
		position: absolute;
		top: 0;
		left: 0;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.half {
		justify-content: space-between;
	}

	.flex-container.half>.flex-item {
		width: 48%;
		margin-top: 4rem;
	}

	.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%;
	}

	/* フレックスコンテナ：3列 */
	.flex-container.column3 {
		margin-top: 5rem;
	}

	.flex-container.column3 {
		font-size: 1.5rem;
	}

	.flex-container.column3 .ttl {
		font-size: 1.8rem;
	}

	.flex-container.column3>.flex-item {
		width: 31%;
		margin-left: 3.5%;
		margin-top: 2rem;
	}

	.flex-container.column3>.flex-item:nth-of-type(3n-2) {
		margin-left: 0;
	}

	.flex-container.column3>.flex-item:nth-of-type(-n+3) {
		margin-top: 0;
	}

	/* フレックスコンテナ：4列 */
	.flex-container.column4 {
		margin-top: 5rem;
	}

	.flex-container.column4 {
		font-size: 1.5rem;
	}

	.flex-container.column4 .ttl {
		margin-top: 0.5em;
		font-size: 1.6rem;
	}

	.flex-container.column4 .text {
		margin-top: 0.5em;
		font-size: 1.4rem;
	}

	.flex-container.column4 .category {
		margin-top: 0.5em;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.flex-container.column4>.flex-item {
		width: 23.5%;
		margin-left: 2%;
		margin-top: 2rem;
	}

	.flex-container.column4>.flex-item:nth-of-type(4n-3) {
		margin-left: 0;
	}

	.flex-container.column4>.flex-item:nth-of-type(-n+4) {
		margin-top: 0;
	}

	/* メインビジュアル：スライドショー */
	.main-visual-button-next,
	.main-visual-button-prev {
		position: absolute;
		top: 50%;
		width: 30px;
		height: 80px;
		margin-top: -40px;
	}

	/* 製品ラインアップ */
	#lineup .icon-new {
		display: inline-block;
		margin-left: 0.5em;
		font-size: 1.6rem;
		line-height: 1;
		position: relative;
		top: -0.2em;
	}

	#lineup .img-container {
		padding: 0 6.8%;
	}

	#lineup .flex-item .text-container {
		padding-top: 10px;
	}

	#lineup .prod-name {
		font-size: 2.3rem;
	}

	#lineup .prod-text {
		margin-top: 1rem;
		padding-top: 1rem;
	}

	#lineup .flex-item .prod-info {
		margin-top: 0.5em;
		font-size: 1.4rem;
	}

	ul.img-icons .icon-pci {
		width: 120px;
		margin-right: 14px;
	}

	ul.img-icons .icon-cocoro {
		width: 96px;
	}

	/* 一覧ボタン */
	.btn-arrow-left {
		margin-top: 2rem;
	}

	/* 一覧を見る */
	.more-lineup {
		margin-top: 3em;
	}

	.btn-lineup {
		margin-top: 8rem;
		font-size: 1.8rem;
	}

	.btn-lineup a {
		padding: 0.8em 2em 0.8em 4em;
	}

	/* 新着情報 */
	ul.list-news {
		margin-top: 4rem;
	}

	ul.list-news li {
		padding-top: 1em;
		display: none;
	}

	ul.list-news li:first-child {
		padding-top: 0;
	}

	ul.list-news li:nth-child(-n + 12) {
		display: inherit;
	}

	ul.list-news li .date {
		display: table-cell;
		width: 8em;
		font-size: 1.4rem;
	}

	ul.list-news li .text {
		display: table-cell;
		padding-left: 2em;
		font-size: 1.4rem;
	}

	/* よくある質問 */
	#faq .products-sub-title {
		font-size: 2.8rem;
	}

	.detail .btn-wrap {
		width: 323px;
	}

	.detail .btn-wrap:first-child {
		margin-right: 2rem;
	}
}

/* ====================================
	IE印刷専用スタイル
===================================== */
@media print and (-ms-high-contrast: none) {
	.flex-container.half {
		display: block;
	}

	.flex-container.half .flex-item {
		margin-left: 3.5%;
		display: inline-block;
		vertical-align: top;
	}

	.flex-container.half .flex-item:nth-child(odd) {
		margin-left: 0;
	}
}