/* common
---------------------------------------------------------------------------- */
.js-fade-trigger {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.67, 0, 0.57, 0.97);
}
.js-fade-trigger.is-show {
  opacity: 1;
}

.js-fadeUp-trigger {
  opacity: 0;
  transform: translateY(2rem);
  transition-property: opacity, transform;
  transition-timing-function: ease-in-out;
  transition-duration: 1.5s;
}
.js-fadeUp-trigger.is-fadeUp {
  opacity: 1;
  transform: translateY(0);
}

.l-pagebody {
  margin-top: 0;
}

.p-common-ttl-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-inline: auto;
}

.p-common-ttl-en {
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "EB Garamond";
  color: #D2962F;
  text-align: center;
}

.p-common-ttl-jp {
  font-size: 4.8rem;
  line-height: 1.8541666667;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Shippori Mincho B1";
  text-align: center;
}

@media screen and (max-width: 767px) {
  .js-fadeUp-trigger {
    transform: translateY(5.3333333333vw);
  }
  .p-common-ttl-wrap {
    gap: 1.6vw;
  }
  .p-common-ttl-en {
    font-size: 5.3333333333vw;
  }
  .p-common-ttl-jp {
    font-size: 8vw;
  }
}
/* p-mv
---------------------------------------------------------------------------- */
.p-mv {
  position: relative;
  width: 100%;
  min-height: 36.4583333333vw;
}

.p-mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./../../images/tanada/bg_mv_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.p-mv-img {
  position: absolute;
  top: 6.5625vw;
  left: 50%;
  translate: -50%;
  width: 21.875vw;
  height: 21.875vw;
}
.p-mv-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-mv-txt-wrap {
  position: absolute;
  top: 8.3333333333vw;
  right: 8.75vw;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.9895833333vw;
  transition-delay: 0.8s;
}

.p-mv-txt {
  font-size: 6.4rem;
  line-height: 1.203125;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 3.3333333333vw;
  font-family: "Shippori Mincho B1";
  color: #fff;
  writing-mode: vertical-rl;
}

.p-mv-txt:nth-of-type(2) {
  margin-top: 4.5833333333vw;
}

.p-mv-txt ._bg {
  display: inline-block;
  background-color: #006A20;
  padding-block: 0.625vw;
  padding-inline: 0.9895833333vw;
}

.p-mv-txt ._parentheses {
  position: relative;
  padding-inline: 1.40625vw 0.46875vw;
  margin-bottom: 1.25vw;
}

.p-mv-txt ._parentheses::before,
.p-mv-txt ._parentheses::after {
  content: "";
  position: absolute;
  width: 2.0520833333vw;
  height: 1.0885416667vw;
  background-image: url(./../../images/tanada/icn_parentheses_top.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-mv-txt ._parentheses::before {
  top: 0;
  right: 0.1041666667vw;
}

.p-mv-txt ._parentheses::after {
  bottom: 0;
  left: 0.3645833333vw;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 122.4vw;
  }
  .p-mv::before {
    background-image: url(./../../images/tanada/bg_mv_sp.png);
  }
  .p-mv-img {
    top: 18.9333333333vw;
    width: 48vw;
    height: 48vw;
  }
  .p-mv-txt-wrap {
    top: 67.4666666667vw;
    right: 12.8vw;
    flex-direction: column;
    gap: 2.1333333333vw;
    width: max-content;
  }
  .p-mv-txt {
    font-size: 8vw;
    letter-spacing: 0.07em;
    writing-mode: initial;
  }
  .p-mv-txt:nth-of-type(2) {
    margin-top: 0;
    margin-left: 11.4666666667vw;
  }
  .p-mv-txt ._bg {
    padding-block: 2.6666666667vw;
    padding-inline: 4vw 1.8666666667vw;
  }
  .p-mv-txt ._parentheses {
    padding-inline: 2.9333333333vw 3.4666666667vw;
    margin-bottom: 0;
  }
  .p-mv-txt ._parentheses::before,
  .p-mv-txt ._parentheses::after {
    width: 5.8666666667vw;
    height: 2.9333333333vw;
  }
  .p-mv-txt ._parentheses::before {
    top: 7.7333333333vw;
    right: 0.5333333333vw;
    rotate: 90deg;
  }
  .p-mv-txt ._parentheses::after {
    bottom: 8vw;
    left: -2.1333333333vw;
    rotate: -90deg;
  }
}
/* p-future
---------------------------------------------------------------------------- */
.p-future {
  padding-block: 0vw 10.8854166667vw;
  position: relative;
  margin-top: -11.25vw;
}

.p-future::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./../../images/tanada/bg_future_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.p-future-fade {
  display: block;
  text-align: center;
  transition-delay: 0.8s;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  z-index: -1;
}
.p-future-fade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-future-inner {
  margin-inline: auto;
  max-width: 31.25vw;
}

.p-future-ttl {
  font-size: 3.8rem;
  line-height: 1.2368421053;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.9791666667vw;
  font-family: "Shippori Mincho B1";
  text-align: center;
  padding-top: 21.25vw;
}

.p-future-ttl ._mi-adjust {
  margin-inline: -0.3125vw;
}

.p-future-ttl ._parentheses-l {
  letter-spacing: 0;
  translate: 0.2604166667vw -0.6770833333vw;
}

.p-future-ttl ._parentheses-r {
  letter-spacing: 0;
  translate: 0 0.46875vw;
}

.p-future-txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 0.8333333333vw;
  margin-block: 2.0833333333vw 4.1666666667vw;
}

