html {
  scroll-behavior: smooth;
}

body[data-type="RN2024"] {
  font-family: "Noto Sans JP", suns-serif;
}

body[data-type="RN2024"].is-loading {
  overflow: hidden;
}

body[data-type="RN2024"]::after {
  background: #000;
}

section {
  position: relative;
}

footer {
  position: relative;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  body.is-fv-title #ot-sdk-btn-floating.ot-floating-button {
    bottom: 56px;
  }
}

.contents {
  color: #FFF;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Noto Sans JP", suns-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .contents {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .08em;
  }
}

body[data-type="RN2024"] .contents {
  overflow: visible;
}

.contents.en {
  font-family: "Alegreya Sans", suns-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .contents.en {
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.65;
  }
}

@media (hover: hover) {
  a.is-visible.is-transition-end,
  button.is-visible.is-transition-end,
  .gallery .swiper-pagination-bullet,
  .menu__icon {
    transition: opacity .3s ease-out;
  }
}

@media (hover: hover) {
  a.is-visible.is-transition-end:not(.links__item):hover,
  button.is-visible.is-transition-end:hover,
  .gallery .swiper-pagination-bullet:hover,
  .menu_clickable:hover + .menu__icon {
    opacity: .6;
  }
}

@media screen and (min-width: 768px) {
  body[data-type="RN2024"] main .inner[data-type="wide"] {
      width: calc(96% - var(--px-50));
  }
}

header {
  transition: none;
}

@media screen and (min-width: 768px) {
  body.scrolled header {
    transition: transform 0.6s, background 1.2s ease-out;
  }
}

@media screen and (max-width: 767px) {
  body.scrolled header {
    transition: transform 0.6s, background 1.2s ease-out;
  }
}

.breadcrumbs {
  line-height: 1.2em;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity .6s ease-out;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: var(--px-100) 0 0 0;
  }
}

body.scrolled .breadcrumbs {
  transition: opacity .2s ease-out;
  opacity: 0;
}

.breadcrumbs ol {
  row-gap: 12px;
  padding-right: 40px;
}

.breadcrumbs ol li,
.breadcrumbs ol li a {
  color: #F0F0F0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.24px;
}

