/* ============================================================
   株式会社LikeTiger ホームページ
   黄×黒×白 / 旅テーマ「Sales is Journey」
============================================================ */

:root {
  --yellow: #FFED00; /* 会社ロゴの正式カラー */
  --yellow-deep: #F5C800;
  --black: #111111;
  --white: #FFFFFF;
  --gray-photo: #D9D9D9;
  --gray-photo-dark: #BFBFBF;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Archivo Black", sans-serif;
  --font-script: "Caveat", cursive;
  --font-hand: "Yusei Magic", sans-serif;
  --font-brush: "Reggae One", serif;
  --font-concept: "Yuji Boku", "Reggae One", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* 紙のようなざらつき（全体の質感アップ） */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 共通：線画アイコン ---------- */
.ic {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- 共通：セクションラベル（左上の黒タグ） ---------- */
.section-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  transform: rotate(-2deg);
  clip-path: polygon(2% 8%, 98% 0%, 100% 88%, 1% 100%);
}

/* ---------- 共通：スクロールで現れるアニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--delay1 { transition-delay: 0.15s; }
.reveal--delay2 { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 共通：写真の仮置きエリア ---------- */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(45deg,
      var(--gray-photo) 0 14px,
      #d0d0d0 14px 28px);
  border: 5px solid var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.photo__note {
  font-size: 13px;
  font-weight: 700;
  color: #777;
  text-align: center;
  line-height: 1.5;
  padding: 8px;
}
.photo__note small { font-size: 10px; font-weight: 400; }
.photo.has-photo .photo__note { display: none; }

/* ============================================================
   セクション1：トップ（ヒーロー）
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--yellow);
  display: flex;
  align-items: center;
  padding: 90px 0 120px 6vw;
  overflow: hidden;
}

/* 黄色の濃淡で奥行きを出すブラシ風の背景 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 0, 0, 0.06), transparent 70%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* ---------- 筆ブラシの黒い飛沫 ---------- */
.brush {
  position: absolute;
  background: var(--black);
  filter: url(#brush-edge);
  pointer-events: none;
  z-index: 1;
}
.brush--left {
  top: 18%;
  left: -5.5vw;
  width: 9vw;
  height: 44%;
  transform: rotate(9deg);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}
.brush--bottom-left {
  bottom: -7%;
  left: -5vw;
  width: 48vw;
  height: 16%;
  transform: rotate(-2deg);
  border-radius: 60% 40% 30% 70% / 60% 40% 60% 40%;
}
.brush--bottom-right {
  bottom: -9%;
  right: -7vw;
  width: 36vw;
  height: 19%;
  transform: rotate(3deg);
  border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%;
}

/* 背景の地球儀（線画・ゆっくり回転） */
.hero__globe {
  position: absolute;
  top: 4%;
  left: -8%;
  width: clamp(320px, 42vw, 640px);
  opacity: 0.32;
  z-index: 0;
  animation: spin 110s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 下部の飛行機＋宙返りの点線 */
.hero__loop {
  position: absolute;
  bottom: 5%;
  left: 36%;
  width: clamp(160px, 22vw, 320px);
  z-index: 3;
  opacity: 0.9;
}
.hero__plane-mini {
  position: absolute;
  bottom: 11%;
  left: 31%;
  width: clamp(48px, 5vw, 72px);
  fill: var(--black);
  transform: rotate(-10deg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1380px;
}
.hero__text { max-width: 50%; }

/* 左上：会社ロゴ */
.hero__brand {
  position: absolute;
  top: 22px;
  left: 26px;
  z-index: 10;
  display: inline-block;
  line-height: 0;
}
.hero__brand img {
  width: clamp(132px, 15vw, 200px);
  height: auto;
}

/* ページ上部のナビゲーション */
.site-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.site-nav a {
  display: inline-block;
  background: #FFED00;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.site-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.18);
}
/* お問い合わせCTAも同じ黄色背景黒文字に統一 */
.site-nav .site-nav__cta {
  background: #FFED00;
  color: var(--black);
}

/* タイトル：社名＋インクのかすれ＋白ブラシの下地 */
.hero__title {
  font-family: var(--font-en);
  font-style: italic;
  line-height: 0.92;
  transform: rotate(-5deg);
  margin: 0 0 34px;
}
.hero__company-ja {
  display: block;
  font-family: var(--font-jp);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: 0.45em;
  margin-bottom: 6px;
}
.hero__company {
  position: relative;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(54px, 8.6vw, 124px);
  letter-spacing: -0.012em;
}
.hero__tagline {
  font-weight: 900;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.3em;
  margin: -8px 0 22px 0.3em;
}
.white-brush {
  position: absolute;
  left: -0.12em;
  right: -0.08em;
  top: 16%;
  bottom: 4%;
  background: rgba(255, 255, 255, 0.85);
  filter: url(#brush-edge);
  transform: skewX(-12deg) rotate(-1deg);
  z-index: -1;
  border-radius: 45% 55% 50% 50% / 60% 40% 55% 45%;
}
.white-brush--2 { top: 20%; bottom: 0; }

/* サブタイトル：黒ブラシ帯に黄色文字（理念 Sales is Journey）
   ※社名ではなくこちらにインクのかすれ（モヤ）をかける */
.hero__subtitle {
  margin: 0 0 22px 0.2em;
  transform: rotate(-3deg);
}
.hero__subtitle span {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  color: #000;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: 0.04em;
  padding: 2px 4px 2px 0;
}
.hero__subtitle span::before { content: none; }

.hero__copy {
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.1;
  margin-bottom: 36px;
}

.hero__cta {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
}
.hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.25);
}

/* 「事業内容をくわしく見る」ボタン（取扱いセクション） */
.services__more {
  display: inline-block;
  margin-top: 22px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.services__more:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.25);
}

/* ---------- 右側：公式キャラクター らい太くんがご案内 ---------- */
.hero__raita {
  position: absolute;
  right: 3vw;
  bottom: 4%;
  z-index: 3;
  width: clamp(150px, 19vw, 260px);
  text-align: center;
}
.hero__raita img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.22));
  animation: float 5.5s ease-in-out infinite;
}
.hero__raita-label {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--font-hand);
  font-size: 13px;
  background: #FFED00;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 5px 18px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

/* ============================================================
   セクション2：ビジョン
============================================================ */
.vision {
  background: var(--yellow);
  padding: 22px;
}
.vision__frame {
  position: relative;
  background: var(--white);
  padding: 110px 6vw 90px;
  overflow: hidden;
}