.p-future-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0833333333vw;
}

.p-future-list li {
  display: grid;
}

.p-future-list-item-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
  padding-block: 1.25vw;
  border-top-left-radius: 1.0416666667vw;
  border-bottom-right-radius: 1.0416666667vw;
  box-shadow: 0 0 1.0416666667vw rgba(0, 0, 0, 0.06);
  position: relative;
}

.p-future-list-item-link-ttl {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 1.0416666667vw;
  color: #414141;
  font-family: "Shippori Mincho B1";
  text-align: center;
  margin-bottom: 1.0416666667vw;
}

.p-future-list-item-link-img {
  width: 7.2916666667vw;
  aspect-ratio: 1;
  margin-inline: auto;
}
.p-future-list-item-link-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-future-list-item-link-arrow {
  position: absolute;
  right: 0.78125vw;
  bottom: 0.78125vw;
  width: 1.5625vw;
  aspect-ratio: 1;
}
.p-future-list-item-link-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .p-future {
    padding-block: 104.2666666667vw 58.4vw;
    margin-top: -25.0666666667vw;
  }
  .p-future::before {
    background-image: url(./../../images/tanada/bg_future_sp.png);
  }
  .p-future-inner {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
  .p-future-ttl {
    font-size: 6.4vw;
    padding-top: 0;
  }
  .p-future-ttl ._mi-adjust {
    margin-inline: -3.2vw;
  }
  .p-future-ttl ._parentheses-l {
    translate: 0.2666666667vw -2.1333333333vw;
  }
  .p-future-ttl ._parentheses-r {
    translate: -0.2666666667vw 1.8666666667vw;
  }
  .p-future-txt {
    font-size: 4.2666666667vw;
    margin-block: 5.3333333333vw 6.6666666667vw;
  }
  .p-future-list {
    gap: 5.3333333333vw;
  }
  .p-future-list-item-link {
    padding-block: 3.7333333333vw 4vw;
    border-top-left-radius: 5.3333333333vw;
    border-bottom-right-radius: 5.3333333333vw;
    box-shadow: 0 0 5.3333333333vw rgba(0, 0, 0, 0.06);
  }
  .p-future-list-item-link-ttl {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    margin-bottom: 2.6666666667vw;
  }
  .p-future-list-item-link-img {
    width: 21.3333333333vw;
  }
  .p-future-list-item-link-arrow {
    right: 2.1333333333vw;
    bottom: 2.1333333333vw;
    width: 4.8vw;
  }
}
/* p-report
---------------------------------------------------------------------------- */
.p-report {
  padding-block: 5.2083333333vw 7.2916666667vw;
  border-radius: 6rem;
  overflow: hidden;
  margin-block: -7rem 14rem;
  position: relative;
}

.p-report::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #fff;
}

