@charset "UTF-8";
/* stylelint-disable-next-line value-keyword-case */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

body {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, "Hiragino San", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #231815; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 8px;
  width: 100%;
  height: 44px;
  z-index: 50;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
  transform: translateY(0); }
  .header--unpinned {
    transform: translateY(-150%); }
  .header__left {
    flex: 1 1 0%;
    height: 100%;
    display: flex;
    justify-content: flex-start; }
    .header__left--two {
      flex: 0 1 auto; }
  .header__center {
    display: flex;
    justify-content: center; }
  .header__right {
    height: 100%;
    flex: 1 1 0%;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .header__button--with-text {
    text-decoration: none;
    display: flex;
    align-items: center; }
    .header__button--with-text .header__icon {
      width: auto; }
  .header__button-text {
    color: #0072ba;
    font-size: 15px;
    transform: translateX(-12px); }
  .header__icon {
    width: 100%;
    height: 100%; }
  .header__right .header__button:not(:last-child) {
    margin-right: 10px; }
  .header__logo {
    width: 110px;
    height: 30px; }
  .header__title {
    font-size: 15px;
    font-weight: bold;
    color: #231815; }
  .header__action {
    margin-right: 10px;
    color: #0072ba;
    font-size: 15px;
    text-decoration: none; }
  .header__search {
    margin: 4px 7px 4px 10px;
    width: 100%; }

.container {
  padding-top: 44px;
  padding-bottom: 55px;
  min-height: 100vh; }
  .container--action-footer {
    padding-bottom: calc(55px + 65px); }
  .container--no-header {
    padding-top: 0; }
  .container--no-footer {
    padding-bottom: 1px; }
    .container--no-footer.container--action-footer {
      padding-bottom: 65px; }
  .container--background-gray {
    background-color: #f5f5f5; }
  .container--background-gray-2 {
    background-color: #f0f0f0; }

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
  z-index: 10;
  transition: transform 0.3s ease;
  transform: translateY(0);
  background-color: #f7f7f7;
  box-shadow: 0 -0.5px 0 #0000004d;
  display: flex; }
  .footer--unpinned {
    transform: translateY(150%); }
  .footer__tab {
    flex: 1 1 0%;
    padding: 7px 0 0 0; }
  .footer__icon {
    width: 100%;
    height: 100%; }

.action-footer {
  position: fixed;
  bottom: 55px;
  padding: 8px 20px;
  width: 100%;
  height: 65px;
  background-color: #fff;
  box-shadow: 0 -3px 6px #0000001a;
  transition: bottom 0.3s ease;
  display: flex;
  align-items: center; }

.container--no-footer .action-footer {
  bottom: 0; }

.tab {
  position: fixed;
  width: 100%;
  height: 48px;
  display: flex;
  box-shadow: 0 1px 1px #00000029;
  background-color: #fff;
  z-index: 50; }
  .tab__item {
    flex: 1 1 0%;
    line-height: 16px; }
  .tab__item-link {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: solid 4px transparent;
    font-size: 13px;
    font-weight: normal;
    color: #6c6c6c;
    text-decoration: none; }
  .tab__item--active .tab__item-link {
    border-image: linear-gradient(90deg, #0999da 0%, #0d995f 48%, #fcd001 100%) 1/0 0 4px 0/0 stretch;
    color: #0072ba;
    font-weight: bold; }

.tab-content {
  padding-top: 48px; }

.banner {
  display: flex;
  justify-content: center; }
  .banner__link {
    margin: 30px auto; }
  .banner__image {
    padding: 15px 10px;
    background-color: #fffede; }

.button, .home__button, .home__button--bold {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 24px;
  border: none;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  background: #0072ba !important;
  color: #fff; }
  .button:focus, .home__button:focus, .home__button--bold:focus {
    outline: none; }
  .button--secondary, .home__button, .home__button--bold {
    background: #f5f5f5;
    color: #0072ba; }
  .button--disabled, .button:disabled, .home__button:disabled, .home__button--bold:disabled {
    opacity: 0.6; }
  .button--disabled-outline {
    background: #fff;
    border: 2px solid #ccc;
    color: #ccc; }
    .button--disabled-outline:disabled {
      opacity: 1; }

.cookie-footer {
  position: fixed;
  bottom: 55px;
  padding: 30px 20px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -3px 6px #0000001a;
  transition: bottom 0.3s ease; }
  .cookie-footer__message {
    font-size: 13px;
    color: #231815;
    line-height: 22px;
    letter-spacing: -0.31px; }
  .cookie-footer__button {
    margin: 15px auto; }
  .cookie-footer__link {
    margin: 30px auto auto;
    display: block;
    width: 100%;
    border-radius: 24px;
    border: none;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    color: #0072ba; }

.container--no-footer .cookie-footer {
  bottom: 0; }

.ui-datepicker .ui-datepicker-current.ui-priority-secondary {
  opacity: 1;
  font-weight: bold; }

.form .textbox:not(:last-child) {
  margin-bottom: 15px; }

.list-group {
  margin-left: 24px; }
  .list-group__item {
    padding-right: 24px;
    font-size: 15px;
    list-style: none;
    width: 100%;
    height: 70px;
    border-bottom: solid thin #e6e6e6;
    display: flex;
    align-items: center; }
  .list-group__item-link {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #231815;
    text-decoration: none; }

.modal {
  display: none;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 24, 21, 0.5);
  padding: 35px;
  z-index: 9999; }
  .modal--open {
    display: flex;
    justify-content: space-around;
    align-items: center; }
  .modal__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    cursor: default; }
  .modal__content, .route-modal__content {
    min-width: 280px;
    position: relative;
    background-color: #fff;
    padding: 30px 20px 22px 20px;
    border-radius: 16px; }
  .modal__text, .ticket-change-complete__title {
    font-size: 20px;
    line-height: 34px;
    color: #6c6c6c; }
  .modal__button {
    display: flex;
    flex-direction: row;
    margin-top: 20px; }
    .modal__button .button:not(:last-child), .modal__button .home__button:not(:last-child), .modal__button .home__button--bold:not(:last-child) {
      margin-right: 12px; }

.plus-minus-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .plus-minus-input__minus {
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/images/ic_common_minus_active.svg"); }
    .plus-minus-input__minus--disabled {
      background: url("/images/ic_common_minus.svg"); }
  .plus-minus-input__plus {
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url("/images/ic_common_plus_active.svg"); }
    .plus-minus-input__plus--disabled {
      background: url("/images/ic_common_plus.svg"); }

.search-box {
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  padding: 0;
  width: 100%;
  height: 36px; }
  .search-box__icon {
    margin: auto 8px; }
  .search-box__textbox {
    border: none;
    width: 100%;
    background-color: transparent;
    color: #231815; }
    .search-box__textbox:focus {
      outline: none; }
  .search-box ::placeholder {
    color: #999; }

.sidemenu {
  position: relative;
  /* チェックがついたら表示させる */ }
  .sidemenu__checkbox {
    display: none; }
  .sidemenu__overlay {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #231815;
    opacity: 0;
    transition: 0.3s ease-in-out; }
  .sidemenu__content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 80%;
    height: 100%;
    background: #fff;
    transition: 0.3s ease-in-out;
    transform: translateX(-105%);
    color: #231815; }
  .sidemenu__top {
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    color: #231815;
    text-decoration: none; }
  .sidemenu__user {
    margin-left: 15px; }
  .sidemenu__user-image {
    width: 44px;
    height: 44px; }
  .sidemenu__group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 40px; }
  .sidemenu__item {
    padding: 5px 0 0 15px;
    font-size: 15px; }
  .sidemenu__link {
    color: #231815;
    text-decoration: none;
    padding: 10px 15px;
    display: block; }
  .sidemenu__item .sidemenu__link {
    border-bottom: solid 1px #e6e1e1;
    /* アイテム間の区切り線 */ }
  .sidemenu__checkbox:checked ~ .sidemenu__overlay {
    display: block;
    opacity: 0.5; }
  .sidemenu__checkbox:checked ~ .sidemenu__content {
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15); }

.textbox__textbox {
  width: 100%;
  height: 45px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center; }

.textbox__label {
  padding: 0 15px;
  width: 80px;
  color: #6c6c6c;
  font-size: 12px;
  text-align: left; }

.textbox__input {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  color: #231815;
  font-size: 16px; }
  .textbox__input:focus {
    outline: none; }
  .textbox__input::placeholder {
    color: #999; }

.textbox__error {
  margin-bottom: 5px;
  color: #e0502e;
  font-size: 13px;
  line-height: 12px; }

.textbox--transparent .textbox__textbox {
  border: 1px solid #ccc;
  background-color: transparent; }

.tile {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -7.5px;
  margin-right: -7.5px; }
  .tile__image {
    vertical-align: bottom;
    width: 100%;
    border-radius: 8px;
    object-fit: cover; }
  .tile a {
    text-decoration: none; }
  .tile__list-item {
    list-style: none;
    margin: 5px 7.5px; }
  .tile__box {
    width: 100%;
    text-decoration: none; }
  .tile__summary {
    margin: 10px 0;
    font-size: 13px;
    line-height: 20px;
    height: 40px;
    color: #6c6c6c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; }
    .tile__summary--one-line {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      height: auto;
      margin-bottom: 0; }

.radio-group {
  list-style: none;
  background-color: #fff; }
  .radio-group .radio-item {
    padding: 15px;
    border-bottom: solid 1px #ccc; }
    .radio-group .radio-item:first-child {
      border-top: solid 1px #ccc; }
    .radio-group .radio-item input[type=radio] {
      position: absolute;
      left: 0;
      z-index: -1;
      width: 1rem;
      height: 1.25rem;
      opacity: 0; }
      .radio-group .radio-item input[type=radio]:checked ~ label::after {
        display: block;
        float: right;
        width: 35px;
        height: 35px;
        content: "";
        background: url("/images/common_ic_list_check.svg") no-repeat;
        margin-top: -8px;
        margin-right: -5px; }
      .radio-group .radio-item input[type=radio] ~ label {
        display: block; }

ul.menu-list {
  list-style: none; }
  ul.menu-list li.menu-item {
    margin-left: 10px;
    margin-right: 10px; }
    ul.menu-list li.menu-item .icon {
      display: block;
      width: 56px;
      height: 56px;
      float: left; }
      ul.menu-list li.menu-item .icon-back-lg {
        background-size: 50px 50px; }
    ul.menu-list li.menu-item label {
      display: block;
      border-bottom: solid 1px #e6e6e6;
      margin-left: 56px;
      height: 56px;
      line-height: 56px;
      font-size: 15px; }
      ul.menu-list li.menu-item label.primary {
        color: #0072ba;
        font-weight: bold; }
    ul.menu-list li.menu-item .btn-right {
      float: right; }

.icon {
  background-position: center;
  background-repeat: no-repeat; }
  .icon-common-next {
    background-image: url(/images/ic_common_next.svg); }
  .icon-favorite {
    background-image: url(/images/map_ic_favorite.svg); }
  .icon-sightseeing {
    background-image: url(/images/map_ic_sightseeing.svg); }
  .icon-gourmet {
    background-image: url(/images/map_ic_gourmet.svg); }
  .icon-okonomiyaki {
    background-image: url(/images/map_ic_okonomiyaki.svg); }
  .icon-traffic {
    background-image: url(/images/map_ic_traffic.svg); }
  .icon-shopping {
    background-image: url(/images/map_ic_shopping.svg); }
  .icon-list-sightseeing-experience {
    background-image: url(/images/map_ic_list_sightseeing_experience.svg); }
  .icon-list-sightseeing-seeing {
    background-image: url(/images/map_ic_list_sightseeing_seeing.svg); }
  .icon-list-sightseeing-informationoffice {
    background-image: url(/images/map_ic_list_sightseeing_informationoffice.svg); }
  .icon-list-gourmet-bar {
    background-image: url(/images/map_ic_list_gourmet_bar.svg); }
  .icon-list-gourmet-caffe {
    background-image: url(/images/map_ic_list_gourmet_caffe.svg); }
  .icon-list-gourmet-sonota {
    background-image: url(/images/map_ic_list_gourmet_sonota.svg); }
  .icon-list-gourmet-chinese {
    background-image: url(/images/map_ic_list_gourmet_chinese.svg); }
  .icon-list-gourmet-yoshoku {
    background-image: url(/images/map_ic_list_gourmet_yoshoku.svg); }
  .icon-list-gourmet-washoku {
    background-image: url(/images/map_ic_list_gourmet_washoku.svg); }
  .icon-list-gourmet-okonomiyaki-mono {
    background-image: url(/images/map_ic_list_gourmet_okonomiyaki_mono.svg); }
  .icon-list-traffic-cycle {
    background-image: url(/images/map_ic_list_traffic_cycle.svg); }
  .icon-list-traffic-car {
    background-image: url(/images/map_ic_list_traffic_car.svg); }
  .icon-list-traffic-mono {
    background-image: url(/images/map_ic_list_traffic_mono.svg); }
  .icon-list-shopping-convenience {
    background-image: url(/images/map_ic_list_shopping_convenience.svg); }
  .icon-list-shopping-mono {
    background-image: url(/images/map_ic_list_shopping_mono.svg); }
  .icon-list-sonota {
    background-image: url(/images/map_ic_list_sonota.svg); }
  .icon-list-hotel {
    background-image: url(/images/map_ic_list_hotel.svg); }
  .icon-list-wifi {
    background-image: url(/images/map_ic_list_wifi.svg); }
  .icon-list-hotspring {
    background-image: url(/images/map_ic_list_hotspring.svg); }
  .icon-list-locker {
    background-image: url(/images/map_ic_list_locker.svg); }
  .icon-yoyaku-traffic {
    background-image: url(/images/yoyaku_ic_traffic.svg); }
  .icon-yoyaku-sightseeing {
    background-image: url(/images/yoyaku_ic_sightseeing.svg); }
  .icon-yoyaku-gourmet {
    background-image: url(/images/yoyaku_ic_gourmet.svg); }
  .icon-yoyaku-hotel {
    background-image: url(/images/yoyaku_ic_hotel.svg); }
  .icon-yoyaku-ekiben {
    background-image: url(/images/yoyaku_ic_ekiben.svg); }
  .icon-yoyaku-taxi {
    background-image: url(/images/yoyaku_ic_taxi.svg); }
  .icon-yoyaku-next {
    background-image: url(/images/yoyaku_ic_next.svg); }
  .icon-yoyaku-link {
    background-image: url(/images/yoyaku_ic_link.svg); }
  .icon-yoyaku-ticket {
    background-image: url(/images/yoyaku_ic_ticket.svg); }
  .icon-yoyaku-car {
    background-image: url(/images/yoyaku_ic_car.svg); }
  .icon-yoyaku-bike {
    background-image: url(/images/yoyaku_ic_bike.svg); }
  .icon-yoyaku-e5489 {
    background-image: url(/images/yoyaku_ic_e5489.svg); }
  .icon-yoyaku-ex {
    background-image: url(/images/yoyaku_ic_ex.svg); }
  .icon-yoyaku-japantaxi {
    background-image: url(/images/yoyaku_ic_japantaxi.svg); }
  .icon-yoyaku-denno {
    background-image: url(/images/yoyaku_ic_denno.svg); }
  .icon-buttom-sightseeing {
    background-image: url(/images/map_ic_sightseeing_experience.svg); }
  .icon-buttom-seeing {
    background-image: url(/images/map_ic_sightseeing_seeing.svg); }
  .icon-buttom-information-office {
    background-image: url(/images/map_ic_sightseeing_informationoffice.svg); }
  .icon-buttom-gourmet-bar {
    background-image: url(/images/map_ic_gourmet_bar.svg); }
  .icon-buttom-gourmet-caffe {
    background-image: url(/images/map_ic_gourmet_caffe.svg); }
  .icon-buttom-gourmet-sonota {
    background-image: url(/images/map_ic_gourmet_sonota.svg); }
  .icon-buttom-gourmet-chinese {
    background-image: url(/images/map_ic_gourmet_chinese.svg); }
  .icon-buttom-gourmet-yoshoku {
    background-image: url(/images/map_ic_gourmet_yoshoku.svg); }
  .icon-buttom-gourmet-washoku {
    background-image: url(/images/map_ic_gourmet_washoku.svg); }
  .icon-buttom-gourmet-okonomiyaki {
    background-image: url(/images/map_ic_gourmet_okonomiyaki.svg); }
  .icon-buttom-gourmet-cycle {
    background-image: url(/images/map_ic_gourmet_cycle.svg); }
  .icon-buttom-traffic-car {
    background-image: url(/images/map_ic_traffic_car.svg); }
  .icon-buttom-traffic-traffic {
    background-image: url(/images/map_ic_traffic_traffic.svg); }
  .icon-buttom-shopping-convenience {
    background-image: url(/images/map_ic_shopping_convenience.svg); }
  .icon-buttom-shopping-shopping {
    background-image: url(/images/map_ic_shopping_shopping.svg); }
  .icon-buttom-sonota-hotel {
    background-image: url(/images/map_ic_sonota_hotel.svg); }
  .icon-buttom-sonota-wifi {
    background-image: url(/images/map_ic_sonota_wifi.svg); }
  .icon-buttom-sonota-hotspring {
    background-image: url(/images/map_ic_sonota_hotspring.svg); }
  .icon-buttom-sonota-locker {
    background-image: url(/images/map_ic_sonota_locker.svg); }

.item-map {
  position: relative;
  width: 100%;
  height: 136px;
  border-radius: 8px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center; }
  .item-map__small-pin {
    width: 24px;
    height: 28px; }
  .item-map__button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    width: 80px;
    height: 20px;
    border-radius: 10px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center; }
    .item-map__button:focus {
      outline: none; }

.loading {
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff6;
  z-index: 9999;
  display: flex;
  justify-content: space-around; }
  .loading__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0; }
  .loading__image {
    margin-top: 200px;
    width: 35px;
    height: 35px; }

.toast {
  position: fixed;
  bottom: 144px;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  transition: bottom 0.3s ease;
  background-color: #0072ba;
  min-height: 70px;
  display: flex;
  align-items: center;
  z-index: 10; }
  .container--no-footer .toast {
    bottom: 89px; }
  .toast__icon {
    margin-left: 44px;
    margin-right: 20px;
    float: left; }
  .toast__text {
    color: #fff;
    font-size: 16px;
    margin-right: 26px;
    margin-top: 14px;
    margin-bottom: 14px; }

.example-example {
  margin: 15px; }
  .example-example .button, .example-example .home__button, .example-example .home__button--bold {
    margin: 15px 0; }

.home__button, .home__button--bold {
  margin: 6px; }

.home__button--bold {
  font-weight: bold; }

.home__button-title {
  margin: 14px auto; }

.home__button-space {
  margin: 42px auto; }

.home__button-space-item {
  margin: 24px auto; }

.home__fixed {
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 50; }

.home__container {
  padding-top: 92px; }
  .home__container--information {
    padding-top: 92px; }

.home__content {
  margin: 13px 20px; }

.home__area-guide-image {
  width: 100%; }

.home-banner {
  display: flex;
  justify-content: center;
  height: 60px;
  transition: all 300ms 0s ease;
  overflow: hidden; }
  .home-banner__link {
    width: 100%;
    height: 60px;
    margin: 0;
    background-color: #fffede;
    display: flex;
    justify-content: center; }
  .home-banner__image {
    padding: 0; }

.container--no-footer .home-banner {
  transition: all 0.5s;
  height: 0; }

@keyframes slidein {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-30px); } }

.home-card__heading {
  color: #231815;
  font-size: 16px;
  font-weight: bold;
  margin: 17px auto; }

.home-card__genre-header {
  margin: 17px auto 12px;
  display: grid;
  grid-template-columns: 1fr max-content;
  font-size: 14px;
  grid-gap: 0; }
  .home-card__genre-header-link {
    color: #0072ba;
    text-align: right;
    align-self: end;
    text-decoration: none; }
    .home-card__genre-header-link img {
      object-fit: fill;
      vertical-align: middle; }
  .home-card__genre-header-title, .home-card__genre-header-title--bold {
    font-size: 16px; }
    .home-card__genre-header-title--bold {
      font-weight: bold; }
  .home-card__genre-header-provided {
    height: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    font-size: 9px; }
  .home-card__genre-header-holiday {
    margin: 0 10px; }

.home-carousel {
  overflow-x: auto;
  padding: 0;
  margin-right: -20px;
  display: flex;
  justify-content: flex-start; }
  .home-carousel > li {
    list-style: none; }
    .home-carousel > li:not(:last-child) {
      margin-right: 16px; }
    .home-carousel > li:last-child {
      padding-right: 16px; }
  .home-carousel a {
    text-decoration: none; }
  .home-carousel__image {
    vertical-align: bottom;
    width: 150px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover; }
  .home-carousel__box {
    width: 150px;
    position: relative;
    text-decoration: none; }
  .home-carousel__label {
    position: absolute;
    left: 7px;
    top: 7px;
    font-size: 11px;
    border-radius: 10px;
    background: #0072ba;
    padding: 4px 7px;
    color: #e5e5e5; }
  .home-carousel__summary {
    margin: 10px 0; }
  .home-carousel__summary-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 13px;
    color: #231815;
    font-weight: bold; }
  .home-carousel__summary-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 13px;
    color: #6c6c6c; }
  .home-carousel__summary-location {
    font-size: 12px;
    color: #aaa;
    display: flex; }
  .home-carousel__summary-price {
    font-size: 12px;
    color: #0072ba;
    font-weight: bold; }
    .home-carousel__summary-price--gray {
      color: #aaa; }
    .home-carousel__summary-price--red {
      color: #e0502e; }

.home__container--information .home-container-space__information-space {
  height: 56px; }

.container--no-footer .home-container-space__banner-space {
  height: 0; }

.container:not(.container--no-footer) .home-container-space__banner-space {
  height: 60px;
  transition: all 300ms 0s ease;
  overflow: hidden; }

.home-model-list {
  display: flex;
  width: 100%;
  margin: 18px 0; }
  .home-model-list__right {
    width: 100%;
    margin-left: 6.5px; }
  .home-model-list__left {
    width: 100%;
    margin-right: 6.5px;
    position: relative; }
    .home-model-list__left::before {
      content: "";
      display: block;
      padding-top: 75%; }
  .home-model-list__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    border-radius: 10px; }
  .home-model-list__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #231815; }
  .home-model-list__detail {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 13px;
    color: #6c6c6c; }

.home-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3px;
  row-gap: 3px;
  margin-bottom: 30px; }
  .home-grid a {
    text-decoration: none; }
  .home-grid__image, .home-grid__image--radius {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover; }
    .home-grid__image--radius {
      border-radius: 5px; }
  .home-grid__list-item {
    list-style: none;
    position: relative; }
    .home-grid__list-item::before {
      content: "";
      display: block;
      padding-top: 100%; }
    .home-grid__list-item--filter::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
      opacity: 0.3; }
    .home-grid__list-item--filter .home-grid__summary {
      z-index: 1; }
  .home-grid__box {
    width: 100%;
    text-decoration: none; }
  .home-grid__summary {
    position: absolute;
    left: 5px;
    bottom: 5px;
    font-size: 13px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; }
  .home-grid--not-data {
    color: #6c6c6c;
    text-align: center;
    margin: 15px auto 32px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center; }

.home-information__body {
  color: #e0502e;
  background-color: rgba(226, 93, 93, 0.1);
  height: 50px;
  margin-bottom: 6px;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center; }

.home-information__link {
  text-decoration: none; }

.home-information__icon {
  margin: 8px; }

.home-information-detail {
  width: 100%; }
  .home-information-detail__title {
    margin: 16px 24px;
    font-size: 14px; }
  .home-information-detail__detail {
    margin: 20px 24px;
    font-size: 14px; }
  .home-information-detail__hr {
    margin-left: 24px;
    height: 1px;
    background-color: #e6e6e6;
    border: none; }
  .home-information-detail__text {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, "Hiragino San", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Yu Gothic", sans-serif;
    white-space: pre-wrap; }

.home-list {
  list-style: none; }
  .home-list__link {
    text-decoration: none; }
  .home-list__row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 56px;
    margin-left: 20px;
    border-bottom: 1px solid #e6e6e6;
    color: #231815; }
    .home-list__row--border-none {
      border-bottom: none; }

.home-spot-search {
  margin: 4px 16px; }

.home-weather-select-map {
  width: 100%;
  height: calc(100% - 44px);
  position: relative; }
  .home-weather-select-map__image {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto; }

.home-not-data, .home-not-data__carousel_group {
  height: calc(100% - 44px);
  background-color: #f5f5f5;
  color: #6c6c6c;
  padding-bottom: 20%;
  padding-left: 26px;
  padding-right: 26px;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .home-not-data--home-content {
    height: calc(100% - 44px - 44px - 48px); }
  .home-not-data--full-content {
    padding-bottom: 50%; }
  .home-not-data__carousel_group {
    height: 170px;
    margin-right: -20px;
    margin-left: -20px; }
    .home-not-data__carousel_group--high {
      height: 257px; }

.home-weather-detail__latest {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 130px 130px;
  grid-column-gap: 35px;
  justify-content: center;
  height: 130px; }
  .home-weather-detail__latest-day {
    font-size: 0;
    color: #231815;
    text-align: center; }
  .home-weather-detail__latest-relative-date {
    font-size: 12px; }
  .home-weather-detail__latest-day-text {
    font-size: 17px; }
  .home-weather-detail__latest-content {
    display: grid;
    grid-template-columns: 60% 40%; }
  .home-weather-detail__latest-rainy-percent {
    display: flex;
    justify-content: center;
    font-size: 15px;
    color: #6c6c6c; }
  .home-weather-detail__latest-temperature {
    text-align: center;
    font-size: 30px;
    margin: 4.5px; }
  .home-weather-detail__latest-wrather-icon {
    width: 75px;
    height: 72px; }
  .home-weather-detail__latest-temperature-hr {
    background-color: #ccc;
    height: 1px;
    border: none; }

.home-weather-detail__hr {
  background-color: #f0f0f0;
  height: 5px;
  border: none; }

.home-weather-detail__week {
  margin: 15px 10px;
  font-size: 30px; }
  .home-weather-detail__week-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse; }
  .home-weather-detail__week-table-head {
    height: 30px;
    text-align: center;
    color: #6c6c6c;
    font-size: 12px; }
  .home-weather-detail__week-table-th {
    font-weight: normal; }
  .home-weather-detail__week-table-body {
    height: 56px;
    text-align: center; }
  .home-weather-detail__week-table-day {
    color: #6c6c6c;
    font-size: 13px;
    border-bottom: thin solid #e6e6e6; }
  .home-weather-detail__week-table-data {
    color: #231815;
    font-size: 15px;
    border-bottom: thin solid #e6e6e6; }
  .home-weather-detail__week-wrather-icon {
    width: 72px;
    height: 56px; }

.spot-image__main {
  background-color: #000;
  height: 100%;
  width: 100%;
  display: flex;
  position: relative; }

.spot-image__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain; }

.spot-image__back-icon {
  padding: 16px;
  position: absolute; }

.spot-image__back-link {
  z-index: 20; }

.spot-image__user {
  position: absolute;
  margin: 20px;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center; }
  .spot-image__user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover; }
  .spot-image__user-name {
    font-size: 13px;
    color: #fff;
    margin: 10px; }

.spot-detail-info__box {
  position: relative; }

.spot-detail-info__image {
  object-fit: cover;
  width: 100%;
  height: 150px; }

.spot-detail-info__label {
  position: absolute;
  height: 20px;
  right: 0;
  bottom: 7px;
  font-size: 9px;
  border-radius: 10px 0 0 10px;
  background-color: #fff;
  opacity: 0.7;
  color: #231815;
  display: flex;
  align-items: center;
  padding-right: 10px;
  padding-left: 10px; }

.spot-detail-info__label-holiday {
  margin-left: 12px; }

.spot-detail-info__name {
  font-size: 16px;
  color: #231815;
  font-weight: bold; }

.spot-detail-info__content {
  margin: 10px 20px; }

.spot-info-item, .spot-info-item--toggle, .spot-info-item--top {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid thin #e6e6e6;
  display: flex; }
  .spot-info-item--toggle {
    display: inline; }
  .spot-info-item--top {
    border-top: solid thin #e6e6e6; }
  .spot-info-item__icon {
    width: 20px;
    height: 20px;
    margin: auto 10px; }
  .spot-info-item__text {
    width: 100%;
    display: flex;
    align-items: center; }
  .spot-info-item__map {
    margin: 20px auto; }

#spot-info-business-hours {
  margin-top: 15px; }

.spot-detail-list-group__item {
  list-style: none;
  width: 100%;
  display: flex;
  align-items: center; }
  .spot-detail-list-group__item:not(:last-child) {
    border-bottom: solid thin #e6e6e6; }
  .spot-detail-list-group__item-box {
    width: 100%;
    display: flex;
    margin-bottom: 15px; }
    .spot-detail-list-group__item-box-left {
      margin-left: 0; }
    .spot-detail-list-group__item-box-right {
      width: 100%;
      padding-left: 10px;
      position: relative; }
    .spot-detail-list-group__item-box-top {
      display: grid;
      grid-template-columns: 1fr auto;
      column-gap: 8px;
      justify-content: space-between; }
    .spot-detail-list-group__item-box-user {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      word-wrap: break-word;
      text-align: left;
      font-size: 13px;
      font-weight: bold;
      color: #6c6c6c;
      margin-top: 6px; }
    .spot-detail-list-group__item-box-date {
      text-align: right;
      font-size: 11px;
      color: #aaa; }
    .spot-detail-list-group__item-box-title {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      font-size: 13px;
      color: #0072ba;
      margin-top: 5px; }
    .spot-detail-list-group__item-box-detail {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      font-size: 13px;
      color: #6c6c6c;
      margin-top: 5px;
      white-space: pre-line; }

.spot-detail-list-group__item-link {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #231815;
  text-decoration: none;
  width: 100%;
  margin-top: 15px; }

.spot-detail-list-group__item-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  border-radius: 50%;
  object-fit: cover; }

.spot-detail-list-group--not-buzz {
  color: #6c6c6c;
  text-align: center;
  margin: 5px auto 32px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center; }

.spot-detail-photo__grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px; }

.spot-detail-photo__list-item {
  list-style: none;
  position: relative; }
  .spot-detail-photo__list-item::before {
    content: "";
    display: block;
    padding-top: 100%; }

.spot-detail-photo__box {
  width: 100%;
  text-decoration: none; }

.spot-detail-photo__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  border-radius: 5px; }

.spot-detail-photo__not-data {
  color: #6c6c6c;
  text-align: center;
  margin: 5px auto 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center; }

.spot-detail-section {
  padding-right: 20px;
  padding-left: 20px;
  border-top: solid 2.5px #f5f5f5;
  border-bottom: solid 2.5px #f5f5f5; }
  .spot-detail-section--bottom {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    border-top: solid 2.5px #f5f5f5;
    border-bottom: solid 2.5px #f5f5f5; }
  .spot-detail-section--no-padding {
    border-top: solid 2.5px #f5f5f5;
    border-bottom: solid 2.5px #f5f5f5; }
  .spot-detail-section--no-border {
    padding-right: 20px;
    padding-left: 20px; }

.spot-buzz-header {
  margin-top: 10px; }
  .spot-buzz-header__user {
    display: flex;
    justify-content: center;
    align-items: center; }
  .spot-buzz-header__user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%; }
  .spot-buzz-header__user-name {
    padding-left: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #6c6c6c; }
  .spot-buzz-header__provided {
    display: flex;
    padding: 5px 20px 0;
    justify-content: flex-end;
    align-items: center;
    font-size: 9px; }

.spot-buzz-item {
  width: 100%;
  padding: 10px 20px; }
  .spot-buzz-item__box {
    width: 100%;
    position: relative; }
    .spot-buzz-item__box::before {
      content: "";
      display: block;
      padding-top: 59.70149%; }
  .spot-buzz-item__image {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0; }
  .spot-buzz-item__text {
    font-size: 13px;
    margin-top: 15px;
    color: #6c6c6c;
    white-space: pre-line; }

.model-detail__summary {
  background-color: #fff;
  padding: 20px; }
  .model-detail__summary h1 {
    font-size: 16px; }
  .model-detail__summary p {
    font-size: 13px; }

.model-detail__item__photo {
  position: relative;
  height: 170px; }
  .model-detail__item__photo img {
    width: 100%;
    height: 170px;
    object-fit: cover; }
  .model-detail__item__photo-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    min-height: 60px;
    font-size: 10px;
    color: #fff;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%); }

.model-detail__item__body {
  position: relative;
  padding: 30px 20px; }
  .model-detail__item__body h2 {
    font-size: 16px; }
    .model-detail__item__body h2 i {
      display: inline-block;
      border-radius: 100%;
      color: white;
      width: 22px;
      height: 22px;
      line-height: 22px;
      text-align: center;
      font-style: normal; }
  .model-detail__item__body .time {
    position: absolute;
    left: 0;
    top: 5px;
    padding-left: 20px;
    font-size: 12px;
    font-weight: bold; }
  .model-detail__item__body .address {
    font-size: 12px;
    color: #6c6c6c;
    background: url(/images/modelcourse_ic_pin.svg) no-repeat left;
    padding-left: 20px; }
  .model-detail__item__body .url {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 12px;
    color: #6c6c6c;
    text-decoration: none;
    background: url(/images/modelcourse_ic_link.svg) no-repeat left;
    padding-left: 20px;
    word-wrap: break-word; }
  .model-detail__item__body .recommend {
    border-radius: 11px;
    margin-top: 10px;
    padding: 15px; }
    .model-detail__item__body .recommend label {
      font-size: 13px;
      font-weight: bold;
      margin-bottom: 10px;
      display: inline-block;
      padding-left: 20px; }
    .model-detail__item__body .recommend h3 {
      font-size: 13px;
      line-height: 18px; }
    .model-detail__item__body .recommend p {
      font-size: 13px;
      line-height: 19px; }

.model-detail__item__other {
  padding: 11px 20px;
  background-color: #f5f5f5; }
  .model-detail__item__other .time {
    border-bottom: none !important;
    font-size: 11px;
    font-weight: bold; }
    .model-detail__item__other .time img {
      margin-right: 5px;
      vertical-align: center; }
    .model-detail__item__other .time span {
      display: inline-block; }
  .model-detail__item__other .desc {
    padding-top: 20px;
    display: none;
    color: #6c6c6c; }
  .model-detail__item__other .check-open-desc {
    display: none; }
  .model-detail__item__other .btn-open-desc {
    width: 25px;
    height: 25px;
    display: block;
    float: right;
    background-image: url(/images/modelcourse_ic_open.svg); }
  .model-detail__item__other .check-open-desc:checked ~ .desc {
    display: block; }
  .model-detail__item__other .check-open-desc:checked ~ .btn-open-desc {
    background-image: url(/images/modelcourse_ic_close.svg); }

.model-detail__item.red h2 i {
  background-color: #e25d5d; }

.model-detail__item.red .time {
  border-bottom: solid 2px #e25d5d; }

.model-detail__item.red .recommend {
  background-color: rgba(226, 93, 93, 0.07); }
  .model-detail__item.red .recommend label {
    color: #e25d5d;
    background: url(/images/modelcourse_ic_recommend_red.svg) no-repeat left; }

.model-detail__item.green h2 i {
  background-color: #6db757; }

.model-detail__item.green .time {
  border-bottom: solid 2px #6db757; }

.model-detail__item.green .recommend {
  background-color: rgba(109, 183, 87, 0.07); }
  .model-detail__item.green .recommend label {
    color: #6db757;
    background: url(/images/modelcourse_ic_recommend_green.svg) no-repeat left; }

.model-detail__item.yellow h2 i {
  background-color: #e8c346; }

.model-detail__item.yellow .time {
  border-bottom: solid 2px #e8c346; }

.model-detail__item.yellow .recommend {
  background-color: rgba(232, 195, 70, 0.07); }
  .model-detail__item.yellow .recommend label {
    color: #e8c346;
    background: url(/images/modelcourse_ic_recommend_yellow.svg) no-repeat left; }

.model-detail__item.brue h2 i {
  background-color: #566ccc; }

.model-detail__item.brue .time {
  border-bottom: solid 2px #566ccc; }

.model-detail__item.brue .recommend {
  background-color: rgba(86, 108, 204, 0.07); }
  .model-detail__item.brue .recommend label {
    color: #566ccc;
    background: url(/images/modelcourse_ic_recommend_brue.svg) no-repeat left; }

.model-detail__item.purple h2 i {
  background-color: #d370b1; }

.model-detail__item.purple .time {
  border-bottom: solid 2px #d370b1; }

.model-detail__item.purple .recommend {
  background-color: rgba(211, 112, 177, 0.07); }
  .model-detail__item.purple .recommend label {
    color: #d370b1;
    background: url(/images/modelcourse_ic_recommend_purple.svg) no-repeat left; }

.model-detail__bottom {
  padding: 30px 20px;
  border-top: 5px solid #f5f5f5; }

.model-detail__map {
  margin-bottom: 30px; }

.reservation-list-menu__list {
  list-style: none; }

.reservation-list-menu__item {
  margin-left: 15px;
  padding-right: 20px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 15px;
  line-height: 12px;
  color: #231815;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .reservation-list-menu__item .button, .reservation-list-menu__item .home__button, .reservation-list-menu__item .home__button--bold {
    width: 110px;
    font-size: 13px; }

.reservation-list-menu__icon {
  margin: 8px 16px 8px 8px;
  width: 48px;
  height: 48px; }

.reservation-list-menu__label {
  flex: 1 1 auto; }

.reservation-list-menu__note {
  margin: 20px 16px;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 20px; }

.ticket-area {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center; }
  .ticket-area__icon {
    width: 16px;
    height: 16px; }

.ticket-carousel {
  overflow-x: auto;
  padding: 0;
  margin-right: -20px;
  display: flex; }
  .ticket-carousel__item {
    list-style: none; }
    .ticket-carousel__item:not(:last-child) {
      margin-right: 16px; }
    .ticket-carousel__item:last-child {
      padding-right: 16px; }
  .ticket-carousel a {
    text-decoration: none; }
  .ticket-carousel__box {
    position: relative;
    width: 150px; }
  .ticket-carousel__icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 22px;
    height: 22px; }
  .ticket-carousel__image {
    vertical-align: bottom;
    width: 150px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover; }
  .ticket-carousel__summary {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 10px 0;
    font-size: 13px;
    color: #6c6c6c; }

.ticket-change-info {
  padding: 18px 20px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center; }
  .ticket-change-info__image {
    margin-right: 15px;
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px; }
  .ticket-change-info__name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px; }
  .ticket-change-info__summary {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px; }

.ticket-change-complete__title {
  color: #231815; }

.ticket-change-complete__text {
  margin: 10px 0;
  font-size: 14px;
  white-space: pre-wrap; }

.ticket-change-complete__note {
  font-size: 13px;
  margin: 20px auto; }

.ticket-change-complete__hr {
  margin: 20px auto;
  height: 1px;
  background-color: #ccc;
  border: none; }

.ticket-change-complete-info {
  display: flex;
  align-items: center;
  margin: 30px auto 20px; }
  .ticket-change-complete-info__image {
    margin-right: 15px;
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px; }
  .ticket-change-complete-info__name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; }
  .ticket-change-complete-info__summary {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }

.ticket-change-confirm {
  margin: 0 20px; }
  .ticket-change-confirm__info {
    margin: 0 -20px 20px -20px; }
  .ticket-change-confirm__section {
    margin-bottom: 40px; }
  .ticket-change-confirm__text {
    margin: 10px 0;
    font-size: 14px; }
  .ticket-change-confirm__heading {
    padding-left: 8px;
    border-left: 2px solid #0072ba;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }

.ticket-contents__item {
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  display: flex;
  align-items: center; }
  .ticket-contents__item:not(:last-child) {
    margin-bottom: 15px; }

.ticket-contents__photo {
  margin-right: 15px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px; }

.ticket-contents__name {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px; }

.ticket-contents-purchased__item {
  padding: 20px 15px;
  box-shadow: 0 2px 5px #00000015;
  border-radius: 10px;
  background-color: #fff; }
  .ticket-contents-purchased__item:not(:last-child) {
    margin-bottom: 10px; }

.ticket-contents-purchased__body {
  display: flex; }

.ticket-contents-purchased__body-left {
  margin-right: 15px;
  flex: 0 0 95px;
  height: 130px; }

.ticket-contents-purchased__body-right {
  flex: 1 1 auto; }

.ticket-contents-purchased__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px; }

.ticket-contents-purchased__name {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 18px; }

.ticket-contents-purchased__use {
  margin-bottom: 20px;
  width: 100%; }

.ticket-contents-purchased__history-toggle {
  color: #0072ba;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.ticket-contents-purchased__toggle-text::after {
  content: "利用履歴"; }

.ticket-contents-purchased__toggle-icon {
  margin: 0 15px 0 5px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/images/ic_ticket_open.svg"); }

.ticket-contents-purchased__history-toggle--open .ticket-contents-purchased__toggle-text::after {
  content: "閉じる"; }

.ticket-contents-purchased__history-toggle--open .ticket-contents-purchased__toggle-icon {
  background: url("/images/ic_ticket_close.svg"); }

.ticket-contents-purchased__history {
  display: none;
  font-size: 14px;
  line-height: 19px; }

.ticket-contents-purchased__history-item {
  padding-top: 10px; }
  .ticket-contents-purchased__history-item:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc; }

.ticket-date-type__lead {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  font-size: 16px; }

.ticket-date-type__form {
  margin: 40px 20px 0 20px; }

.ticket-date-type__action {
  margin: 40px 20px 0 20px; }

.ticket-date-type-change {
  margin: 0 20px; }
  .ticket-date-type-change__step {
    display: flex;
    margin: 0 auto 10px auto;
    max-width: 100%;
    justify-content: center;
    align-items: center; }
  .ticket-date-type-change__info {
    margin: 0 -20px 20px -20px; }
  .ticket-date-type-change__heading {
    margin-bottom: 20px;
    padding-left: 8px;
    border-left: 2px solid #0072ba;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }
  .ticket-date-type-change__action {
    margin: 40px 0 50px 0; }
    .ticket-date-type-change__action .button, .ticket-date-type-change__action .home__button, .ticket-date-type-change__action .home__button--bold {
      margin-bottom: 20px; }

.ticket-date-type-form__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 18px; }

.ticket-date-type-form__input {
  padding: 0 20px;
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center; }
  .ticket-date-type-form__input:not(:last-child) {
    margin-bottom: 20px; }

.ticket-date-type-form__icon {
  width: 21px;
  height: 21px; }

.ticket-date-type-form__datepicker {
  margin-left: 10px;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 15px; }
  .ticket-date-type-form__datepicker:focus {
    outline: none; }
  .ticket-date-type-form__datepicker::placeholder {
    color: inherit; }

.ticket-date-type-form__select {
  margin-left: 10px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  text-transform: none;
  color: inherit;
  font-family: inherit;
  font-size: 15px; }

.ticket-description {
  font-size: 14px;
  line-height: 20px; }

.ticket-detail__section {
  padding: 20px 20px 35px 20px; }
  .ticket-detail__section--top {
    padding: 10px 20px 20px 20px; }
  .ticket-detail__section:not(:last-child) {
    border-bottom: 5px solid #f5f5f5; }

.ticket-detail__section-heading {
  margin-bottom: 15px;
  padding-left: 8px;
  border-left: 2px solid #0072ba;
  font-size: 16px;
  font-weight: normal;
  line-height: 18px; }

.ticket-detail__detail-text {
  margin-bottom: 40px;
  height: 54px;
  white-space: pre-line;
  overflow: hidden;
  font-size: 13px;
  line-height: 18px; }
  .ticket-detail__detail-text--open {
    height: auto;
    overflow: visible; }

.ticket-detail__detail-footer {
  display: flex;
  justify-content: center; }

.ticket-detail__detail-toggle {
  color: #0072ba;
  font-size: 15px;
  text-decoration: none; }
  .ticket-detail__detail-toggle::after {
    content: "もっと見る"; }
  .ticket-detail__detail-toggle--open::after {
    content: "閉じる"; }

.ticket-detail__detail-image {
  margin-top: 30px;
  width: 100%; }

.ticket-detail__carousel {
  margin-bottom: 10px; }
  .ticket-detail__carousel--result-zero {
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
    margin-top: 40px; }

.ticket-detail-purchased__section {
  padding: 20px 20px 35px 20px; }
  .ticket-detail-purchased__section--top {
    padding: 0 20px 20px 20px; }
  .ticket-detail-purchased__section--bottom {
    padding: 30px 20px 40px 20px; }
  .ticket-detail-purchased__section--background-gray {
    padding: 20px;
    background-color: #f5f5f5; }
  .ticket-detail-purchased__section:not(:last-child) {
    border-bottom: 5px solid #f5f5f5; }

.ticket-detail-purchased__section-heading {
  margin-bottom: 15px;
  padding-left: 8px;
  border-left: 2px solid #0072ba;
  font-size: 16px;
  font-weight: normal;
  line-height: 18px; }

.ticket-detail-purchased__detail-text {
  margin-bottom: 40px;
  height: 54px;
  white-space: pre-line;
  overflow: hidden;
  font-size: 13px;
  line-height: 18px; }
  .ticket-detail-purchased__detail-text--open {
    height: auto;
    overflow: visible; }

.ticket-detail-purchased__detail-footer {
  display: flex;
  justify-content: center; }

.ticket-detail-purchased__detail-toggle {
  color: #0072ba;
  font-size: 15px;
  text-decoration: none; }
  .ticket-detail-purchased__detail-toggle::after {
    content: "もっと見る"; }
  .ticket-detail-purchased__detail-toggle--open::after {
    content: "閉じる"; }

.ticket-detail-purchased__detail-image {
  margin-top: 30px;
  width: 100%; }

.ticket-detail-purchased__carousel {
  margin-bottom: 10px; }
  .ticket-detail-purchased__carousel--result-zero {
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
    margin-top: 40px; }

.ticket-detail-purchased__date-price {
  margin-bottom: 50px;
  font-size: 13px;
  line-height: 20px; }

.ticket-detail-purchased__action .button:not(:last-child), .ticket-detail-purchased__action .home__button:not(:last-child), .ticket-detail-purchased__action .home__button--bold:not(:last-child) {
  margin-bottom: 20px; }

.ticket-info__keyword {
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-end; }

.ticket-info__keyword .ticket-keyword:not(:last-child) {
  margin-right: 5px; }

.ticket-info__summary {
  margin-bottom: 15px; }

.ticket-info__area {
  margin-bottom: 10px; }

.ticket-info__price {
  margin-bottom: 15px; }

.ticket-keyword {
  padding: 2px 5px;
  display: inline-block;
  border: 1px solid #0072ba;
  border-radius: 10px;
  font-size: 11px;
  line-height: 12px;
  color: #0072ba; }

.ticket-list {
  padding: 20px 0; }
  .ticket-list__list {
    margin: 10px 20px 20px 20px; }
  .ticket-list__link {
    display: block;
    color: #231815;
    text-decoration: none; }
    .ticket-list__link:not(:last-child) {
      margin-bottom: 15px; }
  .ticket-list__item {
    padding: 20px 15px 15px 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px #00000015;
    border-radius: 10px; }
  .ticket-list__body {
    display: flex;
    margin-bottom: 10px; }
  .ticket-list__body-left {
    margin-right: 10px;
    flex: 0 0 100px;
    height: 130px; }
  .ticket-list__thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover; }
  .ticket-list__keyword {
    margin-bottom: 10px;
    display: flex; }
  .ticket-list__keyword .ticket-keyword:not(:last-child) {
    margin-right: 5px; }
  .ticket-list__name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 18px;
    font-size: 15px;
    font-weight: bold;
    line-height: 18px; }
  .ticket-list__description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    max-height: 36px;
    font-size: 15px;
    line-height: 18px; }
  .ticket-list__usage-type {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 34px;
    font-size: 12px;
    line-height: 17px;
    color: #6c6c6c; }
  .ticket-list__footer {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .ticket-list__price {
    margin-left: 5px;
    flex: 0 0 auto; }
  .ticket-list__text--result-zero {
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
    margin-top: 50px; }

.ticket-list-filter {
  margin: 0 20px 20px 20px; }
  .ticket-list-filter__row {
    display: flex; }
    .ticket-list-filter__row:not(:last-child) {
      margin-bottom: 10px; }
  .ticket-list-filter__item {
    padding: 0 12px;
    width: 100%;
    height: 35px;
    background-color: #fff;
    box-shadow: 0 2px 5px #00000014;
    border-radius: 18px;
    display: flex;
    align-items: center; }
  .ticket-list-filter__row .ticket-list-filter__item:not(:last-child) {
    margin-right: 10px; }
  .ticket-list-filter__icon {
    margin-right: 8px;
    width: 16px;
    height: 16px; }
  .ticket-list-filter__select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    text-transform: none;
    color: inherit;
    font: inherit;
    font-size: 13px; }
  .ticket-list-filter__datepicker {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: inherit;
    font: inherit; }
    .ticket-list-filter__datepicker:focus {
      outline: none; }
    .ticket-list-filter__datepicker::placeholder {
      color: inherit; }

.ticket-management-list {
  margin: 20px 20px 50px 20px; }
  .ticket-management-list__link {
    display: block;
    color: #231815;
    text-decoration: none; }
    .ticket-management-list__link:not(:last-child) {
      margin-bottom: 15px; }
  .ticket-management-list__item {
    padding: 20px 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px #00000015;
    border-radius: 10px; }
  .ticket-management-list__thumbnail {
    margin-bottom: 10px;
    width: 100%;
    height: 116px;
    border-radius: 4px;
    object-fit: cover; }
  .ticket-management-list__name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36px;
    font-size: 15px;
    font-weight: bold;
    line-height: 18px; }
  .ticket-management-list__summary {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 36px;
    font-size: 15px;
    line-height: 18px; }
  .ticket-management-list__area {
    margin: 10px 0; }

.ticket-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px; }

.ticket-management-not-data {
  padding-bottom: 50%;
  height: calc(100% - 44px - 55px - 48px);
  background-color: #f5f5f5;
  color: #6c6c6c;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .ticket-management-not-data__text {
    padding-bottom: 40px; }
  .ticket-management-not-data__link {
    text-decoration: none;
    padding-top: 46px; }
  .ticket-management-not-data__button {
    color: #0072ba;
    background-color: #fff;
    font-size: 15px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding-right: 44px;
    padding-left: 44px; }

.ticket-note {
  color: #e0502e;
  display: flex; }
  .ticket-note__label {
    flex: 0 0 auto;
    margin-right: 10px;
    font-size: 15px;
    line-height: 19px;
    font-weight: bold; }
  .ticket-note__text {
    font-size: 13px;
    line-height: 19px; }

.ticket-passcode__text {
  display: flex;
  justify-content: center;
  font-size: 15px;
  color: #231815;
  margin-top: 31px;
  margin-bottom: 15px; }

.ticket-passcode__input {
  display: flex;
  margin: 5px;
  justify-content: center;
  background: url(../images/input_bg.svg) no-repeat 50% 50%; }

.ticket-passcode__number {
  width: 310px;
  height: 80px;
  margin: 5px;
  font-size: 62px;
  background: transparent;
  border: none;
  letter-spacing: 0.76em;
  padding-left: 16px; }
  .ticket-passcode__number:focus {
    outline: none;
    caret-color: transparent; }

.ticket-passcode__info-image {
  margin: 10px auto;
  display: flex;
  justify-content: center; }

.ticket-passcode__arrow-image {
  margin: 10px auto;
  display: flex;
  justify-content: center; }

.ticket-passcode__button {
  padding: 0 20px; }

.ticket-price {
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  color: #0072ba; }
  .ticket-price--gray {
    color: #aaa; }
  .ticket-price--red {
    color: #e0502e; }

.ticket-price-item {
  border-bottom: 1px solid #ccc;
  display: flex;
  font-size: 16px;
  justify-content: space-between; }
  .ticket-price-item__item, .ticket-price-item__item--bold, .ticket-price-item__price--bold, .ticket-price-item__price {
    margin: 17px 0; }
    .ticket-price-item__item--bold, .ticket-price-item__price--bold {
      font-weight: bold; }

.ticket-purchase-completed__message {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 25px; }

.ticket-purchase-completed__main {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  display: flex; }

.ticket-purchase-completed__image {
  margin-right: 13px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px; }

.ticket-purchase-completed__name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 18px; }

.ticket-purchase-completed__summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 54px; }

.ticket-purchase-completed__description {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px; }

.ticket-purchase-completed__number-label, .ticket-change-confirm__number-label, .ticket-description__number-label, .ticket-refund__number-label, .ticket-use-confirm__number-label {
  display: inline-block;
  width: 4em; }

.ticket-purchase-completed__sub-message {
  margin-bottom: 30px; }

.ticket-purchase-confirm {
  padding: 20px; }
  .ticket-purchase-confirm__section:not(:last-child) {
    margin-bottom: 30px; }
  .ticket-purchase-confirm__section-heading {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }
  .ticket-purchase-confirm__summary {
    margin-bottom: 15px; }
  .ticket-purchase-confirm__area {
    margin-bottom: 10px; }
  .ticket-purchase-confirm__description {
    margin-bottom: 30px; }
  .ticket-purchase-confirm__price-label {
    font-size: 13px;
    line-height: 20px; }
  .ticket-purchase-confirm__price {
    font-size: 20px;
    line-height: 20px; }

.ticket-purchase-number__lead {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  font-size: 16px; }

.ticket-purchase-number__action {
  margin: 40px 16px 0 16px; }

.ticket-purchase-number-change {
  margin: 0 20px; }
  .ticket-purchase-number-change__step {
    display: flex;
    margin: 0 auto 10px auto;
    max-width: 100%;
    justify-content: center;
    align-items: center; }
  .ticket-purchase-number-change__info {
    margin: 0 -20px 20px -20px; }
  .ticket-purchase-number-change__heading {
    margin-bottom: 10px;
    padding-left: 8px;
    border-left: 2px solid #0072ba;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }
  .ticket-purchase-number-change__form {
    margin: 20px -20px 30px -20px; }
  .ticket-purchase-number-change__action {
    margin: 40px 0 50px 0; }
    .ticket-purchase-number-change__action .button, .ticket-purchase-number-change__action .home__button, .ticket-purchase-number-change__action .home__button--bold {
      margin-bottom: 20px; }

.ticket-purchase-number-form__row {
  padding: 14px 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .ticket-purchase-number-form__row:first-child {
    border-top: 1px solid #ccc; }

.ticket-purchase-number-form__input {
  width: 115px; }

.ticket-refund {
  margin: 0 20px; }
  .ticket-refund__section {
    margin-bottom: 30px; }
  .ticket-refund__info {
    margin: 0 -20px 20px -20px; }
  .ticket-refund__text {
    margin: 10px 0;
    font-size: 14px; }
  .ticket-refund__heading {
    padding-left: 8px;
    border-left: 2px solid #0072ba;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }
  .ticket-refund__action {
    margin: 40px 0 50px 0; }
    .ticket-refund__action .button, .ticket-refund__action .home__button, .ticket-refund__action .home__button--bold {
      margin-bottom: 20px; }

.ticket-security-code {
  padding-left: 20px;
  padding-right: 20px; }
  .ticket-security-code__lead {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    text-align: center; }
  .ticket-security-code__textbox {
    margin-bottom: 15px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center; }
  .ticket-security-code__input {
    padding-left: 15px;
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    font-size: 15px; }
    .ticket-security-code__input:focus {
      outline: none; }
    .ticket-security-code__input::placeholder {
      color: #aaa; }
  .ticket-security-code__icon {
    margin-right: 10px;
    width: 50px;
    height: 50px; }
  .ticket-security-code__card {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 19px;
    color: #6c6c6c; }
  .ticket-security-code__action {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end; }
  .ticket-security-code__button {
    width: 100px; }
  .ticket-security-code__note {
    margin-bottom: 30px;
    padding: 20px;
    border: solid 1px #e0502e;
    border-radius: 10px;
    color: #e0502e;
    font-size: 14px;
    line-height: 22px; }

.ticket-slider {
  margin: 0 -20px 20px -20px;
  width: 100vw;
  height: 150px; }
  .ticket-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .ticket-slider .slick-dots {
    bottom: 0; }
  .ticket-slider .slick-dots li {
    width: 10px; }
  .ticket-slider .slick-dots li button::before {
    color: #0072ba;
    opacity: 0.3; }
  .ticket-slider .slick-dots li.slick-active button::before {
    color: #0072ba; }

.ticket-slider.slick-dotted.slick-slider {
  margin-bottom: 20px; }

.ticket-summary {
  font-size: 15px;
  line-height: 18px; }

.ticket-use__header {
  display: flex;
  justify-content: center;
  font-size: 19px;
  padding: 21px 28px 25px 20px;
  color: #231815;
  font-weight: bold; }

.ticket-use__content {
  width: 100%;
  background-image: url("/images/ticket_use_bg.gif");
  background-size: cover;
  padding: 20.46px 10px;
  min-height: calc(100% - 75px - 44px); }

.ticket-use__detail-image {
  margin-top: 30px;
  width: 100%; }

.ticket-use__button {
  margin-top: 30px;
  margin-bottom: 30px; }

.ticket-use-card {
  border-radius: 8px;
  overflow: hidden; }
  .ticket-use-card--red {
    background-color: #e05c5c; }
    .ticket-use-card--red .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #e05c5c; }
    .ticket-use-card--red .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #e05c5c; }
  .ticket-use-card--lime {
    background-color: #6db757; }
    .ticket-use-card--lime .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #6db757; }
    .ticket-use-card--lime .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #6db757; }
  .ticket-use-card--yellow {
    background-color: #e8c346; }
    .ticket-use-card--yellow .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #e8c346; }
    .ticket-use-card--yellow .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #e8c346; }
  .ticket-use-card--brue {
    background-color: #566ccc; }
    .ticket-use-card--brue .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #566ccc; }
    .ticket-use-card--brue .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #566ccc; }
  .ticket-use-card--purple {
    background-color: #d370b1; }
    .ticket-use-card--purple .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #d370b1; }
    .ticket-use-card--purple .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #d370b1; }
  .ticket-use-card--green {
    background-color: #0072ba; }
    .ticket-use-card--green .ticket-use-card__section:not(:first-child) {
      border-top: solid 1px #0072ba; }
    .ticket-use-card--green .ticket-use-card__section:not(:last-child) {
      border-bottom: solid 1px #0072ba; }
  .ticket-use-card__header {
    margin: 15px 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .ticket-use-card__header-inner {
    overflow: hidden;
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    font-size: 20px;
    line-height: 25px; }
  .ticket-use-card__content {
    margin: auto 10px auto 10px;
    background-color: #fff;
    border-radius: 8px; }
  .ticket-use-card__content-header {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 16px;
    background-color: #f0f0f0;
    border-radius: 8px 8px 0 0; }
  .ticket-use-card__content-section {
    display: flex;
    justify-content: center; }
  .ticket-use-card__item {
    font-size: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    line-height: 30px;
    font-weight: bold; }
    .ticket-use-card__item:first-child {
      margin-top: 10px; }
    .ticket-use-card__item:last-child {
      margin-bottom: 5px; }
    .ticket-use-card__item--font-small {
      font-size: 24px; }
  .ticket-use-card__item-name {
    font-size: 18px;
    padding-bottom: 5px; }
  .ticket-use-card__note {
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    padding: 8px; }
  .ticket-use-card__title-border {
    text-align: center;
    font-size: 17px;
    font-weight: normal; }
    .ticket-use-card__title-border::before, .ticket-use-card__title-border::after {
      border-top: 1px solid #6c6c6c;
      content: "";
      display: inline-block;
      width: 30px;
      flex-grow: 1;
      margin-right: 5px;
      margin-left: 5px;
      padding-top: 6px; }
  .ticket-use-card__footer {
    display: flex;
    justify-content: center;
    color: #fff;
    padding: 3px 0 7px;
    font-size: 30px;
    font-weight: bold; }

.ticket-use-confirm {
  padding: 0 20px; }
  .ticket-use-confirm__name {
    margin-bottom: 10px; }
  .ticket-use-confirm__description {
    margin-bottom: 30px; }
  .ticket-use-confirm__note {
    margin-bottom: 40px; }
  .ticket-use-confirm__number {
    margin-top: -10px;
    margin-bottom: 30px; }
  .ticket-use-confirm__selectbox {
    margin-top: 5px;
    padding: 0 10px 0 20px;
    width: 100%;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center; }
  .ticket-use-confirm__select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    text-transform: none;
    color: inherit;
    font-family: inherit;
    font-size: 15px; }
  .ticket-use-confirm__select-icon {
    width: 45px;
    height: 45px; }
  .ticket-use-confirm__message {
    margin-bottom: 20px;
    color: #0072ba;
    font-size: 19px;
    line-height: 24px;
    text-align: center; }
  .ticket-use-confirm__button .button, .ticket-use-confirm__button .home__button, .ticket-use-confirm__button .home__button--bold {
    margin-bottom: 20px; }

.ticket-user {
  padding-left: 20px;
  padding-right: 20px; }
  .ticket-user__lead {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    text-align: center; }
  .ticket-user__form-row:not(:last-child) {
    margin-bottom: 15px; }
  .ticket-user__form-group {
    display: flex; }
  .ticket-user__textbox {
    width: 100%;
    display: flex;
    flex-direction: column; }
  .ticket-user__form-group .ticket-user__textbox:not(:last-child) {
    margin-right: 5px; }
  .ticket-user__label {
    margin-bottom: 3px;
    font-size: 14px;
    color: #6c6c6c; }
  .ticket-user__input {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    color: inherit;
    font-family: inherit;
    font-size: 15px; }
    .ticket-user__input:focus {
      outline: none; }
    .ticket-user__input::placeholder {
      color: #aaa; }
  .ticket-user__form-note {
    margin-top: 5px;
    font-size: 12px;
    color: #999; }
  .ticket-user__action {
    display: flex;
    justify-content: flex-end; }
  .ticket-user__button {
    width: 100px; }

.route-car-select__heading {
  padding: 6px 16px;
  background-color: #f5f5f5;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 12px; }

.route-car-select__list {
  list-style: none; }

.route-car-select__item {
  margin-left: 15px;
  padding-right: 20px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 15px;
  line-height: 12px;
  color: #231815;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .route-car-select__item .button, .route-car-select__item .home__button, .route-car-select__item .home__button--bold {
    width: 110px;
    font-size: 13px; }

.route-car-select__icon {
  margin: 8px 16px 8px 8px;
  width: 48px;
  height: 48px; }

.route-car-select__label {
  flex: 1 1 auto; }

.route-car-select__note {
  margin: 20px 16px;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 20px; }

.route-modal__content {
  max-height: 100%;
  height: 500px; }

.route-modal__main {
  height: 372px;
  overflow-y: auto; }

.route-list {
  list-style: none; }
  .route-list__row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 56px;
    margin-left: 20px;
    border-bottom: 1px solid #e6e6e6; }
    .route-list__row--border-none {
      border-bottom: none; }
  .route-list__icon {
    margin-right: 6px;
    width: 34px;
    height: 34px; }
  .route-list__icon-favorite {
    margin-right: 5px;
    width: 25px;
    height: 25px; }
  .route-list__text--result-zero {
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
    margin-top: 84px; }

.route-radio {
  padding: 5px 0;
  width: 100%;
  height: 45px;
  border-radius: 7px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex; }
  .route-radio__item {
    flex: 1;
    position: relative; }
    .route-radio__item:not(:last-child) {
      border-right: 1px solid #ccc; }
  .route-radio__input {
    width: 100%;
    height: 100%;
    opacity: 0; }
  .route-radio__label {
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    height: 100%;
    background: #f5f5f5;
    border-radius: 7px;
    color: #6c6c6c;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; }
  .route-radio__input:checked + .route-radio__label {
    background: #fff;
    box-shadow: 0 3px 8px #0000001f;
    color: #231815; }

.route-search {
  margin: 30px 20px; }
  .route-search__textbox {
    margin-bottom: 15px;
    width: 100%;
    height: 45px;
    background: #f5f5f5;
    display: flex;
    align-items: center; }
  .route-search__label {
    padding: 0 15px;
    flex: 0 0 70px;
    font-size: 12px;
    color: #6c6c6c; }
  .route-search__input {
    flex: 1 1 auto;
    padding-right: 15px;
    min-width: 0;
    height: 100%;
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: 16px;
    color: inherit; }
    .route-search__input:focus {
      outline: none; }
    .route-search__input::placeholder {
      color: #999; }
  .route-search__select {
    padding: 0 15px;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    text-transform: none;
    font-family: inherit;
    font-size: 16px;
    color: inherit; }
  .route-search__colon {
    display: inline-block;
    font-size: 16px; }
  .route-search__textbox--transparent {
    background: transparent;
    border: 1px solid #ccc; }
    .route-search__textbox--transparent .route-search__input {
      border: transparent; }
  .route-search__transit-section {
    margin-top: -15px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .route-search__transit-section .route-search__textbox:first-child {
      margin-top: 15px; }
  .route-search__transit-wrapper {
    flex: 1 1 auto;
    min-width: 0; }
  .route-search__delete-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px; }
  .route-search__inversion-icon {
    flex: 0 0 31px;
    margin-left: 14px;
    width: 31px;
    height: 31px; }
  .route-search__transit-add {
    margin: 20px 15px;
    color: #0072ba;
    font-size: 15px;
    line-height: 12px; }
  .route-search__date-type {
    margin-bottom: 15px; }
  .route-search__settings {
    margin-bottom: 30px; }

.route-search-settings {
  width: 100%;
  background: #f5f5f5; }
  .route-search-settings__link {
    text-decoration: none; }
  .route-search-settings__label {
    padding: 5px 15px;
    font-size: 12px;
    line-height: 16px;
    color: #6c6c6c; }
  .route-search-settings__wrapper {
    height: 63px;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
  .route-search-settings__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .route-search-settings__icon {
    flex: 0 0 55px;
    width: 55px;
    height: 63px; }

.route-settings__accordion {
  width: 100%;
  height: 56px;
  background-color: #f0f0f0;
  background-image: url("/images/ic_menu_open.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 10px 25px 10px 5px;
  display: flex;
  align-items: center; }
  .route-settings__accordion--active {
    background-image: url("/images/ic_menu_close.svg"); }

.route-settings__accordion-title {
  font-size: 16px;
  margin-left: 20px; }

.route-settings__item {
  margin-left: 24px;
  padding-right: 20px;
  height: 56px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.route-settings__icon {
  margin-right: 10px;
  width: 35px;
  height: 56px; }

.route-settings__label {
  flex: 1 1 auto;
  font-size: 15px; }

.route-settings__switch {
  width: 51px;
  height: 31px;
  background: url("/images/switch_btn_off.svg") no-repeat; }

.route-settings__check {
  width: 35px;
  height: 35px;
  background: none; }

.route-settings__input {
  display: none; }

.route-settings__input:checked ~ .route-settings__switch {
  background: url("/images/switch_btn_on.svg") no-repeat; }

.route-settings__input:checked ~ .route-settings__check {
  background: url("/images/common_ic_list_check.svg") no-repeat; }

.route-search-result__summary {
  font-size: 13px;
  padding: 15px; }

.route-search-result__sort {
  float: right; }
  .route-search-result__sort button {
    background-color: white;
    border: none;
    padding: 4px 7px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 12px; }

.route-search-result__list__route {
  text-decoration: none;
  color: #231815;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .route-search-result__list__route__main {
    flex: 1 1 auto; }
  .route-search-result__list__route__right {
    flex: 0 0 20px;
    width: 20px; }
  .route-search-result__list__route .index {
    display: inline-block;
    color: #0072ba;
    border: solid 1px #0072ba;
    border-radius: 4px;
    min-width: 22px;
    height: 22px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 18px; }
  .route-search-result__list__route .transfers {
    color: #6c6c6c;
    display: inline-block;
    margin-left: 5px;
    font-size: 15px;
    line-height: 22px; }
  .route-search-result__list__route .departure-arrival-times {
    font-size: 23px;
    margin-top: 5px; }
    .route-search-result__list__route .departure-arrival-times small {
      font-size: 14px;
      vertical-align: middle;
      margin-left: 10px; }
  .route-search-result__list__route .transfer-icons {
    margin-top: 5px; }
  .route-search-result__list__route__footer {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .route-search-result__list__route__footer .number-of-transfers {
      flex: 0 0 100px;
      width: 100px;
      font-size: 17px; }
    .route-search-result__list__route__footer .price {
      flex: 1 1 auto;
      font-size: 19px;
      font-weight: bold;
      text-align: right; }

.route-detail__top {
  background-color: #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 5px 15px 0 15px;
  align-items: flex-end; }
  .route-detail__top__left {
    flex: 0 0 70px;
    width: 56px; }
  .route-detail__top__center {
    flex: 1 1 auto;
    text-align: center;
    line-height: 20px; }
    .route-detail__top__center p {
      font-size: 17px; }
      .route-detail__top__center p.sub {
        font-size: 13px;
        color: #6c6c6c; }
  .route-detail__top__right {
    flex: 0 0 70px;
    width: 56px; }

.route-detail__price {
  background-color: #f0f0f0;
  text-align: center;
  padding-bottom: 15px; }
  .route-detail__price img {
    vertical-align: -2px; }

.route-detail__note {
  margin: 20px 15px 0 15px;
  display: flex;
  justify-content: flex-end; }

.route-detail__link {
  color: #0072ba;
  font-size: 14px; }

.route-detail__map {
  margin: 25px 15px; }
  .route-detail__map .item-map {
    height: 140px; }

.plan-list {
  margin: 30px 24px; }
  .plan-list .plan-items {
    list-style: none; }
  .plan-list .plan-item {
    padding: 7px 0; }
    .plan-list .plan-item a {
      text-decoration: none; }
      .plan-list .plan-item a .plan-item__image {
        width: 100%;
        height: 112px;
        object-fit: cover;
        border-radius: 15px; }
      .plan-list .plan-item a .plan-item__summary-title {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        padding: 0 8px;
        font-size: 15px;
        color: #231815;
        margin-top: 10px; }
      .plan-list .plan-item a .plan-item__summary-text {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        padding: 0 8px;
        font-size: 13px;
        color: #6c6c6c;
        margin-bottom: 10px; }
  .plan-list__zero-data {
    width: 100%;
    margin: -30px -24px; }

.container.plan {
  background-color: #f0f0f0; }

.plan-detail {
  padding: 15px; }
  .plan-detail.no-padding {
    padding: 0; }
  .plan-detail .title {
    padding: 0 15px;
    height: 44px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .plan-detail .title__input {
      flex: 1 1 auto;
      height: 100%;
      border: none;
      background-color: transparent;
      color: inherit;
      font-family: inherit;
      font-size: 15px; }
      .plan-detail .title__input:focus {
        outline: none; }
      .plan-detail .title__input::placeholder {
        color: inherit; }
    .plan-detail .title__icon {
      flex: 0 0 24px;
      margin: 10px 0;
      width: 24px;
      height: 24px; }
  .plan-detail .dropdown-sort {
    display: block;
    padding: 15px;
    text-align: right;
    text-decoration: none;
    color: #0072ba; }
    .plan-detail .dropdown-sort .icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      content: "";
      background: url(/images/schedule_ic_open.svg) no-repeat;
      vertical-align: -3px; }
    .plan-detail .dropdown-sort__popup {
      position: relative;
      margin-left: -15px;
      margin-right: -15px;
      display: none;
      transition: 0.3s ease-in-out; }
      .plan-detail .dropdown-sort__popup__overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2000px;
        z-index: 99;
        background: rgba(0, 0, 0, 0.3);
        transition: 0.3s ease-in-out; }
      .plan-detail .dropdown-sort__popup .radio-group {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        z-index: 100; }
    .plan-detail .dropdown-sort__checkbox {
      display: none; }
      .plan-detail .dropdown-sort__checkbox:checked ~ .dropdown-sort__popup {
        display: block; }
      .plan-detail .dropdown-sort__checkbox:checked ~ label .icon {
        background: url(/images/schedule_ic_close.svg) no-repeat; }
  .plan-detail__route {
    background-color: #fff;
    list-style: none;
    border-radius: 5px; }
    .plan-detail__route__item {
      border-bottom: solid 1px #e5e5e5;
      display: inline-grid;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      grid-template-columns: auto auto 1fr auto; }
      .plan-detail__route__item.date {
        grid-template-columns: auto 1fr; }
      .plan-detail__route__item__left {
        padding: 10px 15px;
        flex: 0 0 90px;
        width: 90px;
        text-align: center; }
      .plan-detail__route__item__left2 {
        flex: 0 0 30px;
        width: 30px;
        text-align: center;
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center; }
      .plan-detail__route__item__center {
        flex: 1 1 auto;
        padding: 15px 10px;
        line-height: 20px; }
        .plan-detail__route__item__center.date {
          padding: 15px; }
      .plan-detail__route__item__right {
        flex: 0 0 80px;
        text-align: right;
        padding-right: 5px; }
      .plan-detail__route__item__icon {
        width: 24px;
        height: 24px; }
      .plan-detail__route__item__right .plan-detail__route__item__button:not(:last-child) {
        margin-right: 10px; }
      .plan-detail__route__item:last-child {
        border-bottom: none; }
    .plan-detail__route--search-result {
      border-radius: 0; }
      .plan-detail__route--search-result .plan-detail__route__item:last-child {
        border-bottom: solid 1px #e5e5e5; }
  .plan-detail__text--result-zero {
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
    margin-top: 98px; }
  .plan-detail__emphasis .v-line {
    box-shadow: 0 0 0 4px #ffacac; }
  .plan-detail .arrival-at {
    color: #6c6c6c;
    font-size: 15px; }
  .plan-detail .departure-at {
    color: #231815;
    font-size: 15px; }
  .plan-detail .position-name {
    font-size: 15px;
    font-weight: bold; }
  .plan-detail .circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    content: '&nbsp;'; }
    .plan-detail .circle-blue {
      background-color: #0072ba; }
    .plan-detail .circle-gray {
      background-color: #575e66; }
    .plan-detail .circle-lightblue {
      background-color: #0099da; }
    .plan-detail .circle-red {
      background-color: #e8656a; }
    .plan-detail .circle-green {
      background-color: #0072ba; }
  .plan-detail .v-line {
    display: inline-block;
    height: calc(100% + 8px);
    width: 8px;
    border-radius: 8px; }
    .plan-detail .v-line-blue {
      background-color: #0072ba; }
    .plan-detail .v-line-gray {
      border-left: dashed 8px #575e66;
      border-radius: 0;
      height: 100%; }
    .plan-detail .v-line-lightblue {
      background-color: #0099da; }
    .plan-detail .v-line-red {
      background-color: #e8656a; }
    .plan-detail .v-line-green {
      background-color: #0072ba; }
  .plan-detail .time,
  .plan-detail .fare {
    color: #6c6c6c; }
    .plan-detail .time img,
    .plan-detail .fare img {
      vertical-align: middle; }
  .plan-detail .updated-at {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 15px;
    color: #6c6c6c; }

.plan-edit {
  position: relative;
  /* チェックがついたら表示させる */ }
  .plan-edit__checkbox {
    display: none; }
  .plan-edit__overlay {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #231815;
    opacity: 0;
    transition: 0.3s ease-in-out; }
  .plan-edit__content {
    overflow: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    transition: 0.3s ease-in-out;
    transform: translateY(105%);
    color: #231815;
    padding: 0 10px 50px; }
  .plan-edit__group {
    margin-bottom: 10px;
    border-radius: 12px;
    background: #fff;
    list-style: none; }
  .plan-edit__item {
    padding: 15px;
    text-align: center;
    border-bottom: solid 1px #e5e5e5; }
    .plan-edit__item a,
    .plan-edit__item label {
      text-decoration: none;
      color: #0072ba;
      font-size: 17px;
      display: block; }
    .plan-edit__item:last-child {
      border-bottom: none; }
  .plan-edit__checkbox:checked ~ .plan-edit__overlay {
    display: block;
    opacity: 0.5; }
  .plan-edit__checkbox:checked ~ .plan-edit__content {
    transform: translateY(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15); }

.plan-overwrite {
  position: relative;
  /* チェックがついたら表示させる */ }
  .plan-overwrite__checkbox {
    display: none; }
  .plan-overwrite__content {
    overflow: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    transition: 0.3s ease-in-out;
    transform: translateY(105%);
    color: #231815;
    background: #fff;
    border-radius: 12px 12px 0 0;
    height: 90%; }
  .plan-overwrite__header {
    background-color: #f5f5f5;
    height: 54px;
    display: flex;
    align-items: center; }
  .plan-overwrite__header-left {
    flex: 1 1 0%;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 20px; }
  .plan-overwrite__header-center {
    align-items: center; }
  .plan-overwrite__header-title {
    font-size: 17px;
    color: #000; }
  .plan-overwrite__header-cansel {
    font-size: 17px;
    color: #0072ba; }
  .plan-overwrite__checkbox:checked ~ .plan-overwrite__overlay {
    display: block;
    opacity: 0.5; }
  .plan-overwrite__checkbox:checked ~ .plan-overwrite__content {
    transform: translateY(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15); }

.map-container {
  background-color: #aaa;
  position: relative; }
  .map-container__bottom {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: calc(55px + 15px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10; }
  .map-container__location-icon {
    margin-right: -5px;
    margin-bottom: 25px;
    width: 68px;
    height: 68px; }
  .map-container__board {
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 6px #00000029;
    border-radius: 16px 0 16px 16px;
    padding: 15px;
    width: 100%; }
  .map-container__close-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    transform: translateY(-50%); }

.container--no-footer.map-container .map-container__bottom {
  bottom: calc(105px - 55px); }

.map-content {
  position: absolute;
  width: 100%;
  height: calc(100% - 44px - 55px);
  z-index: 0; }

.container--no-header.container--no-footer .map-content {
  height: 100%; }

.map-detail .item-row {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .map-detail .item-row__left {
    margin-right: 15px;
    flex: 0 0 85px;
    width: 85px;
    height: 100%; }
  .map-detail .item-row__center {
    flex: 1 1 auto; }
  .map-detail .item-row__header {
    margin-bottom: 10px;
    height: 36px;
    display: flex;
    align-items: center; }
    .map-detail .item-row__header h3 {
      overflow: hidden;
      display: -webkit-inline-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      font-size: 16px;
      font-weight: bold;
      line-height: 18px; }

.map-detail .item-image {
  width: 85px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px; }

.map-detail .button, .map-detail .home__button, .map-detail .home__button--bold {
  height: 45px;
  line-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .map-detail .button img, .map-detail .home__button img, .map-detail .home__button--bold img {
    margin-right: 5px; }

.map-detail .button:not(:last-child), .map-detail .home__button:not(:last-child), .map-detail .home__button--bold:not(:last-child) {
  margin-bottom: 10px; }

.map-list-menu {
  padding-bottom: 50px; }

.map-spot-list__list {
  list-style: none;
  overflow: auto;
  height: 150px; }
  .map-spot-list__list li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6; }

.map-spot-list__item {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 10px;
  height: 56px;
  color: #231815;
  text-decoration: none;
  display: flex;
  align-items: center; }

.map-spot-list__item-inner {
  overflow: hidden;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px; }

.map-top-bar {
  height: 46px;
  margin-top: 18px;
  overflow-x: scroll;
  z-index: 10;
  position: absolute;
  width: 100%; }
  .map-top-bar .inner {
    margin-left: 30px;
    white-space: nowrap; }
  .map-top-bar .button, .map-top-bar .home__button, .map-top-bar .home__button--bold {
    display: inline-block;
    height: 36px;
    width: 120px;
    line-height: 36px;
    font-weight: bold;
    background-color: #fff;
    margin-right: 10px;
    font-size: 12px;
    box-shadow: 0 3px 6px #00000029; }
    .map-top-bar .button .icon, .map-top-bar .home__button .icon, .map-top-bar .home__button--bold .icon {
      display: inline-block;
      width: 36px;
      height: 36px;
      vertical-align: -13px; }
  .map-top-bar .button--primary {
    display: inline-block;
    height: 36px;
    width: 120px;
    line-height: 36px;
    font-weight: bold;
    background-color: #0072ba;
    margin-right: 10px;
    font-size: 12px;
    box-shadow: 0 3px 6px #00000029; }
    .map-top-bar .button--primary .icon {
      display: inline-block;
      width: 36px;
      height: 36px;
      vertical-align: -13px; }
  .map-top-bar input[type="checkbox"] {
    display: none; }
    .map-top-bar input[type="checkbox"]:checked + .button, .map-top-bar input[type="checkbox"]:checked + .home__button, .map-top-bar input[type="checkbox"]:checked + .home__button--bold {
      background: #0072ba;
      color: #fff; }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-favorite, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-favorite, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-favorite {
        background-image: url(/images/map_ic_favorite_white.svg); }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-sightseeing, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-sightseeing, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-sightseeing {
        background-image: url(/images/map_ic_sightseeing_white.svg); }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-gourmet, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-gourmet, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-gourmet {
        background-image: url(/images/map_ic_gourmet_white.svg); }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-okonomiyaki, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-okonomiyaki, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-okonomiyaki {
        background-image: url(/images/map_ic_okonomiyaki_white.svg); }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-traffic, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-traffic, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-traffic {
        background-image: url(/images/map_ic_traffic_white.svg); }
      .map-top-bar input[type="checkbox"]:checked + .button .icon-shopping, .map-top-bar input[type="checkbox"]:checked + .home__button .icon-shopping, .map-top-bar input[type="checkbox"]:checked + .home__button--bold .icon-shopping {
        background-image: url(/images/map_ic_shopping_white.svg); }

/*  copyright  */
.mypage-copyright {
  padding: 2px 25px 20px; }
  .mypage-copyright__title {
    margin: 18px 0;
    font-size: 15px; }
  .mypage-copyright__info {
    font-size: 13px;
    margin-bottom: 30px; }

/*  favorite  */
.mypage-favorite__content {
  display: none;
  margin: 13px 20px;
  padding-bottom: 48px; }
  .mypage-favorite__content--active {
    display: block; }

.mypage-favorite__text {
  font-size: 13px;
  color: #6c6c6c;
  margin: 5px 0; }
  .mypage-favorite__text--result-zero {
    margin-top: 100px;
    text-align: center; }

.mypage-favorite__button--disabled {
  color: #ccc;
  pointer-events: none; }

.mypage-favorite__checkbox {
  float: right; }
  .mypage-favorite__checkbox li {
    position: relative;
    list-style: none; }
    .mypage-favorite__checkbox li:last-child {
      border-bottom: none; }
    .mypage-favorite__checkbox li input[type="checkbox"] {
      display: none; }
    .mypage-favorite__checkbox li label {
      display: inline-block;
      padding: 15px 0;
      cursor: pointer; }
      .mypage-favorite__checkbox li label::after {
        content: "";
        width: 30px;
        height: 30px;
        background-size: 30px;
        background-image: url("/images/ic_common_check.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: 10px;
        left: -45px; }
    .mypage-favorite__checkbox li input[type="checkbox"]:checked + label::after {
      background-image: url("/images/ic_common_check_active.svg"); }
  .mypage-favorite__checkbox--hidden {
    display: none; }

.mypage-favorite__footer--hidden {
  display: none; }

/*  qa  */
.mypage-qa {
  line-height: 21px;
  margin: 0; }
  .mypage-qa__list {
    margin: 0; }
  .mypage-qa__question {
    font-size: 15px;
    font-weight: bold;
    border-bottom: solid 1px #f5f5f5;
    cursor: pointer;
    padding: 0 10px 0 0; }
  .mypage-qa__list:first-of-type .mypage-qa__question {
    border-top: solid 1px #f5f5f5; }
  .mypage-qa__question-initial {
    display: inline;
    padding: 5px 7px;
    margin: 10px;
    border: solid 1px #fff; }
  .mypage-qa__question-title {
    display: block;
    color: #0072ba;
    background-image: url("../images/ic_menu_open.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    padding: 10px 25px 10px 5px;
    /* 改行位置を揃える */
    margin-left: 49px;
    text-indent: -49px; }
  .mypage-qa__question--active .mypage-qa__question-title {
    background-image: url("../images/ic_menu_close.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px; }
  .mypage-qa__answer {
    background: #f5f5f5;
    border-bottom: solid 1px #f5f5f5;
    margin: 0;
    padding: 20px 7px 40px 7px;
    display: none; }
  .mypage-qa__answer-initial {
    font-size: 15px;
    font-weight: bold;
    display: inline;
    color: #0072ba;
    background: #fff;
    border: solid 1px #0072ba;
    padding: 5px 7px;
    margin: 10px; }
  .mypage-qa__answer-text {
    font-size: 14px;
    display: block;
    color: #231815;
    /* 改行位置を揃える */
    margin-left: 48px;
    text-indent: -48px; }

/*  quit  */
.mypage-quit {
  padding: 20px 25px; }
  .mypage-quit__title {
    font-size: 15px; }
  .mypage-quit__info {
    font-size: 13px;
    margin-top: 20px; }
  .mypage-quit__info-alert {
    color: #e0502e; }
  .mypage-quit__button {
    margin: 50px 0; }

/*  login  */
.login-login {
  text-align: center;
  padding: 20px; }
  .login-login__main {
    margin-bottom: 10px; }
  .login-login__info {
    margin-top: 50px; }
  .login-login__image {
    width: 100%; }
  .login-login__button {
    margin-top: 20px; }
  .login-login__link-wrapper {
    margin-top: 40px; }
  .login-login__link {
    color: #0072ba;
    font-size: 14px;
    text-decoration: underline; }

/*  term  */
.login-term {
  padding: 20px 25px; }
  .login-term__title {
    font-size: 15px; }
  .login-term__info {
    font-size: 13px;
    margin-top: 15px; }

.welcome-welcome {
  text-align: center;
  padding: 20px;
  margin-top: 62px; }
  .welcome-welcome__main {
    margin-bottom: 10px; }
  .welcome-welcome__image {
    width: 100%; }
  .welcome-welcome__button {
    margin-top: 20px; }

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .error-page__image {
    margin-bottom: 20px;
    width: 375px; }
  .error-page__button {
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .error-page__icon {
    margin: -10px 0;
    width: 45px;
    height: 45px; }

.user-info {
  padding-left: 20px;
  padding-right: 20px; }
  .user-info__lead {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    text-align: center; }
  .user-info__form-row:not(:last-child) {
    margin-bottom: 15px; }
  .user-info__form-group {
    display: flex; }
  .user-info__textbox {
    width: 100%;
    display: flex;
    flex-direction: column; }
  .user-info__form-group .user-info__textbox:not(:last-child) {
    margin-right: 5px; }
  .user-info__label {
    margin-bottom: 3px;
    font-size: 14px;
    color: #6c6c6c; }
  .user-info__input {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    color: inherit;
    font-family: inherit;
    font-size: 15px; }
    .user-info__input:focus {
      outline: none; }
    .user-info__input::placeholder {
      color: #aaa; }
  .user-info__form-note {
    margin-top: 5px;
    font-size: 12px;
    color: #999; }
  .user-info__action {
    display: flex;
    justify-content: flex-end; }
  .user-info__button {
    width: 120px; }
  .user-info__select {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    text-transform: none;
    color: inherit;
    font: inherit;
    font-size: 15px;
    border-radius: 5px; }
  .user-info__item {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-radius: 18px;
    align-items: center; }
  .user-info__select__birthdate {
    padding: 0 15px;
    width: 30%;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    text-transform: none;
    color: inherit;
    font: inherit;
    font-size: 15px;
    border-radius: 5px;
    margin-right: 3%;
    float: left; }
  .user-info__datepicker {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    color: inherit;
    font: inherit;
    font-size: 15px; }
    .user-info__datepicker:focus {
      outline: none; }
    .user-info__datepicker::placeholder {
      color: inherit; }
  .user-info__option {
    background-color: #ffffff; }
  .user-info__section-heading {
    margin-bottom: 15px;
    padding-left: 8px;
    border-left: 2px solid #0072ba;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px; }

/*# sourceMappingURL=style.css.map */