@charset "UTF-8";
/* ------------------------------

	編集時の注意
	・必ず.scssから編集してコンパイルしてください。（直接.cssを編集しないでください）

------------------------------ */
/* ------------------------------
 Mixin
------------------------------ */
/* ------------------------------
 Html, Body
------------------------------ */
html {
  font-size: 2.6666666667vw;
  background-color: #F8F8F8;
}
@media (min-width: 601px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0 auto;
  padding: 0;
  color: black;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  max-width: 600px;
  overflow-x: hidden;
  background-color: white;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  text-align: left;
}
body * {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
}

#page-wrap {
  position: relative;
  overflow: hidden;
}

/* ------------------------------
 Reset CSS
------------------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, picture {
  display: block;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, form {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: currentColor;
}
button::-moz-focus-inner {
  border: 0;
}

ul {
  list-style-type: none;
}

img {
  vertical-align: bottom;
  border: 0;
  width: 100%;
  height: auto;
}

/* ------------------------------
 link
------------------------------ */
a {
  outline: 0;
  color: currentColor;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: currentColor;
}
a.line-link {
  text-decoration: underline;
}

.underline {
  border-bottom: 0.1em solid currentColor;
}

.underline-dash {
  border-bottom: 0.1em dashed currentColor;
}

/* ------------------------------
 text & layout
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  line-height: 1.6;
}

p, ul, dl {
  font-size: 1rem;
  line-height: 1.5;
}

sup {
  font-size: 0.7em;
}

.d-ib {
  display: inline-block;
}

.ind-1em {
  display: block;
  text-indent: -1em !important;
  padding-left: 1em;
}
.ind-1em::first-letter {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.ind-1em > * {
  text-indent: 0;
}

.burasage {
  overflow: hidden;
  text-align: left;
}
.burasage > * {
  display: block;
  overflow: hidden;
}
.burasage > *:first-child {
  float: left;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

/* ------------------------------
 text-size
------------------------------ */
.txt-xxl {
  font-size: 2.8rem;
}

.txt-xl {
  font-size: 2.4rem;
}

.txt-lg {
  font-size: 2.2rem;
}

.txt-md {
  font-size: 1.8rem;
}

.txt-rg {
  font-size: 1.6rem;
}

.txt-sm {
  font-size: 1.4rem;
}

.txt-xs {
  font-size: 1.2rem;
}

.txt-xxs {
  font-size: 1rem;
}

/* ------------------------------
 font-weight
------------------------------ */
.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ------------------------------
 margin
------------------------------ */
.mt-0 {
  margin-top: 0 !important;
}

.mt-02em {
  margin-top: 0.2em !important;
}