.p-report::after {
  content: "";
  width: 100%;
  height: 15.3125vw;
  background-image: url(./../../images/tanada/bg_report_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.p-report-list {
  margin-block: 7rem 6rem;
  display: grid;
  grid-template-columns: repeat(2, 56rem);
  justify-content: space-between;
  gap: 8rem;
}

.p-report-list-item-link {
  display: flex;
  flex-direction: column;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  overflow: hidden;
  height: 100%;
}

.p-report-list-item-link-img {
  width: 100%;
  aspect-ratio: 560/255;
  overflow: hidden;
}
.p-report-list-item-link-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  scale: 1;
  transition: scale 0.3s ease;
}

.p-report-list-item-link-body {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.7rem;
  padding-block: 3.7rem 6rem;
  padding-inline: 5.7rem;
  position: relative;
}

.p-report-list-item-link-body::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./../../images/tanada/img_report_01_body_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-report-list-item-link-body._02::before {
  background-image: url(./../../images/tanada/img_report_02_body_pc.png);
}

.p-report-list-item-link-body-ttl {
  font-size: 3.8rem;
  line-height: 1.2368421053;
  letter-spacing: 0.06em;
  font-weight: 700;
  letter-spacing: 0.27em;
  font-family: "Shippori Mincho B1";
  color: #414141;
  writing-mode: vertical-rl;
}

.p-report-list-item-link-body-ttl ._green {
  color: #006A20;
}

.p-report-list-item-link-body-ttl ._orange {
  color: #D2962F;
}

.p-report-list-item-link-body-txt {
  font-size: 1.6rem;
  line-height: 2.0625;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #414141;
}

.p-report-btn-wrap {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-report {
    padding-block: 13.3333333333vw 53.3333333333vw;
    border-radius: 8vw;
    margin-block: -5.8666666667vw 13.3333333333vw;
  }
  .p-report::after {
    height: 46.6666666667vw;
    background-image: url(./../../images/tanada/bg_report_sp.png);
  }
  .p-report-list {
    margin-block: 6.4vw 8vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
  }
  .p-report-list-item-link {
    border-top-left-radius: 4vw;
    border-bottom-right-radius: 4vw;
  }
  .p-report-list-item-link-img {
    aspect-ratio: 335/153;
  }
  .p-report-list-item-link-body {
    grid-template-columns: 1fr;
    gap: 4.2666666667vw;
    padding-block: 6.4vw 8vw;
    padding-inline: 5.3333333333vw;
  }
  .p-report-list-item-link-body::before {
    background-image: url(./../../images/tanada/img_report_01_body_sp.png);
  }
  .p-report-list-item-link-body._02::before {
    background-image: url(./../../images/tanada/img_report_02_body_sp.png);
  }
  .p-report-list-item-link-body-ttl {
    font-size: 6.4vw;
    letter-spacing: 0.06em;
    writing-mode: initial;
    text-align: center;
  }
  .p-report-list-item-link-body-txt {
    font-size: 4.2666666667vw;
    line-height: 2.0625;
  }
}
/* p-interview
---------------------------------------------------------------------------- */
.p-interview {
  padding-block: 8.8541666667vw 7.2916666667vw;
  position: relative;
  margin-top: -3.125vw;
}

.p-interview::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./../../images/tanada/bg_interview_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.p-interview-pickup {
  display: grid;
  grid-template-columns: 45rem 1fr;
  border-radius: 1rem;
  overflow: hidden;
  margin-block: 7rem 5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.06);
}

.p-interview-pickup-img {
  width: 100%;
  aspect-ratio: 450/260;
  scale: 1;
  transition: scale 0.3s ease;
}
.p-interview-pickup-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-interview-pickup-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding-inline: 5rem 7rem;
  position: relative;
}

.p-interview-pickup-icn {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #006A20;
  display: grid;
  place-items: center;
}
.p-interview-pickup-icn img {
  width: 1.5rem;
  height: 2rem;
  object-fit: contain;
  object-position: center;
}

.p-interview-pickup-pickup {
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "EB Garamond";
  color: #D2962F;
}

.p-interview-pickup-ttl {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #414141;
  font-family: "Shippori Mincho B1";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.p-interview-pickup-meta {
  margin-top: 2rem;
  border-top: 1px solid #006A20;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-interview-pickup-meta-time {
  font-size: 1.4rem;
  line-height: 2.3571428571;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #9C9C9C;
}

.p-interview-pickup-meta-category {
  font-size: 1.4rem;
  line-height: 2.3571428571;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #006A20;
  position: relative;
  padding-left: 1.2rem;
}

.p-interview-pickup-meta-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #006A20;
  border-radius: 50%;
}

.p-interview-pickup:hover .p-interview-pickup-img {
  scale: 1.1;
}
.p-interview-pickup:hover .p-interview-pickup-ttl {
  color: #20A81B;
}
.p-interview-pickup:hover .p-interview-pickup-icn {
  background-color: #20A81B;
}

.p-interview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 6rem;
}

.p-interview-list-item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.06);
}

.p-interview-list-item-link-img {
  width: 100%;
  aspect-ratio: 366/212;
  scale: 1;
  transition: scale 0.3s ease;
}
.p-interview-list-item-link-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-interview-list-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
  padding-block: 2rem 3.2rem;
  padding-inline: 3rem;
  position: relative;
}

.p-interview-list-item-icn {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background-color: #006A20;
  display: grid;
  place-items: center;
}
.p-interview-list-item-icn img {
  width: 1.2rem;
  height: 1rem;
  object-fit: contain;
  object-position: center;
}

