﻿/* メインセクション背景 */
body {
  background-color: #6fa4c3;
}
.subsection-description {
  font-size: 16pt;
  color: #6d6c6c;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
.company-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.company-info-box {
  width: 400px;
  /*height: 120px;*/
  background-color: #e9f5fb;
  padding: 20px 17px;
  border-radius: 20px;
  box-sizing: border-box;
}
.info-title {
  font-size: 1.4rem;
  color: #6d6c6c;
  border-left: 4px solid #6fa4c3;
  padding-left: 10px;
  margin: 0;
}
.info-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #6d6c6c;
  margin: 5px 0 0 0;
}
.label-box {
  display: inline-block;
  background-color: #6fa4c3;
  color: white;
  font-size: 20pt;
  font-weight: bold;
  padding: 0 10px;
  border-radius: 5px;
  margin-right: 10px;
}
.bold-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #6d6c6c;
  margin-right: 15px;
}
.company-icon-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.company-icon {
  width: 139px;
  height: auto;
}
.factory-section {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 30px;
  justify-content: center;
  margin-top: 50px;
}
.factory-box {
  width: 400px;
  /*height: 342px;*/
  background-color: #e9f5fb;
  padding: 20px 17px;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
}
.factory-address, .factory-desc {
  font-size: 1rem; /* 約18pt */
  color: #6d6c6c;
  line-height: 1.6;
  margin-top: 10px;
}
.factory-tel {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 1.875rem; /* 約30pt */
  color: #6d6c6c;
  font-weight: bold;
}
.tel-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.map-container {
  width: 350px;
  height: 255px;
  overflow: hidden;
  /*position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);*/
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 15px;
}
/* 下のテキストと矢印 */
.link-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 150px 0 0 0;
  justify-content: center;
}
.link-label {
  font-size: 1.5625rem; /* 25pt */
  color: #6fa4c3;
  font-weight: bold;
  border-bottom: solid 19px #ffe558;
  padding-bottom: 5px;
  line-height: 0;
}
.link-arrow {
  width: 55px;
  height: 55px;
  cursor: pointer;
}
/* ------------------------------
   レスポンシブ対応 (768px以下)
---------------------------------*/
@media (max-width: 768px) {
  .subsection-description {
    font-size: 14pt;
    margin-bottom: 30px;
  }
  .company-info-container {
    justify-content: center;
    gap: 15px;
  }
  .company-info-box {
    width: 90%;
    height: auto;
    padding: 15px 12px;
  }
  .info-title {
    font-size: 1.2rem;
    padding-left: 8px;
  }
  .info-text {
    font-size: 1.3rem;
  }
  .label-box {
    font-size: 1.2rem;
    padding: 2px 8px;
  }
  .bold-text {
    font-size: 1.3rem;
    margin-right: 10px;
  }
  .company-icon {
    width: 100px;
  }
  .factory-section {
    gap: 60px 20px;
    margin-top: 30px;
  }
  .factory-box {
    width: 90%;
    height: auto;
    padding: 15px 12px;
  }
  .factory-address, .factory-desc {
    font-size: 0.9rem;
  }
  .factory-tel {
    font-size: 1.5rem;
  }
  .tel-icon {
    width: 28px;
    height: 28px;
  }
  .map-container {
    width: 90%;
    height: 200px;
    bottom: -70px;
  }
  .link-area {
    margin-top: 120px;
    flex-direction: column;
    gap: 10px;
  }
  .link-label {
    font-size: 1.3rem;
    border-bottom: solid 14px #ffe558;
  }
  .link-arrow {
    width: 45px;
    height: 45px;
  }
}
/* ------------------------------
   レスポンシブ対応 (480px以下)
---------------------------------*/
@media (max-width: 480px) {
  .subsection-description {
    font-size: 12pt;
    margin-bottom: 20px;
  }
  .company-info-box {
    width: 95%;
    padding: 10px 10px;
  }
  .info-title {
    font-size: 1rem;
    padding-left: 6px;
  }
  .info-text {
    font-size: 1.1rem;
  }
  .label-box {
    font-size: 1rem;
    padding: 2px 6px;
  }
  .bold-text {
    font-size: 1.1rem;
  }
  .company-icon {
    width: 80px;
  }
  .factory-section {
    gap: 40px 10px;
  }
  .factory-box {
    width: 95%;
    padding: 10px 10px;
  }
  .factory-address, .factory-desc {
    font-size: 0.85rem;
  }
  .factory-tel {
    font-size: 1.3rem;
  }
  .tel-icon {
    width: 24px;
    height: 24px;
  }
  .map-container {
    width: 95%;
    height: 180px;
    bottom: -60px;
  }
  .link-label {
    font-size: 1.1rem;
    border-bottom: solid 10px #ffe558;
  }
  .link-arrow {
    width: 40px;
    height: 40px;
  }
}