/* Harima Shipping Service - TOP */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600&display=swap");
:root {
  --navy: #075f9b;
  --blue: #1596d2;
  --light-blue: #e9f7fd;
  --ink: #263746;
  --muted: #60707d;
  --line: #dbe3e8;
  --white: #fff;
  --bg: #f3f9fc;
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: var(--max);
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo.logo-image {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}
.logo.logo-image img {
  width: clamp(360px, 40vw, 660px);
  height: auto;
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}
.global-nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  align-items: center;
}
.global-nav a {
  position: relative;
  padding: 8px 0;
}
.global-nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}
.global-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  transition: 0.25s;
}
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  height: 760px;
  max-height: 900px;
  overflow: hidden;
  background: #0b5f94;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1s ease,
    transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 35, 62, 0.78),
    rgba(4, 79, 127, 0.45) 48%,
    rgba(0, 0, 0, 0.08)
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: auto;
  padding: 150px 24px 100px;
  color: #fff;
}
.hero-label,
.section-label {
  font-family:
    "コーポレート・ロゴ ver3 Medium", "Corporate Logo Medium  ver3",
    "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.19em;
}
.hero-label {
  margin: 0 0 18px;
  color: #c9f0ff;
  font-size: 13px;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 5.7vw, 72px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.06em;
}
.hero-title-keep {
  white-space: nowrap;
}
.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 20px);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: 0.25s;
}
.button-primary {
  background: var(--blue);
  color: #fff;
}
.button-primary:hover {
  background: #087fc1;
  transform: translateY(-2px);
}
.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}
.button-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}
.button-outline:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.hero-pagination {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 48px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 38px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}
.hero-dot.is-active {
  background: #fff;
}
.scroll-guide {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.scroll-guide i {
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.7);
}
.section {
  padding: 96px 24px;
}
.section-inner {
  max-width: var(--max);
  margin: auto;
}
.section-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
}
.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.35;
}
.intro-section {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.intro-text {
  margin: 0;
  font-size: 18px;
  line-height: 2;
}
.business-section {
  background: var(--bg);
}
.business-section > .section-inner > h2 {
  margin-bottom: 44px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.business-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  min-height: 260px;
}
.business-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.business-card h3 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: 22px;
}
.business-card p {
  margin: 0;
  color: var(--muted);
}
.history-section {
  background: linear-gradient(125deg, #075f9b, #087fc1);
  color: #fff;
}
.history-section .section-label {
  color: #c9f0ff;
}
.history-section h2 {
  color: #fff;
}
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.history-copy p {
  margin: 0;
  font-size: 17px;
}
.history-copy .button {
  margin-top: 28px;
}
.recruit-section {
  background: #fff;
}
.recruit-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 430px;
  background: var(--navy);
  color: #fff;
}
.contact-photo {
  min-height: 430px;
  background: url("../Images/company-hero.jpg") center 48% / cover no-repeat;
}
.contact-copy {
  display: flex;
  align-items: center;
  padding: 64px clamp(36px, 6vw, 92px);
}
.contact-copy .section-label {
  color: #c9f0ff;
}
.contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.35;
}
.contact-lead {
  margin: 18px 0 26px;
  max-width: 480px;
}
.contact-details {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.contact-details strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.contact-details p {
  margin: 3px 0;
}
.contact-tel {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.button-contact {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}
.button-contact:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-footer {
  padding: 46px 24px;
  background: #064f82;
  color: rgba(255, 255, 255, 0.78);
}
.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner strong {
  color: #fff;
}
.footer-inner p {
  margin: 4px 0 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1080px) and (min-width: 821px) {
  .global-nav {
    gap: 12px;
    font-size: 12px;
  }
  .logo.logo-image img {
    width: clamp(300px, 29vw, 405px);
  }
}
@media (max-width: 900px) {
  .history-inner,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .recruit-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-photo {
    min-height: 340px;
  }
  .contact-copy {
    padding: 54px 28px;
  }
}
@media (max-width: 820px) {
  .header-inner {
    padding: 13px 18px;
  }
  .logo.logo-image img {
    width: min(275px, 72vw);
    max-height: 48px;
  }
  .menu-button {
    display: block;
    position: relative;
    z-index: 52;
  }
  .global-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 22px 22px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    white-space: normal;
  }
  .nav-open .global-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .global-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .global-nav a[aria-current="page"]::after {
    display: none;
  }
  .nav-open .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-open .menu-button span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    min-height: 650px;
    height: calc(100vh - 68px);
  }
  .hero-content {
    padding: 115px 20px 100px;
  }
  .hero-pagination {
    bottom: 28px;
  }
  .scroll-guide {
    display: none;
  }
  .section {
    padding: 68px 20px;
  }
  .intro-text {
    font-size: 16px;
  }
  .contact-photo {
    min-height: 280px;
  }
  .contact-copy {
    padding: 46px 20px;
  }
  .footer-inner {
    display: block;
  }
}
