@charset "UTF-8";


/* ========================================================
基本設定
=========================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}

:root {
  /* カラー */
  --Main: #000;
  --Sub: #3E9CB9;
  --Accent: #FF92C1;
  --green: #C5D574;
  --pink: #E75C79;
  --mint: #83C5C2;
  --blue: #6493CB;
  --grey: #B8C5D1;
  
  /* フォント */
  --font_main: 700 14px "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font_accent_quadratic: normal 14px "reross-quadratic", sans-serif;
  --font_accent_rectangular: normal 14px "reross-rectangular", sans-serif;
}

.body {
  font: var(--font_main);
  line-height: 175%;
  letter-spacing: 0.02em;
  color: var(--Main);
  width: 100%;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  position: relative;
}

.body:has(.hamburger__content.active),
.body:has(dialog[open]) {
  overflow: hidden;
}

p {
  text-align: justify;
}

p:not([class]) + p:not([class]) {
  margin-top: 1.5em;
}

a {
  text-decoration: none;
  color: var(--Main);
}

small {
  font-size: max(70%, 10px);
}


/* ========================================================
共通パーツ
=========================================================*/
.forPC {
  display: none;
}

.inner {
  background: #fff;
  width: 100%;
}

.parallax {
  z-index: 1;
}

.no_scroll {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* ========================================================
ハンバーガーメニュー
=========================================================*/
/* ボタン */
.hamburger__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 26px;
  right: 0;
  z-index: 101;
}

.hamburger__btn-inner {
  width: 24px;
  height: 16px;
  position: relative;
}

.hamburger__btn span {
  width: 100%;
  height: 3px;
  background-color: var(--Main);
  position: absolute;
  transition: .5s;
}

.hamburger__btn span:first-of-type {
  top: 0;
}

.hamburger__btn span:nth-of-type(2) {
  top: 50%;
}

.hamburger__btn span:last-of-type {
  top: 100%;
}

.hamburger__btn.active span:first-of-type {
  top: 50%;
  transform: rotate(405deg);
}

.hamburger__btn.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger__btn.active span:last-of-type {
  top: 50%;
  transform: rotate(-405deg);
}

/* メニュー */
.hamburger__content {
  background: url(../img/sp-menu_bg.jpg) no-repeat top center / 100% auto;
  width: 100%;
  height: 100%;
  padding-top: 28%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: .5s;
  z-index: 100;
}

@supports (background: url('image.webp')) {
  .hamburger__content {
    background: url(../img/sp-menu_bg.webp) no-repeat top center / 100% auto;
  }
}

@supports (background: url('image.avif')) {
  .hamburger__content {
    background: url(../img/sp-menu_bg.avif) no-repeat top center / 100% auto;
  }
}

.hamburger__content.active {
  overflow-y: hidden;
  transform: translateX(0);
}

.hamburger__content-logo {
  width: auto;
  height: 40px;
  position: absolute;
  top: 20px;
  left: 16px;
}

.hamburger__content-wrap {
  text-align: center;
}

.hamburger__content-list-item:nth-child(n+2) {
  margin-top: 50px;
}

.hamburger__content-list-item a {
  font: var(--font_accent_quadratic);
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.hamburger__content-btn {
  font: var(--font_accent_quadratic);
  font-size: 20px;
  letter-spacing: 0.05em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--Main);
  width: 240px;
  height: 64px;
  margin-top: 50px;
  position: relative;
}

.hamburger__content-btn::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--Main);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.hamburger__content-btn::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--Main);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}


/* ========================================================
FV
=========================================================*/
.fv {
  background: url(../img/fv_bg_sp.jpg) no-repeat top 162px center / 100% auto;
  padding-top: 513px;
  overflow-x: hidden;
  position: relative;
}

@supports (background: url('image.webp')) {
  .fv {
    background: url(../img/fv_bg_sp.webp) no-repeat top 162px center / 100% auto;
  }
}

@supports (background: url('image.avif')) {
  .fv {
    background: url(../img/fv_bg_sp.avif) no-repeat top 162px center / 100% auto;
  }
}

