@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-promo {
  padding: 40px 20px;
  text-align: center;
}

.exterior-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.exterior-message h1 {
  font-size: clamp(24px,1.87vw,36px);
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #333;
  margin-top: 80px;
  line-height: 1.6;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .exterior-message h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .exterior-message h4 {
    font-size: 16px;
    padding: 0 10px;
  }
}

.exterior-layout {
  padding: 40px 20px;
}

.exterior-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.exterior-text {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.exterior-image img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .exterior-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .exterior-text {
    max-width: 90%;
    font-size: clamp(18px,1.25vw,24px);
  }

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

.image-links {
  padding: 40px 20px;
  text-align: center;
}

.image-link-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.image-button {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-button img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

/* レスポンシブ対応 */
@media (min-width: 1024px) {
  .image-link-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 100px;
  }

  .image-button {
    flex: 1 1 45%;
    max-width: 800px;
  }
}
