/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
  color: #2a3552;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eef4fa;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 20px;
}
.header-logo img { height: 38px; width: auto; }

.nav { display: flex; gap: 30px; align-items: center; }
.nav a { font-size: 13px; font-weight: 500; color: #2a3552; transition: color .2s; }
.nav a:hover { color: #4789c5; }

.btn-primary {
  background: #4789c5; color: #fff !important;
  border-radius: 999px; padding: 10px 22px;
  font-weight: 700; font-size: 13px;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #3a78b3; }
.btn-primary .ico { font-size: 14px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #f6fbff 0%, #e9f4fc 60%, #d6eaf6 100%);
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'><path d='M0,30 C240,80 480,0 720,40 C960,80 1200,20 1440,40 L1440,90 L0,90 Z' fill='%23ffffff'/></svg>") no-repeat bottom / 100% 100%;
}
.hero::after {
  content: ''; position: absolute; bottom: 30px; left: 0; right: 0; height: 50px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'><path d='M0,15 C240,40 480,0 720,20 C960,40 1200,10 1440,25 L1440,50 L0,50 Z' fill='%23bdd9eb' opacity='0.6'/></svg>") no-repeat bottom / 100% 100%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  position: relative; z-index: 2;
}
.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 38px; font-weight: 900;
  line-height: 1.5; color: #2a3552;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: linear-gradient(transparent 60%, #ffe599 60%);
  color: #2a3552;
}
.hero-lead { font-size: 13px; color: #4a5774; margin-bottom: 36px; }

.sanpou-list {
  display: flex; gap: 30px; list-style: none;
}
.sanpou-list li {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.sanpou-icon {
  width: 64px; height: 64px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(71, 137, 197, 0.12);
}
.sanpou-icon svg { width: 32px; height: 32px; }
.sanpou-label { font-size: 12px; font-weight: 700; color: #2a3552; }

.hero-image {
  display: flex; justify-content: center; align-items: center;
}
.hero-image img {
  max-width: 100%; max-height: 420px;
  width: auto;
}

/* ===== Section heading共通 ===== */
.section-heading {
  text-align: center; margin-bottom: 8px;
  position: relative; padding: 16px 0;
}
.section-heading::before, .section-heading::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 80px); height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M0,6 Q25,0 50,6 T100,6 T150,6 T200,6' fill='none' stroke='%234789c5' stroke-width='1.5' opacity='0.5'/></svg>") no-repeat center / 100% 100%;
}
.section-heading::before { left: 0; }
.section-heading::after { right: 0; }
.section-heading .heart {
  display: block; font-size: 14px; margin-bottom: 4px;
}
.section-heading h2 {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 28px; font-weight: 900; color: #4789c5;
  padding: 0 24px;
  background: #fff;
  position: relative; z-index: 2;
}
.section-lead { text-align: center; color: #4a5774; margin-bottom: 48px; font-size: 13px; }

/* ===== Services ===== */
.services { padding: 80px 0; background: #fff; }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 2px solid; border-radius: 16px;
  padding: 56px 24px 32px; text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }

.svc-blue { border-color: #d1e6f7; background: linear-gradient(180deg, #f4faff 0%, #fff 100%); }
.svc-green { border-color: #d4ead0; background: linear-gradient(180deg, #f3faec 0%, #fff 100%); }
.svc-orange { border-color: #fad9b5; background: linear-gradient(180deg, #fef5e8 0%, #fff 100%); }

.svc-num {
  position: absolute; top: 24px; left: 24px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900; font-size: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 2px solid;
}
.svc-blue .svc-num { color: #4789c5; border-color: #4789c5; }
.svc-green .svc-num { color: #5fa45a; border-color: #5fa45a; }
.svc-orange .svc-num { color: #e89740; border-color: #e89740; }

.svc-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: #4789c5;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon.green { background: #5fa45a; }
.svc-icon.orange { background: #e89740; }
.svc-icon svg { width: 30px; height: 30px; }

.service-card h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px; margin-bottom: 12px; font-weight: 900;
  color: #2a3552;
}
.svc-sub { font-size: 14px; font-weight: 700; color: #4789c5; }
.svc-desc { font-size: 12px; color: #4a5774; margin-bottom: 20px; min-height: 3em; }

.svc-mall-list { list-style: none; margin: 12px 0 16px; padding: 0; }
.svc-mall-list li { padding: 4px 0; font-size: 11px; color: #6f7d96; display: flex; align-items: center; justify-content: center; gap: 6px; }
.mall-amazon, .mall-rakuten, .mall-yahoo {
  display: inline-block; padding: 4px 10px;
  border-radius: 4px; font-weight: 700; font-size: 11px; color: #fff;
}
.mall-amazon { background: #ff9900; }
.mall-rakuten { background: #bf0000; }
.mall-yahoo { background: #ff0033; }
.svc-mall-list small { font-size: 10px; color: #98a3bf; }

.brand-image-wrap {
  margin: 12px auto;
  display: flex; align-items: center; justify-content: center;
  height: 130px;
}
.brand-image-wrap img { max-height: 130px; max-width: 100%; }

.svc-link {
  display: block; padding: 12px;
  border-radius: 8px; color: #fff !important;
  font-weight: 700; font-size: 13px;
  margin-top: auto;
}
.svc-link.blue { background: #4789c5; }
.svc-link.green { background: #5fa45a; }
.svc-link.orange { background: #e89740; }

/* ===== Shipping ===== */
.shipping { padding: 50px 0; background: #f4faff; }
.shipping-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  align-items: center;
}
.shipping-text { position: relative; }
.shipping-truck {
  position: absolute; top: -40px; right: 0;
  width: 80px; height: 50px;
}
.shipping-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 900; line-height: 1.5;
  color: #2a3552; margin-bottom: 16px;
}
.shipping-text p { font-size: 12px; color: #4a5774; line-height: 2; }
.shipping-flow { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.flow-title {
  text-align: center; font-size: 13px;
  color: #2a3552; margin-bottom: 16px; font-weight: 700;
}
.flow-steps {
  list-style: none; display: flex; justify-content: space-between;
  gap: 4px; padding: 0;
}
.flow-steps li {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; text-align: center; position: relative;
}
.flow-steps li:not(:last-child)::after {
  content: '›'; position: absolute;
  right: -8px; top: 18px; color: #4789c5; font-size: 22px; font-weight: bold;
}
.step-icon {
  width: 50px; height: 50px;
  background: #f0f7fd; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.step-icon svg { width: 24px; height: 24px; }
.flow-steps li > span { font-size: 11px; color: #4a5774; font-weight: 500; line-height: 1.4; }

/* ===== Info Row ===== */
.info-row { padding: 50px 0 0; background: #fff; position: relative; }
.info-grid { display: grid; grid-template-columns: 1.1fr 1.1fr 0.9fr; gap: 16px; margin-bottom: 0; }
.info-card {
  background: #fff; border: 1px solid #e6edf5;
  border-radius: 12px; padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.info-title {
  font-size: 16px; font-weight: 900; color: #2a3552;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.info-title .ico-bg { font-size: 20px; }
.company-table { font-size: 12px; margin-bottom: 16px; }
.company-table dt { font-weight: 700; color: #2a3552; margin-top: 6px; float: left; width: 70px; }
.company-table dd { padding-left: 80px; color: #4a5774; }
.news-list { list-style: none; padding: 0; margin-bottom: 16px; }
.news-list li {
  display: flex; gap: 12px; padding: 8px 0;
  border-bottom: 1px dashed #e6edf5; font-size: 12px;
}
.news-list time { color: #4789c5; font-weight: 700; min-width: 75px; font-size: 12px; }
.news-list span { color: #4a5774; }

.contact-card {
  background: linear-gradient(135deg, #f5fafe 0%, #e6f2fb 100%);
  text-align: center; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding: 32px 24px;
}
.contact-lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 17px; font-weight: 900;
  color: #2a3552; line-height: 1.5; margin-bottom: 16px;
}
.contact-btn { font-size: 13px; }
.contact-mascot {
  position: absolute; bottom: -8px; right: -10px;
  width: 90px; height: auto;
}

/* 名古屋シルエット背景 */
.nagoya-bg {
  max-width: 1100px; margin: 30px auto 0;
  padding: 0 24px;
}
.nagoya-bg img { width: 100%; height: auto; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, #e6f2fb 0%, #d1e6f7 100%);
  padding: 36px 0 28px; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo img { height: 50px; width: auto; }
.footer-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 12px; color: #2a3552; }
.footer-nav .sep { color: #98a3bf; font-size: 11px; }
.copyright { font-size: 11px; color: #6f7d96; margin-top: 8px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { padding: 40px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; text-align: center; }
  .hero-lead { text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 280px; }
  .sanpou-list { justify-content: center; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .shipping-inner { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
  .flow-steps { flex-wrap: wrap; }
  .flow-steps li { flex: 0 0 calc(33.33% - 8px); margin-bottom: 12px; }
  .flow-steps li::after { display: none; }
  .section-heading::before, .section-heading::after { display: none; }
  .nagoya-bubble { font-size: 10px; padding: 4px 10px; }
}
