/*
Theme Name: Arkhe Child
Template: arkhe
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Zen+Kaku+Gothic+New:wght@700&family=Alata&display=swap');

:root {
  --azuma-blue: #003568;
  --accent: #d5d5d5;
}

/* ===== BASE ===== */
.azuma-home * { box-sizing: border-box; }
.azuma-home { font-family: 'Noto Sans JP', sans-serif; color: var(--azuma-blue); margin: 0; padding: 0; }
.azuma-home a { text-decoration: none; }
.azuma-home img { display: block; }
#azuma-page { display: flex; flex-direction: column; }

/* ===== HEADER ===== */
.azuma-header {
  background: var(--azuma-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.azuma-header__logo img { height: 60px; width: auto; }
.azuma-header__nav { display: flex; align-items: center; gap: 30px; }
.azuma-header__nav a { color: white; font-size: 16px; line-height: 40px; white-space: nowrap; }
.azuma-header__nav a:hover { opacity: 0.8; }
.azuma-header__divider { width: 1px; height: 38px; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.azuma-header__hamburger {
  background: none; border: none; cursor: pointer; padding: 5px; display: flex; flex-direction: column; gap: 5px;
}
.azuma-header__hamburger span {
  display: block; width: 25px; height: 2px; background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.azuma-header__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.azuma-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.azuma-header__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.azuma-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}
.azuma-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.azuma-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background: #b0bec5;
}
.azuma-hero__slide.is-active { opacity: 1; }
.azuma-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.azuma-hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.azuma-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.azuma-hero__dot.is-active { background: white; }
.azuma-hero__news {
  position: absolute;
  right: 100px;
  bottom: 50px;
  z-index: 10;
  overflow: hidden;
  background: white;
  border-radius: 10px;
  padding: 15px 15px 10px;
  width: 150px;
  color: var(--azuma-blue);
}
.azuma-hero__news-label { font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 5px; }
.azuma-hero__news-thumb { width: 120px; height: 74px; object-fit: cover; margin: 0 auto 5px; }
.azuma-hero__news-title { font-size: 14px; line-height: 1.5; color: var(--azuma-blue); }

/* ===== SECTION HEADING ===== */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.section-icon {
  width: 97px;
  height: 38px;
  margin-bottom: 8px;
  object-fit: contain;
}
.section-icon--white {
  filter: brightness(0) invert(1);
}
.section-heading__jp { font-size: 16px; line-height: 40px; }
.section-heading__en { font-size: 40px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; line-height: 1.2; }

/* ===== PICKUP SECTION ===== */
.azuma-pickup {
  background: white;
  padding: 100px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 1;
}
.pickup-grid { display: flex; gap: 50px; justify-content: center; flex-wrap: wrap; }
.pickup-card {
  width: 300px;
  background: white;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  color: var(--azuma-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block;
}
.pickup-card__image { width: 300px; height: 200px; object-fit: cover; }
.pickup-card__image--placeholder { width: 300px; height: 200px; background: #d9d9d9; }
.pickup-card__body { padding: 15px 22px 20px; min-height: 112px; }
.pickup-card__title { font-size: 16px; font-weight: 700; line-height: 1.5; }
.pickup-more {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--azuma-blue);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.pickup-more__arrow { font-size: 18px; }

/* ===== PRODUCT SECTION ===== */
.azuma-below-pickup {
  position: relative;
  z-index: 2;
}
.azuma-product-wrap {}
.azuma-product-inner {
  background: var(--azuma-blue);
  clip-path: polygon(0 80px, 50% 0, 100% 80px, 100% 100%, 0 100%);
  padding: 120px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.azuma-product-inner .section-heading { color: white; }
.azuma-product-inner .section-icon { color: white; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 0 50px;
}
.product-card {
  display: block;
  color: white;
}
.product-card__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.06);
}
.product-card__image--placeholder {
  width: 100%;
  height: 100%;
  background: #55729a;
}
.product-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5px 0;
}
.product-card__en { font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1.4; }
.product-card__jp { font-size: 14px; line-height: 1.5; }
.product-card__arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.product-card:hover .product-card__arrow {
  background: white;
  color: var(--azuma-blue);
}

/* ===== ABOUT SECTION ===== */
.azuma-about {
  background: white;
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
}

/* 装飾の四角 */
.azuma-about__deco {
  position: absolute;
  background: var(--accent);
}
.azuma-about__deco--sq-l-big  { width: 200px; height: 200px; bottom: 60px;  left: 60px; }
.azuma-about__deco--sq-l-sm   { width: 60px;  height: 60px;  bottom: 20px;  left: 20px; opacity: 0.5; }
.azuma-about__deco--sq-l-xs   { width: 25px;  height: 25px;  bottom: 0;     left: 0;    opacity: 0.4; }
.azuma-about__deco--sq-r-big  { width: 200px; height: 200px; top: 60px;    right: 50px; }
.azuma-about__deco--sq-r-sm   { width: 60px;  height: 60px;  top: 300px;   right: 20px; opacity: 0.5; }
.azuma-about__deco--sq-r-xs   { width: 25px;  height: 25px;  top: 380px;   right: 0;    opacity: 0.4; }
.azuma-about__inner {
  display: grid;
  grid-template-columns: 1fr 415px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1680px;
  margin: 0 auto;
  min-height: 500px;
  position: relative;
}
.azuma-about__image-left {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 50px;
  position: relative;
}
.azuma-about__photo-left {
  width: 380px;
  height: 400px;
  object-fit: cover;
}
.azuma-about__photo-left--placeholder { width: 380px; height: 400px; background: #d9d9d9; }
.azuma-about__image-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 200px;
  position: relative;
}
.azuma-about__photo-right {
  width: 380px;
  height: 400px;
  object-fit: cover;
}
.azuma-about__photo-right--placeholder { width: 380px; height: 400px; background: #d9d9d9; }
.azuma-about__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 110px;
}
.azuma-about__copy-wrap { display: flex; flex-direction: column; gap: 0; }
.azuma-about__copy-line {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 51.53px;
  font-weight: 700;
  line-height: 65.5px;
  color: white;
  background: var(--azuma-blue);
  display: inline-block;
  width: fit-content;
  padding: 0 6px;
  margin-bottom: 5px;
}
.azuma-about__desc { font-size: 16px; line-height: 40px; }
.azuma-about__desc strong { font-weight: 700; }
.azuma-about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--azuma-blue);
  border-radius: 70px;
  padding: 0 30px;
  height: 40px;
  color: var(--azuma-blue);
  font-size: 16px;
  width: 353px;
  background: white;
  white-space: nowrap;
}
.azuma-about__btn:hover { background: var(--azuma-blue); color: white; }

