@charset "UTF-8";

:root {
  --page-padding-width: clamp(20px, 5%, 80px);
  --contents-margin-top: 40px;
  --link-color:#A7A01B;
}


body,
p {
  margin: 0;
  color: #0A0102;
  font-size: 15px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

.bg-color {
  background-color: #fff;
  padding: 3em 0;
}

h2 {
  margin-bottom: 0 !important;
}




@media (min-width:1000px) {

  body,
  p {
    font-size: 16px;
  }
}

/* ---------- 共通ルール ---------- */
.--pc {
  display: none !important;
}

.--sp {
  display: block;
}

.detail__writerInfo {
  color: #333;
  line-height: 1.6;
}

aside {
  padding-bottom: 30px;
}

.fadeIn_up {
  transition: 1s;
}

.text-shadow {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.fadeIn_left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}

.fadeIn_left.is-show {
  transform: translateX(0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}

.fadeIn_right.is-show {
  transform: translateX(0);
  opacity: 1;
}

.fadeIn_down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}

.fadeIn_down.is-show {
  transform: translateY(0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: all 1s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}

.fadeIn.is-show {
  opacity: 1;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay04 {
  transition-delay: 0.4s;
}

.delay06 {
  transition-delay: 0.6s;
}

.delay08 {
  transition-delay: 0.8s;
}

.delay10 {
  transition-delay: 1s;
}

.zoom-out {
  overflow: hidden;
}

.zoom-out.active img {
  width: 100%;
  height: auto;
  animation: animationZoomOut 10s ease-in-out forwards;
}

figcaption {
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 0px;
}

figcaption a {
  text-decoration: underline;
}


@keyframes animationZoomOut {
  0% {
    transform: scale(1.07)
  }

  100% {
    transform: scale(1)
  }
}

.full-width {
  width: calc(100% + (var(--page-padding-width)* 2));
  max-width: none;
  margin-left: calc(var(--page-padding-width)* -1);
}

.title-feature {
  display: block;
  width: 22%;
  max-width: 90px;
  margin: 0 auto 100px;
  padding: 100px 0;
}

.content-padding {
  padding: 30px var(--page-padding-width);
}

.content-bg {
  margin: 0 15px;
  padding: var(--page-padding-width);
  background: #32312F;
}

.pagination {
  margin-bottom: 2rem;
}

.pagination-link {
  display: block;
  text-align: center;
  margin-bottom: 35px;
  text-decoration: underline;
  color: #313131 !important;
}

.pagination ul li.current a {
  background: #0A0102;
  color: #fff;
}

@media (min-width: 768px) {

  .--sp {
    display: none;
  }

  .--pc {
    display: block !important;
  }

  .content-bg {
    margin: 0 var(--page-padding-width);
  }

}



/* ---------- main-contents ---------- */

.main-contents {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #000;
  background: #FCFBEF;
}

.main-contents * {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.main-contents__img {
  display: none;
  background: #FCFBEF;
}

.main-contents__block {
  overflow: hidden;
}

@media (min-width: 768px) {
  .main-block:after {
    width: 45%;
    min-width: 400px;
    max-width: 600px;
    left: unset;
    right: 0;
  }

  .main-contents__img {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
  }

  .main-contents__img .scroll-box {
    width: 100%;
    height: 100dvh;
    margin: auto;
    display: block;
    visibility: hidden;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    /* フェード速度 */
    transition: 2s;
    opacity: 0;
  }

  .main-contents__img .scroll-box:first-child,
  .main-contents__img .scroll-box.active {
    visibility: visible;
    opacity: 1;
  }

  .main-contents__img .scroll-box01 img,
  .main-contents__img .scroll-box02 img,
  .main-contents__img .scroll-box03 img,
  .main-contents__img .scroll-box04 img,
  .main-contents__img .scroll-box05 img,
  .main-contents__img .scroll-box06 img,
  .main-contents__img .scroll-box07 img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }


  .main-contents__block {
    width: 38%;
    min-width: 375px;
    max-width: 600px;
    flex-shrink: 0;
    flex-grow: 0;
  }
}



/* ---------- interview ---------- */
.interview-box {
  margin-bottom: 40px;
  line-height: 2;
}

.interview-box span {
  font-size: 12px;
}

.interview-box:last-of-type {
  margin-bottom: 0;
}

.interview-box__question {
  margin-bottom: 15px;
}

.interview-box__question::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  margin: 0 10.5px 5px 0;
  background: #0A0102;
}

.interview-box__question,
.interview-box__answer {
  line-height: 2 !important;
}

/* ---------- KV ---------- */

.kv-container {
  position: relative;
  padding: 0;
  aspect-ratio: 846 / 1012;
}

.kv-container__inner {
  position: relative;
  background-image: url("https://fcdn.pivim.jp/img/feature/feature20250808/kv.jpg");
  width: 100%;
  aspect-ratio: 846 / 1012;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kv-container__logo {
  width: 33%;
  max-width: 303px;
  position: absolute;
  top: 5px;
  left: 5px;
}


.kv-container__title-box {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 400px;
}


@media (min-width: 768px) {

  .kv-container {
    display: flex;
    align-items: flex-end;
    background-image: url("https://fcdn.pivim.jp/img/feature/feature20250808/kv-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    aspect-ratio: 1920 / 841;
  }

  .kv-container__inner {
    background-image: url("https://fcdn.pivim.jp/img/feature/feature20250808/kv.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 50%;
    max-width: 1010px;
    aspect-ratio: 865 / 841;
    border: 0;
    padding: 0;
    margin: 0 auto;
  }

}


/* ----------- sec-title ------------ */
.sec-title {}

.sec-title__inner {
  position: relative;
}

.sec-title__inner:before {
  content: "";
  width: calc(100% - 50px);
  height: auto;
  aspect-ratio: 596 / 399;
  background-color: #EAEABD;
  display: block;
  position: absolute;
  top: 25px;
  left: 15px;
}

.sec-title__img {
  width: calc(100% - 40px);
  height: auto;
  aspect-ratio: 596 / 399;
  z-index: 1;
  position: relative;
  left: 40px;
  top: 0;
}

.sec-title__title {
  position: relative;
  font-size: clamp(17px, 4vw, 23px);
  line-height: 1.29;
  color: #fff;
  position: absolute;
  bottom: 15px;
  left: 55px;
  z-index: 1;
}


@media (min-width: 768px) {}



/* ---------- sec01 scrollbox01: intro ---------- */

.--sec01 .main-contents__block .scroll-box01 {
  padding: 0 !important;
  min-height: fit-content;
}

.intro__text-wrapper {
  position: relative;
  padding: 40px var(--page-padding-width) 0;
}

.intro__link {
  color: var(--link-color);
  text-decoration: underline;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.intro__link:before {
  content: "";
  display: block;
  width: 13px;
  height: 17px;
  background: url("https://fcdn.pivim.jp/img/feature/feature20250808/link-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  background-position: center;
}

.intro__deco {
  width: 20%;
  height: auto;
  margin: 0px 10px 0 auto;
}



@media (min-width: 768px) {}



/* ---------- sec01 scrollbox02: index ---------- */
.--sec01 .main-contents__block .scroll-box02 {
  padding: 0 !important;
  min-height: fit-content;
}

.index {
  position: relative;
}

.index-wrapper {
  margin: 0 auto;
  padding: 30px 0;
}

.index-img {
  position: relative;
  width: 100%;
}

.index-img::after {
  content: "";
  background: url('https://fcdn.pivim.jp/img/feature/feature20250808/index-title.png') no-repeat;
  display: block;
  width: 28%;
  height: auto;
  aspect-ratio: 105 / 57;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}




.index-list-wrapper {
  position: relative;
}

.index-list {
  content: "";
  background: #fff;
  display: block;
  position: relative;
  width: 83%;
  padding: 5%;
  margin-top: -20px;
  z-index: 1;
  right: var(--page-padding-width);
  margin-left: auto;
}

.index-list__item {
  display: flex;
}

.index-list__item:nth-of-type(n + 2) {
  margin-top: 10px;
}

.index-list__item::before {
  content: '・';
}

.index-list__item a {
  font-size: 14px;
  color:var(--link-color);
  text-decoration: underline;
}

.index__deco__daikon {
  width: 24%;
  height: auto;
  position: absolute;
  top: -30px;
  left: -5%;
}

.index__deco__hakusai {
  width: 20%;
  height: auto;
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 1;
}

@media (min-width: 768px) {


  .index-list__item:not(:last-child) {
    margin-bottom: 5px;
  }

  .index-list__item a {
    font-size: 16px;
  }

  .index-img {
    width: 100%;
  }

  .index-img::before {
    width: 36%;
    left: -16%;
    top: 18%;
  }

}

@media (min-width: 1200px) {
  .index-wrapper {
    aspect-ratio: 375 / 550;
    margin-bottom: 0px;
  }
}



/* ---------- sec01 scrollbox03 : title  ---------- */
.--sec01 .main-contents__block .scroll-box03 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 50px;
}

.sec01-01 {
  position: relative;
}

.sec01-01::after {
  content: "";
  background: url(https://fcdn.pivim.jp/img/feature/feature20250801/img-deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 75%;
  z-index: 3;
}

.sec01-01__img {
  display: block;
  width: 75%;
}

.sec01-img-01 {
  padding-top: 0;
}

.sec01-02__img {
  width: 100%;
  height: auto;
  aspect-ratio: 347 / 203;
  position: relative;
}

.sec01-02__img-01 {
  position: absolute;
  width: 57%;
  height: auto;
  top: 5%;
  left: 0;
}

.sec01-02__img-02 {
  position: absolute;
  width: 37.4%;
  height: auto;
  top: 0;
  right: 0;
}

.sec01-02__img-03 {
  position: absolute;
  width: 25.9%;
  height: auto;
  bottom: 5%;
  left: 0;
}




@media (min-width: 768px) {
  .sec01-01 {
    padding: 30px var(--page-padding-width) 0;
  }

  .sec01-01__img {
    width: 80%;
  }
}



/* ---------- sec02 ---------- */

.sec02-img-01,
.sec02-img-02,
.sec02-img-04{
  padding-top: 0;
  padding-bottom: 0;
}

.sec02-img-03 {
  width: 100%;
  position: relative;
  aspect-ratio: 335 / 479;
}

.sec02-img-03__01 {
  position: absolute;
  width: 40.9%;
  left: 0;
  top: 0;
  z-index: 1;
}

.sec02-img-03__02 {
  position: absolute;
  width: 42.0%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.sec02-img-03__03 {
  width: 100%;
  margin-top: 10%;
}

.sec02-img-05{
  padding-top: 0;
  padding-bottom: 0;
}
.sec02-img-05__wrapper{
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.sec02-img-05-01,
.sec02-img-05-02{
  width: 100%;
  height: 52.5%;
  position: relative;
}

.sec02-img-05-02{
  margin-top: -5%;
}

.sec02-img-05__01,
.sec02-img-05__03{
  width: 74.8%;
  height: auto;
  display: block;
}

.sec02-img-05__02{
width: 40%;
height: auto;
position: absolute;
right: 1%;
bottom: -8%;
}
.sec02-img-05__03{
  margin-left: auto;
}
.sec02-img-05__04{
width: 31%;
height: auto;
position: absolute;
left: 0;
bottom: -6%;
}


/* ---------- movie ---------- */
.movie {
  margin: 0 0 30px;
  padding: 0 var(--page-padding-width);
}

.theme-info {
  padding-top: 0;
  padding-bottom: 0;
}

.theme-info__title {
  font-size: 17px;
  font-weight: 700;
  color: #F48E17;
  text-align: center;
}

.theme-info__box {
  border: 1px solid #464646;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.theme-info__box p {
  font-size: 15px;
  line-height: 1.6;
}

.theme-info__img {
  border-radius: 10px;
  width: 100px;
  margin-right: 10px;
}


@media (min-width: 768px) {
  .movie {
    padding: 0 var(--page-padding-width);
  }

  .theme-info__title {
    text-align: left;
  }
}

/* ---------- shop info ---------- */

.shop-info {}

.shop-info th {
  position: relative;
  padding-right: 20px;
  white-space: nowrap;
}

.shop-info th::after {
  position: absolute;
  right: 0;
  content: "：";
}

.shop-info td {
  padding-left: 20px;
}

.shop-attention {
  padding-top: 0;
}

@media (min-width: 768px) {}

/* ---------- navigator info ---------- */
.detail__navigatorInfo{
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 33px 20px 20px 20px;
  position: relative;
  margin: 30px var(--page-padding-width);
  border: 1px solid #EAEABD;
}
.detail__navigatorInfo__title{
  height: 46px !important;
    width: auto;
    position: absolute;
    top: -20px;
    left: 5%;
}
.detail__navigatorInfo__photo {
    width: 30%;
    max-width: 120px;
    height: auto;
    float: left;
    margin: 0 15px 5px 0;
}
.detail__navigatorInfo__name {
    font-weight: 700;
    display: block;
    font-size: 16px;
    margin-bottom: 0.5rem;
}
.detail__navigatorInfo__profile{
  display: block;
    font-size: 13px;
    line-height: 1.6;
}
.linkmark_triangle {
    color: var(--link-color);
    text-decoration: underline;
}
.linkmark_triangle:before {
    content: "";
    width: 9px;
    height: 10px;
    background: url(https://fcdn.pivim.jp/img/feature/feature20250808/linkarrow_black.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    margin-right: 3px;
    display: inline-block;
}