@charset "UTF-8";

/* --- ページラッパー：グレー背景 --- */
.info-wrapper {
  background: #E9EBEC !important;
  background-image: none !important;
  padding-bottom: 0 !important; /* lower-back-areaとの余白はcards-wrapperで管理 */
}

/* グレー背景上に透過（カード個別で白に） */
.info-wrapper .lower-main-content .info-cards-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  padding: 40px 0 60px !important;
  max-width: 1200px !important;
}

/* --- タイトル + イントロ + TEL カード --- */
.info-top-card {
  background: #fff;
  width: 100%;
  margin: 0 0 20px;
  padding: 50px 60px 50px;
}

/* --- ページタイトル（カード内h1） --- */
.info-page-title {
  font-family: 'Inria Sans', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #294257;
  border-bottom: 1px solid rgba(41, 66, 87, 0.3);
  padding-bottom: 18px;
  margin-bottom: 40px;
  display: block;
  text-align: center;
}

/* --- イントロテキスト --- */
.info-intro {
  font-size: 15px;
  line-height: 2.1;
  color: #3B4E59;
  margin-bottom: 50px;
  text-align: center;
}

/* --- TELセクション（カード内コンテンツ幅に合わせる） --- */
.info-top-card .tel-section {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid #CECECE !important;
  border-image: none !important;
}

/* --- 各コンテンツセクション（個別白カード） --- */
.info-section {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  margin: 0 0 20px;
  padding: 36px 60px 44px 60px;
  border-left: none;
  box-shadow: inset 5px 0 0 0 #368ABF;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-h2 {
  font-size: 18px;
  color: #294257;
  font-weight: 550;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* 営業用見出しのテキストカラー（赤） */
.info-h2.color-red {
  color: #CB0000;
}

.info-section > p {
  font-size: 15px;
  line-height: 1.8;
  color: #3B4E59;
  margin-bottom: 0;
}

/* ボタン */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  min-width: 280px;
  height: 48px;
  font-size: 14px;
  font-weight: 550;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.info-btn-wrap {
  margin-top: 24px;
  text-align: center;
}

.info-btn.btn-blue { background: var(--blue-bright); color: #fff; }
.info-btn.btn-blue:hover { background: var(--btn-hover); }
.info-btn.btn-dark { background: #3B4E59; color: #fff; }
.info-btn.btn-dark:hover { background: var(--btn-hover); }

.info-btn img { transition: transform 0.3s ease; }
.info-btn:hover img { transform: translateX(4px); }


/* ============================
   SP レイアウト
============================ */
@media (max-width: 768px) {
  /* SP：ページ背景を白に */
  .info-wrapper {
    background: #ffffff !important;
  }

  .info-wrapper .lower-main-content .info-cards-wrapper {
    padding: 24px 0 40px !important;
  }

  .info-page-title {
    font-size: 24px;
    padding-bottom: 14px;
    margin-bottom: 28px;
  }

  .info-top-card {
    padding: 28px 20px 28px;
    margin-bottom: 12px;
  }

  .info-intro {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
  }

  /* SP：tel-sectionはコンテンツ幅いっぱい */
  .info-top-card .tel-section {
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
  }

  .info-section {
    padding: 24px 20px 32px 20px;
    box-shadow: inset 4px 0 0 0 #368ABF;
    margin-bottom: 12px;
  }

  .info-h2 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .info-section > p {
    font-size: 14px;
  }

  .info-btn {
    width: 100%;
    min-width: auto;
    padding: 14px 20px;
    font-size: 13px;
  }

  .info-btn-wrap {
    margin-top: 16px;
  }
}


/* TOPへ戻るボタン帯 → lower.css のグローバルスタイルを使用 */
