/* ========================================
   info-pages.css
   インフォメーション系ページ共通スタイル
   対象: プライバシーポリシー / 利用規約 / ショッピングガイド / よくある質問
   ======================================== */
.info-mw {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}
.faq-pb {
	padding-bottom: 32px;
}
.info-page {
  color: #313131;
  font-size: 16px;
  line-height: 1.8;
}

.info-page h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid #313131;
  letter-spacing: 0.05em;
}

.info-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

.info-page h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-top: 32px;
  margin-bottom: 12px;
}

.info-page p {
   font-size: clamp(14px, calc(1.17vw + 4px), 16px);
  margin-bottom: 16px;
  line-height: 1.8;
}

.info-page ul,
.info-page ol {
  margin-bottom: 16px;
  padding-left: 1.5em;
}

.info-page li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.info-page a {
  color: #313131;
  text-decoration: underline;
}

.info-page a:hover {
  opacity: 0.7;
}

.info-page .date {
  margin-top: 48px;
  text-align: right;
  font-size: 14px;
  color: #666;
}

/* テーブル（ショッピングガイド等） */
.info-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.info-page th,
.info-page td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.info-page th {
  background-color: #f5f5f5;
  font-weight: 700;
  white-space: nowrap;
  width: 30%;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

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

@media (max-width: 768px) {
  .info-page {
    padding: 40px 0 60px;
  }
  .info-page h1 {
    font-size: 22px;
  }
  .info-page h2 {
    font-size: 18px;
  }
  .info-page th {
    width: 35%;
  }
}

/*=====contact section =================*/
.contact {
    text-align: center;
    background-color: #F4F1EA;
}
.contact a {
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
	text-decoration: none;
}
.contact h2 {
    letter-spacing: 0.03em;
    margin-bottom: 4px;
	font-size: clamp(42px, calc(3vw + 6px), 48px);
    font-weight: 700;
	margin-top: 0;
	border-bottom: none;
	line-height: 0.8;
}
.contact .s-h2 {
    letter-spacing: 0.08em;
    font-size: 16px;
	padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 0
  }
}