.fv__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 11%;
  position: relative;
  z-index: 1;
}

.fv__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 3px;
}

.fv__logo-yamamoto {
  width: auto;
  height: 168px;
}

.fv__logo-respectacles {
  width: auto;
  height: 96px;
}

.fv__catch {
  font-size: 30px;
  line-height: 115%;
  letter-spacing: 0.1em;
  padding-left: 0.6em;
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.fv__head {
  position: absolute;
  top: 0;
  left: 44%;
}

.fv__head-vol {
  font: var(--font_accent_rectangular);
  font-size: 12px;
  line-height: 100%;
  color: var(--Accent);
}

.fv__head-name {
  width: auto;
  height: 24px;
  margin-top: 4px;
}

.fv__txt {
  font: var(--font_accent_rectangular);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.fv__txt-year {
  font-size: 12px;
  line-height: 100%;
}

.fv__txt-date {
  font-size: 16px;
  line-height: 100%;
  margin-top: 3px;
}

.fv__txt-place {
  font-size: 13px;
  line-height: 115%;
  margin-top: 5px;
}

/* FVスライダー */
.fv__slider {
  margin-top: -116px;
  position: relative;
  z-index: 0;
}

.fv__slider-list {
  align-items: flex-end;
}

.fv__slider-slide img {
  width: 72px;
}

img.fv__slider-slide-img--m {
  width: 78px;
}

img.fv__slider-slide-img--l {
  width: 77px;
}



/* ========================================================
WHAT THIS PROJECT
=========================================================*/
.what {
  margin-top: 156px;
  position: relative;
}

.what__heading {
  background: url(../img/what_bg_sp.jpg) no-repeat center / cover;
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 563;
  padding-top: 4px;
  position: relative;
}

@supports (background: url('image.webp')) {
  .what__heading {
    background: url(../img/what_bg_sp.webp) no-repeat center / cover;
  }
}

@supports (background: url('image.avif')) {
  .what__heading {
    background: url(../img/what_bg_sp.avif) no-repeat center / cover;
  }
}

.what__heading-en {
  font: var(--font_accent_rectangular);
  font-size: 17.866666666666667vw;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-left: -4px;
  /* position: absolute;
  top: 0.5%;
  left: -4px; */
}

.what__heading-ja {
  font-size: 14px;
  color: #fff;
  line-height: 125%;
  letter-spacing: 0.03em;
  padding-left: 8px;
  margin-top: 16px;
  /* position: absolute;
  top: 40%;
  left: 9px; */
}

.what__logo {
  padding: 0 10px;
  margin-top: 20px;
}

.what__meaning {
  position: relative;
}

.what__meaning-en {
  font: var(--font_accent_quadratic);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--Sub);
  margin-top: 16px;
}

.what__meaning-ja--respect,
.what__meaning-ja--spectacle {
  font-size: 12px;
  color: var(--Sub);
  position: absolute;
}

.what__meaning-ja--respect {
  bottom: -18px;
  left: 29%;
}

.what__meaning-ja--spectacle {
  bottom: -18px;
  left: 62%;
}

.what__txt {
  padding: 0 20px;
  margin-top: 102px;
  position: relative;
}

.what__txt::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 56px;
  background: var(--Main);
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
}


/* ========================================================
NEO:SAKE
=========================================================*/
.neosake {
  margin-top: 88px;
}

.neosake__head {
  padding: 0 20px;
}

.neosake__heading {
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 232;
  background: url(../img/neosake_img.jpg) no-repeat center / 100% auto;
  object-fit: cover;
  margin-top: 48px;
  position: relative;
}

@supports (background: url('image.webp')) {
  .neosake__heading {
    background: url(../img/neosake_img.webp) no-repeat center / 100% auto;
  }
}

@supports (background: url('image.avif')) {
  .neosake__heading {
    background: url(../img/neosake_img.avif) no-repeat center / 100% auto;
  }
}

.neosake__heading-ttl {
  position: absolute;
  top: -26px;
}