.vision__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.vision__title {
  margin-bottom: 36px;
  transform: none;
  line-height: 1.25;
  filter: none;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* 「世界一」吹き出し（誰に頼む？と同じスタイル） */
.vision__bubble {
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--black);
  background: #FFFFFF;
  border: 4px solid var(--black);
  border-radius: 28px;
  padding: 0.32em 0.7em 0.4em;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transform: rotate(-2deg);
  margin-left: 2vw;
}
.vision__bubble::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 28%;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 10px solid transparent;
  border-top: 24px solid var(--black);
  transform: rotate(-4deg);
}
.vision__bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(28% + 4px);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 8px solid transparent;
  border-top: 18px solid #FFFFFF;
  transform: rotate(-4deg);
}

/* 旅人が輝く会社（メインの大文字／1行固定） */
.vision__main {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.8vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
  text-shadow:
    6px 6px 0 rgba(255, 237, 0, 0.95),
    12px 12px 0 rgba(0, 0, 0, 0.14);
}
.vision__main-accent {
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}
.vision__main-accent::before {
  content: "";
  position: absolute;
  inset: 56% -6% 6% -6%;
  background: var(--yellow);
  z-index: -1;
  border-radius: 6px;
}

/* らい太画像（旧:photo--vision の位置に挿入） */
.vision__raita {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  max-width: 360px;
}
.vision__raita img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.22));
  animation: float 5.5s ease-in-out infinite;
  margin-bottom: -8px;
}
.vision__raita-label {
  font-family: var(--font-hand);
  font-size: 14px;
  background: #FFFFFF;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 6px 18px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.vision__copy {
  font-weight: 500;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 2.2;
}

.vision__visual { position: relative; padding: 40px 30px 30px; }
.photo--vision {
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  transform: rotate(2deg);
}
.vision__route {
  position: absolute;
  bottom: -18px;
  left: -10%;
  width: 80%;
  opacity: 0.8;
}

/* 手書き風キーワードタグ */
.hand-tag {
  position: absolute;
  z-index: 4;
  font-family: var(--font-hand);
  font-size: clamp(16px, 1.6vw, 22px);
  background: var(--yellow);
  border: 2.5px solid var(--black);
  border-radius: 50% 46% 52% 48% / 55% 48% 52% 45%;
  padding: 10px 20px;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.18);
}
.hand-tag--1 { top: -2px; right: 18%; transform: rotate(-6deg); }
.hand-tag--2 { top: 34%; left: -16px; transform: rotate(5deg); }
.hand-tag--3 { bottom: 4%; right: -6px; transform: rotate(-4deg); }

/* ============================================================
   セクション3：取扱い（事業内容）
============================================================ */
.services {
  position: relative;
  background: var(--white);
  padding: 110px 5vw 150px;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 95% 5%, rgba(255, 225, 0, 0.35), transparent 70%),
    radial-gradient(ellipse 35% 25% at 3% 60%, rgba(255, 225, 0, 0.25), transparent 70%);
  pointer-events: none;
}
.services__plane {
  position: absolute;
  top: 34px;
  right: 5vw;
  width: 64px;
  fill: var(--black);
  transform: rotate(-12deg);
  animation: float 4s ease-in-out infinite;
}

.services__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}

.services__heading {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 900;
  letter-spacing: 0.06em;
  border-bottom: 4px solid var(--black);
  padding-bottom: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.services__heading-ic { width: 20px; height: 20px; stroke-width: 2.2; }

/* 列1：サービス一覧のアイコン格子 */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 16px 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.service-card:hover {
  transform: translate(-2px, -2px);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--black);
}
.service-card__icon {
  display: block;
  width: 30px;
  height: 30px;
  stroke-width: 1.6;
  margin: 0 auto 8px;
}

/* 列1：LikeTigerの3つの事業（名刺の裏面と同じリボン型・3色） */
.services__lead {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.7;
  margin: -8px 0 22px;
}
.services__lead strong {
  font-size: 1.25em;
  font-weight: 900;
  background: linear-gradient(transparent 60%, var(--yellow) 60% 92%, transparent 92%);
}
.axis-list { display: flex; flex-direction: column; gap: 20px; }
.axis {
  display: flex;
  align-items: center;
  gap: 0;
}
.axis__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 19px;
  line-height: 1;
}
.axis__body {
  flex: 1;
  padding: 11px 34px 11px 18px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}
.axis__body--yellow { background: var(--yellow); }
.axis__body--pink { background: #F7A8C8; }
.axis__body--cyan { background: #7FE0EE; }
.axis__body--lime { background: #BEF06A; }
.axis__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16.5px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.axis__ic { width: 19px; height: 19px; stroke-width: 2; }
.axis__desc {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 3px;
  padding-left: 27px;
}

/* 列3：実績・強み */
.strength-list { display: flex; flex-direction: column; gap: 18px; }
.strength {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--yellow);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.strength__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
}
.strength__icon .ic { width: 23px; height: 23px; }
.strength__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}
.strength__desc { font-size: 13px; line-height: 1.7; }

/* ---------- 公式キャラクター らい太くん ---------- */
.contact__raita {
  position: absolute;
  right: 3vw;
  bottom: 40px;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.contact__raita img {
  width: clamp(140px, 16vw, 230px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  animation: float 5s ease-in-out infinite;
  margin-bottom: -10px;
}
.contact__raita-label {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-hand);
  font-size: 13px;
  line-height: 1.4;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 5px 14px;
  transform: rotate(-2deg);
  position: relative;
  white-space: nowrap;
  z-index: 4;
}

/* ---------- 世界の名所シルエット帯 ---------- */
.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.skyline svg { width: 100%; height: clamp(50px, 8vw, 100px); }
.skyline--yellow svg { fill: var(--yellow); stroke: var(--yellow); }
.skyline--dark svg { fill: rgba(0, 0, 0, 0.16); stroke: rgba(0, 0, 0, 0.16); }

/* ============================================================
   セクション4：自己紹介（代表プロフィール）
============================================================ */
.profile {
  position: relative;
  background: var(--yellow);
  padding: 110px 5vw 100px;
  overflow: hidden;
}
.profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(255, 255, 255, 0.4), transparent 65%),
    radial-gradient(ellipse 40% 35% at 5% 10%, rgba(0, 0, 0, 0.05), transparent 70%);
  pointer-events: none;
}

