/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 224: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: 7rem;
  height: 7rem;
  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;
}
.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%;
}

/* アコーディオン（details/summary） */
.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;
}

/* セクション共通 */
.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;      /* 中央寄せ */
}

/* FAQアイテム */
.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;
}

/* SP（767px以下）のレスポンシブ調整 */
@media screen and (max-width: 767px) {
  .guide-top-button .guide-top-btn {
    top: calc(100% - (7rem * 0.7) - 20px);
    left: 100%;
    font-size: 0.7em !important;
    width: calc(7rem * 0.7);
    height: calc(7rem * 0.7);
  }
  .guide-anchor-button-wrapper .guide-anchor-button a {
    padding-right: 45px !important;
  }
  .guide-anchor-button-wrapper .shg-row {
    padding: 1.5rem 1rem;
  }
  .guide-top-button {
    height: calc(100% - 20px);
  }
}
</style>