@charset "UTF-8";
:root {
  --main-color: #0066BB;
  --sub-color: #238ac9;
  --focus-color: #E5F0F8;
  --caution-color: #B22222;
  --green-color: #60bb33;
  --gray-color: #ccc;
  --dark-gray-color: #212529;
  --side-area: 320px;
  --main-area: 647px;
  --area-margin: -3.4%;
}

main {
  line-height: 1.5;
}

/* Chrome には見せないようにして、Safariだけに適用 */
@supports (-webkit-touch-callout: none) {
  body {
    /* Safari */
    height: -webkit-fill-available;
  }
}
/* datalistの▶️を消す */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

p {
  margin-bottom: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  display: initial;
}

label {
  margin-bottom: 0;
}

*,
:after,
:before {
  box-sizing: content-box;
}

:where(.site-header) *,
:where(.site-header) :after,
:where(.site-header) :before,
:where(.site-footer) *,
:where(.site-footer) :after,
:where(.site-footer) :before {
  box-sizing: border-box;
}

.is-sp-only {
  display: none;
}
@media screen and (min-width: 899px) {
  .is-sp-only {
    display: block;
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.radio-item {
  width: fit-content;
  line-height: 24px;
  cursor: pointer;
}
.radio-item--label {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 5px;
  box-sizing: border-box;
  padding-left: 27px;
  height: 20px;
}
.radio-item input[type=radio] {
  opacity: 0;
  position: absolute;
}
.radio-item input[type=radio] + .radio-item--label::before {
  content: "";
  border: 1px solid #999999;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.radio-item input[type=radio] + .radio-item--label::after {
  content: "";
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  transition: all 0.1s;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.radio-item input[type=radio]:focus + .radio-item--label::before {
  border: 2px solid var(--main-color);
  background: var(--focus-color);
}
.radio-item input[type=radio]:checked + .radio-item--label::before {
  border: 2px solid var(--main-color);
  left: -1px;
}
.radio-item input[type=radio]:checked + .radio-item--label::after {
  background-color: var(--main-color);
  opacity: 1;
}

.checkbox-item {
  width: fit-content;
  line-height: 24px;
  cursor: pointer;
}
.checkbox-item--label {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 5px;
  box-sizing: border-box;
  padding-left: 27px;
}
.checkbox-item input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.checkbox-item input[type=checkbox] + .checkbox-item--label::before {
  content: "";
  border: 1px solid #999999;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.checkbox-item input[type=checkbox] + .checkbox-item--label::after {
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  opacity: 0;
  transform: rotate(45deg);
  transition: all 0.1s;
  width: 5px;
  height: 10px;
  top: 4px;
  left: 7px;
  z-index: 1;
  opacity: 0;
}
.checkbox-item input[type=checkbox]:focus + .checkbox-item--label::before {
  border: 1px solid var(--main-color);
  background: var(--focus-color);
}
.checkbox-item input[type=checkbox]:checked + .checkbox-item--label::before {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}
.checkbox-item input[type=checkbox]:checked + .checkbox-item--label::after {
  opacity: 1;
}

.reservation-btn {
  border: 1px solid var(--green-color);
  border-radius: 4px;
  padding: 6px 12px;
  display: block;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  font-weight: inherit;
  color: #fff;
  background: url(/assets/img/common/arrow-r-white.svg) 95% center no-repeat var(--green-color);
  background-size: 7px 10px;
}
.reservation-btn:visited {
  color: #fff;
}
.reservation-btn:hover, .reservation-btn:focus {
  color: var(--green-color);
  background: url(/assets/img/common/arrow-r-green.svg) 95% center no-repeat #fff;
  text-decoration: none;
}
.reservation-btn--plain {
  background: var(--green-color);
  padding: 6px;
}
.reservation-btn--plain:hover, .reservation-btn--plain:focus {
  background: #fff;
}

.all-select-btn {
  padding: 5px 7px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: var(--main-color);
}
.all-select-btn:hover, .all-select-btn:focus {
  background: var(--focus-color);
}

/*------------------------------------------------------------
 * Helpers
 *----------------------------------------------------------*/
.caution-col {
  color: var(--caution-color);
}

.site-footer {
  margin-top: 0 !important;
}

.fs-15 {
  font-size: 15px;
}

.site-header.headroom--unpinned {
  transform: translateY(0);
}
@media screen and (min-width: 899px) {
  .site-header.headroom--unpinned {
    transform: translateY(-100%);
  }
}

/*------------------------------------------------------------
 * Compornent
 *----------------------------------------------------------*/
#tokyo-search-filter-modal {
  visibility: hidden;
  opacity: 0;
}

body:has(.search-filter.is-open)::before,
body:has(.tokyo-search-filter.is-open)::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.confirm-modal {
  position: absolute;
  z-index: 10010;
  display: none;
}
.confirm-modal--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.confirm-modal.is-open {
  display: block;
}
.confirm-modal--container {
  height: max-content;
  width: max-content;
  max-height: calc(100% - 24px);
  max-width: calc(100% - 24px);
  overflow: auto;
  margin: auto;
  background: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}
.confirm-modal--container main {
  font-size: 15px;
}
.confirm-modal--container footer {
  display: flex;
  gap: 8px;
}
.confirm-modal--btn {
  padding: 5px 7px;
  border: 1px solid var(--main-color);
  height: 32px;
  min-width: 100px;
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
  line-height: 1;
  color: var(--main-color);
}
.confirm-modal--btn:hover, .confirm-modal--btn:focus {
  background: var(--focus-color);
}

.content-box {
  padding: 0 3.125%;
  max-width: 100%;
  background-color: #F0F0F0;
}
.content-box > section {
  padding-top: 12px;
  padding-bottom: 16px;
}
@media screen and (min-width: 899px) {
  .content-box {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .content-box > aside {
    min-width: var(--side-area);
    width: var(--side-area);
    margin: 60px 0;
    height: 100%;
  }
  .content-box > section {
    width: calc(100% - var(--side-area));
    padding: 60px 20px 0;
    max-width: var(--main-area);
  }
}

.lev1-heading-map {
  margin: 15px 0 20px 0;
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 899px) {
  .lev1-heading-map {
    margin: 40px 0 52px 0;
    font-size: 28px;
  }
}

.search-filter-button {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: solid 1px var(--main-color);
  font-weight: 600;
  font-size: 15px;
  color: var(--main-color);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.search-filter-button--wrap {
  position: sticky;
  top: 0;
  padding: 15px 12px 0;
  background: white;
  z-index: 11;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0);
}
.search-filter-button--wrap.is-fixed {
  padding: 6px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 899px) {
  .search-filter-button--wrap {
    display: none;
  }
}
.search-filter-button:focus, .search-filter-button:hover {
  background: var(--focus-color);
}
.search-filter-button::before {
  content: "";
  min-width: 50px;
  height: 100%;
  background: url(/assets/img/common/icon-settings.svg) center no-repeat var(--main-color);
  background-size: 23px 19.31px;
  display: block;
}
.search-filter-button::after {
  content: "";
  min-width: 16px;
  height: 100%;
  background: url(/assets/img/common/icon-window-open.svg) center no-repeat;
  background-size: 16px 16px;
  margin-right: 16px;
  display: block;
}

.shop-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-group--aria {
  font-size: 18px;
  font-weight: 600;
  transform: translateY(-0.2em);
}
.shop-group--aria a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  color: #000;
  line-height: 1.7;
}
.shop-group--aria a:hover, .shop-group--aria a:focus {
  color: var(--main-color);
}
.shop-group--count {
  display: inline-block;
  padding: 8px;
  background: #fff;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (min-width: 899px) {
  .shop-group--count {
    font-size: 16px;
  }
}

.shop-group-toggle:not(:last-of-type) summary {
  border-bottom: none;
}
.shop-group-toggle:last-of-type {
  margin-bottom: 32px;
}
.shop-group-toggle summary {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 56px;
  margin: 0 var(--area-margin);
  padding: 16px 12px;
  background: #fff;
  border-block: 1px solid var(--gray-color);
  font-size: 15px;
  cursor: pointer;
}
.shop-group-toggle summary + .shop-block {
  margin-top: 16px;
}
.shop-group-toggle summary:hover, .shop-group-toggle summary:focus {
  background: var(--focus-color);
}
.shop-group-toggle summary::-webkit-details-marker {
  display: none;
  /* iOSで表示されるデフォルトの三角形アイコンを消す */
}
@media screen and (min-width: 899px) {
  .shop-group-toggle summary {
    margin: 0;
  }
}
.shop-group-toggle--aria {
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: var(--main-color);
}
.shop-group-toggle--count {
  background: #F0F0F0;
  padding: 6px 4px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 100%;
  color: var(--dark-gray-color);
  position: absolute;
  left: 10em;
}
.shop-group-toggle--count.is-shibu {
  left: 20em;
}
.shop-group-toggle--ico {
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 3.75%;
  bottom: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border: solid 1px var(--main-color);
  background: white;
  text-align: center;
  transform: scale(1, -1);
}
.shop-group-toggle--ico img {
  transform: translateY(-1px);
}

details[open].shop-group-toggle summary {
  border-block: 1px solid var(--main-color);
  background: var(--focus-color);
}
details[open].shop-group-toggle .shop-group-toggle--ico {
  transform: scale(-1, 1);
}
details[open].shop-group-toggle .shop-group-toggle--count {
  background: #fff;
}

.shop-block {
  margin-bottom: 20px;
  border-radius: 4px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.shop-block:last-of-type {
  margin-bottom: 32px;
}
.shop-block--empty {
  padding: 28px;
  margin-bottom: 32px;
  border-radius: 4px;
  background: white;
  text-align: center;
}

.shop-images {
  padding: 12px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 899px) {
  .shop-images {
    padding: 20px;
  }
}
.shop-images .shop-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
}
.shop-images .shop-swiper::before, .shop-images .shop-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 20px;
  z-index: 9;
  display: block;
  background: #fff;
}
.shop-images .shop-swiper::before {
  left: -20px;
}
.shop-images .shop-swiper::after {
  right: -20px;
}
.shop-images .shop-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: #fff;
  text-align: center;
}
.shop-images .shop-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
}
.shop-images .shop-swiper .swiper-button-prev,
.shop-images .shop-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -46px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 48px 48px;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.shop-images .shop-swiper .swiper-button-prev::after,
.shop-images .shop-swiper .swiper-button-next::after {
  font-size: 0;
}
.shop-images .shop-swiper .swiper-button-next {
  right: -24px;
  background: url(/assets/img/common/icon-swiper-next-sp.png) center/24px 33px no-repeat;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .shop-images .shop-swiper .swiper-button-next {
    background: url(/assets/img/common/icon-swiper-next-pc.svg) center no-repeat;
    pointer-events: auto;
  }
}
.shop-images .shop-swiper .swiper-button-next.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .shop-images .shop-swiper .swiper-button-next.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
    transform: scale(-1, 1);
  }
}
.shop-images .shop-swiper .swiper-button-prev {
  left: -24px;
  background: url(/assets/img/common/icon-swiper-prev-sp.png) center/24px 33px no-repeat;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .shop-images .shop-swiper .swiper-button-prev {
    background: url(/assets/img/common/icon-swiper-prev-pc.svg) center no-repeat;
    pointer-events: auto;
  }
}
.shop-images .shop-swiper .swiper-button-prev.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .shop-images .shop-swiper .swiper-button-prev.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
  }
}
.shop-images .shop-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 1;
  background: var(--gray-color);
}
.shop-images .shop-swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #0066BB;
}

