/* ============ News (新着情報) ============ */
.news-box {
  padding: 12px 0;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
}

.news-item {
  padding: 16px 0;
  border-bottom: 1px solid #e7e7e7;
  /* 薄いグレーの線 */
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 17px;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.news-content {
  display: block;
}

.news-title {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  display: block;
  margin-bottom: 8px;
}

.news-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .news-item {
    padding: 14px 0;
  }

  .news-date {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .news-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .news-text {
    font-size: 13px;
  }
}

/* ============ News Category Badge ============ */
.news-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  vertical-align: middle;
  margin-left: 8px;
}
.news-cat--info     { background: #e3f2fd; color: #1565c0; }
.news-cat--campaign { background: #fff3e0; color: #e65100; }
.news-cat--holiday  { background: #f5f5f5; color: #616161; }

@media (max-width: 640px) {
  .news-cat {
    font-size: 10px;
    padding: 2px 8px;
    margin-left: 6px;
  }
}

/* ============ News "すべて表示" Button ============ */
.news-more {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 4px;
}

.news-page-list .news-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px;
}

@media (max-width: 640px) {
  .news-page-list .news-box {
    padding: 16px;
    border-radius: 10px;
  }
}

/* ============ Pagination ============ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  text-decoration: none;
  transition: .2s;
}

.pagination__link:hover {
  background: var(--bg);
  border-color: var(--brand);
  color: var(--brand);
}

.pagination__current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.pagination__prev,
.pagination__next {
  font-size: 13px;
  padding: 0 14px;
}

@media (max-width: 480px) {
  .pagination {
    gap: 4px;
  }
  .pagination__link {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
    padding: 0 8px;
  }
}

/* ============ Base ============ */
:root {
  --brand: #0a8a4d;
  --ink: #1f2937;
  --text: #334155;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f6f8f7;
  --white: #fff;
  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(0, 0, 0, .08);
  --space: clamp(16px, 2.5vw, 28px);
  --h1: clamp(28px, 4.5vw, 48px);
  --h2: clamp(22px, 3.2vw, 32px);
  --h3: clamp(18px, 2.6vw, 24px);
  --lead: clamp(16px, 2.2vw, 18px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: var(--text);
  line-height: 1.8;
  background: #fff;
  padding-top: 84px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.container {
  max-width: var(--maxw);
  margin: auto;
  padding: 0 20px;
}

.u-hide {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .85em 1.25em;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s;
  white-space: nowrap;
}

.btn--solid {
  background: var(--brand);
  color: #fff;
}

.btn--ghost {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}

.btn--solid:hover,
.btn--ghost:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.section {
  padding: clamp(36px, 6vw, 64px) 0;
}

.section--soft {
  background: var(--bg);
}

.news_area {
  background: var(--bg);
}

.sec__head {
  margin-bottom: 24px;
  text-align: center;
}

.sec__head h2 {
  margin: 0 0 .25em;
  font-size: var(--h2);
  color: var(--ink);
}

.sec__head p {
  margin: .2em 0 0;
  color: var(--muted);
}

/* ========= ヘッダー基本 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(29, 29, 29, 0.50);
  border-bottom: 4px solid #1a8754;
}



.site-header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-logo__img {
    height: 28px;
  }
}

/* ========= ナビ（PC） ========= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: right .3s ease, opacity .3s ease;
}

.nav__list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__item--dropdown {
  position: relative;
}

.nav__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: .2s;
}

.nav__list a:hover {
  border-bottom-color: #e9ecef;
}

.cta-phone {
  color: #fff;
  font-weight: 800;
  font-size: 23px;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-phone__icon svg {
  display: block;
}

.nav__list .sub-btn {
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .02em;
  transition: .2s
}

.nav__list .sub-btn--gold {
  background: linear-gradient(180deg, #d7b45c, #b88c2a);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 20px rgba(184, 140, 42, .25);
  padding: 8px 15px !important;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav__dropdown-toggle .nav-label {
  display: inline;
}

.nav__submenu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: rgba(15, 15, 15, .94);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
  border-radius: 16px;
  padding: 10px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 120;
}

.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: transparent;
  transition: background .2s ease, color .2s ease;
  font-weight: 600;
}

.nav__submenu a:hover,
.nav__submenu a:focus-visible {
  background: rgba(215, 180, 92, 0.15);
  color: #fddc8a;
}

.nav__dropdown-toggle .sp-label {
  display: none;
}

.nav__item--dropdown:hover .nav__submenu,
.nav__item--dropdown:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--dropdown:hover .nav__dropdown-toggle,
.nav__item--dropdown:focus-within .nav__dropdown-toggle {
  filter: brightness(1.05);
}

.nav__item--dropdown.nav__item--open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--dropdown.nav__item--open .nav__dropdown-toggle {
  filter: brightness(1.05);
}

/* ========= ハンバーガー ========= */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: 28px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 200;
}

.menu-close {
  display: none;
}

.phone-txt {
  font-size: 0.6em;
}

/* ========= スマホ時 ========= */
@media (max-width:960px) {
  .menu-toggle {
    display: block;
  }

  .site-header__bar {
    height: 60px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    opacity: 0;
  }

  .nav.open {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .menu-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #111;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 201;
    transition: opacity 0.2s;
  }

  .menu-close:hover {
    opacity: 0.7;
  }

  .nav.open .menu-close {
    display: flex;
  }

  .nav.open .nav__list {
    display: flex !important;
    flex-direction: column;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    margin-top: 70px;
  }

  .nav__list li {
    width: 100%;
  }

  .nav__list a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    color: #111;
    border-bottom: 1px solid #eee;
  }

  .nav__item--dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    border-radius: 0;
    background: #fff;
    color: #111;
  }

  .nav__dropdown-toggle .nav-label {
    display: inline;
  }

  .nav__dropdown-toggle .sp-label {
    display: inline;
    font-weight: 700;
  }

  .nav__dropdown-toggle::after {
    content: "";
    border: solid #111;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform .2s;
    margin-left: auto;
  }

  .nav__dropdown-toggle .sp-label {
    display: inline;
  }

  .nav__item--open .nav__dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  .nav__submenu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 24px 10px;
    margin: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    gap: 0;
  }

  .nav__submenu a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #111;
    border-radius: 0;
  }

  .nav__submenu a:hover,
  .nav__submenu a:focus-visible {
    background: transparent;
    color: #111;
  }

  .nav__item--open .nav__submenu {
    display: block;
  }

  .cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 14px 24px;
    border-top: 1px solid #eee;
    width: 100%;
    gap: 10px;
  }

  .nav__list .sub-btn--gold {
    background: none;
    border: 0;
    box-shadow: none;
    color: #111;
    padding: 14px 24px !important;
    font-size: 15px;
  }

  .nav__list .sub-btn {
    justify-content: center;
    border: none;
    font-weight: 700;
    letter-spacing: .02em;
    transition: .2s;
    border-radius: 0px;

  }

}

