@charset "utf-8";

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Pretendard", "Pretendard Variable", lato, "Noto Sans KR", "맑은 고딕", "Malgun Gothic", AppleSDGothicNeo, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.5;
  word-break: keep-all;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss06";
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: top; border: 0; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

:root {
  --color-primary: #245fc3;
  --color-accent: #c45a2a;
  --color-border: #e5e5e5;
  --color-muted: #888;
  --max-width: 1200px;
  --header-h: 180px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Header (ysca white tone) ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.header-top__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #666;
}
.header-top__inner a:hover { color: var(--color-primary); }
.header-top__tel {
  margin-right: auto;
  font-weight: 600;
  color: var(--color-primary);
}

.header-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 35px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.header-main .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-main .logo img {
  height: 56px;
  width: auto;
  display: block;
}
.header-main .logo:hover { opacity: 0.85; }

/* Header CTA buttons (e-book / order) */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
.header-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.header-cta__text em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.header-cta__text strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-cta--ebook {
  background: linear-gradient(135deg, #2f7ed8, #1a5fb4);
  color: #fff;
  box-shadow: 0 3px 10px rgba(47, 126, 216, 0.28);
}
.header-cta--order {
  background: linear-gradient(135deg, #ff6b35, #e02020);
  color: #fff;
  box-shadow: 0 3px 10px rgba(224, 32, 32, 0.28);
}

.header-nav {
  border-top: 1px solid #f5f5f5;
}
.header-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
}
.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.header-nav li a {
  display: inline-block;
  padding: 16px 20px;
  font-family: "Pretendard", lato, "Noto Sans KR", "맑은 고딕", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(34, 34, 34);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 3px solid transparent;
  letter-spacing: -0.01em;
}
@media (max-width: 1200px) {
  .header-nav li a { padding: 16px 10px; font-size: 16px; }
}
.header-nav li a:hover,
.header-nav li a.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
}

/* ===== Main layout ===== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ===== Swiper main banner (600x430 centered card) ===== */
.main-visual {
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 36px 16px 28px;
}
.main-visual__inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.main-visual .main-visual-swiper {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 8px 0;
}
.main-visual .swiper-slide {
  position: relative;
  aspect-ratio: 600 / 430;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  
}
.main-visual .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.main-visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slide controls — < 1 / 3 > 카드 우하단 오버레이 */
.main-visual__controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: "Pretendard", lato, "Noto Sans KR", sans-serif;
  font-size: 13px;
  color: #222;
}
.main-visual .swiper-pagination {
  position: static;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  line-height: 1;
  padding: 0 4px;
  min-width: 50px;
  justify-content: center;
}
.main-visual .swiper-pagination-current {
  color: #222;
  font-weight: 700;
}
.main-visual .swiper-pagination-total {
  color: #888;
  font-weight: 500;
}
.main-visual__divider {
  color: #ccc;
  margin: 0 2px;
  font-weight: 400;
}

