@charset "utf-8";

/* =========================
  Base
========================= */
:root {
  --ink: #1b1b1b;
  --muted: #666;
  --accent: #d95f22;
  /* 見出しのオレンジ寄り */
  --cream: #fbf2e3;
  /* 生成り帯 */
  --sand: #efe2b7;
  /* うす黄色の帯 */
  --lightyellow: #FFF7E6;
  /* PROBLEM見出しの薄ベージュ */
  --lineGreen: #00B900;
  /* LINEボタン */
  --contactBg: #e7d89c;
  /* お問い合わせ側 */
  --container: 1080px;
  --gutter: 20px;
  --radius: 10px;
  --iemitsu-yellow: #F1CE00;
  --iemitsu-lightyellow: #EBD984;
}

* {
  box-sizing: border-box;
}

.accent {
  color: var(--accent);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", "Zen Kaku Gothic Antique", Meiryo, sans-serif;
  line-height: 1.7;
  background: #fff;
  padding-bottom: 74px;
  /* 下部固定CTAの分 */
}

  p {
    word-break: break-all !important;
    /* 文字単位での改行を強制 */
    overflow-wrap: anywhere !important;
    /* どこでも切れるようにする */
    /* 	line-break: anywhere!important; */
    display: inline-block !important;
    /*　text-align: left !important;  justifyを解除して左揃えに戻す */
    text-wrap: wrap !important;
  }

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* container */
.lp-container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

/* 英字見出しのデザイン */
.section-title-en {
  /* font-size: clamp(48px, 8vw, 120px); */
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(0, 0, 0, .08) !important;
  /* ←ほぼ透かし */
}


.section-title-en img.iemitsu-face {
    width: clamp(25px, 5.4vw, 48px); /* kickerのfont-sizeの90％ */
    height: clamp(25px, 5.4vw, 48px);
    margin-left: 0.25em;
}

.section-title-en img.iemitsu-body {
    width: clamp(30px, 7.8vw, 100px); /* kickerのfont-sizeの90％ */
    margin-left: 0.25em;
}


.btn-line {
  background-color: var(--lineGreen);
  padding: 5px;
  text-align: center;
  color: #fff;
  display: inline-block;
  width: 8em;
}

/* 管理バーを下に移動 */
#wpadminbar {
  top: auto !important;
  bottom: 0;
}

/* WordPressが自動でつける上マージンを打ち消す */
html {
  margin-top: 0 !important;
}


/* =========================
  Header
========================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

.lp-header__inner {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.lp-header__menuBtn {
  width: 48px;
  height: 48px;
  border: 1px solid #222;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lp-header__menuIcon {
  width: 22px;
  height: 14px;
  position: relative;
}

.lp-header__menuIcon::before,
.lp-header__menuIcon::after,
.lp-header__menuIcon {
  background: none;
}

.lp-header__menuIcon::before,
.lp-header__menuIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
}

.lp-header__menuIcon::before {
  top: 0;
}

.lp-header__menuIcon::after {
  bottom: 0;
}

.lp-header__menuIcon {
  border-top: 2px solid #222;
  border-bottom: 2px solid transparent;
  /* ダミー */
}

/* drawer（将来用） */
.lp-drawer {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.lp-drawer.is-open {
  display: block;
}

.lp-drawer__list {
  list-style: none;
  margin: 0;
  padding: 10px var(--gutter) 16px;
  display: grid;
  gap: 10px;
}

.lp-drawer__list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
}

/* =========================================================
  Page2: PROBLEM（問題提起 / 1-3）
========================================================= */

.lp-problem2 {
  background: #fff;
  padding: 54px 0 100px;
  position: relative;
}

.lp-problem2__inner {
  text-align: center;
}

.lp-problem2__kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-problem2__title {
  width: min(860px, 100%);
  margin: 0 auto 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(18px, 3.2vw, 30px);
}

.lp-problem2__body {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: left;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 2.0;
}

.lp-problem2__body p {
  margin: 0 0 16px;
}


.lp-hl {
  color: var(--accent);
  font-weight: 900;
}

