@charset "utf-8";
/* CSS Document */
.title_h2 {
	text-align: center;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	margin-bottom: 1em;
	padding: 1em 0.5em;
	line-height: 1.5;
	color: #000;
	text-shadow: 0 0 5px white;
	background: -webkit-repeating-linear-gradient(-45deg, #eaeaea, #eaeaea 3px,#f4f4f4 3px, #f4f4f4 7px);
	background: repeating-linear-gradient(-45deg, #eaeaea, #eaeaea 3px,#f4f4f4 3px, #f4f4f4 7px);
	font-size: 30px;
	letter-spacing: 2px;
    font-weight: 900;
    width: 100%;
}
.title_h1 {
    font-size: 12px;
    margin: -5px auto 5px auto;
    line-height: 1.5;
}

/* ===== 基本スタイル ===== */
:root {
  --line:#e5e7eb;
  --card:#f8fafc;
}
html,body {background:#fff;color:#1a1a1a;line-height:1.7;}
img {max-width:100%;height:auto;vertical-align:middle;}
a {color:#000;text-decoration:none;}
p {margin-bottom:1.2em;}
.wrap {max-width:1100px;width:92%;margin:auto;padding:clamp(16px,2.5vw,28px);}
h1,h2,h3 {line-height:1.3;margin-top:0;}
h2 {
  font-size:1.6rem;
  font-weight:700;
  color:#000;
  margin:1.5em 0 0.8em;
  border-bottom:2px solid #000;
  padding-bottom:4px;
}
.section {padding:clamp(24px,4vw,36px) 0;}
.card {
  background:var(--card);
  border:1px solid var(--line);
  padding:clamp(16px,2vw,24px);
  margin:20px 0;
}
.list {
  display: grid;
  gap: 24px;                     /* アイテム間の余白を少し広く */
  list-style: none;
  padding: 0;
  margin: 0;                     /* リスト自体の余白を制御 */
}

.list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  padding: 12px;                /* 内部余白を追加 */
  text-align: center;
  transition: transform 0.3s;
}

.list li:hover {
  transform: translateY(-4px);  /* ホバー時のちょっと浮くエフェクト */
}

/* 画像の調整 */
.list li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 8px;
}

/* 商品名テキスト */
.list li p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
}.steps {counter-reset:step;}
.step {
  display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:start;
  padding:14px;border-bottom:1px dashed var(--line);
}
.step:last-child {border-bottom:0;}
.step .num {
  width:34px;height:34px;border-radius:999px;
  background:#000;color:#fff;font-weight:700;
  display:grid;place-items:center;
}
table {
  width:100%;border-collapse:collapse;background:#fff;
  border:1px solid var(--line);margin-top:20px;
}
thead th {background:#f1f5f9;text-align:left;font-weight:600;}
th,td {padding:12px 14px;border-bottom:1px solid var(--line);vertical-align:top;}
tbody tr:last-child td {border-bottom:0;}
.t-right{text-align:left;font-weight:bold}
.notice {
  border-left:6px solid #000;background:#f9f9f9;
  border-radius:4px;padding:14px 16px;margin:20px 0;
}
.btn {
  display:inline-block;
  padding:10px 24px;
  background:#fff;
  color:#000;
  border:1px solid #000;
  border-radius:0;
  font-weight:600;
  transition:all 0.3s ease;
}
.btn:hover {
  background:#000;
  color:#fff;
}

.notice-text p {
  margin: 0 0 0.8em;
  padding-left: 0.5em;
  border-left: 3px solid #000; /* 黒ラインを軽くつける */
}
/* ===== レスポンシブ ===== */
@media screen and (max-width: 750px) {
  .wrap {padding:12px;}
  h2 {font-size:25px;}
  .btn {display:block;text-align:center;padding:10px!important;}
  .list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

a.contact-link {
  color: #0055cc;            /* 濃い青 */
  font-weight: 600;          /* 少し太字 */
  text-decoration: underline; /* 下線を残すとクリックと分かりやすい */
}

a.contact-link:hover {
  color: #000;               /* ホバーで黒に反転 */
}

@media screen and (min-width:751px) and (max-width:1024px) {
  h2 {font-size:2rem;}
  .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width:1025px) {
  h2 {font-size:25px;}
   .list {
    grid-template-columns: repeat(3, 1fr);
  }
}