@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Noto+Sans+JP:wght@400;500;700&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-base: #fff;
  --color-main: #006BB6;
  --color-accent: #4AB6DF;
  --color-base-txt: #000;
  --color-unit-bg: #F7F7F7;
  --color-shadow: #888;
  --color-footer-bg: #2e2e2e;
  --fs-h2: 3.6rem;
  --fs-h3: 3.2rem;
  --fs-h4: 2.8rem;
  --fs-h5: 2.4rem;
  --fs-h6: 2.0rem;
  --fs-h-sub: 1.6rem;
  --fs-normal: 1.6rem;
  --fs-small: 1.4rem;
  --fs-x-small: 1.2rem;
  --fs-sp-h2: 3.0rem;
  --fs-sp-h3: 2.4rem;
  --fs-sp-h4: 2.4rem;
  --fs-sp-h5: 2.0rem;
  --fs-sp-h-sub: 1.2rem;
}

/* ******************************************* */
html, body {
  font-size: 62.5%;
}

body {
  color: var(--color-base-txt);
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ******************************************* */
@media screen and (max-width: 980px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 981px) {
  .is-sp {
    display: none !important;
  }
}
[v-cloak] {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: #000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
}
.overlay.is-active {
  opacity: 0.3;
  z-index: 2;
  pointer-events: auto;
}

.main {
  background: var(--color-base);
}

@media screen and (min-width: 981px) {
  .main {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
  }
}
@media screen and (min-width: 1441px) {
  .main {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: var(--color-base);
  box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 981px) {
  .main-header {
    justify-content: flex-end;
    height: 108px;
  }
}
.main-header .main-header__logo {
  width: 156px;
}
@media screen and (min-width: 981px) {
  .main-header .main-header__logo {
    position: absolute;
    left: 45px;
    width: 287px;
  }
}
.main-header .main-header__logo picture {
  object-fit: contain;
}
.main-header .main-header__nav {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 981px) {
  .main-header .main-header__nav {
    position: static;
    display: flex;
    align-items: center;
  }
}
.main-header .nav__btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  border: 0;
  width: 48px;
  height: 48px;
  background: transparent;
  cursor: pointer;
}
.main-header .nav__btn .btn__line_1,
.main-header .nav__btn .btn__line_2,
.main-header .nav__btn .btn__line_3 {
  position: absolute;
  top: 22px;
  left: 13px;
  display: block;
  width: 22px;
  height: 3px;
  background: var(--color-base-txt);
  transition: transform ease 0.5s;
}
.main-header .nav__btn .btn__line_2 {
  transform: translateY(7px) rotate(0);
}
.main-header .nav__btn .btn__line_3 {
  transform: translateY(-7px) rotate(0);
}
.main-header .nav__btn.is-active .btn__line_1 {
  transform: translateY(0) rotate(225deg);
}
.main-header .nav__btn.is-active .btn__line_2 {
  transform: translateY(0) rotate(45deg);
}
.main-header .nav__btn.is-active .btn__line_3 {
  transform: translateY(0) rotate(-45deg);
}
.main-header .nav {
  position: fixed;
  right: 0;
  z-index: 15;
  padding-top: 48px;
  width: 300px;
  height: 100vh;
  background: var(--color-base);
  overflow-y: auto;
  transform: translateX(300px);
  transition: transform ease 0.5s;
}
@media screen and (min-width: 981px) {
  .main-header .nav {
    position: static;
    margin-left: 300px;
    padding-top: 0;
    width: auto;
    height: auto;
    background: transparent;
    transform: translateX(0);
  }
}
.main-header .nav .nav__menu-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 981px) {
  .main-header .nav .nav__menu-list {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}
.main-header .nav .menu-list__item a {
  padding: 15px 16px;
  border-bottom: 1px solid #f2f2f2;
  display: block;
  color: var(--color-base-txt);
  font-size: var(--fs-normal);
  text-decoration: none;
  transition: 0.5s color ease;
}
@media screen and (min-width: 981px) {
  .main-header .nav .menu-list__item a {
    border: 0;
    font-weight: bold;
  }
}
.main-header .nav .menu-list__item a:hover {
  color: var(--color-main);
}
.main-header .nav__btn.is-active + .nav {
  transform: translateX(0);
}
@media screen and (min-width: 981px) {
  .main-header .main-header__app-dl {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 44px;
  }
}

.main-footer__wrap {
  background: var(--color-footer-bg);
}
@media screen and (min-width: 981px) {
  .main-footer__wrap {
    padding-top: 50px;
  }
}

@media screen and (min-width: 981px) {
  .main-footer {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-rows: 1rem 1fr;
    margin: 0 auto;
    width: 890px;
  }
}
.main-footer .main-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding-top: 20px;
  width: 250px;
}
@media screen and (min-width: 981px) {
  .main-footer .main-footer__nav-list {
    display: flex;
    justify-content: flex-end;
    grid-column: 2/3;
    width: 100%;
  }
}
.main-footer .nav-list__item a {
  color: var(--color-base);
  font-size: var(--fs-small);
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s color ease;
}
.main-footer .nav-list__item a:hover {
  color: var(--color-accent);
}
@media screen and (min-width: 981px) {
  .main-footer .nav-list__item a {
    font-size: var(--fs-normal);
  }
}
.main-footer .main-footer__logo {
  margin: 40px auto 0;
  width: 129px;
}
@media screen and (min-width: 981px) {
  .main-footer .main-footer__logo {
    margin: 0;
    grid-column: 1/2;
    grid-row: 1/3;
    width: 206px;
  }
}
.main-footer .main-footer__logo img {
  object-fit: contain;
}
.main-footer .app-dl__store-list {
  margin-top: 30px;
}
@media screen and (min-width: 981px) {
  .main-footer .app-dl__store-list {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
  }
  .main-footer .app-dl__store-list .app-store {
    width: 138px;
  }
  .main-footer .app-dl__store-list .google-play {
    width: 173px;
  }
}
.main-footer .copyright {
  padding: 60px 20px 50px;
  text-align: center;
}
@media screen and (min-width: 981px) {
  .main-footer .copyright {
    grid-column: 1/3;
  }
}
.main-footer .copyright a {
  color: var(--color-base);
  font-size: var(--fs-x-small);
  text-decoration: none;
}
.main-footer .copyright a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 981px) {
  .main-footer .copyright a {
    font-size: var(--fs-normal);
  }
}

