/* ----------------------------------------------------------------
  共通
  ----------------------------------------------------------------- */
.l-container__rental2324 > * {
  font-family: "m-plus-rounded-2p", sans-serif;
}

picture img {
  width: 100%;
  margin: auto;
  display: block;
}

.c-sub {
  font-size: 80%;
}
.c-caution {
  font-size: 90%;
}

/*--------ボタン---------*/
.c-button {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 1.2em 2em;
  font-weight: 900;
  background: #ffe100
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.441 12.054'%3E%3Cpath d='M-1015.037,1705.363l-1.414-1.414,4.613-4.613-4.613-4.613,1.414-1.414,6.027,6.027Z' transform='translate(1016.452 -1693.309)' fill='%23000000' /%3E%3C/svg%3E")
    right 1em center no-repeat;
  background-size: 0.5em;
  border-radius: 10px;
}
.c-button,
.c-link,
.p-link {
  transition-duration: 0.3s;
}
.c-button:hover,
.c-link:hover,
.p-link:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

.c-button__pagetop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #4b91fa;
  border-radius: 50%;
  color: #fff;
  position: fixed;
  z-index: 100;
  font-weight: bold;
}

/*PC*/
@media screen and (min-width: 900px) {
  .c-button {
    margin: 8vh auto 0;
    width: 500px;
    font-size: 1.4em;
  }
  .p-title__content {
    font-size: 2em;
    margin-bottom: 1em;
  }
  .c-button__pagetop {
    width: 6em;
    height: 6em;
    bottom: 10px;
    left: 10px;
  }
  .c-button__pagetop .p-image {
    width: 2em;
    height: 1.2em;
    margin-bottom: 0.5em;
  }
}

/*スマホ*/
@media screen and (max-width: 899px) {
  .c-button {
    width: 100%;
    max-width: 400px;
    margin: 5vh auto 0;
  }
  .c-button__pagetop {
    width: 5em;
    height: 5em;
    bottom: 10px;
    right: 10px;
  }
  .c-button__pagetop .p-image {
    width: 20px;
    height: 15px;
  }
  .p-title__content {
    font-size: 1.4em;
    margin-bottom: 1em;
  }
  .c-tag {
    font-size: 0.7em;
    padding: 0.5em 0.8em;
  }
}

/* ----------------------------------------------------------------
    ヘッダー
    ----------------------------------------------------------------- */
.l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4b91fa;
}

.p-logo__cnsd {
  width: fit-content;
}
.p-logo__cnsd .p-logo__img {
  max-width: 80px;
}

/*PC*/
@media screen and (min-width: 900px) {
  .l-header {
    padding: 40px;
  }
  .l-header__logo .p-logo__img {
    max-width: 160px;
  }
  .l-header__nav {
    display: flex;
    align-items: center;
    margin: auto;
  }
  .l-header__nav .p-nav__link {
    margin: 0 1em;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
  }
}

/*スマホ タブレット*/
@media screen and (max-width: 899px) {
  .l-header {
    height: 80px;
    padding: 0 5vw;
  }
  .l-header__logo .p-logo__img {
    max-width: 100px;
  }
  .p-logo__cnsd {
    margin-right: 15px;
  }
  .p-logo__cnsd .p-logo__img {
    max-height: 30px;
  }
  .l-header__nav {
    display: none;
  }
}

/* ----------------------------------------------------------------
      ハンバーガーメニュー
      ----------------------------------------------------------------- */
.p-button__hbmenu {
  transition: all 0.4s ease;
}
.p-button__hbmenu .p-image {
  width: 100%;
}
.js-overlay {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  transition: ease 0.5s;
}