.p-interview-list-item-ttl {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #414141;
  font-family: "Shippori Mincho B1";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.p-interview-list-item-meta {
  margin-top: 1.2rem;
  border-top: 1px solid #006A20;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.p-interview-list-item-meta-time {
  font-size: 1.4rem;
  line-height: 2.3571428571;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #9C9C9C;
}

.p-interview-list-item-meta-category {
  font-size: 1.4rem;
  line-height: 2.3571428571;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #006A20;
  position: relative;
  padding-left: 1.2rem;
}

.p-interview-list-item-meta-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #006A20;
  border-radius: 50%;
}

.p-interview-list-item-link:hover .p-interview-list-item-link-img {
  scale: 1.1;
}
.p-interview-list-item-link:hover .p-interview-list-item-ttl {
  color: #20A81B;
}
.p-interview-list-item-link:hover .p-interview-list-item-icn {
  background-color: #20A81B;
}

.p-interview-btn-wrap {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-interview {
    padding-block: 34.1333333333vw 13.3333333333vw;
    position: relative;
    margin-top: -20.8vw;
  }
  .p-interview::before {
    background-image: url(./../../images/tanada/bg_interview_sp.png);
  }
  .p-interview-pickup {
    grid-template-columns: 1fr;
    border-radius: 2.6666666667vw;
    margin-block: 6.6666666667vw 5.3333333333vw;
    box-shadow: 0 0 5.3333333333vw rgba(0, 0, 0, 0.06);
  }
  .p-interview-pickup-img {
    aspect-ratio: 335/193;
  }
  .p-interview-pickup-body {
    padding-inline: 5.3333333333vw;
    padding-block: 1.3333333333vw 6.6666666667vw;
  }
  .p-interview-pickup-icn {
    right: 4vw;
    bottom: 4vw;
    width: 4.8vw;
    height: 4.8vw;
  }
  .p-interview-pickup-icn img {
    width: 2.1333333333vw;
    height: 1.6vw;
  }
  .p-interview-pickup-pickup {
    font-size: 4.8vw;
  }
  .p-interview-pickup-ttl {
    font-size: 5.3333333333vw;
    -webkit-line-clamp: 3;
  }
  .p-interview-pickup-meta {
    margin-top: 2.4vw;
    padding-top: 2.6666666667vw;
    gap: 4vw;
  }
  .p-interview-pickup-meta-time {
    font-size: 3.7333333333vw;
    color: #9C9C9C;
  }
  .p-interview-pickup-meta-category {
    font-size: 3.7333333333vw;
    color: #006A20;
    position: relative;
    padding-left: calc(1.6vw + 1.6vw);
  }
  .p-interview-pickup-meta-category::before {
    width: 1.6vw;
    height: 1.6vw;
  }
  .p-interview-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5.0666666667vw;
    margin-bottom: 8vw;
  }
  .p-interview-list-item-link {
    border-radius: 2.6666666667vw;
    box-shadow: 0 0 5.3333333333vw rgba(0, 0, 0, 0.06);
  }
  .p-interview-list-item-link-img {
    aspect-ratio: 158/91;
  }
  .p-interview-list-item-body {
    padding-block: 2.6666666667vw 9.8666666667vw;
    padding-inline: 4vw;
  }
  .p-interview-list-item-icn {
    right: 4vw;
    bottom: 4vw;
    width: 4.8vw;
    height: 4.8vw;
  }
  .p-interview-list-item-icn img {
    width: 2.6666666667vw;
    height: 2.1333333333vw;
  }
  .p-interview-list-item-ttl {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
  .p-interview-list-item-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.4vw;
    padding-top: 4.5333333333vw;
    gap: 2.6666666667vw;
  }
  .p-interview-list-item-meta-time {
    font-size: 3.2vw;
    line-height: 1;
  }
  .p-interview-list-item-meta-category {
    font-size: 3.2vw;
    line-height: 1;
    padding-left: calc(1.6vw + 1.6vw);
  }
  .p-interview-list-item-meta-category::before {
    width: 1.6vw;
    height: 1.6vw;
  }
}
/* p-scroll-infinity
---------------------------------------------------------------------------- */
.p-scroll-infinity {
  padding-bottom: 2.3958333333vw;
}

.p-scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
}

.p-scroll-infinity-list {
  display: flex;
  animation: infinity-scroll-left 80s infinite linear;
}

.p-scroll-infinity-item {
  width: 50.8rem;
  height: 31rem;
}
.p-scroll-infinity-item:nth-of-type(even) {
  margin-top: 8rem;
}
.p-scroll-infinity-item img {
  width: 46.8rem;
  height: 31rem;
  object-fit: contain;
  object-position: center;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .p-scroll-infinity {
    padding-bottom: 11.2vw;
  }
  .p-scroll-infinity-wrap {
    display: none;
  }
  .p-scroll-infinity-sp {
    width: 100%;
    height: 46.4vw;
  }
  .p-scroll-infinity-sp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