.profile__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.9fr;
  gap: clamp(24px, 3.2vw, 52px);
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* 白背景でおしゃれな印象に。innerは枠なしでクリーンに */
.lp-home .profile__inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

/* 左：写真コラージュ */
.profile__visual {
  position: relative;
  height: clamp(420px, 46vw, 600px);
}
.photo--profile-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 64%;
  transform: rotate(-3deg);
  z-index: 2;
}
.photo--profile-sub1 {
  position: absolute;
  bottom: 10%;
  left: 6%;
  width: 46%;
  height: 30%;
  transform: rotate(4deg);
  z-index: 3;
}
.photo--profile-sub2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44%;
  height: 34%;
  transform: rotate(-6deg);
  z-index: 1;
}
.profile__plane {
  position: absolute;
  top: -22px;
  right: 4%;
  width: 64px;
  fill: var(--black);
  transform: rotate(14deg) scaleX(-1);
  animation: float 4s ease-in-out infinite;
}

/* 中央：名前・経歴 */
.profile__role {
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: 0.2em;
}
.profile__name {
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.profile__motto {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  transform: rotate(-2deg);
  display: inline-block;
  background: linear-gradient(transparent 65%, var(--white) 65% 92%, transparent 92%);
  padding: 0 8px;
  margin-bottom: 26px;
}
.profile__rice {
  display: inline-block;
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
  vertical-align: -0.32em;
  margin-left: 6px;
}

.career-list { display: flex; flex-direction: column; gap: 12px; }
.career-list li {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.6;
  padding: 10px 14px 10px 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.career-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 9px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  border-radius: 4px;
}

/* 国一覧ページへのリンクボタン */
.countries-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.countries-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.25);
}
.countries-link .ic { width: 19px; height: 19px; stroke-width: 2; }

/* 右：原動力ボックス＋吹き出し */
.profile__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}
.drive-box {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.85);
}
.drive-box__title {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(transparent 60%, var(--yellow) 60% 92%, transparent 92%);
  margin-bottom: 12px;
}
.drive-box__text { font-size: 13.5px; line-height: 1.9; }

.bubble {
  position: relative;
  background: var(--white);
  border: 2.5px dashed var(--black);
  border-radius: 18px;
  padding: 20px 20px;
  transform: rotate(-2deg);
}
.bubble::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 36px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-top: 2.5px dashed var(--black);
  border-left: 2.5px dashed var(--black);
  transform: rotate(45deg);
}
.bubble__text {
  font-family: var(--font-hand);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ============================================================
   セクション5：お問い合わせ
============================================================ */
.contact {
  position: relative;
  background: #FFFFFF;
  padding: 110px 5vw 170px;
  overflow: hidden;
  border-top: 3px solid var(--black);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 36% 26% at 12% 8%, rgba(255, 237, 0, 0.22), transparent 70%),
    radial-gradient(ellipse 36% 26% at 88% 92%, rgba(255, 237, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 28px);
}

.contact-form {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
}

.contact__title {
  position: relative;
  text-align: center;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.contact__route {
  position: absolute;
  top: -26px;
  right: clamp(0px, 8vw, 120px);
  width: clamp(120px, 16vw, 220px);
}
.contact__plane {
  position: absolute;
  top: -52px;
  right: clamp(-10px, 6vw, 100px);
  width: 60px;
  fill: var(--black);
  transform: rotate(-14deg);
  animation: float 4s ease-in-out infinite;
}

/* フォーム */
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}
.field__label {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.field__box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: 10px;
  padding: 4px 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.field__box:focus-within {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.8);
  transform: translate(-2px, -2px);
}
.field__box--textarea { align-items: flex-start; padding-top: 12px; }
.field__icon { width: 18px; height: 18px; opacity: 0.5; }
.field__box--textarea .field__icon { margin-top: 10px; }
.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-jp);
  font-size: 14.5px;
  padding: 10px 0;
  background: transparent;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #aaa; }
.field--wide { margin-bottom: 40px; }

.contact-form__submit {
  display: block;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.28em;
  border: none;
  border-radius: 999px;
  padding: 18px 90px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
}
.contact-form__submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.25);
}
.contact-form__thanks {
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  margin-top: 26px;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: 12px;
  padding: 18px;
}

/* ============================================================
   フッター（会社概要）
============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 6vw 30px;
}
.footer__inner { max-width: 900px; margin: 0 auto; }
.footer__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
}
.footer__mark {
  width: 30px;
  height: auto;
  margin-right: 12px;
}
.footer__logo span { color: var(--yellow); }
.footer__official {
  width: auto;
  height: 46px;
}
.footer__concept {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 8px 0 32px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 26px;
  font-size: 13.5px;
}
.footer__info > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
}
.footer__info dt {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer__info a { color: var(--white); text-decoration-color: var(--yellow); }
.footer__links {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.footer__links a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
}
.footer__copyright {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 44px;
  letter-spacing: 0.1em;
}

/* ============================================================
   レスポンシブ（タブレット・スマホ）
============================================================ */
@media (max-width: 1024px) {
  .services__inner { grid-template-columns: 1fr; }
  .services__col:first-child { grid-column: 1 / -1; }
  .services__grid { grid-template-columns: repeat(5, 1fr); }
  .profile__inner { grid-template-columns: 1fr 1.3fr; }
  .profile__side { grid-column: 1 / -1; flex-direction: row; }
  .profile__side > * { flex: 1; }
}

