@charset "utf-8";
/* CSS Document */

/* =========================
  ヘッダー位置調整
========================= */
.fs-body-category {
  padding-top:250px;
}

@media (max-width: 435px) {
  .fs-body-category {
    padding-top: 280px;
  }
}

/* =========================
  タイトル
========================= */
.guide-page-title {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;	
  margin: 50px 0;
  text-align: center;
}

.guide-page-title h1 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #061b3a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 900px) {
  .guide-page-title {
    margin-bottom: 22px;
  }

  .guide-page-title h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 520px) {
  .guide-page-title {
    margin-bottom: 18px;
  }

  .guide-page-title h1 {
    font-size: 24px;
    line-height: 1.35;
  }
}

/* =========================
  左メニュー
========================= */
/* 左メニュー全体 */
.guide-sidebar {
  padding: 0;
  background: #fff;
  border: none;
  align-self: start;
}

/* 左カラム内リンク共通：下線を消す */
.guide-sidebar a,
.guide-sidebar a:hover,
.guide-sidebar a:focus,
.guide-sidebar a:active {
  text-decoration: none;
}

/* 見出し */
.guide-sidebar-title {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  margin: 0 0 18px;
  padding: 0 0 12px;
  border-bottom: 2px solid #061b3a;
  color: #061b3a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 通常メニュー */
.guide-menu {
  display: grid;
  gap: 10px;
}

.guide-menu a {
  position: relative;
  display: block;
  padding: 14px 40px 14px 18px;
  border: 1px solid #e5dcc5;
  border-radius: 6px;
  background: #fff;
  color: #1b2d4a; /* 少し濃く */
  font-size: 14px;
  font-weight: 500; /* 少し太く */
  line-height: 1.5;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

/* 矢印 */
.guide-menu a::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #061b3a;
  border-right: 2px solid #061b3a;
  transform: translateY(-50%) rotate(45deg);
}

/* ホバー */
.guide-menu a:hover {
  background: #fbf6e6;
  border-color: #d6c79a;
  color: #061b3a;
  text-decoration: none;
}

/* 知る・学ぶ */
.guide-sidebar-block {
  margin-top: 30px;
}

.guide-sidebar-heading {
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid #e5dcc5;
  color: #061b3a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/*.guide-sidebar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
} */

.guide-sidebar-grid a {
/*  min-height: 86px; */
/*  padding: 12px 8px; */
  border: 1px solid #e5dcc5;
  border-radius: 6px;
  background: #fff;
  color: #1b2d4a; /* 少し濃く */
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500; /* 少し太く */
  line-height: 1.7;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  margin-bottom: 10px;
}

.guide-sidebar-grid a:hover {
  background: #fbf6e6;
  border-color: #d6c79a;
  color: #061b3a;
  text-decoration: none;
}

/* もっと見るボタン */
.guide-side-more {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  width: 180px;
  max-width: 100%;
  min-height: 38px;
  margin: 18px auto 0;
  border: 1px solid #f16657;
  border-radius: 4px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.guide-side-more:hover {
  background: #888;
  color: #fff;
  text-decoration: none;
}

.spDrawerLearnMore a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:35px;
  height:50px;
  border: 1px solid #888;
  border-radius: 10px;
  color:#000;
  text-decoration:none;
  font-size:14px;
  background:#fff;
}

/* 無料テンプレート */
.guide-menu-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5dcc5;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .guide-sidebar-title {
    font-size: 17px;
  }

  .guide-menu a {
    padding: 13px 38px 13px 15px;
    font-size: 13px;
  }

  .guide-sidebar-grid {
    gap: 8px;
  }

  .guide-sidebar-grid a {
    min-height: 78px;
  }
}

/* =========================
  本文エリア
========================= */

/* 商品グループエリア（システムパーツ）を非表示 */
.fs-c-productList {
  display: none;
}

/* =========================
  ショッピングガイド本文 共通CSS
========================= */

/* 商品一覧システムパーツ非表示 */
.fs-c-productList {
  display: none;
}

/* 共通カラー・ベース */
.guide-content,
.guide-detail {
  color: #061b3a;
}

