/* =========================
  HEADER
========================= */
a{
	text-decoration:none;
}
html,body{
  margin: 0;
  padding: 0;

}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  align-items: center;
  top: var(--wp-admin--admin-bar--height, 0px);
}


.header-inner {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  padding-right:12px;
}

/* ロゴ */
.header-logo img {
  height: 60px;
}
.header-nav{
	margin-left: auto;
}
/* ナビ */
.header-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;   /* ← ul自体も中央揃え */
}

.header-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
               "Hiragino Kaku Gothic Pro", "Yu Gothic",
               "游ゴシック体", "Meiryo", sans-serif;
}

/* CTA */
.cta-btn {
  margin-left: 30px; /* 好みで調整 */
  background: #f54336;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
       transition: 
    background-color 0.3s ease,
    color 0.3s ease;
}
.cta-btn:hover{
  background: #fff;
  color: #f54336;
}

/* ハンバーガー */
.menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin-left:100px;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { bottom: 0; }
/* =========================
  FIRST VIEW
========================= */

.fv {
  height: 70vh;
  background-image: url('../images/fv5.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.fv-inner {
  position: relative;
  z-index: 1;

  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: center;
    align-items: center;
}

.fv-title {
  color: #fff;
  font-size: 37px;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-family:"Yu Mincho", "游明朝", "Hiragino Mincho ProN",
               "Hiragino Mincho Pro", "Noto Serif JP",
               "MS Mincho", serif;
animation: fadeOnly 2s ease-in-out 0.5s forwards;
text-align:center;
}
@keyframes fadeOnly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =========================
  FLOATING BUTTONS
========================= */
/* ===== FLOATING BUTTONS ===== */

.floating-buttons {
  position: fixed;          /* ← fixed ONLY */
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* ボタン */
.floating-btn {
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.floating-btn.contact { background: #f54336; }
.floating-btn.assessment { background: #0a8f3d; }

/* ×ボタン */
.floating-close {
  position: absolute;
  top: -12px;
  right: -12px;

  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;

  background: #333;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;

  cursor: pointer;
  z-index: 10000;
}

.floating-close:hover {
  opacity: 0.8;
}
/* =========================
  ABOUT US
========================= */

.about {
  background:#4f4f4f;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top:120px;
  padding-bottom:60px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* 背景英字 */
.about-bg {
  position: absolute;
  left: 0;
  top: -90px;              /* ← 日本語より少し上 */
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.08);
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
/* 見出し全体 */
.about-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.about-title {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.about-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.5);
  z-index: 2;
}

/* 2カラム */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* 左テキスト */
.about-catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0 0 28px;
}

.about-desc {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0 0 120px;
}

/* ボタン */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
       transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.about-btn:hover{
  background: #e3513e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 106, 95, 0.35);
}
/* 右画像2枚重ね */
.about-images {
  position: relative;
  min-height: 520px;
  margin-top:60px;
}

.about-img {
  overflow: hidden;
}

.about-img img {
  width: 80%;
  height: 80%;
  display: block;
  object-fit: cover;
}

/* 上：横長 */
.about-img--top {
  width: 460px;
  height: 300px;
  margin-left: auto;           /* ← 右寄せの肝 */
}

/* 下：大きめを少し左下に */
.about-img--bottom {
  position: absolute;
  top: 240px;                  /* ← 上画像に被せる */
  left: -80px;                 /* ← 左にずらす */
  width: 460px;
  height: 300px;
}
/* =========================
  TROUBLES
========================= */

.troubles {
  padding: 80px 0 90px;
  background: #fff;
}

.troubles-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し */
.troubles-head {
  text-align: center;
  margin-bottom: 60px;
}

.troubles-sub {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #111;
}

.troubles-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
}

/* お悩みだけ下線アクセント */
.troubles-accent {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.troubles-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;          /* ← 文字の少し下 */
  width: 100%;
  height: 4px;           /* ← 下線の太さ */
  background: #e3513e;   /* ← CTAと同じ赤 */
  border-radius: 999px;
}

/* 3カード */
.troubles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  justify-items: center;
  margin-bottom: 70px;
}

.trouble-card {
  width: 100%;
  max-width: 320px;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 56px 26px 28px;
  position: relative;
  background: #fff;
}

/* 番号丸 */
.trouble-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}

/* サムネ（ダミーのグレー箱） */
.trouble-thumb {
  width: 100%;
  height: 170px;
  background: #d9d9d9;
  border-radius: 4px;
  margin-bottom: 22px;
  overflow: hidden;
}

/* 画像を入れる場合 */
.trouble-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trouble-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #111;
  letter-spacing: 0.03em;
}

/* CTA */
.troubles-cta {
  display: flex;
  justify-content: center;
}

.troubles-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 50px;
  border-radius: 999px;
  background: #e3513e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
     transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.troubles-btn:hover{
	  background: #fff;
  color: #e3513e;
  box-shadow: 0 6px 16px rgba(255, 106, 95, 0.35);
}
/* =========================
  REASONS
========================= */

.reasons {
  position: relative;
  padding: 110px 0 120px;
  color: #fff;
  background-image: url('../images/reasons_bg.jpg'); /* 車内背景 */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-bottom:0px;
}

/* 暗いグラデ（読みやすくする） */
.reasons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.78)
  );
  z-index: 0;
}

.reasons-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-bottom:60px;
}

.reasons-title {
  text-align: center;
  margin: 0 0 70px;
  font-size: 27px;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.95;
}

/* 3ブロック */
.reasons-wrap {
  display: flex;
  flex-direction: column;
  gap: 86px;
}

.reason-item {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: start;
}