.mt-05em {
  margin-top: 0.5em !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

.mt-3em {
  margin-top: 3em !important;
}

.mt-4em {
  margin-top: 4em !important;
}

.mt-5em {
  margin-top: 5em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-02em {
  margin-bottom: 0.2em !important;
}

.mb-05em {
  margin-bottom: 0.5em !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

.mb-2em {
  margin-bottom: 2em !important;
}

.mb-3em {
  margin-bottom: 3em !important;
}

.mb-4em {
  margin-bottom: 4em !important;
}

.mb-5em {
  margin-bottom: 5em !important;
}

.m-auto {
  margin: auto !important;
}

/* ------------------------------
 padding
------------------------------ */
.side-padding {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.side-padding-w {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-05em {
  padding-top: 0.5em !important;
}

.pt-1em {
  padding-top: 1em !important;
}

.pt-2em {
  padding-top: 2em !important;
}

.pt-3em {
  padding-top: 3em !important;
}

.pt-4em {
  padding-top: 4em !important;
}

.pt-5em {
  padding-top: 5em !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-05em {
  padding-bottom: 0.5em !important;
}

.pb-1em {
  padding-bottom: 1em !important;
}

.pb-2em {
  padding-bottom: 2em !important;
}

.pb-3em {
  padding-bottom: 3em !important;
}

.pb-4em {
  padding-bottom: 4em !important;
}

.pb-5em {
  padding-bottom: 5em !important;
}

/* ------------------------------
 line-height
------------------------------ */
.lh-12 {
  line-height: 1.2;
}

/* ------------------------------
 text-align
------------------------------ */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.justify {
  text-align: justify;
}

/* ------------------------------
 text-color
------------------------------ */
.color-orange {
  color: #e76416 !important;
}

.color-dark-orange {
  color: #D23A00 !important;
}

.color-blue {
  color: #006FC9 !important;
}

.color-red {
  color: #D41E1E !important;
}

.color-grey {
  color: #828282 !important;
}

/* ------------------------------
 bg
------------------------------ */
.bg-pale-blue {
  background-color: #EBF1FF;
}

.bg-pale-yellow {
  background-color: #fffddf;
}

/* ------------------------------
 btn
------------------------------ */
.btn-std {
  background: #006FC9;
  color: white !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3em;
  border-radius: 2em;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.5em;
  position: relative;
}
.btn-std.disabled, .btn-std.done {
  background-color: #C8C8C8;
  pointer-events: none !important;
}
.btn-std.done {
  color: #AAA !important;
}
.btn-std::after {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background: no-repeat 50% 50%;
  background-size: contain;
  right: 1rem;
}
.btn-std.next::after {
  content: "";
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23FFF" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}
.btn-std.bd {
  border: 0.2rem solid #006FC9;
  background-color: white;
  color: #006FC9 !important;
}
.btn-std.bd.disabled, .btn-std.bd.done {
  border-color: #C8C8C8;
  color: #C8C8C8 !important;
}
.btn-std.bd.disabled::after, .btn-std.bd.done::after {
  display: none;
}
.btn-std.bd.next::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}

.btn-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  background: #F5F5F5;
  border: 1px solid #CCC;
  border-radius: 1rem;
  padding: 1rem;
  color: black !important;
}
.btn-logo i {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}
.btn-logo > span {
  line-height: 1.2;
}
.btn-logo::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
  margin-left: auto;
}

[data-tab-target] {
  cursor: pointer;
}

.inline-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.1em -0.1em 0.1em;
  position: relative;
}
.inline-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat 50% 50%;
  background-size: contain;
}
.inline-icon.next::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}
.inline-icon.down::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.inline-icon.anc::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 25"><path fill="%23006FC9" d="m12 19.1-6-6c-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8l6.7 6.7c.2.3.6.4.9.4.4 0 .7-.1.9-.4l6.7-6.7c.2-.2.3-.5.3-.8 0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3l-6 6Zm0-8.9-6-6c-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8l6.7 6.7c.2.3.6.4.9.4.4 0 .7-.1.9-.4l6.7-6.7c.2-.2.3-.5.3-.8 0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3l-6 6Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.inline-icon.blank::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}

/* ------------------------------
 page-header
------------------------------ */
.page-header {
  background: white;
}
.page-header-logo {
  display: block;
  width: 21rem;
  margin: auto;
}

/* ------------------------------
 kv
------------------------------ */
.kv-sec {
  text-align: center;
}

/* ------------------------------
 period
------------------------------ */
.period-sec {
  background: #006FC9;
  color: white;
  padding: 1.5em 0;
  text-align: left;
}

.period-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.period-table-label {
  display: inline-block;
  padding: 0.25rem 2.2rem;
  border-radius: 0.4rem;
  background: #fff;
  color: #006FC9;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.3;
}
.period-table-text {
  font-size: 1.2rem;
}
.period-table-text em {
  font-style: normal;
  font-size: 1.9rem;
}

.period-notes {
  padding-top: 0.75em;
  margin-top: 0.75em;
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.period-table-box {
  position: relative;
  background: white;
  color: #006FC9;
  padding: 0.25rem 1rem;
  border-radius: 0.4rem;
  line-height: 1.2;
  text-align: center;
}

/* ------------------------------
 anc
------------------------------ */
.anc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.2rem solid rgba(20, 23, 26, 0.3019607843);
}
.anc-list > li {
  width: 25%;
  margin: 0 auto;
  padding: 1rem 1rem 0;
  background: #FBFBFB;
  border-left: 1px solid rgba(20, 23, 26, 0.5019607843);
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #006FC9;
}
.anc-list > li:first-child {
  border-left: 0;
}
.anc-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.anc-list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.3rem;
}
.anc-list-icon img {
  display: block;
  margin: 0 auto;
  width: 3.3rem;
}
.anc-list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}

/* ------------------------------
 about
------------------------------ */
.about-ttl {
  margin-bottom: 1.5rem;
  text-align: center;
}
.about-ttl img {
  width: 26.5rem;
}

