/* ===========================
   shobo-kunren LP style.css
   =========================== */

:root {
  --main: #E8351A;
  --main-dark: #C4210A;
  --main-gradient: linear-gradient(45deg, #f50000 30%, #e15db1 120%);
  --sub: #1A1A2E;
  --bg-light: #FFF5F0;
  --bg-skin: #FFEEDC;
  --bg-dark: #1A1A2E;
  --white: #fff;
  --text: #333;
  --main-text: #494949;
  --border: #e5e5e5;
  --radius: 20px;
  --radius-sm: 12px;
}

/* ===========================
   ユーティリティ
   =========================== */

.fl { display: flex; }
.fl-j-b { justify-content: space-between; }
.fl-wr { flex-wrap: wrap; }
.fl_c { justify-content: center; align-items: center; }
.fl_l { justify-content: flex-start; }

.pad-none { display: block; }
.pc-none  { display: none; }

/* ===========================
   基本設定
   =========================== */

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6, p, a {
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

body {
  font-family: "LINE Seed JP", 'Noto Sans JP', 'M PLUS 1p', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: .3s;
}

.container {
  max-width: 1200px;
  padding: 0 clamp(16px, 1.4vw, 20px);
  margin: 0 auto;
}

body.menu-open { overflow: hidden; }

.animated { opacity: 0; }
.animated.is-animated { opacity: 1; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   セクション共通
   =========================== */

.section_ttl {
  color: #0060EA;
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  margin-bottom: clamp(24px, 2.8vw, 40px);
}

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

.section_ttl .jump {
  font-size: 1.2em;
  font-style: normal;
  font-weight: 900;
}

.section_ttl .ttl-line {
  display: inline-flex;
  align-items: flex-end;
  line-height: 0.5;
}

.section_ttl.white { color: var(--white); }

/* ===========================
   heading（バー装飾見出し）
   =========================== */

.heading04 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.heading04 span {
  line-height: 1.2;
}

.heading04::before,
.heading04::after {
  content: '';
  width: 0.12em;
  height: 1.8em;
  background-color: currentColor;
  flex-shrink: 0;
}

.heading04::before {
  margin-right: 1em;
  transform: rotate(-35deg);
}

.heading04::after {
  margin-left: 1em;
  transform: rotate(35deg);
}

/* ===========================
   ヘッダー
   =========================== */

.nav-wrap {
  width: 100%;
  height: clamp(60px, 6.3vw, 90px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  transition: .5s;
}


.header-logo {
  width: clamp(140px, 13.9vw, 200px);
  margin-left: clamp(16px, 2.8vw, 40px);
}

.hamburger {
  position: absolute;
  right: clamp(20px, 2.4vw, 35px);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--sub);
  margin: 7px 0;
  border-radius: 2px;
  transition: .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.nav {
  position: fixed;
  top: 0;
  right: -500px;
  width: 320px;
  height: 100vh;
  background: var(--bg-light);
  padding: 110px 40px 40px;
  transition: .4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, .1);
  z-index: 1050;
}

.nav.active { right: 0; }

.nav ul { display: flex; flex-direction: column; gap: 24px; }

.nav ul li a {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--sub);
  transition: .3s;
}

.nav ul li a:hover { color: var(--main); }

.nav ul li.btn { margin-top: 10px; }

.nav ul li.btn a {
  display: block;
  padding: 16px 20px;
  border-radius: 50px;
  background: var(--main-gradient);
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 700;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 900;
}

.overlay.active { opacity: 1; visibility: visible; }


/* ===========================
   ボタン共通
   =========================== */

.btn { width: 100%; text-align: center; }

a.moreview {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(600px, 100%);
  min-height: clamp(56px, 5.3vw, 76px);
  border-radius: 50px;
  border: 2px solid var(--white);
  background: var(--main-gradient);
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 26px);
  font-weight: bold;
  line-height: 1.3;
  margin: 0 auto;
  padding: clamp(10px, 1vw, 14px) clamp(24px, 2.8vw, 40px);
  box-shadow: 0 6px 20px rgba(232, 53, 26, .4);
  transition: all .3s;
  position: relative;
}


a.moreview::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-left: none;
  border-bottom: none;
  transform: translateY(-50%) rotate(45deg);
}

a.moreview:hover {
  box-shadow: 0 8px 24px rgba(232, 53, 26, .5);
  letter-spacing: .1em;
}

.btn_animation { animation: none; }

/* ===========================
   FV（ファーストビュー）
   =========================== */

