/* ==========================================================================
   動物輸送ページ スタイル
   ========================================================================== */

:root {
  --animal-primary: #1B4E9A;
  --animal-primary-dark: #193073;
  --animal-primary-light: #51BAF7;
  --animal-accent: #004d9f;
  --animal-text: #333333;
  --animal-text-light: #666666;
  --animal-border: #dddddd;
  --animal-bg: #f7f7f7;
}

.animal-page {
  color: var(--animal-text);
  line-height: 1.8;
}

.animal-page * {
  box-sizing: border-box;
}

.animal-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションタイトル */
.animal-section-title {
  text-align: center;
  margin-bottom: 45px;
}

.animal-section-title .jp {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  color: var(--animal-accent);
  padding-bottom: 15px;
  position: relative;
  letter-spacing: 0.08em;
}

.animal-section-title .jp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--animal-primary);
}

.animal-section-title.light .jp {
  color: #fff;
}

.animal-section-title.light .jp::after {
  background: rgba(255,255,255,0.5);
}

/* ヒーローセクション */
.animal-hero {
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.animal-hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: auto;
  aspect-ratio: 1;
  background: url('../animal/img/img_14.webp') no-repeat center center;
  background-size: contain;
  transform: scaleX(-1);
  opacity: 1;
  pointer-events: none;
}

.animal-hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.animal-hero-content {
  flex: 1;
}

.animal-hero-label {
  display: inline-block;
  background: var(--animal-primary);
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}

.animal-hero h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--animal-text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.animal-hero h2 span {
  color: var(--animal-primary);
}

.animal-hero-text {
  font-size: 15px;
  color: var(--animal-text-light);
  line-height: 2;
  margin-bottom: 30px;
}

.animal-hero-image {
  flex: 0 0 380px;
}

.animal-hero-image img {
  width: 100%;
  height: auto;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 特徴リスト */
.animal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.animal-feature-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 3px solid var(--animal-primary);
  padding: 12px 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 5px);
  min-width: 200px;
}

.animal-feature-item .num {
  font-size: 14px;
  font-weight: bold;
  color: var(--animal-primary);
  margin-right: 10px;
  opacity: 0.6;
}

.animal-feature-item .text {
  font-size: 13px;
  font-weight: bold;
  color: var(--animal-text);
}

/* 輸送体制セクション */
.animal-policy {
  padding: 60px 0;
  background: #fff url('../animal/img/img_14.webp') no-repeat left bottom;
  background-size: 180px auto;
}

.animal-policy-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.animal-policy-images {
  flex: 0 0 400px;
}

.animal-policy-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.animal-policy-images-grid.three-images {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.animal-policy-images-grid.three-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.animal-policy-images-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  height: 240px;
}

.animal-policy-content {
  flex: 1;
}

.animal-policy-content > p {
  font-size: 15px;
  color: var(--animal-text-light);
  line-height: 2;
  margin-bottom: 30px;
  text-align: justify;
}

.animal-policy-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 15px;
  background: var(--animal-bg);
  border-radius: 3px;
}

.animal-policy-item .icon {
  width: 55px;
  height: 55px;
  background: var(--animal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.animal-policy-item .icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.animal-policy-item h4 {
  font-size: 15px;
  font-weight: bold;
  color: var(--animal-text);
}

.animal-policy-item p {
  font-size: 13px;
  color: var(--animal-text-light);
  line-height: 1.7;
  margin-top: 8px;
}

/* 品質保証セクション */
.animal-guarantee {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%),
              url('../animal/img/guarantee-bg.webp') no-repeat center center;
  background-size: cover;
}

.animal-guarantee-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.animal-guarantee-main {
  flex: 1;
}

.animal-guarantee .animal-section-title .jp {
  color: #fff;
}

.animal-guarantee .animal-section-title .jp::after {
  background: rgba(255,255,255,0.5);
}

.animal-guarantee-highlight {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.animal-guarantee-highlight .amount {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.animal-guarantee-highlight .unit {
  font-size: 20px;
  font-weight: bold;
  color: rgba(255,255,255,0.9);
  margin-left: 5px;
  line-height: 1;
  padding-bottom: 4px;
}

.animal-guarantee-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
}

.animal-guarantee-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.animal-guarantee-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 20px 35px;
  text-align: center;
}

.animal-guarantee-badge span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}

/* 選ばれる理由セクション */
.animal-strength {
  padding: 60px 0;
  background: var(--animal-bg);
}

.animal-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.animal-strength-card {
  background: #fff;
  padding: 30px 25px;
  border-top: 3px solid var(--animal-primary);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.animal-strength-card .icon {
  width: 50px;
  height: 50px;
  background: var(--animal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.animal-strength-card .icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.animal-strength-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--animal-text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--animal-border);
}

.animal-strength-card p {
  font-size: 13px;
  color: var(--animal-text-light);
  line-height: 1.9;
}

/* ギャラリーセクション */
.animal-gallery {
  padding: 60px 0;
  background: #fff;
}

.animal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.animal-gallery-list {
  text-align: center;
  font-size: 14px;
  color: var(--animal-text-light);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.animal-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* CTAセクション */
.animal-cta {
  padding: 60px 0;
  background: transparent;
}

.animal-cta-inner {
  text-align: center;
}

.animal-cta h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--animal-text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.animal-cta .sub {
  font-size: 14px;
  color: var(--animal-text-light);
  margin-bottom: 35px;
}

.animal-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.animal-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  padding: 25px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.animal-cta-btn.phone {
  background: #fff;
  color: var(--animal-text);
  border: 2px solid var(--animal-primary);
  box-shadow: 0 4px 15px rgba(27, 78, 154, 0.15);
}

.animal-cta-btn.phone:hover {
  background: var(--animal-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 78, 154, 0.25);
}

.animal-cta-btn.contact {
  background: var(--animal-primary);
  color: #fff;
  border: 2px solid var(--animal-primary);
  box-shadow: 0 4px 15px rgba(27, 78, 154, 0.3);
}

.animal-cta-btn.contact:hover {
  background: var(--animal-primary-dark);
  border-color: var(--animal-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 48, 115, 0.35);
}

.animal-cta-btn .label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.animal-cta-btn .value {
  font-size: 18px;
  font-weight: bold;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
  .animal-hero-inner {
    flex-direction: column;
  }

  .animal-hero-image {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .animal-policy-inner {
    flex-direction: column;
  }

  .animal-policy-images {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .animal-guarantee-inner {
    flex-direction: column;
    text-align: center;
  }

  .animal-guarantee .animal-section-title {
    text-align: center !important;
  }

  .animal-guarantee-badges {
    flex-direction: row;
    justify-content: center;
  }

  .animal-strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .animal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .animal-guarantee-highlight .amount {
    font-size: 36px;
  }

  .animal-guarantee-highlight .unit {
    font-size: 16px;
  }

  .animal-guarantee-badges {
    flex-direction: column;
  }

  .animal-section-title .jp {
    font-size: 22px;
  }

  .animal-hero h2 {
    font-size: 24px;
  }

  .animal-features {
    flex-direction: column;
  }

  .animal-feature-item {
    flex: none;
  }

  .animal-strength-grid {
    grid-template-columns: 1fr;
  }

  .animal-cta h2 {
    font-size: 20px;
  }

  .animal-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .animal-cta-btn {
    width: 100%;
    max-width: 260px;
  }
}