/* 左 */
.reason-label {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reason-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.reason-head {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

.reason-underline {
  display: inline-block;
  width: 120px;
  height: 2px;
  background: #e60012;
  margin-bottom: 18px;
}

.reason-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

/* 右：画像カード */
.reason-right {
  display: flex;
  justify-content: flex-end;
}

.reason-img {
  width: 450px;
  height: 280px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
}

.reason-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA */
.reasons-cta {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}

.reasons-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 58px;
  border-radius: 999px;
  background: #f54336;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
   transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.reasons-btn:hover {
  background: #fff;
  color: #f54336;
  box-shadow: 0 6px 16px rgba(255, 106, 95, 0.35);
}
/* =========================
  Our Service 見出し
========================= */

.service-overlap{
  position: relative;
  z-index: 20;
}

.service-overlap-box{
  position: relative;
  width: 50%;                /* ← 白背景は左だけ */
  background: #fff;
  padding: 64px 20px 20px;
}

/* 英字 */
.service-en{
  position: absolute;
  top: 50px;
  left: 20px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(0,0,0,0.15);
  line-height: 1;
  margin: 0;
  pointer-events: none;
}

/* 日本語 */
.service-ja{
  position: relative;
  margin-top: 60px;
  font-size: 16px;
  letter-spacing: 0.08em;
  z-index: 1;
  color:#000;
  font-weight:900;
}

/* =========================
  OUR SERVICE
========================= */

.service {
  background: #fff;
  position: relative;
  z-index: 2;
}
/* 本体 */
.service-body-top {
  padding-bottom:60px;
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-desc {
  max-width: 640px;
  margin: 0px 0 80px;
  font-size: 18px;
  line-height: 1.5;
  color:#000;
  padding-top:20px;
  padding-left:20px;
}

/* カード */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  padding-bottom:70px;
}

.service-card {
  border: 1px solid #ff6a5f;
  border-radius: 16px;
  text-align: center;
  padding: 20px 16px 40px;
  box-shadow: 6px 6px 0 rgba(255, 106, 95, 0.6);

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ←これで高さ揃う */
  height: 100%;
}

.service-num {
  font-size: 20px;
  color: #ff6a5f;
  font-weight: 700;
  margin: 0 0 6px;
}

.service-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  color:#000;
}

.service-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

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

.service-text-top {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
  color:#000;
  padding-right:10px;
  padding-left:10px;
  text-align:left;
}

.service-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #ff6a5f;
  border-radius: 999px;
  color: #ff6a5f;
  text-decoration: none;
  font-size: 13px;
   /* アニメーション用 */
  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.service-btn:hover {
  background: #ff6a5f;
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 106, 95, 0.35);
}

/* =========================
  FLOW TEXT ANIMATION
========================= */

.flow-text {
  position: relative;   /* absolute にしてたら relative に戻す */
  z-index: 1;           /* 背景より前 */
  overflow: hidden;
  background:#fff;
}

.flow-text-inner {
  display: flex;
  width: fit-content;
  animation: flowText 60s linear infinite; /* 遅く */
    position: relative;
  z-index: 1;
}

.flow-text-inner span {
  white-space: nowrap;
  font-size: 64px;
  font-weight: 700;
  color: rgba(0,0,0,0.25);
  letter-spacing: 0.05em;
  padding-right: 80px; /* 文字と文字の間 */
}

/* アニメーション */
@keyframes flowText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
  MEMBERS
========================= */

.members {
  padding: 60px 0;
}

.members-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し */
.members-head {
  position: relative;
  margin-bottom: 80px;
}

.members-en {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.members-ja {
  font-size: 14px;
  margin-top: 8px;
}

.members-line {
  position: absolute;
  top: 33px;
  left: 400px;
  width: calc(70% - 60px);
  height: 1px;
  background: #ff6a5f;
}

/* コンテンツ */
.members-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* 左：画像 */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, auto); /* ← ポイント */
  justify-content: center;               /* ← 全体を中央寄せ */
  gap: 40px;                              /* ← 間を詰める */
}

.members-grid img {
  width: 100%;
  max-width: 220px; /* ← ここでサイズ調整 */
  margin: 0 auto;
  display: block;
}

/* 右：テキスト */
.members-text p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 48px;
}

.members-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #ff6a5f;
  border-radius: 999px;
  color: #ff6a5f;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.members-btn:hover {
  background: #ff6a5f;
  color: #fff;
}
/* =========================
   blog
========================= */
.blog-section {
  position:relative;
  background: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: url('../images/blog_bg.jpg'); /* 車内背景 */
  background-size: cover;
  background-position: center;
}
.gallery-section{
  position:relative;
  background: #fff;
  padding: 80px 0;
  text-align: center;
  background:#fff;
}
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* ← 黒フィルタの濃さ */
  z-index: 1;
}
.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
    position: relative;
  z-index: 2;
}

.blog-header {
  margin-bottom: 48px;
  position: relative;
  display: block;              /* flexやめる */
  text-align: left;            /* ← 左寄せ */
}
 p{
	text-decoration: none;
}
/* PCでは通常リスト表示 */
.blog-list {
  display: flex;
}

.blog-slider-wrapper {
    visibility: hidden;
  height: 0;
  overflow: hidden;
}
/* Swiper本体は必ず幅を持たせる */
.blog-slider {
  width: 100%;
  overflow: visible;
}
.blog-en {
  font-size: 38px;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 300;
  padding: 0;
}
.gallery-en{
  font-size: 38px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 300;
  padding: 0;
}
/* 日本語（ブログ）を下に */
.blog-ja {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
}
.gallery-ja{
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #000;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* 4つ並べる */
  margin-bottom: 48px;
}

.blog-item {
  width: 260px;
  text-align: left;
}

.blog-thumb img,
.blog-thumb .no-image {
  width: 100%;
  height: 160px;
  background: #ddd;
  object-fit: cover;
}

.blog-title {
  margin-top: 16px;
  font-size: 14px;
  color: #fff;
  font-weight:300;
  line-height: 1.8;
  text-decoration: none; /* ← 下線を削除 */
}
.gallery-title{
  margin-top: 16px;
  font-size: 14px;
  color: #000;
  font-weight:300;
  line-height: 1.8;
  text-decoration: none; /* ← 下線を削除 */
}
/* ボタン */
.voice-btn-wrap-school {
  text-align: center;
  margin-bottom: 80px;
}

.voice-btn-school {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #382d28;
  color: #382d28;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: all 0.35s ease;
}

.voice-btn-school:hover {
  background: #382d28;
  color: #fff;
}
.blog-btn {
  text-align: center;
  margin-bottom: 80px;
}
.blog-btn a {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #ff6a5f;
  border-radius: 999px;
  color: #ff6a5f;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
}
.blog-btn a:hover {
  background: #ff6a5f;
  color: #fff;
}
.blog-btn a span {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #2d2f44;
  font-weight: bold;
}


.blog-slider .swiper-slide {
  text-align: left;
}

/* 黒背景（TOP）でも読めるように */
.blog-section .blog-card-date{
  color: rgba(255,255,255,0.8);
}

.blog-section .blog-card-label.is-blog{
  background: rgba(255,255,255,0.9);
}

.blog-card-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}

.blog-card-label{
  display:inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
  margin-top:10px;
}

.blog-card-label.is-news{
  background:#1f2e4d;
  color:#fff;
}

.blog-card-label.is-blog{
  background:#eee;
  color:#1f2e4d;
  border:1px solid #d5d5d5;
}

.blog-card-label.is-gallery{
  background:#ff6a5f;
  color:#fff;
  border:1px solid #d5d5d5;
}
.blog-card-date{
  font-size: 12px;
  color:#777;
  margin:0;
    margin-top:10px;
}
/* ▼ブログセクション内のリンク下線を完全に消す（PC/SP共通） */
.blog-section a,
.blog-section a:link,
.blog-section a:visited,
.blog-section a:hover,
.blog-section a:active {
  text-decoration: none;
}
.gallery-section a,
.gallery-section a:link,
.gallery-section a:visited,
.gallery-section a:hover,
.gallery-section a:active {
  text-decoration: none;
}
/* =========================
  FOOTER
========================= */