/*PC*/
@media screen and (min-width: 900px) {
  .l-header__button {
    display: none;
  }
}
/*タブレット*/
@media screen and (max-width: 899px) {
  .l-header__button .p-button__hbmenu {
    width: 30px;
  }
  /* アニメーション前のメニューの状態 */
  .js-globalMenu {
    transform: translateX(50vw);
    transition: ease 0.5s;
    display: none;
  }
  /* アニメーション後のメニューの状態 */
  .js-globalMenu.is-active {
    transform: translateX(0);
    transition: ease 0.5s;
    display: block;
    z-index: 10;
  }

  /*-------メニューの中身-------*/
  .js-globalMenu {
    position: fixed;
    top: 80px;
    width: 100%;
    background: #4b91fa;
    color: #fff;
    z-index: 3;
    left: 0;
  }
  .js-globalMenu a {
    display: block;
    font-weight: bold;
    color: #fff;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

/* ----------------------------------------------------------------
      共通 フッター
    ----------------------------------------------------------------- */
footer {
  width: 100%;
  background: #9ecef0;
  background-size: 100%;
  color: #fff;
  padding-top: 10vh;
}
footer .p-inner {
  width: 100%;
}
.l-footer__credit {
  text-align: center;
  font-size: 0.8em;
  line-height: 1.6;
}
.l-footer .p-logo {
  display: block;
  margin: auto;
}
.l-footer__logo .p-season {
  font-size: 0.8em;
  text-align: center;
  margin: 0 auto 0.5em;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*PC*/
@media screen and (min-width: 1000px) {
  footer .p-inner {
    padding: 0 60px 10vh;
  }

  .l-footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 3em;
  }

  .l-footer__logo .p-logo__img {
    width: 300px;
  }
}

/*スマホ*/
@media screen and (max-width: 999px) {
  footer {
    padding: 40px;
  }
  .p-footer__inner {
    display: block;
    text-align: center;
    margin-bottom: 2em;
  }
  .l-footer__logo {
    margin: 0 auto 1em;
    width: fit-content;
  }
  .l-footer__logo .p-logo__img {
    width: 150px;
  }
}

/* ----------------------------------------------------------------
共通　コンテンツ
----------------------------------------------------------------- */
/*PC*/
@media screen and (min-width: 800px) {
  .l-container__rental2324 > section .p-inner__content {
    max-width: 1200px;
    padding: 0 12vw;
    margin: auto;
  }
  .l-container__rental2324 .p-title__content {
    width: fit-content;
    margin: 0 auto 60px;
    text-align: center;
    font-weight: 900;
  }
  .p-product__wrap,
  .p-model__wrap,
  .p-product__wrap {
    background: #4b91fa;
    padding: 60px 0;
  }
  .p-title__content {
    font-weight: 900;
    text-align: center;
  }
  .p-product__wrap .p-title__content,
  .p-model__wrap .p-title__content,
  .p-step__wrap .p-title__content,
  .p-size__wrap .p-title__content {
    color: #fff;
    line-height: 1.4;
    font-size: 3em;
  }
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .l-container__rental2324 > section .p-inner__content {
    width: 86%;
    margin: auto;
  }
  .p-product__wrap,
  .p-model__wrap,
  .p-product__wrap {
    background: #4b91fa;
    padding: 40px 0 30px;
  }
  .p-title__content {
    font-weight: 900;
    text-align: center;
  }
  .p-product__wrap .p-title__content br,
  .p-model__wrap .p-title__content br,
  .p-step__wrap .p-title__content br,
  .p-size__wrap .p-title__content br {
    display: none;
  }
  .p-product__wrap .p-title__content,
  .p-model__wrap .p-title__content,
  .p-step__wrap .p-title__content,
  .p-size__wrap .p-title__content {
    color: #fff;
    line-height: 1.4;
    font-size: 1.8em;
  }
}

/* ----------------------------------------------------------------
  メインタイトル
  ----------------------------------------------------------------- */
.p-hero {
  background: url(../img/rental/bg_head.png) center bottom no-repeat,
    linear-gradient(0deg, #9ccffd, #4b91fa);
  background-size: contain;
  text-align: center;
  color: #fff;
  font-weight: bold;
  min-height: 500px;
}
.p-hero .p-inner__content {
  background-image: url(../img/rental/img_head01.png),
    url(../img/rental/img_head02.png);
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: contain;
  min-height: 450px;
}
.p-hero .p-text__season {
  font-size: 1.2em;
  letter-spacing: 0.2em;
}
.p-hero .p-logo {
  width: fit-content;
  margin: 20px auto;
  max-width: 350px;
}
.p-hero .p-logo__img {
  width: 100%;
}
.p-hero .p-title {
  font-size: 3.5em;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1em;
}
.p-read__mainCatch {
  font-size: 1.4em;
  letter-spacing: 0.1em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  min-height: 450px;
  background: url(../img/rental/bg_article01.png) center bottom no-repeat;
  background-size: contain;
}
/*タブレット*/
@media screen and (max-width: 1000px) and (min-width: 500px) {
  .p-hero {
    min-height: 350px;
  }
  .p-hero .p-inner__content {
    min-height: 0;
    height: 400px;
    padding-top: 50px !important;
    background-size: 25%;
  }
  .p-hero .p-logo {
    width: 80%;
    margin: 10px auto;
  }
  .p-hero .p-title {
    font-size: 2em;
  }
  .p-read__mainCatch {
    font-size: 1.3em;
    letter-spacing: 0;
    line-height: 1.8em;
    min-height: 350px;
    padding: 3vh 5vw 3vh;
  }
}
/*スマホ*/
@media screen and (max-width: 499px) {
  .p-hero {
    background-size: 300%;
    min-height: 350px;
    padding: 5vh 0 0;
  }
  .p-hero .p-inner__content {
    background-position: left bottom, right bottom;
    background-size: 50%;
  }
  .p-hero .p-logo {
    width: 80%;
    margin: 10px auto;
  }
  .p-hero .p-title {
    font-size: 2em;
  }
  .p-read__mainCatch {
    font-size: 1.2em;
    letter-spacing: 0;
    line-height: 1.6em;
    min-height: 300px;
    padding: 3vh 5vw 10vh;
  }
}

/* ----------------------------------------------------------------
  スキーを上達させる
  ----------------------------------------------------------------- */
.p-point__wrap {
  background: #4b91fa url(../img/rental/bg_snow.png) center bottom no-repeat;
  background-size: 1400px;
}

.p-point__wrap .p-title__content {
  color: #ffe100;
  line-height: 1.4;
  font-size: 3em;
}
.p-point__wrap .p-article__list {
  min-width: 750px;
  width: fit-content;
  margin: auto;
}
.p-point__wrap .p-article__list .p-list__item {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 110px 1fr;
}
.p-point__wrap .p-article__list .p-list__item:nth-child(even) {
  grid-template-columns: 170px 1fr;
}
.p-point__wrap .p-article__list .p-title {
  background: url(../img/rental/icn_point_w.png) center bottom no-repeat;
  background-size: contain;
  width: 1.2em;
  font-size: 4em;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding-bottom: 0.3em;
  margin-right: 30px;
}
.p-point__wrap .p-article__list .p-list__item:nth-child(even) .p-title {
  margin-left: 70px;
}
.p-point__wrap .p-article__list .p-read {
  width: calc(100% - 70px);
  font-weight: bold;
  color: #fff;
  font-size: 1.6em;
  line-height: 1.6;
  border-bottom: #fff 2px dashed;
  letter-spacing: 0.1em;
}
.p-point__wrap .p-article__list .p-list__item:nth-child(even) .p-read {
  width: 100%;
}
.p-point__wrap .p-article__list .p-list__item:last-child .p-read {
  border-bottom: none;
}
.p-point__wrap .p-article__list .p-read span {
  font-weight: 900;
  font-size: 105%;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-point__wrap .p-title__content {
    font-size: 2em;
  }
  .p-point__wrap .p-article__list {
    min-width: 0 !important;
    width: 100% !important;
    margin: auto;
    max-width: 400px;
  }

  .p-point__wrap .p-article__list .p-list__item {
    margin-bottom: 30px;
    display: block;
  }
  .p-point__wrap .p-article__list .p-title {
    width: 1.2em;
    font-size: 3em;
    margin: 0 auto 20px;
  }
  .p-point__wrap .p-article__list .p-list__item:nth-child(even) .p-title {
    margin: 0 auto 20px;
  }
  .p-point__wrap .p-article__list .p-read {
    width: 100%;
    font-size: 1.2em;
    line-height: 1.4;
    letter-spacing: 0;
    padding-bottom: 1em;
  }
  .p-point__wrap .p-article__list .p-read br {
    display: none;
  }
}

/* ----------------------------------------------------------------
  レンタル料金表
  ----------------------------------------------------------------- */
.p-product__wrap {
  background: #4b91fa url(../img/rental/bg_snow.png) center bottom no-repeat;
  background-size: 1200px;
}
.p-product__wrap .p-inner__content {
  background: url(../img/rental/bg_article02.png) center 0 no-repeat;
  background-size: 90% auto;
  padding: 0 5vw !important;
}
.p-product__wrap .p-title__content {
  padding-top: 40vh;
}
.p-product__wrap .p-article__box {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: fit-content;
  margin-bottom: 2rem;
}
.p-product__wrap .p-article__box .p-box__item {
  background: #fff;
  border-radius: 10px;
  padding: 2em;
  width: 48%;
  text-align: center;
  font-weight: bold;
}
.p-product__wrap .p-article__box .p-title {
  font-size: 1.4em;
  margin-bottom: 0.3em;
}
.p-product__wrap .p-article__box .p-price {
  font-size: 2em;
  margin-bottom: 0.3em;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.p-product__wrap .p-article__box .p-read {
  font-size: 0.9em;
  margin-top: 1em;
}


.p-product__wrap .c-link {
  color: #fff;
  font-weight: bold;
  font-size: 1.4em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 26'%3E%3Cpath d='M21.0017 25.9502L0.0268192 4.97532L4.97656 0.0255705L21.0017 16.0507L37.0268 0.0255733L41.9766 4.97532L21.0017 25.9502Z' fill='%23ffffff' /%3E%3C/svg%3E")
    right center no-repeat;
  background-size: 0.9em;
  display: flex;
  justify-content: center;
  width: fit-content;
  padding-right: 1.2em;
  margin:auto;
}

.p-product__wrap .p-attention{
  color: #fff;
  font-weight: bold;
  margin: 2em auto;
  margin-top: 1rem;
  text-align: center;
}

.p-product__wrap .p-set__box {
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap-reverse;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;

}
.p-product__wrap .p-set__box .p-box__item {
  width: 31%;
  display: flex;
}

.p-product__wrap .p-set__box .p-box__item.-new .p-link {
  position: relative;
}

.p-product__wrap .p-set__box .p-box__item.-new .p-link::before{
  position: absolute;
    display: inline-block;
    content: "NEW";
    background-color: #dc000c;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -5px;
    right: -5px;
    box-shadow: 0px 0px 5px;
}

.p-product__wrap ul + ul{
  margin-top: 20px;
}

.p-product__wrap .p-set__box .p-link {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  transition-duration: 0.3s;
}
.p-product__wrap .p-set__box .p-link.u-soldout {
  transition-duration: unset;
  cursor: auto;
}
.p-product__wrap .p-set__box .p-link.u-soldout:hover {
  transform: none;
}
.p-product__wrap .p-set__box .p-link.u-soldout .p-order {
  background: #000;
}

.p-product__wrap .p-set__box .p-link:hover {
  transform: scale(1.03);
}
.p-product__wrap .p-set__box .p-photo .p-image {
  border-radius: 10px 10px 0 0;
}
.p-product__wrap .p-set__box .p-text {
  min-height: 5em;
  background: #fff;
  padding: 1.2em;
  text-align: left;
}
.p-product__wrap .p-set__box .p-price {
  font-size: 1.4em;
  font-weight: 900;
  margin-top: 0.5em;
}
.p-product__wrap .p-set__box .p-order {
  background: #dc000c
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.441 12.054'%3E%3Cpath d='M-1015.037,1705.363l-1.414-1.414,4.613-4.613-4.613-4.613,1.414-1.414,6.027,6.027Z' transform='translate(1016.452 -1693.309)' fill='%23ffffff' /%3E%3C/svg%3E")
    right 1em center no-repeat;
  background-size: 0.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4em;
  margin-top: auto;
  border-radius: 0 0 10px 10px;
  font-size: 1.2em;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-product__wrap .p-inner__content {
    background-size: contain;
    padding: 0 2vw !important;
  }
  .p-product__wrap .p-title__content {
    padding-top: 15vh;
  }
  .p-product__wrap .p-article__box {
    display: block;
  }
  .p-product__wrap .p-article__box .p-box__item {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }
  .p-product__wrap .p-article__box .p-box__item {
    padding: 1.6em;
  }
  .p-product__wrap .p-article__box .p-title {
    font-size: 1.3em;
  }
  .p-product__wrap .p-article__box .p-price {
    font-size: 1.6em;
    letter-spacing: 0;
  }
  .p-product__wrap .c-link {
    font-size: 1em;
    margin: 2em auto;
  }
  .p-product__wrap .p-set__box {
    /* display: block; */
    max-width: 400px;
    margin: auto;
  }
  .p-product__wrap .p-set__box .p-box__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .p-product__wrap .p-set__box .p-text {
    padding: 1em;
  }
  .p-product__wrap .p-set__box .p-price {
    font-size: 1.2em;
  }
  .p-product__wrap .p-set__box .p-order {
    min-height: 3em;
    border-radius: 0 0 10px 10px;
    font-size: 1em;
  }
}
/* ----------------------------------------------------------------
  レンタル商品のモデルについて
  ----------------------------------------------------------------- */

.p-model__wrap .p-inner .p-title {
  color: #fff;
  font-size: 1.7em;
  margin-bottom: 1em;
  line-height: 1.6em;
}
.p-model__wrap .p-inner .p-read,
.p-model__wrap .p-attention {
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 2em;
  line-height: 1.8em;
  padding-left: 1em;
  border-bottom: 2px dashed #fff;
  padding-bottom: 2em;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-model__wrap .p-inner .p-title {
    font-size: 1.1em;
    letter-spacing: 0;
  }
  .p-model__wrap .p-inner .p-title br {
    display: none;
  }
  .p-model__wrap .p-inner .p-read,
  .p-model__wrap .p-attention {
    font-size: 1em;
    line-height: 1.6;
  }
}
/* ----------------------------------------------------------------
  お申込みから引き取りまで超カンタン
  ----------------------------------------------------------------- */
.p-step__wrap {
  background: url(../img/rental/bg_article02-1.png) center bottom no-repeat,
    linear-gradient(0deg, #9ccffd, #4b91fa);
  background-size: contain;
  padding-bottom: 30vh;
}
.p-step__wrap .p-inner__content {
  padding: 0 5vw !important;
}
.p-step__wrap .p-inner {
  width: fit-content;
  margin: 0 auto 40px;
  display: flex;
  background: #fff;
  padding: 2em;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
}
.p-step__wrap .p-inner .p-item {
  font-size: 1.4em;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  background: url(../img/rental/icn_arrow_y02.png) right center no-repeat;
  background-size: 0.8em;
  padding-right: 2em;
  margin-right: 1em;
}
.p-step__wrap .p-inner .p-item:last-child {
  background: none;
  margin-right: 0;
  padding-right: 0;
}
.p-step__wrap .p-attention {
  max-width: 800px;
  margin: auto;
  font-size: 1.1em;
  color: #fff;
  line-height: 1.6;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-step__wrap {
    padding-bottom: 10vh;
  }
  .p-step__wrap .p-inner__content {
    padding: 0 !important;
  }
  .p-step__wrap .p-inner {
    flex-direction: column;
  }
  .p-step__wrap .p-inner .p-item {
    font-size: 1.2em;
    background: url(../img/rental/icn_arrow_y01.png) center bottom no-repeat;
    background-size: 1em;
    padding: 0 0 1em;
    margin: 0 0 0.5em;
  }
  .p-step__wrap .p-inner .p-item:last-child {
    background: none;
    margin: 0;
    padding: 0;
  }
  .p-step__wrap .p-inner .p-item br {
    display: none;
  }
  .p-step__wrap .p-attention {
    font-size: 1em;
  }
}
/* ----------------------------------------------------------------
  サイズ選びの参考
  ----------------------------------------------------------------- */
.p-size__wrap {
  background: #fff url(../img/rental/bg_size.png) center bottom no-repeat;
  padding: 60px 0 30vh;
}
.p-size__wrap .p-title__content {
  color: #000;
}
.p-size__wrap .p-list__item {
  margin-bottom: 60px;
}
.p-size__wrap .p-pointNumber {
  background: url(../img/rental/icn_point.png) center bottom no-repeat;
  background-size: contain;
  width: 1.2em;
  font-size: 4em;
  color: #ffd900;
  font-weight: 900;
  text-align: center;
  padding-bottom: 0.3em;
  margin: 0 auto 20px;
  display: block;
}
.p-size__wrap .p-title__text {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 1.6em;
  font-weight: 900;
}
.p-size__wrap .p-answer {
  font-size: 1.2em;
  line-height: 1.8;
  font-weight: bold;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-size__wrap {
    padding: 60px 0;
    background-size: contain;
  }
  .p-size__wrap .p-list__item {
    margin-bottom: 30px;
  }
  .p-size__wrap .p-pointNumber {
    width: 1.2em;
    font-size: 2.5em;
  }
  .p-size__wrap .p-title__text {
    font-size: 1.3em;
  }
  .p-size__wrap .p-answer {
    font-size: 1em;
    line-height: 1.6;
  }
}

/* ----------------------------------------------------------------
  ご利用規約
  ----------------------------------------------------------------- */
.p-policy__wrap {
  background: #e8f2f9 url(../img/rental/bg_footer.png) center bottom no-repeat;
  background-size: contain;
  padding: 60px 0 30vh;
}
.p-policy__wrap .p-title__chach {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 2em;
  line-height: 1.6;
  text-align: center;
}
.p-policy__wrap .p-list__item {
  margin-top: 1.5em;
  border-top: 1px dashed #000;
  padding-top: 1.5em;
}
.p-policy__wrap .p-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.p-policy__wrap .p-read {
  font-size: 1.1em;
  line-height: 1.6;
  padding-left: 1.1em;
}
.p-policy__wrap .p-inner__second {
  padding-left: 2em;
}
.p-policy__wrap .p-inner__second .p-title {
  font-weight: bold;
  margin-top: 1em;
}
.p-policy__wrap .p-list__shop {
  margin: 1em 0 2em;
}
.p-policy__wrap .p-list__shop .p-item {
  font-weight: bold;
}
.p-policy__wrap .p-list__shop .p-item a,
.p-policy__wrap .p-link {
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.441 12.054'%3E%3Cpath d='M-1015.037,1705.363l-1.414-1.414,4.613-4.613-4.613-4.613,1.414-1.414,6.027,6.027Z' transform='translate(1016.452 -1693.309)' fill='%23000000' /%3E%3C/svg%3E")
    right center no-repeat;
  background-size: 0.5em;
  padding-right: 1.2em;
  width: fit-content;
  margin-bottom: 0.5em;
  text-decoration: underline;
  font-weight: bold;
}
.p-policy__wrap .p-list__caution .p-item {
  text-indent: -1em;
  padding-left: 1em;
}
.p-policy__wrap .p-contact {
  margin-left: 1em;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-policy__wrap {
    padding: 60px 0 15vh;
  }
  .p-policy__wrap .p-title__chach {
    font-size: 1.1em;
    text-align: left;
  }
  .p-policy__wrap .p-list__item {
    margin-top: 1.2em;
    padding-top: 1.2em;
  }
  .p-policy__wrap .p-title {
    font-size: 1.1em;
  }
  .p-policy__wrap .p-read {
    font-size: 1em;
    padding-left: 1em;
    letter-spacing: 0;
  }
  .p-policy__wrap .p-inner__second {
    padding-left: 1em;
  }
  .p-policy__wrap .p-contact {
    margin-left: 0;
    font-size: 0.9em;
  }
}

/*--------------2024ポケモンデザインのスキー＆スノーボード販売開始-------------*/
.p-box__PokemonRental {
  max-width: 1100px;
  margin: 2em auto;
}
.p-box__PokemonRental .p-title__PokemonRental {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1em;
  color: #0c87d9;
}
.p-box__PokemonRental .p-image__PokemonRental {
  margin-bottom: 2em;
  display: block;
}
.p-box__PokemonRental .p-container_service {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-box__PokemonRental .p-box__item {
  width: 48%;
  display: flex;
  flex-direction: column;
  background: #eff5f8;
  border-radius: 10px;
  padding: 2em;
}
.p-box__PokemonRental .p-title__category {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1em;
  text-align: center;
}
.p-box__PokemonRental .p-service__list .p-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.p-box__PokemonRental .p-service__list .p-item {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.p-box__PokemonRental .p-attention {
  margin-bottom: 2em;
}
.p-box__PokemonRental .p-button {
  min-width: 300px;
  font-size: 1.1em;
  display: block;
  font-weight: bold;
  background: #ffdb15;
  padding: 1em 1.5em;
  margin: auto auto 0;
  border-radius: 50px;
  text-align: center;
}
.p-box__PokemonRental .p-button.u-soldout {
  background: #ccc;
  color: #999;
}
/*スマホ*/
@media screen and (max-width: 799px) {
  .p-box__PokemonRental .p-title__PokemonRental {
    font-size: 1.5rem;
  }
  .p-box__PokemonRental .p-image__PokemonRental {
    display: block;
    width: 90%;
    margin: 0 auto 2em;
  }
  .p-box__PokemonRental .p-box__item {
    width: 90%;
    margin: 0 auto 2em;
  }
  .p-box__PokemonRental .p-title__category {
    font-size: 1.2rem;
  }
  .p-box__PokemonRental .p-service__list .p-title {
    font-size: 1rem;
  }
}