.shop-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 12px;
}
@media screen and (min-width: 899px) {
  .shop-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
  }
}
.shop-info--ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.shop-info--ttl a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  color: #000;
  line-height: 1.7;
}
.shop-info--ttl a:hover, .shop-info--ttl a:focus {
  color: var(--main-color);
}
.shop-info--ttl.is-new::after {
  content: "NEW";
  display: inline-flex;
  align-items: center;
  padding: 5px 4px;
  border-radius: 2px;
  background: #EE7700;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 899px) {
  .shop-info--ttl {
    width: 41%;
  }
}
.shop-info--sub {
  display: none;
  flex: none;
}
@media screen and (min-width: 899px) {
  .shop-info--sub {
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--gray-color);
    padding: 20px 10px;
    font-size: 14px;
  }
}
.shop-info--txt {
  margin-bottom: 0;
  margin-right: auto;
}
@media screen and (min-width: 899px) {
  .shop-info--txt {
    font-size: 14px;
    flex: 1;
  }
}

.shop-storage {
  position: relative;
  overflow: hidden;
  margin: 0 var(--area-margin);
  padding: 16px 38px;
  mask: none;
}
@media screen and (min-width: 899px) {
  .shop-storage {
    padding: 20px 40px;
    mask: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 3%, rgb(255, 255, 255) 97%, rgba(255, 255, 255, 0) 100%);
  }
}
.shop-storage .storage-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.shop-storage .storage-swiper--header {
  min-height: 45px;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  background: var(--main-color);
  color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.shop-storage .storage-swiper--sub {
  grid-column: 1/2;
  min-height: 30px;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  background: var(--caution-color);
  color: #fff;
}
.shop-storage .storage-swiper--sub > span {
  font-size: 16px;
  transform: translateY(-0.5px);
}
.shop-storage .storage-swiper--contents {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: flex-start;
  gap: 1px;
  height: 100%;
  border-radius: 0 0 4px 4px;
  border: solid 1px var(--gray-color);
  border-top: 0;
  overflow: hidden;
}
@media screen and (min-width: 899px) {
  .shop-storage .storage-swiper--contents {
    grid-template-columns: 1fr 1fr;
  }
  .shop-storage .storage-swiper--contents .storage-swiper--contents--sub {
    grid-column: 1/3;
  }
}
.shop-storage .storage-swiper--contents.is-empty {
  display: flex;
  padding: 16px;
}
.shop-storage .storage-swiper--contents.is-empty > div {
  border-radius: 4px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #F0F0F0;
  font-size: 15px;
}
.shop-storage .storage-swiper .swiper-wrapper {
  align-items: stretch;
}
.shop-storage .storage-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.shop-storage .storage-swiper .swiper-pagination {
  position: static;
  margin: 12px 0;
}
.shop-storage .storage-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--gray-color);
  color: #000;
}
.shop-storage .storage-swiper .swiper-pagination-bullet-active {
  background: #0066BB;
  color: #fff;
}
.shop-storage .storage-swiper .swiper-button-prev,
.shop-storage .storage-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 48px 48px;
  cursor: pointer;
  margin-top: -32px;
}
.shop-storage .storage-swiper .swiper-button-prev::after,
.shop-storage .storage-swiper .swiper-button-next::after {
  font-size: 0;
}
.shop-storage .storage-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 1;
  background: var(--gray-color);
}
.shop-storage .storage-swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #0066BB;
}
.shop-storage .storage-swiper .swiper-button-next {
  background: url(/assets/img/common/icon-swiper-next-sp.png) center/24px 33px no-repeat;
  right: 0;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .shop-storage .storage-swiper .swiper-button-next {
    background: url(/assets/img/common/icon-swiper-next-pc.svg) center no-repeat;
    right: 18px;
    pointer-events: auto;
  }
}
.shop-storage .storage-swiper .swiper-button-next.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .shop-storage .storage-swiper .swiper-button-next.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
    transform: scale(-1, 1);
  }
}
.shop-storage .storage-swiper .swiper-button-prev {
  background: url(/assets/img/common/icon-swiper-prev-sp.png) center/24px 33px no-repeat;
  left: 0;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .shop-storage .storage-swiper .swiper-button-prev {
    background: url(/assets/img/common/icon-swiper-prev-pc.svg) center no-repeat;
    left: 18px;
    pointer-events: auto;
  }
}
.shop-storage .storage-swiper .swiper-button-prev.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .shop-storage .storage-swiper .swiper-button-prev.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
  }
}