section.lp-problem2:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 50%, var(--cream) 50%);
}

/* =========================================================
  Page2: WHY（なぜいえみつなのか / 1-4）
========================================================= */
.lp-why {
  background: var(--cream);
  padding: 20px 0 80px;
}

.lp-why__inner {
  text-align: center;
}

.lp-why__kicker {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-why__title {
  margin: 0 0 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.35;
  font-size: clamp(20px, 3.4vw, 34px);
}

.lp-why__body {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: left;
  font-size: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}

.lp-why__body p {
  margin: 0 0 16px;
  line-height: 2.0;
}

.lp-why-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* =========================================================
  Page2 : 選択肢ビジュアル導入
========================================================= */
.lp-choicesVisual {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 画像に暗幕をかける */
.lp-choicesVisual__overlay {
  background: rgba(0, 0, 0, .55);
  position: relative;
}

.lp-choicesVisual__bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0.5;
}

.lp-choicesVisual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 中身 */
.lp-choicesVisual__inner {
  /* min-height: 380px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 68px;
  position: relative;
  z-index: 5;
}

/* Plan（小さい英字） */
.lp-choicesVisual__kicker {
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: .08em;
  color: #f3c46b;
  font-size: 18px;
}

/* メイン見出し */
.lp-choicesVisual__title {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .04em;
  font-size: clamp(22px, 3.6vw, 36px);
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 0.25em;
}

/* 説明文 */
.lp-choicesVisual__text {
  margin: 20px 0 14px;
  line-height: 2.0;
  font-size: 20px;
}

/* 注釈 */
.lp-choicesVisual__note {
  margin: 0;
  opacity: .9;
  font-size: 14px;
  line-height: 1.9;
}

/* SP調整 */
@media (max-width: 767px) {
  .lp-choicesVisual__inner {
    /* min-height: 300px; */
    padding: 44px 0 48px;
  }

  .lp-choicesVisual__title {
    font-size: 22px;
  }
}


/* =========================================================
  Choices intro
========================================================= */
.lp-choicesIntro {
  padding: 44px 0 10px;
  text-align: center;
}

.lp-choicesIntro__title {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.2vw, 30px);
}

.lp-choicesIntro__lead {
  width: min(760px, 100%);
  margin-inline: auto;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 2.0;
}

.lp-choicesIntro__lead p {
  margin: 0 0 14px;
}

/* =========================================================
  6パターン一覧（文字のみ）
========================================================= */
.lp-choiceList {
  padding: 30px 0 72px;
  background: #fff;
}

.lp-choiceList__title {
  margin: 0 0 36px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.5;
  font-size: clamp(20px, 3.2vw, 32px);
}

.lp-choiceList__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

/* 1項目 */
.lp-choiceList__item {
  /* padding: 22px 20px; */
  border: 1px solid rgba(0, 0, 0, .12);
  background: #faf7f1;
  text-align: center;
  display: grid;
    /* justify-content: center;
    align-items: center;
    grid-template-rows: 2.5fr 1fr; */
}

/* タイトル文字 */
.lp-choiceList__name {
  margin: 0;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 20px;
  color: #1b1b1b;
  padding: 10px;
}

.lp-choiceList__name span {
  color: var(--accent);
  display: block;
  font-weight: 900;
}

/* PCでは2カラム */
@media (min-width: 768px) {
  .lp-choiceList__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
  }
}

/* SPでは余白を少し詰める */
@media (max-width: 767px) {
  .lp-choiceList {
    padding: 24px 0 56px;
  }

  .lp-choiceList__name {
    font-size: 18px;
  }

  .lp-choiceList__name span {
    display: inline;
    font-weight: 400;
  }
}

/* =========================================================
  STRENGTHS（PDFレイアウト版：SPでも横並び維持）
========================================================= */
.lp-strengths2 {
  padding: 70px 0 78px;
  background: #fff;
}

.lp-strengths2__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-strengths2__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

.lp-strengths2__list {
  display: grid;
  gap: 26px;
}