.about-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 0.5rem;
}
.about-tab [data-tab-target] {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  padding: 1rem 0;
}
.about-tab [data-tab-target][data-tab-target=about-tab-lawson] {
  background-color: #D4E3FF;
  border-radius: 1rem 0 0 0;
}
.about-tab [data-tab-target][data-tab-target=about-tab-lawson].active {
  background-color: #006FC9;
}
.about-tab [data-tab-target][data-tab-target=about-tab-other] {
  background-color: #FEDEBC;
  border-radius: 0 1rem 0 0;
}
.about-tab [data-tab-target][data-tab-target=about-tab-other].active {
  background-color: #E07000;
}
.about-tab [data-tab-target].active {
  padding: 1.5rem 0;
  border-radius: 1rem 1rem 0 0;
  color: white;
}

.about-tab-item {
  background-color: #FBFAE2;
  border-radius: 0.5rem 0.5rem 1rem 1rem;
  overflow: hidden;
  position: relative;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  display: none;
}
.about-tab-item.active {
  display: block;
}
.about-tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.about-tab-item[data-tab-id=about-tab-lawson]::before {
  background-color: #006FC9;
}
.about-tab-item[data-tab-id=about-tab-other]::before {
  background-color: #E07000;
}

.about-box-border {
  border: 0.2rem solid #006FC9;
  border-radius: 0.8rem;
  background: #EBF1FF;
  padding-bottom: 1rem;
}
.about-box-border.orange {
  border: 0.2rem solid #e76416;
  background: #FFF8F1;
}
.about-box-border-lead {
  font-size: 1.3rem;
}
.about-box-border p {
  position: relative;
}
.about-box-border p img {
  position: relative;
  top: 0.25rem;
  width: 2.5rem;
}

