/* ==============================
   リセット & ベース設定（スマホ特化）
============================== */
* {
  box-sizing: border-box;
}

body {
  /* 大手企業風のフォント設定（Noto Sans JP） */
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 35px;
  background-color: #f0f8ff; /* ほんのりブルーの背景色 */
  color: #333;
  line-height: 1.6;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* ==============================
 流れるバナー
============================== */
.flow-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: #003366; /* ダークブルー */
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999;
}

.flow-banner-text {
  display: inline-block;
  padding-left: 100%;
  animation: flowScroll 15s linear infinite;
  font-size: 13px;
  line-height: 35px;
  font-weight: 700;
}

.flow-banner .highlight {
  color: #ffd700; /* 目立つようにイエローに */
}

@keyframes flowScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* ==============================
 ファーストビュー（背景画像エリア）
============================== */
#hero-area {
  background-image: url('../img/top02.jpg'); 
  background-size: cover;
  
  /* ▼変更：数値を指定して、左ピッタリ(0%)から少しだけ左へズラす */
  /* 10% の数字を 20%、30% と増やすほど、画像はさらに左へスライドします */
  background-position: 20% center; 
  
  position: relative;
  text-align: center;
}

.hero-overlay {
  /* 白カバーの強さ（0.6） */
  background-color: rgba(255, 255, 255, 0.6); 
  padding: 30px 15px 40px;
}

.hero-mini-catch {
  background-color: #0056b3; /* ブルー */
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.hero-main-copy {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 15px 0;
  color: #222;
}

.text-accent {
  color: #0056b3; /* 強調カラーもブルー系に */
  font-size: 26px;
  display: block;
  margin: 5px 0;
}

.hero-sub-copy {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 25px;
}

/* ==============================
 LINEボタン（CSSデザイン）
============================== */
.cta-wrapper {
  text-align: center;
  margin: 0 auto;
  width: 95%;
  max-width: 350px;
}

.cta-micro-copy {
  font-size: 14px;
  font-weight: 700;
  color: #06c755; /* LINEグリーンに合わせた色 */
  margin: 0 0 8px 0;
  animation: pulse 2s infinite;
}

.cv-link {
  display: block;
  transition: transform 0.2s;
}

.cv-link:active {
  transform: scale(0.95);
}

.line-btn-css {
  background-color: #06c755; /* LINE公式グリーン */
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 16px 10px;
  border-radius: 40px;
  box-shadow: 0 5px 15px rgba(6, 199, 85, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.line-btn-css::before {
  content: "💬"; 
  font-size: 22px;
  margin-right: 8px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* ==============================
 共通セクションスタイル
============================== */
.section-title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 25px 0;
  color: #222;
}

/* ==============================
 こんな悩みありませんか？
============================== */
#worries-area {
  background-color: #fff;
  padding: 40px 15px;
}

.worries-box {
  background-color: #f4f9fd; /* 薄いブルー背景 */
  border: 2px solid #0056b3; /* ブルーの枠線 */
  border-radius: 8px;
  padding: 20px 15px;
  margin-bottom: 20px;
}

.worries-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.worries-list li {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
  text-align: left;
}

.worries-list li:last-child {
  margin-bottom: 0;
}

.worries-list li::before {
  content: "✔";
  color: #0056b3; /* チェックマークもブルー */
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

.worries-solution {
  text-align: center;
}

.solution-accent {
  color: #0056b3; /* ブルーで強調 */
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 5px;
}

.solution-text {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* ==============================
 選ばれる理由
============================== */
#reasons-area {
  padding: 40px 15px;
}

.reason-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,86,179,0.1);
}

.reason-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 10px;
}

.reason-num {
  background-color: #0056b3; /* ブルー */
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.reason-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  color: #222;
}

.reason-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

/* ==============================
 利用者の声
============================== */
#voice-area {
  background-color: #fff;
  padding: 40px 15px;
}

.voice-card {
  background: #f4f9fd; /* 薄いブルー背景 */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* ふきだし風の尻尾 */
.voice-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #f4f9fd transparent transparent transparent;
}

.voice-profile {
  font-size: 13px;
  font-weight: 700;
  color: #777;
  margin-bottom: 5px;
  text-align: left;
}

.voice-title {
  font-size: 16px;
  font-weight: 900;
  color: #0056b3; /* ブルー */
  margin: 0 0 10px 0;
  text-align: left;
}

.voice-desc {
  font-size: 13px;
  color: #444;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

/* ==============================
 クロージング & フッター
============================== */
#closing-area {
  padding: 40px 15px;
  text-align: center;
}

.closing-message {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.closing-strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #0056b3; /* 最後のメッセージもブルーで誠実に */
  margin-top: 10px;
}

#footer-area {
  background-color: #003366; /* ダークブルー */
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 11px;
  color: #ccc;
  margin: 0;
}