/* ---------------------------------------------------------
  1ブロック：基本（SPは横並び／grid-areasで安定）
--------------------------------------------------------- */
.lp-strength2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "head media";
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
}

/* テキスト側 */
.lp-strength2__head {
  grid-area: head;
  min-width: 0;
  /* 折返し安全 */
}

/* 円画像側 */
.lp-strength2__media {
  grid-area: media;
  margin: 0;
  width: clamp(92px, 24vw, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  justify-self: end;
}

.lp-strength2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 番号 */
.lp-strength2__no {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1;
}

/* 見出し */
.lp-strength2__heading {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1.6;
  font-size: clamp(15px, 3.5vw, 30px);
}

/* 詳しく見る（あなたの現状デザインを維持） */
.lp-strength2__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: #fff;
  background: var(--accent);
  padding: 10px;
  letter-spacing: .02em;
  text-underline-offset: 4px;
  font-size: 14px;
}

/* 下のオレンジ線 */
.lp-strength2__line {
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  margin-top: 10px;
}

/* ---------------------------------------------------------
  SP（〜767px）：2番だけ画像を左に（交互配置）
  ※ orderは使わない（崩れ防止）
--------------------------------------------------------- */
@media (max-width: 767px) {
  .lp-strength2--left {
    grid-template-columns: auto 1fr;
    grid-template-areas: "media head";
  }

  .lp-strength2--left .lp-strength2__media {
    justify-self: start;
  }

  .lp-strength2__heading {
    display: inline-block!important;
  }
}

/* ---------------------------------------------------------
  768px以上：1〜3すべて「画像左／文字右」に統一
--------------------------------------------------------- */
@media (min-width: 768px) {

  .lp-strength2,
  .lp-strength2--left {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 160px 1fr;
    grid-template-areas: "media head";
  }

  .lp-strength2__media,
  .lp-strength2--left .lp-strength2__media {
    justify-self: start;
  }
}

/* PC（1024px以上）：余白と画像サイズ */
@media (min-width: 1024px) {
  .lp-strength2 {
    gap: 22px;
    padding-bottom: 18px;
  }

  .lp-strength2__heading {
    font-size: clamp(18px, 4vw, 26px);
  }

  .lp-strength2__media {
    width: clamp(140px, 20vw, 240px);
  }

  .lp-strength2,
  .lp-strength2--left {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 260px 1fr;
    grid-template-areas: "media head";
  }

  .lp-strengths2 .lp-container {
  width: min(860px, 100%);
}

}


/* =========================================================
  OUR POLICY（3つのお約束）
========================================================= */
.lp-policy {
  padding: 72px 0 80px;
  background: #fff;
}

.lp-policy__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(28px, 6vw, 54px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-policy__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

.lp-policy__list {
  display: grid;
  gap: 28px;
}

/* 1アイテム */
.lp-policyItem {
  position: relative;
  padding-bottom: 18px;
  display: grid;
      grid-template-columns: 1fr 150px;
    gap: 15px;
    width: 100%;
    /* max-width: 700px; */
    margin: 0 auto;
    border-bottom: 2px solid var(--accent);
}

/* 数字：控えめ・補助的に */
.lp-policyItem__no {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .35);
  /* 強みと被らない薄さ */
  font-size: 14px;
  display: none;
}

/* 見出し：アクセント背景＋白文字 */
.lp-policyItem__heading {
  display: inline-block;
  /* 帯感を出す */
  margin: 0 0 14px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.5;
  font-size: clamp(16px, 2.8vw, 22px);
}

.lp-policyItem__text {
  line-height: 2.0;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.lp-policyItem__text p {
  margin: 0 0 6px;
  display: inline-block !important;
}

/* 下線（PDFのオレンジ線の雰囲気） */
.lp-policyItem__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  margin-top: 14px;
}

.lp-policyItem .inner-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.lp-policyItem .inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PCは横幅をやや締めて読みやすく */
@media (min-width: 1024px) {
  .lp-policy__list {
    width: min(860px, 100%);
    margin-inline: auto;
  }

  /* PCでは少しだけ余白を広げる */
  .lp-policyItem__heading {
    padding: 12px 20px;
    font-size: clamp(18px, 2vw, 24px);
  }
}


