@charset "UTF-8";
/* style.scss（または main.scss）の先頭で読み込む */
/*////////////////////////////////////////////////////

    汎用スタイル

////////////////////////////////////////////////////*/
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  border: none;
  vertical-align: top;
  zoom: 1;
}

/* 以降、変数・レイアウト・コンポーネントを記述 */
/* ------------------------------------------------------------------
  1. CONFIGURATION & VARIABLES
------------------------------------------------------------------ */
/* ------------------------------------------------------------------
  2. RESET / BASE
------------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #222;
  background: #f4f7fa;
}

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

/* ------------------------------------------------------------------
  3. LAYOUT HELPERS (l-*)
------------------------------------------------------------------ */
.head {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
}
@media (max-width: 768px) {
  .head {
    height: 50px;
  }
}
.head p {
  margin-left: 0.5rem;
}
.head p a {
  height: 70px;
  display: inline-block;
}
@media (max-width: 768px) {
  .head p a {
    height: 50px;
  }
}
.head p a img {
  width: auto;
  height: 100%;
}

.l-container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.l-header {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .l-header {
    margin-top: 50px;
  }
}

.l-header {
  background: #fff;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .l-header {
    padding: 2.5rem 0;
  }
}

.l-footer {
  background-color: #0068af;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer .c-copy {
  color: #fff;
  font-size: 0.7rem;
}
.l-footer .contact {
  background: #fff;
  padding: 5px 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  color: #0068af;
  text-decoration: none;
  font-size: 0.8rem;
  border-radius: 0;
}

/* ------------------------------------------------------------------
  4. TYPOGRAPHY
------------------------------------------------------------------ */
.c-headingPrimary {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.5;
}

.c-headingSub {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  font-weight: bold;
  margin: 0;
}

.c-meta {
  margin-top: 0.8rem;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}
.c-meta span {
  font-size: 0.9rem;
  display: block;
  font-weight: normal;
}

/* ------------------------------------------------------------------
  5. SECTION WRAPPER
------------------------------------------------------------------ */
.c-section {
  padding: 3rem 0;
}
.c-section--alt {
  background: #fff;
}
.c-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.4;
}
.c-section__title span.u-en {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  margin-left: 0.5rem;
  color: #4699d1;
}

/* 1. HEADER / PARALLAX
   -------------------------------------------------------------- */
.l-header {
  position: relative;
  min-height: clamp(40vh, 50vh, 520px);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .l-header {
    height: 100vh;
  }
}
.l-header__bg {
  position: absolute;
  inset: 0;
  background: url("../img/H2FCEXPO2025.jpg") center/cover no-repeat;
  background-position: center 0;
  will-change: background-position;
  /* ----- PC (CSS パララックス) ----- */
}
@media (min-width: 768px) {
  .l-header__bg {
    background-attachment: fixed;
  }
}
.l-header .l-container {
  position: relative;
  z-index: 1;
  padding-inline: 5%;
}

/* ------------------------------------------------------------------
  7. GRID UTILITIES
------------------------------------------------------------------ */
.c-cardGrid {
  --min-col: 260px;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(var(--min-col), 1fr));
}
@media (min-width: 768px) {
  .c-cardGrid {
    grid-template-columns: repeat(auto-fit, minmax(var(--min-col), var(--min-col)));
    justify-content: center;
  }
}

.c-videoGrid {
  --min-col: 260px;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(var(--min-col), 1fr));
}
@media (min-width: 768px) {
  .c-videoGrid {
    grid-template-columns: repeat(auto-fit, minmax(var(--min-col), var(--min-col)));
    justify-content: center;
  }
}

