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

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

.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 {
  position: relative;
  overflow: hidden;
}

.main-contents__block::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  height: 100dvh;
  width: 100%;
  z-index: -2;
}

.main-contents__block::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  height: 100dvh;
  width: 100%;
  background-color: rgba(255, 255, 255, .74);
  z-index: -1;
}

@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;
  }
  
  .main-contents__block::before, .main-contents__block::after {
    width: 38%;
    min-width: 375px;
    max-width: 600px;
  }
}

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

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

.kv-container__inner {
  position: relative;
  background-image: url("https://fcdn.pivim.jp/img/feature/feature20250822/kv.jpg?250822");
  width: 100%;
  aspect-ratio: 375 / 375;
  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: 17%;
  max-width: 150px;
  position: absolute;
  top: 20px;
  left: 20px;
}

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

.kv-title {
  width: 60px;
}

.kv-title__inner {
  position: relative;
  width: 100%;
  background-image: url(https://fcdn.pivim.jp/img/feature/feature20250822/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/feature20250822/kv-bg.jpg?250821);
    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/feature20250822/kv.jpg?250822);
    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/feature20250822/title01.jpg?250821) 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__inner::after {
  content: "";
  display: block;
  width: 158px;
  height: auto;
  background: url(https://fcdn.pivim.jp/img/feature/feature20250822/sec-title.png) no-repeat;
  background-size: auto 100%;
  aspect-ratio: 158 / 99;
  position: absolute;
  bottom: -40px;
  right: var(--page-padding-width);
}

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

.sec-title__title {
  position: relative;
  font-size: 20px;
  line-height: 1.29;
  font-weight: bold;
  color: #069F6D;
  padding-top: 40px;
  padding-bottom: 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__inner::after {
    width: 32%;
    max-width: 214px;
    bottom: -45px;
  }

  .sec-title__logo {
    width: 90px;
    top: 30px;
    left: 30px;
  }

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

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

.sec-text {
  padding: 15px 0;
}
.sec-img {
  padding: 15px 0;
}
.sec-img + .sec-img {
  padding-top: 0;
}


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

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

.intro .content-padding {
  padding-top: 60px;
}

.intro__img {
  position: relative;
  aspect-ratio: 335 / 424;
  display: block;
}

.intro__img::after {
  content: "";
  display: block;
  width: 220px;
  height: auto;
  background: url(https://fcdn.pivim.jp/img/feature/feature20250822/sec-intro.png) no-repeat;
  background-size: auto 100%;
  aspect-ratio: 220 / 124;
  position: absolute;
  bottom: -50px;
  right: var(--page-padding-width);
}

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

@media (min-width: 768px) {

  .intro__img::after {
    width: 62%;
    max-width: 358px;
    aspect-ratio: 358 / 202;
    bottom: -70px;
  }
}



/* ---------- 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: 305 / 458;
  left: 31px;
  top: 0px;
}

.index-img::before {
  content: "";
  background: url('https://fcdn.pivim.jp/img/feature/feature20250822/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: #E5E3D6;
  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: 15px;
}

@media (min-width: 768px) {

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

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

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

  .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  ---------- */
.--sec01 .main-contents__block::before {
  background: url(https://fcdn.pivim.jp/img/feature/feature20250822/sec01_bg.jpg);
  background-size: cover;
}
.--sec01 .scroll-box01, .--sec01 .scroll-box02 {
  background-color: #E5E3D6;
}


/* ---------- sec02 ---------- */
.--sec02 .main-contents__block::before {
  background: url(https://fcdn.pivim.jp/img/feature/feature20250822/sec02_bg.jpg);
  background-size: cover;
}

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

.sec02-02__img {
  display: flex;
}

.sec02-02__img img:nth-of-type(1) {
  width: 43%;
}

.sec02-02__img img:nth-of-type(2) {
  width: 57%;
}

.sec02-03__img {
  position: relative;
  aspect-ratio: 610 / 479;
}

.sec02-03__img img {
  position: absolute;
}

.sec02-03__img img:nth-of-type(1) {
  width: 47%;
  top: 0;
  right: 0;
}

.sec02-03__img img:nth-of-type(2) {
  width: 60%;
  bottom: 0;
  left: 0;
}

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

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

/* ---------- survey  ---------- */
.survey-wrapper {
  background-color: #fff;
  padding: 35px var(--page-padding-width) 50px;
}

.survey-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #069F6D;
  margin: 0 auto 40px !important;
}

.survey-wrapper img {
  display: block;
  margin: 30px 0;
}

.survey-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  background: #32455C;
  border-radius: 16px;
  color: #fff;
}

@media (min-width: 768px) {
  .survey-title {
    font-size: 28px;
  }
}


/* ---------- shop  ---------- */
.shop .content-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.shop-title {
  position: relative;
  aspect-ratio: 375 / 187;
  background: url('https://fcdn.pivim.jp/img/feature/feature20250822/shop.jpg') no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.shop-title__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  max-width: 110px;
  transform: translate(-50%, -50%);
}

.shop-info {
  margin-top: var(--page-padding-width);
}

.shop-info th {
  white-space: nowrap;
}

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

.shop-info td::before {
  position: absolute;
  left: 0;
  content: "：";
}

.shop-attention {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .shop-title__title {
    width: 23%;
    max-width: 156px;
  }
}