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

.carport-showcase {
  padding: 40px 20px;
  text-align: center;
}

.carport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.carport-item {
  max-width: 420px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carport-item img {
  width: 100%;
  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;
}

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

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

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

  .carport-item {
    max-width: 90%;
  }
}

.carport-ex-heading {
  padding: 40px 20px;
}

.carport-title h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin: 0 auto;
  line-height: 1.4;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .carport-title h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .carport-title h1 {
    font-size: 22px;
    padding: 0 10px;
  }
}

.carport-types-section {
  padding: 40px 20px;
  text-align: center;
}

.carport-types-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.carport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.carport-item {
  max-width: 450px;
  width: 100%;
}

.carport-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carport-description {
  margin-top: clamp(18px,1.25vw,24px);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

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

  .carport-description {
    font-size: 20px;
  }
}

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

  .carport-item {
    max-width: 90%;
  }

  .carport-description {
    font-size: 18px;
    padding: 0 10px;
  }
}

.carport-catalog {
  padding: 40px 20px;
  text-align: center;
}

.carport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.carport-card {
  max-width: 300px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.carport-info {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.carport-info .meisai {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #0077cc;
  text-decoration: underline;
}

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

  .carport-info {
    font-size: 14px;
  }
}

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

  .carport-card {
    max-width: 90%;
  }

  .carport-info {
    font-size: 13px;
    padding: 0 10px;
  }
}

.garage-types {
  padding: 40px 20px;
  text-align: center;
}

.garage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.garage-card {
  max-width: 375px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.garage-info {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.garage-info .meisai {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #0077cc;
  text-decoration: underline;
}

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

  .garage-info {
    font-size: 14px;
  }
}

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

  .garage-card {
    max-width: 90%;
  }

  .garage-info {
    font-size: 13px;
    padding: 0 10px;
  }
}

.garage-port-section {
  padding: 40px 20px;
  text-align: center;
}

.garage-port-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.garage-port-card {
  max-width: 300px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.garage-port-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.garage-port-info {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.garage-port-info .meisai {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #0077cc;
  text-decoration: underline;
}

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

  .garage-port-info {
    font-size: 14px;
  }
}

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

  .garage-port-card {
    max-width: 90%;
  }

  .garage-port-info {
    font-size: 13px;
    padding: 0 10px;
  }
}

.carport-type-list {
  padding: 40px 20px;
  text-align: center;
}

.carport-type-title {
  font-size: clamp(20px,1.56vw,30px);
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.carport-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-bottom: 100px;
}

.carport-type-card {
  max-width: 450px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carport-type-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.carport-type-info {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

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

  .carport-type-info {
    font-size: 14px;
  }
}

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

  .carport-type-card {
    max-width: 90%;
  }

  .carport-type-info {
    font-size: 13px;
    padding: 0 10px;
  }
}