/* ============ Hero ============ */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  z-index: 20;
  height: auto;
  min-height: clamp(520px, 60vw, 820px);
  max-height: min(900px, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -84px;
  padding-top: 84px;
}

/* スマホ版：ヒーローセクションの高さを少し狭く */
@media (max-width: 768px) {
  .hero {
    min-height: clamp(420px, 95vw, 640px);
    max-height: 720px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero--photo .hero__layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .55) 100%),
    url("../img/hero.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: cover, contain;
  background-color: #050505;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero--photo .hero__layer {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .55) 100%),
      url("../img/hero_sp.jpg");
    background-size: cover, contain;
  }
}

.hero__inner {
  padding: 0 20px;
  text-align: center;
  position: relative;
  top: calc(-1 * clamp(32px, 5vw, 72px));
}

.hero h1 {
  margin: .5em 0 0;
  font-size: var(--h1);
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .45), 0 6px 18px rgba(0, 0, 0, .35);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s ease-out 0.5s forwards;
}

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

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

/* ============ 金の買取相場と新着情報（横並び） ============ */
@media (min-width: 768px) {
  .gold-news-grid {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    align-items: flex-start;
    gap: 10%;
    padding-top: 40px;
  }

  .gold-rate-wrapper,
  .news-wrapper {
    width: 45%;
  }
}


.gold-rate__placeholder,
.news-box {
  font-family: Arial, Helvetica, sans-serif;
}


.gold-news-section {
  background: var(--bg);
  padding: 40px 3.4%;
}

.gold-news-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.gold-rate-wrapper {
  margin: 0 auto;
}

.metal-rate+.metal-rate {
  margin-top: 40px;
}

.metal-rate__head {
  display: flex;
  align-items: center;
  margin: 28px 0 10px;
}

.metal-rate__icon {
  flex: 0 0 auto;
  line-height: 0;
}

.metal-rate__icon img {
  display: block;
  width: clamp(44px, 6vw, 56px);
  height: auto;
  object-fit: contain;
}

.metal-rate__title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: #211514;
}

