@charset "UTF-8";
/*--
  font-family
--*/
/*--
  font-weight
  Noto Sans
--*/
/*--
  colors
  TODO 色増えすぎてるので整理したい
       変数として機能してないためそこも調整
--*/
/*
路線別色定義
----------------
kk : 京急線
ty : 東急東横線
sh : 東急新横浜線
mg : 東急目黒線
jt : JR東海道線
ji : JR鶴見線
js : JR湘南新宿ライン
jo : JR横須賀線
dt : 東急田園都市線
jh : JR横浜線
yg : 横浜市営地下鉄グリーンライン
yb : 横浜市営地下鉄ブルーライン
so : 相鉄本線
si : 相鉄いずみ野線
sy : 相鉄新横浜線
jk : JR京浜東北線・根岸線
ss : 金沢シーサイドライン
mm : みなとみらい線
ts : 東海道新幹線
jn : JR南武線
kd : こどもの国線
*/
/*--
  break points
--*/
/**
 * font-size
 *
 * @param $fontSize
 */
/**
 * vw
 *
 * for Mobile
 */
/**
 * letter-spacing
 *
 * @param $letterSpacingValue
 * @param $isMinus
 */
/**
 * line-height
 *
 * @param $fs
 * @param $lh
 */
/*--
  media queries
--*/
.common-width {
  max-width: 1000px;
  padding: 0 3vw;
  margin: 5.21vw auto 0;
}
@media screen and (max-width: 767px) {
  .common-width {
    padding: 0 4vw;
    margin: 8vw 0 0;
  }
}

.table-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em 3.5%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .table-contents {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 54px;
  }
}
.table-contents__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0.5em 40px 0.5em 0;
  transition: color 0.3s;
  border-bottom: 2px solid #00a5d5;
}
@media screen and (max-width: 767px) {
  .table-contents__link {
    height: auto;
    font-size: 0.9375rem;
    padding-right: 30px;
  }
}
.table-contents__link:hover {
  color: #00a5d5;
}
.table-contents__link::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 30px;
  height: 30px;
  transform: translateY(-50%) rotate(90deg);
  background: url("../images/common/arrow-bb.svg") no-repeat center right/contain;
}
@media screen and (max-width: 767px) {
  .table-contents__link::before {
    width: 25px;
    height: 25px;
  }
}

.ranking {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 24px;
}
.ranking__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 90px 8px 32px;
  border-radius: 25px;
  border: 2px solid #00a3d3;
  background-image: url("../images/common/arrow-bb.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 33px;
}
@media screen and (max-width: 767px) {
  .ranking__item {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 8px 90px 8px 24px;
  }
}
.ranking__item .name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .ranking__item .name {
    font-size: 1rem;
  }
}
.ranking__item .amount {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ranking__item .amount {
    font-size: 1rem;
  }
}

.ranking-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0 40px 5px;
  margin: 0 auto 56px;
  border-bottom: 3px solid #00a3d3;
}
@media screen and (max-width: 767px) {
  .ranking-button {
    width: 100%;
    font-size: 1rem;
    padding: 0 0 5px;
    border-bottom-width: 2px;
    background-size: 24px;
  }
}
.ranking-button.open::before {
  transform: translateY(-80%) rotate(180deg);
}
.ranking-button::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 80%, 0 0, 100% 0);
  background-color: #00a3d3;
}

.show-detail-link-button {
  display: block;
  max-width: 514px;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 24px 0;
  margin-inline: auto;
  text-align: center;
  border-top: 3px solid #00a3d3;
  border-bottom: 3px solid #00a3d3;
  background-image: url("../images/common/arrow-bb.svg");
  background-repeat: no-repeat;
  background-position: right 26px center;
  background-size: 33px;
}
@media screen and (max-width: 767px) {
  .show-detail-link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    font-size: 1rem;
    padding: 0;
    border-top-width: 2px;
    border-bottom-width: 2px;
    background-position: right center;
  }
}

