@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1678832117vw;
  }
}
@media (min-width: 1370px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  text-rendering: optimizeSpeed;
}

body.is-fixed {
  overflow: hidden;
  touch-action: none;
}

main {
  flex: 1;
}

.lenis.lenis-smooth iframe {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.l-drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer[aria-hidden=false] {
  transform: translateX(0);
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1370px;
    max-width: 85.625rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.l-top-bottom-contents {
  margin-top: calc(-1 * max(100vh, 43.75rem));
  position: relative;
  z-index: 11;
}
.l-top-bottom-contents__first {
  background-color: #044F81;
  position: sticky;
  top: 0;
}
.l-top-bottom-contents__overlay {
  background-color: #111;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.l-top-bottom-contents__spacer {
  height: 700px;
  height: 43.75rem;
}
.l-top-bottom-contents__second {
  position: relative;
}
.l-top-bottom-contents__gradient-mask {
  background-color: #111;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.l-top-upper-contents {
  padding-bottom: calc(max(100vh, 43.75rem) + 6.25rem);
}
@media screen and (min-width: 768px) {
  .l-top-upper-contents {
    padding-bottom: calc(max(100vh, 43.75rem) + 18.75rem);
  }
}

.c-menu-button {
  aspect-ratio: 1/1;
  background-color: #fff;
  height: auto;
  position: relative;
  width: 39px;
  width: 2.4375rem;
}

.c-menu-button span {
  background-color: #111;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: 40px;
  width: 2.5rem;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #111;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  transform: translateY(-0.5rem);
}

.c-menu-button span::after {
  transform: translateY(0.5rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  transform: translateY(0) rotate(-45deg);
}

:root {
  --w0: 161;
  --h0: 130;
  --w: 94;
  --h: 75;
  --sx: calc(var(--w) / var(--w0));
  --sy: calc(var(--h) / var(--h0));
}

.c-store-link {
  --store-color: #fff;
  position: fixed;
  right: 5px;
  right: 0.3125rem;
  top: 5px;
  top: 0.3125rem;
  z-index: 1000;
}

.c-store-link.is-dark {
  --store-color: #222;
}

.c-store-link__frame {
  display: inline-block;
  height: calc(75 * 1px);
  height: calc(var(--h) * 1px);
  isolation: isolate;
  overflow: visible;
  position: relative;
  transform-origin: top right;
  transition: transform 0.3s ease-in-out;
  width: calc(94 * 1px);
  width: calc(var(--w) * 1px);
}

.c-store-link__inner {
  bottom: 0;
  height: calc(130 * 1px);
  height: calc(var(--h0) * 1px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(calc(94 / 161), calc(75 / 130));
  transform: scale(var(--sx), var(--sy));
  transform-origin: top left;
  width: calc(161 * 1px);
  width: calc(var(--w0) * 1px);
}

.c-store-link__blur {
  -webkit-backdrop-filter: blur(5.4px);
  backdrop-filter: blur(5.4px);
  background: rgba(255, 255, 255, 0.001);
  bottom: 0;
  clip-path: path("M86.8445 2 L145.634 14.5685 L161 62.8579 L86.8445 130 L2 79.0646 L25.7164 20.522 L86.8445 2Z");
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.c-store-link__stroke {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-store-link__stroke path {
  stroke: var(--store-color);
  vector-effect: non-scaling-stroke;
  transition: stroke 0.3s ease-in-out;
}

.c-store-link__text {
  color: var(--store-color);
  font-family: "Prata", serif;
  font-size: 10px;
  font-size: 0.625rem;
  left: 55%;
  letter-spacing: 0.4em;
  line-height: 1.2;
  position: absolute;
  text-transform: capitalize;
  top: 45%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-store-link__text {
    font-size: 13px;
    left: 50%;
    letter-spacing: 0.2em;
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    text-align: center;
    top: 46%;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --w: var(--w0);
    --h: var(--h0);
  }
}
.c-store-link:focus-visible .c-store-link__frame {
  transform: scale(1.2);
}

@media (any-hover: hover) {
  .c-store-link:hover .c-store-link__frame {
    transform: scale(1.2);
  }
}
.p-footer {
  background-image: url(../images/common/footer_bg_sp.jpg);
  position: relative;
  z-index: 11;
}
@supports (background-image: url(../images/common/footer_bg_sp.webp)) {
  .p-footer {
    background-image: url(../images/common/footer_bg_sp.webp);
  }
}
.p-footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  padding-top: 77px;
  padding-top: 4.8125rem;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .p-footer {
    background-image: url(../images/common/footer_bg.jpg);
  }
  @supports (background-image: url(../images/common/footer_bg.webp)) {
    .p-footer {
      background-image: url(../images/common/footer_bg.webp);
    }
  }
  .p-footer {
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
    padding-top: 74px;
    padding-top: 4.625rem;
  }
}

.p-footer::before {
  background: linear-gradient(0deg, rgba(4, 37, 42, 0.47) 0%, rgba(212, 236, 248, 0.47) 100%);
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-footer::before {
    background: linear-gradient(0deg, rgba(4, 37, 42, 0.6) 0%, rgba(212, 236, 248, 0.6) 100%);
  }
}

.p-footer__wrapper {
  position: relative;
}

.p-footer__copy {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.1928571429em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: max(13px, 10px);
    font-size: max(0.8125rem, 10px);
    letter-spacing: 0.2307692308em;
  }
}

.p-footer__logo {
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  margin-top: 1.75rem;
  width: 146px;
  width: 9.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 25px;
    margin-top: 1.5625rem;
    width: 168px;
    width: 10.5rem;
  }
}

.p-footer__logo img {
  -o-object-fit: cover;
  aspect-ratio: 146/96;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo img {
    aspect-ratio: 168/110;
  }
}

.p-footer__bottom {
  margin-top: 217px;
  margin-top: 13.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 107px;
    margin-top: 6.6875rem;
  }
}

.p-footer__logo-small {
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  width: 4.5rem;
}

.p-footer__logo-small img {
  -o-object-fit: cover;
  aspect-ratio: 72/28;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-footer__copyright {
  color: #fff;
  font-family: "Sorts Mill Goudy", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-header {
  --menu-color: #fff;
  bottom: 30px;
  bottom: 1.875rem;
  left: 0;
  position: fixed;
  width: 130px;
  width: 8.125rem;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-header {
    bottom: 80px;
    bottom: 5rem;
    width: 200px;
    width: 12.5rem;
  }
}

.p-header.is-dark {
  --menu-color: #222;
}

.p-header__nav-link {
  color: var(--menu-color);
  display: inline-block;
  font-family: "Sorts Mill Goudy", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.1666666667em;
  line-height: 1;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
  text-transform: capitalize;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.p-header__scroll {
  animation: scroll 2s infinite;
  background-color: var(--menu-color);
  height: 70px;
  height: 4.375rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
  margin-right: 25px;
  margin-right: 1.5625rem;
  transition: background-color 0.3s ease-in-out;
  width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* フォーカスされている要素を明確に示す */
.p-header__nav-link:focus-visible {
  opacity: 0.6;
  transform: translateY(-0.125rem);
}

@media (any-hover: hover) {
  .p-header__nav-link:hover {
    opacity: 0.6;
    transform: translateY(-0.125rem);
  }
}
.p-opening {
  align-items: center;
  background-color: #000;
  display: flex;
  height: 100%;
  height: 100lvh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}
.p-opening__line {
  background-color: #fff;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-opening__line {
    transform-origin: center;
  }
}

.p-top-bg01 {
  position: relative;
}
.p-top-bg01__story-bg {
  background-image: url(../images/common/story-bg_sp.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: max(37.5rem, 100%) 30rem;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-bg01__story-bg {
    background-image: url(../images/common/story-bg.png);
    background-size: max(160rem, 100%) 93.75rem;
  }
}
.p-top-bg01__details-bg {
  background: linear-gradient(to bottom, #0F1618 60%, #044F81 100%);
  content: "";
  height: calc(100% + 12.5rem);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-bg01__details-bg {
    height: calc(100% + 25rem);
  }
}

.p-top-bottle__bottle-wrapper, .p-top-bottle__bg-blur, .p-top-bottle__bottle-bg {
  aspect-ratio: 1/1;
  height: 582px;
  height: 36.375rem;
  left: 50%;
  max-height: 80vh;
  min-height: 400px;
  min-height: 25rem;
  position: fixed;
  top: 50%;
  top: 50svh;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top-bottle__bottle-wrapper, .p-top-bottle__bg-blur, .p-top-bottle__bottle-bg {
    height: 867px;
    height: 54.1875rem;
    min-height: 500px;
    min-height: 31.25rem;
  }
}

.p-top-bottle__bottle-bg {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-bottle__bottle-bg {
    opacity: 1;
    visibility: visible;
  }
}
.p-top-bottle__stack {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.p-top-bottle__stack canvas {
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.p-top-bottle__logo {
  height: 125px;
  height: 7.8125rem;
  left: 50%;
  position: fixed;
  top: 50%;
  top: 50svh;
  transform: translate(-50%, -50%);
  width: 191px;
  width: 11.9375rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top-bottle__logo {
    height: 255px;
    height: 15.9375rem;
    width: 389px;
    width: 24.3125rem;
  }
}
.p-top-bottle__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
.p-top-bottle__logo-image {
  height: 100%;
  width: 100%;
}
.p-top-bottle__logo-image img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
.p-top-bottle__logo-image svg {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
.p-top-bottle__logo-image svg path {
  fill: var(--logo-color);
  transition: fill 0.8s ease-out;
}
.p-top-bottle__bg-blur {
  -webkit-mask-image: url(../images/bottle/bg-mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  backdrop-filter: blur(2px);
          mask-image: url(../images/bottle/bg-mask.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top-bottle__bg-blur {
    backdrop-filter: blur(3px);
  }
}
.p-top-bottle__bottle-wrapper {
  filter: blur(20px);
  opacity: 0;
  visibility: hidden;
}
.p-top-bottle__bottle-image {
  height: 100%;
  position: relative;
  width: 100%;
}
.p-top-bottle__bottle-image img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 4;
}
.p-top-bottle__bottle-prism {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.p-top-bottle__bottle-prism::before {
  animation: anim-prism-opacity 20s ease-in-out infinite, anim-prism-gradient-01 40s ease-in-out infinite;
  background-image: url(../images/bottle/bottle-gradient-bg.png);
  background-position: 50% 50%;
  background-repeat: repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  filter: blur(5px);
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.p-top-bottle__bottle-prism--02::before {
  animation: anim-prism-opacity 20s ease-in-out infinite, anim-prism-gradient-02 40s ease-in-out infinite;
}
@keyframes anim-prism-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anim-prism-gradient-01 {
  0% {
    transform: translate(-50%, -40%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -60%) rotate(100deg);
  }
  100% {
    transform: translate(-50%, -40%) rotate(0deg);
  }
}
@keyframes anim-prism-gradient-02 {
  0% {
    transform: translate(-50%, -60%) rotate(100deg);
  }
  50% {
    transform: translate(-50%, -40%) rotate(20deg);
  }
  100% {
    transform: translate(-50%, -60%) rotate(100deg);
  }
}
.p-top-bottle__bottle-prism {
  -webkit-mask-image: url(../images/bottle/bottle-outline.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
          mask-image: url(../images/bottle/bottle-outline.png);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
}

.p-top-details {
  min-height: 100vh;
  overflow: clip;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  padding-top: 400px;
  padding-top: 25rem;
  position: relative;
  scroll-margin-top: -10.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-details {
    padding-bottom: 145px;
    padding-bottom: 9.0625rem;
    padding-top: 800px;
    padding-top: 50rem;
    scroll-margin-top: -37.5rem;
  }
}
.p-top-details__logo {
  height: 69px;
  height: 4.3125rem;
  margin-left: auto;
  margin-right: auto;
  width: 105px;
  width: 6.5625rem;
}
.p-top-details__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-details__logo {
    display: none;
  }
}
.p-top-details__bottle {
  height: 353px;
  height: 22.0625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
  margin-top: -1.25rem;
  width: 353px;
  width: 22.0625rem;
}
.p-top-details__bottle img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-details__bottle {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-top-details__inner {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-top-details__content {
    margin-left: auto;
    max-width: 451px;
    max-width: 28.1875rem;
  }
}
.p-top-details__text {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-details__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.p-top-details__text:last-child {
  margin-top: 50px;
  margin-top: 3.125rem;
}
.p-top-details__text-sentence {
  display: block;
}
.p-top-details__image {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}
.p-top-details__image img {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-details__image {
    height: 187px;
    height: 11.6875rem;
    margin-top: 50px;
    margin-top: 3.125rem;
    width: 451px;
    width: 28.1875rem;
  }
}

.p-top-gallery {
  background-image: url(../images/common/gallery_bg.jpg);
}
@supports (background-image: url(../images/common/gallery_bg.webp)) {
  .p-top-gallery {
    background-image: url(../images/common/gallery_bg.webp);
  }
}
.p-top-gallery {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100lvh;
  height: 100vh;
  min-height: 650px;
  min-height: 40.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-gallery {
    min-height: 700px;
    min-height: 43.75rem;
  }
}

.p-top-gallery__container {
  position: relative;
}

.p-top-gallery__wrapper {
  align-items: center;
  display: flex;
  height: 100lvh;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.p-top-gallery__title {
  color: #145e6e;
  display: inline-block;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 29px;
  font-size: 1.8125rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__title {
    padding: 0 53px 10px;
    padding: 0 3.3125rem 0.625rem;
  }
}

.p-top-gallery__content {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__content {
    margin-left: 160px;
    margin-left: 10rem;
  }
}

.p-top-gallery__list {
  align-items: flex-start;
  display: flex;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__list {
    align-items: center;
  }
}

.p-top-gallery__item {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
  width: 72vw;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__item {
    width: max(200px, min(33.3333333333vw, 480px));
  }
}

.p-top-gallery__item:first-child {
  margin-right: -20px;
  margin-right: -1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__item:first-child {
    margin-right: -60px;
    margin-right: -3.75rem;
  }
}

.p-top-gallery__item:not(:first-child) {
  margin-right: -30px;
  margin-right: -1.875rem;
  transform: scale(0.74);
  transform-origin: 50% 0%;
}
@media screen and (min-width: 768px) {
  .p-top-gallery__item:not(:first-child) {
    margin-right: -75px;
    margin-right: -4.6875rem;
    transform: scale(0.66);
    transform-origin: 50% 50%;
  }
}

.p-top-gallery__item img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
  max-width: none;
  max-width: initial;
     object-fit: cover;
  transform-origin: 50% 50%;
  width: 110%;
  will-change: transform;
}

.p-top-logo {
  --logo-color: #fff;
}
.p-top-logo.is-dark {
  --logo-color: #222;
}
.p-top-logo {
  aspect-ratio: 333/119;
  left: 25px;
  left: 1.5625rem;
  opacity: 0;
  position: fixed;
  top: 30px;
  top: 1.875rem;
  visibility: hidden;
  width: 200px;
  width: 12.5rem;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-top-logo {
    opacity: 1;
    visibility: visible;
  }
}
.p-top-logo svg {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
.p-top-logo svg path {
  fill: var(--logo-color);
  transition: fill 0.8s ease-out;
}

.p-top-movie-modal {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1000;
}

.p-top-movie-modal iframe {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  position: relative;
  width: 100%;
}

.p-top-movie-modal__close {
  aspect-ratio: 1/1;
  background-color: #000;
  cursor: pointer;
  height: auto;
  padding: 0;
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 30px;
  top: 1.875rem;
  width: 20px;
  width: 1.25rem;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-top-movie-modal__close {
    right: 145px;
    right: 9.0625rem;
    top: 80px;
    top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-movie-modal__close {
    right: 110px;
    right: 6.875rem;
  }
}

.p-top-movie-modal__close span:before,
.p-top-movie-modal__close span::after {
  background-color: #fff;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
}

.p-top-movie-modal__close span::before {
  transform: translateY(0) rotate(45deg);
}

.p-top-movie-modal__close span::after {
  transform: translateY(0) rotate(-45deg);
}

.p-top-movie-modal__wrapper {
  height: 100vh;
  padding: 55px 30px;
  padding: 3.4375rem 1.875rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-movie-modal__wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    max-width: 90rem;
    padding: 125px 60px;
    padding: 7.8125rem 3.75rem;
    width: 100%;
  }
}

.p-top-movie-modal__cover {
  background-color: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-top-movie__wrapper {
  position: relative;
}

.p-top-movie-bg {
  pointer-events: none;
}

.p-top-movie-bg img {
  -o-object-fit: cover;
  height: 100vh;
  min-height: 700px;
  min-height: 43.75rem;
     object-fit: cover;
  width: 100%;
}

.p-top-movie__play {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.p-top-movie__play-button {
  -webkit-backdrop-filter: blur(7.6px);
  align-items: center;
  aspect-ratio: 1/1;
  backdrop-filter: blur(7.6px);
  background-color: rgba(0, 0, 0, 0.13);
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 35px 38px;
  padding: 2.1875rem 2.375rem;
  pointer-events: auto;
  position: relative;
  touch-action: manipulation;
  transition: background-color 0.3s ease-in-out;
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-movie__play-button {
    aspect-ratio: initial;
    border-radius: 3.125rem;
    padding: 7px 20px;
    padding: 0.4375rem 1.25rem;
    width: 366px;
    width: 22.875rem;
  }
}

.p-top-movie__play-button::before {
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  height: 30px;
  height: 1.875rem;
  transition: background-color 0.3s ease-in-out;
  width: 23px;
  width: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top-movie__play-button::before {
    content: none;
  }
}

.p-top-movie__play-text {
  color: #fff;
  display: block;
  font-family: "Sorts Mill Goudy", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.36;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-top-movie__play-text {
    font-size: max(29px, 10px);
    font-size: max(1.8125rem, 10px);
    line-height: 1.2;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-top-movie__play-text.u-pc {
    align-items: center;
    display: flex;
    gap: 8px;
    gap: 0.5rem;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .p-top-movie__play-text::before {
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 75% 50%);
    content: "";
    display: block;
    height: 14px;
    height: 0.875rem;
    transition: background-color 0.3s ease-in-out;
    width: 14px;
    width: 0.875rem;
  }
}

/* フォーカスされている要素を明確に示す */
.p-top-movie__play-button:focus-visible {
  background-color: #fff;
  opacity: 1;
}

.p-top-movie__play-button:focus-visible::before {
  background-color: #222;
}

.p-top-movie__play-button:focus-visible .p-top-movie__play-text {
  color: #222;
}

.p-top-movie__play-button:focus-visible .p-top-movie__play-text::before {
  background-color: #222;
}

@media (any-hover: hover) {
  .p-top-movie__play-button:hover {
    background-color: #fff;
    opacity: 1;
  }
  .p-top-movie__play-button:hover::before {
    background-color: #222;
  }
  .p-top-movie__play-button:hover .p-top-movie__play-text {
    color: #222;
  }
  .p-top-movie__play-button:hover .p-top-movie__play-text::before {
    background-color: #222;
  }
}
.p-top-mv {
  height: 100vh;
  height: 100svh;
  max-height: 1200px;
  max-height: 75rem;
  min-height: 650px;
  min-height: 40.625rem;
  overflow: clip;
  position: sticky;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    max-height: 1500px;
    max-height: 93.75rem;
    min-height: 700px;
    min-height: 43.75rem;
  }
}
.p-top-mv__bg {
  background-image: url(../images/common/mv-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-top-products-detail {
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-products-detail {
    padding-bottom: 264px;
    padding-bottom: 16.5rem;
    padding-top: 416px;
    padding-top: 26rem;
  }
}

.p-top-products-detail__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 562px;
  max-width: 35.125rem;
  padding-left: 11px;
  padding-left: 0.6875rem;
  padding-right: 11px;
  padding-right: 0.6875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-products-detail__inner {
    max-width: 1384px;
    max-width: 86.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-products-detail__wrapper {
    display: flex;
    gap: 30px;
    gap: 1.875rem;
    justify-content: end;
  }
}

.p-top-products-detail__image {
  margin-left: auto;
  margin-right: auto;
  width: 75px;
  width: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-products-detail__image {
    height: auto;
    left: 50%;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max(100px, min(12.5vw, 180px));
  }
}

.p-top-products-detail__image img {
  -o-object-fit: contain;
  aspect-ratio: 448/1585;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-top-products-detail__body {
  margin-top: 80px;
  margin-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-products-detail__body {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: max(250px, min(31.25vw, 450px));
  }
}

.p-top-products-detail__title-name {
  color: #fff;
  font-size: max(17px, 10px);
  font-size: max(1.0625rem, 10px);
  letter-spacing: 0.0588235294em;
  line-height: 1.75;
}

.p-top-products-detail__title-capacity {
  color: #fff;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  letter-spacing: 0.0666666667em;
  line-height: 1.75;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-products-detail__component {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-products-detail__component-sub-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  letter-spacing: 0.0666666667em;
  line-height: 1.75;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.p-top-products-detail__component-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-top-products-detail__component-item {
  color: #fff;
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-top-products-detail__component-item {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
  }
}

.p-top-shop {
  padding-bottom: 250px;
  padding-bottom: 15.625rem;
  padding-top: 150px;
  padding-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-shop {
    padding-bottom: 235px;
    padding-bottom: 14.6875rem;
    padding-top: 170px;
    padding-top: 10.625rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-top-shop::before {
    background-color: #fff;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 85%;
  }
}

.p-top-shop__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 596px;
  max-width: 37.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-shop__inner {
    max-width: 1080px;
    max-width: 67.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.p-top-shop__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-shop__wrapper {
    align-items: center;
    flex-direction: row;
    gap: 103px;
    gap: 6.4375rem;
    justify-content: center;
  }
}

.p-top-shop__image {
  margin-top: 42px;
  margin-top: 2.625rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-shop__image {
    margin-top: 0;
    order: initial;
    width: 527px;
    width: 32.9375rem;
  }
}

.p-top-shop__image img {
  -o-object-fit: cover;
  aspect-ratio: 318/371;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-shop__image img {
    aspect-ratio: 527/614;
  }
}

.p-top-shop__body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-shop__body {
    display: block;
    margin-top: 77px;
    margin-top: 4.8125rem;
    width: 391px;
    width: 24.4375rem;
  }
}

.p-top-shop__content {
  color: #fff;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-top-shop__content {
    order: initial;
  }
}

.p-top-shop__title {
  font-size: max(33px, 10px);
  font-size: max(2.0625rem, 10px);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-top-shop__title {
    font-size: max(43px, 10px);
    font-size: max(2.6875rem, 10px);
    letter-spacing: 0.023255814em;
    line-height: 1.45;
  }
}

.p-top-shop__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-shop__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-top-shop__info {
  color: #fff;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-top-shop__info {
    order: initial;
  }
}

.p-top-shop__address {
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 500;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-shop__address {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
  }
}

.p-top-shop__address-map {
  -webkit-text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-underline-offset: 0.125rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-top-shop__address-map {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
}

.p-top-shop__time {
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-shop__time {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-top-shop__button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 1.875rem;
  display: inline-block;
  margin-top: 26px;
  margin-top: 1.625rem;
  max-width: 167px;
  max-width: 10.4375rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  position: relative;
  text-align: center;
  transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-shop__button {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.p-top-shop__button span {
  color: #fff;
  display: inline-block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-top-shop__button span {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

/* フォーカスされている要素を明確に示す */
.p-top-shop__button:focus-visible {
  background-color: #fff;
  opacity: 1;
}

.p-top-shop__button:focus-visible span {
  color: #044f81;
}

.p-top-shop__address-map:focus-visible {
  opacity: 0.6;
  transform: translateY(-0.125rem);
}

@media (any-hover: hover) {
  .p-top-shop__button:hover {
    background-color: #fff;
    opacity: 1;
  }
  .p-top-shop__button:hover span {
    color: #044f81;
  }
  .p-top-shop__address-map:hover {
    opacity: 0.6;
    transform: translateY(-0.125rem);
  }
}
.p-top-spacer {
  position: relative;
  width: 100%;
  z-index: -1;
}
.p-top-spacer__fadein {
  height: 700px;
  height: 43.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-spacer__fadein {
    height: 900px;
    height: 56.25rem;
  }
}

.p-top-story {
  min-height: 100vh;
  padding-bottom: 400px;
  padding-bottom: 25rem;
  padding-top: 130px;
  padding-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-story {
    padding-bottom: 800px;
    padding-bottom: 50rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}
.p-top-story__logo {
  height: 69px;
  height: 4.3125rem;
  left: 50%;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  transform: translateX(-50%);
  width: 105px;
  width: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-story__logo {
    display: none;
  }
}
.p-top-story__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
.p-top-story__inner {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-story__inner {
    max-width: 1110px;
    max-width: 69.375rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}
.p-top-story__title {
  color: #024964;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  letter-spacing: 0.25rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-top-story__title {
    font-size: 33px;
    font-size: 2.0625rem;
    letter-spacing: 6px;
    letter-spacing: 0.375rem;
  }
}
.p-top-story__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-story__content {
    margin-top: 50px;
    margin-top: 3.125rem;
    padding-left: 37px;
    padding-left: 2.3125rem;
  }
}
.p-top-story__text {
  color: #024964;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.66;
}
@media screen and (min-width: 768px) {
  .p-top-story__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-top-story__text:nth-child(2) {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-story__text:nth-child(2) {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}
.p-top-story__text:nth-child(4) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-top-story__text:nth-child(6) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-story__text:nth-child(6) {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}
.p-top-story__text-sentence {
  display: block;
}

.u-bg__navy {
  background-image: linear-gradient(0deg, rgb(4, 79, 129), rgb(15, 22, 24));
}

.u-color__white {
  color: #fff;
}

.u-color__black {
  color: #222;
}

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