.metal-rate__price {
  margin-left: 0.5em;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
}

.metal-rate__price .unit {
  font-size: 0.6em;
  margin-left: 0.1em;
  color: #555;
}

.metal-rate__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.metal-rate__table th,
.metal-rate__table td {
  padding: 10px 8px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.metal-rate__table td {
  font-size: 1.3rem;
  font-weight: 800;
}

.metal-rate__table thead th {
  border-bottom: 2px solid #aaa;
  color: #333;
  font-weight: 600;
}

.metal-rate__table th[scope="row"] {
  width: 30%;
}

.metal-rate__date {
  color: #777;
  font-size: 1.2rem;
  margin: 25px 0 24px;
}

.metal-rate__change {
  font-weight: 600;
}

.metal-rate__change--up {
  color: #0a8a4d;
}

.metal-rate__change--down {
  color: #d32f2f;
}

.metal-rate__change--flat {
  color: #6b7280;
}

@media (max-width: 480px) {
  .metal-rate__head {
    gap: 0;
  }

  .metal-rate__title {
    font-size: 18px;
  }

  .metal-rate__price {
    font-size: 24px;
  }
}

.company-profile {
  max-width: 760px;
  margin: 0 auto 48px;
}

.company-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: left;
}

.company-intro__photo {
  margin: 0 0 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.company-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.company-intro__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  max-width: 100%;
}

.company-intro__text p {
  margin: 0 0 1.2em;
}

.company-intro__text p:last-child {
  margin-bottom: 0;
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.company-table th {
  width: 30%;
  min-width: 160px;
  background: #f4f6f9;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .03em;
}

.company-table td {
  color: var(--text);
}

.company-table tr:not(:last-child) th,
.company-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.company-table a {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 640px) {

  .company-intro {
    margin: 0 auto 40px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .company-table th {
    background: #f4f6f9;
    border-bottom: 1px solid var(--line);
  }

  .company-table td {
    border-bottom: 1px solid var(--line);
  }

  .company-table tr:last-child td {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .gold-rate__placeholder {
    padding: 20px;
    font-size: 15px;
  }

  .gold-rate__date {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .gold-rate__table {
    font-size: 14px;
  }

  .gold-rate__table th {
    padding: 10px 12px;
    font-size: 12px;
  }

  .gold-rate__table td {
    padding: 12px;
  }

  .gold-rate__table td:first-child {
    font-size: 16px;
  }

  .gold-rate__price {
    font-size: 18px;
  }

  .gold-rate__change {
    font-size: 14px;
  }

  .gold-rate__note {
    font-size: 12px;
  }

  .news-wrapper {
    margin-top: 80px;
  }

  .news-box {
    padding: 30px;
    background: #fff;

  }
}

/* スマホ版：縦並び */
@media (max-width: 768px) {
  .gold-news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero .lead {
  font-size: var(--lead);
  opacity: .95;
  margin: .8em 0 0;
}

/* ============ Items slide (5件/3.5件) ============ */
/* ヒーローの最下部に固定し、少しだけ下へ押し出して次セクションに半分食い込ませる */
.items-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(56px);
  /* ← のっかり量。強めたければ 64px など */
  z-index: 10;
}

/* 帯の背景は消し、スタッフ紹介（.section--soft）と地続きにする */
.items-strip__mask {
  --visible: 5;
  /* PC 5件表示 */
  --gap: 18px;
  --chip: calc((100% - (var(--visible) - 1)*var(--gap)) / var(--visible));
  transform: translateY(calc(var(--chip)/2));
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  /* 正方形をはみ出させる */
  height: 0;
  /* 下半分が地面（次セクション）に乗る高さだけ確保 */
  position: relative;
}

@media (max-width:768px) {
  .items-strip__mask {
    --visible: 3.5;
  }

  /* SP 3.5件表示 */
}

/* 左右のグラデは不要なので削除（被せ感を素で出す） */

/* トラックは余白なしで水平スクロール */
.items-strip__track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  width: max-content;
  padding: 0;
  animation: items-scroll 28s linear infinite;
}

@keyframes items-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== 正方形の品目カード：境目に半分のっかる ===== */
.hero-sec {
  position: relative;
  overflow: visible;
}

.hero-sec .content {
  min-height: 90vh;
  display: grid;
  place-content: center;
}

.hero-sec h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 120px);
  text-align: center;
}



.category-slider {
  display: flex;
  justify-content: center;
  gap: 1rem;
  overflow-x: hidden;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  margin-top: -10vw;
  position: relative;
  z-index: 2;
}

.category-slider .item {
  flex: 0 0 auto;
  width: 80px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 12px 8px;
  color: #222;
  cursor: pointer;
  scroll-snap-align: center;
  transition: 0.3s;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: translateY(0);
}

/* 薄いグレーの膜を重ねるオーバーレイ */
.category-slider .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.category-slider .item:hover::after {
  opacity: 1;
}

.category-slider .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .category-slider .item {
    flex: 0 0 auto;
    min-width: 100px;
    width: 130px;
    max-width: 130px;
  }

  /* Slickのクローン要素にも幅を適用 */
  .category-slider .slick-slide {
    width: 130px !important;
  }

  /* Slickのトラックとリストの設定 */
  .category-slider .slick-track {
    display: flex !important;
    align-items: center;
  }

  .category-slider .slick-list {
    overflow: visible !important;
  }

  .category-slider .item h4 {
    font-size: 12px !important;
  }

  .category-slider .item p {
    font-size: 10px !important;
  }

  .category-block {
    padding-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .category-slider .item {
    min-width: 98px;
    width: 98px;
    max-width: 98px;
    padding: 16px 10px;
  }

  .category-slider .slick-slide {
    width: auto !important;
    padding: 0 6px;
    margin-inline: 6px;
    height: 110px !important;
  }

  .category-slider .item h4 {
    font-size: 11px !important;
  }

  .category-slider .item p {
    font-size: 9px !important;
  }

  .slick-slide img {
    width: 45px !important;
    height: 45px !important;
    margin: 0 auto !important;
    margin-top: 10px !important;

  }

  .category-slider .item .smartphone {
    font-size: 0.55rem !important;
  }
}

.hero-sec .content {
  min-height: 90vh;
  display: grid;
  place-content: center;
}

.hero-sec h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 120px);
  text-align: center;
}



