/* ================================
   共通設定
================================ */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

/* ================================
   ヘッダー
================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

header nav a {
  margin: 0 15px;
}

.reserve-btn {
  padding: 8px 18px;
  background: #704125;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2px;
  padding: 20px 30px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ================================
   メイン
================================ */
main {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 32px;
}

/* ================================
   グールグルマップ
================================ */


.map-hero {
  max-width: 1100px;     /* main と同じ幅 */
  margin: 80px auto;     /* ← 中央寄せの決定打 */
  padding: 0 20px;
}

.map-hero iframe {
  width: 100%;
  height: 450px;         /* お好みで調整OK */
  border: 0;
  border-radius: 12px;
}


/* ================================
   下部コンテンツ（左右）
================================ */
.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 左：情報 */
.contact-left {
  flex: 1;
}

/* 右：フォーム */
.contact-right {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

/* ================================
   情報ボックス
================================ */
.info-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid #704125;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #704125;
}

.info-box p,
.info-box li {
  font-size: 14px;
  line-height: 1.7;
}

ul {
  padding-left: 18px;
}

/* ================================
   フォーム
================================ */
label {
  display: block;
  font-size: 14px;
  margin-top: 12px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  margin-top: 20px;
  width: 100%;
  background: #8b5a3c;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* ================================
   フッター
================================ */
footer {
  background: #f6f6f6;
  padding: 50px 10%;
  font-size: 13px;
}

footer .columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer a {
  display: block;
  margin: 3px 0;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

/* ================================
   モーダル
================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 9999;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.modal-overlay.show .modal-box {
  transform: scale(1);
  opacity: 1;
}

.modal-box button {
  margin-top: 25px;
  padding: 10px 30px;
  background: #333;
  color: #fff;
  border-radius: 6px;
}

/* ================================
   レスポンシブ
================================ */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .map-area iframe {
    height: 280px;
  }
}
