@charset "UTF-8";
/* CSS Document */

:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-subtext: #666666;
  --color-border: #ccc;
  --color-header-bg: #000000;
  --color-header-text: #ffffff;

  --color-accent: #f4a300;
  --color-highlight: #d54787;
  --color-info: #009fe3;
  --color-success: #007934;
  --color-deep: #00558b;
  --color-muted: #8d7962;

  --color-btn-bg: #555;
  --color-btn-hover: #333;
  --color-flow-step: #ddd;
  --color-flow-hover: #c0c0c0;
  --color-flow-number: #777;
  --color-soft-deep: #7a8ca5;
}

body {
  margin: 0;
  padding: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 87.5%;
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg);
}

p {
  margin: 0 0 20px 0;
  text-align: center;
}

h1 {
  border-bottom: 2px solid #333;
  text-align: center;
}

.top-catch {
  line-height: 1.3;
}

.top-catch span {
  white-space: nowrap;
}

.sp-break {
  display: none;
}

@media screen and (max-width: 768px) {

  .top-catch {
    font-size: 2rem;
    padding: 0 12px;
  }

  .sp-break {
    display: block;
  }

}
section {
  margin: 40px 0;
  padding: 0;
}

section h2 {
  font-size: 1.6em;
  font-weight: bold;
  border-bottom: 2px solid var(--color-soft-deep);
  color: var(--color-text);
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  text-align: center;
}

section p {
  color: var(--color-subtext);
  line-height: 1.6;
  margin-bottom: 1.2em;
}

/* 共通幅 */
header,
nav,
#path,
main {
  max-width: 1000px;
  margin: 0 auto;
}

/* パンくず */
#path ol {
  list-style-type: none;
  padding: 0;
  display: flex;
}

#path ol li {
  margin-right: 5px;
}

#path ol li:after {
  content: ">";
  padding: 0 10px;
  color: #999;
}

#path ol li:last-child:after {
  display: none;
}

/* ヘッダー */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

header .logo img {
  height: 60px;
}

/* 共通ナビ */
nav ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul li {
  flex: 1rem;
  text-align: center;
  border: none;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s, background-color 0.3s;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #d54747;
  transition: width 0.3s;
}

nav ul li a:hover {
  color: #d54747;
  background-color: rgba(213, 71, 71, 0.1);
}

nav ul li a:hover::after {
  width: 100%;
}

/* header内のnavは少し調整 */
header nav ul {
  gap: 8px;
  margin: 0;
  border: none;
}

header nav li {
  flex: initial;
  border: none;
}

header nav li a {
  color: var(--color-text);
  padding: 6px 10px;
}

/* PCではメニューボタン非表示 */

.menu-toggle {
  display: none;
}
/* ===== やました商店について ===== */
.hero-image {
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.top-guide {
  margin: 20px auto 32px;
  padding: 18px 16px;
  max-width: 720px;
  background: #fff5f9; /* 薄いピンク */
  border: 1px solid #f3c2d6; /* ピンク系の枠 */
  border-radius: 12px;
  text-align: center;
}

.top-guide p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #333;
}

.guide-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-highlight);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.guide-btn:hover {
  background: #c63b72;
}

.top-schoolfes-guide {
  margin: 20px auto 32px;
  padding: 18px 16px;
  max-width: 720px;
  background: #f3fbff;
  border: 1px solid #cdeaf8;
  border-radius: 12px;
  text-align: center;
}

.top-schoolfes-guide p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #333;
}
.btn-schoolfes-top {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-info);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.btn-schoolfes-top:hover {
  background: #007ac0;
}

#news {
  margin-top: 0;
  padding-bottom: 10px;
}

.news-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.news-type {
  margin: 0 8px;
  font-size: 0.9em;
}

.news-item--pinned .news-type {
  color: #d54747;
  font-weight: bold;
}

/* 価格改定・終売情報 */
#priceUpdates {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}

.price-update-item {
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-left: 5px solid #d54747;
  border-radius: 10px;
  background: #fff;
  line-height: 1.6;
}

.price-update-date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 4px;
}

.price-update-category {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: bold;
  color: #d54747;
}

.price-update-product {
  font-weight: bold;
  font-size: 1.05em;
}

.price-update-price {
  margin-top: 4px;
  font-weight: bold;
}

.price-update-timing {
  margin-top: 4px;
  font-size: 0.9em;
  color: #666;
}

.price-discontinued {
  color: #d54747;
  font-weight: bold;
}

/* 価格改定・終売情報一覧ページ */
.price-archive-section {
  max-width: 760px;
  margin: 40px auto;
}

.price-archive-section > p {
  text-align: center;
}

.price-archive-group {
  margin: 32px 0;
}

.price-archive-heading {
  padding: 8px 12px;
  border-left: 5px solid #d54747;
  background: #f8f8f8;
  font-size: 1.15rem;
}

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