.guide-content img,
.guide-detail img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 本文リンク */
.guide-content a,
.guide-content a:hover,
.guide-content a:focus,
.guide-content a:active {
  color: inherit;
  text-decoration: none;
}

.guide-detail a {
  color: #005bac;
  text-decoration: underline;
}

.guide-detail a:hover {
  opacity: 0.75;
}

/* 共通見出し */
.guide-section-title,
.guide-detail-title,
.guide-step-title {
  margin: 0 0 22px;
  padding: 10px 14px;
  background: #FBFAF6;
  border: 1px solid #d8cfae;
  color: #061b3a;
  font-weight: 700;
  line-height: 1.5;
}

.guide-section-title {
  font-size: 15px;
}

.guide-detail-title {
  font-size: 20px;
}

.guide-step-title {
  font-size: 22px;
}

/* 共通本文 */
.guide-info-section + .guide-info-section,
.guide-faq-section,
.guide-section {
  margin-top: 36px;
}

.guide-info-section p,
.guide-sub-block p,
.guide-step-text,
.guide-template p {
  margin: 0 0 22px;
  color: #10284a;
  font-size: 15px;
  line-height: 2;
}

.guide-note,
.guide-strong-text,
.guide-info-section strong {
  font-weight: 700;
}

.guide-strong-text {
  color: #000;
  font-size: 17px;
}

.guide-info-section p strong,
.guide-template strong {
  color: #e60012;
}

/* トップページ リード */
.guide-lead {
  margin: 0 0 34px;
  text-align: center;
}

.guide-lead p {
  margin: 0;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* 画像グリッド */
.guide-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.guide-image-card {
  display: block;
  background: #fff;
  /*border: 1px solid #e5dcc5;*/
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-image-card:hover {
  transform: translateY(-2px);
  border-color: #d6c79a;
  box-shadow: 0 0 0 rgba(6, 27, 58, 0.08);
}

/* 共通ボタン */
.guide-button-area {
  margin-top: 28px;
  text-align: center;
}

/* =========================
  共通ボタン
========================= */
.guide-more {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  width: 300px;
  max-width: 100%;
  min-height: 58px;
  margin: 28px auto 0;
  padding: 12px 24px;
  border: 1px solid #888;
  border-radius: 10px;
  background: #fff;
  color: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  text-decoration: none !important;
}

.guide-more:hover,
.guide-more:focus,
.guide-more:active {
  background: #888;
  color: #fff !important;
  text-decoration: none !important;
}

/* サブ見出し */
.guide-sub-block {
  margin-top: 30px;
}

.guide-sub-title {
  margin: 0 0 18px;
  padding: 0 0 10px 18px;
  border-left: 6px solid #c9c0a8;
  border-bottom: 1px solid #d8d8d8;
  color: #7d786c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* STEP画像 */
.guide-detail .sp-only {
  display: none;
}

.guide-step-section + .guide-step-section {
  margin-top: 42px;
}

.guide-step-image {
  margin: 0 0 22px;
  background: #fff;
  border: 1px solid #d8cfae;
  box-sizing: border-box;
}

.guide-step-image-noborder {
  margin: 0 0 22px;
  background: #fff;
  box-sizing: border-box;
}

/* 表 */
.guide-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
}

.guide-fee-table,
.guide-tax-table {
  border-collapse: collapse;
  background: #fff;
  color: #10284a;
  font-size: 14px;
}

.guide-fee-table {
  width: 100%;
  border: 1px solid #061b3a;
}

.guide-tax-table {
  width: 180px;
  border: 1px solid #061b3a;
}

.guide-fee-table th,
.guide-fee-table td,
.guide-tax-table th,
.guide-tax-table td {
  border: 1px solid #061b3a;
  padding: 12px 14px;
  vertical-align: middle;
}

.guide-fee-table th,
.guide-tax-table th {
  background: #fafafa;
  color: #061b3a;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
/*
.guide-fee-table td:first-child {
  text-align: left;
}

.guide-fee-table td:last-child {
  width: 120px;
  text-align: center;
  white-space: nowrap;
}
*/

/* thの後ろにある唯一のtdは左寄せ */
.guide-fee-table th + td {
  text-align: left;
  width: auto;
  white-space: normal;
}

/* tdが2つ以上ある場合の最後だけ中央寄せ */
.guide-fee-table td + td:last-child {
  width: 120px;
  text-align: center;
  white-space: nowrap;
}

/* リスト */
.guide-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.guide-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 1.2em;
  color: #10284a;
  font-size: 15px;
  line-height: 1.8;
}

.guide-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #061b3a;
}

/* 定義リスト */
.guide-definition-list {
  margin: 0;
  padding: 0;
}

.guide-definition-list dt {
  margin: 20px 0 6px;
  color: #061b3a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.guide-definition-list dt::before {
  content: "・";
}

.guide-definition-list dd {
  margin: 0;
  color: #10284a;
  font-size: 15px;
  line-height: 1.9;
}

/* FAQ */
.guide-faq {
  color: #061b3a;
}

.guide-faq a,
.guide-faq a:hover,
.guide-faq a:focus,
.guide-faq a:active {
  text-decoration: none !important;
}

/* 上部アンカーリンク */
.guide-faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin: 0 0 38px;
}