@media (max-width: 768px) {
  .section-tag { top: 16px; left: 16px; font-size: 12px; padding: 6px 14px; }
  /* ナビ：トップ・サブページ共通でロゴ下に縦5タブ */
  .site-nav {
    top: 76px;
    left: 16px;
    right: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .site-nav a {
    font-size: 9.5px;
    padding: 4px 11px;
    width: 112px;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.14);
  }

  /* ヒーロー */
  .hero {
    padding: 84px 6vw 70px;
    min-height: auto;
    display: block;
  }
  .hero__text { max-width: 100%; }
  .hero__brand { top: 16px; left: 16px; }
  .hero__brand img { width: 124px; }
  .hero__raita {
    position: relative;
    right: auto;
    bottom: auto;
    width: 60vw;
    max-width: 290px;
    margin: 30px auto 0;
  }
  .brush--left { display: none; }
  .brush--bottom-left { width: 70vw; height: 9%; bottom: -4%; }
  .brush--bottom-right { width: 50vw; height: 10%; bottom: -5%; }
  .hero__loop, .hero__plane-mini { display: none; }
  .hero__globe { width: 70vw; left: -20%; top: 2%; }
  .hero__copy br { display: none; }

  /* ビジョン */
  .vision { padding: 12px; }
  .vision__frame { padding: 84px 7vw 70px; }
  .vision__inner { grid-template-columns: 1fr; gap: 56px; }
  .vision__title-row--small { margin-left: 0.4em; }
  .vision__copy br { display: none; }

  /* 取扱い */
  .services { padding: 90px 6vw 130px; }
  .services__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__col:first-child { grid-column: auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* 自己紹介 */
  .profile { padding: 90px 6vw 80px; }
  .profile__inner { grid-template-columns: 1fr; }
  .profile__visual { height: 96vw; max-height: 460px; }
  .profile__side { flex-direction: column; }

  /* お問い合わせ */
  .contact { padding: 90px 6vw 190px; }
  .contact__raita { right: 5vw; bottom: 60px; }
  .contact__raita img { width: 96px; }
  .contact__raita-label { font-size: 10.5px; padding: 4px 9px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact__route, .contact__plane { display: none; }
  .contact-form__submit { width: 100%; padding: 18px 0; }

  /* フッター */
  .footer__info > div { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   お取引先（PARTNERS）
============================================================ */
.partners {
  position: relative;
  background: #FAFAF6;
  padding: 110px 6vw 130px;
  text-align: center;
  border-top: 6px solid var(--black);
}
.partners__title {
  margin-bottom: 14px;
}
.partners__marquee {
  margin-top: 36px;
}
.partners__inner { max-width: 1200px; margin: 0 auto; }
.partners__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  opacity: 0.5;
}
.partners__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  margin: 4px 0 10px;
}
.partners__lead {
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 42px;
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.partners__item {
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
  padding: 26px 34px;
  width: clamp(220px, 30vw, 300px);
  height: 132px;
  transition: transform 0.22s ease;
}
.partners__item:hover { transform: translateY(-5px); }
.partners__item img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .partners { padding: 70px 6vw 78px; }
  .partners__list { gap: 18px; }
  .partners__item { width: 100%; max-width: 320px; height: 112px; padding: 20px 28px; }
}

/* ============================================================
   2026-06-21 参考LP寄せ：Sales is Journey フルLP版
============================================================ */
.lp-home {
  background: #FFFFFF;
}

.lp-home .hero--poster {
  min-height: 100vh;
  padding: 60px 5vw 60px;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-bottom: 3px solid var(--black);
}

.lp-home .hero--poster::before {
  background:
    radial-gradient(ellipse 32% 24% at 14% 16%, rgba(255, 237, 0, 0.22), transparent 70%),
    radial-gradient(ellipse 28% 22% at 86% 82%, rgba(255, 237, 0, 0.18), transparent 70%);
  z-index: 1;
}

.lp-home .hero__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lp-home .hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__paint,
.hero__landmark,
.hero__passport {
  position: absolute;
  display: block;
}

.hero__paint {
  background: var(--yellow);
  filter: url(#brush-edge);
  opacity: 0.92;
}

.hero__paint--top {
  width: 45vw;
  height: 110px;
  top: 18px;
  right: -8vw;
  transform: rotate(-9deg);
}

.hero__paint--bottom {
  width: 64vw;
  height: 150px;
  left: -12vw;
  bottom: 24px;
  transform: rotate(-4deg);
}

.hero__landmark {
  bottom: 22px;
  opacity: 0.16;
  background: var(--black);
}

.hero__landmark--tower {
  left: 7vw;
  width: 54px;
  height: 250px;
  clip-path: polygon(48% 0, 58% 0, 100% 100%, 72% 100%, 54% 42%, 36% 100%, 4% 100%);
}

.hero__landmark--fuji {
  right: 18vw;
  bottom: 44px;
  width: 300px;
  height: 130px;
  background: #2BB8DE;
  opacity: 0.28;
  clip-path: polygon(0 100%, 45% 10%, 56% 42%, 67% 24%, 100% 100%);
}

.hero__landmark--pagoda {
  right: 5vw;
  width: 82px;
  height: 230px;
  clip-path: polygon(45% 0, 55% 0, 58% 16%, 86% 24%, 14% 24%, 42% 16%, 42% 32%, 96% 42%, 4% 42%, 42% 34%, 42% 52%, 90% 62%, 10% 62%, 42% 54%, 42% 100%, 58% 100%, 58% 54%, 90% 62%, 10% 62%, 42% 52%, 42% 34%, 96% 42%, 4% 42%, 42% 32%, 42% 16%);
}

.hero__passport {
  right: 8vw;
  bottom: 118px;
  width: 150px;
  height: 210px;
  display: grid;
  place-items: end center;
  padding-bottom: 28px;
  background: #111a35;
  color: var(--yellow);
  border: 3px solid rgba(255, 237, 0, 0.7);
  border-radius: 8px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.08em;
  transform: rotate(-11deg);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.12);
}

.lp-home .hero__brand {
  background: #FFED00;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.16);
}

.lp-home .site-nav a {
  background: #FFED00;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
}

.lp-home .hero__inner {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.lp-home .hero__text {
  max-width: min(860px, 72vw);
  margin: 0 auto;
  text-align: center;
  background: none;
  border: 0;
  box-shadow: none;
  padding: clamp(24px, 3vw, 42px) clamp(18px, 3vw, 48px);
  transform: none;
  backdrop-filter: none;
}

/* Sales is Journey: 中央でインパクト重視 */
.lp-home .hero__title {
  transform: none;
}

/* 3行コピー: タイトル下に中央配置 */
.lp-home .hero__copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-home .hero__company-label,
.lp-home .hero__title,
.lp-home .hero__tagline,
.lp-home .hero__copy {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.lp-home .hero__company-label {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 900;
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: 0.18em;
  padding: 4px 14px;
  transform: none;
}

.lp-home .hero__title {
  transform: none;
  margin: 0;
  font-style: normal;
  font-size: clamp(46px, 7.4vw, 116px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000000;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    4px 4px 0 #FFED00,
    7px 7px 0 rgba(0, 0, 0, 0.16);
}

.lp-home .hero__title span {
  display: inline;
}

.lp-home .hero__tagline {
  display: inline-block;
  margin: 20px 0 18px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: clamp(13px, 1.5vw, 20px);
  letter-spacing: 0.18em;
  padding: 5px 18px 7px;
  transform: none;
}

.lp-home .hero__copy {
  max-width: 880px;
  margin: 32px auto 28px;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 2.05;
  letter-spacing: 0.05em;
  color: #050505;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.55);
}

.lp-home .hero__cta {
  position: static;
  transform: none;
  display: inline-block;
  border-radius: 8px;
  padding: 14px 34px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  pointer-events: auto;
}

.lp-home .hero__loop,
.lp-home .hero__plane-mini,
.lp-home .hero .brush,
.hero__photo {
  display: none;
}

/* LP版でも左：水色の地球儀 / 右：らい太 を表示する */
.lp-home .hero__globe {
  display: block;
  z-index: 1;
}
.lp-home .hero__raita {
  display: block;
  z-index: 4;
}

.hero__photo {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.13);
  background: #fff;
}

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

.hero__photo--main {
  left: clamp(20px, 5vw, 84px);
  bottom: clamp(44px, 8vw, 110px);
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 4 / 5;
  transform: rotate(-5deg);
}

.hero__photo--sub {
  right: clamp(26px, 12vw, 170px);
  top: clamp(150px, 18vw, 230px);
  width: clamp(130px, 15vw, 230px);
  aspect-ratio: 4 / 3;
  transform: rotate(5deg);
}

.issue-callout {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background:
    radial-gradient(ellipse 22% 36% at 0% 0%, rgba(255, 237, 0, 0.22), transparent 70%),
    radial-gradient(ellipse 22% 36% at 100% 100%, rgba(255, 237, 0, 0.18), transparent 70%),
    #FFFFFF;
}

.issue-callout__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.issue-callout__paint {
  position: absolute;
  display: block;
  background: var(--yellow);
  filter: url(#brush-edge);
  opacity: 0.82;
}

.issue-callout__paint--left {
  left: -8vw;
  bottom: 12px;
  width: 26vw;
  height: 86px;
  transform: rotate(-18deg);
}

.issue-callout__paint--right {
  right: -6vw;
  top: 20px;
  width: 24vw;
  height: 82px;
  transform: rotate(-15deg);
}

.issue-callout__paper-plane {
  position: absolute;
  left: 10vw;
  top: 48px;
  width: 76px;
  height: 54px;
  border: 3px solid var(--black);
  clip-path: polygon(0 42%, 100% 0, 62% 100%, 43% 58%);
  transform: rotate(-16deg);
  opacity: 0.72;
}

.issue-callout__globe {
  position: absolute;
  right: 13vw;
  bottom: 36px;
  width: 72px;
  height: 72px;
  border: 3px solid var(--black);
  border-radius: 50%;
  opacity: 0.54;
}

.issue-callout__globe::before,
.issue-callout__globe::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--black);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}

.issue-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(12deg, transparent 0 28px, rgba(17, 17, 17, 0.035) 28px 30px, transparent 30px 72px);
}

.issue-callout__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  text-align: center;
}

.issue-callout__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  padding: 0 4vw;
  max-width: 1400px;
  margin: 0 auto;
}

