.main_color {
  color: #0056b3;
}

/* =====================================================
   Base styles
   ===================================================== */
:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --accent: #b51f5f;
  /* 深い赤紫系 */
  --accent-2: #a2a2a2;
  --pill: #f7f7f7;
  --shadow: 0 8px 30px rgba(0, 0, 0, .06);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", "Yu Gothic UI", "YuGothic", "メイリオ", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: .02em;
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  opacity: .8
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(18px, 1.2vw + 12px, 22px);
  letter-spacing: .08em;
}

.section-link,
.link-arrow {
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.link-arrow::after {
  content: " →";
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
}

.header_logo {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header_logo img {
  display: block;
  width: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu {
  --gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.menu a {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.menu a:hover {
  color: #0056b3;
}

.footer-col a:hover {
  color: #00AEEF;
}


.icon-link {
  font-size: 20px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  margin: 5px auto;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    inset: auto 0 0 0;
    padding: 18px 20px 28px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 14px;
    transform: translateY(100%);
    transition: transform .28s ease;
  }

  .menu.is-open {
    transform: translateY(0);
  }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  /* padding: clamp(36px, 8vw, 80px) 0; */
  padding: 140px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(20px, 6vw, 60px);
  max-width: 980px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: clamp(36px, 8vw, 80px) 0;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
  margin: 0 0 8px 0;
}

.hero h1 {
  font-size: clamp(28px, 2.8vw + 16px, 42px);
  line-height: 1.4;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.lead {
  color: #444;
  margin-top: 16px;
  font-size: 36px;
}

.hero-art {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  width: 160px;
}

.ball {
  width: min(56vw, 360px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 35% 35%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 60%),
    radial-gradient(120% 120% at 20% 20%, #d4b3c3, transparent 55%),
    radial-gradient(120% 120% at 80% 30%, #884767, transparent 55%),
    radial-gradient(120% 120% at 50% 80%, #3b3b3b, transparent 40%);
  box-shadow: var(--shadow);
}

/* =====================================================
   Specials
   ===================================================== */
.specials {
  padding: 12px 0 32px;
}

.specials-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.special-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--pill);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: #333;
  transition: transform .15s ease;
}

.special-pill:hover {
  transform: translateY(-1px);
}

/* =====================================================
   News
   ===================================================== */
.news {
  padding: clamp(28px, 6vw, 60px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.news-card__meta {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 8px 0;
}

.news-card__title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 6px 0;
}

.news-card__desc {
  margin: .3em 0 0 0;
  color: #444;
}

.news-card__link {
  display: block;
}

/* =====================================================
   product
   ===================================================== */
.product {
  padding: clamp(28px, 7vw, 70px) 0;
}

.pro-title {
  font-size: clamp(22px, 1.6vw + 18px, 34px);
  letter-spacing: .02em;
  margin: 0;
}

.pro-title span {
  font-size: .62em;
  color: var(--muted);
  font-weight: 600;
  margin-left: 6px;
}

.pro-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
}

.pro-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.pro-btn:hover {
  background: #c0e3f0
}

.pro-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x;
  padding: 12px 2px 2px;
  margin-top: 14px;
}

.pro-rail::-webkit-scrollbar {
  display: none;
}

.pro-rail:focus {
  outline: 2px solid #dde0ff;
  outline-offset: 2px;
}

.pro-item {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
}

.pro-link {
  display: block;
}

.pro-thumb {
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, #f2f2f2, #e9e9e9);
  position: relative;
}

.thumb-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 35% 35%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 60%),
    radial-gradient(120% 120% at 20% 20%, #d4b3c3, transparent 55%),
    radial-gradient(120% 120% at 80% 30%, #884767, transparent 55%),
    radial-gradient(120% 120% at 50% 80%, #3b3b3b, transparent 40%);
}

.pro-item__title {
  font-size: 14px;
  padding: 12px 12px 0;
  margin: 0;
}

.pro-item__meta {
  font-size: 12px;
  color: var(--muted);
  padding: 0 12px 14px;
  margin: 6px 0 0 0;
}

.pro-itemno {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 86, 179, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pro-cta {
  margin-top: 14px;
}

.pro-item_last {
  width: 292px;
}

@media (max-width: 640px) {
  .pro-item_last {
    width: 228px;
  }

  .pro-controls {
    margin-bottom: 20px;
  }
}


/* =====================================================
   First Contents
   ===================================================== */
.first_contents {
  padding: clamp(28px, 5.5vw, 60px) 0;
  border-top: 1px solid var(--line);
}

.first_contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .first_contents-grid {
    grid-template-columns: 1fr;
  }
}

.first_contents-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.first_contents-card:hover {
  border-color: #0056b3;
}

@media (max-width: 640px) {
  .first_contents-card {
    grid-template-columns: 1fr;
  }
}

.first_contents-image {
  border-radius: 14px;
  min-height: 160px;
}

.pickup-image.crystal {
  background: radial-gradient(75% 80% at 35% 20%, #fdfdfd, #e8f1f9 60%), linear-gradient(180deg, #e8eef7, #e6f7ff);
}

.pickup-image.bars {
  background: linear-gradient(90deg, #f5eded 20px, transparent 20px) repeat-x,
    linear-gradient(180deg, #fff9, #f6f6f6);
  background-size: 60px 100%, auto;
}

.first_contents-title {
  margin: 4px 0 6px 0;
  font-size: 18px;
}

.first_contents-desc {
  margin: 0;
  /* color: #444; */
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #333;
  padding: 26px 0 60px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  font-size: 14px;
}

.sns {
  display: flex;
  gap: 16px;
}

.sns a {
  font-size: 14px;
  color: #444;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding-top: 22px;
}

.footer-col h3 {
  font-size: 16px;
  margin: 0 0 6px 0;
  color: #fff;
}



.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #fff;
  font-size: 16px;
}

.footer-col h3 a {
  padding: 0;
  margin: 0 0 6px 0;
}

@media (max-width: 900px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  /* border-top: 1px solid var(--line); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-size: 12px;
}

.legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal a {
  color: #666;
}

/* =====================================================
   Contact
   ===================================================== */
.contact {
  padding: clamp(40px, 8vw, 80px) 0;
  border-top: 1px solid var(--line);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.contact-actions {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  justify-content: center;
}

.btn-primary {
  background: #00AEEF;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-icon {
  font-size: 18px;
}

/* =====================================================
   Accessibility & Motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.first_contents h3 {
  font-size: 30px;
}

.first_contents-desc {
  margin-top: 20px;
}

.gray_sec {
  background: #f8f9fa;
}

.gray_sec_02 {
  background: #cfcfcf;
}

/* =====================================================
   product Images
   ===================================================== */
.pro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* =====================================================
   Image Modal
   ===================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.is-open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-image-container {
  position: relative;
  max-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  opacity: 0.8;
}

.modal-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-nav:disabled:hover {
  transform: translateY(-50%) scale(1);
  background: rgba(0, 0, 0, 0.7);
}

.modal-nav-prev {
  left: 16px;
}

.modal-nav-next {
  right: 16px;
}


@media (max-width: 768px) {
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .modal-nav-prev {
    left: 8px;
  }

  .modal-nav-next {
    right: 8px;
  }
}

.main_btn {
  text-align: center;
}

.main_btn a {
  min-width: 360px;
}

.section-head .section-title {
  font-size: 34px;
}

.contact .section-head {
  flex-direction: column;
  align-items: center;
}

.contact .section-title {
  margin-bottom: 0;
}

.contact .section-desc {
  margin: 0;
}

.section-desc {
  font-size: 21px;
  color: #6b6b6b;
}

.gray_sec_02 .section-desc {
  color: #222222;
}

.accent_span {
  color: #0056b3 !important;
  font-size: 1.1em !important;
  margin: 0 !important;
}

.footer-col h3 {
  text-align: center;
}

.sub_page .hero {
  text-align: center;
}

.sub_page .subtitle {
  font-size: 0.4em;
  color: #00AEEF;
}

.sub_page .hero_icoon img {
  margin: 20px auto 0;
  display: block;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table td {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  vertical-align: top;
}

.company-table td:nth-of-type(1) {
  font-weight: bold;
}

.company-table a {
  color: #004494;
  line-style: solid;
}

.address-link {
  position: relative;
  padding-right: 20px;
}

.address-link::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('/img/othrr_icoon_blue.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sub_page #content {
  border-bottom: 1px solid #111;
}

.main_section {
  padding: clamp(28px, 7vw, 70px) 0;
}

.sub_page .container {
  max-width: 980px;
}

.sub_page h2 {
  font-size: 34px;
}

/* business */
.busi_mainimage img {
  display: block;
  margin: 20px auto 0;
}

.busi_contents {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}

.busi_items {
  width: 48%;
  border: 1px solid #b2b2b2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}

.busi_items:nth-of-type(n+3) {
  margin-top: 20px;
}

.busi_items img {
  display: block;
}

.busi_items p {
  margin-top: 0;
}

.busi_items h3 {
  font-size: 24px;
  color: #0056b3;
  margin-bottom: 10px;
}

.site_create_items h3 {
  margin: 0;
  font-size: 24px;
}

.site_create_items h4 {
  margin: 0;
  padding-left: 21px;
  color: #00AEEF;
}

#site h2 {
  text-align: center;
}

.site_create_items {
  padding: 14px 0;
}

#policy {
  max-width: 670px;
  padding: 10px 26px 20px;
  border: 1px solid #0056b3;
  margin: 0 auto;
}

/* アニメーション */
/* 回転 */
@keyframes rotateOut {
  from {
    transform: rotateY(0deg) rotateX(0deg);
    opacity: 1;
  }

  to {
    transform: rotateY(90deg) rotateX(20deg);
    opacity: 0;
  }
}

@keyframes rotateIn {
  from {
    transform: rotateY(-90deg) rotateX(20deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0deg) rotateX(0deg);
    opacity: 1;
  }
}

.hero-art {
  perspective: 1000px;
  /* 立体感を出す */
}

.logo {
  /* width: 150px; */
  display: block;
  transform-origin: center center;
  /* 回転の軸を中央に */
}

@media (max-width: 640px) {
  .pc_only {
    display: none;
  }
}


@media (min-width: 1024px) {
  .sma_only {
    display: none;
  }
}

/* ヘッダーメニュー */
/* --- 基本レイアウト（スマホ想定） --- */
.m-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.m-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.m-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* ハンバーガーボタン */
.m-burger {
  width: 40px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.m-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  transition: .2s;
}

.m-burger span:nth-child(2) {
  margin: 5px 0;
}

/* 開いたときの×演出 */
.m-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  position: relative;
  top: 5px;
}

.m-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.m-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  position: relative;
  bottom: 3px;
}

/* ドロップダウンメニュー */
.m-nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  display: none;
  /* jQueryのslideToggle用 */
  z-index: 999;
}

.m-nav.is-open {
  display: block !important;
}

.m-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.m-nav li {
  border-bottom: 1px solid #f2f2f2;
}

.m-nav a {
  display: block;
  padding: 14px 16px;
  color: #111;
  text-decoration: none;
}

.m-nav a:active,
.m-nav a:focus,
.m-nav a:hover {
  background: #f8f8f8;
}

/* PCではこのモバイルヘッダーを非表示（PC用は別で用意する想定） */
@media (min-width: 640px) {

  .m-header,
  .m-nav {
    display: none !important;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 50px;
  }
}

/* =====================================================
   Pagination
   ===================================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-btn:hover:not(.pagination-btn-disabled) {
  background: #f8f9fa;
  border-color: #0056b3;
  color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.15);
}

.pagination-btn-disabled {
  background: #f5f5f5;
  color: #999;
  border-color: #e0e0e0;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

.pagination-btn-disabled:hover {
  background: #f5f5f5;
  color: #999;
  border-color: #e0e0e0;
  transform: none;
  box-shadow: none;
}

.pagination-btn-next {
  background: #0056b3;
  color: white;
  border-color: #0056b3;
}

.pagination-btn-next:hover {
  background: #004494;
  border-color: #004494;
  color: white;
}

.pagination-icon {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 640px) {
  .lead {
    font-size: 24px;
  }

  .busi_items {
    width: 100%;
  }

  .busi_items:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .pagination {
    gap: 12px;
    margin-top: 30px;
  }

  .pagination-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* =====================================================
   Fade In Text Animation
   ===================================================== */
.fade-in-text {
  position: relative;
  display: inline-block;
}

.fade-in-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-text span:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in-text span:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in-text span:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in-text span:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in-text span:nth-child(6) {
  animation-delay: 0.6s;
}

.fade-in-text span:nth-child(7) {
  animation-delay: 0.7s;
}

.fade-in-text span:nth-child(8) {
  animation-delay: 0.8s;
}

.fade-in-text span:nth-child(9) {
  animation-delay: 0.9s;
}

.fade-in-text span:nth-child(10) {
  animation-delay: 1.0s;
}

.fade-in-text span:nth-child(11) {
  animation-delay: 1.1s;
}

.fade-in-text span:nth-child(12) {
  animation-delay: 1.2s;
}

.fade-in-text span:nth-child(13) {
  animation-delay: 1.3s;
}

.fade-in-text span:nth-child(14) {
  animation-delay: 1.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   Fade In Sub Text Animation
   ===================================================== */
.fade-in-sub-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInFromBottom 0.8s ease forwards;
  animation-delay: 1.7s;
}

@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   Fade In Image Animation
   ===================================================== */
.fade-in-img {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s ease forwards;
  animation-delay: 2.5s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================================================
   Fade In Contents Animation
   ===================================================== */
.fade-in-contents {
  opacity: 0;
  animation: simpleFadeIn 1s ease forwards;
  animation-delay: 3.5s;
}

@keyframes simpleFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =====================================================
   Page Navigation
   ===================================================== */
.page-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 20px 0;
}

.page-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 80px;
}

.page-nav-btn:hover {
  background: #f8f9fa;
  border-color: #0056b3;
  color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.15);
}

.page-nav-active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: white;
}

.page-nav-active:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (max-width: 640px) {
  .page-navigation {
    gap: 6px;
    margin-bottom: 30px;
    padding: 15px 0;
  }

  .page-nav-btn {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 70px;
  }
}