.station__item {
  flex: 1 0 auto;
  max-width: 100%;
  min-width: calc(50% - 5px);
  display: inline-block;
}
@media screen and (min-width: 981px) {
  .station__item {
    flex: none;
    min-width: auto;
    max-width: auto;
  }
}
.station__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 2px solid var(--color-main);
  border-radius: 32px;
  height: 100%;
  background: var(--color-base);
  color: var(--color-base-txt);
  font-size: var(--fs-small);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.5s color ease, 0.5s background ease;
}
.station__item a:hover {
  background: var(--color-base-txt);
  color: var(--color-base);
}
@media screen and (min-width: 981px) {
  .station__item a {
    border: 1px solid var(--color-main);
    color: var(--color-main);
  }
  .station__item a:hover {
    background: var(--color-main);
    color: var(--color-base);
  }
}
.station__item a .station__item-icon {
  margin-left: 0.6rem;
}

.prefectures {
  width: 100%;
}
.prefectures .prefectures__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 10px;
}
.prefectures .prefectures__item + .prefectures__item {
  margin: 20px 0;
}
@media screen and (min-width: 981px) {
  .prefectures .prefectures__item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 6rem;
  }
}
.prefectures .prefectures__ttl {
  width: 100%;
  font-size: var(--fs-x-small);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .prefectures .prefectures__ttl {
    position: absolute;
    top: 0.6em;
    left: 0;
    width: auto;
  }
}