/* prev/next 작은 화살표 버튼 (카운터 양옆) */
.main-visual .swiper-button-prev,
.main-visual .swiper-button-next {
  position: static;
  margin: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  color: #555;
  box-shadow: none;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
}
.main-visual .swiper-button-prev:hover,
.main-visual .swiper-button-next:hover {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.04);
}
.main-visual .swiper-button-prev::after,
.main-visual .swiper-button-next::after {
  display: none;
}
.main-visual .swiper-button-prev.swiper-button-disabled,
.main-visual .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .main-visual__inner { max-width: 100%; padding: 0 12px; }
}
@media (max-width: 768px) {
  .main-visual { padding: 24px 12px 20px; }
  .main-visual__inner { max-width: 100%; padding: 0; }
  .main-visual__controls {
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .main-visual .swiper-button-prev,
  .main-visual .swiper-button-next {
    width: 22px;
    height: 22px;
  }
}

/* ===== 7개 원형 카테고리 빠른 링크 + 고객센터 카드 ===== */
.quick-cats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 8px;
}
.quick-cats ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr) minmax(170px, auto);
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.qcat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  text-align: center;
  text-decoration: none;
  color: #444;
  transition: transform 0.2s ease;
}
.qcat:hover { transform: translateY(-3px); }
.qcat__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.qcat__icon svg {
  width: 30px;
  height: 30px;
}
.qcat:hover .qcat__icon {
  background: #dcdcdc;
  color: #222;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.qcat--special:hover .qcat__icon { color: #d4a420; }
.qcat--thanks:hover  .qcat__icon { color: #d04680; }
.qcat--word:hover    .qcat__icon { color: #1a6fd4; }
.qcat--art:hover     .qcat__icon { color: #7b3fd6; }
.qcat--read:hover    .qcat__icon { color: #2eaa56; }
.qcat--catalog:hover .qcat__icon { color: #ff6b35; }
.qcat--ebook:hover   .qcat__icon { color: #e02020; }
.qcat__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: #444;
  text-align: center;
  word-break: keep-all;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 고객센터 카드 — 아이콘 그리드 우측, 둥근 박스 형태 */
.quick-cats__contact-wrap {
  align-self: stretch;
  display: flex;
  margin-left: 8px;
}
.qcontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1.3;
  padding: 18px 35px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.qcontact:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.qcontact__label {
  font-size: 13px;
  font-weight: 500;
  color: #b0b0b0;
  letter-spacing: 0.02em;
}
.qcontact__tel {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.15s;
}
.qcontact__tel:hover { color: var(--color-primary); }
.qcontact__fax {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

@media (max-width: 640px) {
  .quick-cats ul { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .qcat__icon { width: 64px; height: 64px; }
  .qcat__icon svg { width: 28px; height: 28px; }
  .qcat__label { font-size: 11px; min-height: 2.7em; }
  .quick-cats__contact-wrap {
    grid-column: 1 / -1;
    margin-left: 0;
    margin-top: 12px;
  }
  .qcontact {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
    padding: 14px 18px;
    text-align: center;
  }
  .qcontact__tel { font-size: 20px; }
}

/* ===== E-book bar ===== */
.ebook-bar {
  margin: 20px 0;
  padding: 14px 24px;
  background: #fdf6f0;
  border: 1px solid #e9c5a8;
  border-radius: 8px;
  text-align: center;
}
.ebook-bar a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #4a4a4a;
  font-weight: 600;
}
.ebook-bar a:hover { color: var(--color-primary); }
.ebook-bar img { height: 48px; border-radius: 4px; }

/* ===== Recommended slider (페이지 전체 폭 + 좌측 고정 타이틀) ===== */
.reco-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 60px;
  background: #f1f1f1;
  padding: 70px 0;
  overflow: hidden;
  box-sizing: border-box;
}
.reco-section__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: 100%;
}
/* 타이틀 + 컨트롤을 한 묶음으로 가운데에 인라인 배치 */
.reco-section__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  margin-bottom: 28px;
}
.reco-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: center;
}
.reco-section__title br { display: none; }
.reco-section__controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #555;
}
.reco-section__controls .swiper-button-prev,
.reco-section__controls .swiper-button-next {
  position: static;
  margin: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #444;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.reco-section__controls .swiper-button-prev:hover,
.reco-section__controls .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
}
.reco-section__controls .swiper-button-prev::after,
.reco-section__controls .swiper-button-next::after { display: none; }
.reco-section__controls .reco-pagination {
  position: static;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  padding: 0 6px;
  min-width: 48px;
  justify-content: center;
}
.reco-section__controls .swiper-pagination-current { color: #111; font-weight: 700; }
.reco-section__controls .swiper-pagination-total { color: #aaa; font-weight: 500; }
.reco-section__controls .reco-divider { color: #ccc; margin: 0 2px; }

/* Slider 영역 — 좌·우 모두 브라우저 화면 끝까지 풀폭 */
.reco-section__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 호버 시 카드 위쪽이 lift 되어도 잘리지 않도록 위/아래로 영역을 확장 */
  padding-top: 18px;
  padding-bottom: 24px;
  margin-top: -18px;
  margin-bottom: -24px;
  /* 좌측 시작점부터 슬라이드 — 왼쪽 여백 0 */
  padding-left: 0;
  padding-right: 0;
}
.reco-swiper {
  width: 100%;
  overflow: visible;
}
.reco-swiper .swiper-wrapper { align-items: stretch; }

.reco-item {
  width: 170px !important;
  text-align: center;
}
.reco-item a {
  display: block;
  text-decoration: none;
  color: #444;
}
.reco-item__thumb {
  width: 100%;
  /* 추천 캘린더 이미지가 매우 긴 세로형(ratio ~0.5)이므로 컨테이너도 길게
     3/4 → 3/4.8 (20% 더 김) + padding 축소로 이미지가 약 20% 커 보임 */
  aspect-ratio: 3 / 4.8;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.reco-item__thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.reco-item:hover .reco-item__thumb {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  border-color: var(--color-primary);
}
.reco-item__name {
  margin-top: 10px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .reco-item { width: 150px !important; }
}
@media (max-width: 768px) {
  .reco-section {
    padding: 32px 0 36px;
    margin-top: 24px;
    margin-bottom: 36px;
  }
  .reco-section__head {
    padding: 0 16px;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .reco-section__title { font-size: 20px; }
  .reco-item { width: 140px !important; }
  .reco-item__name { font-size: 12px; }
}

/* ===== Category product sections ===== */
.product-section {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  padding: 8px 0 40px;
}
.product-section__head {
  position: relative;
  text-align: center;
  margin: 28px 0 32px;
  padding: 12px 0;
}

/* 통합교단특별기획·원색숫자판·스프링·탁상용 = 풀폭 그레이 + 살짝 도트 패턴
   .reco-section 이 1번째 <section> 이므로 .product-section 기준 1·3·5·7번째가
   nth-of-type(odd) 로 매칭됨 → 통합교단/원색숫자판/스프링/탁상용 */
.product-section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  inset: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #f6f6f6;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 18px 18px;
  z-index: -1;
  pointer-events: none;
}
.product-section__head h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.product-section__head .more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}
.product-section__head .more:hover { color: var(--color-primary); }

@media (max-width: 640px) {
  .product-section__head { margin: 36px 0 22px; }
  .product-section__head h2 { font-size: 1.4rem; }
  .product-section__head .more {
    position: static;
    display: inline-block;
    transform: none;
    margin-top: 8px;
    font-size: 13px;
  }
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-grid > li,
.product-grid > div {
  width: calc((100% - 80px) / 5);
  flex: 0 0 calc((100% - 80px) / 5);
}
.product-card {
  position: relative;
  cursor: pointer;
}
.product-card a { display: block; }
.product-card .thumb {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  /* 기존 3/4 → 3/4.4 로 약 10% 더 길어진 세로 비율 */
  aspect-ratio: 3 / 4.4;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 캘린더 이미지가 더 넓게 보이도록 안쪽 여백 축소 */
  padding: 4px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
/* 탁상용 카렌다는 landscape (가로형) 이미지 → 썸네일 높이 축소 */
#sec-desk .product-card .thumb {
  aspect-ratio: 5 / 4;
}
.product-card .thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-card .badge-soldout {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e02020;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  z-index: 2;
  line-height: 1.2;
}
.product-card .info {
  padding: 12px 8px 6px;
  text-align: left;
}
.product-card .name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  min-height: auto;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .code {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  min-height: 28px;
  overflow: hidden;
}
.product-card .discount-rate {
  display: inline-flex;
  align-items: baseline;
  color: #e02020;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.product-card .discount-rate em {
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -1px;
}
.product-card .discount-rate .unit {
  font-size: 13px;
  font-weight: 700;
  margin-left: 1px;
}
.product-card .price-original {
  font-size: 13px;
  color: #c8c8c8;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .price-original del {
  text-decoration: line-through;
  text-decoration-color: #ccc;
}
.product-card .price-original .won {
  font-size: 11px;
}
.product-card .price-sale {
  font-size: 18px;
  font-weight: 800;
  color: #1a6fd4;
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.product-card .price-sale small {
  font-size: 13px;
  font-weight: 700;
}
.product-card:hover .thumb {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  border-color: var(--color-primary);
}

@media (max-width: 1024px) {
  .product-card .discount-rate em { font-size: 20px; }
  .product-card .discount-rate .unit { font-size: 12px; }
  .product-card .price-sale { font-size: 16px; }
  .product-card .price-sale small { font-size: 12px; }
  .product-card .price-original { font-size: 12px; }
  .product-card .price-row { gap: 4px; }
}

@media (max-width: 768px) {
  .product-card .discount-rate em { font-size: 22px; }
  .product-card .price-sale { font-size: 18px; }
}

/* ===== Footer info bar (above footer) ===== */
.footer-info {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 40px;
}
.footer-info__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 200px;
}
.footer-info__col {
  padding: 28px 32px;
  border-right: 1px solid #e8e8e8;
}
.footer-info__col:last-child {
  border-right: 0;
  padding: 0;
}
.footer-info__col h3 {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  margin-bottom: 14px;
}
.footer-info__cs .tel-list {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.footer-info__cs .tel-list a {
  color: inherit;
}
.footer-info__cs .tel-list a:hover {
  color: var(--color-primary);
}
.footer-info__cs .hours-title {
  margin-top: 18px;
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
.footer-info__cs .hours {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.footer-info__cs .note {
  margin-top: 10px;
  font-size: 12px;
  color: #aaa;
}
.footer-info__bank .bank-item {
  margin-bottom: 12px;
}
.footer-info__bank .bank-item:last-of-type {
  margin-bottom: 0;
}
.footer-info__bank .bank-name {
  font-size: 13px;
  color: #999;
  margin-bottom: 4px;
}
.footer-info__bank .bank-num {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.45;
  word-break: break-all;
}
.footer-info__bank .bank-msg {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
}
.footer-info__order {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 200px;
  text-decoration: none;
}
.footer-info__order img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.footer-info__order:hover img {
  transform: scale(1.04);
}
.footer-info__order .order-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.35);
  font-size: 42px;
  font-weight: 800;
  color: #e02020;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: background 0.25s;
}
.footer-info__order:hover .order-label {
  background: rgba(255, 255, 255, 0.5);
}

/* ===== Footer ===== */
.site-footer {
  background: #f7f7f7;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}
.footer-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.footer-nav ul {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.footer-nav a:hover { color: var(--color-primary); }
.footer-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 40px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.footer-body strong { color: #444; }
.footer-body .brand {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

/* Float quick menu */
.float-menu {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.float-menu a {
  display: block;
  width: 72px;
  padding: 12px 8px;
  font-size: 11px;
  text-align: center;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  color: #444;
}
.float-menu a:hover { background: var(--color-primary); color: #fff; }
.float-menu a.top-link { background: #333; color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .product-grid > li,
  .product-grid > div {
    width: calc((100% - 60px) / 4);
    flex: 0 0 calc((100% - 60px) / 4);
  }
}
@media (max-width: 1024px) {
  .header-cta__text em { display: none; }
  .header-cta__text strong { font-size: 13px; }
  .header-cta { padding: 9px 14px; gap: 8px; }
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .header-main {
    position: relative;
    padding: 14px 12px 12px 56px;
    justify-content: flex-end;
    gap: 8px;
  }
  .header-main .logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-right: auto;
  }
  .header-main .logo img { height: 40px; }
  .header-cta__text { display: none; }
  .header-cta {
    padding: 9px 10px;
    gap: 0;
  }
  .header-cta__icon svg { width: 20px; height: 20px; }
  .header-nav { display: none; }
  .header-nav.is-open {
    display: block;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .header-nav.is-open ul { flex-direction: column; }
  .header-nav.is-open li a { border-bottom: 1px solid #f0f0f0; text-align: left; }
  .main-visual .slide-caption h2 { font-size: 1.2rem; }
  .product-grid > li,
  .product-grid > div {
    width: calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .float-menu { display: none; }
  .footer-info__inner {
    grid-template-columns: 1fr;
  }
  .footer-info__col {
    border-right: 0;
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 20px;
  }
  .footer-info__col:last-child {
    border-bottom: 0;
    min-height: 160px;
  }
  .footer-info__cs .tel-list { font-size: 18px; }
  .footer-info__order .order-label { font-size: 32px; }
}
@media (max-width: 480px) {
  .product-grid > li,
  .product-grid > div {
    width: 100%;
    flex: 0 0 100%;
  }
}
