@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);
}

.calendar-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.calendar-modal {
  position: relative;
  padding: 20px;
  width: calc(100% - 20px);
  height: calc(100vh - 120px);
  z-index: 100;
  overscroll-behavior-y: contain;
  background: var(--color-base);
}
.calendar-modal__btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 9;
  height: 30px;
  width: 30px;
  background: transparent;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
}
.calendar-modal__btn-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -15px;
  display: block;
  background: #fff;
  height: 2px;
  width: 30px;
}
.calendar-modal__btn-close span.--bar1 {
  transform: rotate(-45deg);
}
.calendar-modal__btn-close span.--bar2 {
  transform: rotate(45deg);
}
.calendar-modal__inner {
  position: relative;
  height: 90vh;
  background: rgb(255, 255, 255);
  max-width: 647px;
  margin: 50px auto;
  padding: 20px 20px;
  border-radius: 10px;
}
@media (min-width: 640px) {
  .calendar-modal__inner {
    padding: 20px 30px;
  }
}
.calendar-modal--bg {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 80;
  background: rgba(0, 0, 0, 0.5);
}
.calendar-modal__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 640px) {
  .calendar-modal__title {
    font-size: 3.2rem;
  }
}
.calendar-modal__btn-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .calendar-modal__btn-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.calendar-modal__btn-this-week {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 2px;
  border: 2px solid var(--color-accent);
  border-radius: 1.6em;
  height: 1.6em;
  color: var(--color-accent);
  background: var(--color-base);
  font-size: var(--fs-normal);
}
@media screen and (max-width: 980px) {
  .calendar-modal__btn-this-week {
    width: 100%;
  }
}
.calendar-modal__footer {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--fs-h-sub);
}
@media screen and (max-width: 980px) {
  .calendar-modal__footer {
    font-size: var(--fs-small);
  }
}

.calendar-nav {
  margin-top: 2.4rem;
  margin-bottom: 1.3rem;
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}
.calendar-nav__button {
  border: 0;
  background: none;
}
.calendar-nav__button:hover {
  opacity: 0.5;
}
.calendar-nav__button.--prev svg {
  transform: rotate(180deg);
}
.calendar-nav__button--ttl {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.calendar-nav__period {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .calendar-nav__period {
    font-size: 2rem;
  }
}
.calendar-nav__current-date {
  font-size: var(--fs-normal);
}
@media screen and (max-width: 980px) {
  .calendar-nav__current-date {
    margin: 0 10px;
    flex: 1;
    font-size: var(--fs-x-small);
  }
}

#calendar {
  grid-column: 1/3;
}

