@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* jakyosaiappディレクトリ以下で使用する */
/**
 * 引数のfontSizeをremに変換する関数
 * @param fontSize フォントサイズ
 */
/**
* 引数の最大画面サイズから指定されたpx数を元にvwに変換する関数
* @param maxScreenSize 最大画面サイズ
* @param px 変換するpx数
*/
/**
* 引数のpx数と親要素のparentを元に割合を返す関数
* @param parent 基準となる画面幅
* @param px 変換するpx数
*/
/**
 * レスポンシブ
 * - sm:  576px〜
 * - md:  768px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.d-pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .d-pc {
    display: block;
  }
}

.d-sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .d-sp {
    display: none !important;
  }
}

.red-color {
  color: #ff0000;
}

.emphasis {
  font-weight: 700;
  text-decoration: underline;
}

[class*=__image-wrapper] img, [class*=__image-wrapper] svg {
  width: 100%;
  height: auto;
}

ul.flex-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  .hover:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.2" /><feFuncG type="linear" slope="1.2" /><feFuncB type="linear" slope="1.2" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }
}

header {
  width: 100%;
  padding: 15px 0;
  background-color: #ffffff;
}
header .container {
  max-width: none;
  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;
}
header .header__logo__image-wrapper {
  max-width: 150px;
  display: block;
}

footer {
  width: 100%;
  background-color: #FFF4A7;
}
footer .inner {
  padding: 4% 0 15.5%;
}
@media screen and (max-width: 768px) {
  footer .inner {
    padding: 10% 0 40%;
  }
}
footer ul {
  width: 72%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 768px) {
  footer ul {
    width: 92%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3vw;
  }
}
footer ul li a {
  color: #000000;
  font-size: min(18px, 1.9vw);
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer ul li a {
    display: block;
    font-size: 4.8vw;
    text-align: center;
  }
}
footer .footer__logo__image-wrapper {
  width: 25%;
  margin: 4% auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  footer .footer__logo__image-wrapper {
    width: 55%;
    margin: 8% auto 0;
  }
}
footer small {
  margin: 5% auto 0;
  display: block;
  color: #000000;
  font-size: min(14px, 1.5vw);
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer small {
    margin: 12% auto 0;
    font-size: 3.7vw;
  }
}

body.reg footer {
  background-color: #FFF4A7;
}

body.car footer {
  background-color: #FFFFFF;
}

body.login footer {
  background-color: #FFFFFF;
}

.footer__bottom-link__area {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.footer__bottom-link__area .inner {
  width: 93%;
  margin: 0 auto;
  padding: 1.5% 0;
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area .inner {
    width: 100%;
    padding: 3% 0;
  }
}
.footer__bottom-link__area ul {
  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;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area ul {
    gap: 2%;
  }
}
.footer__bottom-link__area ul li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area ul li:first-child {
    -webkit-box-flex: 6;
        -ms-flex: 6;
            flex: 6;
  }
  .footer__bottom-link__area ul li:last-child {
    -webkit-box-flex: 5.3;
        -ms-flex: 5.3;
            flex: 5.3;
  }
}
.footer__bottom-link__area ul button {
  font-family: "Noto Sans JP", sans-serif;
}
.footer__bottom-link__area ul a, .footer__bottom-link__area ul button {
  width: 100%;
  height: 3.7em;
  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;
  gap: 0.5em;
  position: relative;
  font-size: min(20px, 2.1vw);
  line-height: 2;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area ul a, .footer__bottom-link__area ul button {
    height: 3.9em;
    font-size: 3.7vw;
    line-height: 1.2;
  }
}
.footer__bottom-link__area ul a:after, .footer__bottom-link__area ul button:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  right: 0.7em;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area ul a:after, .footer__bottom-link__area ul button:after {
    right: 0.2em;
  }
}
.footer__bottom-link__area ul a .footer__headphone__image-wrapper, .footer__bottom-link__area ul button .footer__headphone__image-wrapper {
  width: 2.5em;
  margin: 4% 0 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__bottom-link__area ul a .footer__headphone__image-wrapper, .footer__bottom-link__area ul button .footer__headphone__image-wrapper {
    width: 1.2em;
    margin: 4% 0 0;
    display: block;
    position: absolute;
    right: 2.1em;
    bottom: 0.5em;
  }
}

body.reg .footer__bottom-link__area {
  background-color: #177B63;
}
body.reg .footer__bottom-link__area ul a, body.reg .footer__bottom-link__area ul button {
  color: #177b63;
  background-color: #FDE354;
}
body.reg .footer__bottom-link__area ul a::after, body.reg .footer__bottom-link__area ul button::after {
  border-left: 0.6em solid #177B63;
}
body.reg .footer__bottom-link__area ul a .footer__headphone__image-wrapper svg path, body.reg .footer__bottom-link__area ul button .footer__headphone__image-wrapper svg path {
  fill: #177b63;
}

body.car .footer__bottom-link__area {
  background-color: #377BB6;
}
body.car .footer__bottom-link__area ul a, body.car .footer__bottom-link__area ul button {
  color: #377BB6;
  background-color: #FFF100;
}
body.car .footer__bottom-link__area ul a::after, body.car .footer__bottom-link__area ul button::after {
  border-left: 0.6em solid #377BB6;
}
body.car .footer__bottom-link__area ul a .footer__headphone__image-wrapper svg path, body.car .footer__bottom-link__area ul button .footer__headphone__image-wrapper svg path {
  fill: #377BB6;
}

body.login .footer__bottom-link__area {
  background-color: #9D8735;
}
body.login .footer__bottom-link__area ul a, body.login .footer__bottom-link__area ul button {
  color: #705A07;
  background-color: #ffffff;
}
body.login .footer__bottom-link__area ul a::after, body.login .footer__bottom-link__area ul button::after {
  border-left: 0.6em solid #705A07;
}
body.login .footer__bottom-link__area ul a .footer__headphone__image-wrapper svg path, body.login .footer__bottom-link__area ul button .footer__headphone__image-wrapper svg path {
  fill: #705A07;
}

:is(body.reg, body.car) .components-button button {
  width: 100%;
  padding: 0.75em 2em 0.75em 1.5em;
  position: relative;
  background-color: #177B63;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7vw;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  :is(body.reg, body.car) .components-button button {
    padding: 1em 2.5em 1em 2em;
    font-size: max(min(1.1vw, 14px), 10px);
  }
  :is(body.reg, body.car) .components-button button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.2" /><feFuncG type="linear" slope="1.2" /><feFuncB type="linear" slope="1.2" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
:is(body.reg, body.car) .components-button button::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: 53%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  :is(body.reg, body.car) .components-button button::after {
    width: 0.8em;
    height: 0.8em;
    right: 0.8em;
  }
}

body.reg .components-button button {
  color: #FEF9B9;
  background-color: #177B63;
}
body.reg .components-button button::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.55%22%20height%3D%2211.55%22%20viewBox%3D%220%200%2011.55%2011.55%22%3E%20%3Cpath%20d%3D%22M5.775-3%2C11.55%2C8.55H0Z%22%20transform%3D%22translate(8.55)%20rotate(90)%22%20fill%3D%22%23fff9b9%22%2F%3E%3C%2Fsvg%3E");
}

body.car .components-button button {
  color: #FFFFFF;
  background-color: #22A63C;
}
body.car .components-button button::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2211%22%20viewBox%3D%220%200%208%2011%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_10%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2010%22%20d%3D%22M4.676%2C1.2a1%2C1%2C0%2C0%2C1%2C1.648%2C0l3.6%2C5.235A1%2C1%2C0%2C0%2C1%2C9.1%2C8H1.9a1%2C1%2C0%2C0%2C1-.824-1.567Z%22%20transform%3D%22translate(8)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}

body.login .components-button button {
  width: 100%;
  padding: 0.75em 2em 0.75em 1.5em;
  position: relative;
  color: #ffffff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.7vw;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, from(#DD115A), to(#BB0043));
  background: linear-gradient(180deg, #DD115A 0%, #BB0043 100%);
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
          box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  body.login .components-button button {
    padding: 1em 2.5em 1em 2em;
    font-size: max(min(1.1vw, 14px), 10px);
  }
  body.login .components-button button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.2" /><feFuncG type="linear" slope="1.2" /><feFuncB type="linear" slope="1.2" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
body.login .components-button button::before {
  content: "";
  width: 50%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
          transform: translate(-50%, -70%) rotate(45deg);
  background-color: rgba(255, 255, 255, .1490196078);
}
body.login .components-button button::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: 53%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2211%22%20viewBox%3D%220%200%208%2011%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_10%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2010%22%20d%3D%22M4.676%2C1.2a1%2C1%2C0%2C0%2C1%2C1.648%2C0l3.6%2C5.235A1%2C1%2C0%2C0%2C1%2C9.1%2C8H1.9a1%2C1%2C0%2C0%2C1-.824-1.567Z%22%20transform%3D%22translate(8)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  body.login .components-button button::after {
    width: 0.8em;
    height: 0.8em;
    right: 0.8em;
  }
}

section.store-link .inner {
  padding: 4% 0 3.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px) {
  section.store-link .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  section.store-link .inner {
    padding: 14% 0 15%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.store-link .inner.__qr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.store-link .inner.__qr .store-link__how-to-button__wrapper {
  margin: 0.5em 0 0;
}
section.store-link .store-link__speech-balloon__area {
  margin: 0 auto;
  padding: 0.85em 0.9em;
  position: relative;
  background-color: #F3830A;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: min(22px, 2.3vw);
  line-height: 1.27;
  letter-spacing: -0.03em;
  white-space: nowrap;
  word-break: normal;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__speech-balloon__area {
    width: 100%;
    padding: 0.55em 0;
    font-size: 6vw;
    line-height: 1.3;
    text-align: center;
    border-radius: 20px;
  }
}
section.store-link .store-link__speech-balloon__area:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -15px;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: rotate(-90deg) translate(50%, 50%);
          transform: rotate(-90deg) translate(50%, 50%);
  border: 15px solid transparent;
  border-top-color: #F3830A;
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__speech-balloon__area:after {
    margin-left: -7vw;
    top: 100%;
    left: 50%;
    -webkit-transform: none;
            transform: none;
    border: 7vw solid transparent;
    border-top-color: #F3830A;
  }
}
section.store-link .store-link__links__flex {
  width: 77%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__links__flex {
    width: 100%;
    margin: 14% auto 0;
    gap: 5vw;
  }
}
section.store-link .store-link__links__flex .store-link__links-store__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
}
section.store-link .store-link__message__text {
  color: #177B63;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__message__text {
    font-size: 5vw;
  }
}
section.store-link .store-link__how-to-button__wrapper {
  width: 61%;
  margin: 0 auto;
  padding: 0.6em 0;
  display: block;
  position: relative;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(26px, 2.7vw);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  background-color: #F45C27;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__how-to-button__wrapper {
    width: 100%;
    padding: 0.3em 0;
    font-size: 6.4vw;
    letter-spacing: 0;
  }
}
section.store-link .store-link__how-to-button__wrapper:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.1em;
  border-left: 0.6em solid #FFFFFF;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  section.store-link .store-link__how-to-button__wrapper:after {
    right: 0.4em;
  }
}

@media screen and (max-width: 768px) {
  body.qr section.store-link .inner {
    padding: 7% 0;
  }
}
body.qr section.address section.store-link .container {
  padding: 0;
}
@media screen and (max-width: 768px) {
  body.qr section.address section.store-link .container {
    padding: 10% 0;
  }
}

.end-message {
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .end-message {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
}
.end-message .end-message__title {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .end-message .end-message__title {
    margin-bottom: 4px;
  }
}
.end-message .end-message__text {
  display: block;
}
.end-message .end-message__text .end-message__text-block {
  display: inline-block;
}

.lead {
  text-align: center;
  font-size: 18px;
  line-height: 45px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lead {
    line-height: 1.4;
  }
}
.lead .lead__button {
  max-width: 910px;
  width: 100%;
  height: 75px;
  margin: 20px auto 0;
  background-color: #F3830A;
  border-radius: 50px;
  display: block;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .lead .lead__button {
    height: auto;
    padding: 14px 0 14px;
    margin: 20px auto 0;
    width: 315px;
  }
}
.lead .lead__button .lead__button-text {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .lead .lead__button .lead__button-text {
    font-size: 22px;
  }
}
.lead .lead__button::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #FFF;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .lead .lead__button::after {
    right: 15px;
  }
}
.lead .lead__link {
  font-weight: 500;
  border-bottom: #00a1d4 2px solid;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  color: #00a1d4;
  display: inline-block;
  line-height: 1.2;
  margin: 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .lead .lead__link {
    font-size: 17px;
    letter-spacing: -0.05em;
  }
}
.lead .lead__link .lead__link-image {
  width: 20px;
  margin-left: 2px;
  margin-bottom: -2px;
}
@media screen and (max-width: 768px) {
  .lead .lead__link .lead__link-image {
    font-size: 19px;
  }
}

section.kv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.kv .container {
    padding: 0;
  }
}

@media screen and (min-width: 769px) {
  body.reg section.kv {
    background-image: url(/images/sections/kv/reg_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}
body.reg section.kv .kv__background-left__image-wrapper {
  width: 19%;
  position: absolute;
  top: 0;
  left: 0;
}
body.reg section.kv .kv__background-right__image-wrapper {
  width: 31%;
  position: absolute;
  top: 0;
  right: 0;
}
body.reg section.kv .kv__title__image-wrapper {
  position: relative;
}
@media screen and (min-width: 769px) {
  body.reg section.kv .kv__title__image-wrapper {
    padding: 6% 0 4%;
  }
}
body.reg section.kv + section.store-link {
  background-color: #FEF4AC;
}

@media screen and (min-width: 769px) {
  body.car section.kv {
    background-image: url(/images/sections/kv/car_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}
body.car section.kv .kv__title__image-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 2% 0;
}
@media screen and (max-width: 768px) {
  body.car section.kv .kv__title__image-wrapper {
    padding: 0;
  }
}

body.login section.kv {
  background-color: #dcd2ad;
}
body.login section.kv .kv__title__image-wrapper {
  margin: 0 auto;
}

section.menu ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
}
@media screen and (max-width: 768px) {
  section.menu ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
section.menu ul li {
  text-align: center;
}

:is(body.reg, body.car) section.menu {
  font-size: min(26px, 2.7vw);
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.menu {
    padding: 1em 0 1.2em;
    font-size: 4.7vw;
  }
}
:is(body.reg, body.car) section.menu ul {
  gap: 0.77em;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.menu ul {
    padding: 0 1em;
  }
}
:is(body.reg, body.car) section.menu ul li a {
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  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;
  font-weight: bold;
  line-height: 1.1;
  border-radius: 3em;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.menu ul li a.__small {
    font-size: 3.7vw;
  }
}

body.reg section.menu {
  padding: 1em 0 1.4em;
  background-color: #50B2A6;
}
body.reg section.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.reg section.menu ul li {
  width: 31.7%;
}
@media screen and (max-width: 768px) {
  body.reg section.menu ul li {
    width: 47.7%;
    height: 3.2em;
  }
}
body.reg section.menu ul li a {
  background-color: #FDE354;
  color: #177B63;
  -webkit-box-shadow: 0px 10px 0px 0px #177B63;
          box-shadow: 0px 10px 0px 0px #177B63;
}

body.car section.menu {
  padding: 1em 0 0.6em;
  background-color: #FFFFFF;
}
body.car section.menu ul li a {
  background-color: #377BB6;
  color: #FFFFFF;
}

body.login section.menu {
  padding: 2.3em 0 2.4em;
  font-family: "Noto Serif JP", sans-serif;
  background-color: #ffffff;
  border-top: 3px solid #9D8735;
  border-bottom: 3px solid #9D8735;
}
@media screen and (max-width: 768px) {
  body.login section.menu {
    padding: 2.3em 0 4em;
  }
}
body.login section.menu ul {
  gap: 2%;
}
@media screen and (max-width: 768px) {
  body.login section.menu ul {
    gap: 11% 5%;
  }
}
body.login section.menu ul li a {
  padding: 1.1em 0;
  display: block;
  position: relative;
  color: #ffffff;
  font-size: min(20px, 2.1vw);
  background: -webkit-gradient(linear, left top, left bottom, from(#DD115A), to(#BB0043));
  background: linear-gradient(180deg, #DD115A 0%, #BB0043 100%);
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
          box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.login section.menu ul li a {
    font-size: 4vw;
  }
}
body.login section.menu ul li a::before {
  content: "";
  width: 70%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
          transform: translate(-50%, -60%) rotate(45deg);
  background-color: rgba(255, 255, 255, .1490196078);
}

section.about .inner {
  padding: 6% 0 12%;
}
@media screen and (max-width: 1010px) {
  section.about .inner {
    padding: 11% 0 12%;
  }
}
section.about .about__description__text {
  margin: 3% auto 0;
  color: #000000;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.about .about__description__text {
    margin: 6% auto 0;
    font-size: 4.8vw;
    line-height: 1.6;
  }
}

:is(body.reg, body.car) section.about .about__present-info__area {
  margin: 4% auto 0;
  padding: 4% 0 3.5%;
  position: relative;
  background-color: #ffffff;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area {
    margin: 9% auto 0;
    padding: 7.5% 0 10.5%;
    border-radius: 8vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area h3 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: min(32px, 3.3vw);
  font-weight: bold;
  line-height: 1.39;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area h3 {
    padding: 0 1.7em;
    font-size: 6.7vw;
    line-height: 1.99;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area h4 {
  margin: 1.8% auto 0;
  color: #000000;
  font-size: min(24px, 2.5vw);
  font-weight: bold;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area h4 {
    margin: 1.3% auto 0;
    font-size: 5.5vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__giftee-icon__image-wrapper {
  width: 37%;
  margin: 4.5% auto 0px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__giftee-icon__image-wrapper {
    width: 79%;
    margin: 10.5% auto 0px;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper {
  margin: 0.6% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper {
    margin: 2.8% auto 0;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper ul {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper ul {
    width: 91%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6%;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper ul .about__present-item-name__text {
  margin: 9% auto 0;
  color: #000000;
  font-size: min(13px, 1.4vw);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-list__wrapper ul .about__present-item-name__text {
    font-size: 2.9vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper {
  margin: 8% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper {
    margin: 17% auto 0;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper ul {
  width: 93%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper ul .about__present-02-list-item-name__text {
  width: 80%;
  margin: 6% 0 2% 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  font-size: min(18px, 1.9vw);
  font-weight: bold;
  line-height: 1.39;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-02-list__wrapper ul .about__present-02-list-item-name__text {
    width: 100%;
    margin: 5% auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 4.9vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-02-note__text {
  width: 93%;
  margin: 2% auto 0;
  color: #000000;
  font-size: min(15px, 1.6vw);
  font-weight: 500;
  line-height: 1.47;
  text-align: left;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-02-note__text {
    margin: 10% auto 0;
    font-size: 3.6vw;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-message__text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.75em 1em;
  font-size: min(20px, 2.1vw);
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-message__text {
    width: 91%;
    font-size: 5vw;
    text-align: center;
    line-height: 1.25;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-note__text {
  width: 80%;
  margin: 2% auto 0;
  font-size: min(15px, 1.6vw);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-note__text {
    width: 92%;
    margin: 5.5% auto 0;
    font-size: 4vw;
    line-height: 1.4;
  }
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-note__text-margin {
  margin-top: 15px;
}
:is(body.reg, body.car) section.about .about__present-info__area .about__present-title-02__image-wrapper {
  width: 52%;
  margin: 3% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-info__area .about__present-title-02__image-wrapper {
    width: 75%;
    margin: 9% auto 0;
  }
}
:is(body.reg, body.car) section.about .about__present-plus__area {
  margin: 2.7% auto 0;
  font-weight: bold;
  font-size: min(32px, 3.3vw);
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-plus__area {
    margin: 6.7% auto 0;
    font-size: 6vw;
  }
}
:is(body.reg, body.car) section.about .about__present-plus__area .about__present-plus__image-wrapper {
  width: 2.5em;
  height: 2.5em;
  margin: 0.8% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-plus__area .about__present-plus__image-wrapper {
    width: 21vw;
    height: 21vw;
    margin: 4% auto 0;
  }
}
:is(body.reg, body.car) section.about .about__present-plus__area + .about__present-info__area {
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.about .about__present-plus__area + .about__present-info__area {
    margin-top: 7%;
  }
}

body.reg section.about {
  background-color: #FFBF32;
}
body.reg section.about h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0.55em 1.5em;
  display: block;
  position: relative;
  background-color: #177B63;
  color: #ffffff;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.7em) 50%, 100% 100%, 0 100%, 0.7em 50%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 0.7em) 50%, 100% 100%, 0 100%, 0.7em 50%);
}
@media screen and (max-width: 768px) {
  body.reg section.about h2 {
    font-size: 6.4vw;
    padding: 0.55em 3.2em;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1em) 50%, 100% 100%, 0 100%, 1em 50%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 1em) 50%, 100% 100%, 0 100%, 1em 50%);
  }
}
body.reg section.about .about__present-info__area h3 {
  padding: 0 1em;
  background-color: #FF5787;
  color: #ffffff;
}
body.reg section.about .about__present-info__area h3:before, body.reg section.about .about__present-info__area h3:after {
  content: "";
  width: 0.72em;
  height: 0.72em;
  display: block;
  position: absolute;
  top: 50%;
  background-color: #FF5787;
  border-radius: 100%;
}
body.reg section.about .about__present-info__area h3:before {
  left: -1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.reg section.about .about__present-info__area h3:after {
  right: -1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.reg section.about .about__present-info__area h3.green {
  background-color: #017B63;
}
body.reg section.about .about__present-info__area h3.green:before, body.reg section.about .about__present-info__area h3.green:after {
  background-color: #017B63;
}
body.reg section.about .about__present-info__area h3 span {
  font-size: min(40px, 4.1vw);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body.reg section.about .about__present-info__area h3 span {
    font-size: 6.8vw;
  }
}
body.reg section.about .about__present-info__area .about__present-title__image-wrapper {
  width: 61%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.reg section.about .about__present-info__area .about__present-title__image-wrapper {
    width: 81%;
    margin: 3% auto 0;
  }
}
body.reg section.about .about__present-info__area .about__present-title-deco__image-wrapper {
  width: 106%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50.7%, -11%);
          transform: translate(-50.7%, -11%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  body.reg section.about .about__present-info__area .about__present-title-deco__image-wrapper {
    width: 110%;
    -webkit-transform: translate(-50.7%, -6%);
            transform: translate(-50.7%, -6%);
  }
}
body.reg section.about .about__present-info__area .about__present-regulation__text {
  width: 80%;
  margin: 2% auto 0;
  font-size: min(15px, 1.6vw);
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.reg section.about .about__present-info__area .about__present-regulation__text {
    width: 90%;
    margin: 11.5% auto 0;
    font-size: 3.8vw;
    line-height: 1.4;
    text-align: left;
  }
}
body.reg section.about .about__present-info__area .about__present-message__text {
  margin: 2.5% auto 0;
  color: #ffffff;
  background: #ff5787;
}
body.reg section.about .about__present-plus__area {
  color: #007564;
}

body.car section.about {
  background-color: #377BB6;
  background-image: url(/images/sections/about/car_background.png);
  background-repeat: no-repeat;
  background-size: 94% 94%;
  background-position: center;
}
@media screen and (max-width: 768px) {
  body.car section.about {
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  body.car section.about .inner {
    background-image: url(/images/sections/about/car_background-03-sp.png);
    background-size: contain;
    background-position: center 99.5%;
    background-repeat: no-repeat;
  }
}
body.car section.about h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0.65em 1.2em;
  display: block;
  position: relative;
  background-color: #FFFFFF;
  color: #00A2BA;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border-top: 2px solid #FFF100;
  border-bottom: 2px solid #FFF100;
}
@media screen and (max-width: 768px) {
  body.car section.about h2 {
    font-size: 6.4vw;
    padding: 0.75em 2.5em;
  }
}
body.car section.about h2:after {
  content: "";
  width: 1.7em;
  height: 1.7em;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(87%, -63%);
          transform: translate(87%, -63%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2249.839%22%20height%3D%2259.246%22%20viewBox%3D%220%200%2049.839%2059.246%22%3E%20%3Cg%20transform%3D%22translate(-3.61%2051.404)%20rotate(-82)%22%3E%20%3Cpath%20d%3D%22M846.455%2C342.477q4.065%2C14.023%2C6.892%2C28.366%22%20transform%3D%22translate(-846.455%20-318.003)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20d%3D%22M862.018%2C353.138a67.1%2C67.1%2C0%2C0%2C0%2C11.268%2C13.89%22%20transform%3D%22translate(-841.63%20-328.154)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20d%3D%22M870.2%2C367.145l13.891%2C5.919%22%20transform%3D%22translate(-839.095%20-352.539)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20d%3D%22M868.984%2C383l22.307-.8%22%20transform%3D%22translate(-839.471%20-382.201)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
body.car section.about .about__present-info__area h3 {
  padding: 0.2em 1.2em;
  background-color: #00A2BA;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area h3 {
    padding: 0em 1.8em;
  }
}
body.car section.about .about__present-info__area h3.pink {
  background-color: #F3A5A8;
}
body.car section.about .about__present-info__area .about__present-title__image-wrapper {
  width: 56%;
  margin: 1% auto 0;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-title__image-wrapper {
    width: 75%;
    margin: 3% auto 0;
  }
}
body.car section.about .about__present-info__area .about__present-title-deco__image-wrapper {
  width: 106%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50.7%, -10%);
          transform: translate(-50.7%, -10%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-title-deco__image-wrapper {
    width: 110%;
    -webkit-transform: translate(-48.7%, -3%);
            transform: translate(-48.7%, -3%);
  }
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-title-deco__image-wrapper.__2 {
    width: 107%;
    -webkit-transform: translate(-48.7%, 12%);
            transform: translate(-48.7%, 12%);
  }
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__giftee-icon__image-wrapper {
    margin: 7.5% auto 0px;
  }
}
body.car section.about .about__present-info__area .about__present-message__text {
  margin: 4.1% auto 0;
  background: #00A2BA;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-message__text {
    margin: 16% auto 0;
  }
}
body.car section.about .about__present-info__area .about__present-02-list__wrapper ul li .about__present-02-list-item-name__text.wide {
  display: block;
  font-size: min(16px, 1.7vw);
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-02-list__wrapper ul li .about__present-02-list-item-name__text.wide {
    font-size: 4.8vw;
  }
}
body.car section.about .about__present-info__area .about__present-02-list__wrapper ul li .about__present-02-list-item-name__text.wide small {
  font-size: min(15px, 1.6vw);
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-info__area .about__present-02-list__wrapper ul li .about__present-02-list-item-name__text.wide small {
    font-size: 4.7vw;
  }
}
body.car section.about .about__present-plus__area {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__present-plus__area {
    background-image: url(/images/sections/about/car_background-02-sp.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}
body.car section.about .about__description__text {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  body.car section.about .about__description__text {
    font-size: 4.5vw;
    background-image: url(/images/sections/about/car_background-01-sp.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}

body.login section.about {
  background: -webkit-gradient(linear, left top, right top, from(#B59E59), color-stop(50.41%, #F7EBC4), color-stop(100.32%, #B59E59));
  background: linear-gradient(90deg, #B59E59 0%, #F7EBC4 50.41%, #B59E59 100.32%);
  opacity: 0.8;
}
body.login section.about .inner {
  padding: 8% 0 10.2%;
}
@media screen and (max-width: 768px) {
  body.login section.about .inner {
    padding: 17% 0;
  }
}
body.login section.about h2 {
  padding: 0.8em 0;
  color: #ffffff;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  text-align: center;
  background-color: #9D8735;
}
@media screen and (max-width: 768px) {
  body.login section.about h2 {
    width: 93%;
    margin: 0 auto;
    padding: 0.7em 0;
    font-size: 7.9vw;
  }
}
body.login section.about .about__description__text {
  color: #000000;
  margin: 3.8% auto 0;
  font-size: min(24px, 2.5vw);
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__description__text {
    font-size: 5.4vw;
    color: #705A07;
    text-align: left;
  }
}
body.login section.about .about__description__text span.red {
  color: #DD115A;
}
@media screen and (min-width: 769px) {
  body.login section.about .about__description__text sup {
    font-size: 0.6em;
    vertical-align: super;
  }
}
body.login section.about .about__description-note__text {
  margin: 1.3% auto 0;
  font-size: min(16px, 1.7vw);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
body.login section.about .about__prize__area {
  margin: 9% auto 0;
  padding: 8.4% 0 1%;
  position: relative;
  background-image: url(/images/sections/about/login_prize-background.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area {
    margin: 17% auto 0;
    padding: 11.4% 0 5%;
    background-image: url(/images/sections/about/login_prize-background-sp.png);
  }
}
body.login section.about .about__prize__area .about__prize-title__image-wrapper {
  width: 103%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-51%, -13%);
          transform: translate(-51%, -13%);
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area .about__prize-title__image-wrapper {
    width: 103%;
    -webkit-transform: translate(-50%, -12%);
            transform: translate(-50%, -12%);
  }
}
body.login section.about .about__prize__area h3 {
  color: #333333;
  font-family: "Noto Serif JP", sans-serif;
  font-size: min(40px, 4.1vw);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area h3 {
    font-size: 5.2vw;
  }
}
body.login section.about .about__prize__area h3 span.red {
  color: #DD115A;
  font-size: min(43px, 4.4vw);
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area h3 span.red {
    font-size: 5vw;
  }
}
body.login section.about .about__prize__area .about__prize-description__text {
  margin: 4% auto 0;
  color: #000000;
  font-size: min(24px, 2.5vw);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area .about__prize-description__text {
    margin: 7% auto 0;
    font-size: 5.3vw;
    line-height: 1.4;
  }
}
body.login section.about .about__prize__area .about__prize-description__text span.red {
  color: #DD115A;
  font-weight: 900;
}
body.login section.about .about__prize__area .about__prize__image-wrapper {
  width: 97%;
  margin: -1% auto 0 4%;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__prize__area .about__prize__image-wrapper {
    width: 91%;
    margin: 2% auto 0 8%;
  }
}
body.login section.about .about__description-note__text {
  margin: 0.9% auto 0;
  color: #000000;
  font-size: min(14px, 1.5vw);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  body.login section.about .about__description-note__text {
    width: 93%;
    margin: 0.9% auto 0;
    font-size: 3.4vw;
    text-align: left;
  }
}

section.application .inner {
  padding: 6% 0 0;
}
@media screen and (max-width: 768px) {
  section.application .inner {
    padding: 14.7% 0 0;
  }
}
section.application .application__description__text {
  margin: 3% auto 0;
  color: #000000;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.application .application__description__text {
    margin: 9% auto 0;
    font-size: 4.7vw;
    line-height: 1.6;
  }
}
section.application .application__description-note__text {
  margin: 1% auto 0;
  font-size: min(18px, 1.9vw);
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.application .application__description-note__text {
    margin: 5.2% auto 0;
    font-size: 3.7vw;
    line-height: 1.5;
  }
}
section.application .application__how-to__area .red-text {
  color: #FF0000;
  text-align: center;
  padding: 20px 0 0;
  display: block;
}
section.application .application__how-to__area .red-text span {
  display: inline-block;
}
section.application .application__how-to__area {
  margin: 2.5% auto 0;
  padding: 4% 0 5%;
  background-color: #FFFFFF;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area {
    margin: 8.5% auto 0;
    padding: 7% 0 9%;
  }
}
section.application .application__how-to__area .application__swiper {
  width: 93%;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area .application__swiper {
    width: 91%;
    margin: 8% auto 0;
  }
}
section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide {
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide {
    border-radius: 30px;
  }
}
section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text {
  margin: 3% auto 0;
  padding: 0 0 10%;
  color: #000000;
  font-size: min(26px, 2.7vw);
  line-height: 1.38;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text {
    margin: 3.8% auto 0;
    padding: 0 0 16%;
    font-size: 4.1vw;
  }
}
section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text small {
  font-size: min(18px, 1.9vw);
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text small {
    font-size: 2.9vw;
  }
}
section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text small a {
  color: #00A1DD;
}
section.application .application__how-to__area .application__swiper .swiper-slide {
  height: auto;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.application .application__how-to__area .application__swiper .swiper-slide-item {
  height: 100%;
}
section.application .application__how-to__area .application__swiper .swiper-button-next, section.application .application__how-to__area .application__swiper .swiper-button-prev {
  width: auto;
  height: auto;
}
section.application .application__how-to__area .application__swiper .swiper-button-next.swiper-button-disabled, section.application .application__how-to__area .application__swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
section.application .application__how-to__area .application__swiper .swiper-button-next:after, section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
section.application .application__how-to__area .application__swiper .swiper-button-prev:after, section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
  content: "";
  width: 1.7em;
  height: 1.7em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  section.application .application__how-to__area .application__swiper .swiper-button-next:after, section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
  section.application .application__how-to__area .application__swiper .swiper-button-prev:after, section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
    width: 1.2em;
    height: 1.2em;
  }
}
section.application .application__how-to__area .application__swiper .swiper-button-prev {
  left: 0;
  -webkit-transform: translateX(-44%);
          transform: translateX(-44%);
}
section.application .application__how-to__area .application__swiper .swiper-button-next {
  right: 0;
  -webkit-transform: translateX(44%) rotate(180deg);
          transform: translateX(44%) rotate(180deg);
}
:is(body.reg, body.car) section.application h3 {
  margin: 4% auto 0;
  padding: 1em 0;
  font-weight: bold;
  font-size: min(30px, 3.1vw);
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application h3 {
    margin: 7% auto 0;
    padding: 0.7em 0;
    font-size: 6.9vw;
  }
}
:is(body.reg, body.car) section.application.__2 .application__present-plus__area {
  margin: 0 auto 0;
  padding-top: 2.7%;
  font-weight: bold;
  font-size: min(32px, 3.3vw);
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application.__2 .application__present-plus__area {
    margin: 0 auto 0;
    font-size: 6vw;
    padding-top: 6.7%;
  }
}
:is(body.reg, body.car) section.application.__2 .application__present-plus__area .application__present-plus__image-wrapper {
  width: 2.5em;
  height: 2.5em;
  margin: 0.8% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application.__2 .application__present-plus__area .application__present-plus__image-wrapper {
    width: 21vw;
    height: 21vw;
    margin: 4% auto 0;
  }
}
:is(body.reg, body.car) section.application.__2 .application__swiper {
  padding: 20px 0;
}
:is(body.reg, body.car) section.application.__2 .application__how-to-present__image-wrapper {
  width: 20%;
  margin: 0 auto;
  padding: 3% 0 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application.__2 .application__how-to-present__image-wrapper {
    width: 44%;
    padding: 10% 0 0;
  }
}
:is(body.reg, body.car) section.application.__2 .application__how-to-message__text {
  margin: 1.5% 0 0;
  color: #000000;
  font-size: min(28px, 2.9vw);
  font-weight: bold;
  line-height: 1.36;
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application.__2 .application__how-to-message__text {
    margin: 10% 0 0;
    font-size: 6.4vw;
    line-height: 1.5;
  }
}
:is(body.reg, body.car) section.application.__2 .application__how-to-note__text {
  margin: 1.5% 0 0;
  padding: 0 0 2%;
  color: #000000;
  font-size: min(15px, 1.6vw);
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application.__2 .application__how-to-note__text {
    width: 85%;
    margin: 4.5% auto 0;
    padding: 0 0 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 4vw;
    text-align: left;
  }
}
:is(body.reg, body.car) section.application .application__how-to-button__wrapper {
  width: 93%;
  margin: 0 auto;
  padding: 0.6em 0;
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application .application__how-to-button__wrapper {
    padding: 0.6em 0;
    font-size: 5.6vw;
  }
}
:is(body.reg, body.car) section.application .application__how-to-button__wrapper:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.1em;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.application .application__how-to-button__wrapper:after {
    right: 0.6em;
  }
}

body.reg section.application {
  background: repeating-linear-gradient(45deg, #FDE153, #FDE153 10px, #FDE97E 10px, #FDE97E 15px);
}
body.reg section.application h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0.55em 1.5em;
  display: block;
  position: relative;
  background-color: #177B63;
  color: #ffffff;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.7em) 50%, 100% 100%, 0 100%, 0.7em 50%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 0.7em) 50%, 100% 100%, 0 100%, 0.7em 50%);
}
@media screen and (max-width: 768px) {
  body.reg section.application h2 {
    font-size: 6.4vw;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1em) 50%, 100% 100%, 0 100%, 1em 50%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 1em) 50%, 100% 100%, 0 100%, 1em 50%);
  }
}
body.reg section.application h3 {
  color: #ffffff;
  background-color: #F45C27;
}
body.reg section.application .application__how-to__area .application__swiper {
  margin: 0 auto;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide {
  background-color: #FFFFFF;
  border: 3px solid #26B1A3;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex {
  width: 71%;
  margin: 0 auto;
  padding: 4.5% 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex {
    width: 79%;
    padding: 9.5% 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex {
  margin: 3% auto 0;
  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;
  gap: 3%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex .application__app-qr__image-wrapper, body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex .application__google-qr__image-wrapper {
  width: 57%;
  margin: 0 auto;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex .application__app-store__image-wrapper {
  width: 91%;
  margin: 1% auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex .application__app-store__image-wrapper {
    margin: 4% auto 0;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-store__flex .application__google-store__image-wrapper {
  width: 91%;
  margin: 3% auto 0;
  display: block;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
  width: 56%;
  margin: 0 auto;
  padding: 3% 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
    width: 79%;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper {
  width: 21%;
  position: absolute;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-02 {
  top: 77%;
  right: -14%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-03 {
  top: 74.5%;
  right: -14%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-04 {
  top: 38.5%;
  right: -14%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-05 {
  top: 63.5%;
  right: -14%;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-05 {
    top: 66.5%;
    right: -8%;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-06 {
  top: 30.5%;
  right: -14%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__01-07 {
  top: 29%;
  right: -14%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-01 {
  width: 29%;
  top: 69%;
  right: -18.5%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-02 {
  width: 29%;
  top: 61.4%;
  right: -19.5%;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-02 {
    top: 60.3%;
    right: -5.5%;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-03 {
  width: 29%;
  top: 79%;
  right: -11.5%;
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-04 {
  width: 29%;
  top: 59%;
  right: -15.5%;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-04 {
    top: 58%;
    right: -6%;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-08 {
  width: 29%;
  top: 55%;
  right: -10%;
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-08 {
    top: 54%;
    right: -8%;
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-01-03-message__image-wrapper {
  width: 50%;
  position: absolute;
  top: 18%;
  right: 0;
  -webkit-transform: translateX(69%);
          transform: translateX(69%);
}
@media screen and (max-width: 768px) {
  body.reg section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-01-03-message__image-wrapper {
    top: 25%;
    -webkit-transform: translateX(22%);
            transform: translateX(22%);
  }
}
body.reg section.application .application__how-to__area .application__swiper .swiper-button-next:after, body.reg section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
body.reg section.application .application__how-to__area .application__swiper .swiper-button-prev:after, body.reg section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2280%22%20height%3D%2280%22%20viewBox%3D%220%200%2080%2080%22%3E%20%3Cg%20transform%3D%22translate(-185%20-4849.91)%22%3E%20%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20transform%3D%22translate(265%204929.91)%20rotate(180)%22%20fill%3D%22%2326b1a3%22%2F%3E%20%3Cpath%20d%3D%22M18.169-2%2C36.338%2C31.543H0Z%22%20transform%3D%22translate(204%204908.91)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
body.reg section.application.__2 {
  background: none;
  background-color: #FFB100;
}
body.reg section.application.__2 h3 {
  margin: 2% auto 0;
  background-color: #00B1A3;
}
body.reg section.application.__2 .application__how-to__area {
  padding: 0;
}
body.reg section.application.__2 .application__how-to__area .application__swiper {
  width: 100%;
}
body.reg section.application.__2 .application__how-to__area .application__swiper .swiper-slide {
  border: none;
}
body.reg section.application.__2 .application__how-to__area .application__swiper .application__swiper-slide-02__image-wrapper {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.reg section.application.__2 .application__how-to__area .application__swiper .application__swiper-slide-02__image-wrapper {
    width: 93%;
  }
}
body.reg section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
  width: 30%;
}
@media screen and (max-width: 768px) {
  body.reg section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
    width: 73%;
  }
}
@media screen and (max-width: 1010px) {
  body.reg section.application.__2 .application__how-to__area .application__swiper .swiper-button-prev {
    -webkit-transform: translateX(-22%);
            transform: translateX(-22%);
  }
}
@media screen and (max-width: 1010px) {
  body.reg section.application.__2 .application__how-to__area .application__swiper .swiper-button-next {
    -webkit-transform: translateX(22%) rotate(180deg);
            transform: translateX(22%) rotate(180deg);
  }
}
body.reg section.application.__2 .application__present-plus__area {
  color: #007564;
}
body.reg section.application .application__how-to-button__wrapper {
  margin: 4% auto 0;
  color: #FFFFFF;
  background-color: #00B1A3;
}
body.reg section.application .application__how-to-button__wrapper:after {
  border-left: 0.6em solid #FFFFFF;
}

@media screen and (max-width: 768px) {
  body.reg.qr section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__text {
    width: 94%;
  }
}
body.reg.qr section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__image-wrapper.__01-01 {
  width: 30%;
  top: 76.5%;
  right: -21%;
}
@media screen and (max-width: 768px) {
  body.reg.qr section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__image-wrapper.__01-01 {
    right: -5%;
  }
}
body.reg.qr section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__image-wrapper.__01-06 {
  width: 30%;
  top: 62%;
  right: -15%;
}
@media screen and (max-width: 768px) {
  body.reg.qr section.application .application__how-to__area .application__swiper .swiper-wrapper .application__swiper-slide-message__image-wrapper.__01-06 {
    right: -2%;
  }
}

body.car section.application {
  background-color: #C3EDF4;
}
body.car section.application .inner {
  padding: 9% 0 8%;
}
@media screen and (max-width: 768px) {
  body.car section.application .inner {
    padding: 14.7% 0 17%;
  }
}
body.car section.application h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0.65em 1.2em;
  display: block;
  position: relative;
  background-color: #FFFFFF;
  color: #377BB6;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border-top: 2px solid #377BB6;
  border-bottom: 2px solid #377BB6;
}
@media screen and (max-width: 768px) {
  body.car section.application h2 {
    width: 91%;
    font-size: 6.4vw;
    padding: 0.75em 0;
  }
}
body.car section.application h3 {
  color: #ffffff;
  background-color: #377BB6;
}
@media screen and (max-width: 768px) {
  body.car section.application h3 {
    padding: 0.4em 0;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  body.car section.application .application__description__text {
    font-size: 4.3vw;
  }
}
body.car section.application .application__how-to__area .application__swiper {
  margin: 1% auto 0;
}
body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide {
  background-color: #FFFFFF;
  border: 3px solid #3092C1;
}
body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex {
  padding: 5% 0 1%;
}
body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-01__image-wrapper {
  width: 51.5%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-01__image-wrapper {
    width: 85.5%;
    margin: 0 auto 0 10%;
  }
}
body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__text {
  font-size: min(20px, 2.1vw);
}
@media screen and (max-width: 768px) {
  body.car section.application .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__text {
    font-size: 4vw;
  }
}
body.car section.application .application__how-to__area .application__swiper .swiper-button-next:after, body.car section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
body.car section.application .application__how-to__area .application__swiper .swiper-button-prev:after, body.car section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2280%22%20height%3D%2280%22%20viewBox%3D%220%200%2080%2080%22%3E%20%3Cg%20transform%3D%22translate(1201%204714)%20rotate(180)%22%3E%20%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20transform%3D%22translate(1121%204634)%22%20fill%3D%22%23377bb6%22%2F%3E%20%3Cpath%20d%3D%22M18.169-2%2C36.338%2C31.543H0Z%22%20transform%3D%22translate(1182%204655)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
body.car section.application.__2 {
  background: none;
  background-color: #377BB6;
  background-image: url(/images/sections/about/car_background.png);
  background-repeat: no-repeat;
  background-size: 94% 94%;
  background-position: center;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 {
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .inner {
    background-image: url(/images/sections/application/car_how-to-02-background-03-sp.png);
    background-size: 7%;
    background-position: 82.2% 98.9%;
    background-repeat: no-repeat;
  }
}
body.car section.application.__2 .application__title-message__text {
  margin: 0 auto;
  color: #FFFFFF;
  font-size: min(30px, 3.1vw);
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__title-message__text {
    position: relative;
    font-size: 4.9vw;
    line-height: 1.6;
  }
}
body.car section.application.__2 .application__title-message__text .application__title-message-deco__image-wrapper {
  width: 8vw;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-99%, -48%);
          transform: translate(-99%, -48%);
}
body.car section.application.__2 h3 {
  color: #00A2BA;
  background-color: #ffffff;
}
body.car section.application.__2 .application__how-to__area {
  padding: 0;
}
body.car section.application.__2 .application__how-to__area .application__swiper {
  width: 100%;
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide {
  border: none;
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex {
  padding: 0;
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-02__image-wrapper {
  width: 28%;
  margin: 0 auto;
  padding: 5% 0 0;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__flex .application__swiper-slide-02__image-wrapper {
    width: 57%;
    padding: 11% 0 0;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
  width: 30%;
  padding: 3% 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide__image-wrapper {
    width: 73%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper {
  width: 31%;
  position: absolute;
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-01 {
  top: 7%;
  right: -23%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-01 {
    top: 4.5%;
    right: -17%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-02 {
  top: 19.5%;
  right: -23%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-02 {
    top: 17.1%;
    right: -16%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-03 {
  top: 61.5%;
  right: 2.5%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-03 {
    top: 60.3%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-04 {
  top: 59.8%;
  right: -12.5%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-04 {
    top: 60.7%;
    right: -3.5%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-05 {
  top: 77.8%;
  right: -12.5%;
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-06 {
  top: 61%;
  right: -15.5%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-06 {
    top: 60%;
    right: -9.5%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-07 {
  top: 76.3%;
  right: 6.5%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-07 {
    top: 75.3%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-08 {
  top: 66.3%;
  right: 6.5%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-08 {
    top: 65%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-10 {
  top: 54%;
  right: -10%;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__image-wrapper.__02-10 {
    top: 52.5%;
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__text {
  margin: 4% auto 0;
  font-size: min(23px, 2.4vw);
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-wrapper .swiper-slide .application__swiper-slide-message__text {
    font-size: 4.1vw;
  }
}
@media screen and (max-width: 1010px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-button-prev {
    -webkit-transform: translateX(-22%);
            transform: translateX(-22%);
  }
}
@media screen and (max-width: 1010px) {
  body.car section.application.__2 .application__how-to__area .application__swiper .swiper-button-next {
    -webkit-transform: translateX(22%) rotate(180deg);
            transform: translateX(22%) rotate(180deg);
  }
}
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-button-next:after, body.car section.application.__2 .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
body.car section.application.__2 .application__how-to__area .application__swiper .swiper-button-prev:after, body.car section.application.__2 .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2280%22%20height%3D%2280%22%20viewBox%3D%220%200%2080%2080%22%3E%20%3Cg%20transform%3D%22translate(1201%204714)%20rotate(180)%22%3E%20%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20transform%3D%22translate(1121%204634)%22%20fill%3D%22%2300a2ba%22%2F%3E%20%3Cpath%20d%3D%22M18.169-2%2C36.338%2C31.543H0Z%22%20transform%3D%22translate(1182%204655)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
body.car section.application.__2 .application__present-plus__area {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  body.car section.application.__2 .application__present-plus__area {
    background-image: url(/images/sections/application/car_how-to-02-background-02-sp.png);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}
body.car section.application .application__how-to-button__wrapper {
  width: 68%;
  margin: 7% auto 0;
  color: #377BB6;
  font-size: min(26px, 2.7vw);
  background-color: #FFF100;
}
@media screen and (max-width: 768px) {
  body.car section.application .application__how-to-button__wrapper {
    width: 100%;
    margin: 8% auto 0;
    padding: 1.3em 0;
    font-size: 4vw;
  }
}
body.car section.application .application__how-to-button__wrapper:after {
  border-left: 0.6em solid #377BB6;
}

body.login section.application {
  background-image: url(/images/sections/application/login_background-01.png);
  background-size: 30%;
}
body.login section.application .inner {
  padding: 10.3% 0 10%;
}
@media screen and (max-width: 768px) {
  body.login section.application .inner {
    padding: 17.3% 0 17%;
  }
}
body.login section.application h2 {
  padding: 0.8em 0;
  color: #ffffff;
  font-size: min(30px, 3.1vw);
  font-weight: bold;
  text-align: center;
  background-color: #9D8735;
}
@media screen and (max-width: 768px) {
  body.login section.application h2 {
    width: 93%;
    margin: 0 auto;
    padding: 0.7em 0;
    font-size: 7.9vw;
  }
}
body.login section.application h3 {
  margin: 2% auto 0;
  padding: 0.6em 0;
  color: #705A07;
  font-size: min(22px, 2.3vw);
  font-weight: bold;
  text-align: center;
  background-color: #C4B374;
}
@media screen and (max-width: 768px) {
  body.login section.application h3 {
    width: 93%;
    margin: 5% auto 0;
    font-size: 5.8vw;
  }
}
body.login section.application .application__how-to__area {
  margin: 0;
  padding: 3% 0 0;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  body.login section.application .application__how-to__area {
    width: 93%;
    margin: 0 auto;
  }
}
body.login section.application .application__how-to__area .application__swiper {
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
}
body.login section.application .application__how-to__area .application__swiper .swiper-button-next:after, body.login section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-prev:after,
body.login section.application .application__how-to__area .application__swiper .swiper-button-prev:after, body.login section.application .application__how-to__area .application__swiper .swiper-rtl .swiper-button-next:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2280%22%20height%3D%2280%22%20viewBox%3D%220%200%2080%2080%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M40%200C17.9086%200%200%2017.9086%200%2040C0%2062.0914%2017.9086%2080%2040%2080C62.0914%2080%2080%2062.0914%2080%2040C80%2017.9086%2062.0914%200%2040%200Z%22%20fill%3D%22%23DD115A%22%2F%3E%3Cpath%20d%3D%22M17%2040.831L50.543%2022.662L50.543%2059L17%2040.831Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-01__image-wrapper {
  width: 50%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-01__image-wrapper {
    width: 60%;
  }
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper {
  width: 19%;
  position: absolute;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__01-03 {
  top: 70.8%;
  right: 95.3%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__02-01 {
  width: 40%;
  top: 3%;
  right: -19.7%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__02-02 {
  width: 40%;
  top: 26.7%;
  right: -32.7%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__02-03 {
  width: 40%;
  top: 59%;
  right: -33%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__02-04 {
  width: 40%;
  top: 77.9%;
  right: -31.7%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__image-wrapper.__02-05 {
  width: 40%;
  top: 77.5%;
  right: -31.7%;
}
body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__text {
  margin: 2.6% auto 0;
  padding: 0 0 7.7%;
  font-size: min(22px, 2.3vw);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.login section.application .application__how-to__area .application__swiper .application__swiper-slide-message__text {
    width: 81%;
    padding: 0 0 16.7%;
    font-size: 4.6vw;
    text-align: left;
  }
}
body.login section.application .application__balloon__image-wrapper {
  width: 61%;
  margin: 3.5% auto 0;
}
@media screen and (max-width: 768px) {
  body.login section.application .application__balloon__image-wrapper {
    width: 93%;
    margin: 8.5% auto 0;
  }
}
body.login section.application.__2 {
  background-image: url(/images/sections/application/login_background-02.png);
}
body.login section.application.__2 .inner {
  padding: 12% 0 10%;
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 .inner {
    padding: 12% 0 16%;
  }
}
body.login section.application.__2 h3 {
  padding: 0.8em 0;
  color: #ffffff;
  font-size: min(30px, 3.1vw);
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 h3 {
    width: 93%;
    margin: 5% auto 0;
    padding: 0.8em 0 0.6em;
    font-size: 7.8vw;
  }
}
body.login section.application.__2 .application__how-to__area {
  margin: 4% auto 0;
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 .application__how-to__area {
    margin: 9% auto 0;
  }
}
body.login section.application.__2 .application__how-to__area .application__swiper-slide-02__image-wrapper {
  width: 50%;
  margin: 20px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 .application__how-to__area .application__swiper-slide-02__image-wrapper {
    width: 59%;
    margin: 20px auto 0;
  }
}
body.login section.application.__2 .application__how-to-button__wrapper {
  width: 51%;
  margin: 6% auto 0;
  padding: 0.7em 0;
  display: block;
  position: relative;
  color: #ffffff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: min(26px, 2.7vw);
  background: -webkit-gradient(linear, left top, left bottom, from(#DD115A), to(#BB0043));
  background: linear-gradient(180deg, #DD115A 0%, #BB0043 100%);
  -webkit-box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
          box-shadow: 4px 4px 0px rgba(0, 0, 0, .2);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 .application__how-to-button__wrapper {
    width: 93%;
    margin: 11% auto 0;
    padding: 0.4em 0;
    font-size: 6vw;
  }
}
body.login section.application.__2 .application__how-to-button__wrapper::before {
  content: "";
  width: 70%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -93%) rotate(45deg);
          transform: translate(-50%, -93%) rotate(45deg);
  background-color: rgba(255, 255, 255, .1490196078);
}
@media screen and (max-width: 768px) {
  body.login section.application.__2 .application__how-to-button__wrapper::before {
    -webkit-transform: translate(-50%, -77%) rotate(45deg);
            transform: translate(-50%, -77%) rotate(45deg);
  }
}
body.login section.application.__2 .application__how-to-button__wrapper::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: 53%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2211%22%20viewBox%3D%220%200%208%2011%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_10%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2010%22%20d%3D%22M4.676%2C1.2a1%2C1%2C0%2C0%2C1%2C1.648%2C0l3.6%2C5.235A1%2C1%2C0%2C0%2C1%2C9.1%2C8H1.9a1%2C1%2C0%2C0%2C1-.824-1.567Z%22%20transform%3D%22translate(8)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  body.login section.application.__2 .application__how-to-button__wrapper::after {
    width: 0.8em;
    height: 0.8em;
    right: 0.8em;
  }
}

.application__present-close {
  position: relative;
  padding-bottom: 14%;
}
@media screen and (min-width: 769px) {
  .application__present-close {
    padding-bottom: 8%;
  }
}

.application__present-close::after {
  content: "";
  background-color: rgba(0, 0, 0, .6);
  position: absolute;
  top: 0;
  width: 100dvw;
  height: 100%;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

section.terms h2 {
  padding: 1em 0;
  font-weight: bold;
  font-size: min(30px, 3.1vw);
  letter-spacing: 0.03em;
  line-height: 23px;
  text-align: center;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  section.terms h2 {
    padding: 1em 0 0.9em;
    font-size: 7vw;
  }
}
section.terms dl dt {
  width: 93%;
  margin: 0 auto;
}
section.terms dl dt:nth-child(n+2) {
  background-size: 15px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  section.terms dl dt:nth-child(n+2) {
    background-size: 30px 4px;
  }
}
section.terms dl dt button {
  width: 100%;
  padding: 2.4em 5em 2.4em 5.3em;
  display: block;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(18px, 1.9vw);
  font-weight: 500;
  line-height: 1.39;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section.terms dl dt button {
    padding: 1.7em 2.5em 1.2em 2em;
    font-size: 4vw;
  }
}
section.terms dl dt button:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.terms dl dt button:before {
    top: 1em;
    font-size: 6vw;
    -webkit-transform: none;
            transform: none;
  }
}
section.terms dl dt button span {
  width: 2.5em;
  height: 2.5em;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  section.terms dl dt button span {
    top: 1em;
    -webkit-transform: none;
            transform: none;
  }
}
section.terms dl dt button span:before, section.terms dl dt button span:after {
  content: "";
  width: 2.5em;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  section.terms dl dt button span:before, section.terms dl dt button span:after {
    width: 1.9em;
    height: 5px;
    top: 1.5em;
    right: 0;
  }
}
section.terms dl dt button span:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
section.terms dl dt.open button span:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
section.terms dl dt.open + dd {
  max-height: var(--dd-height);
}
section.terms dl dd {
  max-height: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
section.terms dl dd:before {
  content: "A";
  position: absolute;
  top: 0.1em;
  left: 1em;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.terms dl dd:before {
    left: 0.7em;
    font-size: 6vw;
  }
}
section.terms dl dd .terms__content-answer__area {
  padding: 0 2em 2.7em 4.7em;
}
section.terms dl dd .terms__content-answer-text__area {
  padding: 1.6em 2em;
  font-size: min(16px, 1.7vw);
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section.terms dl dd .terms__content-answer-text__area {
    padding: 0.6em 0.8em 1em;
    font-size: 4vw;
    line-height: 1.4;
  }
}
section.terms dl dd .terms__content-answer-text__area p {
  margin: 1em 0 0;
}
section.terms .terms__content-term__area {
  padding: 0 1.5em 0 0;
}
section.terms .simplebar-vertical {
  width: 1em;
  background-color: var(--scroll-background-color);
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  section.terms .simplebar-vertical {
    width: 0.8em;
  }
}
section.terms .simplebar-scrollbar::before {
  top: 6.4px;
  top: 0.4rem;
  right: 3.2px;
  right: 0.2rem;
  bottom: 6.4px;
  bottom: 0.4rem;
  left: 3.2px;
  left: 0.2rem;
  background-color: var(--scroll-color);
  border-radius: 2em;
  opacity: 1;
}

:is(body.reg, body.car) section.terms .inner {
  padding: 8% 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .inner {
    padding: 13% 0 17%;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area {
  margin: 2.5% auto 0;
  padding: 4% 0 2%;
  position: relative;
  background-color: #ffffff;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area {
    margin: 4.5% auto 0;
    padding: 7% 0 11%;
    border-radius: 30px;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area.__question {
  padding: 1% 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area.__question {
    padding: 2% 0;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .terms__content-term__area {
  width: 91%;
  max-height: 18em;
  margin: 0 auto;
  color: #000000;
  font-size: 15px;
  line-height: 1.67;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area .terms__content-term__area {
    max-height: 20.5em;
    font-size: 3.6vw;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .terms__content-term__area :is(h3, h4):nth-child(n+2) {
  margin: 1em 0 0;
}
:is(body.reg, body.car) section.terms .terms__content__area .term__content-term__text p:nth-child(n+2) {
  margin: 1em 0 0;
}
:is(body.reg, body.car) section.terms .terms__content__area .term__content-term-list__underline {
  border-bottom: #000 2px solid;
}
:is(body.reg, body.car) section.terms .terms__content__area + h2 {
  margin: 4% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area + h2 {
    margin: 9% auto 0;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .request__content {
  padding: 0 35px 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area .request__content {
    padding: 0 15px 0;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .request__content .request__text {
  line-height: 1.67;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area .request__content .request__text {
    font-size: 14px;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .request__content .__border-bottom {
  text-decoration: underline;
}
:is(body.reg, body.car) section.terms .terms__content__area .request__content .request__image {
  max-width: 720px;
  width: 100%;
  margin: 38px auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.terms .terms__content__area .request__content .request__image {
    max-width: 288px;
    margin: 20px auto 0;
  }
}
:is(body.reg, body.car) section.terms .terms__content__area .request__content .request__image img {
  width: 100%;
  height: auto;
}

body.reg section.terms {
  background: repeating-linear-gradient(45deg, #FDE153, #FDE153 10px, #FDE97E 10px, #FDE97E 15px);
}
body.reg section.terms h2 {
  color: #ffffff;
  background-color: #F45C27;
}
body.reg section.terms .terms__content__area dl dt:nth-child(n+2) {
  background-image: linear-gradient(to right, #F45C27 10px, transparent 10px);
}
@media screen and (max-width: 768px) {
  body.reg section.terms .terms__content__area dl dt:nth-child(n+2) {
    background-image: linear-gradient(to right, #F45C27 20px, transparent 10px);
  }
}
body.reg section.terms .terms__content__area dl dt button {
  color: #000000;
}
body.reg section.terms .terms__content__area dl dt button:before {
  color: #00b1a3;
}
body.reg section.terms .terms__content__area dl dt span:before, body.reg section.terms .terms__content__area dl dt span:after {
  background-color: #00B1A3;
}
body.reg section.terms .terms__content__area dl dd:before {
  color: #F45C27;
}
body.reg section.terms .terms__content__area dl dd .terms__content-answer-text__area {
  color: #000;
  background-color: #FFF2E3;
}

body.car section.terms {
  background-color: #C3EDF4;
}
body.car section.terms h2 {
  color: #ffffff;
  background-color: #377BB6;
}
body.car section.terms .terms__content__area dl dt:nth-child(n+2) {
  background-image: linear-gradient(to right, #377BB6 10px, transparent 10px);
}
@media screen and (max-width: 768px) {
  body.car section.terms .terms__content__area dl dt:nth-child(n+2) {
    background-image: linear-gradient(to right, #377BB6 20px, transparent 10px);
  }
}
body.car section.terms .terms__content__area dl dt button {
  color: #000000;
}
body.car section.terms .terms__content__area dl dt button:before {
  color: #377BB6;
}
body.car section.terms .terms__content__area dl dt span:before, body.car section.terms .terms__content__area dl dt span:after {
  background-color: #377BB6;
}
body.car section.terms .terms__content__area dl dd:before {
  color: #00A2BA;
}
body.car section.terms .terms__content__area dl dd .terms__content-answer-text__area {
  color: #000;
  background-color: #DEF4FF;
}

body.login section.terms {
  background-color: #EFECE2;
}
body.login section.terms .inner {
  padding: 10.5% 0 10.5%;
}
@media screen and (max-width: 768px) {
  body.login section.terms .inner {
    padding: 18% 0 16.5%;
  }
}
body.login section.terms .inner h2 {
  padding: 0.9em 0;
  color: #ffffff;
  background-color: #9D8735;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  body.login section.terms .inner h2 {
    width: 93%;
    margin: 0 auto;
    padding: 1em 0 1em;
    font-size: 7.7vw;
  }
}
body.login section.terms .inner h2:nth-child(n+2) {
  margin: 6% auto 0;
}
@media screen and (max-width: 768px) {
  body.login section.terms .inner h2:nth-child(n+2) {
    margin: 18% auto 0;
  }
}
body.login section.terms .terms__content__area {
  padding: 4.3% 0 3.7%;
  font-size: min(20px, 2.1vw);
  font-weight: bold;
  text-align: center;
  background-color: #E3DBBD;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area {
    width: 93%;
    margin: 8% auto 0;
    padding: 6.3% 0 3.7%;
  }
}
body.login section.terms .terms__content__area.__question {
  padding: 3% 3.5% 3.7%;
}
body.login section.terms .terms__content__area.__question dl {
  background-color: #ffffff;
}
body.login section.terms .terms__content-term__wrapper {
  padding: 0 2.7em;
}
body.login section.terms .terms__content-term__area {
  width: 100%;
  max-height: 24.9em;
  margin: 2.5% auto 0;
  color: #000000;
  font-size: 15px;
  line-height: 1.67;
  text-align: left;
  font-weight: bold;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content-term__area {
    max-height: 44.6em;
    margin: 5.5% auto 0;
    padding: 1.3em 1.75em 1.3em 1.3em;
    font-size: 3.4vw;
    line-height: 2.07;
  }
}
body.login section.terms .terms__content-term__area :is(h3, h4):nth-child(n+2) {
  margin: 1em 0 0;
}
body.login section.terms .simplebar-content-wrapper {
  padding: 2.7em;
}
@media screen and (max-width: 768px) {
  body.login section.terms .simplebar-content-wrapper {
    padding: 0;
  }
}
body.login section.terms .simplebar-track.simplebar-vertical {
  top: 0.3em;
  right: 0.3em;
  bottom: 0.3em;
}
body.login section.terms .terms__content__area dl dt:nth-child(n+2) {
  background-image: linear-gradient(to right, #CCCCCC 10px, transparent 10px);
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dt:nth-child(n+2) {
    background-image: linear-gradient(to right, #CCCCCC 20px, transparent 10px);
  }
}
body.login section.terms .terms__content__area dl dt button {
  padding: 2.4em 5em 1.6em 4.3em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dt button {
    padding: 1.3em 1.9em 1.6em 3.6em;
    font-size: 4.6vw;
    line-height: 1.8;
  }
}
body.login section.terms .terms__content__area dl dt button:before {
  color: #9D8735;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dt button:before {
    top: 0.4em;
    left: 0.4em;
    font-size: 8vw;
  }
}
body.login section.terms .terms__content__area dl dt span {
  width: 1.6em;
  height: 1.6em;
}
body.login section.terms .terms__content__area dl dt span:before, body.login section.terms .terms__content__area dl dt span:after {
  width: 1.8em;
  background-color: #9D8735;
}
body.login section.terms .terms__content__area dl dd .terms__content-answer__area {
  padding: 0 2em 1.4em 3.7em;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dd .terms__content-answer__area {
    padding: 0 2em 1.4em 6.3em;
  }
}
body.login section.terms .terms__content__area dl dd:before {
  color: #DD115A;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dd:before {
    left: 0.7em;
    font-size: 8vw;
  }
}
body.login section.terms .terms__content__area dl dd .terms__content-answer-text__area {
  color: #000;
  text-align: left;
  background-color: #EFECE2;
}
@media screen and (max-width: 768px) {
  body.login section.terms .terms__content__area dl dd .terms__content-answer-text__area {
    padding: 1em 0.8em 1em;
    font-size: 4vw;
    line-height: 1.8;
  }
}

:is(body.reg) section.terms .container.__movie .inner {
  padding: 0 0 8%;
}
:is(body.reg) section.terms .container.__movie h2 {
  width: 18em;
  margin: 0 auto;
  padding: 0.65em 0;
  position: relative;
  color: #FFFFFF;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  background-color: #F45C27;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  :is(body.reg) section.terms .container.__movie h2 {
    width: auto;
    margin: 0 auto;
    padding: 0.65em 0 0.6em;
    font-size: 6.4vw;
    line-height: 1.1;
    border-radius: 20px;
  }
}
:is(body.reg) section.terms .container.__movie h2:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -15px;
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top-color: #F45C27;
}
@media screen and (max-width: 768px) {
  :is(body.reg) section.terms .container.__movie h2:after {
    margin-left: -7vw;
    border: 7vw solid transparent;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  :is(body.reg) section.terms .container.__movie h2:after {
    border-top-color: #F45C27;
  }
}
:is(body.reg) section.terms .container.__movie .movie__youtube__wrapper {
  width: 100%;
  margin: 3% auto 0;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  :is(body.reg) section.terms .container.__movie .movie__youtube__wrapper {
    width: 98%;
    margin: 7% auto 0;
  }
}
:is(body.reg) section.terms .container.__movie .movie__youtube__wrapper iframe {
  width: 100%;
  height: 100%;
}

section.campaign .campaign__banner__image-wrapper {
  display: block;
}

:is(body.reg, body.car) section.campaign .inner {
  padding: 4.7% 0 4.5%;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.campaign .inner {
    padding: 13.6% 0 12%;
  }
}
:is(body.reg, body.car) section.campaign h2 {
  width: 18em;
  margin: 0 auto;
  padding: 0.65em 0;
  position: relative;
  font-size: min(35px, 3.6vw);
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.campaign h2 {
    width: auto;
    margin: 0 auto;
    padding: 0.65em 0 0.6em;
    font-size: 6.4vw;
    line-height: 1.1;
    border-radius: 20px;
  }
}
:is(body.reg, body.car) section.campaign h2:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -15px;
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.campaign h2:after {
    margin-left: -7vw;
    border: 7vw solid transparent;
  }
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.campaign .campaign__content__area {
    margin: 13% auto 0;
  }
}
:is(body.reg, body.car) section.campaign .campaign__banner__image-wrapper {
  width: 93%;
  margin: 3% auto 0;
}
@media screen and (max-width: 768px) {
  :is(body.reg, body.car) section.campaign .campaign__banner__image-wrapper {
    width: 100%;
    margin: 7% auto 0;
  }
}

body.reg section.campaign {
  background-color: #FFB100;
}
body.reg section.campaign h2 {
  color: #f45c27;
  background-color: #FEF4AC;
}
body.reg section.campaign h2:after {
  border-top-color: #FEF4AC;
}
@media screen and (max-width: 768px) {
  body.reg section.campaign h2:after {
    border-top-color: #FEF4AC;
  }
}
body.reg section.campaign .campaign__banner__image-wrapper.__3 {
  display: none;
}

body.car section.campaign {
  background-color: #377BB6;
}
body.car section.campaign h2 {
  color: #377BB6;
  background-color: #FFFFFF;
}
body.car section.campaign h2:after {
  border-top-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  body.car section.campaign h2:after {
    border-top-color: #FFFFFF;
  }
}
body.car section.campaign .campaign__banner__image-wrapper.__1 {
  display: none;
}

body.login section.campaign {
  background-image: url(/images/sections/campaign/login_background.png);
  background-size: 30%;
}
@media screen and (max-width: 768px) {
  body.login section.campaign .container {
    padding: 0;
  }
}
body.login section.campaign .inner {
  width: 100%;
  padding: 7% 0 10.3%;
}
@media screen and (max-width: 768px) {
  body.login section.campaign .inner {
    padding: 9% 0 16%;
  }
}
body.login section.campaign .campaign__content__area {
  margin: -2px auto 0;
  padding: 3% 3.4% 6%;
  background-color: #ffffff;
}
body.login section.campaign .campaign__banner__image-wrapper {
  margin: 3% auto 0;
}
@media screen and (max-width: 768px) {
  body.login section.campaign .campaign__banner__image-wrapper {
    width: 94%;
    margin: 4% auto 0;
  }
}
body.login section.campaign .campaign__banner__image-wrapper.__2 {
  display: none;
}

section.address .inner {
  padding: 4% 0 3.2%;
}
@media screen and (max-width: 768px) {
  section.address .inner {
    padding: 10% 0 9%;
  }
}
section.address .inner.top {
  padding: 21% 0 3.2%;
}
@media screen and (max-width: 768px) {
  section.address .inner.top {
    padding: 85% 0 9%;
  }
}
section.address .address__reg_balloon__image-wrapper {
  width: 79%;
  margin: 0 auto;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 11.8%);
          transform: translate(-50%, 11.8%);
}
@media screen and (max-width: 768px) {
  section.address .address__reg_balloon__image-wrapper {
    width: 100%;
    -webkit-transform: translate(-50%, -6%);
            transform: translate(-50%, -6%);
  }
}
section.address .address__message__text {
  width: 100%;
  margin: -3% auto 0;
  padding: 1em 0em 1em 1.5em;
  position: relative;
  color: #000000;
  font-size: min(24px, 2.4vw);
  line-height: 1.67;
  font-weight: 500;
  letter-spacing: -0.05em;
  background-color: #fff;
  border: 2px solid;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  section.address .address__message__text {
    width: 91%;
    margin: 4.3% auto 0;
    padding: 1em;
    font-size: 4vw;
    line-height: 1.43;
    letter-spacing: 0em;
  }
}
section.address .address__message__text a {
  color: #000000;
  text-decoration: underline;
}
section.address .address__message__text span {
  font-size: min(18px, 1.8vw);
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  section.address .address__message__text span {
    font-size: 3vw;
  }
}
section.address .address__message__text-small {
  display: inline-block;
  padding-right: 1rem;
  padding-top: 6px;
}
section.address .address__reg_banner__image-wrapper {
  width: 100%;
  margin: 3.5% auto 0;
}
@media screen and (max-width: 768px) {
  section.address .address__reg_banner__image-wrapper {
    margin: 5.5% auto 0;
  }
}
section.address .store-link {
  margin: 1.5% auto 0;
}

body.reg section.address {
  background-color: #FDE354;
}
body.reg section.address .address__message__text {
  border-color: #177B63;
}

body.car section.address {
  background-color: #C3EDF4;
}
body.car section.address .address__message__text {
  border-color: #1D50A3;
}

body.login section.address {
  background-color: #EFECE2;
}
body.login section.address .inner {
  padding: 24% 0 7.7%;
}
@media screen and (max-width: 768px) {
  body.login section.address .inner {
    padding: 81% 0 7.7%;
  }
}
@media screen and (max-width: 768px) {
  body.login section.address .address__reg_balloon__image-wrapper {
    width: 92%;
  }
}
@media screen and (max-width: 768px) {
  body.login section.address .address__reg_banner__image-wrapper {
    width: 93%;
    margin: 7.8% auto 0;
  }
}

.close__black__area {
  width: 100%;
  height: 100%;
  position: relative;
}

.close__message__area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 98;
  background-color: rgba(0, 0, 0, .6);
}
@media screen and (min-width: 769px) {
  .close__message__area {
    width: 100%;
    height: 100%;
  }
}
.close__message__area .close__message__text {
  margin: 35% 0 0;
  padding: 0.5em 0;
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .close__message__area .close__message__text {
    margin: min(190px, 15%) 0 0;
    font-size: min(2.8vw, 36px);
  }
}

.scroll__area .scroll__top-button__image-wrapper {
  width: 9vw;
  max-width: 70px;
  height: 9vw;
  max-height: 70px;
  margin: 0 0 15px;
  position: fixed;
  right: 1vw;
  bottom: var(--height_bottomLinkArea);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .scroll__area .scroll__top-button__image-wrapper {
    width: 14vw;
    height: 14vw;
    margin: 0 0 10px;
    right: 10px;
  }
}