.about-txt-pointup {
  font-weight: bold;
  font-size: 2rem;
}
.about-txt-pointup .num {
  display: inline-block;
  position: relative;
}
.about-txt-pointup .num em {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  font-size: 2em;
  font-style: normal;
  color: #D4E3FF;
  -webkit-text-stroke-width: 1rem;
}
.about-txt-pointup .num em:before, .about-txt-pointup .num em:after {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about-txt-pointup .num em:before {
  z-index: 3;
  color: #FFE100;
  -webkit-text-stroke-width: 0;
}
.about-txt-pointup .num em:after {
  z-index: 2;
  color: #00457E;
  -webkit-text-stroke-width: 0.6rem;
}
.about-txt-pointup .num > small {
  font-size: 0.6em;
}
.orange .about-txt-pointup .num em {
  color: #893000;
}
.orange .about-txt-pointup .num em:before {
  color: #e76416;
}
.orange .about-txt-pointup .num em:after {
  color: #fff;
}

/* ------------------------------
 charege
------------------------------ */
.charge-wrap {
  position: relative;
  padding: 3rem 1.5rem 0;
  background: #FBFAE2;
  border-radius: 1rem;
}
.charge-wrap h2 {
  margin-bottom: 3rem;
}
.charge-wrap h2 img:first-child {
  width: 23.4rem;
  margin-bottom: 1rem;
}
.charge-wrap h2 img:last-child {
  width: 95%;
}

.img-cmp-charge-plus {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.8rem;
}

.btn-charge {
  position: relative;
  background: #E07000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3rem;
  padding: 1rem 0;
  min-height: 3em;
  border-radius: 2em;
  color: white !important;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.6rem;
}
.btn-charge::after {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background: no-repeat 50% 50%;
  background-size: contain;
  right: 2rem;
}
.btn-charge img {
  width: 2.8rem;
  margin-right: 1rem;
}
.btn-charge.next::after {
  content: "";
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23FFF" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}
.howto-charge-headline h3 {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-radius: 1.42rem 1.42rem 0 0;
  background: #fff;
  border: 0.2rem solid #FFDD9A;
  background: #FFDD9A;
  font-size: 1.6rem;
}
.howto-charge {
  position: relative;
  padding: 0 1.5rem;
  border: 0.3rem solid #FFDD9A;
  border-radius: 0 0 1.42rem 1.42rem;
  background: #fff;
}

.accordion-charge,
.accordion-charge-thx {
  border-radius: 1rem;
}
.accordion-charge .toggle-btn,
.accordion-charge-thx .toggle-btn {
  width: calc(100% + 3rem);
  margin: 0 -1.5rem;
  padding: 1.5rem 0;
  border-radius: 0 0 1.42rem 1.42rem;
  background: rgba(251, 220, 7, 0.6980392157);
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
}
.accordion-charge .toggle-btn > i,
.accordion-charge-thx .toggle-btn > i {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  right: 0.5em;
  top: calc(50% - 0.75em);
}
.accordion-charge .toggle-btn > i::before, .accordion-charge .toggle-btn > i::after,
.accordion-charge-thx .toggle-btn > i::before,
.accordion-charge-thx .toggle-btn > i::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.2rem;
  background: black;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.accordion-charge .toggle-btn > i::after,
.accordion-charge-thx .toggle-btn > i::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion-charge .accordion-charge-inner,
.accordion-charge .accordion-charge-thx-inner,
.accordion-charge-thx .accordion-charge-inner,
.accordion-charge-thx .accordion-charge-thx-inner {
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-charge .accordion-charge-inner > *,
.accordion-charge .accordion-charge-thx-inner > *,
.accordion-charge-thx .accordion-charge-inner > *,
.accordion-charge-thx .accordion-charge-thx-inner > * {
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-charge.open .toggle-btn > i::after,
.accordion-charge-thx.open .toggle-btn > i::after {
  display: none;
}
.accordion-charge:not(.open) .accordion-charge-inner, .accordion-charge:not(.open) .accordion-charge-thx-inner,
.accordion-charge-thx:not(.open) .accordion-charge-inner,
.accordion-charge-thx:not(.open) .accordion-charge-thx-inner {
  height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.slide-howto-charge .swiper-button-next:after, .slide-howto-charge .swiper-button-prev:after {
  background-color: #E07000;
}
.slide-howto-charge .swiper-button-prev, .slide-howto-charge .swiper-rtl .swiper-button-next {
  top: 47%;
  left: -1.5rem;
}
.slide-howto-charge .swiper-button-next, .slide-howto-charge .swiper-rtl .swiper-button-prev {
  top: 47%;
  right: -1.5rem;
}
.slide-howto-charge .swiper-pagination-bullet-active {
  background: #E07000;
}
.slide-howto-charge .swiper-horizontal > .swiper-pagination-bullets, .slide-howto-charge .swiper-pagination-bullets.swiper-pagination-horizontal, .slide-howto-charge .swiper-pagination-custom, .slide-howto-charge .swiper-pagination-fraction {
  position: relative;
  bottom: 1.25rem;
}

/* ------------------------------
 entry
------------------------------ */
html.no-entry.is-connect .entry-sec .entry-ttl {
  display: none;
}
.entry-sec .step-ttl {
  color: #828282;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.entry-sec .step-ttl::before, .entry-sec .step-ttl::after {
  content: "";
  background-image: radial-gradient(currentColor 0.2rem, transparent 0.2rem);
  background-repeat: repeat-x;
  background-position: 50% 50%;
  background-size: 1rem 1rem;
  height: 1rem;
  width: 11rem;
}
.entry-sec .step-ttl > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry-sec .step-ttl > span > em {
  display: inline-block;
  font-size: 1.2em;
  font-style: normal;
  margin-top: -0.1em;
}
.entry-sec .step-item {
  margin-top: 0rem;
}
.entry-sec .step-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
html.unknown-connect .entry-sec .step-item-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
html.unknown-connect .entry-sec .step-item-wrap .step-ttl {
  display: none;
}
html.unknown-connect .entry-sec .step-item-wrap .step-01 {
  margin-top: 4rem;
}
html:not(.unknown-connect) .entry-sec .step-item-wrap .step-02 {
  margin-top: 4rem;
}
html.no-entry.is-connect .entry-sec .step-item-wrap .step-ttl, html.no-entry.is-connect .entry-sec .step-item-wrap .step-01 {
  display: none;
}
html.no-entry.is-connect .entry-sec .step-item-wrap .step-02 {
  margin-top: 0;
}
html.no-entry.is-connect .entry-sec .step-item-wrap .entry-txt {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
html.no-entry.is-connect .entry-sec .step-item-wrap .entry-txt > span {
  display: block;
}
html.is-entry .entry-sec .step-item-wrap .entry-period {
  display: none;
}
html.is-entry .entry-sec .step-item-wrap .entry-txt {
  margin-bottom: 1em;
}

.entry-box {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
}
.is-connect .entry-box, .unknown-connect .entry-box, .no-campaign .entry-box {
  background: none;
  padding: 0;
  margin-top: 0;
}
.no-campaign .entry-box .agree-option, .is-connect .entry-box .agree-option, .unknown-connect .entry-box .agree-option, .is-entry .entry-box .agree-option {
  display: none;
}
.entry-box label.agree-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  font-weight: bold;
  cursor: pointer;
}
.entry-box #agree-checkbox {
  display: none;
}
.entry-box #agree-checkbox + i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.4em;
  border: 0.1rem solid #666;
  border-radius: 0.3rem;
  background-color: white;
}
.entry-box #agree-checkbox + i::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://prcp.pass.auone.jp/gpl/202409_boost/img/icon_check.png) no-repeat 50% 50%;
  background-size: contain;
}
.entry-box #agree-checkbox:checked + i {
  background-color: #006FC9;
  border-color: transparent;
}
.entry-box #agree-checkbox:checked + i::before {
  opacity: 1;
}
.entry-box .btn-entry:not(.disabled) {
  -webkit-box-shadow: 0 0.3rem 0.3em rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.3rem 0.3em rgba(0, 0, 0, 0.3);
}

