@charset "utf-8";

/* 見出し */
.product_h2_title {
    border-bottom: solid 1px var(--text-color);
    color: var(--text-color);
    font-size: 2.0em;
    margin-bottom: 20px;
    padding: 3px 0;
}

.product_h3_title {
    border-bottom: 3px solid var(--comp-color);
    color: var(--text-color);
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 3px 0;
    margin: 0 0 30px 0;
    padding-bottom: 10px;
}

.product_h4_title {
    color: var(--text-color);
    display: inline;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.6;
    background: linear-gradient(transparent 65%, rgba(255, 102, 0, 0.3) 65%);
    padding: 0.1em 0;
    margin: 0;
    text-align: left;
}

/* こんなお悩みはありませんか？ */
.read {
  background-color: var(--bright-grey);
}
.read-contents {
  max-width: 800px;
  margin: 0 auto;
}
.read-title {
  font-size: 26px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.closing-text {
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color) 100%); /* 画像に近い赤色 */
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: inline-block;
  box-sizing: border-box;
  margin: 15px auto 0;
  width: 100%;
}

@media screen and (max-width: 968px) {
  .read-contents {
    width: 90%;
  }
}


/*  */
.cooling-section {
  background-image: url('../../img/index/pic01-bg.jpg');
  background-color: #ffffff;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 150px 0;
  position: relative;
  width: 100%;
}

.section-arrow-wrapper {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  z-index: 0;
}

.section-arrow-img {
  
}

.cooling-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.main-heading {
  font-size: 35px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 2px;
}

.sub-heading {
  font-size: 50px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 40px 0;
  letter-spacing: 3px;
  line-height: 1.4;
}

.text-blue {
  color: #2BB8E1;
  font-size: 60px;
}

.description-text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  max-width: 870px;
  margin: 0 auto 0.1px auto;
  letter-spacing: .5px;
}

.main-image-wrapper {
  margin: 40px 0;
  width: 100%;
}

.main-content-img {
  display: inline-block;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .main-heading {
    font-size: 32px;
  }
  .sub-heading {
    font-size: 40px;
  }
  .text-blue {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .cooling-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .main-heading {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
  .sub-heading {
    font-size: 28px;
    margin: 0 0 25px 0;
  }
  .text-blue {
    font-size: 34px;
  }
  .description-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }
  .main-image-wrapper {
    margin: 25px 0;
  }
}


/*  */
.features-section {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.features-header {
  border: solid 3px #C9C9C9;
  border-bottom: none;
  text-align: center;
  padding: 50px 0;
}

.main-title {
  font-size: 40px;
  color: #333333;
  font-weight: bold;
  margin: 0 0 15px;
}

.feature-links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 40px 0;
}

.feature-links a {
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.link-num {
  color: #5C91AC;
  margin-right: 5px;
}

.features-grid {
  border-top: 2px solid #C9C9C9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  padding: 40px 28px 40px;
  position: relative;
  border-bottom: 2px solid #C9C9C9;
  box-sizing: border-box;
}

.feature-item:nth-child(odd) {
  border-right: 2px solid #C9C9C9;
}

.feature-item:nth-last-child(-n+2) {
  border-bottom: 4px solid #C9C9C9;
}

.bg-light-blue {
  background-color: #F2F8FA;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 100px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

#feature-01::before { background-image: url('../../img/index/01.png'); }
#feature-02::before { background-image: url('../../img/index/02.png'); }
#feature-03::before { background-image: url('../../img/index/03.png'); }
#feature-04::before { background-image: url('../../img/index/04.png'); }
#feature-05::before { background-image: url('../../img/index/05.png'); }
#feature-06::before { background-image: url('../../img/index/06.png'); }

.feature-text {
  flex: 1;
  z-index: 5;
  position: relative;
  margin-top: 80px;
  padding-right: 15px;
}

.feature-title {
  background-color: #2BB8E1;
  color: #ffffff;
  display: inline-block;
  padding: 6px 16px;
  font-size: 20px;
  letter-spacing: .5px;
  margin: 0 0 20px 0;
}

.small-text {
  font-size: 0.7em;
  letter-spacing: -.1px;
}

.feature-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-top: 0.1px;
  margin-bottom: 0.1px;
  padding-bottom: 10px;
}

.text-red {
  color: #DD2222;
  font-weight: bold;
}

.note-asterisk {
  font-size: 12px;
}

.feature-image {
  width: 40%;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

.notes-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
}

.note-item {
  width: 35%;
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  box-sizing: border-box;
  padding-right: 10px;
}

@media screen and (min-width: 968px) and (max-width: 1400px) {
  .note-item {
    width: 40%;
  }
}

@media screen and (max-width: 968px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .feature-item:nth-child(odd) {
    border-right: none;
  }
  
  .feature-item {
    border-bottom: 2px solid #C9C9C9;
  }
  
  .feature-item:last-child {
    border-bottom: 4px solid #C9C9C9;
  }

  .feature-title {
    text-align: center;
    width: 100%;
  }
  
  .feature-image {
    width: 50%;
    margin: 25px auto 0;
  }
  
  .feature-item::before {
    top: 10px;
    left: 10px;
    width: 80px;
    height: 100px;
  }

  .feature-text {
    margin: 0 auto;
    width: 60%;
  }
  
  .note-item {
    width: 100%;
    padding-right: 0;
    margin-bottom: 5px;
  }
}


@media screen and (max-width: 600px) {
  .feature-text {
    margin: 0 auto;
    width: 90%;
  }
}



.recommend-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.recommend-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.recommend-header {
  text-align: center;
  margin-bottom: 60px;
}

.recommend-subtitle {
  color: #FF5A24;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.recommend-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.3;
}

.recommend-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid #E5E5E5;
}

.recommend-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.item-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.number-box {
  background-color: #2BB8E1;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.product-details {
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  margin-top: 0.1px;
  margin-bottom: 0.1px;
}

.product-code {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-top: 0.1px;
  margin-bottom: 0.1px;
}

.item-image {
  text-align: center;
  width: 100%;
}

.item-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .recommend-title {
    font-size: 40px;
  }
  .recommend-subtitle {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .recommend-section {
    padding: 40px 0;
  }
  .recommend-header {
    margin-bottom: 40px;
  }
  .recommend-title {
    font-size: 28px;
  }
  .recommend-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .number-box {
    width: 40px;
    height: 40px;
    font-size: 24px;
    margin-right: 15px;
  }
  .product-name {
    font-size: 18px;
  }
  .product-code {
    font-size: 14px;
  }
  .recommend-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}



/* 資料ダウンロード・お問い合わせ */
.download-contact-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  color: #333;
}

