@charset "UTF-8";

/* ====================================
	スライドショー共通設定
 ==================================== */

.swiper:not(.destroy) {
	padding-bottom: 6rem;
}

.swiper:not(.destroy) .swiper-controller {
	display: grid;
	justify-items: center;
	grid-template-columns: 1fr auto;
	column-gap: 25px;
	block-size: 35px;
	padding-inline: 25px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: var(--border-radius-large);
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: inherit;
}

.swiper.destroy .swiper-controller {
	display: none;
}

.swiper-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	/* reset style */
	position: static;
	z-index: inherit;
	transition: none;
	transform: none;
}

.swiper-pagination .bullet {
	inline-size: 30px;
	block-size: 30px;
	position: relative;
}

.swiper-pagination .bullet::before {
	content: '';
	display: block;
	inset: 0;
	margin: auto;
	position: absolute;
	inline-size: 12px;
	block-size: 12px;
	background: var(--steel-gray);
	border-radius: 50%;
}

.swiper-pagination .bullet-active::before {
	background-color: #ccc;
}

.swiper-play-button {
	display: grid;
	place-items: center;
	inline-size: 35px;
}

.swiper-play-button img:not(.is-active) {
	display: none;
}

.swiper-play-button img.is-active {
	display: block;
	inline-size: 15px;
}

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

/* Web font */
.helvetica,
.faq-label {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/* 製品トップ専用・サイト内検索 */
.site-search {
	background: var(--white-gray);
	padding-block: 1em;
}

.site-search__form {
	display: flex;
	color: #716f63;
	--site-search-height: 4rem;
	block-size: var(--site-search-height);
	position: relative;
}

.site-search__input {
	inline-size: calc(100% - 4rem);
	border: none;
	padding: 0.4em 0 0.4em 1em;
	font-size: 1.4rem;
	line-height: 1;
}

.site-search__button-submit {
	display: grid;
	place-items: center;
	block-size: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 0;
	background-color: #000;
}

.site-search__button-submit img {
	inline-size: 24px;
}

div.poplink {
	top: var(--site-search-height);
}

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

.other-section {
	padding-top: 5rem;
}

/* セクション見出し */
.sub-section__title {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
}

.sub-section__title-wrap {
	margin-bottom: 3rem;
}

.sub-section__title-wrap .sub-section__title {
	margin-bottom: 0;
}

/* セクション見出し下部コピー */
.sub-section__copy {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 1.5em;
}

/* メインビジュアル：スライドショー */
.main-visual .swiper {
	max-inline-size: 1920px;
	margin-inline: auto;
}

/* メインビジュアル下部・コピー */
.introduction__text {
	font-size: 1.4rem;
	line-height: 2;
}

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

.lineup__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 4%;
}

.lineup__list>li {
	display: contents;
}

.lineup__list>li>a {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0;
	background-color: var(--white-gray);
	border-radius: var(--border-radius-small);
	padding: 2.4rem 1.5rem;
	position: relative;
	background-color: #fff;
}

/* 製品画像エリア：画像の最大幅は製品サイトごとに個別調整する */
.product__img {
	aspect-ratio: 1 / 1;
	max-inline-size: 200px;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 製品コピー */
.lineup__copy {
	font-size: 1.2rem;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

/* 製品名 */
.lineup__title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin-block: .2em;
}

/* 製品情報 */
.lineup__spec {
	font-size: 1.2rem;
	text-align: center;
	margin-top: 1em;
}

.lineup__spec>li {
	border-top: 1px solid var(--light-gray);
	padding-block: .2em;
}

.lineup__spec>li:last-child {
	border-bottom: 1px solid var(--light-gray);
}

/* 製品画像エリア：画像の最大幅は製品サイトごとに個別調整する */
.lineup__image {
	aspect-ratio: 1 / 1;
	max-inline-size: 180px;
	margin: 1.5rem auto 0;
	display: flex;
	align-items: center;
}

/* 別売オプション品 */
.option__container {
	padding-top: 5rem;
}

.option__title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.option__list {
	margin: 2rem auto 0;
	max-inline-size: 480px;
}

.option__list a {
	display: flex;
	justify-content: center;
	background-color: #fff;
	border-radius: var(--border-radius-small);
}

.option__image {
	display: grid;
	place-items: center;
	padding: 0.5em 0.8em;
	inline-size: 40%;
	aspect-ratio: 1 / 1;
}

.option__image img {
	transition: opacity 0.3s ease 0s;
}

.option__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	inline-size: 55%;
	padding: 1em 3%;
}

.option__sub-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: .5em;
}

.option__list .has-arrow-left {
	margin-top: 1em;
}

/* ボタンリンクエリア */
.list-btn-links {
	display: flex;
	align-items: center;
	flex-direction: column;
	row-gap: 2rem;
	margin-top: 3rem;
}

.list-btn-links .btn-has-arrow-left {
	font-weight: 400;
}

/* PDFボタン */

