@charset "utf-8";
/* lpfoods_ponshu.css — お酒LP（sake）専用スタイル */

:root {
  --lp-section-alt-bg: #faf7f2;
  --lp-accent: #8c6f6f;
  --lp-accent-gradient: linear-gradient(90deg, #8c6f6f, #d8a1a1);
  --lp-accent-light-bg: #f7f4f4;
  --lp-channel-border: #1a2a4a;
  --lp-channel-title: #1a2a4a;
  --lp-channel-desc: #1a2a4a;
  --lp-process-border: #8c6f6f;
  --lp-process-number-bg: #8c6f6f;
  --lp-pntiming-border: #8c6f6f;
  --lp-pntiming-icon-bg: #8c6f6f;
  --lp-pntiming-strong: #8c6f6f;
  --lp-consult-icon: #f5d98e;
  --lp-cta-bg: linear-gradient(135deg, #5c5457, #4a4548);
  --lp-cta-color: #fff;
  --lp-cta-border: #b39a9a;
  --lp-cta-hover-bg: linear-gradient(135deg, #8a8285, #6e686b);
  --lp-cta-hover-color: #fff;
  --lp-cta-hover-border: #c9bdbd;
  --lp-cta-hover-transform: translateY(-2px);
  --lp-header-bg: linear-gradient(135deg, rgba(32, 32, 36, 0.96) 0%, rgba(85, 85, 90, 0.96) 50%, rgba(155, 155, 160, 0.96) 100%);
  --lp-header-shadow: 0 8px 24px rgba(80, 60, 60, 0.15);
  --lp-hero-overlay: rgba(30, 41, 59, 0.85);
  --lp-hero-image: url('../images/19201253_saketop.webp');
  --lp-hero-subtitle: rgba(245, 240, 232, 0.9);

  /* sake固有変数 */
  --primary: #5c5457;
  --accent: #8c6f6f;
  --dark: #2a2222;
  --text-main: #2a1f0e;
  --text-sub: #5a4a35;
  --cream: #faf7f2;
  --amber: #c8860a;
  --amber-light: #f5d98e;
  --amber-pale: #fef9ee;
  --wine: #b33e5c;
  --wine-pale: #fdf0f3;
  --wine-mid: #f0c4d0;
  --spirits: #1f5c6b;
  --spirits-pale: #e6f0f3;
  --spirits-mid: #b8d4dc;
  --light-bg: #f7f4f4;
  --border: #e8dcc8;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --gold: #d4a017;
  --red: #c0392b;
  --light-red: #f8ebe9;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  --transition: 0.3s ease;
  --lp-table-scrollbar-thumb: rgba(26, 42, 74, 0.85);
  --ng-light: #fff5f5;
  --ng-middle: #fed7d7;
  --ng-border: #fed7d7;
  --ng-text: #c53030;
  --ok-light: #f0fff4;
  --ok-middle: #c6f6d5;
  --ok-border: #9ae6b4;
  --ok-text: #276749;
}

* {
  list-style-type: none;
}

.hero {
  background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), url('../images/19201253_saketop.webp') center/cover;
}

.section-title {
  color: var(--dark);
}

#label .container {
  padding-top: 3rem;
}

.button-theme,
.button-theme:focus,
.button-theme:hover {
  background-image: none;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* ボタンの影をすべて削除（theme.css / coral.css の box-shadow を上書き） */
a.button,
a.button-theme,
a.hero-cta,
a.big-cta,
a[class*='button-circle'],
.button-theme,
.hero-cta,
.big-cta,
[class*='button-circle-gradient'],
.button-content a {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

a.button:hover,
a.button:focus,
a.button-theme:hover,
a.button-theme:focus,
a.hero-cta:hover,
a.hero-cta:focus,
a.big-cta:hover,
a.big-cta:focus,
a[class*='button-circle']:hover,
a[class*='button-circle']:focus,
.button-theme:hover,
.button-theme:focus,
.hero-cta:hover,
.hero-cta:focus,
.big-cta:hover,
.big-cta:focus,
[class*='button-circle-gradient']:hover,
[class*='button-circle-gradient']:focus,
.button-content a:hover,
.button-content a:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* Classify */
.classify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.classify-card {
  background: var(--lp-white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform var(--transition);
}

.classify-card:nth-child(1) {
  border-top-color: var(--wine);
}

.classify-card:nth-child(2) {
  border-top-color: var(--spirits) !important;
}

.classify-card:nth-child(3) {
  border-top-color: #f59e0b;
}

.classify-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.classify-icon.wine {
  background: linear-gradient(135deg, var(--wine-pale), var(--wine-mid));
  color: var(--wine);
}

.classify-icon.spirits {
  background: linear-gradient(135deg, var(--spirits-pale), var(--spirits-mid));
  color: var(--spirits);
}

.classify-icon.beer {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.classify-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.classify-code {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  font-style: italic;
}

.classify-card ul {
  padding: 0;
}

.classify-list li {
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}

.classify-list li:last-child {
  border-bottom: none;
}

/* Flow */
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.flow-step {
  width: 100%;
  max-width: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  margin-bottom: 20px;
}

.flow-step:hover {
  box-shadow: var(--shadow-lg);
}

.flow-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.flow-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid var(--amber-light);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}

.flow-agency {
  display: flex;
  gap: 6px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.tag.fda {
  background: #dbeafe;
  color: #1d4ed8;
}

.tag.ttb {
  background: #dcfce7;
  color: #15803d;
}

.tag.state {
  background: #fef9c3;
  color: #854d0e;
}

.tag.customs {
  background: #f3e8ff;
  color: #7e22ce;
}

.flow-step h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.9;
}

.flow-note {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #f7f4f4;
  border-left: 3px solid var(--primary);
  color: var(--text-sub);
}

.flow-note p {
  margin: 0;
  line-height: 1.6;
  padding-left: 1.6em;
  position: relative;
}

.flow-note p i {
  position: absolute;
  left: 0;
  top: 0.1em;
  margin-top: 0 !important;
}

.flow-note.highlight {
  background: #f0fdf4;
  border-left-color: #16a34a;
  color: #14532d;
}

.flow-note.warning {
  background: var(--light-red);
  border-left-color: var(--red);
  color: #7c2d12;
}

.docs-box .flow-note.highlight {
  position: relative;
  border: none;
  border-left: 3px solid #16a34a;
  box-sizing: border-box;
  overflow: visible;
}

.docs-box .flow-note.highlight::after {
  content: "";
  position: absolute;
  inset: 0 0 0 3px;
  border: 1px solid rgba(22, 163, 74, 0.45);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  pointer-events: none;
}

.flow-cta {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--lp-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-cta a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flow-cta a:hover {
  color: var(--lp-navy);
}

.docs-box {
  margin-top: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px 22px;
  border: 1px solid var(--border);
  overflow: visible;
}

.docs-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--lp-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.docs-box ul li {
  font-size: 1rem;
  padding: 5px 0 5px 16px;
  border-bottom: 1px dotted var(--border);
  color: var(--text-sub);
  position: relative;
}

.docs-box ul li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 1rem;
}

.docs-box ul li:last-child {
  border-bottom: none;
}

.flow-arrow {
  color: var(--amber);
  font-size: 1.2rem;
  padding: 8px 0;
  opacity: 0.7;
  text-align: center;
  align-self: center;
  width: 100%;
}

/* License */
.license-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.license-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 10px;
}

.license-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition);
}

.license-card p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
}