.first-view {
  background: var(--white);
}

.fv_hero {
  width: 100%;
  line-height: 0;
  position: relative;
}

.fv_hero img {
  width: 100%;
  display: block;
}

.fv_media {
  background: var(--white);
  padding: clamp(10px, 1.1vw, 16px) 0;
  overflow: hidden;
}

.logo-carousel { overflow: hidden; }

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 44s linear infinite;
  animation-play-state: paused;
}

.logo-track.is-loaded {
  animation-play-state: running;
}

.logo-slide {
  line-height: 0;
  flex-shrink: 0;
}

.logo-slide img {
  height: clamp(90px, 12.5vw, 180px);
  width: auto;
  display: block;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* 手書きテキスト動画（FV左下絶対配置） */
.fv_handwrite {
  position: absolute;
  bottom: 3%;
  left: 8%;
  z-index: 2;
  width: 40%;
  pointer-events: none;
}

.fv_handwrite img {
  width: 100%;
  display: block;
}

.fv_cta {
  text-align: center;
  margin: clamp(60px, 7vw, 100px) 0;
}

.fv_cta a {
  display: block;
  max-width: 750px;
  margin: 0 auto;
  animation: fv-bounce 4s ease-in-out infinite;
}

.fv_cta a:hover {
  animation-play-state: paused;
  opacity: .70;
}

@keyframes fv-bounce {
  0%    { transform: translateY(0); }
  6%    { transform: translateY(-12px); }
  12%   { transform: translateY(0); }
  17%   { transform: translateY(-6px); }
  22%   { transform: translateY(0); }
  100%  { transform: translateY(0); }
}

.fv_cta img {
  width: 100%;
  display: block;
}

.rescue_house_bg {
  background: var(--white);
  height: clamp(27px, 6.75vw, 135px);
  margin: clamp(20px, 2.5vw, 36px) 0 0;
  overflow: hidden;
}

.rescue_house_track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25vw;
  height: 100%;
}

.rescue_house_track img {
  height: clamp(27px, 6.75vw, 135px);
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ===========================
   悩みセクション
   =========================== */

.trouble {
  background: url('../img/problem_background.png') repeat-x top center / auto 100%;
  position: relative;
  overflow: visible;
  padding: 100px 0 clamp(60px, 7vw, 100px);
}

.trouble .container {
  max-width: 900px;
  margin: 0 auto;
}

.trouble .section_ttl {
  margin-bottom: clamp(36px, 4.2vw, 60px);
}

.trouble_dot {
  position: absolute;
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.trouble_dot img {
  height: clamp(70px, 8.3vw, 120px);
  width: auto;
  display: block;
}

/* ===========================
   強みセクション
   =========================== */

.strength {
  padding: clamp(60px, 8vw, 140px) 0;
  background: var(--white);
}

.strength .container { position: relative; }

.strength_ttl {
  text-align: center;
  margin-bottom: clamp(32px, 3.5vw, 50px);
}

.strength_truck {
  position: absolute;
  left: 8%;
  top: 5%;
  width: 17%;
  pointer-events: none;
  z-index: 2;
}

.strength_list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.7vw, 24px);
}