.site-footer{
  background:#fff;
  border-top: 1px solid #eee;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 左 */
.footer-logo img{
  height: 44px;
  width: auto;
  display: block;
}

.footer-text{
  margin: 28px 0 36px;
  font-size: 14px;
  line-height: 2;
  color:#111;
}

.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border: 1px solid #111;
  border-radius: 999px;
  color:#111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .25s;
}
.footer-cta:hover{
  background:#111;
  color:#fff;
}

/* 右：ナビ */
.footer-nav{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  justify-content: end;
}

.footer-nav-title{
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 14px;
  color:#111;
}

.footer-nav-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-nav-list a{
  color:#111;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: .2s;
}
.footer-nav-list a:hover{
  opacity: .65;
}

.footer-nav-list.is-strong a{
  font-weight: 700;
}

/* 下部コピー */
.footer-bottom{
  border-top: 1px solid #eee;
  padding: 18px 24px;
  text-align: center;
}
.footer-copy{
  font-size: 12px;
  color: #666;
}
/* =========================
  CONTACT CTA
========================= */

.contact-cta{
  position: relative;
  background-image: url('../images/contact_bg.jpg'); /* ← 添付の道路画像 */
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  text-align: center;
}

.contact-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45); /* 暗さ調整 */
}

.contact-cta-inner{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color:#fff;
}

.contact-cta-en{
  font-size: 36px;
  letter-spacing: .2em;
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-cta-ja{
  font-size: 14px;
  letter-spacing: .2em;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-cta-text{
  font-size: 18px;
  line-height: 2;
  margin-bottom: 56px;
  opacity: .9;
}

.contact-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 56px;
  border-radius: 999px;
  background: #ff6a5f;
  color:#fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: .3s;
}

.contact-cta-btn:hover{
  background: #fff;
  color: #ff6a5f;
}
/* =========================
  BLOG ARCHIVE
========================= */
.blog-archive-hero{
  position: relative;
  padding: 120px 24px;
  background-image: url('../images/news_bg.jpg'); /* メーター背景の画像に差し替え */
  background-size: cover;
  background-position: center;
  color:#fff;
}
.blog-archive-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}
.blog-archive-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-archive-water{
  font-size: 88px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .12;
  margin: 0 0 10px;
  text-transform: lowercase;
}
.blog-archive-title{
  font-size: 28px;
  margin: -40px 0 22px;
}
.blog-archive-lead{
  max-width: 560px;
  line-height: 2;
  opacity: .9;
  font-weight:700;
}

.blog-archive-body{
  background:#fff;
  padding: 70px 0 100px;
}
.blog-archive-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FILTER */
.blog-filter{
  margin: 0 0 50px;
  padding-bottom: 18px;
  border-bottom: 2px solid #111;
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-filter-label{
  font-weight: 700;
  letter-spacing: .12em;
}
.blog-filter-select select{
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 8px;
  background: transparent;
}

/* GRID */
.blog-archive-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.blog-archive-card{ }
.blog-archive-link{
  display:block;
  text-decoration:none;
  color:#111;
}
.blog-archive-thumb{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
.blog-archive-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.blog-archive-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 12px 0 8px;
}
.blog-archive-cat{
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color:#333;
}
.blog-archive-date{
  font-size: 12px;
  color:#666;
}
.blog-archive-ttl{
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* pager */
.blog-archive-pager{
  margin-top: 40px;
  text-align:center;
}
.blog-archive-pager .page-numbers{
  display:inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  color:#111;
  text-decoration:none;
}
.blog-archive-pager .current{
  background:#111;
  color:#fff;
  border-color:#111;
}
/* =========================
   SINGLE POST
========================= */

.single-hero {
  padding: 120px 24px 80px;
  background: #f7f7f7;
  text-align: center;
}

.single-cat {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.single-title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.4;
  margin-bottom: 16px;
}

.single-date {
  font-size: 14px;
  color: #777;
}

.single-body {
  padding: 80px 24px;
}

.single-inner {
  max-width: 900px;
  margin: 0 auto;
}

.single-thumb {
  margin-bottom: 48px;
}

.single-thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-content {
  font-size: 16px;
  line-height: 1.9;
}

.single-content p {
  margin-bottom: 1.6em;
}

.single-content h2 {
  margin: 2.5em 0 1em;
  font-size: 22px;
}

.single-content h3 {
  margin: 2em 0 1em;
  font-size: 18px;
}

.single-nav {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.single-nav a {
  font-size: 14px;
  text-decoration: none; 
  color:#000;
    display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 56px;
  border-radius: 999px;
  background: #ff6a5f;
  color:#fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: .3s;
}
.single-nav a:hover{
  background: #fff;
  color: #ff6a5f;
}
/* =========================
   CONTACT
========================= */

.contact-hero {
  position: relative;
  height: 520px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%),
    url("../images/contact-hero.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* ヘッダー固定対策（必要なら） */
.contact-hero {
  padding-top: var(--header-h);
}

/* 中身 */
.contact-hero-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

/* テキスト */
.contact-hero-text {
  color: #fff;
  max-width: 620px;
}

.contact-hero-en {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.15);
  margin-bottom: 0px;
}

.contact-hero-ja {
  font-size: 24px;
  margin-bottom: 24px;
  margin-top:0px;
}

.contact-hero-lead {
  font-size: 18px;
  line-height: 1.9;
  color: #ddd;
}
.contact-title {
  font-size: 48px;
  letter-spacing: .1em;
  text-transform: lowercase;
}

.contact-sub {
  font-size: 16px;
  margin-top: 8px;
}
.contact-line {
  padding: 120px 24px;
  background-image: url("../images/contact-hero-line.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-line-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end; /* ← 右に寄せる */
}

/* テキスト塊 */
.contact-line-text {
  max-width: 420px;
  color: #000;
}

/* 見出し */
.contact-line-title {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* 箇条書き */
.contact-line-list {
  margin-bottom: 32px;
}

.contact-line-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* LINEボタン */
.line-btn {
  display: inline-block;
  background: #0a8f3c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display:flex;
  justify-content:center;
  margin:0 auto;
  transition: .3s;
}
.line-btn:hover{
  background: #fff;
  color: #0a8f3c;
}
/* 見出し */
.contact-line-title {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align-last:center;
}

/* リスト */
.contact-line-list {
  margin-bottom: 32px;
}

.contact-line-list li {
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}
.contact-form {
  padding: 100px 24px;
  background: #fff;
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* CF7 */
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 24px;
  border: 1px solid #f00;
}

.wpcf7-submit {
  background: #f00;
  color: #fff;
  border: none;
  padding: 16px;
  width: 100%;
  cursor: pointer;
}

.req {
  font-size: 12px;
  margin-left: 8px;
  color:#f54336;
}
/* =========================
   相談内容（横並び・完成形）
========================= */

.consult-row {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  align-items: center;
}

/* 各項目 */
.consult-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight:700;
  
}

/* チェックボックス */
.consult-item input[type="checkbox"] {
  appearance: none;
  width: 26px;
  height: 26px;
  border: 3px solid #f54336;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.consult-item input[type="checkbox"]:checked {
  background:#f54336;
}

.consult-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* その他 */
.consult-other {
  display: flex;
  align-items: center;
  gap: 16px;
}

.consult-other input[type="text"] {
  width: 320px;
  padding: 10px 14px;
  border: 3px solid #f54336;
  border-radius: 6px;
}
/* CF7が吐く余計な余白を消す */
.wpcf7-list-item {
  margin: 0;
}

/* consult-item を横並びに安定させる */
.consult-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
/* CF7が自動生成する label を中央揃えにする */
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top:-10px; 
  font-weight:700;
}
label{
	font-weight:700;
}
.wpcf7-list-item-label {
  position: relative;
  top: -10px; /* ← まずは -1px */
}
/* CF7 エラーメッセージ（入力してください） */
.wpcf7-not-valid-tip {
  font-size: 10px;   /* ← 小さくする */
  margin-top: 6px;
  font-weight:500;
}
/* =========================
   SERVICE PAGE
========================= */

/* HERO */
.service-hero{
  position: relative;
  height: 520px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.10) 100%),
    url("../images/service-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero-inner{
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* big EN text */
.service-hero-en{
  font-size: clamp(44px, 6.2vw, 86px);
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(255,255,255,.25);
  margin: 0 0 10px;
  line-height: 1.05;
}

/* JA subtitle */
.service-hero-ja{
  margin: 0;
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  font-weight:700;
}

/* BODY */
.service-body{
  background: #fff;
  padding: 60px 24px 60px;
}

.service-body-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.service-copy{
  max-width: 760px;
}

.service-title{
  font-size: 24px;
  margin: 0 0 22px;
  color: #111;
}

.service-text{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 2.0;
  color: #111;
}
/* =========================
   SERVICE DETAIL (Sticky)
========================= */

.service-detail {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

/* 2カラム */
.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  padding-right:0px;
}

/* =========================
   LEFT : TEXT
========================= */

.service-detail-text {
  padding-right: 40px;
}

/* 見出し */
.service-detail-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}

.service-no {
  font-size: 96px;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  line-height: 1;
}

.service-name {
  font-size: 32px;
  margin: 0;
}

/* リード */
.service-detail-lead {
  margin-bottom: 64px;
}

.service-detail-lead p {
  font-size: 17px;
  line-height: 1.5;
  color: #ccc;
}

/* ステップ */
.service-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-steps li {
  display: flex;
  gap: 15px;
  padding: 22px 0;
  position: relative;
}

/* 縦ライン */
.service-steps li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.2);
}