/* ===== PARTNER SECTION ===== */
.azuma-partner {
  background: white;
  padding: 100px 120px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.partner-desc { font-size: 16px; line-height: 40px; text-align: center; max-width: 680px; }
.partner-cards { display: flex; gap: 80px; align-items: center; flex-wrap: wrap; justify-content: center; }
.partner-card {
  width: 300px;
  height: 266px;
  border: 3px solid var(--azuma-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azuma-blue);
  position: relative;
  overflow: hidden;
}
.partner-card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px;
  transition: opacity 0.3s ease;
}
.partner-card__label { font-size: 16px; line-height: 40px; text-align: center; white-space: nowrap; }
.partner-card__icon { height: 110px; display: flex; align-items: center; justify-content: center; }
.partner-card__icon img { max-height: 110px; width: auto; }
.partner-card__back {
  position: absolute;
  inset: 0;
  background: var(--azuma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.partner-card__back p {
  color: white;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
.partner-card__cta { color: #c8a84b; }
.partner-card:hover .partner-card__front { opacity: 0; }
.partner-card:hover .partner-card__back { opacity: 1; }
.partner-cta {
  background: var(--azuma-blue);
  color: white;
  font-size: 16px;
  line-height: 40px;
  padding: 0 140px;
  height: 40px;
  border-radius: 30px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.partner-cta:hover { opacity: 0.85; }
.partner-inquiry { display: none; }

/* ===== BLOG SECTION ===== */
.azuma-blog {
  background: white;
  padding: 100px 120px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
.blog-list { display: flex; flex-direction: column; gap: 64px; width: 100%; max-width: 1200px; }
.blog-entry { display: flex; gap: 50px; align-items: center; color: var(--azuma-blue); }
.blog-entry:hover { opacity: 0.8; }
.blog-entry__image { width: 300px; height: 200px; object-fit: cover; flex-shrink: 0; }
.blog-entry__image--placeholder { width: 300px; height: 200px; background: #d9d9d9; flex-shrink: 0; }
.blog-entry__body { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.blog-entry__title { font-size: 16px; font-weight: 700; line-height: 1.5; }
.blog-entry__divider { height: 1px; background: var(--azuma-blue); width: 100%; }
.blog-entry__excerpt { font-size: 16px; line-height: 25px; }
.section-more-btn {
  background: var(--azuma-blue);
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 40px;
  border-radius: 30px;
  width: 460px;
  gap: 20px;
}
.section-more-btn:hover { opacity: 0.85; }
.section-more-btn span:first-child { flex: 1; text-align: center; }
.section-more-btn__arrow { font-size: 16px; }

/* ===== NEWS SECTION ===== */
.azuma-news {
  background: white;
  padding: 100px 120px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.news-list { display: flex; flex-direction: column; gap: 50px; width: 100%; max-width: 850px; }
.news-entry { display: flex; gap: 50px; align-items: center; color: var(--azuma-blue); }
.news-entry:hover { opacity: 0.8; }
.news-entry__image { width: 300px; height: 200px; object-fit: cover; flex-shrink: 0; }
.news-entry__image--placeholder { width: 300px; height: 200px; background: #d9d9d9; flex-shrink: 0; }
.news-entry__body { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.news-entry__date { font-size: 16px; font-weight: 700; line-height: 1.5; }
.news-entry__title { font-size: 16px; font-weight: 700; line-height: 1.5; }
.news-entry__divider { height: 1px; background: var(--azuma-blue); }
.news-entry__excerpt { font-size: 16px; line-height: 25px; }

/* ===== SNS SECTION ===== */
.azuma-sns {
  background: var(--azuma-blue);
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.azuma-sns .section-heading { color: white; }
.azuma-sns .section-icon { color: white; }
.sns-icons { display: flex; gap: 58px; align-items: center; flex-wrap: wrap; justify-content: center; }
.sns-icon { width: 91px; height: 91px; display: flex; align-items: center; justify-content: center; }
.sns-icon:hover { opacity: 0.8; }
.sns-icon img { width: 91px; height: 91px; object-fit: contain; }
.sns-icon--placeholder { width: 91px; height: 91px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ===== FOOTER ===== */
.azuma-footer {
  background: var(--azuma-blue);
  padding: 50px 100px;
  z-index: 1;
  flex-shrink: 0;
}
.azuma-footer__inner {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.azuma-footer__col { flex-shrink: 0; }
.azuma-footer__logo { height: 70px; width: auto; margin-bottom: 35px; }
.azuma-footer__address {
  font-size: 16px;
  line-height: 35px;
  color: white;
  font-style: normal;
}
.azuma-footer__nav { list-style: none; padding: 0; margin: 0; }
.azuma-footer__nav li { line-height: 35px; }
.azuma-footer__nav a { color: white; font-size: 16px; white-space: nowrap; }
.azuma-footer__nav a:hover { opacity: 0.8; }

/* ===== PRODUCT PAGE ===== */
.prd-top {
  background: white;
  padding: 100px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* カテゴリタブ */
.prd-tabs {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.prd-tab {
  width: 90px;
  height: 114px;
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--azuma-blue);
}
.prd-tab__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: var(--azuma-blue);
  white-space: nowrap;
}
.prd-tab__pill {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border: 1.5px solid var(--azuma-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.prd-tab.is-active .prd-tab__pill,
.prd-tab:hover .prd-tab__pill {
  background: var(--azuma-blue);
}
.prd-tab__icon {
  max-height: 50px;
  max-width: 60px;
  object-fit: contain;
}
.prd-tab.is-active .prd-tab__icon,
.prd-tab:hover .prd-tab__icon {
  filter: brightness(0) invert(1);
}

/* 検索バー */
.prd-search { width: 790px; max-width: 90%; }
.prd-search__input {
  width: 100%;
  height: 30px;
  border: 1.5px solid var(--azuma-blue);
  border-radius: 30px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--azuma-blue);
  background: white;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.prd-search__input::placeholder { color: rgba(0,53,104,0.5); }

/* カテゴリバナー */
.prd-banner {
  height: 150px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prd-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,53,104,0.55);
}
.prd-banner__text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}
.prd-banner__en {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  text-transform: uppercase;
}
.prd-banner__jp { font-size: 16px; line-height: 25px; }

/* 製品グリッド */
.prd-grid-wrap {
  background: white;
  padding: 100px 0 150px;
}
.prd-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 100px 150px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.prd-item {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--azuma-blue);
  text-decoration: none;
}
.prd-item:hover { opacity: 0.8; }
.prd-item__img-wrap {
  width: 100%;
  height: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prd-item__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prd-item__img--placeholder { width: 159px; height: 266px; background: #d9d9d9; }
.prd-item__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.prd-item__name { font-size: 16px; line-height: 25px; text-align: center; }
.prd-item__model { font-size: 16px; line-height: 25px; text-align: center; }
.prd-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  justify-content: center;
}
.prd-item__tag {
  font-size: 14px;
  line-height: 1.5;
  color: var(--azuma-blue);
  border: 1px solid var(--azuma-blue);
  border-radius: 30px;
  padding: 0 15px;
}
.prd-empty {
  text-align: center;
  color: var(--azuma-blue);
  padding: 100px 0;
  width: 100%;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.sprd-detail {
  display: flex;
  gap: 49px;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 50px 120px;
  background: white;
}

/* 左カラム（sticky） */
.sprd-col-left {
  width: 486px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

/* 右カラム（製品説明） */
.sprd-col-right {
  width: 515px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* 画像スライダー */
.sprd-slider {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 100%;
  justify-content: center;
}
.sprd-slider__track {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}
.sprd-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sprd-slider__slide.is-active { opacity: 1; }
.sprd-img-box {
  width: 400px;
  height: 400px;
  background: white;
  box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sprd-img-box--empty { background: #f0f0f0; }
.sprd-img-box__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sprd-slider__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sprd-slider__arrow:hover { opacity: 0.5; }

/* ドットナビ */
.sprd-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sprd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--azuma-blue);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.sprd-dot.is-active { background: var(--azuma-blue); }

/* 製品名・品番 */
.sprd-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.sprd-info__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--azuma-blue);
  word-break: break-word;
  margin: 0;
}
.sprd-info__model {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

/* タグ */
.sprd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.sprd-tag {
  font-size: 14px;
  line-height: 1.5;
  color: var(--azuma-blue);
  border: 1px solid var(--azuma-blue);
  border-radius: 30px;
  padding: 0 15px;
  white-space: nowrap;
}

/* 購入ボタン */
.sprd-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--azuma-blue);
  color: white;
  font-size: 16px;
  line-height: 1;
  height: 40px;
  border-radius: 60px;
  width: 400px;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}
.sprd-btn-buy:hover { opacity: 0.85; }
.sprd-btn-buy__icon { flex-shrink: 0; }

/* 取扱説明書ダウンロードボタン */
.sprd-btn-manual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--azuma-blue);
  color: var(--azuma-blue);
  font-size: 16px;
  line-height: 1;
  height: 40px;
  width: 400px;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}
.sprd-btn-manual:hover { background: rgba(0,53,104,0.05); }
.sprd-btn-manual__icon { flex-shrink: 0; }

/* 右カラム：製品特徴 */
.sprd-content-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--azuma-blue);
}
.sprd-content {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
}
.sprd-content p { margin: 0 0 12px; }
.sprd-content p:last-child { margin-bottom: 0; }

/* ===== COPYRIGHT ===== */
.azuma-copyright {
  background: var(--azuma-blue);
  padding: 30px 0 80px;
  text-align: center;
  font-size: 14px;
  color: white;
  letter-spacing: 1.4px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  background: rgba(0, 53, 104, 0.1);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  min-height: 60vh;
}
.contact-form-wrap {
  width: 700px;
  max-width: 90%;
}

/* CF7 フォーム全体 */
.contact-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* フィールドグループ */
.contact-wrap .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ラベル */
.contact-wrap .wpcf7-form label,
.contact-wrap .wpcf7-form .cf7-label {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  font-family: 'Noto Sans JP', sans-serif;
}
.contact-wrap .wpcf7-form .required-mark {
  color: #ff006f;
  margin-left: 4px;
}

/* テキスト・メール・電話・日付入力 */
.contact-wrap .wpcf7-form input[type="text"],
.contact-wrap .wpcf7-form input[type="email"],
.contact-wrap .wpcf7-form input[type="tel"],
.contact-wrap .wpcf7-form input[type="date"],
.contact-wrap .wpcf7-form input[type="number"] {
  width: 100%;
  height: 50px;
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--azuma-blue);
  outline: none;
  box-sizing: border-box;
}
.contact-wrap .wpcf7-form input::placeholder {
  color: rgba(0, 53, 104, 0.25);
}

/* セレクトボックス */
.contact-wrap .wpcf7-form select {
  width: 100%;
  height: 50px;
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--azuma-blue);
  outline: none;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23003568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* テキストエリア */
.contact-wrap .wpcf7-form textarea {
  width: 100%;
  height: 150px;
  background: white;
  border: none;
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--azuma-blue);
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}
.contact-wrap .wpcf7-form textarea::placeholder {
  color: rgba(0, 53, 104, 0.25);
}

/* 送信ボタン */
.contact-wrap .wpcf7-form input[type="submit"] {
  width: 700px;
  max-width: 100%;
  height: 50px;
  background: var(--azuma-blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-wrap .wpcf7-form input[type="submit"]:hover { opacity: 0.85; }

/* 同意チェックボックス */
.contact-wrap .wpcf7-form .wpcf7-acceptance {
  display: block !important;
}
.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: block !important;
  margin: 0;
}
.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer;
  white-space: nowrap;
}
.contact-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  display: inline-block !important;
  flex-shrink: 0 !important;
  width: 21px !important;
  height: 21px !important;
  min-width: 21px !important;
  min-height: 21px !important;
  border: none !important;
  box-shadow: 0 0 2px 1px rgba(0, 53, 104, 0.19);
  background: white !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
}
.contact-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--azuma-blue) !important;
}
.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  line-height: 21px;
  color: var(--azuma-blue);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

/* バリデーションエラー */
.contact-wrap .wpcf7-not-valid-tip {
  color: #ff006f;
  font-size: 13px;
  margin-top: 4px;
}
.contact-wrap .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: none;
}
.contact-wrap .wpcf7-mail-sent-ok {
  background: rgba(0, 53, 104, 0.1);
  color: var(--azuma-blue);
}
.contact-wrap .wpcf7-validation-errors,
.contact-wrap .wpcf7-acceptance-missing {
  background: rgba(255, 0, 111, 0.08);
  color: #ff006f;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 100px 0 0;
  display: flex;
  justify-content: center;
  background: white;
}

/* 共通見出し h2 */
.about-h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-align: center;
  margin: 0;
}

/* 共通サブタイトル */
.about-subtitle {
  font-size: 20px;
  line-height: 40px;
  color: var(--azuma-blue);
  text-align: center;
  margin: 0;
}

/* ===== 私たちの想い ===== */
.about-mission-wrap {
  background: white;
  padding: 100px 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.about-body-text {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  text-align: center;
}
.about-body-text p { margin: 0; }

/* MVV ダイアグラム */
.about-mvv {
  display: flex;
  align-items: center;
  gap: 0;
}
.about-mvv__left {
  display: flex;
  align-items: center;
}
.about-mvv__triangle { flex-shrink: 0; }
.about-mvv__lines { flex-shrink: 0; margin-left: -2px; }
.about-mvv__labels {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 10px;
}
.about-mvv__item { display: flex; flex-direction: column; gap: 0; }
.about-mvv__key { margin: 0; display: flex; align-items: baseline; gap: 4px; }
.about-mvv__key-en {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #ffaa00;
}
.about-mvv__key-jp {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
}
.about-mvv__desc {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

/* 縦ライン */
.about-vline {
  width: 1.5px;
  height: 99px;
  background: var(--azuma-blue);
}

/* PURPOSE */
.about-purpose {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.about-purpose__label {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
}
.about-purpose__en {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #ffaa00;
}
.about-purpose__jp {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
}
.about-purpose__title {
  text-align: center;
  color: var(--azuma-blue);
}
.about-purpose__title p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 51.53px;
  font-weight: 700;
  line-height: 75px;
  margin: 0;
}

/* 共に〜コピー */
.about-copy {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-align: center;
}
.about-copy p { margin: 0; }

/* 本文（中央揃え） */
.about-body-center {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  text-align: center;
  margin: 0;
}

/* ロゴ画像 */
.about-logo-img {
  text-align: center;
}
.about-logo-img img { max-width: 636px; width: 100%; display: inline-block; }
.about-logo-img--placeholder {
  width: 636px;
  height: 204px;
  background: #f0f0f0;
  border: 1px dashed #ccc;
}

/* 4本柱画像 */
.about-pillars-img {
  text-align: center;
}
.about-pillars-img img { max-width: 315px; display: inline-block; }
.about-pillars-img--placeholder {
  width: 315px;
  height: 112px;
  background: #f0f0f0;
  border: 1px dashed #ccc;
}

/* ===== 代表者メッセージ ===== */
.about-ceo-section {
  background: white;
  padding: 100px 50px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
.about-ceo-detail {
  display: flex;
  gap: 49px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1050px;
}
.about-ceo-left {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.about-ceo-meta { display: flex; flex-direction: column; gap: 0; }
.about-ceo-position {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  margin: 0;
}
.about-ceo-name { margin: 0; }
.about-ceo-name__ja {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  margin-right: 8px;
}
.about-ceo-name__en {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
}
.about-ceo-photo {
  width: 300px;
  height: 412px;
  box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.25);
  overflow: hidden;
}
.about-ceo-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-ceo-photo--placeholder { background: #f0f0f0; }
.about-ceo-right {
  width: 515px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.about-ceo-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--azuma-blue);
}
.about-ceo-body {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-ceo-body p { margin: 0; }

/* ===== 会社概要 ===== */
.about-company-wrap {
  background: white;
  padding: 0 50px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 76px;
}
.about-table {
  width: 700px;
  max-width: 100%;
  margin: 0;
}
.about-table__row {
  display: flex;
  align-items: baseline;
  gap: 0;
  border-top: 1.5px solid var(--azuma-blue);
  padding: 0;
}
.about-table__row:last-child { border-bottom: 1.5px solid var(--azuma-blue); }
.about-table dt {
  width: 140px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  padding: 10px 20px 10px 30px;
}
.about-table dd {
  flex: 1;
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  margin: 0;
  padding: 10px 20px 10px 0;
}
.about-table dd a {
  color: var(--azuma-blue);
  text-decoration: underline;
}
.about-table dd a:hover { opacity: 0.7; }

/* ===== 主要取引先 ===== */
.about-clients-wrap {
  background: white;
  padding: 0 50px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}
.about-clients {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  justify-content: center;
}
.about-clients__col {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 314px;
}
.about-clients__col li {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  border-top: 1.5px solid var(--azuma-blue);
  padding: 5px 20px;
}
.about-clients__col li:last-child { border-bottom: 1.5px solid var(--azuma-blue); }

/* ===== アクセス ===== */
.about-access-wrap {
  background: white;
  padding: 0 50px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
}
.about-access-label {
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
  text-align: center;
  margin: 0;
}
.about-map { text-align: center; }
.about-map img { width: 678px; max-width: 100%; display: inline-block; }
.about-map iframe { display: block; max-width: 100%; }

/* ===== HAMBURGER NAV OVERLAY ===== */
.azuma-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.azuma-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
.azuma-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100dvh;
  background: var(--azuma-blue);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.azuma-nav-overlay.is-open {
  transform: translateY(0);
}
.azuma-nav-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.azuma-nav-close {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  flex-shrink: 0;
}
.azuma-nav-close span {
  display: block;
  position: absolute;
  width: 28px;
  height: 2px;
  background: white;
  top: 50%;
  left: 50%;
}
.azuma-nav-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.azuma-nav-close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }
.azuma-nav-close:hover { opacity: 0.7; }
.azuma-nav-menu { flex: 1; }
.azuma-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.azuma-nav-menu ul li { margin-bottom: 30px; }
.azuma-nav-menu ul li a {
  color: white;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
}
.azuma-nav-menu ul li a:hover { opacity: 0.7; }
.azuma-nav-en { font-size: 18px; }
.azuma-nav-bottom {
  margin-top: 20px;
}
.azuma-nav-privacy {
  display: block;
  background: white;
  color: var(--azuma-blue);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.azuma-nav-privacy:hover { opacity: 0.9; }
.azuma-nav-copyright {
  color: white;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* ===== PICKUP ARCHIVE PAGE ===== */
.pup-arc {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.pup-tabs {
  display: flex;
  gap: 50px;
  align-items: center;
}

.pup-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 40px;
  border: 1.5px solid var(--azuma-blue);
  border-radius: 70px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: white;
  color: var(--azuma-blue);
}

.pup-tab--active {
  background: var(--azuma-blue);
  color: white;
}

.pup-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
}

.pup-card {
  width: 250px;
  display: block;
  text-decoration: none;
  color: var(--azuma-blue);
  filter: drop-shadow(2px 3px 5px rgba(0,0,0,0.25));
  transition: opacity 0.2s;
}
.pup-card:hover { opacity: 0.8; }

.pup-card__img-wrap {
  width: 250px;
  height: 170px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #d9d9d9;
}
.pup-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pup-card__img--placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}
.pup-card__body {
  background: white;
  border-radius: 0 0 20px 20px;
  padding: 27px 23px 25px;
  min-height: 70px;
  display: flex;
  align-items: center;
}
.pup-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.pup-empty {
  font-size: 16px;
  color: var(--azuma-blue);
}

/* ===== BLOG ARCHIVE PAGE ===== */
.blog-arc {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* ===== NEWS ARCHIVE PAGE ===== */
.news-arc {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* ===== ARCHIVE EMPTY STATE ===== */
.arc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
  color: var(--azuma-blue);
}
.arc-empty__text {
  font-size: 16px;
  margin: 0;
}
.arc-empty__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border: 2px solid var(--azuma-blue);
  color: var(--azuma-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.arc-empty__back:hover {
  background: var(--azuma-blue);
  color: white;
}

/* ===== ARCHIVE PAGINATION ===== */
.arc-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.arc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--azuma-blue);
  color: var(--azuma-blue);
  font-size: 14px;
  text-decoration: none;
}
.arc-pagination .page-numbers.current {
  background: var(--azuma-blue);
  color: white;
}
.arc-pagination .page-numbers:hover:not(.current) {
  background: #e8f0f8;
}

/* ===== SINGLE PICKUP PAGE ===== */
.spup-wrap {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.spup-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.spup-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* the_content() エリア */
.spup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  font-size: 16px;
  line-height: 40px;
  color: var(--azuma-blue);
}
.spup-content p {
  margin: 0;
  text-align: center;
}
.spup-content img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
}
.spup-content figure {
  margin: 0;
}
.spup-content a {
  color: var(--azuma-blue);
  text-decoration: underline;
}
.spup-content a:hover { opacity: 0.7; }
.spup-content h2,
.spup-content h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  align-self: flex-start;
}

/* 一覧に戻るボタン */
.spup-back-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.spup-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 353px;
  height: 43px;
  background: var(--azuma-blue);
  border: 1px solid var(--azuma-blue);
  color: white;
  font-size: 16px;
  text-decoration: none;
  gap: 4px;
  transition: opacity 0.2s;
}
.spup-back-btn:hover { opacity: 0.8; }
.spup-back-btn__en {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.spup-back-btn__jp {
  font-size: 16px;
}

/* ===== SNS PAGE ===== */
.sns-hero {
  padding: 100px 0 0;
  display: flex;
  justify-content: center;
}
.sns-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sns-lead {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  color: var(--azuma-blue);
}
.sns-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sns-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,53,104,0.08);
  text-decoration: none;
  color: var(--azuma-blue);
  border-left: 5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sns-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,53,104,0.15);
}
.sns-card--x         { border-left-color: #000; }
.sns-card--instagram { border-left-color: #E1306C; }
.sns-card--facebook  { border-left-color: #1877F2; }
.sns-card--youtube   { border-left-color: #FF0000; }
.sns-card--tiktok    { border-left-color: #010101; }
.sns-card--line      { border-left-color: #06C755; }
.sns-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.sns-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sns-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sns-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sns-card__handle {
  font-size: 13px;
  color: #777;
}
.sns-card__arrow {
  font-size: 22px;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.sns-card:hover .sns-card__arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* ===== PRIVACY PAGE ===== */
.privacy-wrap {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  min-height: 60vh;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1110px;
  padding: 0 20px;
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.privacy-section__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-transform: uppercase;
  margin: 0;
}

.privacy-section__text {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

.privacy-section__text p {
  margin: 0 0 8px;
}
.privacy-section__text p:last-child { margin-bottom: 0; }

/* 問い合わせボックス */
.privacy-contact-box {
  width: 100%;
  max-width: 1110px;
  border: 1px solid var(--azuma-blue);
  overflow: hidden;
}

.privacy-contact-box__header {
  background: var(--azuma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
}

.privacy-contact-box__header span {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.privacy-contact-box__cols {
  display: flex;
}

.privacy-contact-box__col {
  flex: 1;
  background: rgba(0, 53, 104, 0.1);
  border: 1px solid var(--azuma-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 20px;
  min-height: 152px;
  text-align: center;
}

.privacy-contact-box__label {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

.privacy-contact-box__value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--azuma-blue);
  text-decoration: underline;
}
.privacy-contact-box__value:hover { opacity: 0.7; }

/* ===== SUPPORT PAGE ===== */
.support-hero {
  background: white;
  padding: 100px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.support-intro {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 1110px;
  padding: 0 20px;
  text-align: center;
}

.support-intro__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-transform: uppercase;
  margin: 0;
}

.support-intro__text {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

/* 2カラムレイアウト */
.support-layout {
  background: white;
  display: flex;
  align-items: flex-start;
  padding: 0 0 120px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 50px;
  padding: 0 40px 120px;
  box-sizing: border-box;
}

/* ===== 左サイドバー ===== */
.support-sidebar {
  width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  padding-top: 20px;
}

.support-filter__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--azuma-blue);
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0 0 20px;
}

.support-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

/* 検索 */
.support-search { display: flex; flex-direction: column; }

.support-search__form { display: flex; }

.support-search__input {
  width: 100%;
  height: 30px;
  border: 1.5px solid var(--azuma-blue);
  border-radius: 30px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--azuma-blue);
  background: white;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.support-search__input::placeholder { color: rgba(0,53,104,0.5); }

/* 問い合わせボックス */
.support-contact-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-contact-box__urgent {
  background: var(--azuma-blue);
  padding: 20px 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 40px;
}

.support-contact-box__urgent-label {
  background: white;
  color: var(--azuma-blue);
  font-size: 16px;
  line-height: 25px;
  padding: 0 10px;
  text-align: center;
  width: 224px;
  display: block;
}

.support-contact-box__tel {
  font-size: 30px;
  font-weight: 700;
  color: white;
  text-decoration: underline;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: center;
}
.support-contact-box__tel:hover { opacity: 0.85; }

.support-contact-box__hours {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}

.support-contact-box__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 53, 104, 0.15);
  color: var(--azuma-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  height: 64px;
  text-align: center;
  border: 1px solid rgba(0,53,104,0.2);
}
.support-contact-box__mail:hover { background: rgba(0,53,104,0.25); }

/* 製品への取り組みリンク */
.support-effort-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--azuma-blue);
  text-transform: uppercase;
  line-height: 1.5;
  text-decoration: underline;
}
.support-effort-link:hover { opacity: 0.7; }

/* ===== 右コンテンツ ===== */
.support-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}

.support-list-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.support-list-heading__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  color: var(--azuma-blue);
  text-transform: uppercase;
  margin: 0;
}

.support-list-heading__desc {
  font-size: 16px;
  line-height: 25px;
  color: var(--azuma-blue);
  margin: 0;
}

/* カテゴリバー */
.support-cat-bar {
  background: var(--azuma-blue);
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.support-cat-bar span {
  color: white;
  font-size: 16px;
  line-height: 25px;
}

/* 製品グリッド */
.support-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

/* 製品カード */
.support-product-card {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--azuma-blue);
  text-decoration: none;
}
.support-product-card:hover { opacity: 0.8; }

.support-product-card__img-wrap {
  width: 100%;
  height: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-product-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.support-product-card__img--placeholder {
  width: 159px;
  height: 266px;
  background: #d9d9d9;
}

.support-product-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.support-product-card__name {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  margin: 0;
}

.support-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  justify-content: center;
}

.support-no-result {
  font-size: 16px;
  color: var(--azuma-blue);
  padding: 60px 0;
  text-align: center;
}

/* ===== SINGLE NEWS / BLOG PAGE ===== */
.spost-wrap {
  background: white;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.spost-article {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.spost-date {
  font-size: 14px;
  color: var(--azuma-blue);
  opacity: 0.7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spost-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--azuma-blue);
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--azuma-blue);
}

.spost-thumb {
  width: 100%;
}
.spost-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.spost-content {
  font-size: 16px;
  line-height: 32px;
  color: var(--azuma-blue);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spost-content p { margin: 0; }
.spost-content img { max-width: 100%; height: auto; display: block; border-radius: 6px; }
.spost-content figure { margin: 0; }
.spost-content a { color: var(--azuma-blue); text-decoration: underline; }
.spost-content a:hover { opacity: 0.7; }
.spost-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 0;
  padding-left: 14px;
  border-left: 4px solid var(--azuma-blue);
  line-height: 1.5;
}
.spost-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 0;
  line-height: 1.5;
}

.spost-back-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.spost-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 353px;
  height: 43px;
  background: var(--azuma-blue);
  border: 1px solid var(--azuma-blue);
  color: white;
  font-size: 16px;
  text-decoration: none;
  gap: 6px;
  transition: opacity 0.2s;
}
.spost-back-btn:hover { opacity: 0.8; }
.spost-back-btn__en { font-size: 18px; font-weight: 700; text-transform: uppercase; }
.spost-back-btn__jp { font-size: 16px; }

/* ===== SCROLL TO TOP ===== */
.azuma-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.azuma-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.azuma-scroll-top__arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--azuma-blue);
  margin-top: -3px;
}

/* ========================================
   RESPONSIVE — mobile first (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {

  /* ===== HEADER ===== */
  .azuma-header {
    padding: 10px 20px;
  }
  .azuma-header__logo img { height: 33px; }
  .azuma-header__nav a,
  .azuma-header__divider { display: none; }
  .azuma-header__hamburger { display: flex; }

  /* ===== HERO ===== */
  .azuma-hero {
    height: 100svh;
    min-height: 600px;
    max-height: none;
  }
  .azuma-hero__news {
    right: 0;
    bottom: 100px;
    left: auto;
    width: 150px;
    padding: 10px 10px 8px;
    border-radius: 10px 0 0 10px;
    gap: 5px;
    align-items: flex-start;
  }
  .azuma-hero__news-label { font-size: 14px; margin-bottom: 3px; }
  .azuma-hero__news-thumb { width: 130px; height: 80px; }
  .azuma-hero__news-title { font-size: 14px; line-height: 1.4; }
  .azuma-hero__dots { bottom: 20px; }
  .azuma-scroll-top { width: 35px; height: 35px; right: 20px; bottom: 25px; }

  /* ===== SECTION HEADING ===== */
  .section-icon { width: 72px; height: 28px; margin-bottom: 5px; }
  .section-heading__en { font-size: 30px; letter-spacing: 3px; }

  /* ===== PICKUP ===== */
  .azuma-pickup {
    padding: 80px 0 100px;
    gap: 50px;
  }
  .pickup-grid { gap: 20px; padding: 0 20px; }
  .pickup-card { width: 150px; }
  .pickup-card__image,
  .pickup-card__image--placeholder { width: 150px; height: 96px; }
  .pickup-card__body { min-height: 54px; padding: 8px 6px; }
  .pickup-card__title { font-size: 14px; }
  .pickup-more { font-size: 14px; }

  /* ===== PRODUCT ===== */
  .azuma-product-inner {
    clip-path: polygon(0 40px, 50% 0, 100% 40px, 100% 100%, 0 100%);
    padding: 80px 0 50px;
    gap: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 150px);
    gap: 40px 20px;
    padding: 0 20px;
    max-width: 100%;
    justify-content: center;
  }
  .product-card__img-wrap { border-radius: 7px; }
  .product-card__en { font-size: 16px; letter-spacing: 1.6px; }
  .product-card__jp { font-size: 16px; }
  .product-card__arrow { width: 20px; height: 20px; font-size: 12px; }

  /* ===== ABOUT ===== */
  .azuma-about { padding: 0; }
  .azuma-about__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .azuma-about__image-left {
    justify-content: flex-start;
    padding: 50px 150px 0 0;
    order: 1;
  }
  .azuma-about__text {
    padding: 40px 20px 40px;
    gap: 30px;
    order: 2;
    align-items: center;
  }
  .azuma-about__image-right {
    justify-content: flex-end;
    padding: 0 0 50px 150px;
    order: 3;
  }
  .azuma-about__photo-left {
    width: 100%;
    height: 200px;
    max-width: none;
    border-radius: 0;
  }
  .azuma-about__photo-right {
    width: 100%;
    height: 200px;
    max-width: none;
    border-radius: 0;
  }
  .azuma-about__photo-left--placeholder,
  .azuma-about__photo-right--placeholder { width: 100%; height: 200px; }
  .azuma-about__copy-line {
    font-size: 35px;
    line-height: 45px;
  }
  .azuma-about__desc { text-align: center; }
  .azuma-about__btn { width: 100%; max-width: 350px; }
  /* 装飾の四角 — Figmaに合わせた配置 */
  .azuma-about__deco--sq-l-big  { width: 88px; height: 88px; top: 110px; left: 110px; bottom: auto; }
  .azuma-about__deco--sq-l-sm   { width: 51px; height: 51px; top: 43px;  left: 0;     bottom: auto; opacity: 0.4; }
  .azuma-about__deco--sq-l-xs   { display: none; }
  .azuma-about__deco--sq-r-big  { width: 127px; height: 127px; top: auto; bottom: 50px; right: 0; }
  .azuma-about__deco--sq-r-sm   { width: 32px;  height: 32px;  top: auto; bottom: 178px; right: 0; opacity: 0.4; }
  .azuma-about__deco--sq-r-xs   { width: 15px;  height: 16px;  top: auto; bottom: 212px; right: 0; opacity: 0.4; }

  /* ===== PARTNER ===== */
  .azuma-partner {
    padding: 100px 20px 80px;
    gap: 50px;
  }
  .partner-desc { font-size: 16px; line-height: 25px; width: 350px; max-width: 100%; }
  .partner-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 350px;
    max-width: 100%;
  }
  .partner-card {
    width: 150px;
    height: 133px;
    border-radius: 10px;
    border-width: 1.5px;
  }
  .partner-card__front {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 5px;
  }
  .partner-card__label {
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-align: center;
  }
  .partner-card__icon { height: auto; }
  .partner-card__icon img { max-height: 59px; width: auto; }
  .partner-card__back { display: none; }
  .partner-card:hover .partner-card__front { opacity: 1; }
  .partner-inquiry {
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: var(--azuma-blue);
    text-align: center;
    width: 264px;
    max-width: 100%;
  }
  .partner-cta { height: 40px; width: 350px; max-width: 100%; border-radius: 30px; font-size: 16px; padding: 0; justify-content: center; }

  /* ===== BLOG ===== */
  .azuma-blog { padding: 80px 20px; gap: 30px; }
  .blog-list { gap: 30px; }
  .blog-entry { gap: 15px; align-items: flex-start; flex-wrap: wrap; }
  .blog-entry__image,
  .blog-entry__image--placeholder { width: 150px; height: 100px; }
  .blog-entry__body { flex: 1; min-width: 150px; }

  /* ===== NEWS ===== */
  .azuma-news { padding: 50px 20px; gap: 30px; }
  .news-list { gap: 30px; }
  .news-entry { gap: 15px; align-items: flex-start; flex-wrap: wrap; }
  .news-entry__image,
  .news-entry__image--placeholder { width: 150px; height: 100px; }
  .news-entry__body { flex: 1; min-width: 150px; }

  /* ===== SECTION MORE BUTTON ===== */
  .section-more-btn { width: 350px; max-width: 100%; }

  /* ===== SNS ===== */
  .azuma-sns { padding: 50px 20px; gap: 40px; }
  .sns-icons { gap: 30px; }
  .sns-icon,
  .sns-icon img { width: 70px; height: 70px; }

  /* ===== FOOTER ===== */
  .azuma-footer { padding: 40px 20px; }
  .azuma-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    align-items: start;
  }
  /* ロゴ列は全幅 */
  .azuma-footer__col:first-child {
    grid-column: 1 / -1;
    margin-bottom: 30px;
  }
  /* MENU と PRODUCT が2列 */
  .azuma-footer__col { width: 100%; margin-bottom: 30px; }
  /* SUPPORT は全幅 */
  .azuma-footer__col[aria-label="フッターナビ3"] { grid-column: 1 / -1; }
  .azuma-footer__logo { height: 60px; margin-bottom: 15px; }
  .azuma-footer__address { font-size: 14px; line-height: 25px; }
  .azuma-footer__nav li { line-height: 28px; }
  .azuma-footer__nav a { font-size: 13px; }

  /* ナビグループの見出し */
  .azuma-footer__col[aria-label]::before {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .azuma-footer__col[aria-label="フッターナビ1"]::before { content: "MENU"; }
  .azuma-footer__col[aria-label="フッターナビ2"]::before { content: "PRODUCT"; }
  .azuma-footer__col[aria-label="フッターナビ3"]::before { content: "SUPPORT"; }

  /* nav2の「・product」ラベルリンクは見出しで代替するので非表示 */
  .azuma-footer__col[aria-label="フッターナビ2"] .azuma-footer__nav li:first-child { display: none; }

  /* SUPPORTリンクは2列グリッド */
  .azuma-footer__col[aria-label="フッターナビ3"] .azuma-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .azuma-copyright { padding: 20px 0 40px; font-size: 12px; }

  /* ===== PRODUCT ARCHIVE PAGE ===== */
  .prd-top { padding: 60px 20px 40px; }
  .prd-tabs { gap: 20px; justify-content: center; }
  .prd-search { width: 100%; max-width: 100%; }
  .prd-banner { height: 100px; }
  .prd-banner__en { font-size: 20px; letter-spacing: 2px; }
  .prd-banner__jp { font-size: 14px; line-height: 20px; }
  .prd-grid-wrap { padding: 50px 0 80px; }
  .prd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    padding: 0 30px;
    max-width: 100%;
  }
  .prd-item { width: auto; }
  .prd-item__img-wrap { height: 180px; }
  .prd-item__name { font-size: 14px; line-height: 1.4; }
  .prd-item__model { font-size: 12px; line-height: 1.4; }

  /* ===== ABOUT PAGE ===== */
  .about-hero { padding: 60px 0 0; }
  .about-h2 { font-size: 20px; letter-spacing: 1px; }
  .about-subtitle { font-size: 16px; }
  .about-mission-wrap { padding: 60px 20px 100px; gap: 30px; }
  .about-body-text { font-size: 14px; line-height: 28px; text-align: left; }
  .about-body-text p { text-align: left; }
  .about-mvv { flex-direction: column; align-items: center; }
  .about-mvv__left { justify-content: center; }
  .about-mvv__lines { display: none; }
  .about-purpose__title p { font-size: 30px; line-height: 48px; }
  .about-copy { font-size: 20px; letter-spacing: 1px; }
  .about-body-center { font-size: 14px; line-height: 28px; text-align: left; }
  .about-logo-img img { max-width: 100%; }
  .about-logo-img--placeholder { width: 100%; max-width: 100%; }
  .about-pillars-img img { max-width: 200px; }
  .about-ceo-section { padding: 60px 20px 80px; gap: 50px; }
  .about-ceo-detail { flex-direction: column; align-items: center; gap: 40px; max-width: 100%; }
  .about-ceo-left { width: 100%; max-width: 300px; position: static; top: auto; align-items: center; }
  .about-ceo-right { width: 100%; }
  .about-ceo-photo { width: 240px; height: 330px; max-width: 100%; }
  .about-ceo-name__ja { font-size: 22px; }
  .about-ceo-body { font-size: 14px; line-height: 24px; gap: 15px; }
  .about-company-wrap { padding: 0 20px 80px; gap: 50px; }
  .about-table { width: 100%; }
  .about-table__row { flex-direction: column; }
  .about-table dt { width: 100%; padding: 8px 0 0; font-size: 14px; font-weight: 700; }
  .about-table dd { padding: 0 0 10px; font-size: 14px; line-height: 28px; }
  .about-clients-wrap { padding: 0 20px 80px; gap: 50px; }
  .about-clients { flex-direction: column; gap: 0; }
  .about-clients__col { width: 100%; }
  .about-clients__col li { font-size: 14px; }
  .about-access-wrap { padding: 0 20px 100px; gap: 40px; }
  .about-map iframe { width: 100% !important; height: 250px; }

  /* ===== CONTACT PAGE ===== */
  .contact-wrap { padding: 60px 20px; gap: 60px; }
  .contact-form-wrap { width: 100%; }
  .contact-wrap .wpcf7-form { gap: 30px; }

  /* ===== SUPPORT PAGE ===== */
  .support-hero { padding: 60px 20px 60px; gap: 50px; }
  .support-intro { padding: 0; }
  .support-intro__title { font-size: 20px; letter-spacing: 1px; }
  .support-layout { flex-direction: column; padding: 0 20px 80px; gap: 40px; }
  .support-sidebar { width: 100%; position: static; top: auto; }
  .support-list-heading__title { font-size: 20px; letter-spacing: 1px; }
  .support-list-heading__desc { font-size: 14px; }
  .support-product-grid { gap: 20px; }
  .support-product-card { width: calc(50% - 10px); }
  .support-product-card__img-wrap { height: 150px; }
  .support-product-card__name { font-size: 14px; }

  /* ===== PRIVACY PAGE ===== */
  .privacy-wrap { padding: 60px 20px; gap: 60px; }
  .privacy-section__title { font-size: 20px; letter-spacing: 1px; }
  .privacy-contact-box__cols { flex-direction: column; }
  .privacy-contact-box__header { height: 52px; }
  .privacy-contact-box__header span { font-size: 20px; }
  .privacy-contact-box__value { font-size: 22px; }

  /* ===== PICKUP ARCHIVE PAGE ===== */
  .pup-arc { padding: 60px 0; gap: 50px; }
  .pup-tabs { flex-direction: column; gap: 15px; }
  .pup-tab { width: 280px; height: 35px; font-size: 14px; }
  .pup-grid { gap: 25px; padding: 0 20px; }
  .pup-card { width: 160px; }
  .pup-card__img-wrap { width: 160px; height: 110px; }
  .pup-card__body { padding: 12px 10px; min-height: auto; }

  /* ===== BLOG / NEWS ARCHIVE PAGE ===== */
  .blog-arc { padding: 60px 0; gap: 40px; }
  .news-arc { padding: 60px 0; gap: 40px; }
  .arc-empty { padding: 40px 20px; }

  /* ===== SINGLE NEWS / BLOG PAGE ===== */
  .spost-wrap { padding: 60px 0; gap: 50px; }
  .spost-title { font-size: 20px; line-height: 1.5; }
  .spost-back-btn { width: 100%; max-width: 300px; }
  .spost-content h2 { font-size: 17px; }
  .spost-content h3 { font-size: 16px; }

  /* ===== SINGLE PICKUP PAGE ===== */
  .spup-wrap { padding: 60px 0; gap: 60px; }
  .spup-title { font-size: 20px; letter-spacing: 1px; }
  .spup-back-btn { width: 100%; max-width: 300px; }

  /* ===== SINGLE PRODUCT PAGE ===== */
  .sprd-detail { flex-direction: column; padding: 60px 20px 80px; gap: 40px; align-items: center; }
  .sprd-col-left { width: 100%; position: static; top: auto; }
  .sprd-col-right { width: 100%; }
  .sprd-slider { gap: 15px; }
  .sprd-slider__track { width: 280px; height: 280px; }
  .sprd-img-box { width: 280px; height: 280px; }
  .sprd-info__title { font-size: 22px; letter-spacing: 1px; }
  .sprd-btn-buy { width: 100%; max-width: 100%; }
  .sprd-btn-manual { width: 100%; max-width: 100%; }

  /* ===== SNS PAGE ===== */
  .sns-hero { padding: 60px 0 0; }
  .sns-wrap { padding: 60px 20px 80px; gap: 30px; }
  .sns-lead { font-size: 14px; text-align: left; }
  .sns-card { padding: 18px 20px; gap: 16px; }
  .sns-card__icon { width: 44px; height: 44px; }
  .sns-card__name { font-size: 16px; }

}