.bhour {
  display: flex;
  justify-content: space-between;
}

.bhour div {
  flex: 1;
  text-align: center;
  margin: 0 1%;
}

div ul {
  list-style-type: none;
  padding-left: 20px;
  padding-bottom: 0;
}

.access {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
}

.map {
  display: block;
}

.map img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

#direction {
  max-width: calc(100% - 420px);
  min-width: 250px;
}

/* フッター */
footer {
  border-top: 1px solid #666;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

/* ===== 仕入れについて ===== */
.system p:last-child {
  margin-top: 20px;
  margin-bottom: 0;
}

.list-heading {
  font-weight: bold;
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-align: left;
  display: block;
}

.system,
.returnok {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.system ul,
.returnok ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  list-style-position: inside;
  margin: 0 auto;
  width: fit-content;
}

.system ul li,
.returnok ul li {
  text-align: left;
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
}

.system h3,
.returnok h3 {
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  display: inline-block;
  margin: 10px auto 10px;
}

.unchin small {
  display: block;
}
.table_1 table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border-radius: 10px;
}

.table_1 th,
.table_1 td,
.table_2 th,
.table_2 td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.table_2 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.table_2 table th:first-child {
  border-top-left-radius: 10px;
}

.table_2 table th:last-child {
  border-top-right-radius: 10px;
}

.table_2 table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.table_2 table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.table_1 th,
.table_2 th {
  background-color: #f0f0f0;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iPhoneでぬるっとスクロール */
}

.table-scroll table {
  min-width: 600px; /* ← ここ重要（テーブル潰れ防止） */
}

.cap {
  font-size: 0.5em;
  text-align: right;
  display: inline-block;
  width: 100%;
}

.cap-wrapper {
  text-align: right;
}

p.unchin {
  margin: 2px 0;
  line-height: 1.2;
  text-align: right;
  padding-right: 10px;
}

/* ===== ご提案例 ===== */
.btn-container {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-festival,
.btn-schoolfes {
  display: block;
  width: 80%;
  max-width: 350px;
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-festival {
  background: var(--color-highlight);
}

.btn-festival:hover {
  background: #c63b72;
  transform: scale(1.05);
}

.btn-schoolfes {
  background: var(--color-info);
}

.btn-schoolfes:hover {
  background: #007ac0;
  transform: scale(1.05);
}

/* ===== リース品紹介 ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  text-align: center;
}

.card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.card-image {
  min-height: 75px;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.card h2 {
  font-size: 1.2em;
}

.card button {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background: #e38e00;
}

.card .swiper {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper.card-slider {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.swiper-wrapper {
  width: 100%;
  display: flex;
}

.swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 5px;
}

.card-footer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 auto;
}

.modal-content img {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.close-modal:hover {
  color: black;
}

.okesize {
  margin-bottom: 10px;
}

.oke {
  margin: 0 auto 20px auto;
}

/* ===== 文化祭で駄菓子を売ろう ===== */
.img-caption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 8px;
}

.modal video,
.swiper-slide video {
  width: 50%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.card-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}

.dagashi-card {
  min-height: 200px;
  flex: 1;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

caption.corner {
  font-weight: 600;
}

.dagashi-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 4px;
}

.dagashi-card p {
  margin-top: 16px;
  line-height: 1.4;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.dagashi-card:hover {
  transform: translateY(-4px);
}

.wave-underline {
  position: relative;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ff4d4d;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
    
}

.schoolfes-hero {
  max-width: 760px;
  margin: 30px auto 40px;
  padding: 24px 18px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 14px;
  text-align: center;
}

.schoolfes-set-section {
  text-align: center;
}

.schoolfes-set-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 24px;
}

.schoolfes-set-card {
  width: 100%;
  max-width: 360px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
}
.schoolfes-set-card .guide-btn {
  margin-top: auto;
  align-self: center;
}

.schoolfes-set-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
}

.schoolfes-set-card h3 {
  margin: 10px 0;
  font-size: 1.25rem;
  text-align: center;
}

.schoolfes-set-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #666;
}

.schoolfes-form-section {
  max-width: 820px;
  margin: 50px auto;
  text-align: center;
}