.btn-links-pdf {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-column-gap: .8em;
	inline-size: fit-content;
	block-size: fit-content;
	align-items: center;
	border: 1px solid #000;
	border-radius: 5px;
	padding: .6em 1em;

  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 auto;
  padding-block: .6em;
	transition: all 0.3s ease 0s;
}

.btn-links-pdf svg {
	inline-size: 1.5em;
	block-size: 1.5em;
}


/* 黒背景ボタン */

.btn-links-black {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-column-gap: .8em;
	inline-size: fit-content;
	block-size: fit-content;
	align-items: center;
	border: 1px solid #000;
	border-radius: 5px;
	padding: .6em 1em;

	background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  inline-size: min(100%, 380px);
  margin: 4rem auto 0;
  padding-block: .6em;
	transition: all 0.3s ease 0s;
}

.btn-links-black::after {
	content: '';
}

.btn-links-black svg {
	inline-size: 0.6em;
	block-size: 1em;
}


/* おすすめの商品 */
.footer-lineup {
	padding-top: 10rem;
}

.footer-lineup__title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 1.2em;
	text-align: center;
}

.footer-lineup .swiper-slide a {
	font-size: 1.4rem;
}

.footer-lineup__prod-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-block: 1em .5em;
}

.footer-lineup .has-arrow-left {
	margin-top: 1em;
}

/* NEWアイコン */
.icon-new {
	display: inline-block;
	background: var(--sharp-red);
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	padding: 0.1em 0.5em;
	position: absolute;
	left: 2rem;
	top: 0;
}
/* 発売予定テキスト */
.prod-release-date {
	color: var(--sharp-red);
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
}

/* 在庫僅少マーク */
.prod-zaiko {
	font-size: 1.2rem;
	color: var(--sharp-red);
	border: 1px solid var(--sharp-red);
	inline-size: fit-content;
	margin: 0 auto .5em;
	padding-inline: .5em;
}

.prod-zaiko::after {
	content: '★';
	color: var(--cyan);
}

/* 新着おすすめ商品・製品画像エリア */
.footer-lineup__image {
	aspect-ratio: 1 / 1;
	max-inline-size: 250px;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: var(--border-radius-small);
	position: relative;
}

.footer-lineup__image img {
	inline-size: 70%;
}

/* 導入事例 */
.case-swiper .swiper:not(.destroy) {
	padding-bottom: 8rem;
}

.case-swiper__image {
	position: relative;
}

.case-swiper__label {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(50%);
	background: #fff;
	font-size: 1.2rem;
	font-weight: 400;
	padding: 0.2em 0.5em;
	border: 1px solid #000;
}

.case-swiper__title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 2.4rem;
}

.case-swiper__text {
	font-size: 1.4rem;
	margin-top: 0.2em;
}

.case-swiper a {
	display: block;
}

/* お役立ちコンテンツ */
.information__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 4%;
	row-gap: 3rem;
}

.information__list>li>a {
	font-size: 1.4rem;
}

.information__title {
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: .8em;
}

.information__list .has-arrow-left {
	margin-top: 1em;
}

.information__list>li.is-hidden {
	display: none;
}

/* お役立ちコンテンツ・もっと見るボタン */
.information__button {
	display: block;
	inline-size: 100%;
	max-inline-size: 240px;
	margin-top: 30px;
	margin-inline: auto;
	padding: .4em 1em;
	border: 1px solid #000;
	border-radius: 30px;
	font-size: 1.4rem;
	transition: background-color .3s ease, color .3s ease;
}

.information__button svg {
	inline-size: 1em;
	block-size: 1em;
	margin-right: .5em;
}

/* 新着情報 */
.list-news a {
	text-decoration: underline;
}

.list-news>li {
	padding-block: 2rem;
	border-bottom: 1px solid var(--light-gray);
}

.list-news>li:first-child {
	border-top: 1px solid var(--light-gray);
}

.list-news>li:nth-child(n+13) {
	display: none;
}

.list-news>li>time {
	display: inline-block;
	margin-bottom: .5em;
	font-size: 1.5rem;
	font-weight: 400;
}

.list-news>li>p {
	font-size: 1.5rem;
}