.storage-list {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 3fr 2fr;
  grid-template-rows: auto;
  gap: 12px;
  min-height: 65px;
  height: max-content;
  padding: 5px 12px;
  background: white;
  box-shadow: 0 1px 0px 0px var(--gray-color), 1px 0 0px 0px var(--gray-color);
}
@media screen and (min-width: 899px) {
  .storage-list {
    gap: 16px;
  }
}
.storage-list p {
  margin-bottom: 5px;
}
.storage-list--size {
  font-weight: 600;
  font-size: 14px;
}
.storage-list--price {
  font-size: 15px;
  font-weight: 600;
  color: var(--caution-color);
  text-align: end;
}
.storage-list--tax-inc {
  font-size: 12px;
  color: var(--caution-color);
  text-align: end;
}
.storage-list--established-price {
  font-size: 12px;
  text-decoration: line-through;
  text-align: end;
}

.shop-url {
  font-size: 15px;
  text-underline-offset: 0.35em;
  color: var(--dark-gray-color);
  display: block;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
}
.shop-url:hover, .shop-url:focus {
  color: var(--main-color);
}
.shop-url:visited {
  color: var(--dark-gray-color);
}

.info-toggle {
  padding-bottom: 32px;
}
.info-toggle summary {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 53px;
  padding: 12px 30px;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  font-size: 15px;
  color: var(--main-color);
  font-weight: 600;
  cursor: pointer;
}
.info-toggle summary:hover, .info-toggle summary:focus {
  background: var(--focus-color);
}
.info-toggle summary::-webkit-details-marker {
  display: none;
  /* iOSで表示されるデフォルトの三角形アイコンを消す */
}
.info-toggle--contents {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 4px;
}
.info-toggle--ico {
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 3.75%;
  bottom: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border: solid 1px var(--main-color);
  background: white;
  text-align: center;
  transform: scale(1, -1);
}
.info-toggle--ico img {
  transform: translateY(-1px);
}

