@charset "UTF-8";

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

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: #464646;
  background: #EDCBB3;
}

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

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

.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;
  }

  .--sec01 .main-contents__img .scroll-box02 img {
    object-position: 70%;
  }

  .--sec03 .main-contents__img .scroll-box01 img {
    object-position: center center;
  }

  .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: 375 / 492;
}

.kv-container__inner {
  position: relative;
  background-image: url("https://fcdn.pivim.jp/img/feature/feature20250801/kv-sp.jpg?250731");
  width: 100%;
  aspect-ratio: 375 / 628;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.kv-container__inner::before {
  content: "";
  background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.24));
  display: block;
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.kv-container__logo {
  width: 25%;
  max-width: 150px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.kv-container__title-box {
  position: absolute;
  bottom: 40px;
  right: 15px;
  display: flex;
  flex-direction: column;
  width: 72%;
  max-width: 414px;
}

.kv-title {
  width: 60px;
}

.kv-title__inner {
  position: relative;
  width: 100%;
  background-image: url("https://fcdn.pivim.jp/img/feature/feature20250425/kv-title-sp.png");
  aspect-ratio: 375 / 323;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


@media (min-width: 768px) {

  .kv-container {
    display: flex;
    align-items: flex-end;
    background-image: url("https://fcdn.pivim.jp/img/feature/feature20250801/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/feature20250801/kv.jpg?250731");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 50%;
    max-width: 1100px;
    aspect-ratio: 865 / 841;
    border: 0;
    padding: 0;
    margin: 0 auto;
  }

  .kv-container__logo {
    left: 4%;
  }


  .kv-container__title-box {
    bottom: 35px;
    right: 35px;
  }

  .kv-container__logo.--sp {
    display: none;
  }

  .kv-container__logo.--pc {
    display: block;
  }
}


/* ----------- sec-title ------------ */
.sec-title {
  width: 100%;
  height: auto;
  background: url('https://fcdn.pivim.jp/img/feature/feature20250801/title01.jpg') no-repeat;
  background-size: cover;
  background-position: bottom center;
  aspect-ratio: 679 / 679;
  position: relative;
}

.sec-title__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.sec-title__logo {
  width: 50px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 20px;
}

.sec-title__title {
  position: relative;
  font-size: 17px;
  line-height: 1.29;
  color: #056CFC;
  padding-top: 80px;
  padding-bottom: 0;
}

.sec-title__title::before {
  content: "";
  display: block;
  width: 80%;
  height: 105px;
  background: url(https://fcdn.pivim.jp/img/feature/feature20250801/sec-title.png);
  background-size: auto 100%;
  position: absolute;
  top: -55px;
  right: 0;
}

.sec-title__main {
  position: absolute;
  width: 73%;
  max-width: 477px;
  right: 20px;
  bottom: -3%;
}

.--sec01 .sec-title__logo {
  left: unset;
  left: 20px;
}

@media (min-width: 768px) {
  .sec-title__logo {
    width: 90px;
    top: 30px;
    left: 30px;
  }

  .sec-title__title {
    font-size: 28px;
    line-height: 1.29;
    padding-top: 130px
  }

  .--sec01 .sec-title__logo {
    right: 30px;
  }

  .sec-title__title::before {
    height: 195px;
    top: -97px;
  }
}



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

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

.intro__img {
  position: relative;
  aspect-ratio: 320 / 480;
  margin-left: 0%;
  padding-top: 80px;
  padding-bottom: 60px;
  display: block;
  width: 85%;
  left: 7%;
}

.intro__img::before {
  content: "";
  background: #FFF8F0;
  display: block;
  width: 100%;
  aspect-ratio: 320 / 480;
  position: absolute;
  top: 110px;
  right: -35px;
  z-index: -1;
}

.intro__img::after {
  content: "";
  border: 2px solid #056CFC;
  display: block;
  width: 100%;
  aspect-ratio: 320 / 480;
  position: absolute;
  top: 80px;
  transform: rotate(15deg);
  z-index: 3;
}

.intro__text-wrapper {
  position: relative;
  padding: var(--page-padding-width);
  font-family: "Shippori Mincho", serif !important;
}

.intro__text-wrapper .logo {
  display: inline-block;
  background: url("https://fcdn.pivim.jp/img/feature/feature20250801/logo-black.png") no-repeat;
  width: 26px;
  height: 24px;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

@media (min-width: 768px) {

  .intro__img {
    margin: 0 auto 0 12%;
    width: 70%;
    left: 0%;
    padding-top: 110px;
    padding-bottom: 0px;
  }

  .intro__img::before {
    top: 160px;
    right: -50px;
  }

  .intro__img::after {
    top: 110px;
  }

  .intro__text-wrapper .logo {
    width: 38px;
    height: 34px;
  }
}



/* ---------- 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 30px;
  aspect-ratio: 375 / 650;
}

.index-img {
  position: relative;
  width: 100%;
  aspect-ratio: 302 / 453;
  left: 31px;
  top: 0px;
}

.index-img::before {
  content: "";
  background: url('https://fcdn.pivim.jp/img/feature/feature20250801/index.png') no-repeat;
  display: block;
  width: 35%;
  background-size: contain;
  position: absolute;
  aspect-ratio: 115 / 78;
  left: -32px;
  top: 58px;
}

.index-list {
  margin-top: 20px;
}

.index-list {
  content: "";
  background: #FFF8F0;
  display: block;
  width: 95%;
  position: absolute;
  bottom: 40px;
  left: 0px;
  padding: 5%;
}

.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;
}

@media (min-width: 768px) {

  .index-wrapper {
    padding: 30px 12%;
    aspect-ratio: 375 / 650;
  }

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

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

  .index-img {
    width: 100%;
    left: auto;
    right: -16%;
  }

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

  .index-list {
    width: 76%;
    left: 12%;
    bottom: 50px;
  }
}

@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;
}

.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-02 {
  padding-top: 0;
  margin-top: -60px;
}

.sec01-02__img {
  width: 72%;
  display: block;
  margin: 0 0 0 auto;
}

.sec01-03 {
  position: relative;
  padding-top: 0;
  padding-bottom: 5px;
}

.sec01-03-img {
  display: block;
  width: 57%;
  position: relative;
}

.sec01-03 {
  margin-left: 0%;
  position: relative;
  padding-top: 0;
  padding-bottom: 20px;
  z-index: 2;
}


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

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

  .sec01-02 {
    margin-top: -60px;
  }

  .sec01-02__img {
    width: 70%;
  }
}



/* ---------- sec02 ---------- */
.--sec02 .main-contents__block .scroll-box01 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.--sec02 .main-contents__block .scroll-box03 {
  padding-bottom: 30px !important;
}

.--sec02 .sec-title {
  background: url('https://fcdn.pivim.jp/img/feature/feature20250801/title02.jpg') no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.--sec02 .shop .sec-title {
  background: url('https://fcdn.pivim.jp/img/feature/feature20250801/shop.jpg') no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.--sec02 .sec-title .sec-title__title::before {
  width: 100%;
  bottom: -5%;
  right: -10%;
}

.--sec02 .sec-title .sec-title__main {
  width: 90%;
  max-width: 446px;
  bottom: 0%;
}

.sec01-03,
.sec02-02,
.sec02-text-01,
.sec03-text-01 {
  margin-top: 30px;
}

.link {
  text-decoration: underline;
}

.sec02-01 {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
.sec02-01 img {
  width: 100%;
}
.sec02-02 {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}

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

.sec02-02__img-wrapper {
  width: 61%;
  margin-left: 12%;
  position: relative;
}

.sec02-02__img-wrapper::before {
  content: "";
  background: #FFF8F0;
  display: block;
  width: 100%;
  aspect-ratio: 368 / 552;
  position: absolute;
  top: 28px;
  right: -28px;
  z-index: -10;
}

.sec02-02__img-wrapper::after {
  content: "";
  border: 2px solid #056CFC;
  display: block;
  width: 100%;
  aspect-ratio: 320 / 480;
  position: absolute;
  top: 0;
  transform: rotate(15deg);
}

.sec02-03 {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  margin-top: -125px;
}

.sec02-03__img-wrapper {
  width: 100%;
  aspect-ratio: 375 / 300;
  margin-left: 0%;
  position: relative;
}

.sec02-03-01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  z-index: 2;
}

.sec02-03-02 {
  position: absolute;
  bottom: 1%;
  left: 0;
  width: 63%;
}

.sec02-05 {
  padding: 30px 0;
}

.sec02-05__img-wrapper {
  position: relative;
  aspect-ratio: 303 / 455;
  width: 80%;
  margin: 0 0 0 auto;
}

.sec02-04,
.sec02-06 {
  padding-top: 0;
  padding-bottom: 0;
}

.sec01-01 figcaption,
.sec02-01 figcaption,
.sec02-02 figcaption {
  padding: 12px 0 0;
}

.sec02-03 figcaption,
.sec02-05 figcaption {
  padding: 12px var(--page-padding-width) 0;
}

@media (min-width: 768px) {
  .sec01-03,
  .sec02-text-01,
  .sec03-text-01 {
    margin-top: 50px;
  }

  .--sec02 .sec-title .sec-title__main {
  width: 93%;
  max-width: 446px;
  bottom: 0%;
}

  .--sec02 .sec-title .sec-title__title::before {
    width: 105%;
    bottom: -6%;
    right: -10%;
  }

  .sec02-02::after {
    width: 16%;
  }

  .sec02-02__img-wrapper {
    width: 65%;
    margin-left: 6%;
  }

  .sec02-02__img-wrapper::before {
    top: 52px;
    right: -52px;
  }

  .sec02-03 {
    margin-top: -30%;
  }

  .sec02-03__img-wrapper {
    aspect-ratio: 675 / 539;
  }

  .sec02-03-01 {
    width: 43%;
  }

  .sec02-05 {
    padding: 30px 0;
  }

  .sec02-05__img-wrapper {
    aspect-ratio: 303 / 455;
    width: 70%;
  }
}


.movie {
  margin: 30px 0;
  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 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) {
}