/*トップページ、News用CSS*/
html{
	padding:0;
	margin:0;
	overflow-x:hidden;
  scroll-behavior: smooth;
}
a{
	text-decoration:none;
}
body{
	padding:0;
	margin:0;
  font-family:
    'Noto Sans JP',
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'Yu Gothic',
    'Meiryo',
    sans-serif;
}
/* =========================
  Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: #fff; /* 必須：透け防止 */
  z-index: 9999;     /* 最前面 */
}
/* 管理バーがある時（PC） */
body.admin-bar .site-header {
  top: 32px;
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo img {
  height: 40px;
}

/* ナビ */
.header-nav {
  display: flex;
  align-items: flex-end;
  gap: 40px;

  margin-left: auto;
  margin-right: 60px; /* Contactとの距離 */
}

.nav-list {
  display: flex;
  gap: 40px;
  list-style:none;
}

.nav-list li a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

/* Contactボタン */
.header-contact-btn {
  background: #3f6b67;
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.header-contact-btn:hover {
  opacity: 0.8;
}

/* =========================
  ハンバーガー
========================= */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* open状態 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* =========================
  SPメニュー
========================= */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.sp-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%; /* ←ここがミソ */
  height: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: 0.4s;
}
.sp-panel {
  position: absolute;
  right: -100%;
  top: 0;
  width: 70%;
  height: 100%;

  background: #8cad8a; /* ←このグリーン */

  display: flex;
  align-items: center;
  padding-left: 40px;

  transition: 0.4s ease;
}
.sp-menu.active {
  pointer-events: auto;
}

.sp-menu.active .sp-panel {
  right: 0;
}

.sp-menu.active .sp-overlay {
  opacity: 1;
}
.sp-panel ul {
  list-style: none;
}

.sp-panel li {
  margin-bottom: 32px;
}

.sp-panel a {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
}

/* サブ */
.sp-panel a span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}
.sp-menu ul {
  text-align: center;
}

.sp-menu li {
  margin-bottom: 24px;
}

.sp-menu a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.sp-contact {
  display: inline-block;
  background: #3f6b67;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
}
.sp-close {
  position: absolute;
  top: 70px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
}
/* =========================
  FV
========================= */
/* =========================
FV
========================= */

.fv{
  position:relative;
  width:100%;
  height:100vh;
  min-height:850px;
  overflow:hidden;

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

/* =========================
背景
========================= */

.fv-bg{
  position:absolute;
  inset:0;

  background-image:url("../images/fv-bg.png");
  background-repeat:no-repeat;
  background-position:center center;
  background-size:1500px;

  z-index:1;
}

/* =========================
中央テキスト
========================= */

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

  width:90%;
  text-align:center;
}

.fv-title{
  font-size:40px;
  font-weight:900;
  line-height:1.4;
  letter-spacing:0.04em;
  color:#000;
  margin:0;
}

/* =========================
SCROLL
========================= */

.fv-scroll{
  position:absolute;
  left:40px;
  bottom:60px;

  writing-mode:vertical-rl;
  text-orientation:mixed;

  font-size:18px;
  letter-spacing:0.2em;
  color:#3f6b67;

  z-index:2;
}
.consulting {
  width: 100%;
  padding: 160px 0 120px;
  position: relative;
}

/* =========================
  左ベタ帯
========================= */
.consulting-headline {
  padding-left: 0; /* 完全に左に寄せる */
  margin-bottom: 24px;
}

/* 英語タイトル */
.consulting-title span {
  display: inline-block;
  background: #3f6b67;
  color: #fff;
  font-size: 42px;
  padding: 14px 32px;
  line-height: 1.2;
  padding-left:180px;
font-weight: 900 !important;
  letter-spacing: 0.02em; /* ←詰まり気味にする */
}

/* 日本語 */
.consulting-label {
  display: inline-block;
  background: #3f6b67;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 8px 18px;
  margin-top: 10px;
  padding-left:180px;
}

/* =========================
  コンテンツ幅
========================= */
.consulting-inner {
  margin: 0 auto;
}