.neosake__heading-catch {
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.05em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.neosake__txt {
  padding: 24px 20px 28px;
}

.neosake__txt p {
  text-align: center;
}

.neosake__desc {
  line-height: 200%;
  color: #fff;
  background: url(../img/neosake_bg_sp.jpg) no-repeat top center / cover;
  padding: 56px 20px 32px;
}

@supports (background: url('image.webp')) {
  .neosake__desc {
    background: url(../img/neosake_bg_sp.webp) no-repeat top center / cover;
  }
}

@supports (background: url('image.avif')) {
  .neosake__desc {
    background: url(../img/neosake_bg_sp.avif) no-repeat top center / cover;
  }
}

.neosake__desc-ttl {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.neosake__desc-ttl + p {
  margin-top: 40px;
}


/* ========================================================
LINE UP
=========================================================*/
.lineUp {
  background: var(--Main);
  height: 100%;
  padding-top: 80px;
  padding-bottom: 56px;
  margin-top: 80px;
  position: relative;
}

.lineUp__obj {
  width: 120px;
  height: 200px;
  position: absolute;
  top: 620px;
  right: 0;
}

.lineUp__heading {
  padding: 0 20px;
  position: relative;
}

.lineUp__heading-en img {
  width: auto;
  height: 40px;
}

.lineUp__heading-ja {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.25em;
  color: #fff;
  margin-top: 24px;
}

.lineUp__container {
  padding: 0 20px;
  margin-top: 64px;
}

.lineUp__box:nth-child(n+2) {
  margin-top: 84px;
}

.lineUp__box-heading {
  font: var(--font_accent_quadratic);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.lineUp__box-heading-size {
  font-size: 20px;
  line-height: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  flex-grow: 1;
  flex-shrink: 0;
}

.lineUp__box-heading-size span {
  font-size: 40px;
  margin-right: 8px;
}

.lineUp__box-heading-ml {
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.lineUp__box-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.lineUp__box--s .lineUp__box-list {
  column-gap: 20px;
  row-gap: 28px;
}

.lineUp__box--m .lineUp__box-list {
  column-gap: 40px;
  row-gap: 20px;
}

.lineUp__box--s .lineUp__box-list-item img {
  width: 94px;
}

.lineUp__box--m .lineUp__box-list-item img {
  width: 80px;
}

.lineUp__box--m .lineUp__box-list-item:last-child {
  display: flex;
  align-items: center;
  position: relative;
}

.lineUp__box--m .lineUp__box-list-item:last-child img {
  width: 96px;
  margin-left: -16px;
}

.lineUp__box-list-item-notes {
  font: var(--font_accent_quadratic);
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  position: absolute;
  left: -10px;
  bottom: -6px;
}

.lineUp__box-txt {
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 32px;
}

.lineUp__box--m .lineUp__box-txt {
  margin-top: 36px;
}

.lineUp__box--l .lineUp__box-txt {
  letter-spacing: 0.02em;
  margin-top: 48px;
}

.lineUp__box-price {
  font: var(--font_accent_quadratic);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

/* .lineUp__box--l .lineUp__box-price {
  margin-top: 40px;
} */

.lineUp__box-price small {
  font-size: 13px;
}

.btn {
  font: var(--font_accent_quadratic);
  font-size: 18px;
  letter-spacing: 0.05em;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  position: relative;
  margin-top: 40px;
}

.btn::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--Main);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--Main);
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

/* サムネイルスライダー */
.lineUp__box-slider--main {
  margin-top: 24px;
  position: relative;
}

.lineUp__box-slider--main .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.lineUp__box-slider--main .splide__slide img {
  padding-left: 20px;
  padding-right: 20px;
  height: auto;
}

.lineUp__box-slider--main .splide__slide p {
  font: var(--font_accent_quadratic);
  line-height: 175%;
  color: #fff;
}

.lineUp__box-slider--main .splide__slide p::before {
  content: "[ ";
}

.lineUp__box-slider--main .splide__slide p::after {
  content: " ]";
}

.lineUp__box-slider--main .splide__pagination {
  gap: 8px;
  position: absolute;
  bottom: -200px;
  left: 0;
}

.lineUp__box-slider--main .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #fff;
  opacity: 1;
}

.lineUp__box-slider--main .splide__pagination__page.is-active {
  background: #333;
  transform: scale(1);
}

.lineUp__box-slider--thumbnail {
  margin-top: 32px;
}

.lineUp__box-slider--thumbnail .splide__list {
  justify-content: center;
  gap: 12px;
}

.lineUp__box-slider--thumbnail .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  border: none;
  opacity: 1;
}

.lineUp__box-slider--thumbnail .splide__slide img {
  width: 32px;
  height: auto;
}

.lineUp__box-slider--thumbnail .splide__slide.is-active {
  opacity: 0.4;
}


/* flavor */
.lineUp__flavor {
  background: #fff;
  padding: 77px 20px 36px;
  margin: 124px -20px 0;
  position: relative;
}

.lineUp__flavor-obj {
  width: auto;
  height: 112px;
  position: absolute;
  left: 0;
  top: 550px;
  z-index: 1;
}

.lineUp__flavor-ttl {
  width: auto;
  height: 62px;
  position: absolute;
  top: -27px;
  right: 20px;
}

.lineUp__flavor-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lineUp__flavor-box:nth-child(2) {
  margin-top: 24px;
}

.lineUp__flavor-box:nth-child(3) {
  margin-top: 40px;
}

.lineUp__flavor-heading {
  color: #fff;
  background: var(--Main);
  border-radius: 50%;
  width: 144px;
  height: 144px;
  padding-top: 80px;
  position: relative;
  flex-shrink: 0;
}

.lineUp__flavor-box:nth-child(3) .lineUp__flavor-heading {
  padding-top: 72px;
}

.lineUp__flavor-heading-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lineUp__flavor-box:nth-child(1) .lineUp__flavor-heading-img {
  width: auto;
  height: 39px;
  top: 28px;
}

.lineUp__flavor-box:nth-child(2) .lineUp__flavor-heading-img {
  width: auto;
  height: 64px;
  top: 4px;
}

.lineUp__flavor-box:nth-child(3) .lineUp__flavor-heading-img {
  width: auto;
  height: 96px;
  top: -34px;
}

.lineUp__flavor-heading-size {
  font: var(--font_accent_quadratic);
  font-size: 14px;
  text-align: center;
}

.lineUp__flavor-heading-flavor {
  font-size: 16px;
  text-align: center;
  margin-top: 2px;
}

.lineUp__flavor-box:nth-child(3) .lineUp__flavor-txt p {
  margin-top: -32px;
}


/* ========================================================
CREATORS
=========================================================*/
.creators__heading {
  padding-top: 80px;
}
.creators__heading-en img {
  width: auto;
  height: 40px;
  padding-left: 15px;
}

.creators__heading-ja {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.25em;
  padding-left: 18px;
  margin-top: 24px;
}

.creators__container {
  padding: 0 20px;
}

.creators__list-item {
  position: relative;
}

.creators__list-item:nth-child(1) {
  --color: var(--green);
}

.creators__list-item:nth-child(2) {
  --color: var(--pink);
}

.creators__list-item:nth-child(3) {
  --color: var(--mint);
}

.creators__list-item:nth-child(4) {
  --color: var(--blue);
}

.creators__list-item:nth-child(5) {
  --color: var(--grey);
}

.creators__list-item:nth-child(6) {
  --color: var(--Main);
}

.creators__top {
  position: relative;
}

.creators__top-img {
  width: 90%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-left: auto;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
}

.creators__top-num {
  font: var(--font_accent_quadratic);
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--color);
  position: absolute;
  top: -32px;
  left: 0;
}

