@charset "UTF-8";
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  /* カラー */
  --color-black: #333333;
  --color-white: #ffffff;
  --color-gray: #757575;
  --color-lightgray: #E0E0E0;
  --color-main: #003366;
  --color-base: #f9f9f9;
  --color-accent: #FF8C00;
  --color-btn: #E64A19;
  --color-wgray: #e4ded5;
  /* フォント */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Josefin Sans", sans-serif;
}

/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
リセット & 初期設定
---------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-ja);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 87.5%;
    /* 14px相当 */
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
    /* 16px相当 */
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--color-white);
  margin: 0;
  min-height: 100%;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/* メディア要素 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* タイポグラフィ・リスト・リンクのリセット */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  overflow-wrap: break-word;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* フォーム要素のリセット */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-moz-placeholder {
  opacity: 1;
  color: var(--color-gray);
}

::placeholder {
  opacity: 1;
  color: var(--color-gray);
}

/* アクセシビリティ */
:focus-visible {
  outline: 2px solid var(--color-base);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*---------------------------------------------
アニメーション (JS制御用クラス)
---------------------------------------------*/
[data-anime=fadeUp],
[data-anime=slideRight],
[data-anime=slideLeft] {
  opacity: 0;
}

[data-anime=fadeUp] {
  transform: translateY(30px);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-active {
  opacity: 1;
  transform: translateY(0);
}

[data-anime=slideRight] {
  transform: translateX(-100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideRight].is-active {
  opacity: 1;
  transform: translateX(0);
}

[data-anime=slideLeft] {
  transform: translateX(100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideLeft].is-active {
  opacity: 1;
  transform: translateX(0);
}

/*---------------------------------------------
共通レイアウト (Common)
---------------------------------------------*/
@media screen and (min-width: 768px) {
  body {
    min-width: 1080px;
  }
}

@media screen and (min-width: 768px) {
  main {
    min-width: 1080px;
    overflow: hidden;
  }
}

.l-container {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .l-container {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-inner {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* flex utility */
.u-fbox_pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-fbox_pc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

.u-fbox_sp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .u-fbox_sp {
    display: block;
  }
}

.u-fbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*---------------------------------------------
文字
---------------------------------------------*/
h2,
h3,
h4,
h5,
h6,
dt,
dd,
li {
  line-height: 1.4;
}

p {
  letter-spacing: 0.08em;
  line-height: 1.875;
}

.u-nowrap {
  white-space: nowrap;
}

.fs-small {
  font-size: 0.75em;
}

.fs-large {
  font-size: 1.75em;
}

/*---------------------------------------------
モジュール (Components) - ボタン共通化
---------------------------------------------*/
/* 各セクションで使用するボタンクラス（モジュールを呼び出し） */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-btn);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.4;
  padding: 20px 40px;
  font-size: 1.25rem;
}
.btn-primary:hover {
  background-color: var(--color-accent);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-btn);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.4;
  width: 100%;
  padding: 20px;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
}
.btn-submit:hover {
  background-color: var(--color-accent);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*---------------------------------------------
ヘッダー (.header)
---------------------------------------------*/
.header {
  /* 右側：連絡先とCTA */
  /* ボタン：テキストを内包し2行構成に */
}
@media screen and (min-width: 768px) {
  .header {
    background-color: var(--color-main);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    box-shadow: 0 3px 6px rgba(0, 51, 102, 0.2235294118);
  }
}
@media screen and (max-width: 767px) {
  .header {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .header .header-content {
    padding: 0.5em 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .header .header-content {
    padding: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .header .header-content {
    display: contents;
  }
}
.header .header-left {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header .header-left {
    background-color: var(--color-base);
    color: var(--color-main);
    /* 親の l-container が消えるため、左右にパディングを補完 */
    padding: 5px 15px;
    gap: 10px;
  }
}
.header .header-catch {
  font-size: 3vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header .header-catch {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 3px;
  }
}
.header .header-company {
  gap: 8px;
}
.header .header-company .header-company-logo {
  display: block;
}
.header .header-company .header-company-logo img {
  height: 7.2vw;
  width: auto;
}
@media screen and (min-width: 768px) {
  .header .header-company .header-company-logo img {
    height: 48px;
  }
}
.header .header-company .header-company-name {
  color: var(--color-main);
  font-size: 4.7vw;
  font-weight: 700;
  line-height: 0.65;
}
@media screen and (min-width: 768px) {
  .header .header-company .header-company-name {
    font-size: 1.8rem;
    color: var(--color-white);
  }
}
.header .header-company .header-company-name .fs-small {
  font-size: 0.35em;
}
@media screen and (max-width: 767px) {
  .header .header-right {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-main);
    box-shadow: 0 3px 6px rgba(0, 51, 102, 0.2235294118);
    justify-content: space-between;
    /* 親の l-container が消えるため、左右にパディングを補完 */
    padding: 0.5em 15px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-right {
    gap: 25px;
  }
}
.header .header-contact .header-contact-icon {
  width: 5vw;
  margin-right: 1vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header .header-contact .header-contact-icon {
    width: 32px;
    margin-right: 4px;
  }
}
.header .header-tel {
  font-family: var(--font-en);
  font-size: 6.2vw;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .header .header-tel {
    font-size: 2rem;
  }
}
.header .header-time {
  font-size: 2vw;
  background-color: var(--color-white);
  color: var(--color-main);
  text-align: center;
  border-radius: 32px;
}
@media screen and (min-width: 768px) {
  .header .header-time {
    font-size: 0.7rem;
  }
}
.header .btn-header {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-btn);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.4;
  flex-direction: column;
  padding: 1vw 4.2vw;
  line-height: 1.2;
}
.header .btn-header:hover {
  background-color: var(--color-accent);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.header .btn-header:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .header .btn-header {
    padding: 10px 20px;
  }
}
.header .btn-header .btn-header-sub {
  display: block;
  width: 100%;
  font-size: 2.5vw;
  font-weight: 700;
  margin-bottom: 0.25em;
  background-color: var(--color-white);
  color: var(--color-main);
  border-radius: 10px;
  padding: 0.25em;
}
@media screen and (min-width: 768px) {
  .header .btn-header .btn-header-sub {
    font-size: 0.7rem;
  }
}
.header .btn-header .btn-header-main {
  display: block;
  font-size: 4vw;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header .btn-header .btn-header-main {
    font-size: 1.125rem;
  }
}

/*---------------------------------------------
ヒーロー (.hero)
---------------------------------------------*/
/* 67月用のヒーローヘッダー */
.hero-special-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-special-content {
    position: static;
    width: 780px;
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero {
  position: relative;
  width: 100%;
  background: url(../img/lp/hero-bk_sp.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .hero {
    background: url(../img/lp/hero-bk_pc.webp) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 40;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  background-color: var(--color-accent);
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.24;
  width: 70%;
  padding-top: 12%;
}
@media screen and (min-width: 768px) {
  .hero::before {
    width: 40%;
    padding-top: 5%;
  }
}
.hero .hero-content {
  position: relative;
  z-index: 50;
  height: 0;
  padding-top: 178%;
}
@media screen and (min-width: 768px) {
  .hero .hero-content {
    padding-top: 0;
    height: 740px;
  }
}
.hero .hero-content .hero-title {
  position: absolute;
  width: 70vw;
  right: auto;
  left: 0;
  top: 12vw;
}
@media screen and (min-width: 768px) {
  .hero .hero-content .hero-title {
    width: 400px;
    right: 90px;
    left: auto;
    top: 30px;
  }
}
.hero .hero-content .hero-stats {
  position: absolute;
  width: 65vw;
  left: 0;
  top: 1vw;
}
@media screen and (min-width: 768px) {
  .hero .hero-content .hero-stats {
    width: 426px;
    left: 5px;
    top: 15px;
  }
}
.hero .hero-content .hero-service {
  position: absolute;
  width: 65vw;
  left: 0;
  top: 46vw;
}
@media screen and (min-width: 768px) {
  .hero .hero-content .hero-service {
    width: 420px;
    left: 0;
    top: 90px;
  }
}
.hero .hero-bottom-content-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-main);
}
.hero .hero-bottom-content-wrap::before {
  content: "";
  width: 100%;
  height: 9vw;
  background: #ffffff;
  position: absolute;
  top: 13.5vw;
  left: 0;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .hero .hero-bottom-content-wrap {
    padding-top: 0;
    background: linear-gradient(to left, rgba(0, 51, 102, 0.2235294118) 0%, #003366 50%, #003366 100%);
    left: 0;
    bottom: 0;
  }
  .hero .hero-bottom-content-wrap::before {
    content: "";
    width: 100%;
    height: 50px;
    background: #ffffff;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.512) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
    position: absolute;
    top: 0;
  }
}
.hero .hero-bottom-content-wrap .hero-bottom-content {
  padding-top: 58%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .hero .hero-bottom-content-wrap .hero-bottom-content {
    padding-top: 0;
    height: 260px;
  }
}
.hero .hero-bottom-content-wrap .hero-features {
  position: absolute;
  z-index: 70;
  width: 66vw;
  top: -7.5vw;
  left: auto;
  right: 4vw;
}
@media screen and (min-width: 768px) {
  .hero .hero-bottom-content-wrap .hero-features {
    width: 420px;
    top: -15px;
    left: 0;
    right: auto;
  }
}
.hero .hero-bottom-content-wrap .hero-house {
  position: absolute;
  width: 40vw;
  left: -4vw;
  top: -10vw;
  bottom: auto;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .hero .hero-bottom-content-wrap .hero-house {
    width: 460px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: 40px;
  }
}
.hero .hero-bottom-content-wrap .hero-reason {
  position: absolute;
  z-index: 60;
  width: 80vw;
  top: 14vw;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .hero .hero-bottom-content-wrap .hero-reason {
    width: 380px;
    top: 15px;
    left: auto;
    right: 20px;
    transform: none;
  }
}

/*---------------------------------------------
CTAトップ (.cta-top)
---------------------------------------------*/
.cta-top {
  background-color: var(--color-base);
  padding-top: 0;
  padding-bottom: 0;
  /* 電話番号エリア */
}
.cta-top .cta-top-content {
  background-color: var(--color-white);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  position: relative;
  z-index: 80;
  margin-top: -8vw;
}
@media screen and (min-width: 768px) {
  .cta-top .cta-top-content {
    width: 880px;
    margin: -80px auto 0;
    padding: 60px 40px;
    border-radius: 20px;
  }
}
.cta-top h2 {
  font-size: 5.5vw;
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .cta-top h2 {
    font-size: 2.25rem;
  }
}
.cta-top p {
  font-size: 3.8vw;
  line-height: 1.7;
  margin-bottom: 1.5em;
  font-weight: 800;
  color: var(--color-gray);
}
@media screen and (min-width: 768px) {
  .cta-top p {
    font-size: 1.125rem;
    padding: 0 2em;
  }
}
.cta-top .cta-buttons {
  margin-bottom: 1.2em;
}
@media screen and (min-width: 768px) {
  .cta-top .cta-buttons {
    margin-bottom: 1.5em;
  }
}
.cta-top .cta-phone {
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.cta-top .cta-phone-icon {
  width: 5vw;
  height: auto;
  transform: translateY(-4px);
}
@media screen and (min-width: 768px) {
  .cta-top .cta-phone-icon {
    width: 26px;
  }
}
.cta-top .cta-phone-num {
  font-family: var(--font-en);
  font-size: 6.5vw;
  font-weight: 700;
  color: var(--color-main);
  text-decoration: none;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .cta-top .cta-phone-num {
    gap: 10px;
    font-size: 2.25rem;
  }
}
.cta-top .cta-note {
  font-size: 3.2vw;
  color: var(--color-gray);
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cta-top .cta-note {
    font-size: 1rem;
  }
}
.cta-top .cta-img {
  position: absolute;
  width: 22vw;
  bottom: 18%;
  left: -2vw;
}
@media screen and (min-width: 768px) {
  .cta-top .cta-img {
    width: 160px;
    bottom: -20px;
    left: 40px;
  }
}

/*---------------------------------------------
section共通のレイアウト
---------------------------------------------*/
.l-section {
  padding: 12vw 0;
  /* SP時の上下余白 */
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 100px 0;
    /* PC時の上下余白 */
  }
}

/* 共通セクションタイトル */
.content-ttl {
  font-size: 5.5vw;
  color: var(--color-main);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 4vw;
}
.content-ttl::before {
  content: "";
  display: block;
  width: 12vw;
  height: 12vw;
  margin: 0 auto 2vw;
  background: url("../img/lp/icon-title.png") no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .content-ttl::before {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
  }
}
@media screen and (min-width: 768px) {
  .content-ttl {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
}
.content-ttl.toso-logo::before {
  content: "";
  display: block;
  width: 12vw;
  height: 21vw;
  margin: 0 auto 2vw;
  background: url("../img/lp/toso_logo.png") no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .content-ttl.toso-logo::before {
    width: 80px;
    height: 143px;
    margin: 0 auto 15px;
  }
}

/* 共通セクションリード文 */
.content-lead {
  font-weight: 800;
  font-size: 3.5vw;
  color: var(--color-gray);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .content-lead {
    font-size: 1.125rem;
    margin-bottom: 60px;
  }
}

/*---------------------------------------------
不安・お悩み (.worries)
---------------------------------------------*/
.worries {
  background-color: var(--color-base);
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* ▼ 中央の下向き三角形（突き刺さるデザイン） ▼ */
  /* フキダシ：枠線なし・大きな角丸 */
  /* 人物イラスト：右下にはみ出して配置 */
}
.worries::after {
  content: "";
  position: absolute;
  bottom: -9.9vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10vw;
  background-color: var(--color-base);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .worries::after {
    width: 500px;
    height: 80px;
    bottom: -78px;
  }
}
.worries .worries-list {
  align-items: center;
  gap: 12vw;
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .worries .worries-list {
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.worries .worries-item {
  position: relative;
  width: 90%;
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .worries .worries-item {
    width: 280px;
    margin-bottom: 0;
  }
}
.worries .worries-item-bubble {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 2em 3em;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .worries .worries-item-bubble {
    padding: 30px 20px 60px;
  }
}
.worries .worries-item-bubble p {
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-main);
  font-size: 1.2rem;
}
.worries .worries-item-img {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 110px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .worries .worries-item-img {
    width: 25%;
    bottom: -5vw;
    right: -10vw;
  }
}
.worries .worries-summary {
  text-align: center;
  font-weight: 700;
  line-height: 2;
  color: var(--color-black);
  font-size: 3.5vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .worries .worries-summary {
    font-size: 1.25rem;
  }
}

/*---------------------------------------------
圧倒的な安さの4つの秘訣 (.secrets)
---------------------------------------------*/
.secrets {
  background-color: var(--color-main);
  position: relative;
  margin-bottom: 0;
  padding-bottom: 15vw;
  /* ▼ 中央の下向き三角形（突き刺さるデザイン） ▼ */
  /* タイトル・リード文の色を白に上書き */
  /* グリッドレイアウト */
  /* 各カードのスタイル */
}
.secrets::after {
  content: "";
  position: absolute;
  bottom: -9.9vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10vw;
  background-color: var(--color-main);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .secrets::after {
    width: 500px;
    height: 80px;
    bottom: -78px;
  }
}
.secrets .content-ttl {
  color: var(--color-white);
}
.secrets .content-lead {
  color: var(--color-white);
}
.secrets .secret-grid {
  justify-content: space-between;
  align-items: stretch;
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .secrets .secret-grid {
    gap: 2%;
  }
}
.secrets .secret-item {
  background-color: var(--color-white);
  color: var(--color-black);
  position: relative;
  width: 100%;
  padding: 5em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  /* 右上の大きな数字 */
  /* 円形の画像ラッパー */
}
.secrets .secret-item:nth-child(odd) {
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 5em);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 5em);
}
.secrets .secret-item:nth-child(even) {
  -webkit-clip-path: polygon(100% 5em, 100% 100%, 0% 100%, 0% 0%);
          clip-path: polygon(100% 5em, 100% 100%, 0% 100%, 0% 0%);
}
@media screen and (max-width: 767px) {
  .secrets .secret-item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .secrets .secret-item {
    width: 23.5%;
    /* 4カラム */
  }
}
.secrets .secret-item .secret-num {
  font-family: var(--font-en);
  font-size: 15vw;
  color: var(--color-main);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-bottom: 3px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .secrets .secret-item .secret-num {
    font-size: 4rem;
  }
}
.secrets .secret-item h3 {
  color: var(--color-main);
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6vw;
  margin-top: 5vw;
  /* 斜めカットと数字との余白 */
}
@media screen and (min-width: 768px) {
  .secrets .secret-item h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 15px;
  }
}
.secrets .secret-item .img-wrap {
  margin: 0 auto 6vw;
  width: 60%;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  /* 正円を維持 */
}
@media screen and (min-width: 768px) {
  .secrets .secret-item .img-wrap {
    width: 160px;
    margin: 0 auto 20px;
  }
}
.secrets .secret-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secrets .secret-item p {
  font-size: 3.5vw;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .secrets .secret-item p {
    font-size: 1rem;
  }
}

/*---------------------------------------------
高い施工品質と安心のお約束 (.commitment)
---------------------------------------------*/
.commitment {
  background-color: var(--color-base);
  /* commitment-card-wrap */
  /*--------------------------------
    塗装箇所 (.commitment-paintingarea) 
    -------------------------------*/
  /*---------------------------------------------
  比較表 (.commitment-comparison)
  ---------------------------------------------*/
  /*---------------------------------------------
  基礎知識 (.commitment-knowledge)
  ---------------------------------------------*/
}
.commitment .commitment-card-wrap {
  justify-content: center;
  gap: 12vw;
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card-wrap {
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 80px;
  }
}
.commitment .commitment-card {
  position: relative;
  background-color: var(--color-white);
  border: 3px solid var(--color-main);
  border-radius: 20px;
  width: 90%;
  padding: 10vw 2em 2em;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* 上部中央の刷毛アイコン */
  /* カード内のタイトル */
  /* カード内の画像 */
  /* カード内のテキスト */
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card {
    width: calc(33.333% - 15px);
    /* 3カラム */
    padding: 40px 2em 2em;
    border-radius: 30px;
    /* PC時は角丸を大きく */
  }
}
.commitment .commitment-card::before {
  content: "";
  position: absolute;
  top: -6vw;
  left: 50%;
  transform: translateX(-50%);
  width: 12vw;
  height: 12vw;
  background: url("../img/lp/icon-brush.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card::before {
    top: -25px;
    width: 50px;
    height: 50px;
  }
}
.commitment .commitment-card h3 {
  color: var(--color-main);
  text-align: center;
  font-size: 4.5vw;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.commitment .commitment-card h3 .fs-large {
  line-height: 0;
}
.commitment .commitment-card picture {
  display: block;
  margin: 0 auto 5vw;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card picture {
    width: 80%;
    margin-bottom: 20px;
  }
}
.commitment .commitment-card picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.commitment .commitment-card p {
  font-size: 3.5vw;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .commitment .commitment-card p {
    font-size: 1rem;
  }
}
.commitment .commitment-paintingarea {
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-paintingarea {
    margin-bottom: 80px;
  }
}
.commitment .commitment-paintingarea h3 {
  color: var(--color-main);
  font-size: 6.5vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-paintingarea h3 {
    font-size: 2rem;
  }
}
.commitment .commitment-paintingarea .paintingarea-img {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 5vw 0;
  /* 楕円が上下にはみ出すための余白 */
  /* 背景の白い楕円 */
}
@media screen and (min-width: 768px) {
  .commitment .commitment-paintingarea .paintingarea-img {
    padding: 20px 0;
  }
}
.commitment .commitment-paintingarea .paintingarea-img::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border-radius: 50%;
  /* 正円や楕円にする指定 */
  z-index: 0;
  /* SP時の楕円サイズ */
  width: 100vw;
  height: 32vw;
  bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-paintingarea .paintingarea-img::before {
    /* PC時の楕円サイズ（適宜調整してください） */
    width: 760px;
    height: 220px;
    bottom: 90px;
  }
}
.commitment .commitment-paintingarea .paintingarea-img img {
  position: relative;
  z-index: 1;
  /* 白い楕円より前面に出す */
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}
@media screen and (min-width: 768px) {
  .commitment .commitment-paintingarea .paintingarea-img img {
    max-width: 780px;
    /* PCでの画像の最大幅 */
  }
}
.commitment .commitment-comparison {
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-comparison {
    margin-bottom: 80px;
  }
}
.commitment .commitment-comparison h3 {
  color: var(--color-main);
  font-size: 5.5vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-comparison h3 {
    font-size: 2.25rem;
    margin-bottom: 50px;
  }
}
.commitment .commitment-comparison .comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  /* ----------------
     ヘッダー行 (1行目)
  ----------------- */
  /* ----------------
     ボディ行 (2〜4行目)
  ----------------- */
}
.commitment .commitment-comparison .comparison-table th,
.commitment .commitment-comparison .comparison-table td {
  padding: 4vw 1vw;
  text-align: center;
  vertical-align: middle;
  font-size: 3.2vw;
  line-height: 1.4;
  border-bottom: 1px solid #ddd;
  /* 共通のグレー下線 */
}
@media screen and (min-width: 768px) {
  .commitment .commitment-comparison .comparison-table th,
.commitment .commitment-comparison .comparison-table td {
    padding: 25px 10px;
    font-size: 1rem;
  }
}
.commitment .commitment-comparison .comparison-table thead th {
  border: none;
  /* 一旦リセット */
  color: var(--color-black);
  font-weight: 700;
  vertical-align: bottom;
  background-color: transparent;
  /* ハートペイント列（背景色オレンジ＋青枠） */
  /* 一般的なリフォーム店列 */
}
.commitment .commitment-comparison .comparison-table thead th:first-child {
  color: transparent;
  /* 「項目」テキストを非表示 */
  width: 20%;
}
.commitment .commitment-comparison .comparison-table thead th.col-highlight {
  background-color: var(--color-accent);
  color: var(--color-white);
  width: 40%;
  position: relative;
  border-left: 2px solid #5c87b2;
  border-right: 2px solid #5c87b2;
  border-top: 2px solid #5c87b2;
  padding: 5vw 1vw;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-comparison .comparison-table thead th.col-highlight {
    padding: 30px 10px;
  }
}
.commitment .commitment-comparison .comparison-table thead th.col-highlight .comparison-logo {
  position: absolute;
  top: -6vw;
  left: 50%;
  transform: translateX(-50%);
  width: 10vw;
  background: #fff;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-comparison .comparison-table thead th.col-highlight .comparison-logo {
    width: 65px;
    top: 6px;
    left: 6px;
    transform: none;
  }
}
.commitment .commitment-comparison .comparison-table thead th:last-child {
  width: 40%;
  /* デザインに合わせて上と右のグレー罫線を追加 */
  border-top: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}
.commitment .commitment-comparison .comparison-table tbody {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* ▼ 指示通り、2〜4行目を囲むグレー罫線を設定 ▼ */
  /* 2行目の左端（項目列のすぐ下）に上罫線を追加 */
  /* ハートペイント列の最下部に青枠線を付けて囲みを完成 */
}
.commitment .commitment-comparison .comparison-table tbody tr {
  /* 表の左端をグレーで囲む */
  /* 表の右端をグレーで囲む */
}
.commitment .commitment-comparison .comparison-table tbody tr th:first-child {
  border-left: 2px solid #ddd;
}
.commitment .commitment-comparison .comparison-table tbody tr td:last-child {
  border-right: 2px solid #ddd;
}
.commitment .commitment-comparison .comparison-table tbody tr:first-child th:first-child {
  border-top: 2px solid #ddd;
}
.commitment .commitment-comparison .comparison-table tbody th {
  color: var(--color-main);
  font-weight: 700;
  background-color: transparent;
}
.commitment .commitment-comparison .comparison-table tbody td {
  background-color: var(--color-white);
  /* 青枠のハイライト（グレー枠より優先されて表示されます） */
}
.commitment .commitment-comparison .comparison-table tbody td.col-highlight {
  border-left: 2px solid #5c87b2;
  border-right: 2px solid #5c87b2;
  font-weight: 700;
}
.commitment .commitment-comparison .comparison-table tbody tr:last-child .col-highlight {
  border-bottom: 2px solid #5c87b2;
}
.commitment .commitment-knowledge h3 {
  background-color: var(--color-gray);
  color: var(--color-white);
  font-size: 4.2vw;
  font-weight: 700;
  text-align: center;
  padding: 3vw 2vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-knowledge h3 {
    font-size: 1.25rem;
    padding: 15px 30px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .commitment .commitment-knowledge .knowledge-content {
    /* ユーティリティの center を stretch（高さを揃える）に上書き */
    align-items: stretch;
  }
}
.commitment .commitment-knowledge .knowledge-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-knowledge .knowledge-img {
    width: 50%;
    /* 2カラムの左側 */
  }
}
.commitment .commitment-knowledge .knowledge-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.commitment .commitment-knowledge .knowledge-box {
  background-color: var(--color-white);
  padding: 8vw 5vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .commitment .commitment-knowledge .knowledge-box {
    width: 50%;
    /* 2カラムの右側 */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.commitment .commitment-knowledge .knowledge-box p {
  font-size: 3.5vw;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 1.8em;
}
@media screen and (min-width: 768px) {
  .commitment .commitment-knowledge .knowledge-box p {
    font-size: 1rem;
  }
}
.commitment .commitment-knowledge .knowledge-box p:last-child {
  margin-bottom: 0;
}
.commitment .commitment-knowledge .knowledge-box .txt-orange {
  color: var(--color-accent);
}

/*---------------------------------------------
施工実績 (.construction)
---------------------------------------------*/
.construction {
  width: 100%;
  background: url(../img/construction-bk_sp.webp) no-repeat;
  background-size: 100% auto;
  padding-top: 16vw;
  padding-bottom: 16vw;
  /* テーブルを横スクロールさせるためのラッパー */
  /* テーブル本体のデザイン */
}
@media screen and (min-width: 768px) {
  .construction {
    background: url(../img/lp/construction-bk_pc.webp) no-repeat;
    background-size: 100% auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.construction .construction-img {
  width: 90%;
  margin: 0 auto 8vw auto;
}
@media screen and (min-width: 768px) {
  .construction .construction-img {
    width: 780px;
    margin: 0 auto 50px auto;
  }
}
.construction .table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  /* スマホで横スクロール可能にする */
  -webkit-overflow-scrolling: touch;
  /* iOSでのスクロールを滑らかに */
  margin: 0 auto;
  padding-bottom: 10px;
  /* スクロールバーのための余白 */
  /* スクロールバーのカスタマイズ（お好みで） */
}
.construction .table-scroll-wrap::-webkit-scrollbar {
  height: 8px;
}
.construction .table-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--color-lightgray);
  border-radius: 4px;
}
.construction .table-scroll-wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.construction .construction-table {
  width: 100%;
  min-width: 800px;
  /* これより画面が狭いと横スクロールが発生する */
  border-collapse: collapse;
  background-color: var(--color-white);
  border: 2px solid var(--color-main);
  /* ヘッダー行 */
  /* ボディ行 */
}
.construction .construction-table th,
.construction .construction-table td {
  border: 1px solid var(--color-lightgray);
  padding: 12px 8px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  white-space: nowrap;
  /* セル内で文字が折り返さないようにする */
}
@media screen and (min-width: 768px) {
  .construction .construction-table th,
.construction .construction-table td {
    padding: 15px 10px;
    font-size: 1rem;
  }
}
.construction .construction-table thead th {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  /* 最初のセル（2026年など） */
}
.construction .construction-table thead th:first-child {
  background-color: var(--color-accent);
}
.construction .construction-table tbody {
  /* 左端の地域名 */
  /* 合計行（一番下）を少し強調 */
}
.construction .construction-table tbody th {
  background-color: #f2f6fa;
  /* 薄い青背景 */
  color: var(--color-main);
  font-weight: 700;
}
.construction .construction-table tbody tr {
  /* ▼ 各行の2番目のセルを太字にする ▼ */
}
.construction .construction-table tbody tr td:nth-child(2) {
  font-weight: 700;
}
.construction .construction-table tbody tr:last-child th,
.construction .construction-table tbody tr:last-child td {
  background-color: #fff5e6;
  /* 薄いオレンジ背景 */
  color: var(--color-accent);
  font-weight: 700;
  border-top: 2px solid var(--color-accent);
}
.construction .construction-table tbody tr:last-child th {
  color: var(--color-main);
}

/*---------------------------------------------
お客様の声 (.voices)
---------------------------------------------*/
.voices {
  background-color: var(--color-white);
  background-image: url(../img/lp/voices-bk_sp.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  /* ▼ ヘッダー部分（ラベルと完工日の横並び） ▼ */
  /* 左上の所在地ラベル */
  /* さらっと入れる完工日 */
  /* Before/After 画像グリッド */
  /* 写真のサイズ比率 */
  /* Before/Afterの間の矢印 */
}
@media screen and (min-width: 768px) {
  .voices {
    background-image: url(../img/lp/voices-bk_pc.webp);
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
  }
}
.voices .voice-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8vw;
}
@media screen and (min-width: 768px) {
  .voices .voice-list {
    gap: 50px;
  }
}
.voices .voice-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 850px;
  /* カードを少し広めにして写真の迫力を出す */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .voices .voice-card {
    border-radius: 20px;
  }
}
.voices .voice-header {
  display: flex;
  align-items: center;
  /* 上下中央揃え */
  gap: 15px;
  /* ラベルと日付の隙間 */
}
.voices .voice-location {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 8px 15px;
  font-size: 3.5vw;
  font-weight: 700;
  border-radius: 0 0 12px 0;
  /* 右下を丸める */
}
@media screen and (min-width: 768px) {
  .voices .voice-location {
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 0 0 20px 0;
  }
}
.voices .voice-date {
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--color-gray);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .voices .voice-date {
    font-size: 0.9375rem;
  }
}
.voices .voice-inner {
  padding: 2vw 4vw 8vw;
  /* 写真周りの余白調整 */
}
@media screen and (min-width: 768px) {
  .voices .voice-inner {
    padding: 10px 40px 40px;
  }
}
.voices .voice-img-grid {
  display: flex;
  flex-direction: column;
  /* SP時は縦に並べる */
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14vw 4vw 6vw;
}
@media screen and (min-width: 768px) {
  .voices .voice-img-grid {
    flex-direction: row;
    /* PC時は横に並べる */
    justify-content: space-between;
    padding: 40px 30px 30px;
    gap: 0;
  }
}
.voices .voice-img-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* SP時は横幅いっぱい */
}
.voices .voice-img-item.item-after {
  /* Afterを少し大きく見せる（SP時は高さや見た目のボリュームで調整） */
  transform: scale(1.02);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .voices .voice-img-item.item-before {
    width: 38%;
  }
  .voices .voice-img-item.item-after {
    width: 52%;
    transform: scale(1);
    /* PC時は拡大なし */
  }
}
.voices .voice-img-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  /* SP時は少し横長の方が見栄えが良い */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .voices .voice-img-item img {
    aspect-ratio: 4/3;
  }
}
.voices .voice-img-item .tag-before,
.voices .voice-img-item .tag-after {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  z-index: 2;
}
.voices .voice-img-item .tag-before {
  background-color: #757575;
}
.voices .voice-img-item .tag-after {
  background-color: var(--color-accent);
}
.voices .voice-arrow {
  display: flex;
  justify-content: center;
  padding: 2vw 0;
}
.voices .voice-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  /* ▼ SP時は下向きの三角形 ▼ */
  border-width: 4vw 3vw 0 3vw;
  border-color: var(--color-main) transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .voices .voice-arrow::after {
    /* ▶ PC時は右向きの三角形 */
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent var(--color-main);
  }
}
@media screen and (min-width: 768px) {
  .voices .voice-arrow {
    width: 6%;
    padding: 0;
  }
}

/*---------------------------------------------
外装塗装の流れ (.flow)
---------------------------------------------*/
.flow {
  background-color: var(--color-base);
  /* 円形のステップ番号 */
  /* ヘッダー：グレー背景に紺色タイトル */
  /* ▼ 画像エリア（高さと位置の制御） ▼ */
  /* テキストエリア */
}
.flow .flow-steps {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* 全体を貫く左側の縦線 */
}
.flow .flow-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: var(--color-main);
  z-index: 1;
}
.flow .step-item {
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .flow .step-item {
    margin-bottom: 60px;
  }
}
.flow .step-item:last-child {
  margin-bottom: 0;
}
.flow .step-num {
  position: absolute;
  top: -1.5vw;
  left: -2.5vw;
  width: 11vw;
  height: 11vw;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-main);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .flow .step-num {
    width: 60px;
    height: 60px;
    top: -2px;
    left: -30px;
    border-width: 3px;
  }
}
.flow .step-num .step-label {
  font-size: 2vw;
  line-height: 1;
  font-family: var(--font-en);
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .flow .step-num .step-label {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.flow .step-num .step-number {
  font-size: 5vw;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-en);
}
@media screen and (min-width: 768px) {
  .flow .step-num .step-number {
    font-size: 26px;
  }
}
.flow .step-box {
  width: 100%;
}
.flow .step-header {
  background-color: var(--color-lightgray);
  width: 100%;
  display: flex;
  /* タイトルの幅を制限して残りをグレーにするため */
}
.flow .step-title {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 3.5vw;
  font-weight: 700;
  padding: 2vw 4vw 2vw 10vw;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow .step-title {
    width: 40%;
    /* PC時の画像幅と合わせる */
    font-size: 1.125rem;
    padding: 15px 20px 15px 40px;
  }
}
.flow .step-body {
  display: flex;
  flex-direction: column;
  /* SP時は縦並び */
}
@media screen and (min-width: 768px) {
  .flow .step-body {
    flex-direction: row;
    /* PC時は横並び */
    align-items: stretch;
    /* ▼ 重要：ここで子要素(.img-wrapと.step-text)の高さを揃える */
  }
}
.flow .img-wrap {
  position: relative;
  /* imgのabsoluteの基準 */
  overflow: hidden;
  /* はみ出した画像をカット */
  width: 100%;
  /* タイトルの幅と一致させる */
  /* SP時の高さ：画像が潰れないように比率で高さを確保 */
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .flow .img-wrap {
    width: 40%;
    /* タイトルの幅と一致させる */
    flex-shrink: 0;
    /* PC時は隣のテキスト量に高さを合わせるため、比率指定を解除 */
    aspect-ratio: auto;
    height: auto;
  }
}
.flow .img-wrap img {
  position: absolute;
  /* .img-wrapの枠内にピタッと合わせる */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 枠のサイズに合わせて自動でトリミング */
  display: block;
}
.flow .step-text {
  background-color: var(--color-white);
  width: 100%;
  padding: 4vw 6vw;
}
@media screen and (min-width: 768px) {
  .flow .step-text {
    width: 60%;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    /* PCのときはテキストを上下中央に配置 */
  }
}
.flow .step-text p {
  font-size: 3.5vw;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow .step-text p {
    font-size: 1rem;
  }
}

/*---------------------------------------------
よくある質問 (.faq)
---------------------------------------------*/
.faq {
  background-color: var(--color-white);
}
.faq .faq-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  /* 一番上の区切り線（太めの破線） */
  border-top: 2px dashed #cccccc;
}
.faq .faq-item {
  padding: 6vw 0;
  /* 各アイテム間の区切り線（太めの破線） */
  border-bottom: 2px dashed #cccccc;
}
@media screen and (min-width: 768px) {
  .faq .faq-item {
    padding: 30px 0;
  }
}

