@charset "UTF-8";

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

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

/* 製品カラーアイコン */
.list-product-color button {
  font-weight: 300;
}

.icon-color {
  inline-size: 1em;
  block-size: 1em;
  margin-right: .5em;
}

/* 製品概要 */
.overview-section {
  padding-top: 3rem;
  overflow: hidden;
}

.overview-grid {
  margin-bottom: 3rem;
}

/* 製品概要：製品情報 */
.prod-copy {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.prod-category {
  font-size: 1.4rem;
}

.prod-name-wrap {
  display: flex;
  align-items: center;
}

.product-name {
  font-size: 2.6rem;
  font-weight: 700;
}

.prod-logo-wrap {
  margin-top: var(--margin-small);
  inline-size: 130px;
}

.prod-release-date {
  margin-left: 1em;
  font-size: 1.4rem;
  color: var(--sharp-red);
}

.product-price {
  font-size: 1.6rem;
}

/* 製品概要：カラーバリエーション */
.list-product-color {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  margin-top: 1em;
}

.list-product-color button {
  display: flex;
  align-items: center;
  padding: .2em .8em;
  font-size: 1.2rem;
  border: solid 1px #d9d9d9;
  text-decoration: none;
  cursor: pointer;
}

/* ココロストアリンク */
.cocoro-store-wrap {
  margin-top: var(--margin-small);
}

.link-cocoro-store {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: .8em;
  inline-size: fit-content;
  block-size: fit-content;
  align-items: center;
  color: #B7428B;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: 2px solid #B7428B;
  border-radius: 5px;
  margin-inline: auto;
  padding: .5em 1em;
  transition: background-color .3s ease;
}

.store-price {
  display: inline-block;
  color: #000;
  font-size: 1.8rem;
}

.chevron-right {
  inline-size: .6em;
  block-size: 1em;
}

.icon-cart {
  inline-size: 1.2em;
  block-size: 1.22em;
}

/* 製品概要：主な仕様 */
.spec-container {
  margin-top: 6rem;
  position: relative;
}

.btn-spec {
  position: absolute;
  top: 0;
  right: 0;
}

.btn-spec a {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: .5em;
  align-items: center;
  padding: .5em 1em;
  font-size: 1.3rem;
  font-weight: 400;
  background-color: #000;
  color: #fff;
  border: solid 1px #000;
}

.svg-chevron-right {
  inline-size: .6em;
  block-size: auto;
}

table.spec-table {
  inline-size: 100%;
  caption-side: top;
  font-size: 1.4rem;
  border-bottom: solid 1px var(--light-gray);
}

table.spec-table caption {
  margin-bottom: .5em;
  font-size: 1.7rem;
  font-weight: bold;
  color: #000;
}

table.spec-table tr {
  border-top: solid 1px var(--light-gray);
}

table.spec-table th {
  inline-size: 50%;
  padding: .5em;
  font-size: 1.3rem;
  background-color: var(--white-gray);
}

table.spec-table td {
  padding: .5em;
}

/* 製品概要：フォトギャラリー */
.gallery-outer {
  position: relative;
}

.gallery-container .swiper-slide .title {
  padding: .5em 0;
  font-size: 1.4rem;
  text-align: center;
}

/* 製品概要：フォトギャラリー:ナビゲーション */
.gallery-controls {
  position: relative;
}

.gallery-container .btn-gallery-next,
.gallery-container .btn-gallery-prev {
  display: block;
  inline-size: 20px;
  block-size: 40px;
  background: var(--white-gray) url(/assets/common/images/chevron-right-solid.svg) no-repeat center center / 20px auto;
  position: absolute;
  top: 50%;
  z-index: 2;
}

.gallery-container .btn-gallery-next {
  right: 0;
  transform: translate(0, -50%);
}

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

.gallery-container .btn-gallery-next.hovering,
.gallery-container .btn-gallery-prev.hovering {
  opacity: .5;
}

/* 製品概要：フォトギャラリー:ページネーション */
.gallery-pagination {
  inline-size: fit-content;
  padding: 0 .5em;
  background-color: rgba(255, 255, 255, .8);
  color: #000;
  text-align: center;
  position: absolute;
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
  z-index: 2;
  border: 1px solid var(--light-gray);
}

/* 製品概要：フォトギャラリー：サムネイル */
.gallery-thumbs-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-block: 1em;
  padding-block: .5em;
  background-color: var(--white-gray);
}

.gallery-thumbs-group button {
  padding: .2em .2em;
  color: #535353;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  border-bottom: solid 2px transparent;
}

.gallery-thumbs-group button[aria-selected="true"] {
  color: #000;
  border-bottom: solid 2px #000;
}

ul.gallery-thumbs-group li:not(:first-child) {
  margin-left: 1em;
}

.gallery-thumbs {
  display: flex;
  column-gap: 2%;
  row-gap: 10px;
}

.gallery-thumbs.no-thumbs-group {
  margin-top: 1em;
}

.gallery-thumbs>li {
  border: solid 1px var(--light-gray);
  cursor: pointer;
}

.gallery-thumbs li:has(.active) {
  border: solid 2px var(--charcoal-gray);
}