.schoolfes-form-wrap {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.price-note {
  font-size: 0.8em;
  color: #666;
  font-weight: normal;
}

.schoolfes-festival-link {
  text-align: center;
  margin: 30px 0 10px;
}

.schoolfes-set-card .guide-btn {
  display: inline-block;
  width: auto;
  max-width: none;
  padding: 12px 24px;
  margin-top: auto;
  align-self: center;

  background: var(--color-btn-bg);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.schoolfes-set-card .guide-btn:hover {
  background: #007ac0;
}

/* ===== schoolfes.html内：縁日コーナーへの導線 ===== */
.schoolfes-festival-link .guide-btn {
  background: var(--color-highlight);
  color: #fff;
}

.schoolfes-festival-link .guide-btn:hover {
  background: #c63b72;
}
/* ===== 会社概要 ===== */
.company-profile dt {
  font-weight: bold;
}

/* ===== PC・タブレット：3列表示 ===== */
@media (min-width: 768px) {
  .card-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .card {
    width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin: 0;
  }

  .step p {
    font-size: 0.9em;
    line-height: 1.5;
    color: var(--color-text);
  }

  .setting-table td::before,
  .game-table td::before {
    content: none;
  }
}

/* ===== スマホ共通 ===== */
@media (max-width: 768px) {
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px 0;
  position: relative;
}

header .logo img {
  height: 72px;
}

header nav {
  width: 100%;
  margin-top: 8px;
}

header nav ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  column-gap: 24px;
  row-gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
}

header nav li {
  width: auto !important;
  padding: 0;
  border: none !important;
  text-align: center;
}

header nav li a {
  display: inline-block;
  padding: 4px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 0;
}

header nav li a::after {
  display: none;
  content: none;
}

header nav li a:hover,
header nav li a:focus {
  color: #d54747;
  background: none;
}
  main {
    padding: 0 12px;
    box-sizing: border-box;
  }

  #path {
    padding: 0 12px;
    box-sizing: border-box;
  }

  #path ol {
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  section {
    margin: 28px 0;
  }

  section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8em;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

.top-guide {
    margin: 16px auto 24px;
    padding: 16px 14px;
  }

  .guide-btn {
    width: 100%;
    max-width: 320px;
  }
    
  .bhour {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .bhour div,
  .bhour .bhour-item {
    margin: 0;
    width: 100%;
  }

  .bhour ul {
    padding-left: 0;
  }

  .access {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .map img {
    width: 100%;
    max-width: 480px;
    height: auto;
  }

  .map,
  .map img {
    width: 100%;
    max-width: 100%;
  }

  #direction {
    max-width: none;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .game-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .game-table table {
    min-width: 600px;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }

  .game-table th,
  .game-table td {
    white-space: nowrap;
    display: table-cell;
    padding: 5px;
    border: 1px solid #ddd;
    text-align: left;
  }

  footer {
    padding: 16px 12px;
  }

  footer p {
    line-height: 1.6;
    word-break: break-word;
  }
    
.schoolfes-set-card {
    max-width: 100%;
  }

  .schoolfes-form-wrap iframe {
    height: 1000px;
  }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;

  width: auto;

  padding: 10px 14px;

  background: transparent;
  border: none;

  font-size: 0.9rem;
  font-weight: bold;
  text-align: right;
}
    
.mobile-menu-panel {
  margin: 0 16px 12px auto;
}
    
.mobile-menu-panel:has(nav.is-open)
{
  width: calc(100% - 32px);
}
    
.menu-toggle {
  width: 100%;
  padding: 10px 14px;

  background: transparent;
  border: none;

  font-size: 0.9rem;
  font-weight: bold;
  text-align: right;
}
    
header nav {
  display: none;

  padding: 0 16px 12px;
}

header nav.is-open {
  display: block;
}

header nav ul {
  display: flex;
  flex-direction: column;

  gap: 0;
  margin: 0;
  padding: 0;
}

header nav li {
  width: 100%;
}

header nav li a {
  display: block;

  padding: 12px 0;

  border-bottom: 1px solid #eee;

  background: transparent;
  text-decoration: none;
　
  text-align: left;
  padding-left: 8px;
    
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
}

header nav li:last-child a {
  border-bottom: none;
}


/* ===== お問い合わせページ ===== */
.contact-intro,
.contact-guide,
.contact-info,
.contact-form-section {
  max-width: 800px;
  margin: 40px auto;
}

.contact-lead {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px 20px;
}

.contact-guide h2,
.contact-info h2,
.contact-form-section h2 {
  margin-bottom: 20px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px 16px;
  text-align: center;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  display: inline-block;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-info-box {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px 20px;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

.contact-small {
  font-size: 0.9em;
  color: #666;
}

.contact-note {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}

.contact-form-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  background: #fff;
}

.order-guide {
  text-align: center;
  margin: 30px 0;
}

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

  .contact-lead,
  .contact-info-box,
  .contact-form-wrap {
    padding: 16px;
  }
    
}
@media screen and (max-width: 768px) {

  .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .dagashi-card {
    width: 90%;
    max-width: 420px;
  }

  .dagashi-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}
/* ===== 767px以下：カード2列 ===== */
@media (max-width: 767px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .card {
    width: calc(50% - 16px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-content {
    width: 100%;
  }

  .swiper.card-slider {
    width: 100%;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
    
  .contact-cards {
    grid-template-columns: 1fr;
  }
    
  .contact-lead,
  .contact-info-box,
  .contact-form-wrap {
    padding: 16px;
  }
}

/* data-label系のスマホ用スタイル無効 */
.game-table td::before {
  content: none;
}