@charset "utf-8";
/** {
  outline: 1px solid red;
}*/
body {
  margin: 0;
}

/*exterior共通メニュー*/
.menu-buttons {
  padding: 250px 20px 0;
  text-align: center;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 50px;
  justify-content: center;
}

.menu-button {
  display: inline-block;
  padding: 20px 15px;
  min-width: 140px;
  background-color: #edaf4c;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 5px 5px 8px #979797;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.5;
}

.menu-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu-button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .button-grid {
    gap: 16px;
  }

  .menu-button {
    min-width: 120px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .button-grid {
    flex-direction: column;
    align-items: center;
  }

  .menu-button {
    width: 90%;
  }
}
/*exterior共通メニュー　ここまで*/

.exterior-banner-section {
  padding: 60px 20px;
}

.exterior-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.exterior-banner-container img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

.exterior-banner-title {
  font-size: clamp(24px,1.87vw,36px);
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #333;
  text-align: center;
}

/* スマホ対応：フォントサイズ調整 */
@media (max-width: 768px) {
  .exterior-banner-title {
    font-size: 1.6rem;
  }
}

.exterior-style-section {
  padding: 60px 20px;
}

.exterior-style-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.exterior-style-side-image {
  flex: 1 1 300px;
  text-align: center;
}

.exterior-style-side-image img {
  width: 100%;
  max-width: 370px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

.exterior-style-content {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exterior-style-block img {
  width: 100%;
  max-width: 430px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
  margin-bottom: 15px;
}

.exterior-style-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0066cc;
}

.exterior-style-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

/* スマホ対応：縦並びに切り替え */
@media (max-width: 768px) {
  .exterior-style-container {
    flex-direction: column;
    align-items: center;
  }

  .exterior-style-side-image img {
    max-width: 100%;
  }

  .exterior-style-block img {
    max-width: 100%;
  }

  .exterior-style-content {
    width: 100%;
  }
}

.exterior-consult-section {
  padding: 60px 20px;
}

.exterior-consult-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.exterior-consult-text {
  flex: 1 1 250px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.exterior-consult-text p {
  margin-bottom: 10px;
}

.exterior-consult-image {
  flex: 1 1 640px;
  text-align: center;
}

.exterior-consult-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

/* スマホ対応：縦並びに切り替え */
@media (max-width: 768px) {
  .exterior-consult-container {
    flex-direction: column;
    align-items: center;
  }

  .exterior-consult-text {
    text-align: center;
  }

  .exterior-consult-image img {
    max-width: 100%;
  }
}

.exterior-message-section {
  padding: 60px 20px;
}

.exterior-message-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.exterior-message-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 80px;
}

.exterior-message-container img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

/* スマホ対応：フォントサイズ調整 */
@media (max-width: 768px) {
  .exterior-message-container h2 {
    font-size: 1.3rem;
  }
}

.exterior-gallery-section {
  padding: 60px 20px;
}

.exterior-gallery-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.exterior-gallery-container img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

/* スマホ対応：1列表示に切り替え */
@media (max-width: 768px) {
  .exterior-gallery-container {
    grid-template-columns: 1fr;
  }
}

.exterior-detail-gallery {
  padding: 60px 20px;
}

.exterior-detail-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.exterior-detail-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

/* 下段1枚だけ中央揃え */
.exterior-detail-container img:nth-child(4) {
  grid-column: 1 / -1;
  justify-self: center;
}

/* スマホ対応：縦並びに切り替え */
@media (max-width: 768px) {
  .exterior-detail-container {
    grid-template-columns: 1fr;
  }

  .exterior-detail-container img:nth-child(4) {
    grid-column: auto;
  }
}

.exterior-tile-gallery {
  padding: 60px 20px;
}

.exterior-tile-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.exterior-tile-container img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

/* スマホ対応：1列表示に切り替え */
@media (max-width: 768px) {
  .exterior-tile-container {
    grid-template-columns: 1fr;
  }
}

.fence-product-section {
  padding: 60px 20px;

}

.fence-product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.fence-card {
  flex: 1 1 360px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow:  5px 5px 8px #979797;
  padding: 20px;
  text-align: center;
}

.fence-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
}

.fence-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.fence-card p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #555;
}

.fence-card .price {
  color: #ff0000;
  font-weight: bold;
  margin-bottom: 12px;
}

.detail-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #0066cc;
  text-decoration: underline;
  margin-top: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .fence-card {
    flex: 1 1 100%;
  }
}

.storage-unit-section {
  padding: 60px 20px;
}

.storage-unit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-bottom: 100px;
}

.storage-card {
  flex: 1 1 360px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 5px 5px 8px #979797;
  padding: 20px;
  text-align: center;
}

.storage-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
}

.storage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.storage-card p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #555;
}

.storage-card .price {
  color: #ff0000;
  font-weight: bold;
  margin-bottom: 12px;
}

.detail-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #0066cc;
  text-decoration: underline;
  margin-top: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .storage-card {
    flex: 1 1 100%;
  }
}