details[open].info-toggle summary {
  background: #fff;
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
}
details[open].info-toggle .info-toggle--ico {
  transform: scale(-1, 1);
}
details[open].info-toggle .info-toggle--contents {
  border-radius: 0 0 4px 4px;
}
details[open].info-toggle .info-toggle--contents p:last-child {
  margin-bottom: 0;
}

.nearby-shop {
  margin: 0 var(--area-margin);
  padding: 0 12px 40px;
}
@media screen and (min-width: 899px) {
  .nearby-shop {
    margin: 0;
    padding: 0 0 64px;
  }
}
.nearby-shop--ttl {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 899px) {
  .nearby-shop--ttl {
    font-size: 24px;
    padding-bottom: 24px;
  }
}
.nearby-shop--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
@media screen and (min-width: 899px) {
  .nearby-shop--list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.nearby-shop--item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--gray-color);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.nearby-shop--item--img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.nearby-shop--item--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 12px;
}
.nearby-shop--item--name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-right: auto;
}
.nearby-shop--item--name a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  color: #000;
  line-height: 1.7;
}
.nearby-shop--item--txt {
  font-size: 14px;
}

.tokyo-shop-fees {
  background: #fff;
  padding: 40px 12px;
  margin: 0 auto;
  max-width: 1000px;
}
.tokyo-shop-fees > section:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (min-width: 899px) {
  .tokyo-shop-fees {
    padding: 54px 12px 64px;
  }
  .tokyo-shop-fees > section:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.tokyo-shop-fees--ttl {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 899px) {
  .tokyo-shop-fees--ttl {
    font-size: 24px;
    padding-bottom: 12px;
  }
}
.tokyo-shop-fees--sub {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
}

.btn-list {
  display: grid;
  gap: 9px;
}
.btn-list.is-col-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
@media screen and (min-width: 899px) {
  .btn-list.is-col-3 {
    grid-template-columns: repeat(8, 1fr);
  }
}
.btn-list--item a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--gray-color);
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.btn-list--item a:hover, .btn-list--item a:focus {
  background: var(--focus-color);
}
.btn-list--item.is-col-join-1_3 {
  grid-column: 1/3;
}