.strength_item {
  border-radius: 16px;
  background: linear-gradient(225deg, #1A6FDB 0%, #4AA8F8 100%);
  box-shadow: 0 4px 20px rgba(11, 61, 158, .25);
  position: relative;
  overflow: visible;
  padding: clamp(14px, 1.4vw, 20px);
}

.strength_item_head {
  display: flex;
  align-items: stretch;
  padding: 0 clamp(10px, 1.9vw, 28px) 0 0;
}

.strength_num {
  background: #0060EA;
  color: var(--white);
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 700;
  min-width: clamp(50px, 5.5vw, 80px);
  padding: 10px 20px 14px 16px;
  height: 45px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  text-align: center;
  flex-shrink: 0;
  line-height: 1.2;
  position: relative;
  top: 0;
  left: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength_item_head h3 {
  font-size: clamp(18px, 2.7vw, 24px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  flex: 1;
  border-bottom: 1.5px solid rgba(255, 255, 255, .55);
}

.strength_desc {
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.9vw, 28px) clamp(14px, 1.5vw, 22px);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--white);
}

.strength_human {
  position: absolute;
  right: 7%;
  bottom: -8%;
  width: 13%;
  pointer-events: none;
  z-index: 2;
}

.strength_human img { width: 100%; display: block; }

/* ===========================
   実績セクション
   =========================== */

.results {
  background: var(--bg-skin);
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.results_ttl {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 20px);
  margin-bottom: clamp(16px, 1.9vw, 28px);
}

.results_building {
  width: clamp(48px, 5.8vw, 84px);
  height: auto;
  flex-shrink: 0;
}

.results .section_ttl {
  color: #1255C8;
  margin-bottom: 0;
}

.results_card {
  background: #fff;
  border-top: 10px solid var(--main);
  border-radius: 16px;
  max-width: 90%;
  padding: clamp(20px, 2.2vw, 32px) clamp(16px, 2.8vw, 40px);
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  box-sizing: border-box;
}

.results_sub {
  text-align: center;
  font-size: clamp(15px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--main-text);
}

.results_sub::before { content: '＼　'; }
.results_sub::after  { content: '　／'; }

.results_badge {
  text-align: center;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  max-width: 100%;
  border-bottom: 1px solid var(--main-text);
}

.results_badge img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.results_note {
  font-size: 11px;
  color: #999;
  text-align: left;
}

/* ===========================
   CTA①
   =========================== */

.cta {
  position: relative;
  background: linear-gradient(315deg, #0060EA 20%, #1A8EFF 70%);
  overflow: visible;
  display: flex;
  align-items: center;
  height: clamp(120px, 10.4vw, 150px);
}

.cta_wrap {
  position: relative;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  height: 100%;
}

.cta_taicho {
  position: absolute;
  left: -200px;
  flex-shrink: 0;
  height: clamp(160px, 15.6vw, 220px);
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.cta_body {
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  align-self: center;
}

.cta_ttl {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}

.cta_ttl .jump {
  font-size: 1.3em;
  font-style: normal;
  font-weight: 900;
}

/* CTA②（style02） */
.cta.cta--style02 {
  background: linear-gradient(180deg, #1255C8 10%, #4AA8F8 60%);
  height: auto;
  padding: clamp(60px, 7vw, 100px) 0;
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
}

.cta.cta--style02 .cta_inner {
  text-align: center;
  margin: 0 auto;
}

.cta.cta--style02 .cta_sub {
  display: block;
  background: transparent;
  color: var(--white);
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 900;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

.cta.cta--style02 .cta_price_line {
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  gap: clamp(6px, 0.8vw, 12px);
  margin-bottom: 20px;
}


.cta_price_line {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--white);
}

.cta_price_line s { opacity: .7; }

.cta_price_line strong {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
}

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

.cta_price_line small { font-size: 14px; }

/* ===========================
   価格表
   =========================== */

.price {
  background: var(--bg-skin);
  padding: clamp(60px, 7vw, 100px) 0;
}

.price .section_ttl {
  color: #000;
  margin-bottom: clamp(20px, 2.1vw, 30px);
}

.price_box {
  max-width: 600px;
  margin: 0 auto clamp(40px, 4.5vw, 60px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  padding: clamp(20px, 2.1vw, 30px);
  text-align: center;
}

.price_tag {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  width: 50%;
  padding: 5px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.price_regular {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: bold;
  color: var(--main-text);
  line-height: 1;
  margin-bottom: 10px;
}

.price_regular s { text-decoration: line-through; }

.price_service_ttl {
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: bold;
  color: var(--main-text);
  padding-top: 20px;
  margin-bottom: 10px;
  border-top: 1px solid var(--border);
}

.price_main {
  line-height: 1;
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.price_main strong {
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: 900;
  color: var(--main);
}

.price_main span {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  color: var(--main);
}

.price_includes {
  text-align: left;
  list-style: none;
  max-width: 300px;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
}

.price_includes li {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

.price_includes li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--text);
  font-size: 10px;
  top: 5px;
}

.price_note {
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

/* ===========================
   4ステップ
   =========================== */

.flow {
  background: var(--white);
  padding: clamp(60px, 7vw, 100px) 0 0;
}

.flow .container { position: relative; }

.flow .section_ttl { color: #1255C8; }

.flow_human {
  position: absolute;
  right: 22%;
  bottom: 5%;
  width: 13%;
  pointer-events: none;
  z-index: 2;
}

.flow_list {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.flow_item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.7vw, 24px);
  position: relative;
  padding-bottom: clamp(32px, 3.5vw, 50px);
}

.flow_item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(clamp(64px, 7vw, 100px) / 2);
  top: clamp(60px, 7vw, 100px);
  bottom: 0;
  border-left: 5px dotted #1255C8;
}

.flow_icon {
  width: clamp(64px, 7vw, 100px);
  height: clamp(64px, 7vw, 100px);
  background: #1255C8;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.flow_icon img { object-fit: contain; }

.flow_content { flex: 1; padding-top: 8px; }

.flow_num {
  font-size: 12px;
  font-weight: 700;
  color: #1255C8;
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.flow_num strong { font-size: 12px; }

.flow_item h3 {
  color: #0060EA;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
  margin-bottom: 6px;
}

.flow_item p { font-size: 16px; line-height: 1.7; }

/* ===========================
   FAQ
   =========================== */

.faq {
  background: var(--white);
  padding: clamp(60px, 7vw, 100px) 0;
}

.faq .container {
  max-width: 900px;
}

.accordion {
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
  transition: background .2s;
  background: #C9EBFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.accordion[open] { background: var(--white); }

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 1.4vw, 20px) clamp(16px, 1.7vw, 24px);
  border-radius: var(--radius-sm);
  cursor: pointer;
  list-style: none;
  background: #C9EBFF;
  user-select: none;
  gap: 12px;
}

.accordion summary:hover { opacity: .85; }

.accordion summary::after {
  content: '';
  flex-shrink: 0;
  width: clamp(22px, 1.9vw, 28px);
  height: clamp(22px, 1.9vw, 28px);
  background: url('../img/arrow.png') center / contain no-repeat;
  transition: transform .35s ease;
}

.accordion[open] summary::after { transform: rotate(180deg); }

.accordion summary::-webkit-details-marker { display: none; }

@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes accordionClose {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

.accordion[open] .inner { animation: accordionOpen .3s ease forwards; }

.accordion.closing .inner { animation: accordionClose .25s ease forwards; }

.question {
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--sub);
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.q-num {
  color: #1255C8;
  font-weight: 900;
  font-size: clamp(13px, 1.2vw, 17px);
  flex-shrink: 0;
}

.accordion .inner {
  padding: 10px clamp(16px, 1.7vw, 24px) clamp(16px, 1.4vw, 20px);
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.8;
  color: #555;
  background: var(--white);
}

.accordion .inner p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.a-num {
  flex-shrink: 0;
  color: var(--main);
  font-weight: 900;
  font-size: 15px;
}

/* ===========================
   YouTube セクション
   =========================== */

.youtube {
  background: var(--bg-skin);
  padding: clamp(60px, 7vw, 100px) 0 0;
}

.youtube .section_ttl {
  color: var(--main-text);
  margin-bottom: 20px;
}

.youtube .section_ttl .jump { font-size: 1.5em; }

.youtube_sub_ttl {
  color: var(--main-text);
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  white-space: normal;
}

.youtube .youtube_sub_ttl::before,
.youtube .youtube_sub_ttl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #FF7A00;
}

.youtube_list {
  display: flex;
  gap: clamp(16px, 1.7vw, 24px);
  list-style: none;
  margin-bottom: clamp(20px, 2.8vw, 40px);
}

.youtube_item { flex: 1; }

.youtube_thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
}

.youtube_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.youtube_item a:hover .youtube_thumb img { transform: scale(1.04); }

.youtube_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(40px, 3.9vw, 56px);
  height: clamp(40px, 3.9vw, 56px);
  background: rgba(255, 0, 0, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.youtube_play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.youtube_title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sub);
  margin-top: 10px;
  line-height: 1.5;
}

.youtube_item a:hover .youtube_title { color: var(--main); }

.youtube_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1vw, 14px) clamp(24px, 3.3vw, 48px);
  border: 2px solid var(--main);
  border-radius: 50px;
  color: var(--main);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  transition: all .3s;
}

.youtube_more:hover {
  background: var(--main-gradient);
  color: var(--white);
  border-color: transparent;
}

/* ===========================
   お客さまの声
   =========================== */

.voice {
  background: var(--bg-skin);
  padding: clamp(60px, 7vw, 100px) 0;
}

.voice_ttl {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 900;
  color: var(--sub);
  text-align: center;
  margin-bottom: clamp(24px, 3.3vw, 48px);
}


.voice_list {
  display: flex;
  gap: clamp(16px, 1.7vw, 24px);
  list-style: none;
}

.voice_item {
  flex: 1;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: visible;
}

.voice_case {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--main-gradient);
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 21px);
  text-align: center;
  line-height: 1.8;
  width: clamp(150px, 13.5vw, 180px);
  font-weight: 700;
  padding: 0;
  border-radius: 30px;
  letter-spacing: .08em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(232,53,26,.35);
}

.voice_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #c8c8c8;
  margin-bottom: 16px;
}

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