.service-steps li:last-child::before {
  display: none;
}

.step-no {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-steps p {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #ccc;
}

/* =========================
   RIGHT : STICKY IMAGE
========================= */

.service-detail-media {
  position: relative;
  margin-top:-100px;
}

/* sticky本体 */
.service-detail-media-inner {
  position: sticky;
  top: 120px;
  height: 520px;
}

.service-detail-media img {
  width: 100%;
  height: auto;
  display: block;
}
/* グレーのカラーオブジェクト */
.media-bg {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 380px;
  height: 280px;
  background: #666;
  z-index: 1;
}
/* 画像共通 */
.media-img {
  position: absolute;
  z-index: 2;
}

.media-img img {
  width: 100%;
  height: auto;
  display: block;
}
.media-img-before-after{
	  position: absolute;
  z-index: 2;
}
.media-img-before-after img{
  width: 100%;
  height: auto;
  display: block;
}
/* 上の画像（走行） */
.media-img-main {
  top: 150px;
  right: 40px;
  width: 300px;
}

/* 下の画像（内装） */
.media-img-sub {
  bottom: 0;
  left: 0;
  width: 380px;
}
.media-img-beaf-sub{
  bottom: 0;
  left: 0;
   width:550px;
}
/* =========================
   Q&A
========================= */

.qa {
  background: #e5e5e5;
  padding: 140px 24px;
}

.qa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* 左側 */
.qa-side {
  position: sticky;
  top: 120px;
}

.qa-side-en {
  font-size: 80px;
  font-weight: 700;
  color: #bdbdbd;
  margin: 0 0 8px;
  line-height: 1;
}

.qa-side-ja {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* =========================
   右：Q&Aカード
========================= */

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* 質問 */
.qa-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.qa-q {
  font-size: 18px;
  font-weight: 700;
  color: #e60012;
  flex-shrink: 0;
}

.qa-text {
  font-size: 17px;
  line-height: 1.6;
  color: #111;
}

.qa-icon {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700;
  color: #e60012;
}

/* 回答 */
.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.qa-answer p {
  margin: 0;
  padding: 0 24px 24px 56px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* 開いた状態 */
.qa-item.is-open .qa-answer {
  max-height: 300px;
}
/* =========================
   COMPANY PAGE
========================= */

.company-page {
  background: #000;
  color: #fff;
}

/* ===== HERO ===== */

.company-hero {
  height: 520px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.7), rgba(0,0,0,.2)),
    url("../images/company-hero.jpg");
  background-size: cover;
  background-position: center right;
}

.company-hero-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-hero-en {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,.25);
  margin-bottom:-20px;
}

.company-hero-ja {
  font-size: 24px;
  margin: 8px 0 24px;
}

.company-hero-lead {
  font-size: 18px;
  line-height: 1.9;
  color: #ddd;
}

/* ===== ABOUT US ===== */

.aboutus {
    padding: 160px 24px;
  background: #000;
}

.aboutus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: flex-start;
}
/* 左：固定テキスト */
.aboutus-text {
  position: sticky;
  top: 240px; /* ヘッダー分 */
}

/* 左テキスト */
.aboutus-en {
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  margin: 0 0 8px;
}
.aboutus-ja {
  font-size: 20px;
  margin-bottom: 32px;
}

.aboutus-lead {
  font-size: 22px;
  margin-bottom: 20px;
}
.aboutus-desc{
	margin-bottom:40px;
}
.aboutus-desc p {
  font-size: 18px;
  color: #ccc;
}

/* =========================
   右：流れる画像
========================= */

.aboutus-media {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 800px;  /* ← 好きな分だけ */
}
.aboutus-img {
  width: 50%;
  height: auto;
  background: #fff;
}
.aboutus-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.aboutus-2{
	margin-left:100px;
}
/* =========================
   ふわっと表示
========================= */

.fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 位置ズラし（デザイン再現） */
.aboutus-img.img-1 {
  margin-left: 80px;
}

.aboutus-img.img-2 {
  margin-left: 0;
}

.aboutus-img.img-3 {
  margin-left: 120px;
}
/* =========================
   CEO MESSAGE
========================= */

