/* =============================
   CSS Variables & Reset
============================= */
:root {
  --color-bg: #ffffff;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-navy: #1a2a4a;
  --color-blue-bright: #2879c0;
  --color-gray: #888888;
  --color-gray-light: #e8e6e2;
  --font-en: 'Cormorant Garamond', serif;
  --font-en2: 'BIZ UDPGothic', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-gothic: 'BIZ UDPGothic', 'Noto Sans JP', sans-serif;
  --header-h: 72px;
  --sticky-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================
   PAGE HEADER（下層ページ・キャッチなし）
============================= */
#main-header.page-header {
  display: flex;
  flex-direction: column;
  padding-top: var(--sticky-h);
}

#main-header.page-header .header-tagline-bar {
  display: none;
}
#main-header {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

/* 1段目：キャッチコピー帯 */
.header-tagline-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--color-white);
}

.header-tagline-bar-inner {
  width: 100%;
  max-width: 1300px;
  padding: 50px 0;
  display: flex;
  justify-content: flex-end;
}

.hero-tagline-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
}

#main-header .logo-img {
  max-width: 495px;
  width: 100%;
  height: auto;
  display: block;
}

/* 2段目：ロゴ + ナビ */
.header-nav-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--color-white);
}

.header-nav-bar-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 50px;
  height: var(--header-h);
  gap: 24px;
}

#main-header .logo-en {
  display: block;
  line-height: 0;
}

#main-header nav ul {
  display: flex;
  gap: 15px;
}

#main-header nav ul li a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-black);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

#main-header nav ul li a:hover { color: var(--color-blue-bright); }

#main-header nav ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-navy);
  transition: width .3s ease;
}

#main-header nav ul li a:hover::after { width: 100%; }

/* ドロップダウン */
#main-header nav ul li,
#sticky-header nav ul li {
  position: relative;
}

#main-header nav ul li .dropdown,
#sticky-header nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 200;
}

#main-header nav ul li .dropdown-inner,
#sticky-header nav ul li .dropdown-inner {
  background: #fff;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  white-space: nowrap;
  min-width: 160px;
}

#main-header nav ul li:hover .dropdown,
#sticky-header nav ul li:hover .dropdown {
  display: block;
}

#main-header nav ul li .dropdown a,
#sticky-header nav ul li .dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-gray-light);
  transition: background .2s;
}

#main-header nav ul li .dropdown a:last-child,
#sticky-header nav ul li .dropdown a:last-child {
  border-bottom: none;
}

#main-header nav ul li .dropdown a::after,
#sticky-header nav ul li .dropdown a::after {
  display: none;
}

#main-header nav ul li .dropdown a:hover,
#sticky-header nav ul li .dropdown a:hover {
  background: var(--color-bg);
}

#main-header nav ul li .dropdown a:hover { color: var(--color-blue-bright); }

/* モバイルナビのドロップダウン */
.mobile-nav .dropdown-mobile {
  margin-top: 6px;
}

.mobile-nav .dropdown-mobile a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  letter-spacing: .1em;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--color-navy);
  transition: all .3s ease;
}
.hamburger .menu-label {
  display: block;
  width: auto; height: auto;
  background: none;
  font-family: var(--font-gothic);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-navy);
  transition: opacity .3s ease;
  line-height: 1;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hamburger.open .menu-label { opacity: 0; }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,42,74,.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav ul li a {
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: .12em;
  font-family: var(--font-sans);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
}

/* =============================
   PAGE HERO（下層ページ共通）
============================= */
.page-hero {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: var(--color-white);
}

.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg-text {
  position: absolute;
  top: 60px;
  left: 50px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 168px;
  line-height: 1;
  color: #ddd;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
  opacity: 0.6;
}

.page-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  padding: 0 35px 0 50px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-label {
  position: absolute;
  top: 178px;
  left: 65px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 25px;
  color: #2360ad;
  z-index: 3;
}

.page-hero h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-black);
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  letter-spacing: -.02em;
}

/* =============================
   BREADCRUMB（パンくず共通）
============================= */
.breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 40px 50px 150px;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--color-black);
}

.breadcrumb a {
  color: var(--color-black);
  transition: color .2s;
}

.breadcrumb a:hover { color: var(--color-navy); }

/* =============================
   STICKY HEADER
============================= */
#sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 16px rgba(0,0,0,.08);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}

