@media screen and (min-width: 768px) {
}
/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
 position: relative;
 width: 100%;
 height: 90vh;
 min-height: 600px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.hero-section02 {
 position: relative;
 width: 100%;
 height: 45vh;
 min-height: 450px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.hero-bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 105%;
 overflow: hidden;
}

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

.hero-inner {
 position: relative;
 z-index: 10;
 text-align: center;
 color: #fff;
}

.hero-copy {
 max-width: 1000px;
 margin: 0 auto;
}

.hero-lead-top {
 text-align: center;
 font-size: 50px;
 font-weight: 700;
 margin-bottom: 5px;
}

.hero-title {
 text-align: center;
 font-size: 50px;
 font-weight: 700;
 line-height: 1.4;
 margin-bottom: 30px;
}

.hero-lead-bottom {
 text-align: center;
 font-size: 24px;
 line-height: 1.8;
}

/* ─ SP対応 ───────────────────── */
@media screen and (max-width: 767px) {
 .hero-section {
  height: 65vh;
  min-height: 440px;
 }

 .hero-lead-top {
  font-size: 20px;
 }

 .hero-title {
  font-size: 28px;
  line-height: 1.5;
 }

 .hero-lead-bottom {
  font-size: 14px;
 }
}
/* ===================================================
   CONCEPT SECTION（スマホ＋PC 完全書き直し）
=================================================== */
.concept-section {
 position: relative;
 background: #0066b3;
 padding: 85px 0 85px;
 color: #fff;
 overflow: visible;
}

@media screen and (min-width: 768px) {
 .concept-section {
  padding: 150px 0 160px;
 }
}

.concept-inner {
 position: relative;
}

/* ===================================================
   人物画像
=================================================== */
.concept-visual {
 position: absolute;
 left: -5%;
 bottom: -70%;
 z-index: 10;
}

.concept-visual img {
 width: 430px;
 height: auto;
}

.concept-name {
 position: absolute;
 bottom: 35%;
 left: 28%;
 font-size: 16px;
 line-height: 1.6;
}

/* -------------------------
   SP（絶対配置を解除）
-------------------------- */
@media screen and (max-width: 767px) {
 .concept-visual {
  position: absolute;
  left: -46%;
  bottom: 10%;
  margin: 0 auto 20px;
  width: 100%;
  text-align: center;
 }

 .concept-visual img {
  width: 80%;

  object-fit: cover;
  object-position: center top; /* 上半身だけ見せる */
  border-radius: 10px;
 }

 .concept-name {
  position: absolute;
  margin-top: 10px;
  font-size: 13px;
  bottom: 30%;
  left: 45%;
  text-align: center;
 }
}

/* ===================================================
   テキスト部分
=================================================== */
.concept-text {
 position: relative;
 text-align: center;
 max-width: 800px;
 margin: 0 auto;
 z-index: 10;
 text-align: center;
 display: flex;
 align-items: center;
 flex-direction: column;
}
@media screen and (min-width: 768px) {
 .concept-text {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
 }
}
.concept-en {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-size: 60px;
 font-weight: 700;
}

@media screen and (min-width: 768px) {
 .concept-en {
  font-size: 74px;
 }
}

.concept-ja {
 text-align: center;
 font-size: 30px;
 margin-bottom: 20px;
}

.concept-catch {
 text-align: center;
 font-size: 30px;
 font-weight: 700;
 line-height: 1.5;
 margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
 .concept-catch {
  font-size: 44px;
 }
}

.concept-desc {
 text-align: center;
 font-size: 18px;
 line-height: 2;
 margin-bottom: 40px;
}

/* -------------------------
   SP：見出しサイズ調整
-------------------------- */
@media screen and (max-width: 767px) {
 .concept-en {
  font-size: 42px;
 }

 .concept-ja {
  font-size: 20px;
 }

 .concept-catch {
  width: 290px;
  font-size: 22px;
  line-height: 1.6;
 }

 .concept-desc {
  width: 290px;
  font-size: 16px;
  line-height: 1.8;
 }
}