.license-card.wrong {
  background: var(--ng-light);
  border: 2px solid var(--ng-border);
}

.license-card.correct {
  background: var(--ok-light);
  border: 2px solid var(--ok-border);
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.license-badge.ng {
  background: var(--ng-middle);
  color: var(--ng-text);
}

.license-badge.ok {
  background: var(--ok-middle);
  color: var(--ok-text);
}

/* Label */
.label-card.highlight-card {
  background: linear-gradient(135deg, var(--amber-pale), #fef9ee);
  border-color: var(--amber-light);
}

.label-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.label-card.highlight-card .label-card-title {
  border-bottom-color: var(--amber-light);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px dotted var(--border);
  color: var(--text-main);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li i {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-list li i.gold {
  color: var(--gold);
}

.label-caution {
  background: var(--lp-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.caution-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.caution-title i {
  color: #f59e0b;
  margin-top: 0;
}

.caution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.caution-col {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.caution-col.bad {
  background: var(--ng-light);
  border: 1px solid var(--ng-border);
}

.caution-col.good {
  background: var(--ok-light);
  border: 1px solid var(--ok-border);
}

.caution-col-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.caution-col.bad .caution-col-title {
  color: var(--ng-text);
}

.caution-col.good .caution-col-title {
  color: var(--ok-text);
}

.caution-col ul li {
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
  color: var(--text-sub);
  position: relative;
  padding-left: 14px;
}

.caution-col ul li::before {
  position: absolute;
  left: 0;
}

.caution-col ul li:last-child {
  border-bottom: none;
}

/* Tax */
.tax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tax-card {
  background: linear-gradient(145deg, rgba(140, 111, 111, 0.88) 0%, rgba(106, 98, 101, 0.92) 100%);
  color: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(179, 154, 154, 0.4);
  box-shadow: var(--shadow);
}

.tax-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 0;
}

.tax-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tax-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.9;
  margin-bottom: 16px;
}

.tax-card p strong {
  color: #ffffff;
}

.tax-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.45rem;
}

.tax-icon i {
  line-height: 1;
}

.tax-note {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--amber-light);
  border-radius: 0 8px 8px 0;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tax-note > i {
  flex-shrink: 0;
  color: var(--amber-light);
  margin-top: 0;
}

/* Company / Prior Notice */
.company h3 {
  margin-bottom: 1.25rem;
}

/* HS Table */
.hs-table-wrap {
  margin-bottom: 0;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hs-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 1rem;
  background: var(--lp-white);
}

.hs-table thead tr {
  background: var(--lp-navy);
  color: var(--lp-white);
}

.hs-table thead th,
.hs-table tbody td {
  padding-block: 0.875rem;
  padding-inline: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  box-sizing: border-box;
}

.hs-table thead th {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-bottom: none;
}

.hs-table tbody tr {
  background: var(--lp-white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.hs-table tbody tr:hover {
  background: var(--amber-pale);
}

.hs-table tbody tr:last-child {
  border-bottom: none;
}

.hs-table tbody td {
  color: var(--text-main);
  border-bottom: none;
}

.hs-table td .tag {
  vertical-align: middle;
}

.hs-table .hs-code {
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hs-table .rate {
  font-weight: 700;
  color: var(--amber);
}

.tag.wine-tag {
  background: var(--wine-pale);
  color: var(--wine);
}

.tag.spirits-tag {
  background: var(--spirits-pale);
  color: var(--spirits);
}

.tag.beer-tag {
  background: #fef3c7;
  color: #92400e;
}

.cta-message {
  margin: 3rem 0;
}

/* Footer */
.footer.footer-color-dark_sake .bg-black {
  background: rgba(32, 32, 36, 0.95) !important;
}

.footer.footer-color-dark_sake .lpfoods-footer-copy {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .lp-table-scroll-wrapper .hs-table {
    width: max-content;
    min-width: 680px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .classify-grid,
  .license-compare,
  .tax-grid {
    grid-template-columns: 1fr;
  }

  .caution-grid {
    grid-template-columns: 1fr;
  }

  /* 販路カード（B2B〜B2R）：タイトルを少し大きく */
  #channel .channel-card h3 {
    font-size: 1.75rem;
  }

  /* 手続きフロー：CTAを2行表示（テキスト行＋リンク行） */
  .flow-cta {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 0.25rem;
  }

  .flow-cta a {
    flex: 1 1 100%;
    padding-left: 1.35rem; /* アイコン分インデントして2行目に */
  }

  /* 輸出者として用意する書類：「・」のインデントをなくす */
  .docs-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    padding-left: 0;
  }

  .docs-box ul li::before {
    display: none;
  }

  .docs-box ul li i {
    flex-shrink: 0;
    margin-left: 0;
    line-height: 1.35;
  }

  /* 5つの要点：h3横に番号、pは番号の下にも回り込む */
  .process-item {
    display: block;
    padding: 1.15rem 1rem;
  }

  .process-item::after {
    content: '';
    display: block;
    clear: both;
  }

  .process-number {
    float: left;
    width: 36px;
    height: 36px;
    margin-right: 0.75rem;
    margin-bottom: 0.35rem;
    background: var(--accent);
  }

  .process-content {
    display: contents;
  }

  .process-content h3 {
    margin-bottom: 0.4rem;
    line-height: 1.45;
  }

  .process-content p {
    line-height: 1.65;
  }

  /* Prior Notice：Safariでも確実にpを左端全幅へ（common.cssと同内容） */
  .pntiming-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0 0.65rem;
    padding: 1rem 0.85rem;
  }

  .pntiming-icon {
    flex: 0 0 36px;
    float: none;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .pntiming-content {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .pntiming-content h3 {
    margin: 0 0 0.35rem;
    line-height: 1.45;
  }

  .pntiming-content p {
    margin: 0;
    line-height: 1.65;
  }

  /* FDA共通要件〜実践すべきこと：responsiveでインデントなし */
  #label .check-list li {
    gap: 0.35rem;
    padding-inline: 0;
  }

  #label .check-list li i {
    margin-left: 0;
    margin-top: 2px;
  }

  #label .caution-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    padding-left: 0;
  }

  #label .caution-col ul li::before {
    display: none;
  }

  #label .caution-col ul li i {
    flex-shrink: 0;
    margin-left: 0;
    line-height: 1.35;
  }

  .consult-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .consult-item {
    padding: 0.85rem 0.55rem;
  }

  .consult-item h4,
  .consult-item h5 {
    margin-bottom: 0.15rem;
  }

  .consult-item p {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hs-table-wrap {
    margin-bottom: 0;
  }

  .hs-table thead th,
  .hs-table tbody td {
    padding-block: 0.65rem;
    padding-inline: 0.55rem;
    line-height: 1.5;
  }

  .hs-table thead th {
    font-size: 0.875rem;
  }

  .hs-table tbody td {
    font-size: 0.9375rem;
  }

  .hs-table tbody td:last-child {
    font-size: 0.875rem;
  }

  .hs-table .hs-code {
    font-weight: 700;
    font-size: 0.9375rem;
  }

  .hs-table .rate {
    white-space: nowrap;
  }
}