/* ------------------------------
 flow
------------------------------ */
.flow-sec {
  border-radius: 1.5rem;
  background: #FFF9F3;
  padding: 2rem 2rem 3rem;
}

.ttl-flow img {
  width: 92%;
}

/* ------------------------------
 shoplist
------------------------------ */
.ttl-shoplist img {
  width: 14rem;
}

.shoplist-item {
  margin-top: 2rem;
  border-radius: 1.5rem;
  background: white;
  overflow: hidden;
}

.shoplist-item-head {
  background: #006FC9;
}
.shoplist-item-head-note {
  margin-top: -1rem;
  padding-bottom: 1rem;
  color: white;
}
.orange .shoplist-item-head-note {
  color: black;
}
.shoplist-item-head.orange {
  background: #FD8F21;
}

.shoplist-item-ttl {
  position: relative;
  top: -1rem;
  font-size: 2.4rem;
  text-shadow: 0.3rem 0.3rem 0px #00457E, 0.1rem 0.1rem 0px #00457E, -0.1rem -0.1rem 0px #00457E, 0.1rem -0.1rem 0px #00457E, -0.1rem 0.1rem 0px #00457E;
  color: #fff;
}
.orange .shoplist-item-ttl {
  text-shadow: 0.3rem 0.3rem 0px #682400, 0.1rem 0.1rem 0px #682400, -0.1rem -0.1rem 0px #682400, 0.1rem -0.1rem 0px #682400, -0.1rem 0.1rem 0px #682400;
}
.shoplist-item-ttl-max {
  position: absolute;
  top: 3rem;
  right: 5.3rem;
  letter-spacing: 0.1em;
  font-size: 0.65em;
  text-shadow: none;
}
.orange .shoplist-item-ttl-max {
  right: 5.6rem;
}
.shoplist-item-ttl-rate {
  display: inline-block;
  position: relative;
  font-size: 1.3em;
  text-shadow: none;
}
.shoplist-item-ttl-rate em, .shoplist-item-ttl-rate span {
  position: relative;
  top: 1.1rem;
  display: inline-block;
  margin: 0 1rem;
  font-size: 2em;
  font-style: normal;
  color: #00457E;
  -webkit-text-stroke-width: 1.3rem;
}
.shoplist-item-ttl-rate em:before, .shoplist-item-ttl-rate em:after, .shoplist-item-ttl-rate span:before, .shoplist-item-ttl-rate span:after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.shoplist-item-ttl-rate em:before, .shoplist-item-ttl-rate span:before {
  z-index: 3;
  color: #006FC9;
  -webkit-text-stroke-width: 0;
}
.shoplist-item-ttl-rate em:after, .shoplist-item-ttl-rate span:after {
  z-index: 2;
  color: white;
  -webkit-text-stroke-width: 0.8rem;
}
.shoplist-item-ttl-rate span {
  top: 0.9rem;
  font-size: 1em;
  margin: 0 0 0 -0.5rem;
}
.orange .shoplist-item-ttl-rate em, .orange .shoplist-item-ttl-rate span {
  color: #893000;
}
.orange .shoplist-item-ttl-rate em:before, .orange .shoplist-item-ttl-rate span:before {
  color: #E07000;
}
.shoplist-item-ttl img {
  width: 14.2rem;
}

.readmore {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  font-size: 1.4rem;
  color: #006FC9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.readmore.is-hidden {
  height: 0 !important;
  margin-top: 0;
}