.creators__top-name {
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--color);
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color);
  height: 42px;
  padding: 0 12px;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.creators__list {
  margin-top: 72px;
}

.creators__list-item:nth-child(n+2) {
  margin-top: 88px;
}

.creators__list-item-txt {
  display: flex;
  gap: 22px;
  margin-top: 32px;
}

.creators__list-item-txt p {
  font-size: 12px;
  line-height: 175%;
  letter-spacing: 0.02em;
}

.creators__list-item-txt-sns {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
  margin-right: -8px;
}

.creators__list-item-txt-sns img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.creators__lineUp {
  margin-top: 20px;
  position: relative;
}

.creators__lineUp-txt {
  font: var(--font_accent_quadratic);
  font-size: 12px;
  line-height: 175%;
  letter-spacing: 0.07em;
  color: var(--color);
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.creators__lineUp-txt::before {
  content: "";
  display: inline-block;
  background: var(--color);
  width: 1px;
  height: 270px;
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
}

.creators__lineUp-txt::after {
  content: "";
  display: inline-block;
  background: var(--color);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 405px;
  transform: translateX(-50%);
}

/* モーダル */
.creators__lineUp-thumbnail {
  width: 84%;
  aspect-ratio: 282 / 418;
  margin-left: auto;
  display: grid;
  grid-template-columns: 43% 1fr;
  grid-template-rows: 40% 1fr;
  column-gap: 24px;
}

.creators__lineUp-thumbnail-item {
  position: relative;
}

.creators__lineUp-thumbnail-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.creators__lineUp-thumbnail-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.creators__lineUp-thumbnail-item:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.creators__lineUp-thumbnail-item::before {
  content: "";
  display: inline-block;
  background: url(../img/zoom-in_icon.svg) no-repeat center / 24px auto;
  width: 24px;
  height: 24px;
  position: absolute;
}

.creators__lineUp-thumbnail-item:nth-child(1)::before {
  bottom: 14px;
  right: 19%;
}

.creators__lineUp-thumbnail-item:nth-child(2)::before {
  bottom: 8px;
  right: 1%;
}

.creators__lineUp-thumbnail-item:nth-child(3)::before {
  bottom: 8px;
  right: 1%;
}

.creators__lineUp-thumbnail-item:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 57%;
  height: 10%;
  background: url(../img/bottle_S_shadow.png) no-repeat bottom center / 100% auto;
  position: absolute;
  bottom: 5%;
  left: 7%;
  z-index: -1;
}

