/* style.css */

/* ===== Design Tokens ===== */
:root {
  --c-text:      #333333;
  --c-text-sec:  #666666;
  --c-text-mut:  #838383;
  --c-white:     #ffffff;
  --c-surface:   #f2f2f2;
  --c-border:    #efefef;
  --c-section:   #e5e5e5;
  --c-bar:       #1a1a1a;
  --c-accent:    #c29e76;
  --font: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic Pro", メイリオ, "ＭＳ Ｐゴシック", sans-serif;
  --font-serif: "Noto Serif", Georgia, serif;
  --max: 1280px;
  --px: 24px;
}

/* ===== Base ===== */
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--c-text);
  background: var(--c-white);
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:hover { text-decoration: underline; }

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

/* レスポンシブ: Base (max-width: 767px) */
@media (max-width: 767px) {
  :root { --px: 16px; }
}

/* ===== Shared Section Styles ===== */
.section { padding: 120px 0; }

.section-label {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--c-text);
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-header .section-heading { margin-bottom: 0; }

.view-more {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 2px;
  white-space: nowrap;
}
.view-more:hover { text-decoration: none; opacity: 0.6; }

/* レスポンシブ: Shared Section (max-width: 767px) */
@media (max-width: 767px) {
  .section { padding: 80px 0; }
}

/* レスポンシブ: Shared Section (max-width: 640px) */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-heading { font-size: 28px; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.0;
  text-transform: uppercase;
  flex-shrink: 0;
  color: #9c7141;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.site-nav a {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.site-nav a:hover { text-decoration: none; opacity: 0.6; }

.header-cart {
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* レスポンシブ: HEADER (max-width: 767px) */
@media (max-width: 767px) {
  .site-nav { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}

.hero-pagination {
  bottom: 24px !important;
}
.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--c-white);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
}

.btn-hero {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-bar);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 36px;
  transition: opacity 0.2s;
}
.btn-hero:hover { opacity: 0.85; text-decoration: none; }

.hero-side {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-side-text {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero-side-bar {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.hero-side-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* レスポンシブ: HERO (max-width: 767px) */
@media (max-width: 767px) {
  .hero      { height: 520px; }
  .hero-side { display: none; }
}

/* レスポンシブ: HERO (max-width: 640px) */
@media (max-width: 640px) {
  .hero { height: 460px; }
}

/* ===== STRENGTHS ===== */
#strengths_block .section-label,
#strengths_block .section-heading { text-align: center; }

#mission_block .section-label,
#mission_block .section-heading { text-align: center; }

.strengths-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.strength-item {
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid #efefef;
}
.strength-item:first-child {
  border: none;
}

.strength-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--c-text);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.strength-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--c-text-sec);
}

/* レスポンシブ: STRENGTHS (max-width: 767px) */
@media (max-width: 767px) {
  .strengths-wrap { grid-template-columns: 1fr; }
  .strength-item  { padding: 40px 24px; border-left: none; border-top: 1px solid #efefef; }
  .strength-item:first-child { border-top: none; }
}

/* ===== PICK UP ITEMS ===== */
.section-alt { background: #fafafa; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.product-card { display: block; }
.product-img a:hover .product-img-inner { opacity: 0.82; }

.product-img {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  position: relative;
  overflow: hidden;
}

.product-img-inner {
  position: absolute;
  inset: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center top;
}

.img-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.0;
}
.badge-new     { color: #f23e0c; }
.badge-restock { color: #8fb347; }

.product-info { padding: 16px 0 0; }

.product-category {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mut);
  margin-bottom: 4px;
}

.product-name {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

.product-sizes {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-text-mut);
  margin-top: 5px;
  line-height: 1.7;
}

/* レスポンシブ: PICK UP ITEMS (max-width: 1023px) */
@media (max-width: 1023px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* レスポンシブ: PICK UP ITEMS (max-width: 767px) */
@media (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== CATEGORY — Bento ===== */
.category-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px 280px;
  gap: 8px;
}

/* トップス — large hero */
.cat-card:nth-child(1) { grid-column: 1;     grid-row: 1 / 3; }
/* アウター */
.cat-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
/* ボトムス */
.cat-card:nth-child(3) { grid-column: 2 / 4; grid-row: 2; }
/* セットアップ */
.cat-card:nth-child(4) { grid-column: 1;     grid-row: 3; }
/* 小物・帽子・シューズ — wide */
.cat-card:nth-child(5) { grid-column: 2 / 4; grid-row: 3; }

.cat-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 24px;
  transition: background 0.25s;
}
.cat-card:hover .cat-overlay { background: rgba(0,0,0,0.5); }
.cat-card:hover { text-decoration: none; }
.cat-en {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.cat-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--c-white);
}

/* レスポンシブ: CATEGORY (max-width: 1023px) */
@media (max-width: 1023px) {
  .category-grid              { grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px 160px 160px; }
  .cat-card:nth-child(1)      { grid-column: 1 / 3; grid-row: 1 / 3; }
  .cat-card:nth-child(2)      { grid-column: 1;     grid-row: 3; }
  .cat-card:nth-child(3)      { grid-column: 2;     grid-row: 3; }
  .cat-card:nth-child(4)      { grid-column: 1;     grid-row: 4; }
  .cat-card:nth-child(5)      { grid-column: 2;     grid-row: 4; }
}

/* レスポンシブ: CATEGORY (max-width: 767px) */
@media (max-width: 767px) {
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 140px 140px; }
}

