/* ============================================
   misato_care12 記事LP v2
   個人ブログ風 / スマホファースト / 丸ゴシック
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #444;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ---- 記事本体 ---- */
.article-body {
  max-width: 640px;
  margin: 0 auto;
}

/* ---- ファーストビュー ---- */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fv-img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.fv-overlay h1 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.fv-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

/* ---- プロフィールバー ---- */
.profile-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0e8df;
  background: #fdfbf7;
}

.profile-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  display: block;
}

.profile-desc {
  font-size: 12px;
  color: #999;
}

/* ---- セクション ---- */
.section {
  padding: 40px 20px;
}

.section-warm {
  background: #fef8f0;
}

/* ---- 見出し ---- */
.section h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f4b8a0;
}

/* ---- 本文 ---- */
.section p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 2.1;
  color: #555;
}

/* ---- シーン挿絵 ---- */
.scene-img {
  display: block;
  width: 100%;
  margin: 28px 0;
  border-radius: 8px;
}

/* ---- 吹き出し ---- */
.balloon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
}

.balloon-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 4px;
}

.balloon-text {
  position: relative;
  background: #fce4d6;
  border-radius: 0 16px 16px 16px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #5a3e2b;
  font-weight: 400;
}

.balloon-text::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #fce4d6 transparent transparent;
}

/* ---- インラインCTA ---- */
.inline-cta {
  text-align: center;
  margin: 36px 0 8px;
  padding: 28px 0;
  border-top: 1px dashed #e0d4c8;
}

.cta-lead {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: #e87461;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 3px 12px rgba(232,116,97,0.3);
}

.cta-btn:hover {
  background: #d4604e;
}

.cta-btn:active {
  transform: scale(0.97);
}

/* ---- フォーム ---- */
.form-section {
  background: #fdfbf7;
  padding: 40px 20px 56px;
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 8px;
}

.form-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #f0e6d3;
}

.form-sub {
  font-size: 13px;
  color: #999;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 5px;
}

.req {
  color: #e05c5c;
  font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid #ddd5ca;
  border-radius: 8px;
  background: #fff;
  color: #333;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e87461;
  box-shadow: 0 0 0 3px rgba(232,116,97,0.12);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: #e87461;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  box-shadow: 0 3px 12px rgba(232,116,97,0.3);
}

.submit-btn:hover {
  background: #d4604e;
}

/* ---- サンクス ---- */
.thanks {
  text-align: center;
  padding: 48px 0;
}

.thanks p {
  font-size: 16px;
  font-weight: 700;
  color: #e87461;
  line-height: 1.8;
}

/* ---- 最後のCTA ---- */
.last-cta {
  text-align: center;
  padding: 32px 20px 40px;
  background: #fff;
}

.last-cta .inline-cta {
  border-top: none;
  margin-top: 20px;
}

/* ---- フッター ---- */
footer {
  padding: 28px 20px;
  text-align: center;
  background: #f5f0e8;
}

.disclaimer {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 11px;
  color: #aaa;
  text-decoration: underline;
}

/* ---- レスポンシブ ---- */
@media (min-width: 768px) {
  .fv-overlay h1 { font-size: 26px; }
  .section h2 { font-size: 22px; }
  .section p { font-size: 16px; }
}