/* ===================================================
   右下ボタン
=================================================== */
.concept-button {
 position: absolute;
 right: -15%;
 bottom: -30%;
 text-align: center;
}

.concept-more .arrow {
 width: 80px;
 height: 80px;
 background: #fff;
 border-radius: 50%;
 display: block;
 margin: 0 auto 10px;
 position: relative;
}

.concept-more .arrow::after {
 content: "";
 position: absolute;
 top: 50%;
 left: 50%;
 width: 30px;
 height: 30px;
 border-top: 10px solid #0066b3;
 border-right: 10px solid #0066b3;
 transform: translate(-50%, -50%) rotate(45deg);
}

.concept-more .more-text {
 font-size: 17px;
 color: #fff;
}

/* -------------------------
   SP：ボタンを通常位置に
-------------------------- */
@media screen and (max-width: 767px) {
 .concept-button {
  display: flex;
  position: relative;
  margin-top: 30px;
  z-index: 10;
  right: 0%;
  bottom: -30%;
  flex-direction: column;
  align-items: center;
 }

 .concept-more .arrow {
  width: 60px;
  height: 60px;
 }

 .concept-more .arrow::after {
  width: 15px;
  height: 15px;
  border-top: 4px solid #0066b3;
  border-right: 4px solid #0066b3;
 }

 .concept-more .more-text {
  font-size: 14px;
 }
}

/* ===================================================
   TARGET AUDIENCE（完全書き直し）
=================================================== */
.target-section {
 background: #f5f5f5;
 padding: 85px 0 85px;
}
@media screen and (min-width: 768px) {
 .target-section {
  background: #f5f5f5;
  padding: 100px 0 150px;
 }
}
.target-en {
 font-family: "Poppins", sans-serif;
 font-size: 60px;
 font-weight: 700;
 text-align: center;
 color: #0066b3;
 line-height: 1.1;
}
@media screen and (min-width: 768px) {
 .target-en {
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 700;
  text-align: center;
  color: #0066b3;
 }
}
.target-ja {
 text-align: center;
 margin-bottom: 60px;
 font-size: 30px;
 font-weight: bold;
 color: #0066b3;
}

/* 2つの青ボックス配置 */
.target-row {
 display: flex;
 gap: 40px;
 margin-top: 40px;
 align-items: stretch;
}

.target-box {
 background: #0066b3;
 border-radius: 12px;
 padding: 30px 5px 5px;
 flex: 1;
 position: relative;
 color: #fff;
 display: flex;
 flex-direction: column; /* 白枠を伸ばせるようにする */
}

/* 青タイトル部分 */
.target-box-title {
 font-size: 32px;
 font-weight: 700;
 color: #fff;
 text-align: center;
 margin-bottom: 20px;
 line-height: 1.4;
}

/* 内側 白BOX */
.target-box-inner {
 background: #fff;
 border-radius: 12px;
 padding: 30px 25px;
 position: relative;
 flex-grow: 1; /* ← 白枠高さ統一の決め手 */
}

.target-box-inner ul li {
 letter-spacing: 0.5px;
 font-size: 18px;
 font-weight: bold;
 color: #333;
 line-height: 1.5;
 margin-bottom: 5px;
 list-style: disc;
 margin-left: 10px;
}
@media screen and (min-width: 768px) {
 .target-box-inner ul li {
  letter-spacing: 1px;
  font-size: 25px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 20px;
 }
}
/* 無罪スタンプ（画像） */
.target-stamp {
 position: absolute;
 right: 5%;
 bottom: 5%;
 width: 150px;
}

.target-stamp img {
 width: 100%;
 height: auto;
}

/* SP */
@media screen and (max-width: 767px) {
 .target-row {
  flex-direction: column;
 }
 .target-box {
  margin-bottom: 40px;
 }
 .target-stamp {
  right: -5px;
  bottom: -10px;
  width: 90px;
 }
}
/* ===================================================
   APPROACH SECTION
=================================================== */
.approach-section {
 background: #0066b3;
 color: #fff;
 padding: 85px 0 85px;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .approach-section {
  background: #0066b3;
  color: #fff;
  padding: 150px 0 150px;
  text-align: center;
 }
}
.approach-en {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-size: 58px;
 font-weight: 700;
 margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
 .approach-en {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 700;
  margin-bottom: 10px;
 }
}
.approach-ja {
 text-align: center;
 font-size: 30px;
 margin-bottom: 50px;
}