.gallery-thumbs>li>a {
  display: block;
  cursor: pointer;
}

.list-product-color button.active {
  border: solid 1px var(--charcoal-gray);
  pointer-events: none;
}

/* ギャラリー動画（自動再生）1枚目のスタイル */
.auto-play {
  position: relative;
  inline-size: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.auto-play video {
  position: absolute;
  top: 0;
  right: 0;
  inline-size: 100%;
  block-size: 100%;
}

/* 製品概要・別売オプションリンク */
.link-option-wrap {
  margin-top: 4rem;
  text-align: center;
}

.link-option {
  display: inline-block;
  min-inline-size: 300px;
  block-size: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: .4em 2em .4em 3.5em;
  background-color: var(--white-gray);
  border: 1px solid #959595;
  position: relative;
}

.link-option::before {
  content: '';
  display: block;
  position: absolute;
  inline-size: 30px;
  block-size: 30px;
  background: url('/assets/common/images/icon-option.svg') no-repeat center center/contain;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.link-option span {
  font-size: .8em;
  font-weight: 300;
}

/* セクション見出し */
.section-title {
  font-size: 2.6rem;
  font-weight: 400;
}

.section-title:not(.has-item) {
  padding-top: .6em;
  margin-bottom: 1.5em;
  border-top: 1px solid #9b9b9b;
  position: relative;
}

.section-title:not(.has-item)::before {
  content: '';
  display: inline-block;
  inline-size: 50px;
  block-size: 6px;
  background: linear-gradient(90deg, #000 0%, #000 75%, #fff 75%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

/* 製品特長・複数ページの場合 */
.list-prod-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 4rem;
}

.list-prod-features>li {
  display: contents;
}

.list-prod-features>li>a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}

.list-prod-features .title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-block: 1em .5em;
  padding: .3em .5em;
  inline-size: fit-content;
  background-color: var(--light-gray);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* 製品特長・1ページの場合 */
.section-title-container {
  display: flex;
  column-gap: 2em;
  align-items: center;
  font-size: 2.6rem;
  padding-top: .6em;
  margin-bottom: 1.5em;
  border-top: 1px solid #9b9b9b;
  position: relative;
}

.section-title-container::before {
  content: '';
  display: inline-block;
  inline-size: 50px;
  block-size: 6px;
  background: linear-gradient(90deg, #000 0%, #000 75%, #fff 75%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

.btn-feature {
  inline-size: fit-content;
}

.btn-feature a {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: .5em;
  align-items: center;
  padding: .5em 1em;
  font-size: 1.4rem;
  font-weight: 400;
  border: solid 1px #000;
  border-radius: 5px;
  transition: background-color .3s ease;
}

.list-main-features {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4rem;
}

.list-main-features .title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .3em;
}

.list-main-features .text {
  font-size: 1.4rem;
}

/* 特長をもっと詳しく見るボタン */
#feature .has-arrow-left {
  margin-top: .8em;
}

#feature .btn-has-arrow-left {
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  inline-size: min(100%, 380px);
  margin: 8rem auto 0;
  padding-block: .6em;
}

/* 受賞・認定取得など */
.list-award {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* お役立ちコンテンツ */
.tips-title {
  font-size: 1.6rem;
  margin-top: .6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

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

.list-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5%;
  row-gap: 4rem;
}

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

/* お役立ちコンテンツ・カルーセル */
.carousel-gallery.has-scrollbar:not(.destroy) .swiper {
  padding-bottom: 4rem;
}

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

/* 参考動画 */
.movie-title {
  font-size: 1.6rem;
  margin-top: .6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

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

.list-btn-links>li {
  inline-size: min(100%, 245px);
}

.list-btn-links .btn-has-arrow-left {
  inline-size: 100%;
}

/* 動画 */
.video {
  position: relative;
  inline-size: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-js {
  position: absolute;
  top: 0;
  right: 0;
  inline-size: 100% !important;
  block-size: 100% !important;
}

.video-js .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 40px;
  cursor: pointer;
}

.finished .video-btn {
  position: absolute;
}

.finished .video-btn::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(images/chevron-right-solid.svg);
  inline-size: 1em;
  block-size: 1em;
  margin: auto;
  color: #fff;
  font-size: 50px;
  line-height: 1em;
}

/* ==========================================
	ホバー、マウスポインタがサポートされている環境
=========================================== */
@media (hover:hover) and (pointer: fine) {

  /* すべての仕様を見るボタン */
  .btn-spec a:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
  }

  .list-prod-features>li>a:hover {
    text-decoration: none;
  }

  .list-prod-features>li>a:hover .prod-feature-text::before {
    transform: translateX(.25em);
  }

  /* 別売オプションリンク */
  .link-option:hover {
    text-decoration: none;
  }

  /* ココロストアリンク */
  .link-cocoro-store:hover {
    color: #fff;
    background-color: #B7428B;
    text-decoration: none;
  }

  .link-cocoro-store:hover span {
    color: inherit;
  }

  /* 特長をもっと詳しく見るボタン */
  .btn-feature a:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
  }

  #feature .btn-has-arrow-left:hover {
    color: #000;
    background-color: #fff;
  }

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

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

  /* 製品概要：フォトギャラリー */
  #gallery {
    margin-bottom: 30px;
  }

  /* 製品概要：フォトギャラリー：サムネイル */
  .gallery-thumb-wrap {
    inline-size: 95vw;
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
  }

  .gallery-thumbs {
    inline-size: fit-content;
    column-gap: 1.5vw;
  }

  .gallery-thumbs>li {
    inline-size: 13.5vw;
  }

  .gallery-thumbs>li:last-child {
    margin-right: 5vw;
  }

  /* 特長・1ページの場合 */
  .list-main-features>li:has(.main-feature-img) {
    display: flex;
    column-gap: 6%;
  }

  .main-feature-img {
    inline-size: 40%;
  }

  .main-feature-text {
    inline-size: 54%;
  }

}

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

  /* 製品概要 */
  .overview-section {
    padding-top: 4rem;
  }

  .overview-container {
    display: grid;
    grid-template-areas:
      "gallery copy"
      "gallery overview";
    grid-template-columns: repeat(2, 48%);
    grid-template-rows: auto 1fr;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .overview-grid1 {
    grid-area: copy;
  }

  #gallery {
    grid-area: gallery;
  }

  .overview-wrap {
    grid-area: overview;
  }

  /* 製品概要・フォトギャラリー */
  .gallery-container .btn-gallery-next,
  .gallery-container .btn-gallery-prev {
    inline-size: 30px;
    block-size: 60px;
  }

  .gallery-container .swiper-slide a:focus-visible {
    outline-offset: -2px;
  }

  /* 製品概要・フォトギャラリー：サムネイル */
  .gallery-thumbs {
    flex-wrap: wrap;
  }

  .gallery-thumbs>li {
    inline-size: 15%;
  }

  /* 製品概要：製品情報 */
  .prod-copy {
    font-size: 2.4rem;
  }

  .prod-category {
    font-size: 1.5rem;
  }

  .product-name {
    font-size: 3rem;
  }

  .prod-release-date {
    font-size: 1.6rem;
  }

  /* 別売オプションリンク */
  .link-option-wrap {
    text-align: left;
  }

  .link-option {
    font-size: 1.8rem;
  }

  .link-option::before {
    inline-size: 35px;
    block-size: 35px;
  }

  /* ココロストアリンク */
  .link-cocoro-store {
    margin-inline: unset;
  }

  /* 製品概要：主な仕様 */

  .spec-table th {
    font-size: 1.4rem;
  }

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

  /* 特長 */
  .section-title {
    font-size: 3.2rem;
  }

  .list-prod-features {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    margin-top: 4rem;
  }

  .list-prod-features>li>a {
    border: 1px solid var(--light-gray);
    grid-row: span 2;
  }

  .list-prod-features .title {
    font-size: 1.6rem;
    margin-block: 0;
    position: absolute;
    left: 1em;
    top: 0;
    transform: translateY(-50%);
  }

  .prod-feature-text {
    position: relative;
    line-height: 1.7;
    padding: 1.5em 2em 1em 1em;
  }

  .prod-feature-text::before {
    content: '';
    display: inline-block;
    inline-size: 1.2em;
    block-size: 1.2em;
    background: url('/aircon/assets/common/images/circle-arrow-right.svg') no-repeat center center / contain;
    position: absolute;
    right: .85em;
    bottom: .85em;
    transition: transform .3s ease 0s;
  }

  /* 製品特長・1ページの場合 */
  .section-title-container {
    font-size: 3.2rem;
  }

  .btn-feature a {
    font-size: 1.6rem;
  }

  .list-main-features {
    column-gap: 4%;
  }

  .list-main-features>li {
    inline-size: calc(92% / 3);
  }

  .list-main-features .title {
    font-size: 2rem;
    margin-top: .8em;
  }

  .list-main-features .text {
    font-size: 1.6rem;
  }

  /* 特長をもっと詳しく見るボタン */
  #feature .btn-has-arrow-left {
    font-size: 1.8rem;
  }

  /* お役立ちコンテンツ */
  .tips-title {
    font-size: 1.8rem;
  }

  .list-tips {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3%;
    row-gap: 6rem;
  }

  .carousel-gallery .swiper {
    overflow: hidden;
  }

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

  .carousel-gallery.has-scrollbar .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/common/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 {
    padding-inline: 0;
  }

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

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

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

  /* 参考動画 */
  .movie-title {
    font-size: 1.8rem;
  }

  /* ボタンリンク一覧 */
  .list-btn-links {
    flex-direction: row;
    justify-content: center;
    column-gap: 6rem;
    max-inline-size: 550px;
    margin: 10rem auto 0;
  }

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

/* ====================================
	PC専用スタイル
===================================== */
@media print,
screen and (width >=1080px) {

  .gallery-pagination {
    right: 3rem;
  }

  .gallery-container {
    padding-inline: 3rem;
  }

  /* 拡大鏡 */
  .zoomContainer {
    z-index: 1;
  }

  .zoomWindow {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .6);
  }
}