#sticky-header.visible {
  transform: translateY(0);
}

#sticky-header .logo-jp {
  display: block;
  line-height: 0;
}

.sticky-logo-img {
  max-width: 296px;
  width: 100%;
  height: auto;
  display: block;
}

#sticky-header .logo-jp .mark {
  width: 28px; height: 28px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 13px;
  font-family: var(--font-en);
  font-weight: 400;
}

#sticky-header nav ul {
  display: flex;
  gap: 15px;
}

#sticky-header nav ul li a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-black);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

#sticky-header nav ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-blue-bright);
  transition: width .3s ease;
}

#sticky-header nav ul li a:hover { color: var(--color-blue-bright); }
#sticky-header nav ul li a:hover::after { width: 100%; }

/* Sticky hamburger */
.sticky-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.sticky-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--color-navy);
  transition: all .3s ease;
}
.sticky-hamburger .menu-label {
  display: block;
  width: auto; height: auto;
  background: none;
  font-family: var(--font-gothic);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-navy);
  line-height: 1;
}
.sticky-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sticky-hamburger.open span:nth-child(2) { opacity: 0; }
.sticky-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.sticky-hamburger.open .menu-label { opacity: 0; }

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-white);
}

/* =============================
   HERO - 短冊スライダー
============================= */

/* PC wrapper: flex + gap */
.hero-pc-wrapper {
  display: flex;
  align-items: flex-end;
  gap: calc(20 / 1300 * 100%);
  width: 100%;
}

/* 3・4列を縦積み */
.hero-col34 {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 736 * 100vh);
  flex: 345 0 0;
  min-width: 0;
}

/* 各列 */
.hero-col {
  overflow: hidden;
  position: relative;
  min-width: 0;
}

/* 幅・アスペクト比 */
.hero-pc-wrapper > .strip-1 { flex: 345 0 0; aspect-ratio: 345 / 800; }
.hero-pc-wrapper > .strip-2 { flex: 204 0 0; aspect-ratio: 204 / 545; }
.hero-col34 .strip-3        { aspect-ratio: 345 / 320; width: 100%; }
.hero-col34 .strip-4        { aspect-ratio: 345 / 320; width: 100%; }
.hero-pc-wrapper > .strip-5 { flex: 345 0 0; aspect-ratio: 345 / 800; }

/* 画像トラック */
.hero-inner {
  display: flex;
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-inner img {
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* SP wrapper: PC時は非表示 */
.hero-sp-wrapper { display: none; }

/* ドットナビ */
.hero-dots { display: none; }

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

.hero-caption { display: none; }

/* =============================
   SECTION COMMONS
============================= */
section { position: relative; }

.section-label {
  position: absolute;
  top: 50%;
  font-family: var(--font-en2);
  font-size: 30px;
  letter-spacing: .10em;
  color: var(--color-black);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  white-space: nowrap;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transition: opacity .2s ease;
}

html.fonts-loaded .section-label {
  opacity: 1;
}

.section-label.left {
  left: 24px;
  /*transform: rotate(180deg);*/
}

.section-label.right {
  right: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 50px;
  padding: 20px 20px 20px 40px;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-en2);
  transition: background .3s, color .3s;
  position: relative;
}

.read-more::after {
  content: '→';
  font-size: 14px;
  margin-right: 0;
  transition: transform .3s ease;
}

.read-more:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* =============================
   ABOUT
============================= */
.about {
  padding: 200px 0;
  overflow: hidden;
  background: var(--color-white);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

/* 左：写真エリア */
.about-img {
  position: relative;
  width: 500px;
  height: 380px;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 0;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 写真内のSINCE透かし文字 */
.about-img .since {
  position: absolute;
  bottom: 28px;
  left: 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 72px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.4);
  text-stroke: 1px rgba(255,255,255,.4);
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* 右：テキストエリア */
.about-text {
  padding: 0 0 0 60px;
  width: 500px;
  flex-shrink: 0;
  position: relative;
}

.about-text h2 {
  position: relative;
  margin-bottom: 20px;
  display: block;
  line-height: 0;
}

/* h2の高さ中央に配置・写真に少し被る横線 */
.about-text h2::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 102%;
  width: 100px;
  height: 1px;
  background: var(--color-black);
  transform: translateY(-50%);
  z-index: 1;
}

.about-text h2 img {
  max-width: 433px;
  height: auto;
  display: block;
}

.about-text .service {
  font-size: 16.5px;
  letter-spacing: -.05em;
  color: var(--color-black);
  margin-bottom: 10px;
  line-height: 1.8;
}

.about-text p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #444;
  letter-spacing: .05em;
}

/* =============================
   BUSINESS
============================= */
.business {
  background: var(--color-white);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 200px;
}

.business::before {
  content: 'BUSINESS';
  position: absolute;
  top: -0.1em;
  left: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 285px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.business-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

/* 左テキスト400px＋右画像700px・隙間50px */
.business-layout {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  width: 1150px;
  flex-shrink: 0;
}

.business-top {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.business-top h2 {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .1em;
  color: #2360ad;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.business-top h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-black);
}

.business-top p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 35px;
}

.business-grid {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.biz-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

/* 物流倉庫事業カード */
.biz-card:nth-child(1) {
  width: 330px;
  height: 350px;
}

/* コンテナ事業カード */
.biz-card:nth-child(2) {
  width: 350px;
  height: 630px;
}

.biz-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter .3s ease;
}

.biz-card:hover img {
  filter: brightness(1);
}

/* 白枠 */
.biz-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 1;
}

/* 中央文字（日本語タイトル） */
.biz-card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.biz-card-label h3 {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 6px;
}

.biz-card-label span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .15em;
  color: #fff;
  opacity: .8;
  white-space: nowrap;
}