.ceo-message {
  background: #fff;
  padding-bottom: 120px;
}

/* ===== 上部ビジュアル ===== */

.ceo-hero {
  position: relative;
}

.ceo-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 画像に食い込む白ボックス */
.ceo-hero-box {
  position: absolute;
  left: 0px;
  bottom: -60px; /* ← 食い込み量 */
  background: #fff;
  padding: 0px 50px;
  width: 400px;
}

.ceo-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top:10px;
  color:#000;
}

.ceo-lead {
  font-size: 14px;
  color: #555;
}

/* ===== 本文エリア ===== */

.ceo-body {
  max-width: 1200px;
  margin: 120px auto 0; /* ← 上の食い込み分を考慮 */
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  color:#000;
}

.ceo-text p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}

/* 右側縦画像 */
.ceo-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
/* =========================
   PHILOSOPHY
========================= */

.philosophy {
  position: relative;
  padding: 160px 24px;
  background-image:
    linear-gradient(
      rgba(0,0,0,.55),
      rgba(0,0,0,.55)
    ),
    url("../images/philosophy-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.philosophy-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.philosophy-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: .1em;
}
.philosophy-list {
  list-style: none;
  padding: 0;
  max-width:1100px;
  margin: 0 auto;
 text-align:center;
}

.philosophy-list li {
  font-size: 28px;
  line-height: 2.2;
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
  text-align: left;
}


/* =========================
   MEMBERS
========================= */

.members {
  padding: 100px 24px;
  background: #fff;
}

.members-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 見出し */
.members-head {
  margin-bottom: 120px;
}

.members-en {
  font-size: 64px;
  font-weight: 700;
  color: rgba(200,0,0,.15);
  line-height: 1;
}

.mem-members-ja {
  font-size: 24px;
  margin-top: -16px;
  color:#000;
}

/* メンバー1人分 */
.member-item {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
  margin-bottom: 160px;
}

/* テキスト側 */
.member-catch {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

.member-position {
  font-size: 14px;
  color: #666;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid #e60012;
  margin-bottom: 32px;
}
.member-text{
	color:#000;
}
/* プロフィール */
.member-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-info li {
  font-size: 18px;
  line-height: 2;
}

.member-info span {
  font-weight: 600;
  margin-right: 8px;
}

/* 画像 */
.member-image img {
  width: 70%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18); /* 影も少し軽く */
}
/* =========================
   OUTLINE
========================= */

.outline {
  background: #ededed;
  color: #000;
  padding: 50px 24px 50px;
}

/* 中身 */
.outline-inner {
  max-width: 1000px;
  margin: 0 auto 120px;
}

/* 見出し */
.outline-head {
  margin-bottom: 64px;
}

.outline-en {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0,0,0,.25);
  line-height: 1;
}

.outline-ja {
  font-size: 18px;
  margin-top: -8px;
}

/* 会社情報リスト */
.outline-list {
  margin: 0;
}

.outline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 24px 0;
  border-bottom: 1px dotted rgba(0,0,0,.4);
}

.outline-row dt {
  font-size: 14px;
  color: rgba(0,0,0,);
}

.outline-row dd {
  font-size: 14px;
  margin: 0;
}

/* Google Map */
.outline-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}
/* ========================================
   kitchen car FV
======================================== */
.kcar-fv{
  position: relative;
  padding: 160px 0 70px;
  background-image: url("../images/kitchen-car-fv.jpg");
  background-size: cover;
  background-position: center;
  overflow-x:hidden;
}
/* オーバーレイ */
.kcar-fv::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0);
}
/* コンテナ */
.kcar-fv__inner{
  position: relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
}
/* テキストエリア */
.kcar-fv__content{
  max-width:700px;
  color:#000;
}
/* kitchen car */
.kcar-fv__title{
  font-size:60px;
  font-weight:700;
  line-height:1;
  margin:0;
  background-color:#fff;
  width:450px;
  padding:20px 20px 20px 20px;
  border-radius:10px;
}
/* キッチンカー制作 */
.kcar-fv__subtitle{
  font-size:30px;
  margin:10px 0 40px;
  font-weight:700;
  background-color:#fff;
  width:450px;
    padding:20px 20px 20px 20px;
  border-radius:10px;
}
/* 見出し */
.kcar-fv__catch{
  font-size:25px;
  line-height:1.5;
  margin-bottom:20px;
}
/* テキスト */
.kcar-fv__text{
  font-size:18px;
  line-height:1.5;
  width:400px;
  background-color:#fff;
    width:450px;
    padding:20px 20px 20px 20px;
  border-radius:10px;
}
/* =========================
   kitchen car 強み
========================= */

.kcar-strength{
background:#fff;
padding-top:70px;
padding-bottom:200px;
color:#fff;
}

.kcar-strength__inner{
max-width:1200px;
margin:0 auto;
padding:0 40px;
display:grid;
grid-template-columns: 1fr 520px;
gap:80px;
align-items:center;
}

/* テキスト */

.kcar-strength__title{
font-size:42px;
line-height:1.2;
margin-bottom:40px;
color:#f54336;
}

.kcar-strength__desc{
font-size:18px;
line-height:1.5;
margin-bottom:40px;
color:#000;

}

/* 画像エリア */
.kcar-strength__visual{
position:relative;
height:520px;
}
/* 赤背景 */
.kcar-strength__bg{
position:absolute;
right:-120px;
top:240px;
width:420px;
height:360px;
background:#f54336;
z-index:1;
}

/* 画像 */
.kcar-strength__img{
position:absolute;
z-index:2;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.kcar-strength__img img{
width:100%;
display:block;
}
/* 上画像 */
.kcar-strength__img--top{
top:200px;
right:0;
width:300px;
}

/* 下画像 */
.kcar-strength__img--bottom{
bottom:-100px;
left:-60px;
width:320px;
}
/* ========================================
   kitchen car 料金セクション
======================================== */
.kcar-price{
  background: #efefef;
  padding: 42px 0 110px;
}

.kcar-price__inner{
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 上部赤バナー */
.kcar-price__hero{
  width: 150%;
  max-width: 890px;
  margin: 0 auto 54px;
  background: #f54336;
  color: #fff;
  padding: 24px 44px 28px;
    border-radius:10px;
}

.kcar-price__hero-sub{
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.kcar-price__hero-main{
  margin: 0;
  font-size: 75px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
   border-radius:10px;
}

/* 見出し */
.kcar-price__head{
  margin-bottom: 36px;
}

.kcar-price__title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  
}
.kcar-price__line{
  width: 590px;
  max-width: 100%;
  border-top: 3px dashed #111;
}

/* グリッド */
.kcar-price__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 86px;
  row-gap: 32px;
}

/* カード */
.kcar-price-card{
  color: #111;
}

.kcar-price-card__img{
  margin: 0 0 12px;
  width: 100%;
  aspect-ratio: 264 / 151;
  overflow: hidden;
}

.kcar-price-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kcar-price-card__label{
  display: inline-block;
  min-width: 107px;
  background: #f54336;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 18px 12px;
  margin-bottom: 14px;
}

.kcar-price-card__price{
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}
/* ==========================
   Flow Section
========================== */

.kcar-flow-section{
position:relative;
padding:160px 0 120px;
background:#eee;
overflow:hidden;
padding-bottom:0px;
}


/* 背景画像 */

.kcar-flow-bg{
position:absolute;
top:0;
left:0;
right:0;
height:920px;
background-image:url("../images/kitchen-car-fv.png");
background-size:cover;
background-position:center;
filter:brightness(0.55);
z-index:1;
}
/* オーバーレイ */
.kcar-flow-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.1);
}

