/* =========================
   共通
========================= */
body {
  margin: 0;
  font-family: Meiryo, sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   上部お知らせ帯
========================= */
.notice {
  background: #ece7d5;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* =========================
   ヘッダー
========================= */
.header {
  background: #f0f0f0;
  border-bottom: 1px solid #ccc;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

/* ロゴ */
.logo img {
  height: 50px;
}

/* メニュー */
.nav a {
  margin-left: 25px;
  font-weight: bold;
  color: #333;
}

.nav a:hover {
  color: #0077aa;
}

/* =========================
   スライド
========================= */
.slider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

/* 中央テキスト */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  border-radius: 5px;
}

/* =========================
   セクション共通
========================= */
.section {
  padding: 40px 20px;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* =========================
   重要なお知らせ
========================= */
.news-section {
  background: #f5f5f5;
}

/* 赤枠 */
.news-box {
  border: 2px solid #cc0000;
  border-radius: 6px;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* タイトル（隙間修正） */
.news-box h2 {
  margin: 0 0 10px;
  color: #cc0000;
}

/* 本文 */
.news-box p {
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

/* ボタン */
.news-btn {
  margin-top: 20px;
}

.btn-contact {
  display: inline-block;
  padding: 15px 40px;
  background: #0077aa;
  color: #fff;
  border-radius: 5px;
}

/* =========================
   サービス
========================= */
.service-section {
  background: #eee;
}

/* =========================
   拠点情報（location.html）
========================= */
.location-box {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

/* MAP中央 */
.map-wrap iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: 0;
  display: block;
  margin: 0 auto;
}

/* アクセス文 */
.access {
  margin-top: 15px;
  line-height: 1.7;
}

/* =========================
   コンタクトフォーム
========================= */
.form-container {
  max-width: 900px;
  margin: 10px auto 30px;
  text-align: center;
}

.form-container iframe {
  width: 100%;
  max-width: 800px;
  min-height: 1600px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* =========================
   お問い合わせページ
========================= */

/* 共通BOX */
.contact-box {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

/* タイトル */
.contact-box h3 {
  margin-bottom: 15px;
}

/* =========================
   電話
========================= */
.tel-box {
  text-align: center;
}

/* 電話ボタン */
.tel-btn {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-size: 22px;
  padding: 15px 30px;
  border-radius: 6px;
  margin: 10px 0;
}

.tel-btn:hover {
  background: #990000;
}

/* =========================
   フォーム
========================= */
.form-box {
  text-align: center;
}

.form-container iframe {
  width: 100%;
  max-width: 800px;
  min-height: 1600px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* =========================
   スマホ
========================= */
@media(max-width:768px){

  .tel-btn {
    font-size: 18px;
    width: 80%;
  }

  .form-container iframe {
    min-height: 1700px;
  }

}


/* =========================
   フッター
========================= */
.footer {
  background: #000;
  color: #fff;
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
}

.copy {
  font-size: 12px;
  margin-top: 10px;
}

/* =========================
   スマホ対応
========================= */
@media(max-width:768px){

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin: 0 10px;
  }

  .slider {
    height: 250px;
  }

  .slide-text {
    font-size: 16px;
    padding: 10px 15px;
  }

  .news-box {
    padding: 15px;