.issue-callout__paper {
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: -6px;
}

.issue-callout__title {
  position: relative;
  display: inline-block;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--black);
  background: #FFFFFF;
  border: 4px solid var(--black);
  border-radius: 32px;
  padding: 0.32em 0.7em 0.4em;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transform: rotate(-2deg);
}

/* 吹き出しの「しっぽ」 — 下向きの三角形を擬似要素で描画 */
.issue-callout__title::before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 24%;
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 12px solid transparent;
  border-top: 30px solid var(--black);
  transform: rotate(-2deg);
}
.issue-callout__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(24% + 4px);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 9px solid transparent;
  border-top: 22px solid #FFFFFF;
  transform: rotate(-2deg);
}

.issue-callout__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--black);
  padding: 16px 44px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: clamp(22px, 2.6vw, 40px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.issue-callout__cta:hover {
  transform: translateY(-3px);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.28);
}
.issue-callout__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
}

.issue-callout__lead {
  margin-top: 18px;
  font-weight: 900;
  font-size: clamp(13px, 1.4vw, 17px);
}

.vision-lp {
  position: relative;
  background: #fffef7;
  padding: 96px 5vw 82px;
  overflow: hidden;
  border-bottom: 2px solid rgba(17, 17, 17, 0.1);
}

.vision-lp::before,
.services::after,
.profile::after,
.contact::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: var(--yellow);
  filter: url(#brush-edge);
  opacity: 0.86;
}

.vision-lp::before {
  width: 22vw;
  height: 74px;
  top: -28px;
  right: -6vw;
  transform: rotate(-7deg);
}

.vision-lp__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  max-width: 1240px;
  margin: 0 auto;
}

.vision-lp__eyebrow {
  font-weight: 900;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.9;
}

.vision-lp__eyebrow strong {
  background: var(--yellow);
  padding: 0 0.35em;
}

.vision-lp__title {
  margin: 24px 0 24px;
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.06;
  letter-spacing: 0.03em;
  transform: rotate(-2deg);
}

.vision-lp__title span {
  display: block;
}

.vision-lp__title b {
  color: var(--yellow-deep);
  font-size: 1.38em;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.3);
}

.vision-lp__text {
  max-width: 520px;
  font-weight: 700;
  line-height: 2;
}

.vision-lp__photo {
  position: relative;
  border: 5px solid #fff;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
  transform: rotate(1deg);
  overflow: hidden;
}

.vision-lp__photo img {
  width: 100%;
  height: clamp(260px, 31vw, 410px);
  object-fit: cover;
}

.hand-note {
  position: absolute;
  font-family: var(--font-script);
  color: var(--yellow-deep);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  text-shadow: 1px 1px 0 #fff;
}

.hand-note--curiosity {
  top: 16px;
  left: 20px;
  transform: rotate(-8deg);
}

.hand-note--link {
  right: 28px;
  bottom: 18px;
  transform: rotate(-8deg);
}