.search-station .search-station__info {
  padding: 45px 20px 0;
  font-size: var(--fs-normal);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .search-station .search-station__info {
    padding: 80px 20px 0;
    text-align: center;
  }
}
.search-station .search-station__station-list {
  padding: 30px 20px 0;
}
@media screen and (min-width: 981px) {
  .search-station .search-station__station-list {
    margin: 0 auto 60px;
    padding-top: 60px;
    max-width: 940px;
    box-sizing: border-box;
  }
}
.search-station .station-list__details {
  border-radius: 10px 10px 0 0;
  background: var(--color-unit-bg);
}
@media screen and (min-width: 981px) {
  .search-station .station-list__details {
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
.search-station .station-list__details .station-list__summary {
  position: relative;
  padding: 10px 0;
  border-radius: 10px;
  background: var(--color-main);
  color: var(--color-base);
  font-size: var(--fs-normal);
  font-weight: bold;
  text-align: center;
  list-style: none;
}
@media screen and (min-width: 981px) {
  .search-station .station-list__details .station-list__summary {
    font-size: var(--fs-h4);
  }
}
.search-station .station-list__details .station-list__summary::after, .search-station .station-list__details .station-list__summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  margin-top: -2px;
  width: 15px;
  height: 3px;
  background: var(--color-base);
  transition: transform 0.5s ease;
}
.search-station .station-list__details .station-list__summary::after {
  transform: rotate(90deg);
}
.search-station .station-list__details[open] .station-list__summary {
  border-radius: 10px 10px 0 0;
}
.search-station .station-list__details[open] .station-list__summary::after {
  transform: rotate(0);
}
.search-station .station-list__details .station-list__legend {
  padding: 30px 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.search-station .station-list__details .station-list__legend .station-list__legend-txt {
  margin-left: 0.6rem;
  font-size: var(--fs-small);
  font-weight: bold;
}
.search-station .station-list__details .station-list__area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  padding: 15px 20px 0;
  width: 100%;
}
@media screen and (min-width: 981px) {
  .search-station .station-list__details .station-list__area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.search-station .station-list__details .station-list__area-list:not(:first-child) {
  padding-top: 40px;
}
.search-station .station-list__details .station-list__area-list .area-list__ttl {
  width: 100%;
  font-size: var(--fs-normal);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .search-station .station-list__details .station-list__area-list .area-list__ttl {
    width: 100%;
  }
}
.search-station .station-list__details .station-list__close-btn-wrap {
  margin-top: 30px;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 981px) {
  .search-station .station-list__details .station-list__close-btn-wrap {
    margin-top: 80px;
    padding-bottom: 15px;
  }
}
.search-station .station-list__details .station-list__close-btn-wrap .close-btn {
  border: 0;
  background: transparent;
  color: var(--color-shadow);
  font-size: var(--fs-normal);
}

/* ******************************************* */
.main-visual {
  position: relative;
  width: 100%;
  height: 410px;
  background: url(../img/sp/main_visual_bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 981px) {
  .main-visual {
    min-height: 788px;
    background: url(../img/main_visual_bg.jpg) no-repeat center center/cover;
  }
}
.main-visual .main-visual__ttl {
  position: absolute;
  top: 20px;
  right: 15px;
  color: var(--color-base);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 981px) {
  .main-visual .main-visual__ttl {
    top: 70px;
    right: 0;
    left: calc(45% - 5px);
    font-size: 5.6rem;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.main-visual .main-visual__msg {
  position: absolute;
  bottom: 30px;
  right: 15px;
  padding: 15px 12px 15px 30px;
  width: 205px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-base);
  font-size: var(--fs-normal);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .main-visual .main-visual__msg {
    bottom: 0px;
    right: 0px;
    top: 240px;
    left: 45%;
    padding: 0;
    width: auto;
    background: transparent;
  }
}
.main-visual .main-visual__app-dl {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: bottom;
}
.main-visual .main-visual__app-dl .app-dl__store-list {
  flex-direction: column;
  justify-content: flex-end;
  gap: 26px;
  margin-left: 60px;
}
.main-visual .main-visual__app-dl .app-dl__store-list .app-store {
  width: 128px;
}
.main-visual .main-visual__app-dl .app-dl__store-list .google-play {
  width: 128px;
}
.main-visual .main-visual__app-dl .app-dl__qr {
  display: flex;
  align-items: flex-end;
  margin-top: 30px;
  margin-left: 20px;
  width: 110px;
}
.main-visual .main-visual__app-dl .app-dl__qr img {
  object-fit: contain;
}

/* ******************************************* */
.top-app-dl {
  padding: 12px 18px 13px 46px;
  background: var(--color-accent);
}

.app-dl__store-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.app-dl__store-list .app-store {
  width: 138px;
}
@media screen and (min-width: 981px) {
  .app-dl__store-list .app-store {
    width: 102px;
  }
}
.app-dl__store-list .google-play {
  width: 176px;
}
@media screen and (min-width: 981px) {
  .app-dl__store-list .google-play {
    width: 124px;
  }
}
.app-dl__store-list .store-list__item {
  transition: 0.5s opacity ease;
}
.app-dl__store-list .store-list__item:hover {
  opacity: 0.75;
}
.app-dl__store-list .store-list__item a {
  display: block;
}
.app-dl__store-list .store-list__item picture {
  object-fit: contain;
}

/* ******************************************* */
.feature {
  padding-top: 45px;
}
@media screen and (min-width: 981px) {
  .feature {
    padding-top: 60px;
  }
}
.feature .feature__ttl {
  text-align: center;
}
.feature .feature__ttl .feature__ttl-sub {
  color: var(--color-main);
  font-size: var(--fs-sp-h-sub);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .feature .feature__ttl .feature__ttl-sub {
    font-size: var(--fs-h-sub);
  }
}
.feature .feature__ttl .feature__ttl-main {
  margin-top: 4px;
  color: var(--color-base-txt);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .feature .feature__ttl .feature__ttl-main {
    font-size: var(--fs-h3);
  }
}
.feature .feature__topic-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 981px) {
  .feature .feature__topic-list {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
  }
}
.feature .topic-list__item {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature .topic-list__item:first-child {
  margin-top: 30px;
}
@media screen and (min-width: 981px) {
  .feature .topic-list__item {
    margin-top: 0;
    max-width: 284px;
  }
  .feature .topic-list__item:first-child {
    margin-top: 0;
  }
  .feature .topic-list__item:not(:last-child) {
    margin-right: 40px;
  }
}
.feature .topic-list__item .item__ttl {
  color: var(--color-main);
  font-size: var(--fs-sp-h5);
  text-align: center;
}
@media screen and (min-width: 981px) {
  .feature .topic-list__item .item__ttl {
    font-size: var(--fs-h5);
  }
}
.feature .topic-list__item .item__img {
  margin-top: 15px;
  width: 143px;
  height: 143px;
}
.feature .topic-list__item .item__img img {
  object-fit: contain;
}
.feature .topic-list__item .item__txt {
  margin-top: 15px;
  padding: 0 20px;
  font-size: var(--fs-normal);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .feature .topic-list__item .item__txt {
    margin-top: 40px;
  }
}

/* ******************************************* */
.how-to-use {
  margin-top: 60px;
  padding-top: 45px;
  padding-bottom: 60px;
  background: var(--color-unit-bg);
}
@media screen and (min-width: 981px) {
  .how-to-use {
    margin-top: 60px;
    padding-top: 60px;
  }
}
.how-to-use .how-to-use__ttl {
  text-align: center;
}
.how-to-use .how-to-use__ttl .how-to-use__ttl-sub {
  color: var(--color-accent);
  font-size: var(--fs-sp-h-sub);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .how-to-use .how-to-use__ttl .how-to-use__ttl-sub {
    font-size: var(--fs-h-sub);
  }
}
.how-to-use .how-to-use__ttl .how-to-use__ttl-main {
  margin-top: 4px;
  color: var(--color-base-txt);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .how-to-use .how-to-use__ttl .how-to-use__ttl-main {
    font-size: var(--fs-h3);
  }
}
.how-to-use .how-to-use__info {
  margin-top: 30px;
  padding: 0 20px;
  font-size: var(--fs-normal);
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 981px) {
  .how-to-use .how-to-use__info {
    margin-top: 30px;
  }
}
.how-to-use .how-to-use__process-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 981px) {
  .how-to-use .how-to-use__process-list {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: 45px;
  }
}
.how-to-use .process-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.how-to-use .process-list__item:first-child {
  margin-top: 45px;
}
@media screen and (min-width: 981px) {
  .how-to-use .process-list__item {
    flex-direction: row;
    justify-content: center;
    margin: 0;
  }
  .how-to-use .process-list__item:first-child {
    margin-top: 0;
  }
}
.how-to-use .process-list__item:not(:last-child)::after {
  content: "";
  display: block;
  margin-top: 25px;
  width: 34px;
  height: 29px;
  background: url(../img/sp/use_arrow.png) no-repeat;
}
@media screen and (min-width: 981px) {
  .how-to-use .process-list__item:not(:last-child)::after {
    margin: 0 10px;
    width: 29px;
    height: 33px;
    background: url(../img/use_arrow.png) no-repeat;
  }
}
@media screen and (min-width: 981px) {
  .how-to-use .item__detail {
    width: 284px;
  }
}
.how-to-use .item__detail .detail__ttl {
  display: inline-block;
  padding: 2px 33px;
  border-radius: 30px;
  height: 30px;
  background: var(--color-accent);
  color: var(--color-base);
  font-size: var(--fs-sp-h5);
}
.how-to-use .item__detail .inner__img {
  margin-top: 15px;
  width: 284px;
}
.how-to-use .item__detail .inner__img img {
  object-fit: contain;
}
.how-to-use .item__detail .inner__text {
  margin-top: 15px;
  font-size: var(--fs-sp-h5);
  font-weight: bold;
  text-align: center;
}

/* ******************************************* */
.sp-key {
  padding: 30px 20px 35px;
  background: var(--color-accent);
}
@media screen and (min-width: 981px) {
  .sp-key {
    padding: 60px 20px 50px;
    display: flex;
    justify-content: center;
  }
}
.sp-key .sp-key__inner {
  padding: 20px 15px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-base);
}
@media screen and (min-width: 981px) {
  .sp-key .sp-key__inner {
    display: grid;
    grid-template-columns: 276px auto;
    gap: 20px 30px;
    align-items: start;
    padding: 20px;
    max-width: 904px;
    box-sizing: border-box;
  }
}
.sp-key .sp-key__ttl {
  color: var(--color-accent);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 981px) {
  .sp-key .sp-key__ttl {
    grid-column: 2/3;
    font-size: var(--fs-h3);
    text-align: left;
  }
}
.sp-key .sp-key__img {
  margin-top: 30px;
  margin-left: 25px;
  width: 154px;
}
@media screen and (min-width: 981px) {
  .sp-key .sp-key__img {
    grid-column: 1/2;
    grid-row: 1/5;
    margin: 0;
    width: 276px;
  }
}
.sp-key .sp-key__img img {
  object-fit: contain;
}
.sp-key .sp-key__info {
  margin-top: 15px;
  font-size: var(--fs-normal);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .sp-key .sp-key__info {
    margin-top: 0;
  }
}

/* ******************************************* */
.price {
  padding: 45px 0 30px;
  background: var(--color-unit-bg);
}
@media screen and (min-width: 981px) {
  .price {
    padding: 60px 0 30px;
  }
}
.price .price__ttl {
  text-align: center;
}
.price .price__ttl .price__ttl-sub {
  color: var(--color-accent);
  font-size: var(--fs-sp-h-sub);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .price .price__ttl .price__ttl-sub {
    font-size: var(--fs-h-sub);
  }
}
.price .price__ttl .price__ttl-main {
  margin-top: 4px;
  color: var(--color-base-txt);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .price .price__ttl .price__ttl-main {
    font-size: var(--fs-h3);
  }
}
.price .price__info {
  margin-top: 30px;
  font-size: var(--fs-normal);
  font-weight: 500;
  text-align: center;
}
.price .price__credit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.price .price__car-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
@media screen and (min-width: 981px) {
  .price .price__car-list {
    flex-direction: row;
  }
}
.price .car-list__item {
  margin-top: 20px;
}
.price .car-list__car-type {
  padding-bottom: 20px;
  border-radius: 10px;
  width: 330px;
  background: var(--color-base);
}
@media screen and (min-width: 981px) {
  .price .car-list__car-type {
    width: 450px;
  }
}
.price .car-list__car-type .car-type__ttl {
  padding: 16px 0;
  border-radius: 10px 10px 0 0;
  background: var(--color-accent);
  color: var(--color-base);
  font-size: var(--fs-sp-h5);
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 981px) {
  .price .car-list__car-type .car-type__ttl {
    font-size: var(--fs-h5);
  }
}
.price .car-list__car-type .car-type__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price .car-list__car-type .summary__img {
  padding: 15px 0 10px;
  max-width: 270px;
}
@media screen and (min-width: 981px) {
  .price .car-list__car-type .summary__img {
    max-width: 347px;
  }
}
.price .car-list__car-type .summary__img img {
  object-fit: contain;
}
.price .car-list__car-type .summary__txt {
  color: var(--color-accent);
  font-weight: bold;
  text-align: center;
}
.price .car-list__car-type .summary__txt .summary__price {
  font-size: 4.8rem;
}
.price .car-list__car-type .summary__txt .summary__time {
  font-size: 3.6rem;
}
@media screen and (min-width: 981px) {
  .price .car-list__notes {
    margin-top: 20px;
    display: flex;
  }
}
.price .car-list__notes .notes__item {
  margin-top: 15px;
  font-size: var(--fs-normal);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .price .car-list__notes .notes__item {
    margin-top: 0;
  }
}
.price .car-list__notes .notes__item:not(:first-of-type) {
  margin-top: 2px;
}
@media screen and (min-width: 981px) {
  .price .car-list__notes .notes__item:not(:first-of-type) {
    margin-top: 0;
    margin-left: 15px;
  }
}
@media screen and (min-width: 981px) {
  .price .price__more-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.price .price__more {
  margin-top: 45px;
  padding: 0 20px;
  font-size: var(--fs-normal);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .price .price__more {
    grid-column: 2/3;
    padding: 0;
    text-align: center;
  }
}
@media screen and (min-width: 981px) {
  .price .price__small-wrap {
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.price .price__small {
  padding: 0 20px;
  display: block;
  font-size: var(--fs-x-small);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .price .price__small {
    padding: 0;
  }
}
.price .price__small:first-of-type {
  margin-top: 20px;
}
@media screen and (min-width: 981px) {
  .price .price__small:first-of-type {
    margin-top: 20px;
  }
}

/* ******************************************* */
.app-dl {
  padding-top: 45px;
  background: var(--color-accent);
}
@media screen and (min-width: 981px) {
  .app-dl {
    padding-top: 60px;
  }
}
.app-dl .app-dl__ttl {
  text-align: center;
}
.app-dl .app-dl__ttl .app-dl__ttl-sub {
  color: var(--color-base);
  font-size: var(--fs-sp-h-sub);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__ttl .app-dl__ttl-sub {
    font-size: var(--fs-h-sub);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.app-dl .app-dl__ttl .app-dl__ttl-main {
  margin-top: 4px;
  color: var(--color-base);
  font-size: var(--fs-sp-h3);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__ttl .app-dl__ttl-main {
    font-size: var(--fs-h3);
  }
}
.app-dl .app-dl__msg {
  margin-top: 30px;
  padding: 0 20px;
  color: var(--color-base);
  font-size: var(--fs-normal);
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__msg {
    text-align: center;
  }
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto 0;
    max-width: 780px;
  }
}
.app-dl .app-dl__store-list {
  margin-top: 20px;
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__store-list {
    flex-direction: column;
    align-items: flex-start;
    margin: 30px 0 0 0;
  }
  .app-dl .app-dl__store-list .app-store {
    width: 216px;
  }
  .app-dl .app-dl__store-list .google-play {
    width: 216px;
  }
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__qr {
    margin-top: 30px;
    margin-right: 20px;
    width: 160px;
  }
  .app-dl .app-dl__qr img {
    object-fit: contain;
  }
}
.app-dl .app-dl__img {
  margin: 60px auto 0;
  width: 253px;
}
@media screen and (min-width: 981px) {
  .app-dl .app-dl__img {
    margin: 0;
    width: 283px;
  }
}
.app-dl .app-dl__img img {
  object-fit: contain;
}

/* ******************************************* */
.inquiry {
  padding: 45px 0 45px;
  background: var(--color-main);
}
@media screen and (min-width: 981px) {
  .inquiry {
    padding: 60px 0 50px;
  }
}
.inquiry .inquiry__ttl {
  margin: 0 20px;
  color: var(--color-base);
  font-size: var(--fs-sp-h5);
  text-align: center;
}
@media screen and (min-width: 981px) {
  .inquiry .inquiry__ttl {
    font-size: var(--fs-h4);
  }
}
.inquiry .inquiry__info {
  margin: 30px 30px 0;
  color: var(--color-base);
  font-size: var(--fs-normal);
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 981px) {
  .inquiry .inquiry__info {
    font-weight: normal;
  }
}
.inquiry .inquiry__tel {
  margin-top: 20px;
  color: var(--color-base);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 981px) {
  .inquiry .inquiry__tel {
    font-size: 9.6rem;
  }
}

/* ******************************************* */