/* テキスト */
.consulting-text {
  font-size: 16px;
  line-height: 2;
  color: #333;
  max-width: 900px;
  font-weight:600;
  padding-left:180px;
}
/* =========================
  Service
========================= */
.service-dark-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.service-list {
  position: relative;
  z-index: 2;
  max-width: 870px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.service-card {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 14px;
  overflow: hidden;
  min-height: 245px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card-img {
  width: 245px;
  height: 245px;
  flex-shrink: 0;
}

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

.service-card-text {
	padding-left:70px;
}

.service-card-text h3 {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  color: #00433f;
  line-height: 1.5;
}

.service-card-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 2;
}

.service {
  padding: 140px 0 140px;
  position: relative;
  overflow: hidden;
}

.service-inner {
  margin: 0 auto;
    padding-left: 180px; 
}

/* タイトル */
.service-head {
  margin-bottom: 60px;
}

.service-title {
  font-size: 64px;
  font-weight: 900;
  color: #3f6b67;
  margin: 0;
}

.service-sub {
  font-size: 18px;
  margin-top: 6px;
}

/* =========================
  左ベタ帯（重要）
========================= */
.service-band {
  width: 200px;
  height: 50px;
  background: #3f6b67;
  display: flex;
  align-items: center;
  padding-left: 180px; 
  margin-bottom: 60px;
}

.service-band span {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

/* =========================
  レイアウト
========================= */
.service-content {
  display:flex;
  position:relative;
  min-height:600px;
}

/* 左（広く取るのが正解） */
.service-left {
  width: 760px; /* ←ここが超重要 */
  z-index: 5;
}

/* 見出し */
.service-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

/* テキスト */
.service-text {
  font-size: 16px;
  line-height: 2;
  max-width: 500px;
}

/* 下ブロック（ズレ） */
.service-bottom {
  margin-top: 160px;
  padding-left: 70px;
}

.service-heading-large {
  font-size: 38px;
}

/* =========================
  右ビジュアル
========================= */
.service-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
}

/* 背景 */
.service-bg {
  position: absolute;
  top: 120px;

  right: calc(50% - 50vw); /* ←これが核心 */

  width: 900px;
  height: 320px;

  background: linear-gradient(90deg, #cfe6e3, #e7f3f2);
  border-radius: 40px 0 0 40px;
}

/* 画像 */
.img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
}

.img img {
  width: 100%;
  display: block;
}
.service-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 重なり（左が一番上） */
.img1 {
  width: 240px;
  top: 120px;
  left: 60px;
  z-index: 3;
}

.img2 {
  width: 260px;
  top: 60px;
  right: 60px;
  z-index: 2;
}

.img3 {
  width: 260px;
  top: 300px;
  left: 200px;
  z-index: 1;
}
/* =========================
  Problem
========================= */
.problem {
  padding: 100px 0;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.problem-lead {
  text-align: left;
  margin-bottom: 64px;
  padding-left:100px;
}

.problem-lead p {
  margin: 0;
  font-size:30px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #2b2f33;
}

.sp-only {
  display: none;
}
/* =========================
  3カラム
========================= */
.problem-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.problem-item {
  width: 33.333%;
  text-align: center;
}

/* 画像 */
.problem-img {
  height: 200px; /* ←ここで揃える */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-img img {
  width: 100%;
  max-width: 280px;
}

/* 番号 */
.problem-number {
  font-size: 18px;
  font-weight: 900;
  color: #3f6b67;
  margin-bottom: 12px;
}

/* タイトル */
.problem-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #333;
}

/* テキスト */
.problem-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
/* =========================
  Solution
========================= */
.solution {
  padding: 120px 0;
  background: #ffffff;
  transition: background 0.6s ease;
}

/* 背景切り替え後 */
.solution.is-active {
  background: #062f2f;
}

.solution-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
  見出し
========================= */
.solution-head {
  text-align: center;
  margin-bottom: 80px;
}

.solution-head h2 {
  font-size: 28px;
  line-height: 2;
  color: #fff;
  opacity: 0;
  transition: 0.6s;
}

/* 表示時 */
.solution.is-active .solution-head h2 {
  opacity: 1;
}

/* =========================
  カード
========================= */
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-item {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

/* 表示 */
.solution.is-active .solution-item {
  opacity: 1;
  transform: translateY(0);
}

/* 画像 */
.solution-img {
  width: 28%;
}

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

/* 右テキスト */
.solution-content {
  width: 60%;
  padding: 20px;
}

.solution-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #0b3f3f;
  font-weight: 700;
}

.solution-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

/* =========================
  CTA
========================= */
.solution-cta {
  text-align: center;
  margin-top: 80px;
}

.solution-cta a {
  display: inline-block;
  padding: 18px 60px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.solution-cta a:hover {
  background: #fff;
  color: #062f2f;
}
/* =========================
  Support
========================= */
.support {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

/* 背景フェード用 */
.support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #062f2f;
  opacity: 0;
  transition: 0.6s;
  z-index: 0;
}

/* 発火後 */
.support.is-active::before {
  opacity: 1;
}

/* 中身 */
.support-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.support-head h2 {
  font-size: 24px;
  line-height: 2;
  color: #fff;
  opacity: 0;
  transition: 0.6s;
}

.support.is-active .support-head h2 {
  opacity: 1;
}

/* =========================
  カード
========================= */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.support-item {
  display: flex;
  align-items: stretch;
  background: #f3f3f3;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.support.is-active .support-item {
  opacity: 1;
  transform: translateY(0);
}

/* 画像 */
.support-img {
  width: 28%;
}

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

/* テキスト */
.support-content {
  width: 65%;
  padding: 26px 30px;
}

.support-content h3 {
  font-size: 20px;
  color: #1f4f4f;
  margin-bottom: 10px;
  font-weight: 700;
}

.support-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* =========================
  CTA
========================= */
.support-cta {
  text-align: center;
  margin-top: 60px;
}

.support-cta a {
  display: inline-block;
  padding: 16px 60px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.support-cta a:hover {
  background: #fff;
  color: #062f2f;
}
/* =========================
  Works
========================= */
.works {
  padding: 120px 60px 120px;
  overflow: hidden;
　　text-align: center;
}

.works-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
/* =========================
  ロゴ枠（左ベタ）
========================= */
.works-slider-wrap {
  margin: 60px auto 0;

  width: calc(100% - 120px);
  max-width: 1600px; /* お好み */

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  border-radius: 12px;
  padding: 30px 0;

  border: 2px solid rgba(120, 200, 180, 0.3);
}

/* =========================
  スライダー
========================= */
.works-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.works-track {
  display: flex;
  width: calc(140px * 8 * 2); /* ロゴ数 × サイズ × 2 */
}
.track-top {
  animation: scrollLeft 100s linear infinite;
}
.track-bottom {
animation: scrollLeft 100s linear infinite;
}
/* ロゴ */
.works-item {
  width: 140px;
  height: 80px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-item img {
  max-width: 100%;
  max-height: 100%;
}

/* =========================
  無限スクロール
========================= */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* =========================
  Marquee
========================= */
.marquee {
  overflow: hidden;
  padding: 40px 0;
}

/* 外枠 */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
}

/* トラック */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

/* テキスト */
.marquee-text {
  font-size: 80px;
  font-weight: 900;
  color: #cfd8dc;
  white-space: nowrap;
  margin-right: 80px; /* ←ここ重要（間隔） */
}

/* アニメーション */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
  Flow
========================= */
.flow {
  padding: 100px 0;
}

.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
  見出し
========================= */
.flow-head {
  margin-bottom: 60px;
}

.flow-title {
  font-size: 40px;
  font-weight: 900;
  color: #3f6b67;
}

.flow-sub {
  font-size: 16px;
  margin-top: 6px;
}
/* =========================
  Message
========================= */
.message {
  padding: 100px 0;
    width:100%;
  background:#f3f3f3;
}

.message-inner {
  width:90%;
  max-width:1800px;
  margin:0 auto;

  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:120px;
}

/* =========================
  見出し
========================= */
.message-head {
  width:90%; 
  max-width:1800px;
  margin: 0 auto;
    margin-bottom: 60px;
}

.message-title {
  font-size: 40px;
  font-weight: 900;
  color: #3f6b67;
  margin-bottom:0px;
}

.message-sub {
  font-size: 16px;
  margin-top: 6px;
}
/* =========================
左側
========================= */

.message-content{
  width:48%;
}

.message-heading{
  font-size:32px;
  font-weight:700;
  line-height:1.5;
  color:#222;
  margin:0 0 60px;
  letter-spacing:0.08em;
}

.message-text p{
  font-size:16px;
  font-weight:400;
  line-height:2;
  color:#333;
  margin:0 0 35px;
  letter-spacing:0.06em;
}

/* =========================
右側
========================= */

.message-profile{
  width:42%;
}

.message-profile-image{
  width:100%;
}

.message-profile-image img{
  width:100%;
  display:block;
}

/* =========================
プロフィール
========================= */

.message-profile-info{
  margin-top:35px;
}

.message-position{
  display:block;
  font-size:16px;
  color:#222;
  margin-bottom:18px;
  letter-spacing:0.08em;
}

.message-name-wrap{
  display:flex;
  align-items:flex-end;
  gap:28px;
}

.message-name-ja{
  font-size:30px;
  font-weight:700;
  color:#222;
  line-height:1;
  margin:0;
  letter-spacing:0.05em;
}

.message-name-en{
  font-size:25px;
  font-weight:400;
  color:#6f8b96;
  line-height:1.2;
  letter-spacing:0.08em;
  transform:translateY(-6px);
}
/* =========================
  フローリスト
========================= */
.flow-list {
  position: relative;
}

/* 縦ライン */
.flow-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ccc;
}

/* =========================
  各アイテム
========================= */
.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

/* 丸番号 */
.flow-num {
  position: absolute;
  left: 0;
  top: 0;

  width: 44px;
  height: 44px;
  border: 2px solid #3f6b67;
  border-radius: 50%;

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

  font-weight: 700;
  color: #3f6b67;
  background: #f3f3f3;
}

/* テキスト */
.flow-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.flow-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.flow-content {
  transform: translateY(-6px);
}
/* =========================
  Contact
========================= */
.contact {
  padding: 100px 0;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
  テキスト
========================= */
.contact-head {
  margin-bottom: 40px;
}

.contact-title {
  font-size: 40px;
  font-weight: 900;
  color: #3f6b67;
}

.contact-sub {
  font-size: 16px;
  margin-top: 6px;
}

.contact-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  max-width: 360px; /* ←自然改行 */
}

/* =========================
  ボタン
========================= */
.contact-btn-wrap {
  margin-top: 40px;
}

.contact-btn {
  display: inline-block;
  padding: 18px 60px;

  border: 2px solid #3f6b67;
  border-radius: 10px;

  color: #3f6b67;
  font-weight: 700;
  text-decoration: none;

  transition: 0.3s;
}

/* hover */
.contact-btn:hover {
  background: #3f6b67;
  color: #fff;
}





/* =========================
   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);
}
/* =========================
  News
========================= */
.news {
  padding: 100px 0;
}

.news-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
  見出し
========================= */
.news-head {
  margin-bottom: 60px;
}

.news-title {
  font-size: 48px;
  font-weight: 900;
  color: #3f6b67;
}

.news-sub {
  font-size: 18px;
  margin-top: 8px;
}

/* =========================
  リスト
========================= */
.news-list {
  border-top: 1px solid #6a9c9a;
}

/* 1行 */
.news-item {
  display: flex;
  align-items: center;
  gap: 60px;

  padding: 30px 0;
  border-bottom: 1px solid #6a9c9a;

  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

/* hover */
.news-item:hover {
  opacity: 0.7;
}

/* 日付 */
.news-date {
  width: 180px;
  font-size: 20px;
  font-weight: 700;
}

/* タイトル */
.news-text {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}
/* =========================
  News Detail
========================= */
.news-detail {
  padding: 100px 0 120px;
}

.news-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
  見出し
========================= */
.news-detail-head {
  margin-bottom: 60px;
}

.news-detail-title {
  font-size: 48px;
  font-weight: 900;
  color: #3f6b67;
}

.news-detail-sub {
  font-size: 18px;
  margin-top: 8px;
}

/* =========================
  記事
========================= */
.news-detail-article {
  border-top: 1px solid #6a9c9a;
  padding-top: 40px;
}

/* 日付 */
.news-detail-date {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* タイトル */
.news-detail-post-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* 本文 */
.news-detail-content {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

/* 本文内の余白 */
.news-detail-content p {
  margin-bottom: 24px;
}

/* 画像 */
.news-detail-thumbnail {
  margin: 40px 0;
}

.news-detail-thumbnail img {
  width: 100%;
  border-radius: 8px;
}

/* =========================
  ナビ
========================= */
.news-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  gap: 20px;
}

/* 共通ボタン */
.news-detail-nav a {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

/* 前・次 */
.news-detail-nav .nav-prev a,
.news-detail-nav .nav-next a {
  border: 2px solid #3f6b67;
  color: #3f6b67;
}

/* 一覧 */
.news-detail-nav .nav-back a {
  background: #3f6b67;
  color: #fff;
}

/* hover */
.news-detail-nav a:hover {
   background: #fff;
  color: #3f6b67;
}
/* =========================
  Wave BG
========================= */
#wave-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* FVの上に出す */
.consulting {
  position: relative;
  z-index: 2;
}


























/* =========================
  Footer
========================= */
.site-footer {
  padding: 80px 0 40px;
  color: #fff;

  /* グラデーション */
  background: linear-gradient(
    90deg,
    #2b2b2b 0%,
    #3a3a3a 50%,
    #2b2b2b 100%
  );
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* =========================
  左側
========================= */
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
}

/* ロゴ */
.footer-logo img {
  width: 120px;
   display: block; 
}

/* テキスト */
.footer-company {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
    margin-top: 0;   
  line-height: 1.2;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
  ナビ
========================= */
.footer-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* =========================
  ライン
========================= */
.footer-line {
  margin: 40px auto 20px;
  max-width: 1100px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* =========================
  コピー
========================= */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}
/* =========================
  レスポンシブ
========================= */
@media (max-width: 767px) {

  .header-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
	  .service {
    padding: 60px 0 80px;
  }

  .service-inner {
    padding: 0 20px;
  }

  .service-head {
    margin-bottom: 32px;
  }

  .service-title {
    font-size: 52px;
  }

  .service-sub {
    font-size: 18px;
    margin-top: 6px;
  }

  .service-band-wrap {
    margin-bottom: 32px;
  }

  .service-band {
    min-width: 0;
    width: 320px;
    max-width: calc(100% - 24px);
    height: 56px;
    padding-left: 20px;
  }

  .service-band span {
    font-size: 24px;
  }

  .service-content {
    display: block;
  }

  .service-left,
  .service-right {
    width: 100%;
  }

  .service-heading {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .service-text {
    font-size: 16px;
    line-height: 1.9;
    max-width: 100%;
  }

  .service-bottom {
    margin-top: 56px;
    padding-left: 0;
  }

  .service-heading-large {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .service-right {
    min-height: 520px;
    margin-top: 48px;
  }

  .service-bg-obj {
    right: -120px;
    top: 90px;
    width: 520px;
    height: 220px;
    border-radius: 28px;
  }

  .service-photo-01 {
    width: 160px;
    height: 190px;
    top: 90px;
    left: 0;
  }

  .service-photo-02 {
    width: 170px;
    height: 250px;
    top: 0;
    right: 0;
  }

  .service-photo-03 {
    width: 220px;
    height: 220px;
    top: 205px;
    left: 90px;
  }
  .news {
    padding: 60px 0;
  }

  .news-inner {
    padding: 0 16px;
  }

  /* 見出し */
  .news-title {
    font-size: 32px;
  }

  .news-sub {
    font-size: 14px;
  }

  .news-head {
    margin-bottom: 40px;
  }

  /* リスト */
  .news-item {
    gap: 20px;              /* ←PCの60pxは広すぎるので圧縮 */
    padding: 20px 0;
  }

  /* 日付 */
  .news-date {
    width: 110px;           /* ←縮小 */
    font-size: 14px;
  }

  /* タイトル */
  .news-text {
    font-size: 14px;
  }
	  .news-detail {
    padding: 80px 0;
  }

  .news-detail-title {
    font-size: 32px;
  }

  .news-detail-post-title {
    font-size: 22px;
  }

  .news-detail-date {
    font-size: 16px;
  }

  .news-detail-content {
    font-size: 14px;
  }

  .news-detail-nav {
    flex-direction: column;
    gap: 16px;
  }

  .news-detail-nav a {
    width: 100%;
    text-align: center;
  }
/* =========================
  FV
========================= */
.consulting {
  padding: 120px 0 60px;
}

/* 左ベタ解除 */
.consulting-headline {
  padding-left: 0;
}

/* 英語タイトル */
.consulting-title span {
  font-size: 28px;
  padding: 12px 20px;
  padding-left: 20px; /* ←180px削除 */
}

/* 日本語 */
.consulting-label {
  font-size: 14px;
  padding: 6px 14px;
  padding-left: 14px; /* ←180px削除 */
}

/* テキスト */
.consulting-text {
  padding-left: 0; /* ←これ超重要 */
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}

/* inner調整 */
.consulting-inner {
  padding: 0 20px;
}
  #wave-bg {
    width: 70vw;
    opacity: 0.6;
  }
	/* =========================
  右ビジュアル全体
========================= */
.service-right {
  position: relative;
  width: 100%;
  height: 420px;
  margin-top: 40px;
}

.service-bg {
  position: absolute;
  top: 120px;
  right: -20px;

  width: 90%;
  height: 140px;

  background: linear-gradient(90deg, #cfe6e3, #e7f3f2);
  border-radius: 20px 0 0 20px;
}

/* 共通 */
.img {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
}

/* 左（上） */
.img1 {
  width: 45%;
  top: 140px;
  left: 0;
  z-index: 3;
}

/* 右（上） */
.img2 {
  width: 48%;
  top: 40px;
  right: 0;
  z-index: 2;
}

/* 下（中央） */
.img3 {
  width: 55%;
  top: 240px;
  left: 20%;
  z-index: 1;
}

/* 画像 */
.img img {
  width: 100%;
  height: auto;
  display: block;
}

.problem {
  padding: 60px 0;
}

.problem-inner {
  padding: 0 20px;
}

/* 縦並び */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* 各アイテム */
.problem-item {
  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
  画像
========================= */
.problem-img {
  width: 100%;
  max-width: 320px;
}

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

/* =========================
  番号
========================= */
.problem-number {
  margin-top: 20px;

  font-size: 16px;
  font-weight: 900;
  color: #3f6b67;
  letter-spacing: 0.08em;
}

/* =========================
  タイトル
========================= */
.problem-title {
  margin-top: 10px;

  font-size: 20px;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
}

/* =========================
  テキスト
========================= */
.problem-text {
  margin-top: 10px;

  font-size: 15px;
  line-height: 1.8;
  color: #555;

  max-width: 280px; /* ←ここが効く */
}
	/* =========================
  カード高さを制御
========================= */
.solution-item {
  height: 140px; /* ←これが最重要 */
}

/* =========================
  画像をカードにフィット
========================= */
.solution-img {
  width: 40%;
  height: 100%;
}

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

/* =========================
  テキスト圧縮
========================= */
.solution-content {
  width: 60%;
  padding: 10px 12px; /* ←詰める */
  display: flex;
  flex-direction: column;
  justify-content: center; /* ←中央寄せ */
}
	.solution-head h2{
		font-size:18px;
	}
	.solution-content h3{
			font-size:12px;
		   margin-bottom:0px;
	}
	.solution-content p{
		font-size:9px;
	}
/* タイトル */
.solution-title {
  font-size: 15px;
  margin-bottom: 4px;
}

/* サブ */
.solution-sub {
  font-size: 12px;
  margin-bottom: 4px;
}

/* 本文 */
.solution-text {
  font-size: 12px;
  line-height: 1.5;
}
/* =========================
  セクション余白
========================= */
.support {
  padding: 70px 16px;
}

/* =========================
  見出し
========================= */
.support-head {
  text-align: center;
  margin-bottom: 32px;
}

.support-head p {
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
  カード
========================= */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
  横並びカード（重要）
========================= */
.support-item {
  display: flex;
  align-items: stretch;
  height: 150px; /* ←ここで締める */

  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* =========================
  画像
========================= */
.support-img {
  width: 40%;
  min-width: 120px;
  height: 100%;
}

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

/* =========================
  テキスト
========================= */
.support-content {
  width: 60%;
  padding: 10px 12px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
	.support-content h3{
		font-size:12px;
		margin-bottom:0px;
	}
	.support-content p{
		font-size:9px;
	}
/* タイトル */
.support-title {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #3f6b67;
}

/* サブ */
.support-sub {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* 本文 */
.support-text {
  font-size: 12px;
  line-height: 1.5;
  color: #555;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* ←溢れ防止 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
  CTA
========================= */
.support-cta {
  text-align: center;
  margin-top: 32px;
}

.support-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
	.support.is-active .support-head h2{
		font-size:18px;
	}
	.works-slider-wrap {
  width: calc(100% - 50px);
  padding:10px 0;
}
.marquee-text {
  font-size: 40px;
  font-weight: 900;
  color: #cfd8dc;
  white-space: nowrap;
  margin-right: 80px; /* ←ここ重要（間隔） */
}
	
.flow-content p {
  font-size: 11px;
}
	.contact {
  padding-top: 40px;
}
	/* =========================
  Footer
========================= */
.site-footer {
  padding: 60px 20px 30px;
  background: linear-gradient(135deg, #0b3f3b, #2c2c2c);
  color: #fff;
}

/* =========================
  全体
========================= */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =========================
  左（ロゴ＋会社情報）
========================= */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ロゴ */
.footer-logo img {
  width: 120px;
}

/* 情報 */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-company {
  font-size: 16px;
  font-weight: 700;
}

.footer-address {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
  ナビ
========================= */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* =========================
  ライン
========================= */
.footer-line {
  margin: 32px 0 20px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* =========================
  コピー
========================= */
.footer-copy {
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

  .message{
    padding:70px 0;
  }

  .message-inner{
    width:90%;
    flex-direction:column;
    gap:50px;
  }

  /* =========================
  見出し
  ========================= */

  .message-head{
    margin-bottom:35px;
  }

  .message-title{
    font-size:28px;
    line-height:1.4;
    margin-bottom:8px;
  }

  .message-sub{
    font-size:13px;
    line-height:1.8;
  }

  /* =========================
  左側
  ========================= */

  .message-content{
    width:100%;
  }

  .message-heading{
    font-size:23px;
    line-height:1.6;
    margin:0 0 35px;
    letter-spacing:0.05em;
  }

  .message-text p{
    font-size:15px;
    line-height:2;
    margin:0 0 24px;
    letter-spacing:0.04em;
  }

  /* =========================
  右側
  ========================= */

  .message-profile{
    width:100%;
  }

  .message-profile-image{
    width:100%;
  }

  .message-profile-image img{
    width:100%;
    height:auto;
    display:block;
  }

  /* =========================
  プロフィール
  ========================= */

  .message-profile-info{
    margin-top:20px;
  }

  .message-position{
    font-size:14px;
    margin-bottom:10px;
  }

  .message-name-wrap{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .message-name-ja{
    font-size:30px;
    line-height:1.3;
  }

  .message-name-en{
    font-size:18px;
    transform:none;
    line-height:1.4;
  }


  .fv{
    min-height:100vh;
    overflow:hidden;
  }

  .fv-inner{
    width:100%;
    position:relative;
    z-index:2;

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

    transform:translateY(-2%);
  }

  .fv-bg{
    background-size:900px;
    background-position:center center;
  }

  .fv-title{
    width:100%;
    text-align:center;

    font-size:7vw;
    line-height:1.5;
    letter-spacing:0.03em;

    margin:0 auto;
  }

  .fv-scroll{
    left:10px;
    bottom:20px;

    font-size:10px;
  }
  .problem-lead {
    margin-bottom: 80px;
	padding-left:20px;
  }

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

  .sp-only {
    display: block;
  }
	  .service {
    padding: 80px 16px;
  }

  .service-inner {
    padding-left: 0;
  }

  .service-head {
    margin-bottom: 40px;
  }

  .service-title {
    font-size: 42px;
  }

  .service-sub {
    font-size: 15px;
  }

  .service-list {
    max-width: 100%;
    gap: 28px;
  }

  .service-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    border-radius: 14px;
  }

  .service-card-img {
    width: 100%;
    height: 220px;
  }

  .service-card-text {
    padding: 28px 22px 32px;
  }

  .service-card-text h3 {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .service-card-text p {
    font-size: 14px;
    line-height: 1.9;
  }
	.works {
  padding: 0px 0 20px;
}
/* Contactボタン */
.header-contact-btn {
  padding: 5px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
}
}