.lp-home .services {
  min-height: 100vh;
  padding: 60px 5vw 60px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-home .services::before {
  background:
    radial-gradient(ellipse 26% 24% at 97% 8%, rgba(255, 237, 0, 0.45), transparent 70%),
    radial-gradient(ellipse 24% 26% at 1% 94%, rgba(255, 237, 0, 0.34), transparent 72%);
}

.lp-home .services::after {
  width: 18vw;
  height: 82px;
  right: -5vw;
  bottom: 20px;
  transform: rotate(-12deg);
}

.lp-home .services__inner {
  grid-template-columns: 0.95fr 1.15fr 0.9fr;
  align-items: start;
  gap: clamp(20px, 2.5vw, 36px);
  width: 100%;
}

.lp-home .services__lead {
  display: block;
  margin-bottom: 18px;
}

.lp-home .services__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #000000;
  border: 0;
  border-bottom: 4px solid var(--black);
  padding: 0 4px 10px;
  margin-bottom: 22px;
  font-family: "Zen Kaku Gothic New", var(--font-jp), sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  line-height: 1.2;
  transform: none;
}

.lp-home .services__heading-ic {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.lp-home .services__lead {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.7;
  font-weight: 900;
}

.lp-home .services__grid {
  grid-template-columns: repeat(3, 1fr);
}

.lp-home .service-card {
  min-height: 100px;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 14px 8px 12px;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--black);
}

.lp-home .service-card__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}

.lp-home .service-card:hover {
  box-shadow: 5px 5px 0 var(--black);
}

.lp-home .axis-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-home .axis {
  flex-direction: row;
  align-items: stretch;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  gap: 0;
}

/* 名刺裏面と同じカラーバー方式（番号は左の黒タグ、本文は色付き矢印） */
.lp-home .axis--cyan .axis__body { background: #B7EBF3; }
.lp-home .axis--lime .axis__body { background: #D4EFA0; }
.lp-home .axis--pink .axis__body { background: #F8C5D8; }

.lp-home .axis__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 60px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  margin: 0;
  text-shadow: none;
}

.lp-home .axis__body {
  flex: 1;
  padding: 16px 38px 16px 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-home .axis__title {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.3;
  font-weight: 900;
  flex-wrap: wrap;
}

.lp-home .axis__desc {
  padding-left: 0;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 2px;
  color: var(--black);
}

.lp-home .axis__icons {
  display: none;
}

.lp-home .strength-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-home .strength {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  background: #FFFFFF;
  border: 2px solid var(--black);
  border-radius: 12px;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.16);
  padding: 18px 18px;
}

.lp-home .strength__icon {
  background: var(--yellow);
  border: 2px solid var(--black);
  width: 54px;
  height: 54px;
  margin: 0;
  flex-shrink: 0;
}
.lp-home .strength__icon .ic {
  width: 26px;
  height: 26px;
}

.lp-home .strength__icon .ic {
  width: 28px;
  height: 28px;
}

.lp-home .strength__body {
  width: 100%;
}

.lp-home .strength__title {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 900;
  margin-bottom: 6px;
  text-align: left;
}

.lp-home .strength__desc {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.7;
  color: var(--black);
  text-align: left;
}

.journey-band {
  position: relative;
  min-height: clamp(280px, 22vw, 390px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 88% 32%, rgba(255, 237, 0, 0.9), transparent 12%),
    linear-gradient(105deg, #fff 0 36%, rgba(255, 237, 0, 0.42) 36% 64%, #fff 64%);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}

.journey-band__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.journey-band__skyline,
.journey-band__sun,
.journey-band__traveler {
  position: absolute;
  display: block;
}

.journey-band__skyline {
  left: 0;
  right: 0;
  bottom: -2px;
  height: 42%;
  background: var(--black);
  opacity: 0.9;
  clip-path: polygon(0 100%, 0 84%, 3% 84%, 5% 60%, 7% 84%, 12% 84%, 15% 35%, 17% 84%, 22% 84%, 27% 30%, 33% 84%, 38% 84%, 38% 62%, 42% 62%, 42% 84%, 48% 84%, 52% 48%, 56% 84%, 62% 84%, 64% 30%, 66% 84%, 72% 84%, 75% 50%, 80% 84%, 86% 84%, 90% 28%, 94% 84%, 100% 84%, 100% 100%);
}

.journey-band__sun {
  right: 8vw;
  top: 46px;
  width: clamp(76px, 9vw, 132px);
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 237, 0, 0.18);
}

.journey-band__traveler {
  bottom: 48px;
  width: 34px;
  height: 102px;
  background: var(--black);
  border-radius: 18px 18px 4px 4px;
  opacity: 0.86;
}

.journey-band__traveler::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 30px;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  transform: translateX(-50%);
}

.journey-band__traveler::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 26px;
  width: 62px;
  height: 12px;
  background: var(--black);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.journey-band__traveler--1 {
  right: 21vw;
}

.journey-band__traveler--2 {
  right: 17vw;
  width: 28px;
  height: 82px;
  bottom: 52px;
  opacity: 0.78;
}

.journey-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-12deg, transparent 0 32px, rgba(255, 237, 0, 0.26) 32px 36px, transparent 36px 78px);
}

.journey-band__inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 92vw);
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  text-align: center;
}

.journey-band__title {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.journey-band__title span {
  color: var(--yellow-deep);
  font-size: 1.32em;
}

.journey-band__lead {
  margin-top: 10px;
  font-weight: 900;
  line-height: 1.8;
}

.journey-band__marker {
  display: inline-block;
  margin-top: 12px;
  background: var(--yellow);
  font-weight: 900;
  padding: 4px 18px;
}

.lp-home .profile {
  position: relative;
  background:
    /* 薄いドットパターンでテクスチャ感 */
    radial-gradient(circle at 1px 1px, rgba(17, 17, 17, 0.06) 1.4px, transparent 0) 0 0 / 28px 28px,
    /* 隅に淡い黄色のグロー */
    radial-gradient(ellipse 30% 22% at 6% 8%, rgba(255, 237, 0, 0.35), transparent 70%),
    radial-gradient(ellipse 34% 26% at 96% 92%, rgba(255, 237, 0, 0.28), transparent 70%),
    #FFFFFF;
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
  padding-top: 90px;
  padding-bottom: 90px;
}

/* 左右のおしゃれな筆ブラシのアクセント */
.lp-home .profile::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -4vw;
  width: 16vw;
  height: 5px;
  background: var(--yellow);
  filter: url(#brush-edge);
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 1;
}

.lp-home .profile::after {
  content: "";
  position: absolute;
  bottom: 6%;
  right: -4vw;
  width: 18vw;
  height: 5px;
  background: var(--black);
  filter: url(#brush-edge);
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 1;
}

.lp-home .profile::before {
  background: transparent;
}

.lp-home .profile::after {
  width: 16vw;
  height: 76px;
  left: -5vw;
  top: 20px;
  transform: rotate(8deg);
}

.lp-home .photo {
  border-radius: 0;
  border-width: 6px;
}

.lp-home .profile__name {
  letter-spacing: 0.18em;
}

.lp-home .profile__motto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
}

.lp-home .drive-box {
  border-radius: 8px;
  border: 2px solid var(--yellow-deep);
}

.lp-home .contact {
  background: var(--yellow);
  padding-top: 86px;
}

.lp-home .contact::before {
  width: 20vw;
  height: 90px;
  top: -32px;
  left: -4vw;
  background: #fff;
  transform: rotate(-7deg);
}

.lp-home .contact__inner {
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid var(--black);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.14);
}