.guide-faq-nav a {
  position: relative;
  min-width: 180px;
  padding: 16px 46px 16px 18px;
  border: 1px solid #d8cfae;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(6, 27, 58, 0.05);
  color: #061b3a !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.guide-faq-nav a::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #061b3a;
  border-bottom: 2px solid #061b3a;
  transform: translateY(-65%) rotate(45deg);
}

.guide-faq-nav a:hover,
.guide-faq-nav a:focus {
  background: #fbf6e6;
  border-color: #cdbf95;
  box-shadow: 0 8px 18px rgba(6, 27, 58, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

/* セクション */
.guide-faq-section {
  margin-top: 40px;
  scroll-margin-top: 120px;
}

.guide-faq-section:first-of-type {
  margin-top: 0;
}

.guide-detail-title {
  margin: 0 0 20px;
  padding: 11px 15px;
  background: #FBFAF6;
  border: 1px solid #d8cfae;
  color: #061b3a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/* お支払い・決済 */
.guide-card-brand-list {
  display: flex;
  flex-wrap: wrap;
}
.guide-card-brand-list li {
  width: calc(100% / 8);
  align-content: center; /* 複数行の上下中央 */
  justify-content: center; /* 左右中央にする場合 */
}
.guide-card-brand-list li img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 736px) {
  .guide-card-brand-list li {
    width: calc(100% / 5);
  }
}

@media screen and (max-width: 480px) {
  .guide-card-brand-list li {
    width: calc(100% / 2);
	margin-bottom: 10px;
  }
}

/* アコーディオン */
.guide-faq-item {
  border-bottom: 1px solid #d8cfae;
}

.guide-faq-item:first-of-type {
  border-top: 1px solid #d8cfae;
}

.guide-faq-item summary {
  position: relative;
  display: block;
  padding: 18px 48px 18px 14px;
  color: #10284a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
  background: #fff;
  transition: background 0.2s ease;
}

.guide-faq-item summary::-webkit-details-marker {
  display: none;
}

.guide-faq-item summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: #061b3a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

.guide-faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #061b3a;
  border-bottom: 2px solid #061b3a;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.guide-faq-item summary:hover {
  background: #fffdf7;
}

.guide-faq-item[open] summary {
  background: #FBFAF6;
}

.guide-faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.guide-faq-answer {
  position: relative;
  padding: 0 48px 22px 48px;
  background: #fff;
}

.guide-faq-answer::before {
  content: "A";
  position: absolute;
  left: 14px;
  top: 2px;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f16657;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.guide-faq-answer p {
  margin: 0;
  color: #10284a;
  font-size: 14px;
  line-height: 2;
}

/* 商品に関連するご質問 */
.guide-faq-product-lead {
  margin: 0 0 28px;
  color: #10284a;
  font-size: 14px;
  line-height: 2;
}

.guide-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 24px;
}

.guide-product-link {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 18px;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 10px 12px 14px;
  border: 1px solid #e5ddca;
  border-radius: 14px;
  background: #fff;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
  /*transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;*/
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.guide-product-link,
.guide-product-link:hover,
.guide-product-link:focus,
.guide-product-link:active,
.guide-product-link *,
.guide-product-link:hover * {
  text-decoration: none !important;
}

.guide-product-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #061b3a;
  border-right: 2px solid #061b3a;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.guide-product-link:hover,
.guide-product-link:focus {
  background: #f5f8ff;
  box-shadow: 0 8px 20px rgba(6,27,58,.08);
  border-color: #1d3f82;
  transform: translateY(-4px);
}

.guide-product-link:hover::after,
.guide-product-link:focus::after {
  transform: translateX(4px) rotate(45deg);
}

.guide-product-link:hover .guide-product-img,
.guide-product-link:focus .guide-product-img {
  border-color: #f16657;
}

.guide-product-link:hover .guide-product-text,
.guide-product-link:focus .guide-product-text {
  color: #061b3a;
}

.guide-product-text{
  color:#10284a;
  font-size:14px;
  font-weight:500;
  line-height:1.6;
  text-decoration:none !important;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .guide-image-grid,
  .guide-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-more {
    width: 280px;
    min-height: 60px;
    font-size: 16px;
    border-radius: 16px;
  }

  .guide-step-title {
    font-size: 19px;
  }

  .guide-faq-nav {
    gap: 12px;
    margin-bottom: 32px;
  }

  .guide-faq-nav a {
    min-width: 160px;
    padding: 14px 42px 14px 16px;
    font-size: 14px;
  }

  .guide-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media screen and (max-width: 520px) {
  .guide-lead {
    text-align: left;
  }

  .guide-lead p,
  .guide-info-section p,
  .guide-sub-block p,
  .guide-step-text,
  .guide-list li,
  .guide-definition-list dt,
  .guide-definition-list dd {
    font-size: 13px;
    line-height: 1.9;
  }

  .guide-section-title {
    font-size: 14px;
  }

  .guide-detail-title,
  .guide-step-title {
    font-size: 17px;
    padding: 9px 12px;
  }
/*
  .guide-image-grid,
  .guide-product-grid,
  .guide-faq-nav {
    grid-template-columns: 1fr;
  }

  .guide-image-grid {
    gap: 10px;
  }
*/
  /* ショッピングガイド・知る学ぶは2列表示 */
  .guide-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* 商品に関連するご質問は1列 */
  .guide-product-grid {
    grid-template-columns: 1fr;
  }

  /* FAQナビは1列 */
  .guide-faq-nav {
    grid-template-columns: 1fr;
  }

  .guide-more {
    width: 240px;
    min-height: 50px;
    margin-top: 22px;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 14px;
  }

  .guide-detail .sp-only {
    display: inline;
  }

  .guide-sub-title {
    padding-left: 14px;
    font-size: 16px;
  }

  .guide-fee-table {
    min-width: 720px;
    font-size: 13px;
  }

  .guide-tax-table {
    width: 160px;
    font-size: 13px;
  }

  .guide-faq-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .guide-faq-nav a {
    width: 100%;
    min-width: 0;
    padding: 14px 42px 14px 14px;
    border-radius: 8px;
    font-size: 13px;
  }

  .guide-faq-section {
    margin-top: 34px;
    scroll-margin-top: 90px;
  }

  .guide-detail-title {
    margin-bottom: 16px;
    padding: 9px 12px;
    font-size: 17px;
  }

  .guide-faq-item summary {
    padding: 15px 38px 15px 10px;
    font-size: 13px;
  }

  .guide-faq-item summary::before {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    font-size: 11px;
  }

  .guide-faq-item summary::after {
    right: 14px;
    width: 7px;
    height: 7px;
  }

  .guide-faq-answer {
    padding: 0 32px 18px 42px;
  }

  .guide-faq-answer::before {
    left: 10px;
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .guide-faq-answer p {
    font-size: 13px;
    line-height: 1.9;
  }

  .guide-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guide-product-link {
    grid-template-columns: 58px 1fr 18px;
    min-height: 70px;
  }

  .guide-product-img {
    width: 58px;
    height: 58px;
  }

  .guide-product-text {
    font-size: 13px;
  }
}