/* BASE */
@font-face{
  font-family: "Cinzel";
  src: url(../fonts/Cinzel/Cinzel-VariableFont_wght.woff2) format("woff");
  font-display: swap;
}
@font-face{
  font-family: "Zen Kaku Gothic Antique";
  src: url(../fonts/Zen_Kaku_Gothic_Antique/ZenKakuGothicAntique-Medium.woff2) format("woff");
  font-display: swap;
}
:root {
  --base-color: #fffcf7;
  --font-color: #1b0c01;
  --accent-color: #96753b;
}

html {
  scroll-behavior: smooth;
  line-break: strict;
  cursor:url(https://nextfocus.jp/event/loafers2026/img/arrow_insert.svg) 0 0, auto;
}
body {
  background-color: var(--base-color);
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-color);
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
}
#contents {
  width: 1200px; /*レスポンシブ*/
  margin: auto;
}
h1 {
  display: none;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* HERO */

#hero {
  width: 1200px; /*レスポンシブ*/
  margin: auto;
  margin-bottom: 2rem;
}
.feature_intro {
  width: 80%;
  height: 600px;
  margin: auto;
  padding-bottom: 10rem;
  line-height: 1.75;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 10px #fff;
}
#back_pbp {
  width: calc(100vw - 9px);
  height: 800px;
  margin: 0 calc(50% - 50vw);
  position: relative;
  background-image:
    url(https://nextfocus.jp/event/loafers2026/img/pine.png), url(https://nextfocus.jp/event/loafers2026/img/bamboo.png), url(https://nextfocus.jp/event/loafers2026/img/plum.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    left top,
    left bottom,
    right bottom;
    display: flex;
    align-items: center;
}
.scrollbar::-webkit-scrollbar {
    display: none;
}
.pbp {
  width: fit-content;
  margin: 2rem auto;
}
.pbp li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.pbp li img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.padding_l {
  padding-left: 0.5rem;
  white-space: nowrap;
}
/* VIDEO */
#video_wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 12rem auto;
}

/* ITEM */
.item_flex {
  display: flex;
  gap: 2rem;
  margin-bottom: 12rem;
}
.item_info_wrap {
  width: 50%; /*レスポンシブ*/
  display: flex;
  align-items: center;
}
.kana{
  font-size: 0.75rem;
}
.brand,
.item_name,
.points {
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.brand {
  font-size: 2rem;
}
.price {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.item_name {
  font-size: 4rem;
  line-height: 1.2;
}
.view_more {
  display: block;
  width: fit-content;
  padding: 0.5rem 2rem;
  background-color: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: 0.4s ease-in-out;
  border: 2px solid var(--base-color);
  letter-spacing: 1px;
}
.view_more:hover {
  border: 2px solid var(--font-color);
  background-color: var(--base-color);
  letter-spacing: 2px;
}
.view_more .space {
  transition: 0.4s ease-in-out;
}
.view_more:hover .space {
  content: "";
  padding: 0 0.25rem;
}
.points{
  font-size: 1.5rem;
}
.item_poem {
  line-height: 1.75;
    padding-left: 0;
}
.points_list li{
    position:relative;
    padding-left:1em;
}
.points_list li::before{
    content:"";
    position:absolute;
    left:0;
    top:0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--font-color);
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pine_pic {
  width: 50%; /*レスポンシブ*/
  aspect-ratio: 3/4;
  background-image: url(https://nextfocus.jp/event/loafers2026/img/pine01.avif);
  background-repeat: no-repeat;
}

.bamboo_pic {
  order: 2; /*flexbox順番の入れ替え*/
  width: 50%; /*レスポンシブ*/
  aspect-ratio: 3/4;
  background-image: url(https://nextfocus.jp/event/loafers2026/img/bamboo01.avif);
  background-repeat: no-repeat;
}

.bamboo_item_info {
  order: 1; /*flexbox順番の入れ替え*/
}
.plum_pic {
  width: 50%; /*レスポンシブ*/
  aspect-ratio: 3/4;
  background-image: url(https://nextfocus.jp/event/loafers2026/img/plum01.avif);
  background-repeat: no-repeat;
}
/* SCROLL ANIMATION */
/* ============================================ */

/* .fadein : opacityが0→1 */
.fadein {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.fadein.is-show {
  opacity: 1;
}

/* .zoom-in : scale(0.8)→1 + opacityが0→1 */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 2s ease,
    transform 2s ease;
}
.zoom-in.is-show {
  opacity: 1;
  transform: scale(1);
}

/* .reverl : テキストがoverflow: hidden;の中を下から上へ移動しながら現れる */
.reverl {
  overflow: hidden;
}
.reverl .reverl-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.reverl.is-show .reverl-inner {
  transform: translateY(0);
}

/* .bluer : blur(10px)→0 */
.bluer {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 2s ease,
    filter 2s ease;
}
.bluer.is-show {
  opacity: 1;
  filter: blur(0);
}

/*スクロールを促すアニメーション*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");

.scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: var(--font-color);
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--font-color);
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

/*-------------------↓background-img調整用メディアクエリ↓-------------------*/
@media screen and (max-width: 1499px) {

.feature_intro{
  height: 500px;
  margin: 0 auto;
}
#back_pbp {
  width: 100vw;
  height: 700px;
  padding: 5rem;
  display: flex;
}
  #back_pbp {
    background-size:
      20% auto,
      20% auto,
      20% auto;
  }

@media screen and (max-width: 1299px) {
  /* BASE */
  #contents {
    width: 90%; /*レスポンシブ*/
    margin: auto;
  }
  /* HERO */
  #hero {
    width: 100%; /*レスポンシブ*/
  }

  .feature_intro {
    height: 600px;
    background-image: none;
  }
  #back_pbp {
    height: 600px;
    background-size:
      30% auto,
      30% auto,
      25% auto;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position:
      left 20%,
      left bottom,
      right bottom;
  }
/*ITEM*/
.item_flex{
  margin-bottom: 6rem;
}
  .pine_pic,
  .plum_pic,
  .bamboo_pic {
    width: 50%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
  }

  @media screen and (max-width: 767px) {
    /* BASE */

    #contents {
      width: 95%;
      margin: auto;
    }
  
    /* HERO */
    .feature_intro_contents{
    }

    .feature_intro {
      height: fit-content;
      width: 100%;
      background-image: none;
      padding-top: 1rem;
}
    #back_pbp {
      height: fit-content;
      background-size:
        30% auto,
        30% auto,
        25% auto;
      background-repeat: no-repeat, no-repeat, no-repeat;
      background-position:
        left top,
        left bottom,
        right bottom;
    }
      .mobile_left{
      text-align: left;
    }

    #video_wrap {
      margin: 0 auto 6rem;
    }

      /* ITEM */
  .item_flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 12rem;
  }
  .item_info_wrap {
    width: 100%; /*レスポンシブ*/
    display: flex;
    align-items: center;
  }
  .pine_pic,
  .plum_pic,
  .bamboo_pic {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .bamboo_pic {
    order: 1;
  }
  .bamboo_item_info {
    order: 2;
  }
    .item_flex {
      margin-bottom: 6rem;
    }
    .brand{
      font-size: 1.5rem;
    }
      .item_name {
        font-size: 3rem;
      }
      @media screen and (max-width: 429px) {
        #back_pbp{
                  padding: 2.5rem;

        }
      }
  }
}
}