.calendar {
  width: 100%;
  height: calc(100% - 115px);
  margin: 10px auto 0;
  box-sizing: border-box;
  border: 2px solid #ddd;
  z-index: 1;
  overflow-y: auto;
}
@media screen and (max-width: 980px) {
  .calendar {
    height: calc(100% - 155px);
  }
}
.calendar * {
  box-sizing: border-box;
  border: 0 solid #ddd;
}
.calendar a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}
.calendar ol,
.calendar ul,
.calendar menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.calendar blockquote,
.calendar dl,
.calendar dd,
.calendar h1,
.calendar h2,
.calendar h3,
.calendar h4,
.calendar h5,
.calendar h6,
.calendar hr,
.calendar figure,
.calendar p,
.calendar pre {
  margin: 0;
}
.calendar .calendar-body {
  flex: auto;
  display: flex;
}
.calendar .calendar--bl > :not([hidden]) ~ :not([hidden]) {
  border-left-width: 2px;
}
.calendar .calendar--bt > :not([hidden]) ~ :not([hidden]) {
  border-top-width: 2px;
}
.calendar .calendar-header {
  border-bottom-width: 2px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
.calendar .calendar-header__inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-color: rgb(243, 244, 246);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
  background-color: #f7f7f7;
}
@media (min-width: 640px) {
  .calendar .calendar-header__inner {
    display: grid;
  }
}
.calendar .calendar-header__blank {
  width: 5rem;
  grid-column-end: 1;
  background: #fff;
  position: relative;
}
.calendar .calendar-header__blank:after {
  position: absolute;
  display: block;
  top: -3px;
  bottom: 0;
  right: 0px;
  left: -3px;
  content: "";
  background: #fff;
}
.calendar .calendar-header__item {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.calendar .calendar-header__item .--sat {
  color: #0059a9;
}
.calendar .calendar-header__item .--sun,
.calendar .calendar-header__item .--holiday {
  color: #bc0000;
}
.calendar .calendar-header__item span {
  text-align: center;
}
.calendar .calendar-header__week {
  display: block;
  text-align: center;
}
.calendar .calendar__sidebar {
  position: sticky;
  left: 0;
  z-index: 10;
  width: 5rem;
  flex: none;
}
.calendar .calendar__sidebar:after {
  position: absolute;
  display: block;
  width: 2px;
  top: 0;
  bottom: 0;
  right: -2px;
  content: "";
  background: #ddd;
}
.calendar .calendar__main {
  display: grid;
  flex: auto;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.calendar .calendar-timeline {
  margin-left: -5rem;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  display: grid;
}
.calendar .calendar-timeline > :not([hidden]) ~ :not([hidden]):nth-child(2n) {
  border-style: dotted;
}
.calendar .calendar-timeline__hour {
  position: sticky;
  left: 0;
  z-index: 0;
  width: 5rem;
  padding-right: 0.5rem;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25rem;
}
.calendar .calendar-days {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.calendar .calendar-days div {
  grid-row: 1/-1;
}
.calendar .calendar-days div:nth-child(1) {
  grid-column-start: 1;
}
.calendar .calendar-days div:nth-child(2) {
  grid-column-start: 2;
}
.calendar .calendar-days div:nth-child(3) {
  grid-column-start: 3;
}
.calendar .calendar-days div:nth-child(4) {
  grid-column-start: 4;
}
.calendar .calendar-days div:nth-child(5) {
  grid-column-start: 5;
}
.calendar .calendar-days div:nth-child(6) {
  grid-column-start: 6;
}
.calendar .calendar-days div:nth-child(7) {
  grid-column-start: 7;
}
@media (min-width: 640px) {
  .calendar .calendar-days {
    display: grid;
  }
}
.calendar .calendar-schedule {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.calendar .calendar-schedule__item {
  position: relative;
  right: -1px;
  margin-top: 1px;
  display: flex;
}
.calendar .calendar-schedule__inner {
  position: absolute;
  inset: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0.5rem 0.5rem 0;
  font-size: 1.2rem;
  line-height: 1.25rem;
  color: var(--color-base);
  background-color: var(--color-accent);
}
.calendar .calendar-schedule .--not-available {
  color: var(--color-base);
  background-color: #888888;
}
.calendar .calendar-schedule .--day1 {
  grid-column-start: 1;
}
.calendar .calendar-schedule .--day2 {
  grid-column-start: 2;
}
.calendar .calendar-schedule .--day3 {
  grid-column-start: 3;
}
.calendar .calendar-schedule .--day4 {
  grid-column-start: 4;
}
.calendar .calendar-schedule .--day5 {
  grid-column-start: 5;
}
.calendar .calendar-schedule .--day6 {
  grid-column-start: 6;
}
.calendar .calendar-schedule .--day7 {
  grid-column-start: 7;
}
.calendar .calendar-schedule__time {
  display: none;
}
@media (min-width: 640px) {
  .calendar .calendar-schedule__time {
    display: block;
  }
}
@media (min-width: 640px) {
  .calendar .calendar-schedule {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.car-list__h24 {
  margin-top: 20px;
  grid-column: 1/3;
}
.car-list__h24 .title {
  font-size: var(--fs-h-sub);
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .car-list__h24 .title {
    font-size: var(--fs-small);
  }
}
.car-list__h24 .h24__container {
  position: relative;
  width: 100%;
  margin-top: 3px;
}
.car-list__h24 .h24__container .h24__schedule {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1440, 1fr);
  width: 100%;
  height: 50px;
  background: #dcdcdf;
}
@media screen and (max-width: 980px) {
  .car-list__h24 .h24__container .h24__schedule {
    height: 20px;
  }
}
.car-list__h24 .h24__container .h24__schedule .schedule__item {
  grid-row: 1;
  height: 50px;
  background: var(--color-accent);
  text-indent: -9999px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .car-list__h24 .h24__container .h24__schedule .schedule__item {
    height: 20px;
  }
}
.car-list__h24 .h24__container .h24__schedule .schedule__item.--not-available {
  background: var(--color-shadow);
}
.car-list__h24 .h24__container .h24__timeline {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(48, 1fr);
  width: 100%;
}
.car-list__h24 .h24__container .h24__timeline::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -3px;
  z-index: 5;
  display: block;
  border-radius: 5px;
  width: 5px;
  height: 5px;
  background: var(--color-base-txt);
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour {
  position: relative;
  height: 50px;
}
@media screen and (max-width: 980px) {
  .car-list__h24 .h24__container .h24__timeline .timeline__hour {
    height: 20px;
  }
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour:nth-child(even) {
  border-right: 1px solid var(--color-base);
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour:nth-child(odd) {
  border-right: 1px dotted var(--color-base);
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour:nth-child(16n+1)::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -3px;
  z-index: 5;
  display: block;
  border-radius: 5px;
  width: 5px;
  height: 5px;
  background: var(--color-base-txt);
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour:last-child {
  border-right: 0;
  position: relative;
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour:last-child::after {
  content: "24:00";
  position: absolute;
  top: calc(100% + 8px);
  right: -18px;
  font-size: var(--fs-x-small);
}
.car-list__h24 .h24__container .h24__timeline .timeline__hour time {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: var(--fs-x-small);
  transform-origin: top center;
}
.car-list__h24 .h24__container .caption {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.car-list__h24 .h24__container .caption .caption__maintenance {
  display: flex;
  align-items: center;
}
.car-list__h24 .h24__container .caption .caption__maintenance::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 35px;
  height: 15px;
  background: var(--color-shadow);
}
.car-list__h24 .h24__container .caption .caption__reservation {
  display: flex;
  align-items: center;
}
.car-list__h24 .h24__container .caption .caption__reservation::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 35px;
  height: 15px;
  background: var(--color-accent);
}

.datepicker {
  width: min-content;
}
.datepicker:not(.active) {
  display: none;
}

.datepicker-dropdown {
  position: absolute;
  z-index: 20;
  padding-top: 4px;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker-main {
  flex: auto;
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-controls {
  display: flex;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid gainsboro;
  border-radius: 4px;
  box-shadow: none;
  background-color: hsl(0, 0%, 100%);
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: hsl(0, 0%, 21%);
  font-size: 1rem;
}
.datepicker-controls .button:focus, .datepicker-controls .button:active {
  outline: none;
}
.datepicker-controls .button:hover {
  border-color: #b8b8b8;
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus {
  border-color: hsl(217, 71%, 53%);
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.datepicker-controls .button:active {
  border-color: #474747;
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-footer .datepicker-controls .button {
  flex: auto;
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  font-size: 0.75rem;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .prev-button,
.datepicker-controls .next-button {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  flex: 0 0 14.2857142857%;
}
.datepicker-controls .prev-button.disabled,
.datepicker-controls .next-button.disabled {
  visibility: hidden;
}

.datepicker-view,
.datepicker-grid {
  display: flex;
}

.datepicker-view {
  align-items: stretch;
  width: 15.75rem;
}

.datepicker-grid {
  flex-wrap: wrap;
  flex: auto;
}

.datepicker .days {
  display: flex;
  flex-direction: column;
  flex: auto;
}
.datepicker .days-of-week {
  display: flex;
}
.datepicker .week-numbers {
  display: flex;
  flex-direction: column;
  flex: 0 0 9.6774193548%;
}
.datepicker .weeks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: auto;
}
.datepicker span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none;
}
.datepicker .dow {
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.datepicker .week {
  flex: auto;
  color: #b8b8b8;
  font-size: 0.75rem;
}

.datepicker-cell, .datepicker .days .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-cell {
  height: 2.25rem;
}
.datepicker-cell:not(.day) {
  flex-basis: 25%;
  height: 4.5rem;
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #e9e9e9;
}
.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: hsl(217, 71%, 53%);
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: gainsboro;
}
.datepicker-cell.prev:not(.disabled), .datepicker-cell.next:not(.disabled) {
  color: hsl(0, 0%, 48%);
}
.datepicker-cell.prev.selected, .datepicker-cell.next.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: hsl(0, 0%, 96%);
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #efefef;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e9e9e9;
}
.datepicker-cell.today:not(.selected) {
  background-color: hsl(171, 100%, 41%);
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #00ccad;
}
.datepicker-cell.range-end:not(.selected), .datepicker-cell.range-start:not(.selected) {
  background-color: #b8b8b8;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected), .datepicker-cell.range-start.focused:not(.selected) {
  background-color: #b3b3b3;
}
.datepicker-cell.range-start:not(.range-end) {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end:not(.range-start) {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  border-radius: 0;
  background-color: gainsboro;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d7d7d7;
}
.datepicker-cell.range.disabled {
  color: #c6c6c6;
}
.datepicker-cell.range.focused {
  background-color: #d1d1d1;
}

.datepicker-input.in-edit {
  border-color: #276bda;
}
.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(39, 107, 218, 0.2);
}

/* ******************************************* */
.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;
}

/* ******************************************* */
.station-empty-msg {
  padding: 50px 0;
  font-size: var(--fs-h6);
  text-align: center;
}

.station__ttl {
  padding: 13px 20px 23px;
  color: var(--color-base);
  background: var(--color-accent);
  text-align: center;
}
@media screen and (min-width: 981px) {
  .station__ttl {
    padding: 38px 20px 37px;
  }
}

.station__ttl-sub {
  font-size: var(--fs-sp-h5);
}
@media screen and (min-width: 981px) {
  .station__ttl-sub {
    font-size: var(--fs-h4);
  }
}

.station__ttl-main {
  margin-top: 4px;
  font-size: var(--fs-sp-h4);
}
@media screen and (min-width: 981px) {
  .station__ttl-main {
    font-size: var(--fs-h2);
  }
}

@media screen and (min-width: 981px) {
  .station-info__wrap {
    display: flex;
    gap: 30px;
    margin: 70px auto 0;
    padding-bottom: 80px;
    width: 920px;
  }
}

.station__map {
  padding-top: 54px;
}
@media screen and (min-width: 981px) {
  .station__map {
    padding: 0;
  }
}
.station__map iframe {
  margin: 0 auto;
  width: calc(100% - 40px) !important;
  height: 300px !important;
}
@media screen and (min-width: 981px) {
  .station__map iframe {
    width: 477px !important;
    height: 477px !important;
  }
}

.station__info {
  display: flex;
  flex-direction: column;
  padding: 0 20px 50px;
}
@media screen and (min-width: 981px) {
  .station__info {
    flex: 1;
  }
}
.station__info .info__wrap {
  margin-top: 30px;
}
@media screen and (min-width: 981px) {
  .station__info .info__wrap {
    margin-top: 0;
  }
  .station__info .info__wrap:not(:first-of-type) {
    margin-top: 30px;
  }
}
.station__info .info__ttl {
  font-size: var(--fs-sp-h5);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .station__info .info__ttl {
    font-size: var(--fs-h6);
  }
}
.station__info .info__detail {
  font-size: var(--fs-normal);
  font-weight: 500;
  white-space: pre-wrap;
}
.station__info .info__img {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  width: 100%;
}
.station__info .info__img .img__item {
  width: calc(20% - 8px);
}
.station__info .info__img .item__sumnail {
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  max-height: 120px;
  background: transparent;
}
.station__info .info__img .item__sumnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.station__info .station__img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.station__info .station__img-overlay .station__img-modal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.station__info .station__img-overlay .img-modal__close {
  position: relative;
  border: 0;
  width: 45px;
  height: 45px;
  background: transparent;
  overflow: hidden;
  text-indent: -999px;
}
.station__info .station__img-overlay .img-modal__close::before, .station__info .station__img-overlay .img-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: -2px;
  margin-left: -20px;
  width: 40px;
  height: 3px;
  background: #fff;
}
.station__info .station__img-overlay .img-modal__close::before {
  transform: rotate(-45deg);
}
.station__info .station__img-overlay .img-modal__close::after {
  transform: rotate(45deg);
}
.station__info .station__img-overlay .img-modal__img {
  position: relative;
  cursor: auto;
}
.station__info .station__img-overlay .img-modal__img img {
  max-width: calc(100vw - 90px);
  min-width: 120px;
  max-height: calc(100vh - 225px);
  min-height: 120px;
  background: #fff;
}
.station__info .station__more-info {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.station__info .station__more-info a {
  display: block;
  border: 2px solid var(--color-accent);
  border-radius: 40px;
  width: 292px;
  height: 40px;
  line-height: 40px;
  background: var(--color-base);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: color 0.5s ease, background 0.5s ease;
}
.station__info .station__more-info a:hover {
  background: var(--color-accent);
  color: var(--color-base);
}

.station__use-date .use-date__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.station__use-date .use-date__start-date,
.station__use-date .use-date__end-date {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.station__use-date .use-date__start-date dt,
.station__use-date .use-date__end-date dt {
  margin-right: 8px;
  margin-bottom: 1px;
  font-size: var(--fs-small);
  font-weight: bold;
}
.station__use-date .use-date__start-date dd,
.station__use-date .use-date__end-date dd {
  display: flex;
}
.station__use-date .use-date__start-date dd select, .station__use-date .use-date__start-date dd input,
.station__use-date .use-date__end-date dd select,
.station__use-date .use-date__end-date dd input {
  font-size: var(--fs-normal);
}
.station__use-date .use-date__start-date dd .start-date,
.station__use-date .use-date__start-date dd .end-date,
.station__use-date .use-date__end-date dd .start-date,
.station__use-date .use-date__end-date dd .end-date {
  margin-right: 4px;
  padding: 0 5px;
  border: 1px solid var(--color-base-txt);
  border-radius: 5px;
  width: 160px;
}
.station__use-date .use-date__start-date dd .start__hour,
.station__use-date .use-date__start-date dd .end__hour,
.station__use-date .use-date__end-date dd .start__hour,
.station__use-date .use-date__end-date dd .end__hour {
  margin-right: 4px;
}
.station__use-date .use-date__start-date dd .start__hour,
.station__use-date .use-date__start-date dd .end__hour,
.station__use-date .use-date__start-date dd .start__min,
.station__use-date .use-date__start-date dd .end__min,
.station__use-date .use-date__end-date dd .start__hour,
.station__use-date .use-date__end-date dd .end__hour,
.station__use-date .use-date__end-date dd .start__min,
.station__use-date .use-date__end-date dd .end__min {
  border: 1px solid var(--color-base-txt);
  border-radius: 5px;
}
.station__use-date .use-date__info {
  margin-top: 10px;
  padding: 0 25px;
  font-size: var(--fs-normal);
  text-align: center;
}
@media screen and (max-width: 980px) {
  .station__use-date .use-date__info {
    text-align: left;
  }
}
.station__use-date .use-date__check-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 981px) {
  .station__use-date .use-date__check-btn {
    grid-column: 1/3;
  }
}
.station__use-date .use-date__check-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-accent);
  border-radius: 40px;
  width: 292px;
  height: 40px;
  background: var(--color-base);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: color 0.5s ease, background 0.5s ease;
}
.station__use-date .use-date__check-btn button:hover {
  background: var(--color-accent);
  color: var(--color-base);
}

.datepicker-picker {
  background: var(--color-base);
}
@media screen and (max-width: 980px) {
  .datepicker-picker {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.datepicker-picker .datepicker-header {
  padding: 5px;
  background: var(--color-main);
}
.datepicker-picker .datepicker-header .datepicker-controls {
  display: flex;
  align-items: center;
}
.datepicker-picker .datepicker-header .datepicker-controls .view-switch {
  flex: 1;
  color: var(--color-base);
  background: var(--color-main);
  font-size: var(--fs-small);
}
.datepicker-picker .datepicker-header .datepicker-controls .prev-button, .datepicker-picker .datepicker-header .datepicker-controls .next-button {
  flex: none;
  padding: 0;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  color: var(--color-main);
  background: var(--color-base);
  font-size: var(--fs-normal);
}

.datepicker-view {
  width: 20rem;
}
@media screen and (max-width: 980px) {
  .datepicker-view {
    width: 100%;
  }
}
.datepicker-view .days-of-week {
  padding: 6px 0;
}
.datepicker-view .days-of-week .dow {
  font-size: var(--fs-small);
}
.datepicker-view .datepicker-cell {
  height: 2.5rem;
  font-size: var(--fs-small);
}

/* ******************************************* */
.usage-info {
  margin-top: 30px;
  padding: 45px 20px 60px;
  background: var(--color-unit-bg);
}
@media screen and (min-width: 981px) {
  .usage-info {
    padding: 60px 20px 60px;
  }
}
.usage-info .usage-info__ttl {
  text-align: center;
}
.usage-info .usage-info__ttl-sub {
  color: var(--color-accent);
  font-size: var(--fs-sp-h-sub);
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .usage-info .usage-info__ttl-sub {
    font-size: var(--fs-h-sub);
  }
}
.usage-info .usage-info__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) {
  .usage-info .usage-info__ttl-main {
    font-size: var(--fs-h3);
  }
}
.usage-info .usage-info__car-list {
  margin-top: 30px;
}
.usage-info .car-list__item {
  padding: 10px 16px 20px;
  border-radius: 10px;
  background: var(--color-base);
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__item {
    padding: 40px 60px 40px;
  }
}
.usage-info .car-list__item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 940px;
  }
}
.usage-info .car-list__item__price {
  margin-bottom: 10px;
  color: #e00;
  font-size: var(--fs-h3);
  font-weight: bold;
}
.usage-info .car-list__item__img {
  position: relative;
  margin: 0 auto;
  padding: 20px 0 30px;
  width: 140px;
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__item__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 267px;
  }
}
.usage-info .car-list__item__img img {
  object-fit: contain;
}
.usage-info .car-list__item__img .coming-soon-msg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: var(--fs-small);
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 8px #fff;
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__item__img .coming-soon-msg {
    font-size: var(--fs-normal);
  }
}
.usage-info .car-list__item__table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--fs-small);
}
.usage-info .car-list__item__table th, .usage-info .car-list__item__table td {
  padding: 4px 0;
  vertical-align: top;
}
.usage-info .car-list__item__table tr:not(:last-child) th, .usage-info .car-list__item__table tr:not(:last-child) td {
  border-bottom: 2px solid #d9d9d9;
}
.usage-info .car-list__item__table th {
  padding-right: 15px;
  white-space: nowrap;
}
.usage-info .car-list__item__table td {
  font-weight: 500;
}
.usage-info .car-list__item__table .table__price.per-time {
  color: #f00;
}
.usage-info .car-list__check-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 981px) {
  .usage-info .car-list__check-btn {
    grid-column: 1/3;
  }
}
.usage-info .car-list__check-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-accent);
  border-radius: 40px;
  width: 292px;
  height: 40px;
  background: var(--color-base);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: color 0.5s ease, background 0.5s ease;
}
.usage-info .car-list__check-btn button:hover {
  background: var(--color-accent);
  color: var(--color-base);
}
.usage-info .usage-info__small {
  display: block;
  margin-top: 15px;
  font-size: var(--fs-small);
  font-weight: 500;
}
@media screen and (min-width: 981px) {
  .usage-info .usage-info__small {
    margin-top: 30px;
    text-align: center;
  }
}

/* ******************************************* */
.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;
}

/* ******************************************* */
.main-footer__wrap {
  margin-top: 50px;
}

/* ******************************************* */
.loading__overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
}

.loading {
  width: 50px;
  aspect-ratio: 1;
  --_c:no-repeat radial-gradient(farthest-side,#fff 92%,#0000);
  background: var(--_c) top, var(--_c) left, var(--_c) right, var(--_c) bottom;
  background-size: 12px 12px;
  animation: l7 1s infinite;
}

@keyframes l7 {
  to {
    transform: rotate(0.5turn);
  }
}