/* ------------------------------
 brand
------------------------------ */
.brand-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.brand-list-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-transition: grid-template-rows 1s ease, margin 1s ease;
  transition: grid-template-rows 1s ease, margin 1s ease;
  transition: grid-template-rows 1s ease, margin 1s ease, -ms-grid-rows 1s ease;
  width: calc(33.3% - 1rem);
  margin: 1.5rem 0.5rem 0;
  text-align: center;
  color: black;
}
.brand-list-item.is-hidden {
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  margin-top: 0;
}
.brand-list-item > div {
  overflow: hidden;
}
.brand-list-item > div figure {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.brand-list-item > div figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-list-item p {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.brand-link {
  border-top: 0.1rem solid #CCC;
  margin-top: 1rem;
  padding-top: 2rem;
}
.brand-link .btn-brand {
  color: #D23A00 !important;
  background-color: #FFF2E5;
}
.brand-link .btn-brand::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23D23A00" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}

.brand-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
  margin-top: 1rem;
}
.brand-tab a {
  width: calc(50% - 0.5rem);
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #CCC;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.3rem 0;
  min-height: 3em;
  position: relative;
  border-radius: 0.5rem;
}
.brand-tab a:first-child {
  width: 100%;
}
.brand-tab a > span {
  position: relative;
}
.brand-tab a.active {
  background-color: #FD8F21;
  border-color: #FD8F21;
}

.brand-tab-item {
  width: 100%;
  border-top: 0;
  padding: 0.5rem 0;
  top: 0.5rem;
  left: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.brand-tab-item.active {
  position: static;
  opacity: 1;
  pointer-events: all;
}

/* ------------------------------
 complete
------------------------------ */
.complete-ttl {
  padding: 2rem 0;
  text-align: center;
}
.complete-ttl img {
  width: 23.6rem;
}

.img-before-shopping {
  width: 28rem;
}

.thx-charge {
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  background: #FBFBFB;
  border: 0.3rem solid #006FC9;
  border-radius: 1rem;
  text-align: center;
  position: relative;
}

.img-charge-thx {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.label-cmp-charge-thx {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-charge-thx .toggle-btn {
  background: rgba(20, 23, 26, 0.031372549);
  color: #006FC9;
}
.accordion-charge-thx .toggle-btn > i {
  right: 0.8rem;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
}
.accordion-charge-thx .toggle-btn > i::before, .accordion-charge-thx .toggle-btn > i::after {
  background: #006FC9;
}
.accordion-charge-thx .accordion-charge-thx-inner {
  background: #FBFBFB;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}
.accordion-charge-thx .accordion-charge-thx-inner:before {
  content: "";
  display: block;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
  background: #FBFBFB;
}
.accordion-charge-thx .accordion-charge-thx-inner p {
  margin: 0 -1.5rem -1.5rem;
  padding-top: 1.5rem;
}

.accordion-charge-inner p {
  margin: 0 -1.5rem -1.5rem;
}

.list-anchor-comp li a {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  padding: 0 1rem;
  height: 4.5rem;
  background: #FBFBFB;
  border: 0.3rem solid #006FC9;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #006FC9;
  line-height: 3.9rem;
}
.list-anchor-comp li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  border-radius: 1000px;
}
.list-anchor-comp li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  display: block;
  width: 1.1rem;
  height: 1.2rem;
  background-image: url("https://prcp.pass.auone.jp/gpl/202510_boost/img/20251001/arrow_double.png");
  background-size: contain;
}
.list-anchor-comp li a img {
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 2.5rem;
}

.ttl-complete-bnr {
  text-align: center;
}
.ttl-complete-bnr img {
  width: 95%;
}

.complete-benefit {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.6rem;
}
.complete-benefit h3 {
  font-size: 2rem;
}
.complete-benefit h3 > img {
  position: relative;
  top: -0.1rem;
  width: 2.6rem;
  margin-right: 0.5rem;
}
.complete-benefit figure {
  margin-bottom: 1.5rem;
}

/* ------------------------------
 detail
------------------------------ */
.detail-accordion {
  border-radius: 1rem;
  background: white;
  overflow: hidden;
}
.detail-accordion .toggle-btn {
  width: 100%;
  padding: 1.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: left;
  position: relative;
}
.detail-accordion .toggle-btn > i {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  right: 0.5em;
  top: calc(50% - 0.75em);
}
.detail-accordion .toggle-btn > i::before, .detail-accordion .toggle-btn > i::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0.2rem;
  background: #006FC9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.detail-accordion .toggle-btn > i::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.detail-accordion .toggle-inner {
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 0.5rem 1.5rem 1.5rem;
}
.detail-accordion .toggle-inner > * {
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.detail-accordion.open .toggle-btn > i::after {
  display: none;
}
.detail-accordion:not(.open) .toggle-inner {
  height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.detail-accordion h3 {
  background: #006FC9;
  text-align: center;
  border-radius: 0.8rem 0.8rem 0 0;
  color: #fff;
  padding: 1rem;
  font-size: 1.6rem;
}
.detail-accordion h3.orange {
  background: #FD8F21;
}

.list-accordion {
  margin-bottom: 1rem;
}
.list-accordion-wrap {
  border: 1px solid rgba(20, 23, 26, 0.3019607843);
  border-top: 0;
  border-radius: 0.8rem;
}
.list-accordion-baserate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1rem 1rem;
  font-size: 1.2rem;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 23, 26, 0.3019607843);
  font-weight: bold;
}
.list-accordion-baserate span {
  width: 50%;
  text-align: center;
  border-right: 1px solid rgba(20, 23, 26, 0.0588235294);
}
.list-accordion-baserate span:last-child {
  border-right: 0;
}
.list-accordion li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.list-accordion li h4 {
  width: 33%;
  padding: 1rem;
  border-right: 1px solid rgba(20, 23, 26, 0.0588235294);
  text-align: center;
  font-weight: normal;
  font-size: 1.2rem;
}
.list-accordion li h4 span {
  font-size: 1.4rem;
}

.accordion-content-detail {
  background: white;
  padding: 1rem;
  border-top: none;
  width: 67%;
}

.accordion-content-text {
  text-align: center;
}
.accordion-content-text > span {
  color: #006FC9;
  font-weight: bold;
  font-size: 1.2rem;
}
.list-accordion li:first-child .accordion-content-text > span {
  font-weight: normal;
}
.list-accordion-orange .accordion-content-text > span {
  color: #D23A00;
}

.accordion-content-point {
  background: rgba(203, 225, 255, 0.6980392157);
  margin-bottom: 0.5rem;
  padding: 1rem;
  border-radius: 0.4rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.accordion-content-point > span {
  position: relative;
  color: #006FC9;
  font-size: 1.8rem;
}
.accordion-content-point > span:after {
  content: "※";
  position: absolute;
  top: 0;
  right: -1em;
  color: black;
  font-size: 1rem;
}
.list-accordion-orange .accordion-content-point {
  background: rgba(254, 231, 208, 0.6980392157);
}
.list-accordion-orange .accordion-content-point > span {
  color: #D23A00;
}

/* ------------------------------
 terms
------------------------------ */
.terms-sec {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.terms-sec .notes-list > li {
  margin-top: 0.3em;
}

/* ------------------------------
 page-menu
------------------------------ */
#page-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
}
#page-menu .menu-open-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 1rem;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: white;
  border: #006FC9 solid;
  border-width: 0.3rem 0 0.3rem 0.3rem;
  border-radius: 1rem 0 0 1rem;
  -webkit-box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
}
#page-menu .menu-open-btn::before {
  content: "";
  width: 85%;
  height: 85%;
  background: url(https://prcp.pass.auone.jp/gpl/202506_boost/img/20250601/icon_menu.svg) no-repeat 50% 50%;
  background-size: contain;
  margin-left: 5%;
}
html.menu-open #page-menu .menu-open-btn {
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  pointer-events: none;
}
#page-menu .menu-close-btn {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  right: 0;
  top: -2rem;
  border-radius: 50%;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23FFF" d="M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
  background-color: #006FC9;
  background-size: 80% auto;
}
#page-menu .menu-wrap {
  position: absolute;
  top: 3rem;
  right: 0;
  background: white;
  border: #006FC9 solid;
  border-width: 0.3rem 0 0.3rem 0.3rem;
  border-radius: 1rem 0 0 1rem;
  -webkit-box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
  padding: 2.5rem 2rem;
}
html:not(.menu-open) #page-menu .menu-wrap {
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  pointer-events: none;
}
#page-menu .menu-list {
  font-weight: bold;
  line-height: 1.2;
}
#page-menu .menu-list li + li {
  margin-top: 1em;
}
#page-menu .menu-list a::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_menu_arrow.svg") no-repeat 50% 50%;
  background-size: contain;
  margin: 0 0.2em -0.1em -0.2em;
}