@media screen and (min-width: 768px) {
  .breadcrumbs ol li:nth-of-type(n+2)::before {
    content: "";
    display: block;
    border-color: #000000;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    width: 6px;
    height: 6px;
    top: 52%;
    left: -26px;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs ol li:not(:last-child)::after {
    content: "";
    display: block;
    border-color: #000000;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: auto;
    right: 18px;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs ol li:not(:last-child) {
      padding: 0 40px 0 0;
  }
}

.loading {
  align-items: center;
  background: #000;
  display: flex;
  height: calc(100dvh - calc(var(--px-80)));
  justify-content: center;
  left: 0;
  position: fixed;
  top: calc(var(--px-80));
  z-index: 8000;
  width: 100vw;
}

.loading.is-hidden {
  opacity: 0;
  transition: opacity 3s ease-out, visibility 3s ease-out;
  transition-delay: .2s;
  visibility: hidden;
}

.loading__logo {
  opacity: 1;
  transform: scale(1) translateY(-40px);
  transition: opacity 1.2s ease-in 1s;
}

.loading__logo.is-hidden {
  opacity: 0;
  transition: opacity 3s ease-out, transform 3s ease-out;
  transform: scale(0.95) translateY(-40px);
}

@media screen and (max-width: 767px) {
  .loading__logo {
    transform: scale(1) translateY(calc(var(--px-80) * -0.5));
    width: 121px;
  }
}

@media screen and (max-width: 767px) {
  .loading__logo.is-hidden {
    transform: scale(0.95) translateY(calc(var(--px-80) * -0.5));
  }
}

.menu {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.40);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: "Noto Sans JP", suns-serif;
  padding: 18px;
  position: fixed;
  overflow: hidden;
  right: 22px;
  top: 25px;
  transition: top .6s;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .menu {
    right: calc(8vw - 5px);
  }
}

header.is-inview + main .menu,
body.is-loading .menu {
  top: var(--px-105);
}

@media screen and (max-width: 767px) {
  header.is-inview + nav + main .menu {
    top: calc(25px + var(--px-80));
  }
}

.menu__icon {
  position: absolute;
  right: 18px;
  top: 18px;
  transform: translate(50%, -50%);
}

.menu__icon img {
  margin-left: auto;
  transition: transform .3s ease-out;
}

.menu.is-open .menu__icon img {
  transform: rotate(180deg);
}

.menu_clickable {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform .3s ease-out;
  width: 100%;
  z-index: 1;
}

.menu.is-open .menu_clickable {
  height: 28px;
}

.menu ul {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out, width .3s ease-out;
  width: 0;
}

.menu.is-open ul {
  margin-top: 12px;
}

.menu li {
  width: max-content;
}

.menu a {
  display: grid;
}

.menu a span.en {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.24px;
}

.menu a span.ja {
  align-items: center;
  color: #E5E5E5;
  display: flex;
  font-feature-settings: 'palt' on;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
}

.fv {
  color: #F0F0F0;
  margin: 0 auto;
  scroll-margin-top: 160px;
}

.fv__contents {
  height: 100dvh;
  position: sticky;
  top: 0;
  width: 100%;
}

.fv__lead {
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
  width: 100%;
}

.fv__title {
  min-width: 434px;
  opacity: 0;
  position: absolute;
  right: max(calc(min((60 / 1440 * 100vw), 60px) + max(((100vw - 1440px) / 4), 0px)), 23px);
  top: 50dvh;
  transform: translateY(-50%);
  transition: opacity .8s ease-out;
}

@media screen and (max-width: 767px) {
  .fv__title {
    left: max(calc(17 / 375 * 100vw), 17px);
    top: calc(120 / 807 * 100vh + var(--px-80));
    width: 234px;
    min-width: auto;
  }
}

.fv__title.is-visible {
  opacity: 1;
  transition: opacity .8s ease-out;
}

.fv__bg {
  background: #000;
  height: 100vh;
  left: 0;
  overflow: hidden;
  padding-top: var(--px-40);
  position: sticky;
  top: 0;
  width: 100vw;
}

.fv__bg::after {
  background: rgba(0, 0, 0, 0.5);
  content: '';
  height: calc(100% - var(--px-60));
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: var(--px-60);
  transition: opacity .6s ease-out;
  width: 100%;
}

@media screen and (max-width: 767px) {
  body.scrolled .fv__bg::after {
    opacity: 1;
  }
}

.fv__bg::before {
  background: rgba(0, 0, 0, 0.5);
  content: '';
  height: var(--px-60);
  left: 0;
  position: absolute;
  top: 0;
  transition: background .6s ease-out;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  body.scrolled .fv__bg::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 90%, rgba(0, 0, 0, 0.5) 100%);
  }
}

.fv__bg_img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-out, transform .4s ease-out;
  transform-origin: top;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fv__bg_img {
    transform: scale(1.2);
  }
}

.fv.is-visible .fv__bg_img {
  opacity: 1;
}

.fv__box {
  height: 90vh;
}

.fv__box:last-of-type {
  height: 160vh;
}

@media screen and (max-width: 767px) {
  .fv__box:last-of-type {
    height: 200vh;
  }
}

.fv__text {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 2.8;
  letter-spacing: .2em;
  min-height: 266px;
  min-width: 434px;
  opacity: 0;
  position: absolute;
  right: max(calc(min((60 / 1440 * 100vw), 60px) + max(((100vw - 1440px) / 4), 0px)), 23px);
  top: 50dvh;
  transform: translateY(-50%);
  transition: opacity .8s ease-out;
}

