@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共通メニュー　ここまで*/

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

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

.nature-banner-container img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

.gardenroom-title-section {
  padding: 60px 20px;
}

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

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

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

.gardenroom-section {
  padding: 60px 20px;
}

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

.gardenroom-image {
  flex: 1 1 600px;
  text-align: center;
}

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

.gardenroom-text {
  flex: 1 1 300px;
  font-size: clamp(18px,1.25vw,24px);
  line-height: 1.8;
  color: #333;
}

.gardenroom-text p {
  margin-bottom: 20px;
}

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

  .gardenroom-text {
    text-align: center;
  }
}

.sunroom-section {
  padding: 60px 20px;
}

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

.sunroom-image {
  flex: 1 1 450px;
  text-align: center;
}

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

.sunroom-text {
  flex: 1 1 450px;
  font-size: clamp(18px,1.25vw,24px);
  line-height: 1.8;
  color: #333;
}

.sunroom-text p {
  margin-bottom: 20px;
}

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

  .sunroom-text {
    text-align: center;
  }
}

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

.room-style-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.room-style-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 200px;
  align-items: center;
}

.room-style-images img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
}

.room-style-text {
  flex: 1 1 400px;
  font-size: clamp(18px,1.25vw,24px);
  line-height: 1.8;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

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

  .room-style-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .room-style-text {
    text-align: center;
    margin-top: 30px;
  }

  .room-style-images img {
    max-width: 45%;
    margin: 10px;
  }
}

.sunroom-benefits-section {
  padding: 60px 20px;
}

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

.sunroom-benefits-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.sunroom-benefits-text {
  font-size: clamp(18px,1.25vw,24px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .sunroom-benefits-text {
    text-align: center;
  }

  .sunroom-benefits-gallery img {
    max-width: 100%;
  }
}

.sunroom-type-section {
  padding: 60px 20px;
}

.sunroom-type-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.sunroom-type-item {
  flex: 1 1 400px;
}

.sunroom-type-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.sunroom-type-item img {
  width: 100%;
  max-width: 290px;
  height: auto;
  border-radius: 6px;
  box-shadow: 5px 5px 8px #979797;
  margin-bottom: 20px;
}

.sunroom-type-size {
  font-size: clamp(18px,1.25vw,24px);
  margin-bottom: 10px;
}

.price {
  color: #ff0000;
  font-weight: bold;
}

.sunroom-link {
  color: #0066cc;
  text-decoration: underline;
  font-weight: bold;
}

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

  .sunroom-type-item img {
    max-width: 100%;
  }
}
