@charset "UTF-8";
:root {
  --c-bg: #fff;
  --c-panel: #ffffff;
  --c-key: #27284B;
  --c-accent: #17A2B8;
  --c-text: #1a1a1a;
  --c-text-weak: #6B7280;
  --c-border: rgba(23, 162, 184, 0.19);
  --c-chip: #F5F7FB;
  --radius-xl: 14px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-1: 0 10px 24px rgba(17, 24, 39, .08);
  --shadow-2: 0 4px 10px rgba(17, 24, 39, .06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--c-key);
}

body.p-support {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  margin-inline: auto;
}

.support__header {
  width: 100%;
  background: var(--c-key);
  padding: 16px 0;
}
.support__header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}
.support__header .support__logo {
  height: 22px;
}
.support__header .support__logo img {
  width: auto;
  height: 22px;
}
.support__header-title {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 16px;
  color: var(--c-bg);
}

.support__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.support__title span {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 24px);
  color: var(--c-key);
}
.support__title img {
  max-width: 59px;
  height: auto;
}
.support__chips {
  margin: 18px auto 20px;
  padding: 14px 12px;
}
.support__footer-note {
  margin-top: 24px;
  text-align: center;
  color: #c7c7c7;
  font-size: 12px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 560px) {
  .chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.chips__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: auto;
  max-height: 61px;
  background: #FFFFFF;
  border: 1px solid var(--c-key);
  border-radius: 10px;
  padding: clamp(13px, 2vw, 20px) clamp(8px, 2vw, 13px);
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 1.5vw, 8px);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.06s ease-in;
  box-shadow: var(--shadow-2);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.chips__item:hover {
  transform: translateY(-1px);
}
.chips__item:active {
  transform: translateY(0);
}
.chips__item.is-active {
  background: #E9F2FF;
  border-color: #C7E0FF;
  box-shadow: 0 0 0 2px rgba(28, 93, 182, 0.15) inset;
}
.chips__item.is-active .chips__dot {
  background: var(--c-accent);
}
.chips__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  /* アイコンの見た目サイズ */
  flex: 0 0 auto;
}
.chips__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.chips__label {
  display: inline-block;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.2;
  color: var(--c-key);
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: left;
}

.support-section {
  margin: 0 auto 60px;
  overflow: hidden;
}
.support-section__title {
  margin-bottom: 16px;
  background: linear-gradient(transparent 50%, var(--c-border) 50%);
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: center;
  margin-inline: -20px;
}
.support-section__title-in {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  display: inline-block;
  padding-left: 34px;
  position: relative;
  /* アイコン未設定のときは従来のテキスト記号にフォールバック */
}
.support-section__title-in::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 100%;
  transform: translateY(-50%);
  background: no-repeat center/contain;
  background-image: var(--sec-icon);
}
.support-section__title-in:not(.has-icon)::before {
  content: "⛁";
  width: auto;
  height: auto;
  background: none;
  top: 0;
  transform: translateY(1px);
  font-size: 18px;
  line-height: 1;
  color: var(--c-accent);
}
.support-section__empty {
  margin: 0;
  padding: 18px 16px;
  color: var(--c-text-weak);
}

.faq {
  margin: 0;
  padding: 0 20px;
  list-style: none;
}
.faq__item {
  border-bottom: 1px dashed var(--c-border);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  transition: background-color 0.2s ease;
}
.faq__q:hover {
  background-color: #fafafa;
}
.faq__q-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-key);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.faq__q-text {
  line-height: 1.5;
}
.faq__chevron {
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  color: var(--c-key);
}
.is-open .faq__chevron {
  transform: rotate(180deg);
}
.faq__a {
  background: #fff;
  padding: 12px 0;
}
.faq__a-body {
  padding: 10px 0;
}
.faq__a-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.faq__a-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.faq__a-content p {
  margin: 0 0 10px;
}
.faq__a-content ul,
.faq__a-content ol {
  padding-left: 1.2em;
  margin: 0.4em 0 1em;
}
.faq__a-content li {
  margin: 0.2em 0;
}

.is-open {
  /* アコーディオンの開閉フラグ（JSが付与） */
}

.js-accordion__panel[hidden] {
  display: none !important;
}

.to-top {
  position: fixed;
  right: clamp(12px, 2vw, 20px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(12px, 2vw, 20px));
  z-index: 40;
  width: 33px;
  height: 33px;
  border-radius: 9999px;
  box-shadow: var(--shadow-1);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.to-top img {
  width: 33px;
  height: 33px;
  display: block;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.to-top:focus-visible {
  outline: 3px solid rgba(28, 93, 182, 0.6);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .to-top {
    right: 33px;
    bottom: 33px;
  }
}/*# sourceMappingURL=support-styles.css.map */