/* ------------------------------------------------------------------
   7-c. HORIZONTAL GRID FOR PANELS
------------------------------------------------------------------ */
.c-cardGrid--hPanel {
  --min-col: 420px;
  display: grid;
  gap: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(var(--min-col), 1fr));
}
@media (max-width: 767.98px) {
  .c-cardGrid--hPanel {
    /* スマホでは 1 列で縦積み */
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   7-d. VERTICAL PANEL GRID (3 per row, centered)
------------------------------------------------------------------ */
.c-cardGrid--panel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  /* —— PC：3 枚固定 —— */
  max-width: calc(780px + 4rem);
  margin-inline: auto;
  /* —— Tablet：2 枚固定 —— */
  /* —— Mobile：1 列 —— */
}
.c-cardGrid--panel .c-card {
  flex: 0 0 260px;
  width: 260px;
}
@media (max-width: 1023.98px) {
  .c-cardGrid--panel {
    max-width: calc(520px + 2rem);
  }
  .c-cardGrid--panel .c-card {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 767.98px) {
  .c-cardGrid--panel {
    max-width: none;
  }
  .c-cardGrid--panel .c-card {
    flex: 1 1 100%;
  }
}

/* ------------------------------------------------------------------
  8. COMPONENT: CARD
------------------------------------------------------------------ */
.c-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
.c-card__thumb img {
  width: 100%;
  object-fit: cover;
}
.c-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
.c-card__title.mb10 {
  margin-bottom: 0.8rem;
}
.c-card__title.mt10 {
  margin-top: 0.8rem;
}
.c-card__sub {
  font-size: 0.8rem;
  margin: 0;
  color: #555;
  font-weight: normal;
}

.c-card,
a.c-card {
  color: #333 !important;
  text-decoration: none;
}

.c-card:hover {
  color: #333 !important;
}

/* 子要素の色も継承させる（念のため） */
.c-card__title,
.c-card__sub {
  color: inherit;
}

.c-card__sub {
  color: #555 !important;
  line-height: 1.4;
}

sub {
  font-size: 75%;
  vertical-align: baseline;
}

/* ------------------------------------------------------------------
   8-b. PANEL VARIANT（縦長画像を 4:3 で固定クロップ）
------------------------------------------------------------------ */
/* ── 8-b. PANEL VARIANT 上書き ─────────────────── */
.c-card--panel {
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  /* ← 外側余白なしで幅を一定に */
  /* テキスト領域は可変 */
  /* 画像サムネイル */
}
.c-card--panel:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}
.c-card--panel .c-card__body {
  flex: 1 1 auto;
  padding: 0;
}
.c-card--panel .c-card__thumb {
  margin-top: auto; /* ★ 画像をカードのいちばん下へ */
  display: flex;
  justify-content: center;
  padding-top: 0.8rem;
}
.c-card--panel .c-card__thumb img {
  height: 200px; /* ★ 高さ固定でベタ拡大を防ぐ */
  width: auto; /* 横幅は自動で縮小 */
  max-width: 100%; /* 横長画像はカード幅を超えない */
  object-fit: contain; /* 縦横比を保持 */
}

/* ------------------------------------------------------------------
   8-c. HORIZONTAL PANEL (img right / text left)
------------------------------------------------------------------ */
.c-card--hPanel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 180px;
  border-radius: 0;
  overflow: hidden;
  align-items: center;
  /* 画像ブロック */
  /* テキスト側 */
  /* スマホ：従来の縦レイアウト */
}
.c-card--hPanel .c-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 240px;
  width: 240px;
  height: 180px;
  overflow: hidden;
  background: #fff;
}
.c-card--hPanel .c-card__thumb img {
  max-width: 100%;
  object-position: center;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.c-card--hPanel .c-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767.98px) {
  .c-card--hPanel {
    flex-direction: column;
  }
  .c-card--hPanel .c-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

/* ──────────────────────────────────────────────
   8-b. PANEL / PPT / BROCHURE : text-center + align-center
────────────────────────────────────────────── */
.c-card--panel .c-card__body,
.c-card--ppt .c-card__body,
.c-card--brochure .c-card__body {
  text-align: center; /* ← 見出しと本文を中央寄せ */
  align-items: center; /* ← flex 子要素（h3・p）を中央揃え */
}

.c-card--brochure {
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-card--brochure:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* ── 8-d. PPT VARIANT ─────────────────────────── */
.c-card--ppt {
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-card--ppt:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* ------------------------------------------------------------------
  9. COMPONENT: VIDEO TILE
------------------------------------------------------------------ */
.c-video {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-video .c-video__thumb img {
  border-radius: 0;
  width: 100%;
}
.c-video .c-video__title {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.c-video .c-video__title span {
  display: block;
  font-size: 0.8rem;
  color: #555555;
  font-weight: normal;
}
.c-video .c-video__title span.red {
  color: #d50000;
}

/* ── 9-b. VIDEO LINKS ─────────────────────────── */
.c-video {
  position: relative;
  text-align: center;
}
.c-video .c-video__links {
  margin-top: 0.75rem;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.c-video .c-video__links a {
  font-size: 0.8rem;
  color: #fff;
  font-weight: bold;
  background: #0068af;
  padding: 0.25rem 1rem;
  border-radius: 0;
}

/* ------------------------------------------------------------------
  10. COMPONENT: BROCHURE BUTTONS
------------------------------------------------------------------ */
.c-brochureList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-btn {
  display: inline-block;
  background: #0068af;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
  margin-top: 10px;
}
.c-btn--sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}
.c-btn:hover, .c-btn:focus {
  background: #005086;
}/*# sourceMappingURL=style.css.map */