.faq-footer-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 480px;
  overflow: hidden;
}
.faq-footer-img img {
  width: 100%;
}

/*---------------------------------------------
よくある質問 (.faq)
---------------------------------------------*/
.faq {
  background-color: var(--color-white);
  /* 間隔の広い破線 */
  /* -------------------
     QとAの共通スタイル
  -------------------- */
  /* -------------------
     質問 (Q) のスタイル
  -------------------- */
  /* -------------------
     回答 (A) のスタイル
  -------------------- */
}
.faq .faq-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  padding: 6vw 0;
}
@media screen and (min-width: 768px) {
  .faq .faq-item {
    padding: 30px 0;
  }
}
.faq .faq-q,
.faq .faq-a {
  position: relative;
  padding-left: 10vw;
  margin: 0;
  /* ▼ 実要素（spanタグ）に対してアイコンのスタイルを当てる ▼ */
}
@media screen and (min-width: 768px) {
  .faq .faq-q,
.faq .faq-a {
    padding-left: 50px;
  }
}
.faq .faq-q .faq-icon,
.faq .faq-a .faq-icon {
  position: absolute;
  top: -1vw;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 右下だけ 0 にして尖らせる */
  border-radius: 50% 50% 0 50%;
  font-weight: 700;
  font-family: var(--font-en);
  /* SP時のアイコンサイズ */
  width: 7vw;
  height: 7vw;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-q .faq-icon,
.faq .faq-a .faq-icon {
    /* PC時のアイコンサイズ */
    top: -9px;
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
}
.faq .faq-q {
  font-weight: 700;
  color: var(--color-main);
  font-size: 4vw;
  line-height: 1.5;
  margin-bottom: 5vw;
  /* Qのアイコンカラー */
}
@media screen and (min-width: 768px) {
  .faq .faq-q {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}
.faq .faq-q .faq-icon {
  background-color: var(--color-main);
  color: var(--color-white);
}
.faq .faq-a {
  color: var(--color-black);
  font-size: 3.5vw;
  line-height: 1.8;
  margin-left: 3vw;
  /* Qより少し内側に */
  /* Aのアイコンカラー */
}
@media screen and (min-width: 768px) {
  .faq .faq-a {
    font-size: 1rem;
    margin-left: 20px;
  }
}
.faq .faq-a .faq-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/*---------------------------------------------
お問い合わせ (.contact)
---------------------------------------------*/
.contact {
  background-color: #ECEDE5;
  /* フォームの背景を少し変えて区別 */
  /* フォーム全体の枠 */
  /* フォームの各項目 */
  /* 左側の項目名（ラベル） */
  /* 必須マーク */
  /* 右側の入力パーツ（input, select, textarea共通） */
  /* select タグ（ドロップダウン）専用の装飾 */
  /* textarea のみ */
  /* ラジオボタンのレイアウト調整 */
  /* 日付・時間選択エリア */
  /* プライバシーポリシー同意などのテキスト */
  /* 送信ボタン */
  /* エラーメッセージ（Contact Form 7 の標準出力） */
}
.contact .contact-content {
  max-width: 900px;
  margin: 0 auto;
}
.contact .contact-content h2 {
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .contact .contact-content h2 {
    margin-bottom: 15px;
  }
}
.contact .contact-content > p {
  text-align: center;
  margin-bottom: 8vw;
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .contact .contact-content > p {
    margin-bottom: 40px;
    font-size: 1rem;
  }
}
.contact .Form {
  background-color: var(--color-white);
  border-top: 2px solid var(--color-main);
  /* 上部だけ紺色のライン */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .contact .Form {
    margin-bottom: 30px;
  }
}
.contact .Form-Item {
  border-bottom: 1px solid var(--color-lightgray);
  padding: 4vw;
  /* Contact Form 7 が勝手に出力する空の p タグの余白を消す */
}
@media screen and (min-width: 768px) {
  .contact .Form-Item {
    display: flex;
    padding: 25px 30px;
    align-items: flex-start;
    /* 上揃え */
  }
}
.contact .Form-Item > p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact .Form-Item > p {
    flex: 1;
    /* 入力エリアを残りの幅いっぱいにする */
  }
}
.contact .Form-Item-Label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 3.5vw;
  margin-bottom: 2vw;
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .contact .Form-Item-Label {
    width: 260px;
    /* 左側の幅を固定 */
    margin-bottom: 0;
    font-size: 1rem;
    flex-shrink: 0;
  }
}
.contact .Form-Item-Label-Required {
  background-color: #e53935;
  /* 赤 */
  color: var(--color-white);
  font-size: 2.8vw;
  font-weight: normal;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .contact .Form-Item-Label-Required {
    font-size: 0.75rem;
  }
}
.contact .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* デフォルトのスタイルをリセット */
}
.contact .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--color-main);
  background-color: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 51, 102, 0.2);
}
.contact select.wpcf7-form-control {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact select.wpcf7-form-control {
    max-width: 400px;
    /* PCでは幅を少し制限 */
  }
}
.contact textarea.wpcf7-form-control {
  min-height: 150px;
  resize: vertical;
  /* 縦方向のみサイズ変更可能 */
}
.contact .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.contact .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.contact .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact .wpcf7-radio .wpcf7-list-item label input[type=radio] {
  margin: 0 8px 0 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.contact .contact-date .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contact .contact-date .wpcf7-form-control-wrap {
    width: 48%;
    /* PCでは横並び */
    margin-right: 2%;
    margin-bottom: 0;
  }
}
.contact .sp-side_pad10 {
  font-size: 3.2vw;
  line-height: 1.6;
  margin-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .contact .sp-side_pad10 {
    font-size: 0.875rem;
    margin-bottom: 30px;
  }
}
.contact .sp-side_pad10 a {
  text-decoration: underline;
}
.contact .sp-side_pad10 a:hover {
  text-decoration: none;
}
.contact .contact-submit {
  text-align: center;
  /* 余計なpタグの余白を消す */
}
.contact .contact-submit p {
  margin: 0;
}
.contact .contact-submit .wpcf7-submit {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 4.5vw;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .contact .contact-submit .wpcf7-submit {
    font-size: 1.25rem;
    padding: 20px 60px;
  }
}
.contact .contact-submit .wpcf7-submit:hover {
  background-color: #ff7043;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 81, 0, 0.4);
}
.contact .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #e53935;
  margin-top: 5px;
  display: block;
}
.wpcf7-spinner { 
  display: none !important;
}