.lp-home .contact-form {
  max-width: 960px;
}

.lp-home .field__box {
  border-radius: 8px;
}

.lp-home .contact-form__submit {
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .lp-home .services__inner,
  .vision-lp__inner {
    grid-template-columns: 1fr;
  }

  .lp-home .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-home .hero--poster {
    min-height: 760px;
    padding: 280px 6vw 80px;
    display: flex;
    align-items: center;
  }

  .lp-home .hero__poster img {
    object-position: center top;
    opacity: 0.28;
  }

  .lp-home .hero--poster {
    background: #FFFFFF;
  }
  .lp-home .hero--poster::before {
    background:
      radial-gradient(ellipse 32% 22% at 12% 18%, rgba(255, 237, 0, 0.18), transparent 70%),
      radial-gradient(ellipse 28% 20% at 88% 82%, rgba(255, 237, 0, 0.14), transparent 70%);
  }

  .lp-home .hero__brand {
    padding: 6px 8px;
  }

  /* ナビ：ロゴ下に縦並びで5タブ（コンパクト） */
  .lp-home .site-nav {
    top: 76px;
    left: 16px;
    right: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .lp-home .site-nav a {
    font-size: 9.5px;
    padding: 4px 11px;
    width: 112px;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.14);
  }

  .lp-home .hero__inner {
    position: relative;
    inset: auto;
    display: grid;
    place-items: center;
    pointer-events: auto;
  }

  .lp-home .hero__text {
    max-width: 100%;
    background: rgba(255, 237, 0, 0.92);
    border: 3px solid var(--black);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);
    padding: 26px 18px;
    transform: rotate(-1.5deg);
  }

  .lp-home .hero__company-label,
  .lp-home .hero__title,
  .lp-home .hero__tagline,
  .lp-home .hero__copy {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .lp-home .hero__company-label {
    display: inline-block;
    margin-bottom: 10px;
  }

  .lp-home .hero__title {
    display: block;
    transform: none;
    margin: 0;
    line-height: 0.82;
    color: #050505;
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.46);
  }

  .lp-home .hero__title span {
    display: block;
  }

  .lp-home .hero__title {
    font-size: clamp(48px, 17vw, 88px);
  }

  .lp-home .hero__tagline {
    display: inline-block;
    margin: 16px 0 12px;
    background: var(--black);
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 5px 12px;
  }

  .lp-home .hero__copy {
    line-height: 1.75;
    font-weight: 900;
    margin-bottom: 18px;
  }

  .lp-home .hero__cta {
    position: static;
    display: inline-block;
    transform: none;
    white-space: normal;
  }

  .issue-callout {
    min-height: 100vh;
  }

  .issue-callout__bg img {
    opacity: 0.2;
  }

  .lp-home .strength-list {
    grid-template-columns: 1fr;
  }

  .lp-home .strength {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .lp-home .strength__icon {
    margin-bottom: 0;
    margin-right: 14px;
  }

  .lp-home .hero__title {
    font-size: clamp(34px, 11vw, 72px);
    white-space: nowrap;
  }

  .issue-callout::after {
    background: rgba(255, 255, 255, 0.72);
  }

  .issue-callout__inner {
    width: min(680px, 90vw);
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .issue-callout__title {
    display: block;
  }

  .vision-lp {
    padding: 86px 6vw 70px;
  }

  .vision-lp__photo img {
    height: 280px;
  }

  .lp-home .services {
    padding: 86px 6vw 90px;
  }

  .lp-home .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-band {
    min-height: 330px;
  }

  .journey-band__bg img {
    opacity: 0.22;
  }

  .journey-band::after {
    background: rgba(255, 255, 255, 0.64);
  }

  .journey-band__inner {
    width: min(680px, 90vw);
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .journey-band__marker {
    display: block;
  }
}

@media (max-width: 480px) {
  .lp-home .service-card {
    min-height: 96px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .lp-home .axis-list {
    grid-template-columns: 1fr;
  }

  .lp-home .axis {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .lp-home .axis__num {
    margin: 0 12px 0 0;
    font-size: 34px;
  }

  .lp-home .axis__title {
    justify-content: flex-start;
  }

  .vision-lp__title,
  .journey-band__title {
    letter-spacing: 0;
  }
}

/* ============================================================
   2026-06-22 追加：入口ゲート／活動風景／取引先マーキー
   （Codex版で HTML はあるが CSS が無かった3セクションを補完）
============================================================ */

/* ---------- 入口ゲート（公式ロゴだけのファーストビュー）---------- */
.intro-gate {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #fffef7;
  overflow: hidden;
}
/* 薄い黄色のにじみ＋紙質で旅テーマを添える */
.intro-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 46% 40% at 50% 47%, rgba(255, 237, 0, 0.22), transparent 70%);
  pointer-events: none;
}
/* うっすら回る地球儀の線（旅の世界観） */
.intro-gate::after {
  content: "";
  position: absolute;
  width: clamp(420px, 60vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.4px solid rgba(43, 184, 222, 0.18);
  box-shadow:
    inset 0 0 0 60px transparent;
  background:
    radial-gradient(circle, transparent 64%, rgba(43, 184, 222, 0.05) 65%);
  pointer-events: none;
}
.intro-gate__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 6vh, 64px);
  animation: gate-in 1.1s ease both;
}
@keyframes gate-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-gate__logo {
  width: clamp(280px, 47vw, 620px);
  height: auto;
}
.intro-gate__scroll {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  animation: gate-bounce 1.8s ease-in-out infinite;
  transition: background 0.2s ease, color 0.2s ease;
}
.intro-gate__scroll:hover { background: var(--black); color: var(--yellow); }
@keyframes gate-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(9px); }
}

