﻿/* =========================================================
   style.css
   ---------------------------------------------------------
   今回の「起業相談無料相談LP」専用デザインです。
   前向きさ・相談しやすさ・整理感を両立させます。
========================================================= */


/* ---------------------------------------------------------
   ファーストビュー
   上部コピー＋下に相談テーマカードを置く構成
--------------------------------------------------------- */
/* =========================
   FV PC
========================= */

.fv {
  background: #f4f9ff;
  overflow: hidden;
}

.fv__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

/* PCでは、コピー・画像・アイコン・ボタンを配置する */
.fv__main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-areas:
    "copy visual"
    "icons visual"
    "buttons visual";
  align-items: center;
  gap: 24px 48px;
  min-height: 620px;
  padding: 64px 56px 48px;
}

/* title / text */
.fv__copy {
  grid-area: copy;
  z-index: 2;
}

.fv__label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #1f6edb;
  color: #fff;
  font-weight: 700;
}

.fv__title {
  margin: 0 0 22px;
  color: #09224a;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.25;
  font-weight: 900;
}

.fv__title span {
  color: #1f6edb;
}

.fv__lead {
  color: #26394f;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 2;
}

/* image / badge / list */
.fv__visual {
  grid-area: visual;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 0 0 80px;
}

.fv__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

/* 丸いバッジ */
.fv__badge {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #dbe8ff;
  color: #1f6edb;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(9, 34, 74, 0.14);
}

.fv__badge strong {
  font-size: 48px;
  line-height: 1;
}

/* 画像の上のリストカード */
.fv__check-card {
  position: absolute;
  right: 32px;
  bottom: 36px;
  width: 250px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(9, 34, 74, 0.16);
}

.fv__check-card p {
  margin: 0 0 12px;
  font-weight: 800;
  color: #09224a;
}

.fv__check-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv__check-card li {
  position: relative;
  padding-left: 24px;
  margin-top: 8px;
  font-weight: 700;
}

.fv__check-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f6edb;
  font-weight: 900;
}

/* icon の塊 */
.fv__icon-list {
  grid-area: icons;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.fv__icon {
  min-height: 104px;
  padding: 16px 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(9, 34, 74, 0.08);
  text-align: center;
  font-weight: 700;
  color: #09224a;
}

.fv__icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 8px;
}

/* button の塊 */
.fv__buttons {
  position: relative;
  z-index: 3;
  margin: -36px 34px 0;
  grid-area: buttons;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* bottom */
.fv__bottom {
  margin: 0 34px 0;
  padding: 34px 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(9, 34, 74, 0.08);
  transform: translateY(-24px);
}

.fv__bottom-title {
  margin: 0 0 24px;
  color: #09224a;
  text-align: center;
  font-size: 1.5rem;
}

.fv__topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.topic-card {
  display: grid;
  grid-template-columns: 44px 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(9, 34, 74, 0.08);
}

.topic-card__num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1f6edb;
  color: #fff;
  font-weight: 800;
}

.topic-card__icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.topic-card__title {
  margin: 0 0 6px;
  color: #09224a;
  font-size: 1.05rem;
}

.topic-card__text {
  margin: 0;
  color: #4b5f75;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   お悩み訴求
--------------------------------------------------------- */
.problem__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--color-text-light);
}

.problem__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.problem__item {
  position: relative;
  padding: 22px 22px 22px 56px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.problem__item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}

.problem__text {
  text-align: center;
  color: var(--color-main-dark);
  font-weight: 700;
}


/* ---------------------------------------------------------
   無料相談でできること
--------------------------------------------------------- */
.consultation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.consultation-card__title {
  margin-bottom: 12px;
  color: var(--color-main-dark);
  font-size: 1.14rem;
  line-height: 1.5;
}

.consultation-card__text {
  color: var(--color-text-light);
}

.consultation__note {
  margin-top: 20px;
  text-align: center;
  color: var(--color-text-light);
}


/* ---------------------------------------------------------
   こんな方におすすめ
--------------------------------------------------------- */
.target__box {
  padding: 42px 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 247, 238, 0.94), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(198, 110, 78, 0.10);
}

.target__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.target__item {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(28, 107, 111, 0.08);
  font-weight: 700;
}


/* ---------------------------------------------------------
   選ばれる理由
--------------------------------------------------------- */
.reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card__num {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.reason-card__title {
  margin-bottom: 14px;
  color: var(--color-main-dark);
  font-size: 1.14rem;
  line-height: 1.5;
}

.reason-card__text {
  color: var(--color-text-light);
}


/* ---------------------------------------------------------
   サポート内容
--------------------------------------------------------- */
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card__title {
  margin-bottom: 12px;
  color: var(--color-main-dark);
  font-size: 1.14rem;
  line-height: 1.5;
}

.support-card__text {
  color: var(--color-text-light);
}


/* ---------------------------------------------------------
   ご相談の流れ
--------------------------------------------------------- */
.flow__list {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.flow__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.flow__step {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow__title {
  margin-bottom: 8px;
  color: var(--color-main-dark);
  font-size: 1.08rem;
}

.flow__text {
  color: var(--color-text-light);
}


/* ---------------------------------------------------------
   ご利用者の声
--------------------------------------------------------- */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card__title {
  margin-bottom: 14px;
  color: var(--color-main-dark);
  font-size: 1.05rem;
}

.voice-card__text {
  color: var(--color-text-light);
}


/* ---------------------------------------------------------
   相談者情報
--------------------------------------------------------- */
.access__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.access__table {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.access__row {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.access__row:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.access__row dt,
.access__row dd {
  padding: 18px 20px;
}

.access__row dt {
  background: var(--color-sub);
  font-weight: 700;
  color: var(--color-main-dark);
}

.access__visual img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 71, 74, 0.12);
}


/* ---------------------------------------------------------
   FAQ アコーディオン
--------------------------------------------------------- */

.faq__list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq__item {
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: none;
  background: transparent;
  color: var(--color-main-dark);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-main);
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding: 0 24px 24px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* 開いた時 */
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */
.cta {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(28, 107, 111, 0.10), rgba(198, 110, 78, 0.10));
}

.cta__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 36px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(18, 71, 74, 0.10);
}

.cta__sub {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cta__title {
  margin-bottom: 18px;
  color: var(--color-main-dark);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.4;
}

.cta__text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-light);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}