/* =============================
   NETWORK
============================= */
.network {
  padding: 100px 0 0;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
  margin-bottom: 200px;
}

.network-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.network::before {
  content: 'NETWORK';
  position: absolute;
  top: -0.1em;
  right: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 285px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* 画像エリア：1枚目 + 2・3枚目縦並び を横並び左揃え */
.network-img-wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.network-img-wrap .img-big {
  width: 340px;
  height: 770px;
  overflow: hidden;
  flex-shrink: 0;
}

.network-img-wrap .img-small-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.network-img-wrap .img-small-wrap div:nth-child(1) {
  width: 210px;
  height: 545px;
  overflow: hidden;
}

.network-img-wrap .img-small-wrap div:nth-child(2) {
  width: 290px;
  height: 205px;
  overflow: hidden;
}

.network-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリア */
.network-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 400px;
  flex-shrink: 0;
}

.network-text .eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--color-blue-bright);
  margin-bottom: 16px;
}

.network-text h2 {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .1em;
  color: #2360ad;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

/* h2の左側に横線 */
.network-text h2::before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-black);
}

.network-text p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* =============================
   MESSAGE
============================= */
.message {
  background: var(--color-white);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 200px;
}

.message::before {
  content: 'MESSAGE';
  position: absolute;
  top: -0.1em;
  left: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 285px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.message-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* テキストエリア */
.message-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 400px;
  flex-shrink: 0;
}

.message-text .section-tag {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--color-gray);
}

.message-text h2 {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .1em;
  color: #2360ad;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* h2の右側に横線（business同様） */
.message-text h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-black);
}

.message-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;
}

/* 画像エリア：1・2枚目縦並び右合わせ ＋ 3枚目 */
.message-imgs {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.message-imgs .img-small-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.message-imgs .img-small-wrap div:nth-child(1) {
  width: 161px;
  height: 388px;
  overflow: hidden;
}

.message-imgs .img-small-wrap div:nth-child(2) {
  width: 213px;
  height: 126px;
  overflow: hidden;
}

.message-imgs .img-big {
  width: 418px;
  height: 714px;
  overflow: hidden;
  flex-shrink: 0;
}

.message-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
   COMPANY
============================= */
.company {
  padding: 100px 0 0;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
  margin-bottom: 200px;
}

.company::before {
  content: 'COMPANY';
  position: absolute;
  top: -0.1em;
  right: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 285px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.company-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 100px;
  position: relative;
  z-index: 1;
}

/* 画像エリア：3枚横並び下揃え */
.company-imgs {
  flex-shrink: 0;
}

.company-imgs div {
  overflow: hidden;
  width: 630px;
  height: 780px;
}

.company-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリア */
.company-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 400px;
  flex-shrink: 0;
}

.company-text h2 {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .1em;
  color: #2360ad;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  margin-bottom: 24px;
}