.download-badge {
  display: inline-block;
  background-color: #FF6A00;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 40px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}

.download-title {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.05em;
}

.download-image-wrap {
  margin-bottom: 35px;
}

.download-image-wrap img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: inline-block;
}

.download-description {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 30px;
}

@media (max-width: 768px) {
  .download-badge {
    font-size: 16px;
    padding: 12px 20px;
    max-width: 100%;
  }

  .download-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .download-description br {
    display: none;
  }

  .download-description {
    text-align: left;
    font-size: 14px;
  }
}





/* 製品仕様 */
.product-spec-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
}

.spec-container {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  color: #333333;
  line-height: 1.6;
}

.spec-title {
  margin-bottom: 30px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.spec-table th,
.spec-table td {
  border: 1px solid #cccccc;
  font-size: 17px;
  letter-spacing: .5px;
  padding: 15px 20px;
  vertical-align: top;
}

.aligin-middle {
  vertical-align: middle!important;
}

.spec-table th {
  background-color: #666666;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
  width: 30%;
}

.spec-table td {
  background-color: #ffffff;
}

.spec-battery-details {
  margin-left: 0;
}

.spec-battery-details p {
  margin-top: 0.1px;
  margin-bottom: 0.1px;
}

.spec-notes {
  margin-top: 30px;
}

.spec-notes-title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 18px;
}

.spec-notes-list {
  margin-top: 0;
  padding-left: 25px;
}

.spec-notes-list li {
  margin-bottom: 5px;
}

.spec-sales-title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 18px;
}

.spec-sales-text {
  margin-top: 0.1px;
  margin-bottom: 0.1px;
}

.spec-section-title {
  background-color: #333333;
  color: #ffffff;
  display: inline-block;
  padding: 8px 20px;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.spec-sub-title {
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 5px;
  color: #dddddd;
}

.spec-inner-cell {
  padding: 0 !important;
}

.spec-inner-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-inner-table td {
  border: none; /* 外側のボーダーと被らないように */
  border-bottom: 1px dashed #cccccc;
  padding: 10px 15px;
  vertical-align: middle;
}

.spec-inner-table tr:last-child td {
  border-bottom: none;
}

.spec-inner-table .col-mode { width: 35%; font-size: 14px; font-weight: bold; letter-spacing: .5px; }
.spec-inner-table .col-line { line-height: 2.7; }
.spec-inner-table .col-temp { width: 45%; font-size: 14.5px; }
.spec-inner-table .col-time { width: 20%; font-size: 14.5px; }


@media screen and (max-width: 768px) {
  .product-spec-section {
    padding: 40px 0;
  }
  
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
  }
  
  .spec-table th {
    border-bottom: none;
  }
  .spec-inner-table td {
    display: table-cell;
  }
}



/* 会社概要 */
.company_profile_section {
    background-color: #f4f4f4;
    padding: 80px 0;
    overflow: hidden;
}

.company_profile_container {
  max-width: 860px;
}

.company_profile_description p {
    margin: 0 0 1.5em 0;
}
.company_profile_description p:last-child {
    margin-bottom: 0;
}

.company_profile_representative {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
}

.company_profile_list_title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: left;
}

.company_profile_list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.company_profile_list_item {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.company_profile_list_term {
    flex: 0 0 180px; /* 項目名の幅を固定 */
    font-weight: 600;
    color: var(--text-color);
}

.company_profile_list_description {
    flex: 1;
    margin: 0;
    line-height: 1.7;
}

.company_profile_animate_item {
    opacity: 1;
    transform: translateY(0);
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .company_profile_section {
        padding: 60px 0;
    }
    .company_profile_list_wrapper {
        margin: 0 auto;
        width: 90%;
    }
    .company_profile_list_item {
        flex-direction: column;
    }
    .company_profile_list_term {
        flex-basis: auto;
        margin-bottom: 8px;
    }
}