@media screen and (max-width: 768px) {
  .lp-policyItem {
    grid-template-columns: 1fr;
  }

  .lp-policyItem .inner-img {
    aspect-ratio: 16/9;
  }

  .lp-policyItem__text p {
    font-size: 90%;
    line-height: 1.6;
}

.lp-policyItem__heading {
  margin-bottom: 10px;
}
}

/* =========================================================
  FLOW（縦ライン＋丸番号）
========================================================= */
.lp-flow {
  padding: 72px 0 80px;
  /* background: var(--cream); */
  position: relative;
}

.lp-flow__bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0.5;
}

.lp-flow .lp-container {
  position: relative;
  z-index: 5;
}

.lp-flow__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.lp-flow__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--lightyellow);
  font-size: clamp(28px, 6vw, 54px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-flow__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

/* 右側テキスト */
.lp-flow__body {
  padding-top: 2px;
}

.lp-flow__text:last-child {
  margin-bottom: 0;
}

.lp-flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  /* width: min(500px, 100%); */
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.lp-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}

/* 丸番号 */
.lp-flow__dot {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  /* 線より前 */
}

/* 線：各liの「中央」から上下に伸ばす */
.lp-flow__item::before {
  content: "";
  position: absolute;
  left: 30px;
  /* 丸の中心（lp-flow__dotの半分）に合わせる */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 1;
}

/* ①：上には伸ばさない */
.lp-flow__item:first-child::before {
  top: 50%;
}

/* 最後：下には伸ばさない */
.lp-flow__item:last-child::before {
  bottom: 50%;
}

/* テキスト */
.lp-flow__text {
  margin: 0;
  color: #333;
  line-height: 1.9;
  font-size: 20px;
  background: #fff;
  padding: 10px 15px;
  display: flex!important;
  align-items: center;
}

/* SP微調整 */
@media (max-width: 767px) {
  .lp-flow__item {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }

  .lp-flow__dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  /* 線より前 */
}

  .lp-flow__item::before {
    left: 20px;
  }

  .lp-flow__text {
    font-size: 18px;
    padding: 10px;
  }
}

@media screen and (min-width:1024px) {
  .lp-flow {
    margin-top: 40px;
  }
}

.lp-flow__item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .55s ease,
    transform .55s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.lp-flow__item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* アニメ苦手な人の設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .lp-flow__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   FAQ (accordion)
========================================================= */
#sec-faq {
  padding: 72px 0 80px;
  background: #fff;
}

.faq__title{
  text-align: center;
  line-height: 1.1;
  margin: 0 0 18px;
}
.faq__titleEn{
  display:block;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--iemitsu-lightyellow);
  font-size: clamp(22px, 3.2vw, 34px);
}
.faq__titleJa{
  display:block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(18px, 2.6vw, 26px);
}

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

/* item */
.faqItem{
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
}
.faqItem__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #222;
}
.faqItem__q::-webkit-details-marker{ display:none; } /* Safari/Chrome */

.faqItem__badge{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.faqItem__badge--q{
  background: var(--accent);
  color:#fff;
}
.faqItem__badge--a{
  background: #ffffff;
  color:#666;
  border: 1px solid rgba(0,0,0,.12);
}

.faqItem__qText{
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.4;
}

/* plus / minus */
.faqItem__icon{
  width: 24px;
  height: 24px;
  position: relative;
  justify-self: end;
}
.faqItem__icon::before,
.faqItem__icon::after{
  content:"";
  position:absolute;
  inset: 50% 0 auto 0;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
  transform: translateY(-50%);
}
.faqItem__icon::after{
  width: 4px;
  height: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* answer */
.faqItem__a{
  padding: 0 16px 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
}
.faqItem__aText{
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.7;
}

/* open state */
.faqItem[open] .faqItem__q{
  padding-bottom: 10px;
}
.faqItem[open] .faqItem__icon::after{
  opacity: 0; /* + の縦棒を消して - にする */
}