/* 赤アクセント */

.kcar-flow-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:450px;
height:240px;
background:#f54336;
z-index:2;
}

.kcar-flow-section::after{
content:"";
position:absolute;
right:0;
top:350px;
width:450px;
height:240px;
background:#f54336;
z-index:2;
}


/* 選ばれる理由カード */

.kcar-reason{
position:relative;
z-index:3;
background:#f3f3f3;
width:600px;
margin:0 auto;
padding:40px 60px;
box-shadow:0 10px 20px rgba(0,0,0,0.2);
text-align:center;
}

.kcar-reason-title{
font-size:22px;
margin-bottom:30px;
}

.kcar-reason-list{
text-align:left;
}

.kcar-reason-list li{
margin-bottom:14px;
font-size:22px;
font-weight:600;
}


/* 制作フロー */

.kcar-flow-card{
position:relative;
z-index:3;
width:600px;
background:#f3f3f3;
margin-top:260px;
margin-left:0px;
padding:30px 80px;
box-shadow:0 18px 35px rgba(0,0,0,0.25);
}


.kcar-flow-title{
font-size:22px;
margin-bottom:10px;
}

.kcar-flow-line{
border-top:2px dashed #e40012;
width:240px;
margin-bottom:40px;
}


/* タイムライン */

.kcar-flow{
position:relative;
padding-left:80px;
}


.kcar-flow-item{
display:flex;
align-items:flex-start;
margin-bottom:70px;
position:relative;

}

.kcar-flow-num{
width:70px;
height:70px;
background:#f54336;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
margin-right:40px;
position:relative;
}

.kcar-flow-num::after{
content:"";
position:absolute;
top:90px;
left:50%;
transform:translateX(-50%);
height:60px;
border-left:2px dashed #444;
}

.kcar-flow-item:last-child .kcar-flow-num::after{
display:none;
}

.kcar-flow-item p{
font-size:20px;
font-weight:600;
max-width:420px;
line-height:1.9;
margin-top:18px;
}
/* =========================
   制作期間
========================= */
.kcar-period{
  background: #efefef;
  padding: 28px 0 42px;
}

.kcar-period-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
}

.kcar-period-item{
  width: 220px;
  height: 120px;
  background: #f54336;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 12px 16px rgba(0,0,0,0.28);

  /* 左右とも同じ角度のくびれ */
  clip-path: polygon(
    0 0,
    84% 0,
    100% 50%,
    84% 100%,
    0 100%,
    8% 50%
  );
}

.kcar-period-item span{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
}
/* =========================
   制作実績
========================= */

.kcar-works{
position:relative;
background:#efefef;
padding:120px 0;
}

/* 上の赤ライン */
.kcar-works::before{
content:"";
position:absolute;
top:0;
left:0;
width:380px;
height:60px;
background:#f54336;
}

/* 下の赤ライン */

.kcar-works::after{
content:"";
position:absolute;
right:0;
bottom:0;
width:380px;
height:60px;
background:#f54336;
}


.kcar-works-inner{
max-width:1100px;
margin:auto;
padding:0 70px;
}


/* タイトル */
.kcar-works-title{
font-size:28px;
margin-bottom:10px;
}

/* 点線 */
.kcar-works-line{
width:360px;
border-top:2px dashed #333;
margin-bottom:60px;

}


/* 実績 */
.kcar-work-item{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
margin-bottom:120px;
}

/* 名前 */
.kcar-work-name{
color:#e40012;
font-size:22px;
margin-bottom:10px;
}

/* 下線 */
.kcar-work-underline{
width:320px;
border-top:2px solid #333;
margin-bottom:20px;
}

/* テキスト */
.kcar-work-text p{
line-height:1.9;
font-weight:500;
}


/* 画像 */
.kcar-work-image{
position:relative;
}

/* 背景ベージュ */
.kcar-work-bg{
position:absolute;
right:-30px;
bottom:-40px;
width:100%;
height:100%;
background:#e6d6c9;
z-index:1;
}

.kcar-work-image img{
position:relative;
z-index:2;
width:80%;
display:block;
}












/* =========================
  RESPONSIVE
========================= */

@media (max-width: 768px) {

  .header-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: #fff;
    transform: translateX(100%);
    transition: 0.3s;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
	  .fv-title {
    font-size: 24px;
    
  }
.fv-title {
transform: translateX(0px); /* 微調整用 */
animation: fadeOnly 2s ease-in-out 0.5s forwards;
}
  .floating-buttons {
    right: 16px;
    bottom: 16px;
  }

  .floating-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
	  .about-bg {
    font-size: 56px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    min-height: 520px;
  }

  .about-img--top {
    max-width: 100%;
    height: 220px;
  }

  .about-img--bottom {
    right: 0;
    top: 240px;
    width: 90%;
    height: 260px;
  }
	  .about-images {
    min-height: auto;
  }

  .about-img--top,
  .about-img--bottom {
    position: static;
    width: 100%;
    height: auto;
  }

  .about-img--bottom {
    margin-top: 24px;
  }
	  .troubles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .troubles-title {
    font-size: 20px;
  }
	.trouble-text{
		font-size:10px;
	}
  .troubles-btn {
    width: min(320px, 100%);
  }
	  .reason-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }
.trouble-card {
  width: 70%;
  padding: 56px 26px 28px;
}
  .reason-right {
    justify-content: flex-start;
  }

  .reason-img {
    width: 280px;
    height: 200px;
  }

  .reasons-wrap {
    gap: 60px;
  }

  .reasons-cta {
    margin-top: 70px;
  }
  .service-head-wrap {
    margin-top: -80px;
    padding-top: 80px;
  }

  .service-en {
    font-size: 43px;
  }

	  .members {
    padding: 80px 0;
  }

  /* 見出し */
  .members-en {
    font-size: 36px;
  }

  .members-line {
    display: none;
  }

  /* 全体を1カラムに */
  .members-content {
    grid-template-columns: 2fr;
    gap: 0px;
  }

  /* 画像：1カラム */
  .members-grid {
    gap: 20px;
  }
	.members-head{
		margin-bottom:30px;
	}
  /* テキスト */
  .members-text {
    text-align: center;
  }

  .members-text p {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 32px;
	text-align:left;
  }

  /* ボタン中央 */
  .members-btn {
    margin: 0 auto;
  }
	  .footer-inner{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 20px 40px;
  }

  .footer-nav{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-content: start;
  }
	  .contact-cta{
    padding: 96px 20px;
   font-size:10px;
  }