/* h2の左側に横線（右側配置のため） */
.company-text h2::before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-black);
}

.company-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;
}

/* =============================
   NEWS
============================= */
.news {
  background: var(--color-white);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 200px;
}

.news::before {
  content: 'NEWS';
  position: absolute;
  top: -0.1em;
  left: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 285px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  text-stroke: 1px #cccccc;
  letter-spacing: .02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.news-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 100px;
  position: relative;
  z-index: 1;
  min-height: 250px;
}

/* 左：h2エリア */
.news-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  flex-shrink: 0;
  width: 400px;
}

.news-header h2 {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .1em;
  color: #2360ad;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.news-header h2::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-black);
}

/* 右：ニュースリスト */
.news-list {
  width: 650px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(125px, auto) 1fr;
  align-items: center;
  padding: 20px 0 20px 25px;
  border-bottom: 1px solid var(--color-gray-light);
}

.news-item:first-child {
  border-top: 1px solid var(--color-gray-light);
}

.news-item time {
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--color-black);
}

.news-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
}

/* =============================
   CTA BANNER
============================= */
.cta {
  position: relative;
  padding: 112px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--color-bg);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  opacity: .5;
}

.cta h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--color-black);
  margin-bottom: 32px;
  line-height: 1.4;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 55px;
  padding: 18px 0;
  background: #2360ad;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: .12em;
  font-family: var(--font-gothic);
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.cta-btn:hover {
  background: var(--color-white);
  color: #2360ad;
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--color-white);
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 48px;
}

.footer-logo-img {
  min-width: 296px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--color-navy);
  line-height: 1.5;
}

.footer-logo-text small {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .15em;
  color: var(--color-black);
}

.footer-info {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-black);
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  transition: color .2s;
}

.footer-nav a:hover { color: var(--color-blue-bright); }

.footer-bottom {
  background: #2360ad;
  padding: 25px 0;
  text-align: center;
  width: 100%;
}

.footer-bottom small {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: .1em;
}

/* =============================
   SCROLL ANIMATIONS
============================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* =============================
   RESPONSIVE — TABLET
============================= */
@media (max-width: 1266px) {
  /* タブレット：zoomがかかる範囲ではsection-labelの位置計算がズレるため非表示 */
  .section-label { display: none; }
}

@media (max-width: 1300px) {
  /* タブレット：ナビ崩れ対策 */
  .header-nav-bar-inner { padding: 0 48px 50px; gap: 16px; }
  #main-header nav ul { gap: 16px; }
  .header-tagline-bar-inner { padding: 50px 48px; }

  /* MV */
  .hero { max-width: 100%; min-height: 56vw; width: 100%; padding: 0 48px; }
}

@media (min-width: 768px) and (max-width: 1400px) {
  /* 下層ページヒーロー：テキストを左45%に収める */
  .page-hero { height: 550px !important; overflow: hidden !important; }
  .page-hero-content { position: absolute !important; width: 45% !important; padding: 16px 35px 0 50px!important; }
  .page-hero h1 { font-size: 45px; }
  .page-hero-desc { font-size: 16px; }
}

@media (min-width: 1401px) {
  /* 下層ページヒーロー：1400px超では画面中央を基準にテキストの位置を固定し、画像側だけ広がるようにする */
  .page-hero-content { left: calc(50% - 700px) !important; width: 630px !important; }
  .page-hero-bg-text { left: calc(50% - 700px + 50px) !important; }
  .page-hero-label { left: calc(50% - 700px + 65px) !important; }
}

@media (max-width: 1100px) {
  /* ABOUT */
  .about { padding: 100px 40px; }
  .about-img { width: 380px; height: 300px; }

  /* BUSINESS */
  .about { padding: 100px 0; }
  .about-inner { padding: 0 40px; }
  .business-inner { padding: 0 40px; }
  .biz-card:nth-child(1) { width: 260px; height: 280px; }
  .biz-card:nth-child(2) { width: 280px; height: 500px; }

  /* NETWORK */
  .network-inner { padding: 0 40px; gap: 40px; }
  .network-img-wrap .img-big { width: 300px; height: 600px; }
  .network-img-wrap .img-small-wrap div:nth-child(1) { width: 160px; height: 350px; }
  .network-img-wrap .img-small-wrap div:nth-child(2) { width: 220px; height: 160px; }

  /* MESSAGE */
  .message-inner { padding: 0 40px; gap: 40px; }
  .message-imgs .img-small-wrap { align-items: flex-end; }
  .message-imgs .img-small-wrap div:nth-child(1) { width: 160px; height: 350px; }
  .message-imgs .img-small-wrap div:nth-child(2) { width: 160px; height: 110px; }
  .message-imgs .img-big { width: 340px; height: 680px; }

  /* COMPANY */
  .company-inner { padding: 0 40px; }

  /* NEWS */
  .news-inner { padding: 0 40px; }
}