.category-slider {
  margin: calc(-1 * clamp(90px, 9vw, 150px)) 0 16px;
}

/* ヒーローに重ねる演出 */



.category-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f7f7;
  border-radius: 30px 30px 0 0;
  z-index: -1;
  pointer-events: none;
}

.category-slider .item {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 20px 12px;
  color: #222;
  transition: .3s;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  position: relative;
}

.category-slider .item .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  margin-top: 15px;
}

.category-block {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  background: transparent !important;
  border-radius: 0 !important;
  padding-top: clamp(40px, 6vw, 80px);
  z-index: 2;
  overflow: visible;
}

.category-slider .item .cat-gif {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 8px;
  object-fit: contain;
  margin-top: 15px;
}

.category-slider .item .icon path {
  fill: currentColor;
  transition: .3s;
}

.category-slider .item h4 {
  font-weight: 600;
  font-size: 14px;
  margin: .25rem 0;
}

.category-slider .item p {
  font-size: 12px;
  margin: 0;
}



/* Slick の余白調整（左右に呼吸を作る） */
.category-slider .slick-slide {
  padding: 0 8px;
  margin-inline: 8px;
}

.category-slider .slick-list {
  overflow: visible !important;
}

/* 半分見せ用 */


/* ============ Staff ============ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

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

.staff-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-50px);
  animation: staffCardFadeIn 1.5s ease-out forwards;
}

.staff-card:nth-child(1) {
  animation-delay: 0.5s;
}

.staff-card:nth-child(2) {
  animation-delay: 0.6s;
}

.staff-card:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes staffCardFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

.staff-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.staff-card__inner {
  position: relative;
  padding: 58px 18px 20px;
  background: #fafbfb;
  text-align: center;
}

.staff-card__avatar {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.staff-card__name {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 20px);
  font-weight: 800;
  color: var(--ink);
}

.staff-card__bio {
  margin: 8px 0 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.9;
}

/* ============ Results head & IG widget ============ */
.results-head {
  background: #0b3a2b;
  color: #eef6f1;
  padding: clamp(32px, 6vw, 72px) 0;
}

.results-head__inner {
  text-align: center;
}

.results-head__ttl {
  margin: 0 0 .35em;
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  letter-spacing: .12em;
}

.results-head__ttl img {
  width: 50px;
  height: 50px;
}

.results-head__sub {
  margin: 0;
  font-size: 14px;
  opacity: .9;
  letter-spacing: .04em;
}

.ig-widget-wrap {
  padding-top: 0 !important;
}