/* ------------------------------
 fixed-wrap
------------------------------ */
#fixed-wrap {
  text-align: center;
  background-color: white;
  background-size: 100% auto;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 600px;
  z-index: 100;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  clip-path: inset(-1rem 0 0 0);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-entry #fixed-wrap, .no-campaign #fixed-wrap {
  display: none !important;
}
.is-scroll-enter-entry #fixed-wrap {
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}
#fixed-wrap .btn-fixed-entry > i {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 25"><path fill="%23006FC9" d="m12 19.1-6-6c-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8l6.7 6.7c.2.3.6.4.9.4.4 0 .7-.1.9-.4l6.7-6.7c.2-.2.3-.5.3-.8 0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3l-6 6Zm0-8.9-6-6c-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8l6.7 6.7c.2.3.6.4.9.4.4 0 .7-.1.9-.4l6.7-6.7c.2-.2.3-.5.3-.8 0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3l-6 6Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
  background-color: white;
  background-size: 70% auto;
  right: 1em;
}
.is-scroll-over-entry #fixed-wrap .btn-fixed-entry > i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#fixed-wrap .btn-fixed-join {
  min-height: 2.5em;
  -webkit-box-shadow: 0 0.3rem 0 #00457d;
          box-shadow: 0 0.3rem 0 #00457d;
}