/* レスポンシブ: CATEGORY (max-width: 640px) */
@media (max-width: 640px) {
  .category-grid { grid-template-rows: 160px 160px 120px 120px; }
  .cat-ja        { font-size: 15px; }
}

/* ===== BRAND CONCEPT ===== */
.concept-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.concept-img {
  background-image: url('../img/concept.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.concept-img-text {
  font-size: 100px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  line-height: 1.0;
  user-select: none;
  position: absolute;
}

.concept-body-wrap {
  background: var(--c-surface);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept-label-tag {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mut);
  margin-bottom: 24px;
}

.concept-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.concept-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--c-text-sec);
  margin-bottom: 48px;
}

.btn-outline {
  font-family: var(--font-serif);
  display: inline-block;
  border: 1px solid var(--c-text);
  color: var(--c-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 30px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--c-text); color: var(--c-white); text-decoration: none; }

/* レスポンシブ: BRAND CONCEPT (max-width: 767px) */
@media (max-width: 767px) {
  .concept-wrap      { grid-template-columns: 1fr; }
  .concept-img       { min-height: 220px; }
  .concept-body-wrap { padding: 64px var(--px); }
}

/* レスポンシブ: BRAND CONCEPT (max-width: 640px) */
@media (max-width: 640px) {
  .concept-body-wrap { padding: 48px var(--px); }
  .concept-heading   { font-size: 22px; }
}

/* ===== INSTAGRAM ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.insta-post {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.insta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.insta-post:hover .insta-overlay { opacity: 1; }

.insta-icon {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insta-cta {
  text-align: center;
  margin-top: 40px;
}

.insta-handle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-bar);
  color: var(--c-white);
  padding: 96px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
}
.footer-nav a:hover { color: var(--c-white); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-copy, .footer-base {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.28);
}

/* レスポンシブ: FOOTER (max-width: 1023px) */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* レスポンシブ: FOOTER (max-width: 767px) */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== NEWS ===== */
.news-section { padding-bottom: 80px; }

.news-list { list-style: none; border-top: 1px solid var(--c-border); }

.news-item {
  display: grid;
  grid-template-columns: 100px 52px 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
}

.news-date {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-text-mut);
  white-space: nowrap;
}

.news-tag {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mut);
  border: 1px solid var(--c-accent);
  padding: 2px 7px;
  white-space: nowrap;
}

.news-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--c-text);
}

/* レスポンシブ: NEWS (max-width: 767px) */
@media (max-width: 767px) {
  .news-item { grid-template-columns: 90px 44px 1fr; gap: 12px; }
}

/* レスポンシブ: NEWS (max-width: 640px) */
@media (max-width: 640px) {
  .news-item { grid-template-columns: 76px 40px 1fr; gap: 8px; }
  .news-date  { font-size: 11px; }
  .news-tag   { font-size: 9px; padding: 2px 5px; letter-spacing: 0.08em; }
  .news-text  { font-size: 13px; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 70px 0 50px;
}

.page-hero-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 28px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--c-text);
}

/* ===== BREADCRUMB ===== */
.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.breadcrumb { padding-bottom: 4px; }

.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mut);
}

.breadcrumb li + li::before {
  content: '/';
  margin: 0 8px;
  color: var(--c-border);
}

.breadcrumb a { color: var(--c-text-mut); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--c-accent); text-decoration: none; }

/* レスポンシブ: PAGE HERO (max-width: 767px) */
@media (max-width: 767px) {
  .page-hero-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===== ABOUT ===== */
.about-concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-concept-visual {
  background: linear-gradient(135deg, #262626, #161616);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-text {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.07);
}

.about-body {
  font-size: 15px;
  font-weight: 500;
  line-height: 260%;
  letter-spacing: 0.08em;
  color: var(--c-text-sec);
  margin-bottom: 20px;
}
.about-body:last-child { margin-bottom: 0; }

.about-story-body {
  max-width: 840px;
  text-align: center;
  margin: 0 auto;
}

/* ===== SIZE GUIDE ===== */
.about-size-lead {
  max-width: 720px;
  margin-bottom: 48px;
}

.size-guide-wrap {
  border-top: 1px solid var(--c-border);
  margin-bottom: 16px;
}

.size-guide-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  letter-spacing: 0.03em;
  align-items: center;
}

.size-guide-header {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-mut);
}

.size-label {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-text);
}

.about-size-note {
  font-size: 12px;
  color: var(--c-text-mut);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ===== COMPANY TABLE ===== */
.company-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
}

.company-table tr { border-bottom: 1px solid var(--c-border); }
.company-table tr:first-child { border-top: 1px solid var(--c-border); }

.company-table th {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-text-mut);
  padding: 20px 0;
  width: 160px;
  vertical-align: top;
  text-align: left;
}

.company-table td {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--c-text);
  padding: 20px 0;
  line-height: 1.8;
}

/* レスポンシブ: ABOUT (max-width: 767px) */
@media (max-width: 767px) {
  .about-concept         { grid-template-columns: 1fr; gap: 40px; }
  .about-concept-visual  { order: -1; aspect-ratio: 16 / 7; }
  .size-guide-row        { grid-template-columns: 60px 1fr 1fr; }
  .size-guide-row span:last-child    { display: none; }
  .size-guide-header span:last-child { display: none; }
  .company-table th      { width: 110px; }
}

/* レスポンシブ: ABOUT (max-width: 640px) */
@media (max-width: 640px) {
  .company-table th { width: 90px; font-size: 12px; }
  .company-table td { font-size: 13px; }
}