.rent a {
  opacity: 1;
  transition: opacity 0.3s;
}
.rent a:hover {
  opacity: 0.7;
}
.rent .js-zoomIn,
.rent .js-zoomUp,
.rent .js-fadeIn {
  opacity: 0;
}
.rent .js-zoomUp.is-inview {
  animation: zoomUp 0.7s ease-in-out forwards;
}
.rent .sub-main-bg {
  background: url("../images/rent/main-bg.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .rent .sub-main-bg {
    background-image: url("../images/rent/main-bg-sp.webp");
  }
}
.rent .sub-main-ttl {
  width: 100%;
  max-width: 467px;
}
@media screen and (max-width: 767px) {
  .rent .sub-main-ttl {
    width: 80%;
    max-width: initial;
  }
}
.rent .sub-main-ttl img {
  width: 100%;
}
.rent .sub-ttl {
  font-weight: 700;
  font-size: clamp(1.75rem, 2.0833333333vw, 2rem);
  color: #333;
  padding: 40px 0 0;
  margin: 0 0 72px;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-size: auto 80%;
}
@media screen and (max-width: 767px) {
  .rent .sub-ttl {
    font-size: 1.25rem;
    padding: 40px 90px 0 0;
    margin: 0 0 40px;
    background-size: auto 40%;
  }
}
.rent .sub-ttl__small-text {
  font-weight: 400;
  font-size: 1.25rem;
}
.rent__h2-title {
  max-width: 464px;
  text-align: center;
  margin: 24px auto 64px;
}
@media screen and (max-width: 767px) {
  .rent__h2-title {
    max-width: 80%;
    padding: 0 4vw;
    margin: 24px auto;
  }
}
.rent__figure {
  padding: 56px 0 64px;
  margin: 0 0 64px;
  background-color: #F4FEF5;
}
@media screen and (max-width: 767px) {
  .rent__figure {
    padding: 28px 0;
  }
}
.rent__figure__title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .rent__figure__title {
    margin: 0 0 24px;
  }
}
.rent__figure__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .rent__figure__title br {
    display: block;
  }
}
.rent__figure__text {
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .rent__figure__text {
    font-size: 1.125rem;
  }
}
.rent__figure__image {
  font-size: 1.125rem;
  margin: 0 0 40px;
}
.rent__figure__center-text {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .rent__figure__center-text {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .rent__area, .rent__ward {
    margin: 0 0 56px;
  }
}
.rent__area__image, .rent__ward__image {
  padding: 0 40px;
  margin: 0 0 56px;
}
@media screen and (max-width: 767px) {
  .rent__area__image, .rent__ward__image {
    padding: 0;
  }
}
.rent__area .sub-ttl {
  background-image: url("../images/rent/icon-area.svg");
}
.rent__ward .sub-ttl {
  background-image: url("../images/rent/icon-ward.svg");
}
.rent__point {
  padding: 1px 0 64px;
  margin: 5.21vw 0 64px;
  background-color: #F4FEF5;
}
@media screen and (max-width: 767px) {
  .rent__point {
    padding: 1px 0 28px;
  }
}
.rent__point .sub-ttl {
  background-image: url("../images/rent/icon-point.svg");
}
@media screen and (max-width: 767px) {
  .rent__point .sub-ttl {
    background-size: auto 70%;
  }
}
.rent__point p,
.rent__point dl {
  margin: 1.5em 0;
}
.rent__point__3 {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .rent__point__3 {
    gap: 16px;
    grid-template-columns: 100%;
  }
}
.rent__point__3 .point-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 287/233;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.rent__point__3 .point-box:first-of-type {
  background-image: url("../images/rent/point01.webp");
}
.rent__point__3 .point-box:nth-of-type(2) {
  background-image: url("../images/rent/point02.webp");
}
.rent__point__3 .point-box:last-of-type {
  background-image: url("../images/rent/point03.webp");
}
@media screen and (max-width: 767px) {
  .rent__point__3 .point-box dt {
    font-size: 1.125rem;
  }
}
.rent__point__3 .point-box dd {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .rent__point__3 .point-box dd {
    font-size: 1rem;
  }
}
.rent__support .sub-ttl {
  background-image: url("../images/rent/icon-support.svg");
}
@media screen and (max-width: 767px) {
  .rent__support .sub-ttl {
    background-size: auto 70%;
  }
}
.rent__support a {
  font-weight: 700;
  color: #0261b6;
}
.rent__support__body {
  display: grid;
  gap: 1.5em 25px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "text01 image" "text02 image";
}
@media screen and (max-width: 767px) {
  .rent__support__body {
    grid-template-columns: 100%;
    grid-template-areas: "text01" "text02" "image";
  }
}
.rent__support__body p:first-of-type {
  grid-area: text01;
}
.rent__support__body p:last-of-type {
  grid-area: text02;
}
.rent__support__body img {
  grid-area: image;
}
.rent__recommend .sub-ttl {
  background-image: url("../images/rent/icon-recommend.svg");
}
@media screen and (max-width: 767px) {
  .rent__recommend .sub-ttl {
    background-size: auto 70%;
  }
}
.rent__recommend__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .rent__recommend__text span:first-of-type {
    font-size: 0.875rem;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
    transform: scale(1.1) translateY(-30px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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