/* ------------------------------
 display
------------------------------ */
[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.is-entry .show-is-entry {
  display: block !important;
}

html.is-entry .show-is-entry-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.no-entry .show-no-entry {
  display: block !important;
}

html.no-entry .show-no-entry-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.is-connect .show-is-connect {
  display: block !important;
}

html.is-connect .show-is-connect-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.no-connect .show-no-connect {
  display: block !important;
}

html.no-connect .show-no-connect-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.unknown-connect .show-unknown-connect {
  display: block !important;
}

html.unknown-connect .show-unknown-connect-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.is-period-before .show-is-period-before {
  display: block !important;
}

html.is-period-before .show-is-period-before-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.is-period-after .show-is-period-after {
  display: block !important;
}

html.is-period-after .show-is-period-after-inline {
  display: inline !important;
}

[class^=show-], [class*=" show-"] {
  display: none !important;
}

html.no-member .show-no-member {
  display: block !important;
}

html.no-member .show-no-member-inline {
  display: inline !important;
}

html.is-entry .hide-is-entry {
  display: none !important;
}

html.no-entry .hide-no-entry {
  display: none !important;
}

html.is-connect .hide-is-connect {
  display: none !important;
}

html.no-connect .hide-no-connect {
  display: none !important;
}

html.unknown-connect .hide-unknown-connect {
  display: none !important;
}

html.is-period-before .hide-is-period-before {
  display: none !important;
}

html.is-period-after .hide-is-period-after {
  display: none !important;
}

html.no-member .hide-no-member {
  display: none !important;
}

/* ------------------------------
 debug
------------------------------ */
#debug > * {
  display: none;
}
#debug .show {
  display: block;
}

/* ------------------------------
 GAMPLA
------------------------------ */
.footer {
  text-align: center;
}
.footer .optout {
  font-size: 1rem;
  margin-bottom: 3rem;
}
.footer .copyright {
  font-size: 0.9rem;
  padding: 2rem;
  background: black;
  color: white;
}
.has-fixed-wrap .footer .copyright {
  padding-bottom: 14rem;
}
.no-member.has-fixed-wrap .footer .copyright {
  padding-bottom: 17rem;
}

div.campaign__container-floating-footer {
  display: none;
}

.campaign__container {
  max-width: 600px;
}

.alert {
  margin-bottom: 0;
  border-radius: 0;
}

/* ------------------------------
 button
------------------------------ */
.btn-std {
  position: relative;
}
.btn-std.bal-member::before {
  content: "";
  top: -1.25rem;
  left: 0;
  position: absolute;
  width: 11rem;
  height: 100%;
  background: url(https://prcp.pass.auone.jp/gpl/202507_boost/img/20250701/bal_member.png) no-repeat 0 0;
  background-size: contain;
}

.lawson-link {
  margin-top: 2rem;
  padding-top: 1rem;
}

.lawson-link .btn-lawson {
  color: #006FC9 !important;
  background-color: #ecf5ff;
}

.lawson-link .btn-lawson::after {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -960 960 960"><path fill="%23006FC9" d="m321-80-71-71 329-329-329-329 71-71 400 400L321-80Z" /></svg>') no-repeat 50% 50%;
  background-size: contain;
}

/* ------------------------------
 slider
------------------------------ */
.swiper-container {
  position: relative;
}

.swiper-button-next, .swiper-button-prev {
  color: transparent;
  width: 3.2rem;
  height: 3.2rem;
}
.swiper-button-next:after, .swiper-button-prev:after {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1000px;
  background-color: #e76416;
  background-image: url("https://prcp.pass.auone.jp/gpl/202508_boost/img/icon-arrow-next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.8rem;
}

.swiper-button-prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: -1.9rem;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: -1.9rem;
}

.swiper-pagination-bullet-active {
  background: #e76416;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -1.9rem;
}