/* ============================================================
   global.html - page-specific stylesheet
   PC-first / breakpoints: 1200px, 960px, 568px
============================================================ */

/* ------------------------------------------------------------
   From Osaka to the World
   (reuses .global_caption / .global_map / .global_points /
   .global_statement* utilities defined in common.css)
------------------------------------------------------------ */
.world { padding: 96px 0; background: var(--c_white); }

@media (max-width: 1200px) {
  .world { padding: 72px 0; }
}
@media (max-width: 568px) {
  .world { padding: 56px 0; }
}

/* ------------------------------------------------------------
   Markets (展開市場)
------------------------------------------------------------ */
.markets { padding: 160px 0; background: var(--c_bg_alt); }
.markets_head { text-align: center; margin-bottom: 112px; }
.markets_head .section_label { text-align: center; margin-bottom: 16px; }
.markets_heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--c_accent);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}
.markets_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.region_card_media { width: 100%; aspect-ratio: 352 / 220; overflow: hidden; margin-bottom: 24px; }
.region_card_media img { width: 100%; height: 100%; object-fit: cover; }
.region_card_label { font-size: 13px; letter-spacing: 0.2em; color: var(--c_label); margin: 0 0 8px; }
.region_card_title { font-size: 30px; font-weight: 500; color: var(--c_black); letter-spacing: 0.03em; margin: 0 0 16px; }
.region_card_text { margin: 0; }

@media (max-width: 1200px) {
  .markets { padding: 120px 0; }
  .markets_head { margin-bottom: 88px; }
  .markets_grid { gap: 60px; }
}
@media (max-width: 960px) {
  .markets_grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 568px) {
  .markets { padding: 80px 0; }
  .markets_head { margin-bottom: 56px; }
  .markets_heading { font-size: 36px; }
  .markets_grid { gap: 20px; }
}


/* ------------------------------------------------------------
   Logistics (輸出・物流フロー)
------------------------------------------------------------ */
.logistics { padding: 160px 0; background: var(--c_white); }
.logistics_head { text-align: center; margin-bottom: 112px; }
.logistics_head .section_label { text-align: center; margin-bottom: 16px; }
.logistics_heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--c_accent);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}
.logistics_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.logistics_step { position: relative; background: var(--c_white); padding: 32px; }
.logistics_step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: calc(100% + 0px);
  width: 40px;
  height: 1px;
  background: var(--c_border);
}
.logistics_step_no { display: block; font-size: 48px; font-weight: 500; color: var(--c_border); margin-bottom: 16px; }
.logistics_step_title { font-size: 18px; font-weight: 500; color: var(--c_black); letter-spacing: 0.03em; margin: 0 0 12px; }
.logistics_step_text { margin: 0; }

@media (max-width: 1200px) {
  .logistics { padding: 120px 0; }
  .logistics_head { margin-bottom: 88px; }
  .logistics_grid { gap: 24px; }
}
@media (max-width: 960px) {
  .logistics_grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .logistics_step:not(:last-child)::after { display: none; }
}
@media (max-width: 568px) {
  .logistics { padding: 80px 0; }
  .logistics_head { margin-bottom: 56px; }
  .logistics_heading { font-size: 36px; }
  .logistics_grid { grid-template-columns: 1fr; }
}