/* ---- 改行制御ユーティリティ ---- */
.br-pc { display: inline; }  /* PCのみ改行 */
.br-sp { display: none; }    /* SPのみ改行 */

/* 下層ページヒーロー専用：1386px以上でのみ改行（タブレットzoom縮小時の不自然な折り返しを回避） */
.br-hero { display: inline; }
@media (max-width: 1385px) {
  .br-hero { display: none; }
}

/* =============================
   RESPONSIVE — MOBILE
============================= */
@media (max-width: 767px) {

  .br-pc { display: none; }
  .br-sp { display: inline; }

  :root { --header-h: 56px; --sticky-h: 50px; }

  .header-tagline-bar-inner { padding: 10px 24px 8px; }
  .header-nav-bar-inner { padding: 0 24px; }
  #main-header nav { display: none; }
  #main-header.page-header { padding-top: 0; }
  .hamburger { display: flex; }
  .header-tagline-bar { display: none; }
  .hero-tagline-img { max-width: 200px; }
  .logo-img { max-width: 280px; }

  #sticky-header { padding: 12px 24px; }
  #sticky-header nav { display: none; }
  .sticky-hamburger { display: flex; }
  .sticky-logo-img { max-width: 200px; }

  .mobile-nav { display: flex; }
  .section-label { display: none; }

  /* HERO */
  .hero { max-width: 100%; height: auto; width: 100%; padding: 0 24px; }

  /* PC wrapperを非表示、SP wrapperを表示 */
  .hero-pc-wrapper { display: none; }
  .hero-sp-wrapper { display: flex; flex-direction: row; align-items: flex-end; width: 100%; gap: 2vw; }

  /* 左列・中列: 縦に2枚積み */
  .hero-sp-col-left,
  .hero-sp-col-mid  { display: flex; flex-direction: column; gap: 2vw; flex: 345 0 0; }
  .hero-sp-col-right { display: flex; flex-direction: column; justify-content: flex-end; flex: 204 0 0; }

  /* 各短冊のアスペクト比（PC側と同じ比率） */
  .hero-sp-strip-1 { width: 100%; aspect-ratio: 345 / 800; }
  .hero-sp-strip-5 { width: 100%; aspect-ratio: 345 / 800; }
  .hero-sp-strip-3 { width: 100%; aspect-ratio: 345 / 320; }
  .hero-sp-strip-4 { width: 100%; aspect-ratio: 345 / 320; }
  .hero-sp-strip-2 { width: 100%; aspect-ratio: 204 / 545; }

  .hero-sp-col { overflow: hidden; position: relative; }

  /* PAGE HERO（下層ページ共通） */
  .page-hero { height: auto; }
  .page-hero-img { position: relative !important; width: 100% !important; height: 220px !important; right: auto !important; top: auto !important; }
  .page-hero-bg-text { display: none; }
  .page-hero-label { position: relative !important; top: auto !important; left: auto !important; display: block !important; padding: 20px 24px 0 !important; font-size: 20px !important; }
  .page-hero-content { position: relative !important; width: 100% !important; padding: 12px 24px 20px !important; bottom: auto !important; }
  .page-hero h1 { font-size: 32px; }
  .page-hero-desc { font-size: 16px; }
  .breadcrumb { padding: 12px 24px 60px; }

  /* ABOUT */
  .about { padding: 60px 24px; }
  .about-inner { flex-direction: column; align-items: flex-start; gap: 32px; padding: 0; }
  .about-text { order: -1; }
  .about-img { width: 100%; height: 220px; }
  .about-text { padding: 0; width: 100%; }
  .about-text h2::before { display: none; }
  .about-text h2 img { max-width: 450px; }
  .about-text .service { font-size: 16px; }

  /* BUSINESS */
  .business { padding: 60px 24px; margin-bottom: 0; }
  .business-inner { padding: 0; }
  .business-layout { flex-direction: column; gap: 32px; width: 100%; }
  .business-top { width: 100%; justify-content: flex-start; }
  .business-grid { flex-direction: column; gap: 16px; width: 100%; }
  .biz-card:nth-child(1), .biz-card:nth-child(2) { width: 100%; height: 220px; }
  .business-top h2 { font-size: 28px; }
  .business-top h2::after { display: block; width: 20px; flex-shrink: 0; }

  /* NETWORK */
  .network { padding: 60px 0; margin-bottom: 0; }
  .network-inner { flex-direction: column; padding: 0 24px; gap: 32px; }
  .network-text { order: -1; padding: 0; width: 100%; margin-left: 0; justify-content: flex-start; }
  .network-text h2 { font-size: 28px; }
  .network-text h2::before { display: none; }
  .network-text h2::after { content: ''; display: block; flex: 1; height: 1px; background: var(--color-black); }
  .network-img-wrap { order: 1; flex-direction: row; width: 100%; gap: 8px; align-items: flex-end; }
  .network-img-wrap .img-big { width: 60%; height: calc(60vw * 1.5); }
  .network-img-wrap .img-big img { object-fit: cover; object-position: center top; }
  .network-img-wrap .img-small-wrap { width: 40%; gap: 8px; }
  .network-img-wrap .img-small-wrap div:nth-child(1) { width: 100%; height: calc(62vw - 8px); }
  .network-img-wrap .img-small-wrap div:nth-child(2) { width: 100%; height: calc(40vw * 0.7); }

  /* MESSAGE */
  .message { padding: 60px 0; margin-bottom: 0; }
  .message-inner { flex-direction: column; padding: 0 24px; gap: 32px; }
  .message-text { order: -1; padding: 0; width: 100%; margin-right: 0; justify-content: flex-start; }
  .message-text h2 { font-size: 28px; }
  .message-text h2::after { display: block; width: 20px; flex-shrink: 0; }
  .message-imgs { order: 1; flex-direction: row; align-items: flex-end; width: 100%; gap: 8px; }
  .message-imgs .img-small-wrap { width: 40%; display: flex; flex-direction: column; gap: 8px; }
  .message-imgs .img-small-wrap div:nth-child(1) { width: 100%; height: calc(40vw * 1.4); }
  .message-imgs .img-small-wrap div:nth-child(2) { width: 100%; height: calc(40vw * 0.5); }
  .message-imgs .img-big { width: 60%; height: calc(60vw * 1.54); }

  /* COMPANY */
  .company { padding: 60px 0; margin-bottom: 0; }
  .company-inner { flex-direction: column; padding: 0 24px; gap: 32px; }
  .company-text { order: -1; padding: 0; width: 100%; justify-content: flex-start; }
  .company-text h2 { font-size: 28px; }
  .company-text h2::before { display: none; }
  .company-text h2::after { content: ''; display: block; flex: 1; height: 1px; background: var(--color-black); }
  .company-imgs { order: 1; width: 100%; }
  .company-imgs div { width: 100%; height: 100%; }
  .company-imgs img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

  /* NEWS */
  .news { padding: 60px 24px; margin-bottom: 0; }
  .news-inner { flex-direction: column; align-items: stretch; padding: 0; gap: 24px; }
  .news-header { flex-direction: row; width: 100%; }
  .news-header h2 { font-size: 28px; white-space: nowrap; width: 100%; }
  .news-header h2::after { display: block; flex: 1; min-width: 20px; }
  .news-list { width: 100%; }

  /* CTA */
  .cta { padding: 60px 24px; }
  .cta h2 { font-size: 20px; }
  .cta-btn { width: 100%; max-width: 315px; }

  /* FOOTER */
  footer { padding: 48px 24px 0; }
  .footer-top { align-items: center; gap: 28px; }
  .footer-logo-img { min-width: 240px; }
  .footer-info { font-size: 14px; text-align: center; }
  .footer-nav { justify-content: center; gap: 8px 16px; }
  .footer-bottom { margin: 0 -24px; width: calc(100% + 48px); }

  .read-more { display: flex; width: 100%; max-width: 200px; }

  .business::before, .network::before, .message::before,
  .company::before, .news::before { font-size: 90px; left: 0; right: auto; }
}