.approach-image img {
 width: 100%;
 max-width: 1300px;
 margin: 0 auto 60px;
 display: block;
}
.approach-text {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.approach-text p {
 font-weight: bold;
 font-size: 28px;
 line-height: 1.5;
 margin-bottom: 20px;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .approach-text p {
  font-weight: bold;
  font-size: 40px;
  line-height: 1.8;
  margin-bottom: 20px;
 }
}

/* ===============================
   Modern SP Approach Diagram
=============================== */
.approach-sp-modern {
 display: none;
}

@media screen and (max-width: 767px) {
 /* PC画像は非表示 */
 .approach-image {
  display: none;
 }

 .approach-sp-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0px 0px 60px;
 }

 /* 経営者（青タグ） */
 .approach-node-top {
  background: #0066b3;
  color: #fff;
  padding: 12px 28px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
 }

 /* 矢印 */
 .approach-arrow {
  width: 2px;
  height: 28px;
  background: #fff;
  margin: 6px 0;
  position: relative;
 }
 .approach-arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
 }

 /* 中央カード */
 .approach-card-modern {
  background: #fff;
  width: 100%;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  color: #222;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
 }

 .card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
 }

 .card-sub {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
 }

 /* 赤タグ */
 .approach-tags-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
 }
 .approach-tags-modern span {
  background: #ff4d4d;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
 }

 /* 部署グリッド（スタイリッシュ版） */
 .approach-bottom-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 10px;
 }

 .approach-bottom-grid span {
  background: #0066b3;
  color: #fff;
  padding: 16px 0;
  text-align: center;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
 }
}

/* ===================================================
   PARTNER & PRICE（スマホ カード式）
=================================================== */

.partner-section {
 background: #f8f8f8;
 padding: 85px 0;
}
@media screen and (min-width: 768px) {
 .partner-section {
  padding: 150px 0;
 }
}

/* 見出し */
.partner-en {
 text-align: center;
 color: #0066b3;
 font-family: "Poppins", sans-serif;
 font-size: 58px;
 font-weight: 700;
 line-height: 1.1;
}
@media screen and (min-width: 768px) {
 .partner-en {
  font-size: 74px;
 }
}

.partner-ja {
 text-align: center;
 font-size: 28px;
 color: #0066b3;
 margin-bottom: 70px;
}

/* ===================================================
   プランボックス（PC）
=================================================== */
.partner-box {
 background: #0066b3;
 border-radius: 25px;
 padding: 60px;
 margin-bottom: 60px;
 display: flex;
 justify-content: space-between;
 color: #fff;
 position: relative;
}

/* 内容（PC） */
.partner-left {
 max-width: 70%;
}

.partner-title {
 font-size: 43px;
 font-weight: 700;
 margin-bottom: 25px;
}

.partner-desc {
 font-size: 22px;
 margin-bottom: 5px;
}

/* 関わり方の深さ */
.partner-depth {
 display: flex;
 align-items: center;
 gap: 18px;
 margin: 0px 0 50px;
}

.depth-label {
 font-size: 18px;
}

.depth-meter {
 display: flex;
 gap: 8px;
}

.depth-block {
 width: 26px;
 height: 16px;
 border-radius: 3px;
}

.depth-block.yellow {
 background-color: #ffe600;
}

.depth-block.blue {
 background-color: #1da1f2;
}

.partner-detail p {
 font-size: 20px;
 line-height: 1.8;
}

/* 料金（PC） */
.partner-right {
 display: flex;
 align-items: flex-end;
 position: absolute;
 right: 3%;
 bottom: 3%;
}

.partner-right .price {
 font-size: 40px;
 font-weight: 700;
}