.contact-cta-text{
  font-size: 14px;
  line-height: 2;
  margin-bottom: 56px;
  opacity: .9;
}
  .contact-cta-en{
    font-size: 28px;
  }

  .contact-cta-btn{
    width: 50%;
    height: 56px;
	font-size:11px;
  }
	  .contact-hero {
    height: 420px;
    background-position: center;
  }

  .contact-hero-en {
    font-size: 48px;
  }
	  .news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
	.service-hero{
		height: 420px; 
	}
	.service-body{
		padding: 72px 18px 100px;
	}
	  .service-detail {
    padding: 120px 0;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  /* SPでは固定解除 */
  .service-detail-media-inner {
    position: static;
  }
  .qa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qa-side {
    position: static;
  }
	  .aboutus-inner {
    grid-template-columns: 1fr;
  }

  .aboutus-img {
    margin-left: 0 !important;
  }
	  .aboutus-inner {
    grid-template-columns: 1fr;
  }

  .aboutus-text {
    position: static;
    margin-bottom: 64px;
  }
	  .ceo-hero img {
    height: 300px;
  }

  .ceo-hero-box {
    left: 24px;
    padding: 32px;
	padding-top:0px;
	padding-bottom:0px;
	width: calc(40% - 50px);
  }

  .ceo-body {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 100px;
  }
	  .philosophy {
    padding: 120px 20px;
  }

  .philosophy-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .philosophy-list li {
    font-size: 14px;
    line-height: 2;
  }
	  .members {
    padding: 120px 20px;
  }

  .members-en {
    font-size: 48px;
  }

  .member-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 120px;
  }

  .member-image {
    order: -1; /* ← 画像を上に */
  }

  .member-image img {
    max-width: 320px;
    margin: 0 auto;
	width: 100%;
  }
	  .outline {
    padding: 120px 20px 0;
  }

  .outline-en {
    font-size: 36px;
  }

  .outline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .outline-row dt {
    font-size: 13px;
  }

  .outline-row dd {
  }

  .outline-map iframe {
    height: 280px;
  }
	.service-overlap-box{
  position: relative;
  width: 60%;                /* ← 白背景は左だけ */
  background: #fff;
  padding: 30px 40px 20px;
}
	.service-body{
		padding-left:10px;
	   padding-right:10px;
	}
	.service-inner{
		padding-left:10px;
	    padding-right:10px;
	}
/* 英字 */
.service-en{
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 35px;
  pointer-events: none;
}

/* 日本語 */
.service-ja{
  margin-top: 30px;
  font-size: 12px;
}
.service-desc {
  margin: 0px 0 80px;
  padding-top:0px;
}
  .service-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 100px;
  }

  /* ← ここが超重要：PC用の配置指定を全解除 */
  .service-card {
    max-width: none;     /* 2カラム時は幅制限いらない */
	padding-bottom:30px;
	
  }
	
.service-num {
  font-size: 20px;
  color: #ff6a5f;
  font-weight: 700;
  margin: 0 0 6px;
}

.service-title {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 700;
  color:#000;
}

.service-img {
  width: 250px;
  height: 150px;
  border-radius: 10%;
  overflow: hidden;
  margin: 0 auto 20px;
}

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

.service-text {
  font-size: 8px;
  line-height: 1.4;
  margin-bottom: 20px;
  color:#000;
  text-align:left;
}

.service-btn {
  padding: 5px 23px;
  font-size: 10px;
}
	.floating-buttons {
  position: fixed;          /* ← fixed ONLY */
  right: 16px;
  bottom: 16px;
}
	.floating-btn {
  padding: 9px 11px;   /* 14×20 → 11×16 */
  font-size: 13px;     /* 14 → 13 */
  box-shadow: 0 4px 14px rgba(0,0,0,0.18); /* 影も少し軽く */
}
	.floating-close {
  top: -8px;
  right: 20px;
  transform: translateX(50%);
}

	section{
		padding-left:0px;
		padding-right:0px;
	}
	

  /* スライドの幅を調整 */
  .blog-slider .swiper-slide {
    width: 80%;          /* ← これが“カード感”を作る */
  }

  .blog-slider {
    padding-bottom: 32px;
  }

  .blog-slider .swiper-pagination {
    bottom: 0;
  }
  .blog-item {
    width: 100%;
  }

  .blog-thumb img {
    height: 180px;
  }

  .blog-title {
    font-size: 13px;
    line-height: 1.7;
  }
	  .blog-list {
    display: none;
  }
  /* スライダーを表示 */
  .blog-slider-wrapper {
    visibility: visible;
    height: auto;
  }
  /* スライドをカードっぽく */
  .blog-slider .swiper-slide {
    width: 80%;
  }
	.aboutus-media{
		margin-top:0px;
	}
	.aboutus-2{
	margin-left:1000px;
}
	/* グレーのカラーオブジェクト */
.media-bg {
  right: -0px;
  bottom: 0;
  width: 380px;
  height: 280px;
  background: #666;
  z-index: 1;
}
/* 画像共通 */
.media-img {
  position: absolute;
  z-index: 2;
}

.media-img img {
  width: 70%;
  height: auto;
  display: block;
}
	/* 下の画像（内装） */
.media-img-sub {
  bottom: 0;
  left: 0;
  width: 280px;
}
	.service-detail-media-inner{
		height:400px;
	}
	html {
  transform: none !important;
}
body {
  transform: none !important;
}
	.kcar-strength{

padding:100px 0;

}

.kcar-strength__inner{
padding:0 24px;
gap:60px;
}

.kcar-strength__title{
font-size:30px;
}

.kcar-strength__desc{
font-size:14px;
line-height:1.9;
}

/* 画像エリア */

.kcar-strength__visual{
width:100%;
height:auto;
display:flex;
flex-direction:column;
gap:20px;
}

/* 赤背景 */
.kcar-strength__bg{
right:-40px;
top:120px;
width:220px;
height:180px;
}

/* 画像 */

.kcar-strength__img{
position:relative;
}

.kcar-strength__img--top{
width:80%;
margin-left:auto;
}