.search-filter {
  display: none;
}
@media screen and (min-width: 899px) {
  .search-filter {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .search-filter section {
    background: white;
    border-radius: 4px;
  }
  .search-filter section .search-filter--ttl {
    padding: 16px 0 12px;
    margin: 0 12px;
    font-size: 17px;
  }
  .search-filter section .search-filter--ttl.is-border {
    border-bottom: 2px solid var(--main-color);
  }
  .search-filter section .search-filter--area {
    padding: 0 12px 16px;
  }
  .search-filter section .search-filter--area .radio-item {
    font-size: 16px;
  }
  .search-filter section .search-filter--area .checkbox-item {
    font-size: 14px;
  }
  .search-filter section .search-filter--item--tokyo--footer {
    display: block;
    margin-top: 14px;
  }
  .search-filter section .search-filter--item--tokyo--footer > button {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }
  .search-filter section .search-filter--item--tokyo--footer > button:hover, .search-filter section .search-filter--item--tokyo--footer > button:focus {
    background: #238ac9;
  }
  .search-filter section .search-storage-swiper--wrap {
    padding: 0 12px 16px;
    margin: 0 0 -10px 0;
  }
  .search-filter section .search-filter--options {
    padding: 0 12px 16px;
  }
  .search-filter section .search-filter--options--footer {
    display: block;
    margin-top: 14px;
  }
  .search-filter section .search-filter--options--footer > button {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }
  .search-filter section .search-filter--options--footer > button:hover, .search-filter section .search-filter--options--footer > button:focus {
    background: #238ac9;
  }
  .search-filter .search-filter--footer {
    display: none;
  }
}
.search-filter.is-open {
  display: block;
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  max-height: calc(100% - 24px);
  max-width: 500px;
  width: calc(100% - 24px);
  margin: auto;
  background: #fff;
  border-radius: 4px;
  overflow: auto;
}
@media screen and (min-width: 899px) {
  .search-filter.is-open {
    width: 500px;
  }
}
.search-filter--header {
  margin: 40px 12px 20px;
  padding-bottom: 13px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 2px solid var(--main-color);
}
@media screen and (min-width: 899px) {
  .search-filter--header {
    display: none;
  }
}
.search-filter--close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  border: 0;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  border: solid 1px var(--main-color);
  background: url(/assets/img/common/icon-close-3.svg) center no-repeat var(--main-color);
}
.search-filter--footer {
  background: #E5F0F8;
  margin-top: 24px;
  padding: 12px;
}
.search-filter--footer > button {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.search-filter--footer > button:hover, .search-filter--footer > button:focus {
  background: #238ac9;
}
.search-filter--area {
  padding: 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.search-filter--area .is-wide {
  grid-column: 1/3;
}
.search-filter--ttl {
  min-height: 25px;
  padding: 5px 15px;
  background: #F0F0F0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 899px) {
  .search-filter--ttl {
    background: #fff;
  }
}
.search-filter--item {
  display: block;
  justify-content: space-between;
  border-radius: 3px;
  padding: 12px 10px;
  background: white;
  border: 1px solid var(--main-color);
  position: relative;
}
.search-filter--item .radio-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.search-filter--item .radio-item:has(#tokyo-list) {
  width: calc(50% - 14px);
  padding-right: calc(50% - 14px);
}
.search-filter--item--count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 23px;
  border-radius: 4px;
  background: #E5F0F8;
  font-size: 13px;
  color: var(--dark-gray-color);
}
.search-filter--item--ico {
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 3.75%;
  bottom: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border: solid 1px var(--main-color);
  background: url(/assets/img/common/arrow-b-blue.svg) center no-repeat white;
  text-align: center;
}
.search-filter--item--tokyo {
  border-radius: 3px;
  padding: 0 12px 20px;
  background: #F5F5F5;
  border: 1px solid var(--main-color);
}
.search-filter--item--tokyo--footer {
  display: none;
}
.search-filter--options {
  padding: 0 16px;
}
.search-filter--options--footer {
  display: none;
}
.search-filter .checkbox-group--ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0 12px;
  font-weight: 600;
  font-size: 16px;
}
.search-filter .checkbox-group--group {
  display: grid;
  gap: 8px;
}
.search-filter .checkbox-group--group.is-col-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.search-filter .checkbox-group--group.is-col-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.search-filter details[open] .search-filter--item {
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
.search-filter details[open] .search-filter--item--ico {
  background: url(/assets/img/common/arrow-t-white.svg) center no-repeat var(--main-color);
}
.search-filter details[open] .search-filter--item--tokyo {
  border-radius: 0 0 3px 3px;
}

.search-storage-swiper {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.search-storage-swiper--wrap {
  margin: 20px 0 5px;
  position: relative;
  overflow: hidden;
  transform: translateY(-10px);
  margin-bottom: -6px;
}
.search-storage-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1490196078);
  height: auto;
  margin-top: 10px;
  cursor: pointer;
}
.search-storage-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  flex: 1;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-slide {
    margin-bottom: 0;
  }
}
.search-storage-swiper .swiper-slide:has(input[type=radio]:checked)::after {
  content: "";
  display: block;
  border: 2px solid var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
}
.search-storage-swiper .swiper-slide .storage-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 15px;
  padding: 5px;
  background: var(--main-color);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  flex: 1;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-slide .storage-ttl {
    min-height: 22px;
  }
}
.search-storage-swiper .swiper-slide .radio-item {
  position: absolute;
  right: 4px;
  bottom: 10px;
}
.search-storage-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 1;
  background: var(--gray-color);
}
.search-storage-swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #0066BB;
}
.search-storage-swiper .swiper-button-prev,
.search-storage-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background-size: 48px 48px;
  position: absolute;
  top: calc(50% - 20px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-storage-swiper .swiper-button-prev::after,
.search-storage-swiper .swiper-button-next::after {
  font-size: 0;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-button-prev,
  .search-storage-swiper .swiper-button-next {
    display: none;
  }
}
.search-storage-swiper .swiper-button-next {
  background: url(/assets/img/common/icon-swiper-next-sp.png) center/24px 33px no-repeat;
  right: -5px;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-button-next {
    background: url(/assets/img/common/icon-swiper-next-pc.svg) center no-repeat;
    pointer-events: auto;
  }
}
.search-storage-swiper .swiper-button-next.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-button-next.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
    transform: translateY(-20px) scale(-1, 1);
  }
}
.search-storage-swiper .swiper-button-prev {
  background: url(/assets/img/common/icon-swiper-prev-sp.png) center/24px 33px no-repeat;
  left: -5px;
  pointer-events: none;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-button-prev {
    background: url(/assets/img/common/icon-swiper-prev-pc.svg) center no-repeat;
    pointer-events: auto;
  }
}
.search-storage-swiper .swiper-button-prev.is-disabled {
  display: none;
}
@media screen and (min-width: 899px) {
  .search-storage-swiper .swiper-button-prev.is-disabled {
    display: block;
    background: url(/assets/img/common/icon-swiper-disabled-pc.svg) center no-repeat;
  }
}
@media screen and (min-width: 899px) {
  .search-storage-swiper {
    overflow: visible;
    width: 100%;
  }
  .search-storage-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    transform: none !important;
  }
  .search-storage-swiper .swiper-pagination {
    display: none;
  }
}

