/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 275:0 Unexpected "<"

**/
<style>
/* フッターの前面化（必要な場合） */
#shopify-section-footer a,
#shopify-section-footer button {
  position: relative;
  z-index: 10000;
}

/* トップへ戻るボタン */
.guide-top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
}
.support-page {
  text-align: center; /* 横方向だけ中央寄せ */
}
.support-page-txt{
  max-width: 960px;
  margin: 60px auto 60px; /* 上40px 左右auto 下20px */
  padding: 0 20px;
  text-align: center;
font-size: 28px;
  color: #333;
}
.guide-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: #FEF2F3;
  border-radius: 30rem;
  text-decoration: none;
  color: #DC000C;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .3s ease;
  font-size: 0.75rem; /* ボタン内の文字 */
}
.guide-top-btn:hover {
  transform: translateY(-5px);
}

/* アンカーリンク群 */
.guide-anchor-button {
  position: relative;
}

.guide-anchor-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* カラム群を中央寄せ */
}

.guide-anchor-column {
  flex: none;
  min-width: 250px;
  text-align: left; /* カラム内のテキストを左揃え */
}

.guide-anchor-button a {
  display: block;
  text-align: left; /* リンクテキストを左揃え */
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  padding-right: 3rem; /* ← 2rem → 3rem に拡張 */
  text-decoration: none;   /* 下線を消す */
  border-bottom: none;     /* 区切り線も消す */
  color: inherit;
  font-size: 1rem; /* 約16px */
}
.guide-anchor-button a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.5rem; 
  width: 8px;
  height: 8px;
  border-top: 1px solid #DC000C;
  border-right: 1px solid #DC000C;
  transform: translateY(-50%) rotate(135deg); /* 縦中央＋右上がり */
  transition: top .3s ease;

}
.guide-anchor-button a:hover::before {
  top: 55%;
}

/* セクション共通 */
.guide-section-wrapper {
  display: flex;
  justify-content: center; /* 全体を中央寄せ */
  padding: 2rem 0;
  margin: 60px 0;     /* 上下40px、左右0 */
  padding: 0 20px;
}

.guide-section-inner {
  max-width: 960px;
  width: 100%;
  padding: 0 20px;
  text-align: left; /* テキストだけ左揃え */
}

.guide-section {
  padding: 2rem 0;
}
.guide-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.guide-section h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
.guide-section h5 {
  font-size: 1rem;
  margin-top: 1rem;
}
.guide-section p,
.guide-section li {
  font-size: 1rem;
  line-height: 1.6;
}
.guide-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.guide-section a {
  color: #0366f4;
  text-decoration: underline;
}
.guide-title-box {
  display: block;
  background-color: #e0e0e0; /* 少し濃いグレー */
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  text-align: left;
  margin-bottom: 1.2rem; /* 下に余白追加 */
  max-width: 960px;        /* 枠の最大幅を制御 */
  margin-left: auto;       /* 中央寄せ */
  margin-right: auto;      /* 中央寄せ */
}

ul {
  list-style: none;
  padding-left: 0; /* 左の余白も消したい場合 */
}
.note {
  font-size: 0.875rem; /* 約14px */
  color: #666;         /* 少し薄めのグレーで控えめに */
  line-height: 1.4;    /* 行間も少し詰める */
  border: none;        /* 枠線を消す */
}
.secimg{
  max-width: 50%;
  height: auto;
}

/* SP（767px以下）のレスポンシブ調整 */
@media screen and (max-width: 767px) {
  .guide-top-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    height: auto !important; /*
    display: block !important;
  }

  .guide-top-button .guide-top-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0.8em;
  }

  .guide-anchor-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 1rem;
  }

  .guide-anchor-button-wrapper .guide-anchor-button a {
    padding-right: 45px !important;
  }
  .guide-anchor-button-wrapper .shg-row {
    padding: 1.5rem 1rem;
  }
  .guide-anchor-column {
    flex: none;
    width: 100%;            /* ← 画面幅に合わせる */
    max-width: 320px;       /* ← 広すぎないよう制限 */
    margin: 0 auto;         /* ← 中央寄せ */
  }
  .guide-anchor-button a {
    text-align: left !important;
    padding: 1rem 2rem;
    padding-right: 3rem !important; /* ← 矢印分の余白を確保 */
    box-sizing: border-box;
  }
  .guide-anchor-button a::before {
    right: 1rem !important;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
  }

  .secimg{
  max-width: 100%;
  height: auto;
}

}


/* のちほど消すかも */
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
}
.guide-accordion .accordion-item {
  border-bottom: 1px solid #ddd;
  padding: .25rem 0;
}
.guide-accordion .accordion-summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 0;
  font-weight: 600;
}
.guide-accordion .accordion-summary::-webkit-details-marker {
  display: none;
}
.guide-accordion .accordion-icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #DC000C;
  border-right: 1px solid #DC000C;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease;
}
.guide-accordion .accordion-item[open] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}
.guide-accordion .accordion-body {
  padding: .5rem 0 1rem;
  border-top: 1px solid #fff;
}

</style>