#news .link-btn-has-arrow {
	margin: 0 auto 3rem;
}

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

	/* 導入事例 */
	.case-swiper a:hover {
		text-decoration: none;
	}

	/* お役立ちコンテンツ・もっと見るボタン */
	.information__button:hover {
		color: #fff;
		background-color: #000;
	}

	/* リンクテキスト */
	:where(.list-news, .faq-text) a:hover {
		text-decoration: none;
	}

	/* PDFボタン */

	.btn-links-pdf:hover {
		background-color: #000;
		color: #fff;
		text-decoration: none;
	}

	.btn-links-pdf:hover svg {
		fill: #fff;
	}

	/* 黒背景ボタン */

	.btn-links-black:hover {
		background-color: transparent;
		color: #000;
		text-decoration: none;
	}

	.btn-links-black:hover svg {
		fill: #fff;
	}


}

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

	/* 別売オプション品 */
	.option__list>li:not(:first-child) {
		margin-top: 2rem;
	}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (width >=768px) {
	main {
		padding-bottom: 8rem;
	}

	/* 製品トップ専用・サイト内検索フォーム */
	.site-search__form {
		inline-size: 620px;
		--site-search-height: 5rem;
		margin-inline: auto;
	}

	.site-search__button-submit img {
		inline-size: 28px;
	}

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

	.other-section {
		padding-top: 10rem;
	}

	/* セクション見出し */
	.sub-section__title {
		font-size: 4rem;
		margin-bottom: 6rem;
	}

	.sub-section__title-wrap {
		margin-bottom: 6rem;
	}

	/* セクション見出し下部コピー */
	.sub-section__copy {
		font-size: 1.8rem;
	}

	/* メインビジュアル：スライドショー */
	.main-visual .swiper {
		padding-bottom: 0;
	}

	.main-visual .swiper__controller {
		bottom: 20px;
	}

	/* メインビジュアル下部・コピー */
	.introduction__text {
		font-size: 1.6rem;
		text-align: center;
	}
	
	/* 製品ラインアップ */
	.lineup__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem 3%;
	}

	.lineup__list>li>a {
		padding: 3rem;
	}

	/* 製品コピー */
	.lineup__copy {
		font-size: 1.6rem;
	}

	/* 製品名 */
	.lineup__title {
		font-size: 2.4rem;
	}

	/* 製品情報 */
	.lineup__spec {
		font-size: 1.4rem;
	}

	
	/* 別売オプション品 */
	.option__container {
		padding-top: 10rem;
	}

	.option__title {
		font-size: 2.6rem;
	}

	.option__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 3%;
		max-inline-size: 1080px;
		margin-top: 3rem;
	}

	.option__image {
		padding: 1em 1.35em;
		inline-size: 35%;
	}

	.option__sub-title {
		font-size: 1.8rem;
	}

	/* NEWアイコン */
	.icon-new {
		font-size: 1.4rem;
	}

	/* ボタンリンクエリア */
	.list-btn-links {
		flex-direction: row;
		justify-content: center;
		column-gap: 4rem;
		margin: 6rem auto 0;
	}

	.list-btn-links .btn-has-arrow-left {
		font-size: 1.6rem;
	}

	/* メインビジュアル：スライドショー */
	.main-visual-button-next,
	.main-visual-button-prev {
		position: absolute;
		top: 50%;
		inline-size: 30px;
		block-size: 80px;
		margin-top: -40px;
	}

	/* カルーセルギャラリー */
	.carousel-gallery .swiper {
		overflow: hidden;
	}

	.carousel-gallery.destroy .swiper {
		padding-bottom: 0;
	}

	.carousel-gallery.has-navigation:not(.destroy) {
		padding-inline: 6rem;
		position: relative;
	}

	.carousel-gallery.has-scrollbar:not(.destroy) .swiper {
		padding-bottom: 5rem;
	}

	.carousel-gallery .cg-button-next,
	.carousel-gallery .cg-button-prev {
		display: block;
		inline-size: 50px;
		block-size: 50px;
		background: url('/aircon/assets/index/images/cg-arrow.svg') no-repeat left top/contain;
		position: absolute;
		top: 50%;
	}

	.carousel-gallery .cg-button-next {
		right: 0;
		transform: translate(0, -50%);
	}

	.carousel-gallery .cg-button-prev {
		left: 0;
		transform: translate(0, -50%) rotate(180deg);
	}

	.carousel-gallery.destroy .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		column-gap: 2rem;
	}

	.carousel-gallery.destroy .cg-button-next,
	.carousel-gallery.destroy .cg-button-prev {
		display: none;
	}

	/* おすすめの商品 */
	.footer-lineup {
		padding-top: 15rem;
	}

	.footer-lineup__title {
		font-size: 4rem;
	}

	/* 導入事例 */
	.case-swiper .swiper.destroy .swiper-wrapper {
		column-gap: 4%;
	}

	.case-swiper .swiper.destroy .swiper-slide {
		inline-size: calc(92% / 3);
	}

	.case-swiper__title {
		font-size: 1.8rem;
	}

	/* お役立ちコンテンツ */
	.information__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 4%;
		row-gap: 6rem;
	}

	.information__list>li>a {
		font-size: 1.6rem;
	}

	.information__title {
		font-size: 1.6rem;
	}

	/* お役立ちコンテンツ・もっと見るボタン */
	.information__button {
		max-inline-size: 600px;
		margin-top: 60px;
		padding: .4em 1em;
		font-size: 1.8rem;
	}

	/* 新着情報 */
	.list-news>li {
		display: flex;
		padding-block: 3rem;
	}

	.list-news>li>time {
		inline-size: 8em;
		margin-right: 2em;
		margin-bottom: 0;
	}

	.list-news>li>p {
		flex: 1 0;
	}
}

/* ====================================
	タブレット専用スタイル（768px～1024px）
===================================== */
@media screen and (768px <=width < 1024px) {

	/* 製品ラインアップ */
	.lineup__title {
		font-size: 1.8rem;
	}
}

/* ====================================
	大画面スタイル（1200px～）
===================================== */
@media screen and (1300px <=width) {}