.voice_role {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 0 16px;
}

.voice_role span {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.voice_comment {
  font-size: 15px;
  line-height: 1.8;
  color: var(--main-text);
  padding: 0 16px;
}

/* ===========================
   フッター
   =========================== */

.footer_inner.container,
.footer_bottom.container {
  padding-top: 10px;
  padding-bottom: 0;
}

footer {
  background: var(--white);
  color: #000;
  padding: clamp(60px, 5.5vw, 80px) 0 80px;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 2.8vw, 40px);
  margin-bottom: clamp(40px, 4.2vw, 60px);
}

.footer_left {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.2vw, 60px);
}

.footer_logo { width: clamp(120px, 11.1vw, 160px); }

.footer_logo img { display: block; }

.footer_sns { display: flex; gap: 16px; }

.footer_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  transition: transform .3s, background .3s;
}

.footer_sns a:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, .28);
}

.footer_sns img { object-fit: contain; }

.footer_nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}

.footer_nav ul li a {
  font-size: 14px;
  color: #000;
  transition: color .3s, transform .3s;
  display: inline-block;
}

.footer_nav ul li a:hover {
  color: var(--main);
  transform: translateX(4px);
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer_bottom a {
  font-size: 12px;
  color: #666;
  text-decoration: underline;
  transition: color .3s;
}

.footer_bottom a:hover { color: var(--main); }

.footer_bottom small {
  font-size: 12px;
  color: #999;
}

/* =====================================================
   Tablet  max-width: 1199px
   ===================================================== */
@media (max-width: 1199px) {

  /* セクションタイトル - 折り返し許可 */
  .section_ttl { white-space: normal; }

  /* FV */
  .fv_cta a { max-width: 70%; }
  .fv_handwrite { width: 38%; left: 5%; }

  /* 悩み */
  .trouble { padding-bottom: 100px; }

  /* 強み */
  .strength { padding-top: 100px; }
  .strength_truck { width: 17%; left: 8%; top: 5%; }
  .strength_human { width: 13%; right: 5%; bottom: -10%; }
  .strength_list  { max-width: 680px; padding-left: 28px; }

  /* 価格 */
  .price_box { max-width: 70%; }

  /* CTA① */
  .cta_wrap { max-width: 680px; gap: 16px; }
  .cta_taicho { height: clamp(140px, 14vw, 180px); left: -50px; }

  /* YouTube - 3列グリッド（1行） */
  .youtube_list { display: grid; grid-template-columns: 1fr 1fr 1fr; }

  /* お客さまの声 - 3列グリッド（1行） */
  .voice_list { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .voice_item { margin-top: 24px; }

  /* フロー */
  .flow_human { right: 5%; bottom: 0%; width: 20%; }

  /* CTA② */
  .cta.cta--style02 { border-radius: 30px 30px 0 0; }
}

/* =====================================================
   SP  max-width: 768px
   ===================================================== */
@media (max-width: 768px) {

  /* コンテナ — 左右のみ担当（上下は section が管理） */
  .container { padding: 0 calc(16px + 3vw); }

  /* ユーティリティ */
  .pad-none { display: none; }
  .pc-none  { display: block; }

  /* セクションタイトル - 折り返し許可 */
  .section_ttl { white-space: normal; }

  /* ヘッダー */
  .nav-wrap { height: 70px; position: relative; }
  header .sns { display: none; }

  /* FV */
  .first-view { padding-top: 0; }
  .fv_handwrite { width: 40%; left: 3%; top: 55%; bottom: auto; }
  .fv_cta { padding: 0; }
  .fv_cta a { max-width: 70%; }

  /* 悩み */
  .trouble { padding-bottom: 60px; }

  /* 強み */
  .strength { padding: 60px 0 70px; }
  .strength_truck { width: 23%; left: 4%; top: 5%; }
  .strength_human { width: 13%; right: 2%; bottom: -20%; }
  .strength_item_head { gap: 14px; }

  /* 実績 */
  .results { padding: 60px 0 40px; }
  .results_ttl { gap: 10px; }

  /* CTA① */
  .cta { height: clamp(100px, 16vw, 130px); }
  .cta_wrap { max-width: 100%; padding: 0 20px; gap: 12px; }
  .cta_taicho {
    height: clamp(130px, 18vw, 160px);
    left: 50px;
  }

  /* 価格 */
  .price { padding: 60px 0; }
  .price_box { padding: 32px 24px; }
  .price_tag { width: 70%; }

  /* フロー */
  .flow { padding: 60px 0; }
  .flow_human {
    right: 5%;
    bottom: 0%;
    width: 25%;
  }

  /* FAQ */
  .faq { padding: 60px 0 80px; }

  /* YouTube */
  .youtube_list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

  /* お客さまの声 */
  .voice { padding: 60px 0 50px; }
  .voice_list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding-top: 24px; }
  .voice_item { margin-top: 0; }

  /* CTA② */
  .cta.cta--style02 { padding: 60px 20px; border-radius: 24px 24px 0 0; }
  .cta.cta--style02 .cta_price_line { flex-wrap: wrap; }
  a.moreview { font-size: 15px; min-height: 56px; padding: 10px 24px; width: 320px; }

  /* フッター */
  footer { padding: 50px 0 80px; }
  .footer_inner { gap: 30px; }
  .footer_nav ul { gap: 12px 30px; }
  .footer_bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =====================================================
   SP Small  max-width: 480px
   ===================================================== */
@media (max-width: 480px) {

  /* コンテナ — 左右のみ担当（上下は section が管理） */
  .container { padding: 0 16px; }

  /* FV */
  .fv_cta a { max-width: 80%; }
  .fv_handwrite {
    width: 48%;
    left: 2%;
    top: 58%;
  }
  .fv_cta { margin: 40px 0; }

  /* 悩み */
  .trouble {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .trouble_dot img { height: 70px; }

  /* 強み */
  .strength { padding: 80px 0 50px; }
  .strength_human {
    width: 15%;
    right: 2%;
    bottom: -10%;
  }
  .strength_list { padding-left: 10px; }
  .strength_item_head {
    padding: 0 10px 0 0;
    gap: 0px;
  }
  .strength_num { font-size: 18px; min-width: 50px; }
  .strength_item_head h3 { font-size: 18px; line-height: 2.4; margin-left: -10px; }
  .strength_desc { font-size: 13px; padding: 12px 16px 18px; }

  /* 実績 */
  .results {
    padding: 80px 0 24px;
    border-radius: 70% 70% 0 0 / 100px 100px 0 0;
  }
  .results_building { display: none; }
  .results_ttl { justify-content: center; }
  .results_card { padding: 20px 14px; }

  /* CTA① */
  .cta { height: clamp(90px, 20vw, 110px); }
  .cta_wrap { padding: 0 12px; gap: 8px; }
  .cta_taicho { left: 10px; }
  .cta_ttl { font-size: clamp(13px, 4vw, 16px); }

  /* 価格 */
  .price { padding: 40px 0; }
  .price_includes {max-width: 220px;}
  .price_box {
      max-width: 100%;
  }
  .price_tag { width: 80%; font-size: 16px; }

  /* フロー */
  .flow { padding: 40px 0; }
  .flow_human { bottom: -5%; }
  .flow_icon { width: 72px; height: 72px; }
  .flow_item { gap: 16px; }
  .flow_item:not(:last-child)::after { left: 36px; top: 72px; }
  .flow_item h3 { font-size: 17px; }
  .flow_item p { font-size: 13px; }

  /* FAQ */
  .faq { padding: 80px 0 50px; }
  .accordion summary { padding: 14px 16px; gap: 8px; }
  .question { font-size: 13px; }
  .accordion .inner { font-size: 13px; padding: 8px 16px 18px; }
  .accordion summary::after { width: 22px; height: 22px; }

  /* YouTube */
  .youtube { padding: 40px 0 30px; }
  .youtube_list { grid-template-columns: 1fr; gap: 16px; }

  /* お客さまの声 */
  .voice { padding: 40px 0 60px; }
  .voice_list { grid-template-columns: 1fr; gap: 40px; }
  .voice_case { width: 200px; font-size: 24px; }
  .voice_role { font-size: 14px; }
  .voice_comment { font-size: 12px; }

  /* CTA② */
  .cta.cta--style02 { padding: 40px 16px; }
  a.moreview { font-size: 15px; min-height: 56px; padding: 10px 24px; }

  /* フッター */
  footer {
    padding-top: 20px;
  }
  .footer_inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer_left { flex-direction: column; gap: 20px; }
  .footer_logo { display: none; }
  .footer_nav ul { gap: 10px 20px; }
  .footer_nav ul li a { font-size: 13px; }
  .footer_bottom a,
  .footer_bottom small { font-size: 11px; }
}