/* ---------- 活動風景（カレー畑などの現場写真）---------- */
.activity-scenes {
  position: relative;
  background: #fff;
  padding: 94px 5vw 96px;
  overflow: hidden;
}
.activity-scenes__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}
.activity-scenes__label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--yellow-deep);
}
.activity-scenes__title {
  margin: 8px 0 18px;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.4;
}
.activity-scenes__title span {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
}
.activity-scenes__text {
  font-weight: 500;
  line-height: 2;
}
.activity-scenes__photos {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.activity-photo {
  position: relative;
  margin: 0;
  border: 5px solid #fff;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.14);
  overflow: hidden;
  background: #eee;
}
.activity-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.activity-photo--large { transform: rotate(-1.5deg); }
.activity-photo--small { transform: rotate(2deg); }
.activity-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
}

/* ---------- 取引先マーキー（2列・左右逆方向にゆっくり流れる）---------- */
.partners__marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  overflow: hidden;
  /* 左右端をふわっと消す */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  will-change: transform;
}
.partners__track--left  { animation: marquee-left 36s linear infinite; }
.partners__track--right { animation: marquee-right 44s linear infinite; }
/* マウスを乗せると一時停止 */
.partners__marquee:hover .partners__track { animation-play-state: paused; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.partners__logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 18px 24px;
  width: clamp(160px, 17vw, 210px);
  height: 100px;
}
.partners__logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
/* 動きを減らす設定の利用者には流さない（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .partners__track--left,
  .partners__track--right { animation: none; }
  .intro-gate__scroll { animation: none; }
}

/* ---------- 追加3セクションのレスポンシブ ---------- */
@media (max-width: 768px) {
  .intro-gate__logo { width: clamp(220px, 72vw, 420px); }

  .activity-scenes { padding: 80px 6vw 84px; }
  .activity-scenes__inner { grid-template-columns: 1fr; gap: 30px; }
  .activity-photo img { min-height: 220px; }

  .partners__logo {
    width: clamp(95px, 30vw, 130px);
    height: 80px;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.10);
  }
  .partners__logo img {
    max-height: 50px;
  }
  .partners__track {
    gap: 14px;
  }
  .partners__marquee {
    gap: 14px;
  }
}

/* ============================================================
   モバイル最適化（768px以下）— ごちゃつき対策
============================================================ */
@media (max-width: 768px) {
  /* ヒーロー：地球儀は水色のまま右側に表示 */
  .lp-home .hero__globe {
    display: block;
    top: 10%;
    left: auto;
    right: -12%;
    width: 56vw;
    opacity: 0.4;
  }

  .lp-home .hero__text {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 24px 4px;
    transform: none;
    position: relative;
    z-index: 3;
    max-width: 100vw;
    overflow: visible;
  }

  .lp-home .hero__title {
    transform: translateX(-4vw) !important;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(26px, 8.4vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-shadow:
      3px 3px 0 #FFED00,
      5px 5px 0 rgba(0, 0, 0, 0.18);
  }

  .lp-home .hero__copy {
    margin-left: 0 !important;
    text-align: center;
    font-size: clamp(11px, 3vw, 14px);
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-shadow: none;
  }
  .lp-home .hero__copy br {
    display: block;
  }

  /* らい太：右下固定（ラベルが切れないように余白多め） */
  .lp-home .hero__raita {
    position: absolute;
    right: 8vw;
    bottom: 5%;
    top: auto;
    transform: none;
    width: clamp(96px, 26vw, 140px);
    margin: 0;
    z-index: 4;
    overflow: visible;
  }
  .lp-home .hero__raita-label {
    font-size: 9.5px;
    padding: 3px 9px;
    white-space: nowrap;
    transform: rotate(-2deg);
  }

  /* 誰に頼む？吹き出し：1行→自動改行可に、サイズ調整 */
  .issue-callout__title {
    white-space: normal !important;
    font-size: clamp(28px, 8vw, 48px);
    border-radius: 24px;
    padding: 0.32em 0.7em 0.42em;
  }
  .issue-callout__title::before,
  .issue-callout__title::after { display: none; }
  .issue-callout__cta {
    font-size: clamp(15px, 4vw, 20px);
    padding: 14px 26px;
  }

  /* 取扱い：3カラム → 縦1カラムにスタック */
  .lp-home .services {
    min-height: auto;
    padding: 64px 5vw 64px;
  }
  .lp-home .services__inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .lp-home .services__col {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .lp-home .services__heading {
    font-size: clamp(20px, 5vw, 26px);
  }

  /* 3つの事業カード：番号大きく、本文も読みやすく */
  .lp-home .axis {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .lp-home .axis__num {
    width: 56px;
    font-size: 24px;
    margin: 0;
  }
  .lp-home .axis__body {
    padding: 14px 32px 14px 18px;
  }
  .lp-home .axis__title {
    font-size: 16px;
    justify-content: flex-start;
  }

  /* サービス一覧：3x3を維持、コンパクトに */
  .lp-home .services__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .lp-home .service-card {
    min-height: 88px;
    padding: 12px 4px 10px;
    font-size: 12.5px;
    border-radius: 9px;
    box-shadow: 2px 2px 0 var(--black);
  }
  .lp-home .service-card__icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
  }

  /* 強み：縦1カラム、横並び（アイコン左／本文右） */
  .lp-home .strength-list {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .lp-home .strength {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px;
  }
  .lp-home .strength__icon {
    width: 46px;
    height: 46px;
    margin: 0;
  }
  .lp-home .strength__icon .ic {
    width: 22px;
    height: 22px;
  }
  .lp-home .strength__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .lp-home .strength__desc {
    font-size: 13px;
    line-height: 1.65;
  }

  /* ナビ：行間と折り返しを整える */
  .lp-home .site-nav {
    gap: 6px;
  }
  .lp-home .site-nav a {
    font-size: 11px;
    padding: 6px 11px;
  }

  /* 代表ご挨拶のホワイトカード余白を抑える */
  .lp-home .profile {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* さらに小さい画面（480px以下）の追加調整 */
@media (max-width: 480px) {
  .lp-home .services__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .lp-home .service-card {
    min-height: 92px;
    font-size: 13px;
    padding: 14px 8px 12px;
  }
  .lp-home .service-card__icon {
    width: 30px;
    height: 30px;
  }
}