.partner-right .price strong {
 font-size: 74px;
}

/* ===================================================
   ★ スマホカード式（767px以下）
=================================================== */
@media screen and (max-width: 767px) {
 .partner-box {
  flex-direction: column;
  padding: 32px 24px;
  margin-bottom: 40px;

  /* カード感 */
  border-radius: 20px;
  background: #0066b3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  position: relative;
 }

 .partner-left {
  max-width: 100%;
  margin-bottom: 25px;
 }

 /* タイトル */
 .partner-title {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.4;
 }

 /* 説明 */
 .partner-desc {
  font-size: 15px;
  margin-bottom: 15px;
 }

 /* 深さメーター */
 .partner-depth {
  gap: 12px;
  margin: 15px 0 25px;
 }

 .depth-label {
  font-size: 14px;
 }

 .depth-block {
  width: 20px;
  height: 12px;
 }

 .partner-detail p {
  font-size: 15px;
  line-height: 1.7;
 }

 /* 料金をカード下に独立表示 */
 .partner-right {
  position: static;
  margin-top: 25px;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
 }

 .partner-right .price {
  font-size: 22px;
 }

 .partner-right .price strong {
  font-size: 40px;
 }
}

/* =====================================================
   CASE STUDY（完全書き直し・スクショ100%再現）
===================================================== */

.case-section {
 background: #0066b3;
 padding: 85px 0;
}
@media screen and (min-width: 768px) {
 .case-section {
  background: #0066b3;
  padding: 120px 0;
 }
}
/* 見出し */
.case-en {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-size: 60px;
 font-weight: 700;
 line-height: 1.1;
 color: #fff;
}
@media screen and (min-width: 768px) {
 .case-en {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 700;
  color: #fff;
 }
}
.case-ja {
 text-align: center;
 font-size: 30px;
 margin-bottom: 60px;
 color: #fff;
}

/* -------------------------
   ■ 白カード本体
-------------------------- */
.case-cards {
 display: flex;
 flex-direction: column;
 gap: 40px;
}
.case-card {
 background: #fff;
 border-radius: 22px;
 padding: 40px;
 display: flex;
 gap: 40px;
 position: relative; /* ← 矢印固定のため絶対必須 */
 align-items: flex-start; /* ← テキストを上揃え */
}

/* -------------------------
   ■ 左：画像（45％）
-------------------------- */
.case-img {
 width: 45%;
}

.case-img img {
 width: 100%;
 border-radius: 14px;
 background: #e5e3e3;
 object-fit: cover;
}

/* -------------------------
   ■ 中央：テキスト（45％）
-------------------------- */
.case-text {
 width: 45%;
 display: flex;
 flex-direction: column;
 justify-content: flex-start; /* ← タイトルを上に固定 */
}

.case-title {
 font-size: 32px;
 font-weight: 700;
 color: #0066b3;
 line-height: 1.5;
 margin-bottom: 20px;
}

.case-desc {
 font-size: 18px;
 color: #333;
 line-height: 1.7;
}

/* -------------------------
   ■ 右：矢印（10％）
-------------------------- */
.case-arrow {
 position: absolute; /* ← カード内で絶対配置 */
 top: 50%; /* ← カード中央 */
 right: 40px; /* ← 右端から固定距離 */
 transform: translateY(-50%); /* ← 完全中央化 */
}