.kcar-strength__img--bottom{
width:85%;
margin-right:auto;
}
	  .kcar-price{
    padding: 32px 0 70px;
  }

  .kcar-price__inner{
    padding: 0 10px;
  }

  .kcar-price__hero{
    padding: 18px 0px 20px;
    margin-bottom: 34px;
  }

  .kcar-price__hero-sub{
    font-size: 15px;
    margin-bottom: 8px;
  }

  .kcar-price__hero-main{
    font-size: 30px;
    line-height: 1.1;
  }

  .kcar-price__head{
    margin-bottom: 28px;
  }

  .kcar-price__title{
    font-size: 28px;
    margin-bottom: 10px;
  }

  .kcar-price__line{
    width: 100%;
    border-top-width: 2px;
  }

  .kcar-price__grid{
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .kcar-price-card__img{
    margin-bottom: 10px;
  }

  .kcar-price-card__label{
    min-width: 92px;
    font-size: 17px;
    padding: 10px 14px 11px;
    margin-bottom: 12px;
  }

  .kcar-price-card__price{
    font-size: 30px;
  }
	
	/* フローカード */
.kcar-flow-card{
width:92%;
margin-left:15px;
padding:35px 25px;
}

/* タイトル */
.kcar-flow-title{
font-size:18px;
}

/* 点線 */
.kcar-flow-line{
width:150px;
}

/* フロー全体 */
.kcar-flow{
padding-left:30px;
}

/* 各ステップ */
.kcar-flow-item{
margin-bottom:45px;
}

/* 番号丸 */
.kcar-flow-num{
width:50px;
height:50px;
font-size:16px;
margin-right:20px;
}

/* 縦線 */
.kcar-flow-num::after{
top:65px;
height:45px;
}

/* テキスト */
.kcar-flow-item p{
font-size:13px;
max-width:230px;
line-height:1.8;
}
	.kcar-period-inner{

flex-wrap:wrap;

gap:30px;

justify-content:center;

}

.kcar-period-item{

width:250px;

height:90px;

font-size:18px;

}

.kcar-period-item::after{

border-top:45px solid transparent;

border-bottom:45px solid transparent;

border-left:30px solid #ef1b13;

right:-30px;

}
	.kcar-work-item{

grid-template-columns:1fr;

gap:40px;

}

.kcar-work-bg{

right:0px;

bottom:-20px;

}
	kcar-work-image{
padding:120px 0 100px;

background-position:60% center;

}

.kcar-fv__inner{

padding:0 24px;

}

.kcar-fv__title{

font-size:52px;

line-height:1.05;

}

.kcar-fv__subtitle{

font-size:20px;

margin:8px 0 24px;

}

.kcar-fv__catch{

font-size:22px;

margin-bottom:16px;

}

.kcar-fv__text{

font-size:14px;

line-height:1.8;

max-width:100%;

}
/* セクション */

.kcar-strength{

padding:90px 0;

}

/* 1カラムに変更 */

.kcar-strength__inner{

grid-template-columns:1fr;

gap:50px;

padding:0 24px;

}

/* タイトル */

.kcar-strength__title{

font-size:28px;

margin-bottom:24px;

}

/* テキスト */

.kcar-strength__desc{

font-size:14px;

line-height:1.9;

margin-bottom:24px;

}

/* 画像エリア */

.kcar-strength__visual{

height:auto;

display:flex;

flex-direction:column;

gap:20px;

}

/* absolute解除 */

.kcar-strength__img{

position:relative;

}

/* 上画像 */

.kcar-strength__img--top{

width:85%;

margin-left:auto;

right:auto;
top:auto;

}

/* 下画像 */

.kcar-strength__img--bottom{

width:90%;

margin-right:auto;

left:auto;
bottom:auto;

}

/* 赤背景 */

.kcar-strength__bg{
width:200px;
height:250px;
right:0px;
top:120px;
}

.kcar-reason{
width:90%;
padding:20px;
}

.kcar-flow-card{
width:70%;
padding:40px;
}

.kcar-flow{
padding-left:30px;
}

.kcar-flow-num{
width:50px;
height:50px;
margin-right:20px;

}
.kcar-works-line{
width:260px;
border-top:2px dashed #333;
margin-bottom:60px;

}
	.kcar-reason-list li{
margin-bottom:14px;
font-size:14px;
font-weight:600;
margin-left:-20px;
}
	.kcar-flow-section{
padding-bottom:40px;
}
	.kcar-flow-item p{
font-size:25px;
font-weight:600;
margin-top:0px;
}
	/* ========================================
   kitchen car 料金セクション
======================================== */
.kcar-price{
  background: #efefef;
  padding: 42px 0 110px;
}

.kcar-price__inner{
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 上部赤バナー */
.kcar-price__hero{
  width: 80%;
  margin: 0 auto 54px;
  padding: 24px 44px 28px;
}

.kcar-price__hero-sub{
  margin: 8px 0 8px;
  font-size: 15px;
  line-height: 1.2;
}

.kcar-price__hero-main{
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* 見出し */
.kcar-price__head{
  margin-bottom: 36px;
}

.kcar-price__title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
}

.kcar-price__line{
  width: 590px;
  max-width: 100%;
  border-top: 3px dashed #111;
}


/* カード */
.kcar-price-card{
  color: #111;
}
	.kcar-flow-section::before{
width:50px;
}

.kcar-flow-section::after{
width:50px;
}
	/* kitchen car */
.kcar-fv__title{
  width:350px;
  padding:10px 0px 10px 10px;
}
/* キッチンカー制作 */
.kcar-fv__subtitle{
  width:350px;
    padding:10px 0px 10px 10px;
}
/* 見出し */
.kcar-fv__catch{
  font-size:25px;
  line-height:1.5;
  margin-bottom:20px;
}
/* テキスト */
.kcar-fv__text{
    width:350px;
    padding:10px 10px 10px 10px;
  border-radius:10px;
}
	.service-text-top{
		font-size:13px;
	}
	.ceo-title {
  font-size: 25px;
}
	.service-name {
  font-size: 25px;
  margin: 0;
}
	.media-img-beaf-sub{
  bottom: 0;
  left: 0;
   width:350px;
}
}













@media (max-width: 480px) {
  .about {
    padding: 90px 0;
  }

  .about-title {
    font-size: 26px;
  }

  .about-bg {
    font-size: 44px;
  }

  .about-btn {
    width: 200px;
    height: 56px;
  }
}
@media (max-width: 1024px){
  .blog-archive-grid{ grid-template-columns: repeat(2, 1fr); }
  .blog-archive-water{ font-size: 64px; }
}
@media (max-width: 600px){
  .blog-archive-grid{ grid-template-columns: 1fr; }
  .blog-filter{ flex-direction: column; align-items:flex-start; }
  .blog-archive-title{ margin-top: -24px; }
}
/* =========================
   Scroll Fade In
========================= */
/* ===== Scroll Fade In ===== */
.js-fade {
  opacity: 0;
  transform: translateY(10px); /* 保険の微移動（不要なら消してOK） */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 左から */
.js-fade-left {
  transform: translateX(-40px);
}

/* 右から */
.js-fade-right {
  transform: translateX(40px);
}

/* 表示時 */
.js-fade.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* もし上下の微移動も残したいなら、表示時にこうする
.js-fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}
*/