.creators__lineUp-thumbnail-item:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 86%;
  height: 10%;
  background: url(../img/bottle_M_shadow.png) no-repeat bottom center / 100% auto;
  position: absolute;
  bottom: -4%;
  left: -8%;
  z-index: -1;
}

.creators__lineUp-thumbnail-item:nth-child(3)::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10%;
  background: url(../img/bottle_L_shadow.png) no-repeat bottom center / 100% auto;
  position: absolute;
  bottom: -4%;
  left: -10%;
  z-index: -1;
}

@supports (background: url('image.webp')) {
  .creators__lineUp-thumbnail-item:nth-child(1)::after {
    background: url(../img/bottle_S_shadow.webp) no-repeat bottom center / 100% auto;
  }
  .creators__lineUp-thumbnail-item:nth-child(2)::after {
    background: url(../img/bottle_M_shadow.webp) no-repeat bottom center / 100% auto;
  }
  .creators__lineUp-thumbnail-item:nth-child(3)::after {
    background: url(../img/bottle_L_shadow.webp) no-repeat bottom center / 100% auto;
  }
}

@supports (background: url('image.avif')) {
  .creators__lineUp-thumbnail-item:nth-child(1)::after {
    background: url(../img/bottle_S_shadow.avif) no-repeat bottom center / 100% auto;
  }
  .creators__lineUp-thumbnail-item:nth-child(2)::after {
    background: url(../img/bottle_M_shadow.avif) no-repeat bottom center / 100% auto;
  }
  .creators__lineUp-thumbnail-item:nth-child(3)::after {
    background: url(../img/bottle_L_shadow.avif) no-repeat bottom center / 100% auto;
  }
}


.creators__lineUp-thumbnail-item button {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}