.arrow-circle {
 width: 48px;
 height: 48px;
 background: #0066b3;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.arrow-icon {
 width: 14px;
 height: 14px;
 border-top: 4px solid #fff;
 border-right: 4px solid #fff;
 transform: rotate(45deg);
}
/* =====================================================
   CASE STUDY - SP（スマホ最適化）
===================================================== */
@media screen and (max-width: 767px) {
 /* セクション余白調整 */
 .case-section {
  padding: 60px 0;
 }

 /* カードを1カラムに */
 .case-card {
  flex-direction: column;
  padding: 24px 20px;
  gap: 20px;
 }

 /* 画像部分：100%幅に拡大 */
 .case-img {
  width: 100%;
 }
 .case-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
 }

 /* テキスト部分：100%幅 */
 .case-text {
  width: 100%;
 }

 .case-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 12px;
 }

 .case-desc {
  font-size: 14px;
  line-height: 1.7;
 }

 /* 矢印ボタン：カード下中央へ移動 */
 .case-arrow {
  position: static;
  margin: 10px auto 0;
 }

 .arrow-circle {
  width: 50px;
  height: 50px;
 }

 .arrow-icon {
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
 }

 /* カード間の余白 */
 .case-cards {
  gap: 30px;
 }
}
/* セクション */
.partner-section {
 background: #fff;
 padding: 85px 0 80px;
}
@media screen and (min-width: 768px) {
 .partner-section {
  background: #fff;
  padding: 120px 0 80px;
 }
}
/* 流れる部分の外枠（マスク） */
.partner-slider {
 overflow: hidden;
 width: 100%;
 position: relative;
}

/* ロゴを横に並べる帯 */
.partner-track {
 display: flex;
 gap: 40px;
 width: max-content;
 animation: slide 60s linear infinite; /* ← 速度重要 */
}

/* ロゴ */
.partner-track img {
 max-height: 100px;
 width: auto;
 object-fit: contain;
}

/* 横に流れるアニメーション */
@keyframes slide {
 0% {
  transform: translateX(0);
 }
 100% {
  transform: translateX(-50%); /* 複製込みで半分流す */
 }
}
.partner-track img:first-child {
 margin-left: 0;
}
/* ---------------------------------
   スマホの 2 列レイアウト
--------------------------------- */
.partner-grid {
 display: none; /* PC 非表示 */
}

@media screen and (max-width: 767px) {
 /* PC の流れる帯は非表示 */
 .partner-slider {
  display: none;
 }

 /* SP の2列グリッドを表示 */
 .partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
 }

 .partner-grid img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
 }
}

/* ====================================================
   CONTACT（完全書き直し）
==================================================== */

.contact-section {
 background: #f5f1ec;
 padding: 85px 0 20px;
 text-align: center;
}
@media screen and (min-width: 768px) {
 .contact-section {
  background: #f5f1ec;
  padding: 120px 0 0px;
  text-align: center;
 }
}
/* 見出し */
.contact-en {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-size: 60px;
 font-weight: 700;
 color: #0066b3;
 margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
 .contact-en {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 700;
  color: #0066b3;
  margin-bottom: 10px;
 }
}
.contact-ja {
 text-align: center;
 font-size: 30px;
 font-weight: 600;
 color: #0066b3;
 margin-bottom: 70px;
}

/* 2カラム配置 */
.contact-content {
 display: flex;
 justify-content: center;
 align-items: flex-start;
 gap: 45px;
}

/* 左：写真 */
.contact-img {
 width: 41%;
}

.contact-img img {
 width: 100%;
 border-radius: 20px;
 object-fit: cover;
}

/* 右：文章 */
.contact-text {
 width: 45%;
 font-weight: 600;
 text-align: left;
 font-size: 18px;
 line-height: 1.9;
 color: #333;
}

/* ボタン（青丸＋テキスト） */
.contact-btn {
 display: inline-flex;
 align-items: center;
 gap: 14px;
 margin-top: 30px;
 font-size: 18px;
 font-weight: 700;
 color: #0066b3;
 text-decoration: none;
 flex-direction: column;
}

/* 青丸 */
.contact-btn-circle {
 width: 80px;
 height: 80px;
 background: #0066b3;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

/* 白矢印 */
.arrow-icon {
 width: 15px;
 height: 15px;
 border-top: 4px solid #fff;
 border-right: 4px solid #fff;
 transform: rotate(45deg);
}

/* -----------------------------
   SP レスポンシブ（任意）
------------------------------ */
@media (max-width: 768px) {
 .contact-content {
  flex-direction: column;
  align-items: center;
 }
 .contact-img,
 .contact-text {
  width: 100%;
 }
 .contact-text {
  text-align: center;
  font-size: 14px;
 }
}