/*---------------------------------------------
会社概要 (.company)
---------------------------------------------*/
.company {
  background-color: var(--color-white);
  /* 保有資格のリスト装飾 */
}
.company .company-content {
  max-width: 800px;
  margin: 0 auto;
  /* 余裕を持たせたレイアウトにするため余白を少し広めに */
  padding: 2vw 0 6vw;
}
@media screen and (min-width: 768px) {
  .company .company-content {
    padding: 10px 0 40px;
  }
}
.company .company-info {
  border-top: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
}
.company .info-row {
  display: flex;
  flex-direction: column;
  /* SP時は縦並び */
  border-bottom: 1px solid var(--color-lightgray);
  /* 左側の項目名 */
  /* 右側の内容 */
}
.company .info-row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .company .info-row {
    flex-direction: row;
    /* PC時は横並び */
  }
}
.company .info-row dt {
  background-color: #f8f9fa;
  /* 薄いグレーでメリハリをつける */
  color: var(--color-main);
  font-weight: 700;
  padding: 4vw;
  font-size: 3.8vw;
}
@media screen and (min-width: 768px) {
  .company .info-row dt {
    width: 25%;
    padding: 25px 30px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    /* 縦中央揃え */
  }
}
.company .info-row dd {
  padding: 3vw 4vw 5vw;
  margin: 0;
  font-size: 3.5vw;
  line-height: 1.8;
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .company .info-row dd {
    width: 75%;
    padding: 25px 30px;
    font-size: 1rem;
  }
}
.company .license-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company .license-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  /* リストの先頭に小さな丸をつける */
}
.company .license-list li:last-child {
  margin-bottom: 0;
}
.company .license-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent);
  /* オレンジ色の丸 */
}

/*---------------------------------------------
フッター (.footer)
---------------------------------------------*/
.footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 8vw 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  /* SP時は縦に並べる */
  align-items: center;
  gap: 15px;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .footer .footer-links {
    flex-direction: row;
    /* PC時は横に並べる */
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
  }
}
.footer .footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 3.5vw;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer .footer-links a {
    font-size: 0.875rem;
  }
}
.footer .footer-links a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.footer .copyright {
  font-size: 3vw;
  margin: 0;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 12px;
  }
}
/*# sourceMappingURL=lp-style.css.map */