.tokyo-search-filter {
  display: none;
}
.tokyo-search-filter--close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  border: 0;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  border: solid 1px var(--main-color);
  background: url(/assets/img/common/icon-close-3.svg) center no-repeat var(--main-color);
}
.tokyo-search-filter--header {
  margin: 40px 12px 20px;
  padding-bottom: 13px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 2px solid var(--main-color);
}
.tokyo-search-filter--area {
  border-radius: 3px;
  padding: 0 16px 16px;
  margin: 20px 16px;
  background: #F5F5F5;
}
.tokyo-search-filter--area .checkbox-group--ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0 10px;
  font-weight: 600;
  font-size: 16px;
}
.tokyo-search-filter--area .checkbox-group--group {
  display: grid;
  gap: 8px;
}
.tokyo-search-filter--area .checkbox-group--group .checkbox-item {
  font-size: 14px;
}
.tokyo-search-filter--area .checkbox-group--group.is-col-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.tokyo-search-filter--area .checkbox-group--group.is-col-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
.tokyo-search-filter--footer {
  display: block;
  margin-top: 14px;
}
.tokyo-search-filter--footer > button {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.tokyo-search-filter--footer > button:hover, .tokyo-search-filter--footer > button:focus {
  background: #238ac9;
}
.tokyo-search-filter.is-open {
  display: block;
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: max-content;
  max-height: calc(100% - 24px);
  max-width: 500px;
  width: calc(100% - 24px);
  overflow: auto;
  margin: auto;
  background: #fff;
  border-radius: 4px;
  overflow: auto;
}
@media screen and (min-width: 899px) {
  .tokyo-search-filter.is-open {
    width: 500px;
  }
}