.creators__lineUp-thumbnail-item:nth-child(1) img {
  width: 47%;
  height: auto;
  position: absolute;
  top: 18%;
  left: 12.5%;
}

.creators__lineUp-thumbnail-item:nth-child(2) img {
  width: 73%;
  height: auto;
}

.creators__lineUp-thumbnail-item:nth-child(3) img {
  width: 78%;
  height: auto;
}

.bl_dialog {
  background: transparent;
  border: none;
  width: 100%;
  height: auto;
  padding: 0;
  overflow-x: hidden;
}

.bl_dialog[open] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
}

.bl_dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.dialog__inner {
  width: calc(100% - 140px);
  background: #fff;
  border-radius: 4px;
  padding: 20px 16px;
  margin-top: -48px;
  position: relative;
}

.dialog__heading {
  font: var(--font_accent_quadratic);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 14px;
  position: relative;
}

.dialog__heading::before {
  content: "";
  display: inline-block;
  background: #777;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.dialog__heading::after {
  content: "";
  display: inline-block;
  background: #777;
  width: calc(100% - 7px);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.dialog__heading-head {
  font-size: 12px;
  white-space: nowrap;
}

.dialog__heading-name {
  font-size: 20px;
  line-height: 100%;
  margin-top: 8px;
}

.dialog__heading-size {
  font-size: 20px;
  line-height: 100%;
}

.dialog__heading-size span {
  font-size: 40px;
  line-height: 0;
  margin-right: 8px;
}

.dialog__img {
  width: 80%;
  height: auto;
  aspect-ratio: 228 / 520;
  object-fit: contain;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.js_dialog_prev,
.js_dialog_next {
  font-size: 14px;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  color: #fff;
  background: transparent;
  border: none;
  padding-bottom: 16px;
  position: absolute;
  top: 46%;
  z-index: 1;
}

.js_dialog_prev {
  left: -40px;
}

.js_dialog_next {
  right: -40px;
}

.js_dialog_prev::before,
.js_dialog_next::before {
  content: "";
  display: inline-block;
  background: url(../img/chevron-right.svg) no-repeat center / 40px auto;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.js_dialog_prev::before {
  transform: rotate(180deg);
}

.js_dialog_close {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
}

.creators__list-item-img {
  margin-top: 32px;
}

.creators__list-item-frames {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 16px;
  margin-top: 20px;
}

.creators__list-item-frames picture {
  width: calc((100% - 20px) / 2);
}

.creators__desc {
  font-size: 14px;
  line-height: 200%;
  color: #fff;
  background: url(../img/creators_bg_01_sp.jpg) no-repeat top center / auto 100%;
  padding: 80px 20px 64px;
  margin-top: 80px;
}

@supports (background: url('image.webp')) {
  .creators__desc {
    background: url(../img/creators_bg_01_sp.webp) no-repeat top center / auto 100%;
  }
}

@supports (background: url('image.avif')) {
  .creators__desc {
    background: url(../img/creators_bg_01_sp.avif) no-repeat top center / auto 100%;
  }
}

.creators__desc p {
  text-align: left;
}

.creators__desc-ttl {
  font: var(--font_accent_rectangular);
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.creators__desc-ttl + p {
  margin-top: 20px;
}

.creators__desc {
  line-height: 200%;
  color: #fff;
  background: url(../img/creators_bg_01_sp.jpg) no-repeat top center / cover;
  padding: 80px 20px 64px;
  margin-top: 80px;
}

@supports (background: url('image.webp')) {
  .creators__desc {
    background: url(../img/creators_bg_01_sp.webp) no-repeat top center / cover;
  }
}

@supports (background: url('image.avif')) {
  .creators__desc {
    background: url(../img/creators_bg_01_sp.avif) no-repeat top center / cover;
  }
}

.creators__reuse-wrap {
  line-height: 200%;
  color: #fff;
  background: url(../img/creators_bg_02_sp.jpg) no-repeat top center / cover;
  padding-top: 93%;
  position: relative;
}

@supports (background: url('image.webp')) {
  .creators__reuse-wrap {
    background: url(../img/creators_bg_02_sp.webp) no-repeat top center / cover;
  }
}

@supports (background: url('image.avif')) {
  .creators__reuse-wrap {
    background: url(../img/creators_bg_02_sp.avif) no-repeat top center / cover;
  }
}

.creators__reuse-top {
  position: absolute;
  top: 70px;
  left: 54px;
}

.creators__reuse-logo {
  width: auto;
  height: 64px;
}

.creators__reuse-catch {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 38px;
}

.creators__reuse-txt {
  font-size: 13px;
  line-height: 200%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.creators__reuse-slider-slide img {
  width: auto;
  height: 300px;
}

/* ========================================================
EVENT
=========================================================*/
.goods {
  padding-top: 74px;
  position: relative;
}

.goods__obj {
  width: 140px;
  height: 120px;
  object-fit: cover;
  object-position: 0%;
  position: absolute;
  top: 2880px;
  right: 0;
}

.goods__heading-en img {
  width: auto;
  height: 32px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

.goods__heading-ja {
  letter-spacing: 0.25em;
  padding-left: 23px;
  margin-top: 12px;
}

.goods__container {
  padding: 0 20px;
}

.goods__txt {
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.goods__img {
  margin: 28px -20px 0;
  width: calc(100% + 40px);
}

.goods__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 64px -20px 0;
}

.goods .btn,
.lineUp .btn {
  color: #fff;
  background: var(--Main);
  margin-top: 32px;
}

.lineUp .btn {
  border: 1px solid #fff;
  margin-top: 56px;
}

.goods .btn::before,
.goods .btn::after,
.lineUp .btn::before,
.lineUp .btn::after{
  background: #fff;
}

.goods__access {
  margin-top: 80px;
}

.goods__access-box:nth-child(n+2) {
  margin-top: 64px;
}

.goods__access-year,
.goods__access-date,
.goods__access-place {
  font: var(--font_accent_rectangular);
  line-height: 100%;
}

.goods__access-date {
  font-size: 28px;
  margin-top: 8px;
}

.goods__access-place {
  font-size: 16px;
  line-height: 115%;
  margin-top: 10px;
}

.goods__access-address {
  width: 320px;
  margin-top: 30px;
}

.goods__access-address-place {
  font-size: 14px;
  line-height: 100%;
  border-bottom: 1px solid var(--Main);
  padding-bottom: 14px;
}

.goods__access-address-place + p {
  margin-top: 10px;
}

.goods__access-map {
  position: relative;
  width: 100%;
  height: 0;
  filter:hue-rotate(330deg);
  -webkit-filter:hue-rotate(330deg);
  padding-top: 100%;
  margin-top: 24px;
}

.goods__access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.goods__schedule {
  margin-top: 56px;
}

.goods__schedule-ttl {
  font: var(--font_accent_quadratic);
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

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

.goods__schedule-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--Main);
}

.goods__schedule-list-item-inner {
  min-height: 72px;
  padding-bottom: 10px;
  flex-grow: 1;
}

.goods__schedule-list-item-date {
  font: var(--font_accent_quadratic);
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

.goods__schedule-list-item-ttl {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.goods__schedule-list-item-ttl img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.goods__schedule-list-item-ttl p {
  line-height: 125%;
  flex-grow: 1;
}

.goods__schedule-list-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}


/* ========================================================
フッター
=========================================================*/
.footer {
  text-align: center;
  background: var(--Main);
  margin-top: 90px;
  padding-top: 40px;
  padding-bottom: 24px;
}

.footer__logo {
  width: 280px;
  height: auto;
  margin: 0 auto;
}

.footerlist {
  margin-top: 45px;
}

.footerlist-item {
  line-height: 100%;
}

.footerlist-item:nth-child(n+2) {
  margin-top: 32px;
}

.footerlist-item a {
  font: var(--font_accent_quadratic);
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.footer__sns-logo {
  width: 16px;
  height: 16px;
}

.footer__copyright {
  display: block;
  line-height: 100%;
  color: #fff;
  margin-top: 40px;
}
