/* ==============================
   リセット & ベース設定（スマホ特化）
============================== */
* {
  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: #f1f8e9; /* 薄いグリーンの背景色 */
  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: #1b5e20; /* ダークグリーン */
  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: #ffeb3b; /* イエロー */
}

@keyframes flowScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* ==============================
 ファーストビュー（背景画像エリア）
============================== */
#hero-area {
  background-image: url('../img/top02.jpg'); 
  background-size: cover;
  background-position: 75% center; /* 以前の調整を引き継ぎ */
  position: relative;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.65); /* 透け感 */
  padding: 30px 15px 40px;
}

.hero-mini-catch {
  background-color: #d32f2f; /* キャンペーンを目立たせるために赤系に */
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 4px; /* 丸みから四角っぽく変更し別サイト感を出す */
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-main-copy {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 15px 0;
  color: #222;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.text-accent {
  color: #2e7d32; /* グリーンで強調 */
  font-size: 28px;
  display: block;
  margin: 5px 0;
  border-bottom: 3px solid #2e7d32;
  display: inline-block;
  padding-bottom: 4px;
}

.hero-sub-copy {
  font-size: 15px;
  font-weight: 700;
  color: #444;
  margin-top: 20px;
  margin-bottom: 25px;
}

/* ==============================
 LINEボタン（別サイト風の立体デザイン）
============================== */
.cta-wrapper {
  text-align: center;
  margin: 0 auto;
  width: 95%;
  max-width: 350px;
}

.cta-micro-copy {
  font-size: 14px;
  font-weight: 700;
  color: #d32f2f; /* 赤で緊急性 */
  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: 8px; /* 丸ボタンから角丸に変更 */
  box-shadow: 0 4px 0 #049640; /* 立体的なボタンデザインに変更 */
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.line-btn-css:active {
  transform: translateY(4px);
  box-shadow: none;
}

.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: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 30px 0;
  color: #1b5e20; /* タイトルもグリーンに変更 */
  border-bottom: 2px dashed #81c784;
  padding-bottom: 10px;
}

/* ==============================
 こんな悩みありませんか？
============================== */
#worries-area {
  background-color: #fff;
  padding: 40px 15px;
}

.worries-box {
  background-color: #fff;
  border: 3px solid #e0e0e0;
  border-top: 5px solid #2e7d32; /* 上だけグリーンのアクセント */
  border-radius: 4px;
  padding: 20px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.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: 28px;
  text-align: left;
}

.worries-list li:last-child {
  margin-bottom: 0;
}

/* チェックマークを四角に変更してデザインの差別化 */
.worries-list li::before {
  content: "■";
  color: #2e7d32;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 2px;
}

.worries-solution {
  text-align: center;
  background-color: #e8f5e9; /* 薄いグリーンの背景 */
  padding: 15px;
  border-radius: 8px;
}

.solution-accent {
  color: #2e7d32;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 5px;
}

.solution-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* ==============================
 選ばれる理由
============================== */
#reasons-area {
  padding: 40px 15px;
}

.reason-card {
  background: #fff;
  border-radius: 0; /* 四角くしてカッチリ感を出す */
  border-left: 4px solid #2e7d32; /* 左側に緑のライン */
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.reason-head {
  display: flex;
  flex-direction: column; /* 縦並びに変更 */
  align-items: flex-start;
  margin-bottom: 10px;
}

.reason-num {
  background-color: #2e7d32;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 10px;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.reason-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  color: #222;
}

.reason-desc {
  font-size: 14px;
  color: #444;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

/* ==============================
 利用者の声
============================== */
#voice-area {
  background-color: #fff;
  padding: 40px 15px;
}

.voice-card {
  background: #fff;
  border: 1px solid #c8e6c9; /* 薄いグリーンの枠線 */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* ふきだしを無くし、シンプルなカードに変更 */

.voice-profile {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
  text-align: left;
  background-color: #e8f5e9;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
}

.voice-title {
  font-size: 16px;
  font-weight: 900;
  color: #1b5e20;
  margin: 0 0 10px 0;
  text-align: left;
}

.voice-desc {
  font-size: 13px;
  color: #333;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

/* ==============================
 クロージング & フッター
============================== */
#closing-area {
  padding: 40px 15px;
  text-align: center;
  background-color: #e8f5e9; /* クロージングエリアの背景をグリーンに */
}

.closing-message {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.closing-strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #2e7d32;
  margin-top: 10px;
}

#footer-area {
  background-color: #1b5e20; /* ダークグリーン */
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 11px;
  color: #e0e0e0;
  margin: 0;
}