.ig-widget {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.ig-widget__frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

@media (max-width:720px) {
  .ig-widget__frame {
    height: 420px;
  }
}

/* ============ Map (白黒) ============ */
.map-section {
  background: #fff;
  padding: 0;

}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  height: auto;
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(105%) brightness(95%);
}

@supports not (aspect-ratio: 21 / 9) {
  .map-frame {
    height: 0;
    padding-top: 42.8571%;
    /* 21:9 fallback */
  }
}

/* === プレフッター＋フッター 共通背景仕様 === */
.footer-area {
  position: relative;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.footer-area__bg {
  position: absolute;
  inset: 0;
  background:
    url("../img/footer-bg.jpg") center/cover no-repeat;
  filter: grayscale(100%) contrast(105%);
  z-index: -1;
}

.footer-area__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 中央を暗めに、上下は薄く */
  background:
    radial-gradient(closest-side, rgba(0, 0, 0, .13), rgba(0, 0, 0, .13) 60%, rgba(0, 0, 0, .05) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .18));
  pointer-events: none;
}


/* CTA部分 */
.prefooter-cta__inner {
  padding: clamp(60px, 10vw, 120px) 20px clamp(50px, 8vw, 90px);
}

.prefooter-cta__inner h2 {
  margin: 0 0 1em;
  font-size: clamp(16px, 3vw, 36px);
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .60), 0 8px 22px rgba(0, 0, 0, .60);
}

.btn--cta {
  background: #c9a33a;
  color: #1b1b1b;
  font-weight: 800;
  padding: .55em 1.6em;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .25);
  transition: .2s;
  font-size: 20px;
}

.btn--cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

/* フッター */
.site-footer {
  background: rgba(0, 0, 0, 0.6);
  /* 半透明黒でテキストの読みやすさを確保 */
  padding: clamp(36px, 5vw, 64px) 0 clamp(24px, 4vw, 40px);
}

.foot__top {
  padding-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.foot__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  align-items: start;
}

.foot__brand a {
  color: #fff;
  text-decoration: none;
}



/* foot__brand と最初の foot__nav の間の縦線（PC表示時） */
@media (min-width: 768px) {
  .foot__grid .foot__nav:first-of-type {
    border-left: 1px solid rgba(255, 255, 255, .28);
    padding-left: 24px;
  }
}

@media (max-width: 1024px) {
  .foot__grid {
    gap: 0;
  }
}

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

  .prefooter-cta__inner {
    padding-inline: 10px;
  }

  .btn--cta {
    font-weight: 600;
    padding: .40em 1.3em;
    font-size: 18px;
  }

  .foot__nav:first-of-type {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

  .foot__brand {
    font-size: 0.9rem;
  }
}

.foot__name {
  margin: 0 0 .3em;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: .06em;
}

.foot__addr,
.foot__tel {
  margin: .2em 0;
  color: #e1e1e1;
  font-size: .9em;
}

.foot__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.foot__nav a {
  color: #fff;
  display: inline-block;
  padding: 6px 8px;
  border-radius: 8px;
  transition: .2s;
}

.foot__nav a:hover {
  background: rgba(255, 255, 255, .1);
}

.foot__bottom {
  padding: clamp(10px, 2vw, 16px) 0;
  font-size: 12px;
  color: #ccc;
  background: rgba(0, 0, 0, .65);
}

/* SNSアイコン */
.sns-list {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sns {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  display: inline-block;
  transition: .15s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.sns:hover {
  background: #2c2c2c;
}

.sns::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #eee;
  opacity: .9;
  -webkit-mask: center/60% no-repeat;
  mask: center/60% no-repeat;
}

.sns--line::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 5.5A6.5 6.5 0 0014  -1H10A6.5 6.5 0 003.5 5.5v3A6.5 6.5 0 0010 15h1l3.5 4.5c.3.4.9.2.9-.3V15A6.5 6.5 0 0020.5 8.5v-3z"/></svg>');
}

.sns--fb::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 3h-2a4 4 0 00-4 4v2H7v3h2v9h3v-9h2.2l.8-3H12V7a1 1 0 011-1h2V3z"/></svg>');
}

.sns--insta::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a5 5 0 015 5v10a5 5 0 01-5 5H7a5 5 0 01-5-5V7a5 5 0 015-5zm5 4a6 6 0 100 12 6 6 0 000-12zm6.5.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z"/></svg>');
}


@media (max-width:960px),
(hover:none),
(pointer:coarse) {
  .nav.open {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    z-index: 9999 !important;
  }

  .nav.open a {
    color: #111 !important;
    display: block !important;
    padding: 14px 24px !important;
  }
}