@charset "UTF-8";

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

body,
p {
  margin: 0;
  color: #353C41;
  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: 20px 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: #E7F1FA; */
}

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

.main-contents__img {
  display: none;
  background: rgba(231, 241, 250, 1);
}

.main-contents__block {
  overflow: hidden;
}

.main-block:after {
  content: "";
  display: block;
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh !important;
  background-image: url(https://fcdn.pivim.jp/img/feature/feature20250905/main-block-bg01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-block.--sec02:after {
  background-image: url(https://fcdn.pivim.jp/img/feature/feature20250905/main-block-bg02.jpg);
}

@media (min-width: 768px) {


  .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;
    object-position: 45% 0;
  }

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

  .main-block:after {
    width: 38%;
    min-width: 375px;
    max-width: 600px;
    left: unset;
    right: 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/feature20250905/kv.jpg");
  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: 20%;
  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/feature20250905/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/feature20250905/kv.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 50%;
    max-width: 1100px;
    aspect-ratio: 841 / 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/feature20250905/sec01__titleimg.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-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 4.8vw, 22px);
  font-weight: bold;
  line-height: 1.5;
  color: #2D92E3;
  padding-top: 60px;
  padding-bottom: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sec-title::after {
  content: "";
  display: block;
  width: 24%;
  height: auto;
  aspect-ratio: 164 / 288;
  background: url(https://fcdn.pivim.jp/img/feature/feature20250905/coffee-deco.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10%;
  right: -3%;
}

.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 {
    padding-top: 80px;
    font-size: clamp(16px, 2.3vw, 23px);
  }

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

}



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

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

.intro__img {
  position: relative;
  margin: 0 auto;
  width: 70%;
  padding-top: 60px;
  padding-bottom: 20px;
  display: block;
}

.intro-img__text {
  position: absolute;
  top:20%;
  left: -13%;
  width: 22%;
  height: auto;
}

.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 {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .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: 0;
  padding-bottom: 40px;
  background: #DEEEF5;
}

.index-img {
  position: relative;
  width: 100%;
  aspect-ratio: 675 / 708;
  left: 0;
  top: 0;
}

.index-img::before {
  content: "";
  background: url('https://fcdn.pivim.jp/img/feature/feature20250905/index__title.png') no-repeat;
  display: block;
  width: 32%;
  height: auto;
  aspect-ratio: 160 / 109;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 20%;
  z-index: 1;
}


.index-list {
  content: "";
  background: #324141;
  color: #fff;
  display: block;
  width: 89%;
  position: relative;
  padding: 5%;
  margin: -10% auto 0;
}

.index-list__item {
  display: flex;
  color: #fff;
  line-height: 1.6;
}

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

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

.index-list__item a {
  font-size: 14px;
  color: #fff;
}

@media (min-width: 768px) {

  .index-wrapper {}

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

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


  .index-img::before {}

}

@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;
  background: rgba(231, 241, 250, 0.9);
}

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



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

/* ---------- sec01 scrollbox04  ---------- */
.--sec01 .main-contents__block .scroll-box04 {
  padding-top: 0 !important;
  padding-bottom: 30px !important;
  background: rgba(231, 241, 250, 0.9);
}

.sec01-04 {
  position: relative;
  aspect-ratio: 550 / 462;
  margin-left: var(--page-padding-width);
  margin-right: var(--page-padding-width);
  margin-bottom: 40px;
}

.sec01-04__img01 {
  position: absolute;
  width: 49%;
  height: auto;
  top: 7.79%;
  right: 0;
}

.sec01-04__img02wrapper {
  position: absolute;
  width: 49%;
  height: auto;
  top: 0;
  left: var(--page-padding-width);
}

.sec01-04__img02wrapper::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 167 / 250;
  background: #90BCDE;
  display: block;
  position: absolute;
  top: 6.7%;
  left: -10%;
  z-index: 0;
}

.sec01-04__img03 {
  position: absolute;
  width: 18%;
  height: auto;
  aspect-ratio: 417 / 1211;
  bottom: 0;
  left: 0;
}



/* ---------- sec02 ---------- */
.--sec02 .main-contents__block .scroll-box01 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: rgba(231, 241, 250, 0.9);
}

.--sec02 .main-contents__block .scroll-box02 {
  background: rgba(231, 241, 250, 0.9);
}

.sec02-02__img-wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.sec02-02__img01 {
  grid-column: 1 / 3;
}

.--sec02 .main-contents__block .scroll-box03 {
  padding-bottom: 30px !important;
  background: rgba(231, 241, 250, 0.9);
}

.sec02-04 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 549 / 680;
}

.sec02-04__img01 {
  width: 65%;
  height: auto;
  position: absolute;
  top: 0;
  right: 5%;
}

.sec02-04__img02 {
  width: 31%;
  height: auto;
  position: absolute;
  top: 44%;
  left: 5%;
}

.sec02-04__img03 {
  width: 63%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 20%;
}

.sec02-04__img04 {
  width: 38%;
  height: auto;
  position: absolute;
  top: 8%;
  left: 5%;
}

.--sec02 .main-contents__block .scroll-box04 {
  background: #DEEEF5;
  padding: 60px 0;
}



.--sec02 .sec-title {
  background: url('https://fcdn.pivim.jp/img/feature/feature20250905/sec02__titleimg.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;
}

.sec-title__shop {
  position: relative;
  width: 100%;
  aspect-ratio: 580 / 525;
  width: calc(100% - var(--page-padding-width) - var(--page-padding-width));
  margin: 0 auto;
}

.sec-title__shop__img01 {
  display: block;
  width: 75.34%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.sec-title__shop__img02 {
  display: block;
  width: 36.55%;
  position: absolute;
  top: 35%;
  left: 0;
}

.sec-title__shop__img03 {
  display: block;
  width: 48.44%;
  position: absolute;
  top: 10%;
  left: 5%;
}



.link {
  text-decoration: underline;
}



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


.movie {
  margin: 50px 0 0;
  padding: 0 var(--page-padding-width) 40px;
}

.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) 40px;
  }

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

.shop-info {
  margin-top: 1em;
}

.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) {}