@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 16px;
    left: 50%;
    letter-spacing: .16em;
    line-height: 2.6;
    min-height: 208px;
    min-width: auto;
    right: auto;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.fv__text.is-visible {
  opacity: 1;
  transition: opacity .8s ease-out;
}

.en .fv__text {
  min-height: 146px;
  top: 55dvh;
}

@media screen and (max-width: 767px) {
  .en .fv__text {
    min-height: 158px;
    min-width: auto;
    top: 50vh;
  }
}

@media screen and (max-width: 767px) {
  .en .fv__text:nth-of-type(1) {
    max-width: 294px;
    width: calc(294 / 355 * 100%);
  }
}

@media screen and (max-width: 767px) {
  .en .fv__text:nth-of-type(2) {
    max-width: 290px;
    width: calc(290 / 355 * 100%);
  }
}

@media screen and (max-width: 767px) {
  .en .fv__text:nth-of-type(3) {
    max-width: 286px;
    width: calc(286 / 355 * 100%);
  }
}

@media screen and (max-width: 767px) {
  .en .fv__text:nth-of-type(4) {
    max-width: 294px;
    width: calc(294 / 355 * 100%);
  }
}

@media screen and (max-width: 767px) {
  .fv__text span {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
}

.en .fv__text span {
  display: block;
}

@media screen and (max-width: 767px) {
  .en .fv__text span {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .en .fv__text img {
    width: 100%;
  }
}

.fv__logo {
  bottom: 126px;
  left: max(calc(129 / 1440* 100vw), 23px);
  opacity: 0;
  position: fixed;
}

@media screen and (max-width: 767px) {
  .fv__logo {
    display: none;
  }
}

.fv.is-visible .fv__logo {
  transition: opacity .8s ease-out;
  opacity: 1;
}

body:not(.is-fv-title) .fv.is-visible .fv__logo {
  opacity: 0;
}

.fv__scroll {
  align-items: center;
  bottom: 28px;
  color: #F0F0F0;
  display: inline-flex;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  gap: 4px;
  line-height: 1.8;
  letter-spacing: 0.22px;
  position: fixed;
  opacity: 0;
  right: max(calc(60 / 1440* 100vw), 23px);
  transform: translateX(6px);
  z-index: 8001;
}

@media screen and (max-width: 767px) {
  .fv__scroll {
    display: none;
  }
}

.fv.is-visible .fv__scroll {
  opacity: 1;
  transition: opacity 1.2s ease-out;
}

body.scrolled .fv.is-visible .fv__scroll {
  opacity: 0;
}

.fv__note {
  bottom: 22px;
  color: #5F5F5F;
  display: flex;
  font-feature-settings: normal;
  font-size: 11px;
  font-weight: 400;
  gap: 7px;
  left: 1%;
  line-height: 1.6;
  letter-spacing: -0.05em;
  position: fixed;
  transition: opacity .8s ease-out;
}

@media screen and (max-width: 767px) {
  .fv__note {
    bottom: 16px;
    color: #525252;
    gap: 0;
    left: auto;
    letter-spacing: 0;
    line-height: 1;
    right: 8px;
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 767px) {
  .en .fv__note {
    bottom: 36px;
    left: 50%;
    max-width: calc(100% - 46px);
    right: auto;
    transform: translateX(-50%);
  }
}

body:not(.is-fv-title) .fv__note {
  opacity: 0;
}

.blending {
  background: #000;
  scroll-margin-top: -80px;
  transition: background .6s ease-out;
}

@media screen and (max-width: 767px) {
  .blending {
    display: grid;
  }
}

.blending__inner {
  display: grid;
  column-gap: calc(70 / 1440 * 100vw);
  grid-template-columns: 36px 560px;
  grid-template-rows: auto auto 1fr;
  padding: 160px 0 60px max(calc(60 / 1440 * 100vw), 23px);
  margin: 0 auto;
  max-width: 1440px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .blending__inner {
    background: url('../img/blending-pc.webp') no-repeat center / cover;
  }
}

@media screen and (max-width: 767px) {
  .blending__inner {
    column-gap: 48px;
    grid-template-columns: 23px 1fr;
    margin-top: calc(200 / 375 * 100% * -1);
    padding: 0 0 60px 8vw;
  }
}

.en .blending__inner {
  grid-template-columns: 565px;
}

@media screen and (max-width: 767px) {
  .en .blending__inner {
    grid-template-columns: 1fr;
  }
}

.blending h2 {
  display: block;
  grid-row: 1 / 4;
  opacity: 0;
  position: fixed;
  top: var(--px-100);
  transition: opacity .8s ease-out;
  width: 36px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .blending h2 {
    width: 23px;
  }
}

.blending.is-visible h2 {
  opacity: 1;
}

.blending h3 {
  grid-column: 2 / 3;
  margin-top: 80px;
  transition-delay: .2s;
}

.en .blending h3 {
  grid-column: 1 / 2;
}

@media screen and (max-width: 767px) {
  .blending h3 {
    margin-top: 0;
    padding: 0 8vw 0 0;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .en .blending h3 {
    width: 229px;
  }
}

.blending__contents {
  display: grid;
  gap: 38px;
  grid-column: 2 / 3;
  margin-top: 70px;
  padding: 0 0 0 calc(85 / 1440 * 100vw);
}

.en .blending__contents {
  grid-column: 1 / 2;
}

@media screen and (max-width: 767px) {
  .blending__contents {
    margin-top: 40px;
    padding: 0 8vw 0 0;
  }
}

.blending__contents p {
  font-weight: 300;
  text-align: justify;
  transition-delay: .2s;
}

.en .blending__contents p {
  display: grid;
  gap: 1em;
  text-align: left;
}

.blending__contents img {
  margin-top: 80px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .blending__contents img {
    margin-top: 40px;
  }
}

.blending__image {
  order: -1;
}

.tasting {
  background: #000;
  margin-top: -1px;
  padding-bottom: 160px;
}

.tasting__inner {
  column-gap: calc(153 / 1440 * 100vw);
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto 1fr;
  padding: 180px 0 0 max(calc(60 / 1440 * 100vw), 23px);
  margin: 0 auto;
  max-width: 1440px;
}

.en .tasting__inner {
  column-gap: calc(120 / 1440 * 100vw);
  grid-template-columns: 235px 1fr;
  grid-template-rows: auto 1fr;
  padding-top: 300px;
}

@media screen and (max-width: 767px) {
  .tasting__inner {
    column-gap: 48px;
    grid-template-columns: 23px 1fr;
    padding: 150px 8vw 0;
  }
}

@media screen and (max-width: 767px) {
  .en .tasting__inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
}

.tasting h2 {
  display: block;
  grid-row: 1 / 4;
  opacity: 0;
  position: fixed;
  top: var(--px-100);
  transition: opacity .8s ease-out;
  width: 36px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .tasting h2 {
    grid-row: 1 / 3;
    width: 23px;
  }
}

.tasting.is-visible h2 {
  opacity: 1;
}

.tasting h3 {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Hina Mincho", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  grid-column: 2 / 3;
  line-height: 1.8;
  letter-spacing: 1.12px;
  margin-top: 120px;
}

.en .tasting h3 {
  grid-column: 1 / 2;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .tasting h3 {
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 3.84px;
    margin-top: 0;
    width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .en .tasting h3 {
    width: 159px;
  }
}

.tasting__lead {
  color: #CFCFCF;
  grid-column: 2 / 3;
  padding: 0 max(calc(60 / 1440 * 100vw), 23px) 0 calc(93 / 1440 * 100vw);
  margin-top: 70px;
  max-width: 888px;
  text-align: justify;
}

.en .tasting__lead {
  display: grid;
  gap: 1em;
  margin-top: 10px;
  padding-left: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .tasting__lead {
    padding: 0;
    margin-top: 30px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .en .tasting__lead {
    grid-column: 1 / 2;
    margin-top: 40px;
  }
}

.tasting__features {
  column-gap: calc(153 / 1440 * 100vw);
  display: grid;
  grid-template-columns: 36px 1fr;
  margin: 0 auto;
  max-width: 1440px;
  padding-left: max(calc(60 / 1440 * 100vw), 23px);
}

.en .tasting__features {
  column-gap: calc(120 / 1440 * 100vw);
  grid-template-columns: 235px 1fr;
}

.tasting__features_inner {
  column-gap: calc(24 / 1440 * 100vw);
  display: grid;
  grid-column: 2 / 3;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  margin-top: 60px;
  max-width: 888px;
  padding: 0 max(calc(60 / 1440 * 100vw), 23px) 0 calc(93 / 1440 * 100vw);
  scrollbar-width: none;
}

.en .tasting__features_inner {
  padding: 0 max(calc(60 / 1440 * 100vw), 23px) 0 0;
}

@media screen and (max-width: 767px) {
  .tasting__features_inner {
    gap: 17px;
    grid-template-columns: repeat(3, 198px);
    grid-column: 1 / 3;
    margin-top: 40px;
    margin-left: 0;
    max-width: 100%;
    padding-left: calc(147 / 1440 * 100vw + 48px);
    overflow-x: auto;
  }
}

.tasting__features_inner::-webkit-scrollbar {
  display: none;
}

.en .tasting__features_inner {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .en .tasting__features_inner {
    grid-template-columns: repeat(3, 198px);
  }
}

.tasting__features_item {
  align-items: stretch;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-content: center;
  max-width: 260px;
  opacity: 0;
  text-align: center;
  transition: opacity .8s ease-out, transform .6s ease-out;
}

@media screen and (min-width: 768px) {
  .tasting__features_item {
    transform: translateY(20px);
  }
}

.tasting__features.is-visible .tasting__features_item {
  transform: translateY(0);
  opacity: 1;
}

.tasting__features_item:nth-child(2) {
  transition-delay: .4s;
}

.tasting__features_item:nth-child(3) {
  transition-delay: .8s;
}

.tasting__features_item h4 {
  color: #F0F0F0;
  font-feature-settings: 'palt' on;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .42em;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tasting__features_item h4 {
    font-size: 18px;
  }
}

.en .tasting__features_item h4 {
  margin: 30px auto 0;
}

.tasting__features_item p {
  color: #CFCFCF;
  font-feature-settings: 'palt' on;
  font-size: 13px;
  font-style: normal;
  font-weight: 350;
  line-height: 2;
  letter-spacing: .12em;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .tasting__features_item p {
    font-size: 11px;
  }
}

.en .tasting__features_item p {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .05em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .en .tasting__features_item p {
    font-size: 12px;
  }
}

.tasting__features_item > img {
  margin: 0 auto;
  order: -1;
}

@media screen and (max-width: 767px) {
  .tasting__features_item:first-child > img {
    width: calc(122 / 198 * 100%);
  }
}

/* @media screen and (max-width: 767px) {
  .en .tasting__features_item:first-child img {
    width: calc(52 / 198 * 100%);
  }
} */

@media screen and (max-width: 767px) {
  .tasting__features_item:nth-child(2) > img {
    width: calc(101 / 198 * 100%);
  }
}

/* @media screen and (max-width: 767px) {
  .en .tasting__features_item:nth-child(2) img {
    width: calc(41 / 198 * 100%);
  }
} */

@media screen and (max-width: 767px) {
  .tasting__features_item:last-child > img {
    width: calc(119 / 198 * 100%);
  }
}

/* @media screen and (max-width: 767px) {
  .en .tasting__features_item:last-child img {
    width: calc(47 / 198 * 100%);
  }
} */

.quality {
  background: #000;
}

@media screen and (max-width: 767px) {
  .quality {
    scroll-margin-top: calc(var(--px-80) * -1);
  }
}

.quality__inner {
  display: grid;
  grid-template-columns: 1fr 23px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 80px 8vw;
}

@media screen and (min-width: 768px) {
  .quality__inner {
    grid-template-columns: 1fr calc(480px + (97 / 1440 * 100vw)) calc(36px + (65 / 1440 * 100vw));
    padding: 0 max(calc(60 / 1440 * 100vw), 23px) 0 0;
  }
}

/* @media screen and (min-width: 768px) {
  .en .quality__inner {
    grid-template-columns: 1fr calc(480px + (97 / 1440 * 100vw));
    padding: 0 max(calc(60 / 1440 * 100vw), 23px) 0 0;
  }
} */

@media screen and (max-width: 767px) {
  .quality__inner {
    column-gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .en .quality__inner {
    column-gap: 0;
    grid-template-columns: 1fr;
  }
}

.quality h2 {
  display: block;
  grid-row: 3 / 4;
  opacity: 0;
  transition: opacity .8s ease-out;
  top: var(--px-100);
  position: fixed;
  right: max(calc(min((60 / 1440 * 100vw), 60px) + max(((100vw - 1440px) / 2), 0px)), 23px);
  width: 36px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .quality h2 {
    grid-row: 2 / 4;
    top: calc(var(--px-80) + 90px);
    width: 23px;
  }
}

.quality.is-visible h2 {
  opacity: 1;
}

.quality__contents {
  grid-column: 1 / 2;
  margin-top: 50px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .quality__contents {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-top: 137px;
    padding-left: calc(97 / 1440* 100vw);
  }
}

.quality__contents p {
  margin-top: 80px;
  text-align: justify;
}

.en .quality__contents p {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .quality__contents p {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .en .quality__contents p {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .quality__contents h3 {
    width: 175px;
  }
}

@media screen and (max-width: 767px) {
  .en .quality__contents h3 {
    width: 230px;
  }
}

.quality__contents h4 {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.12px;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .quality__contents h4 {
    margin-top: 50px;
  }
}

.en .quality__contents h4 {
  margin-top: 50px;
}

.quality__awards {
  border-bottom: 1px solid #F0F0F0;
  border-top: 1px solid #F0F0F0;
  display: grid;
  gap: 8px;
  height: 320px;
  margin-top: 20px;
  overflow-y: scroll;
  padding: 12px 0;
  scrollbar-width: none;
  transition: opacity .8s ease-out, transform .6s ease-out, max-height .3s ease-out;
}

@media screen and (max-width: 767px) {
  .quality__awards {
    height: 340px;
  }
}

.quality__awards h5 {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .08em;
}

.en .quality__awards h5 {
  font-size: 15px;
  letter-spacing: .02em;
}

@media screen and (max-width: 767px) {
  .en .quality__awards h5 {
    font-size: 13px;
  }
}

.quality__awards h5:not(:first-of-type) {
  margin-top: 16px;
}

.quality__awards ul {
  column-gap: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 4px;
  row-gap: 12px;
}

@media screen and (max-width: 767px) {
  .quality__awards ul.wwa {
    grid-template-columns: 1fr;
  }
}

.quality__awards li {
  align-items: baseline;
  color: #F0F0F0;
  column-gap: 10px;
  display: grid;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.96px;
  grid-column: span 2;
  grid-template-columns: subgrid;
  padding-left: 52px;
  position: relative;
  row-gap: 6px;
}

.en .quality__awards li {
  font-size: 15px;
  letter-spacing: .02em;
}

@media screen and (max-width: 767px) {
  .en .quality__awards li {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .quality__awards ul.wwa li {
    grid-column: span 1;
  }
}

.quality__awards li span.year {
  align-items: baseline;
  column-gap: 10px;
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
}

.quality__awards li span.line {
  border-right: 1px solid #F0F0F0;
  height: 9px;
}

.quality__awards li span.award {
  display: flex;
  flex-wrap: wrap;
}

.en .quality__awards li span.award {
  gap: .5em;
}

.quality__awards li span.is-hidden {
  opacity: 0;
}

.quality__image {
  grid-column: 1 / 3;
  height: 100%;
  order: -1;
  transition: opacity 1.2s ease-out;
}

@media screen and (min-width: 768px) {
  .quality__image {
    grid-column: 1 / 2;
    height: 1095px;
  }
}

.quality__image img {
  height: 100%;
  object-fit: cover;
  object-position: 100% 100%;
  width: 100%;
}

.dream {
  background: #000;
  scroll-margin-top: calc(var(--px-40) * -1);
}

@media screen and (min-width: 768px) {
  .dream {
    position: relative;
    scroll-margin-top: -80px;
  }
}

@media screen and (max-width: 767px) {
  .dream {
    display: grid;
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .dream::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 0 40px 30px #000;
  }
}

.dream__title_en {
  display: block;
  opacity: 0;
  transition: opacity .8s ease-out;
  top: var(--px-100);
  position: fixed;
  width: 36px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .dream__title_en {
    width: 23px;
  }
}

.dream.is-visible .dream__title_en {
  opacity: 1;
}

.dream__title_en img{
  width: 100%;
}

.dream__inner {
  display: grid;
  column-gap: calc(140 / 1440 * 100vw);
  grid-template-columns: 36px 478px;
  padding: 160px 0 0 max(calc(60 / 1440 * 100vw), 23px);
  margin: 0 auto;
  max-width: 1440px;
  z-index: 1;
}

.en .dream__inner {
  grid-template-columns: 478px;
}

@media screen and (min-width: 768px) {
  .dream__inner{
    background: url('../img/dream-pc.webp') no-repeat center / cover;
  }
}

@media screen and (max-width: 767px) {
  .dream__inner {
    column-gap: 48px;
    grid-template-columns: 23px 1fr;
    padding: 0 8vw;
  }
}

@media screen and (max-width: 767px) {
  .en .dream__inner {
    column-gap: 0;
    grid-template-columns: 1fr;
  }
}

.dream__contents {
  grid-column: 2 / 3;
  z-index: 1;
}

.en .dream__contents {
  grid-column: 1 / 2;
}

.dream__contents h3 {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .dream__contents h3 {
    margin-top: -20px;
    width: 230px;
  }
}

.dream__contents p {
  margin-top: 1.8em;
  text-align: justify;
}

.en .dream__contents p {
  display: grid;
  gap: 1em;
  text-align: left;
}

.dream__contents p:first-of-type {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .dream__contents p:first-of-type {
    margin-top: 40px;
  }
}

.dream__image {
  margin-left: -8vw;
  max-width: none;
  order: -1;
  width: 100vw;
}

.gallery {
  background: #000;
  padding-top: 300px;
}

@media screen and (max-width: 767px) {
  .gallery {
    padding-top: 160px;
  }
}

.gallery__inner {
  background: #0F0F0F;
  padding: 120px max(calc(60 / 1440 * 100vw), 23px);
}

@media screen and (max-width: 767px) {
  .gallery__inner {
    padding: 70px 8vw;
  }
}

.gallery .swiper {
  max-width: 985px;
  width: 100%;
  z-index: 0;
}

.gallery .swiper-slide {
  aspect-ratio: 985 / 580;
  background: #0F0F0F;
}

.gallery .swiper-slide img {
  height: 100%;
  margin: 0 auto;
  width: auto;
}

.gallery .swiper-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 48px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .gallery .swiper-pagination {
    margin-top: 24px;
  }
}

.gallery .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #6F6F6F;
  height: 6px;
  opacity: 1;
  position: relative;
  width: 6px;
}

.gallery .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.gallery .swiper-pagination-bullet-active {
  border-color: #D9D9D9;
  pointer-events: none;
}

.gallery .swiper-pagination-bullet svg {
  opacity: 0;
  position: absolute;
  height: 16px;
  width: 16px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.gallery .swiper-pagination-bullet-active svg {
  content: "";
  opacity: 1;
  transition: opacity .8s ease-out;
}

.movie {
  background: #0F0F0F;
}

.movie__inner {
  background: url('../img/movie.webp') no-repeat center/cover;
  display: block;
  padding: 304px max(calc(60 / 1440 * 100vw), 23px) 384px calc(949 / 1440 * 100vw);
}

@media screen and (max-width: 767px) {
  .movie__inner {
    align-items: center;
    aspect-ratio: 375 / 236;
    display: flex;
    justify-content: center;
    padding: 0;
  }
}

.movie__link {
  align-items: center;
  color: #F0F0F0;
  display: flex;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  gap: 15px;
  line-height: 2;
  letter-spacing: 0.22px;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .movie__link {
    flex-direction: column;
  }
}

.links {
  background: #000;
  display: grid;
  gap: 160px;
  padding-top: 200px;
}

@media screen and (max-width: 767px) {
  .links {
    gap: 80px;
    padding-top: 113px;
  }
}

.en .links {
  padding: 200px 23px 0;
}

@media screen and (max-width: 767px) {
  .en .links {
    padding: 113px 23px 0;
  }
}

.links__item {
  height: 393px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .links__item {
    align-items: center;
    aspect-ratio: 375 / 236;
    display: flex;
    height: auto;
    justify-content: center;
    width: 100%;
  }
}

.links__item.story {
  background: url('../img/story.webp') no-repeat center/cover;
}

.links__item.ambassador {
  background: url('../img/ambassador.webp') no-repeat center/cover;
}

@media (hover: hover) {
  .links__item:hover::after {
    background: transparent;
  }
}

@media (hover: hover) {
  .links__item::after {
    background: rgba(0, 0, 0, .4);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background .2s ease-out;
    width: 100%;
  }
}

.links__item_inner {
  align-items: flex-end;
  display: flex;
  gap: calc(675 / 1440 * 100vw);
  justify-content: center;
  margin-top: 107px;
}

@media screen and (max-width: 767px) {
  .links__item_inner {
    gap: calc(50 / 375 * 100vw);
    margin: 0;
    padding: 0 max(calc(60 / 1440 * 100vw), 23px);
  }
}

.en .links__item_inner {
  gap: 0;
  justify-content: space-between;
  margin: 107px auto 0;
  max-width: 100%;
  width: calc(984 / 1440 * 100vw);
}

@media screen and (max-width: 767px) {
  .en .links__item_inner {
    margin: 0 auto;
    width: 100%;
  }
}

.links__item h3 {
  display: grid;
  gap: 4px;
}

.links__item h3 span {
  display: block;
}

.links__item h3 span.en {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.28px;
}

@media screen and (max-width: 767px) {
  .links__item h3 span.en {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.24px;
  }
}

.links__item h3 span.ja {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.44px;
}

@media screen and (max-width: 767px) {
  .links__item h3 span.ja {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.28px;
  }
}

.en .links__item h3 span.ja {
  font-family: "Alegreya Sans", sans-serif;
  letter-spacing: .02em;
}

@media screen and (max-width: 767px) {
  .en .links__item h3 span.ja {
    font-size: 17px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767px) {
  .links__item_icon img {
    width: 52px;
  }
}

.copy {
  align-items: center;
  background: #000;
  display: flex;
  height: 290px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .copy {
    height: 232px;
  }
}

.copy__text {
  color: #F0F0F0;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .46em;
}

@media screen and (max-width: 767px) {
  .copy__text {
    color: #F0F0F0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 6.44px;
  }
}

@media screen and (max-width: 767px) {
  .en .copy__text {
    width: 170px;
  }
}

.fade {
  opacity: 0;
  transition: opacity .8s ease-out;
}

.fade.is-visible {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease-out, transform .6s ease-out;
}

.fade-up.is-visible {
  transform: translateY(0);
  opacity: 1;
}
