@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-primary: #6e3f08;
  --color-font-primary-bg-dark: #dfa767;
  --color-font-base: #333333;
  --color-font-white: #ffffff;
  --color-bg-base: #eeedea;
  --color-bg-red: #7b1911;
  --color-bg-darkblue: #141b24;
  --color-other-logo: #ccaf6b;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 1080rem;
  --width-content: 1320rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Shippori Mincho", serif;
  --font-family-en: "Playfair Display", serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 380;
}
@media screen and (min-width: 768px) {
  :root {
    --base-vw: 1440;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
  overflow: auto;
  scrollbar-gutter: stable;
}

body {
  font-size: 16rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18rem;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-text-block {
  display: block;
}

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

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-flex;
  gap: 24rem;
  align-items: center;
}
.c-button span {
  font-family: var(--font-family-en);
  color: var(--color-font-primary-bg-dark);
  font-size: 20rem;
}
@media (any-hover: hover) {
  .c-button:hover .c-arrow::before, .c-button:focus-visible .c-arrow::before {
    animation: arrow-slide 0.5s ease;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  width: fit-content;
  gap: 20rem 8rem;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 24rem 16rem;
  }
}

.c-title-en {
  grid-column: 1/2;
  grid-row: 1/2;
  font-family: var(--font-family-en);
  font-size: 32rem;
  line-height: auto;
  letter-spacing: 0.05em;
  color: var(--color-font-white);
}

.c-title-ja {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: end;
  margin-bottom: 1rem;
  font-size: 14rem;
  letter-spacing: 0.1em;
  color: var(--color-font-white);
  opacity: 0.59;
}

.c-title-line {
  display: flex;
  height: 8rem;
  gap: 8rem;
  align-items: center;
}
.c-title-line::before {
  content: "";
  width: 50rem;
  height: 1rem;
  background-color: var(--color-font-white);
}
.c-title-line::after {
  content: "";
  width: 6rem;
  height: 100%;
  border-left: 1px solid var(--color-font-white);
  border-right: 1px solid var(--color-font-white);
}

.c-title-lg {
  display: grid;
  width: fit-content;
}

.c-title-lg-en {
  font-family: var(--font-family-en);
  font-size: 48rem;
  line-height: auto;
  letter-spacing: 0.05em;
  color: var(--color-font-primary);
}
@media screen and (min-width: 768px) {
  .c-title-lg-en {
    font-size: 56rem;
  }
}

.c-title-lg-ja {
  font-size: 16rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  justify-self: center;
}

/*!
component > arrow
------------------------------
*/
.c-arrow {
  --size: 64rem;
  --size-sp: 40rem;
  --size-lg: 72rem;
  width: 64rem;
  aspect-ratio: 1/1;
  box-shadow: 0 0 0 1px var(--color-font-primary-bg-dark) inset;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.c-arrow::before {
  content: "";
  width: 18rem;
  height: 26rem;
  display: block;
  mask-image: url("../img/arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-font-primary-bg-dark);
  transition: translate 0.3s ease;
}

/* ホバーアニメーション */
@keyframes arrow-slide {
  0% {
    translate: 0 0;
    opacity: 1;
  }
  50% {
    translate: 100% 0;
    opacity: 0;
  }
  51% {
    translate: -100% 0;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
.c-arrow--brands {
  width: var(--size-sp);
}
@media screen and (min-width: 768px) {
  .c-arrow--brands {
    width: var(--size-lg);
  }
}

.c-arrow--subpages {
  width: var(--size-sp);
  box-shadow: 0 0 0 1px var(--color-font-white) inset;
}
.c-arrow--subpages::before {
  background-color: var(--color-font-white);
}
@media screen and (min-width: 768px) {
  .c-arrow--subpages {
    width: var(--size);
  }
}

/*!
component > news-item
------------------------------
*/
.c-news-item {
  color: var(--color-font-white);
  display: grid;
  padding: 20rem 16rem 19rem;
  gap: 8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-font-white) 10%, transparent);
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-news-item {
    grid-template-columns: 120rem 1fr;
    padding: 32rem 16rem 31rem;
    gap: 0 16rem;
  }
}
@media (any-hover: hover) {
  .c-news-item:hover, .c-news-item:focus-visible {
    color: var(--color-font-primary-bg-dark);
  }
  .c-news-item:hover .c-news-item-title::after, .c-news-item:focus-visible .c-news-item-title::after {
    translate: 8rem 0;
  }
}

.c-news-item-date {
  font-family: var(--font-family-en);
  font-size: 18rem;
  letter-spacing: 0.05em;
}

.c-news-item-title {
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16rem;
}
.c-news-item-title::after {
  content: "";
  display: block;
  width: 18rem;
  height: 26rem;
  mask-image: url("../img/arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-font-primary-bg-dark);
  flex-shrink: 0;
  transition: translate 0.3s ease;
}

/*!
component > brands-item
------------------------------
*/
.c-brands-item {
  counter-increment: brands-item-counter;
  width: 300rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  .c-brands-item {
    width: 500rem;
    gap: 16rem;
  }
}
@media (any-hover: hover) {
  .c-brands-item a:hover .c-brands-item-image img {
    scale: 1.05;
  }
  .c-brands-item a:hover .c-arrow::before {
    animation: arrow-slide 0.5s ease;
  }
}

.c-brands-item-image {
  position: relative;
  overflow: hidden;
}
.c-brands-item-image img {
  aspect-ratio: 300/200;
  height: auto;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-brands-item-image img {
    aspect-ratio: 500/333;
  }
}
.c-brands-item-image::after {
  content: counter(brands-item-counter, decimal-leading-zero);
  position: absolute;
  top: 104rem;
  right: 8rem;
  font-size: 96rem;
  font-family: var(--font-family-en);
  color: color-mix(in srgb, var(--color-font-white) 50%, transparent);
  letter-spacing: 0;
  line-height: normal;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  .c-brands-item-image::after {
    font-size: 152rem;
    top: 176rem;
    right: 0;
  }
}

.c-brands-item-info {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .c-brands-item-info {
    margin-top: 16rem;
    flex-direction: row;
    gap: 16rem;
    align-items: center;
    justify-content: space-between;
  }
}

.c-brands-item-title {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.c-brands-item-title-en {
  font-family: var(--font-family-en);
  font-size: 24rem;
  letter-spacing: 0.05em;
  color: var(--color-font-primary);
}

.c-brands-item-title-ja {
  font-size: 14rem;
}

.c-brands-item-button {
  display: flex;
  justify-content: flex-end;
}

/*!
component > subpages-item
------------------------------
*/
.c-subpages-item {
  width: 340rem;
  height: 224rem;
  position: relative;
}
.c-subpages-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: var(--z-index-default);
}
.c-subpages-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
@media (any-hover: hover) {
  .c-subpages-item a:hover .c-arrow::before, .c-subpages-item a:focus-visible .c-arrow::before {
    animation: arrow-slide 0.5s ease;
  }
  .c-subpages-item a:hover .c-subpages-item-image img, .c-subpages-item a:focus-visible .c-subpages-item-image img {
    scale: 1.05;
  }
}
@media screen and (min-width: 768px) {
  .c-subpages-item {
    width: 576rem;
    height: 336rem;
  }
}

.c-subpages-item-image {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: var(--z-index-negative);
}
.c-subpages-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: scale 0.3s ease;
}

.c-subpages-item-info {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  grid-template-columns: 218rem 1fr;
  grid-auto-rows: min-content min-content;
  gap: 24rem 34rem;
}
@media screen and (min-width: 768px) {
  .c-subpages-item-info {
    grid-template-columns: 298rem 1fr;
    gap: 34rem 134rem;
  }
}

.c-subpages-item-title {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .c-subpages-item-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.c-subpages-item-description {
  grid-column: 1/2;
  grid-row: 2/3;
  color: var(--color-font-white);
}
@media screen and (min-width: 768px) {
  .c-subpages-item-description {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.c-subpages-item-button {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .c-subpages-item-button {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  padding-inline: 20rem;
}
@media screen and (min-width: 768px) {
  .l-container-s {
    padding-inline: 120rem;
  }
}

@media screen and (min-width: 768px) {
  .l-container {
    padding-right: 120rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  --header-menu-button-width: 40rem;
  --header-menu-button-height: 13rem;
  --header-menu-button-width-pc: 30rem;
  --header-menu-button-height-pc: 13rem;
  --header-menu-button-top: 38rem;
  --header-menu-button-right: 20rem;
  --header-menu-button-top-pc: 39rem;
  --header-menu-button-right-pc: 45rem;
  --header-menu-button-fixed-size: 56rem;
  --header-menu-button-fixed-size-pc: 60rem;
  --header-menu-button-fixed-bg: rgba(0, 0, 0, 0.4);
  --header-menu-button-fixed-radius: 4rem;
  --header-menu-line-height: 1rem;
  --header-menu-line-gap: 6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80rem;
  z-index: var(--z-index-header);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 120rem;
  }
}

.l-header-menu-open-button,
.l-header-menu-close-button {
  width: var(--header-menu-button-width);
  height: var(--header-menu-button-height);
  position: absolute;
  top: var(--header-menu-button-top);
  right: var(--header-menu-button-right);
  background-color: transparent;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header-menu-open-button::before, .l-header-menu-open-button::after,
.l-header-menu-close-button::before,
.l-header-menu-close-button::after {
  content: "";
  width: 100%;
  height: var(--header-menu-line-height);
  background-color: var(--color-font-white);
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    width: var(--header-menu-button-width-pc);
    height: var(--header-menu-button-height-pc);
    top: var(--header-menu-button-top-pc);
    right: var(--header-menu-button-right-pc);
  }
}

.l-header-menu-open-button {
  opacity: 1;
}
.l-header-menu-open-button::before {
  top: 0;
}
.l-header-menu-open-button::after {
  bottom: 0;
}

.l-header-menu-close-button {
  position: absolute;
}
.l-header-menu-close-button::before, .l-header-menu-close-button::after {
  top: 50%;
  left: 0;
  position: absolute;
  translate: 0 -50%;
}
.l-header-menu-close-button::before {
  rotate: 16.7deg;
}
.l-header-menu-close-button::after {
  rotate: -16.7deg;
}
@media screen and (min-width: 768px) {
  .l-header-menu-close-button::before {
    rotate: 21.8deg;
  }
  .l-header-menu-close-button::after {
    rotate: -21.8deg;
  }
}

/* スクロール位置で固定した後のスタイル */
.l-header.is-fixed {
  position: fixed;
  z-index: var(--z-index-header);
}
.l-header.is-fixed .l-header-logo--kv {
  display: none;
}
.l-header.is-fixed .l-header-menu-open-button {
  display: none;
}
.l-header.is-fixed .l-header-menu-open-button--fixed {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s linear, visibility 0s linear;
}

.l-header-menu-open-button--fixed {
  visibility: hidden;
  width: var(--header-menu-button-fixed-size);
  height: var(--header-menu-button-fixed-size);
  position: absolute;
  background-color: var(--header-menu-button-fixed-bg);
  border-radius: var(--header-menu-button-fixed-radius);
  opacity: 0;
  transition: opacity 0.15s linear, visibility 0s linear 0.15s;
  top: calc(var(--header-menu-button-top) + var(--header-menu-button-height) / 2 - var(--header-menu-button-fixed-size) / 2);
  right: calc(var(--header-menu-button-right) + var(--header-menu-button-width) / 2 - var(--header-menu-button-fixed-size) / 2);
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button--fixed {
    width: var(--header-menu-button-fixed-size-pc);
    height: var(--header-menu-button-fixed-size-pc);
    top: calc(var(--header-menu-button-top-pc) + var(--header-menu-button-height-pc) / 2 - var(--header-menu-button-fixed-size-pc) / 2);
    right: calc(var(--header-menu-button-right-pc) + var(--header-menu-button-width-pc) / 2 - var(--header-menu-button-fixed-size-pc) / 2);
  }
}
.l-header-menu-open-button--fixed::before, .l-header-menu-open-button--fixed::after {
  content: "";
  width: var(--header-menu-button-width);
  height: var(--header-menu-line-height);
  background-color: var(--color-font-white);
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.l-header-menu-open-button--fixed::before {
  top: calc(50% - var(--header-menu-line-gap));
}
.l-header-menu-open-button--fixed::after {
  top: calc(50% + var(--header-menu-line-gap));
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button--fixed::before, .l-header-menu-open-button--fixed::after {
    width: var(--header-menu-button-width-pc);
  }
}

.l-header-logo {
  width: 200rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -104rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    width: 391rem;
    top: -243rem;
  }
}
.l-header-logo .l-header-logo-image {
  width: 96rem;
  aspect-ratio: 1/1;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .l-header-logo .l-header-logo-image {
    width: 148rem;
    padding-bottom: 14rem;
  }
}

.l-header-menu {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: var(--z-index-menu);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-nav {
  padding: 228rem 20rem 0;
}
@media screen and (min-width: 768px) {
  .l-header-menu-nav {
    padding: 244rem 320rem 0;
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.l-header-menu-item a {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.l-header-menu-text-en {
  font-size: 32rem;
  font-family: var(--font-family-en);
  color: var(--color-font-white);
  line-height: normal;
}

.l-header-menu-text-ja {
  font-size: 14rem;
  color: color-mix(in srgb, var(--color-font-white) 59%, transparent);
}

/*!
layout > footer
------------------------------
*/
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 0 140rem 0 20rem;
  }
}

.l-footer-inner {
  padding: 64rem 20rem 88rem;
  background-color: var(--color-bg-darkblue);
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    padding: 80rem;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36rem;
}
@media screen and (min-width: 768px) {
  .footer-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  width: 148px;
  aspect-ratio: 1/1;
}

.footer-info-text {
  text-align: center;
  font-size: 14rem;
  color: var(--color-font-white);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .footer-info-text {
    text-align: right;
  }
}

.footer-info-address span {
  display: block;
}

.footer-info-sns {
  margin-top: 32rem;
  display: flex;
  gap: 22rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-info-sns {
    justify-content: flex-end;
  }
}

.footer-info-sns-item--instagram {
  width: 31.5rem;
  aspect-ratio: 1/1;
}

.footer-info-sns-item--youtube {
  width: 38.4rem;
  height: 27rem;
}

@media (any-hover: hover) {
  .footer-info-sns-item a {
    display: block;
    transition: filter 0.3s ease;
  }
  .footer-info-sns-item a:hover {
    filter: brightness(0.6);
  }
}

.footer-other {
  display: flex;
  flex-direction: column;
  gap: 36rem;
  margin-top: 56rem;
}
@media screen and (min-width: 768px) {
  .footer-other {
    flex-direction: row;
    align-items: start;
  }
}

.footer-sitemap-content {
  margin-top: 40rem;
  display: grid;
  grid-template-columns: repeat(2, 160rem);
  gap: 40rem 16rem;
}
@media screen and (min-width: 768px) {
  .footer-sitemap-content {
    grid-template-columns: repeat(3, 160rem);
    gap: 32rem;
  }
}

.footer-sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.footer-sitemap-item {
  font-size: 14rem;
  color: var(--color-font-white);
  transition: filter 0.3s ease;
}
.footer-sitemap-item a {
  position: relative;
  display: inline-block;
}
.footer-sitemap-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-font-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
@media (any-hover: hover) {
  .footer-sitemap-item:hover a::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.footer-access-content {
  margin-top: 40rem;
  height: 148rem;
}
@media screen and (min-width: 768px) {
  .footer-access-content {
    width: 413rem;
    height: 180rem;
  }
}
.footer-access-content iframe {
  width: 100%;
  height: 100%;
}

.footer-copyright {
  padding-block: 24rem;
  color: color-mix(in srgb, var(--color-font-base) 31%, transparent);
  text-align: center;
  font-size: 12rem;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.top-kv-overlay {
  --r: 0vmax; /* アニメーションで拡大する穴の半径 */
  --blur: 24px; /* 画像のオーバーレイにかけるブラーの強さ */
  --mask-color: rgba(
    0,
    0,
    0,
    0.8
  ); /* アニメーションで拡大する穴の色（穴の内側は透明、外側は不透明（黒が残る）） */
  --mask-size: 40px; /* アニメーションで拡大する穴のサイズ（穴の半径からこのサイズ分を引いた分が穴の内側の透明部分のサイズ） */
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  backdrop-filter: blur(var(--blur));
  /* KVアニメーションのためのマスク */
  /* 穴の内側は透明、外側は不透明にして、縁の輪郭をぼやけさせる */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0, transparent calc(var(--r) - var(--mask-size)), var(--mask-color) var(--r));
  mask-image: radial-gradient(circle at 50% 50%, transparent 0, transparent calc(var(--r) - var(--mask-size)), var(--mask-color) var(--r));
  will-change: -webkit-mask-image, mask-image;
}

.top-kv-copy {
  z-index: var(--z-index-default);
  color: var(--color-font-white);
  position: relative;
}

.top-kv-copy-en {
  font-family: var(--font-family-en);
  font-size: 80rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.top-kv-copy-en span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-kv-copy-en span {
    display: inline;
  }
}

.top-kv-copy-ja {
  margin-top: 24rem;
  font-size: 18rem;
  line-height: normal;
}

.top-kv-scrolldown {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-kv-scrolldown {
    display: flex;
    position: absolute;
    bottom: 40rem;
    right: 35rem;
    flex-direction: column;
    align-items: center;
    gap: 15rem;
  }
  .top-kv-scrolldown::after {
    content: "";
    display: block;
    width: 1rem;
    height: 50rem;
    background-color: var(--color-font-primary-bg-dark);
    scale: 0;
    opacity: 1;
    transform-origin: top;
    animation: scrollDown 1.5s ease-out infinite;
  }
  @keyframes scrollDown {
    0% {
      scale: 0;
      opacity: 1;
    }
    50% {
      scale: 1;
      opacity: 1;
    }
    100% {
      scale: 1;
      opacity: 0;
    }
  }
  .top-kv-scrolldown span {
    font-family: var(--font-family-en);
    font-size: 16rem;
    line-height: normal;
    letter-spacing: 0.05em;
    color: var(--color-font-primary-bg-dark);
  }
}

/*!
page > top > top-information
------------------------------
*/
.top-information {
  background-color: var(--color-bg-darkblue);
  width: 360rem;
  margin-top: -20rem;
  padding-block: 48rem;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top-information {
    width: 1320rem;
    margin-top: -56rem;
    padding-block: 80rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 80rem;
  }
}

@media screen and (min-width: 768px) {
  .top-information-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.top-information-list {
  margin-top: 56rem;
}
@media screen and (min-width: 768px) {
  .top-information-list {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 0;
  }
}

.top-information-button {
  margin-top: 56rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .top-information-button {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: flex-start;
  }
}

/*!
page > top > top-brands
------------------------------
*/
.top-brands {
  padding-block: 104rem 120rem;
  position: relative;
  overflow: hidden;
}
.top-brands::before {
  content: "Ankh of Eternity";
  font-family: var(--font-family-en);
  font-size: 152rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  color: color-mix(in srgb, var(--color-font-primary) 5%, transparent);
  position: absolute;
  top: 8rem;
  left: -405rem;
}
@media screen and (min-width: 768px) {
  .top-brands::before {
    font-size: 240rem;
  }
}
.top-brands::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_brand_sp.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: var(--z-index-negative);
}
@media screen and (min-width: 768px) {
  .top-brands::after {
    width: 1320rem;
    background-image: url("../img/bg_brand_pc.jpg");
  }
}

.top-brands-title {
  display: grid;
  place-items: center;
}

.top-brands-list {
  counter-reset: brands-item-counter;
  margin-top: 56rem;
  display: grid;
  gap: 48rem;
}
@media screen and (min-width: 768px) {
  .top-brands-list {
    margin-top: 80rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 100rem 80rem;
  }
}

.top-brands-item {
  width: fit-content;
}
.top-brands-item:nth-of-type(2n) {
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .top-brands-item:nth-of-type(2n) {
    margin-top: 88rem;
  }
}

/*!
page > top > top-subpages
------------------------------
*/
.top-subpages {
  padding-block: 80rem;
  position: relative;
  overflow: hidden;
}
.top-subpages::before {
  content: "Ankh of Eternity";
  font-family: var(--font-family-en);
  font-size: 152rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  color: color-mix(in srgb, var(--color-font-primary) 5%, transparent);
  position: absolute;
  top: 296rem;
  left: -408rem;
}
@media screen and (min-width: 768px) {
  .top-subpages::before {
    font-size: 240rem;
    top: 90rem;
    left: -345rem;
  }
}

.top-subpages-list {
  padding-inline: 20rem;
  display: flex;
  flex-direction: column;
  gap: 38rem;
}
@media screen and (min-width: 768px) {
  .top-subpages-list {
    padding-inline: 60rem;
    flex-direction: row;
    gap: 48rem;
  }
}

/*!
page > top > top-describe
------------------------------
*/
.top-describe {
  --image-height: 380rem;
  display: grid;
  grid-template-rows: var(--image-height) 1fr;
}
@media screen and (min-width: 768px) {
  .top-describe {
    --image-height: 800rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: var(--image-height);
  }
}

.top-describe-image {
  position: relative;
  overflow: hidden;
  --parallax-move-range: 20%;
  --parallax-image-scale: 130%;
  --parallax-animation-exit: 75%;
  --gradient-start-position: 35%;
  --gradient-opacity: 0.6;
  view-timeline-name: --top-describe-image-parallax;
  view-timeline-axis: block;
}
@media screen and (min-width: 768px) {
  .top-describe-image {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.top-describe-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) var(--gradient-start-position), rgba(0, 0, 0, var(--gradient-opacity)) 100%);
  z-index: 1;
  pointer-events: none;
}

.top-describe-image-parallax {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top-describe-image-parallax img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: var(--parallax-image-scale, 150%);
  transform: translateY(-50%);
  will-change: transform;
  object-fit: cover;
  object-position: center;
  animation: parallaxMove linear both;
  animation-timeline: --top-describe-image-parallax;
  animation-range: entry 0% exit var(--parallax-animation-exit, 75%);
}

@keyframes parallaxMove {
  from {
    transform: translateY(calc(-50% - var(--parallax-move-range, 20%)));
  }
  to {
    transform: translateY(calc(-50% + var(--parallax-move-range, 20%)));
  }
}
.top-describe-image-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 112rem 20rem 0;
  opacity: 0.8;
  color: var(--color-font-white);
  font-family: var(--font-family-en);
  font-size: 12rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .top-describe-image-text {
    padding: 373rem 80rem 0 100rem;
    font-size: 14rem;
    line-height: 2.5;
  }
}
.top-describe-image-text span {
  display: block;
}

.top-describe-content {
  background-color: var(--color-bg-red);
  padding: 56rem 20rem;
}
@media screen and (min-width: 768px) {
  .top-describe-content {
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 112rem 80rem;
  }
}

.top-describe-content-title {
  color: var(--color-font-primary-bg-dark);
  font-size: 64rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-describe-content-title {
    font-size: 108rem;
  }
}
.top-describe-content-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-describe-content-title span {
    display: inline;
  }
}

.top-describe-content-text-wrapper {
  display: grid;
  gap: 16rem;
  margin-top: 32rem;
}
@media screen and (min-width: 768px) {
  .top-describe-content-text-wrapper {
    margin-top: 82rem;
  }
}

.top-describe-content-text {
  color: var(--color-font-white);
  font-size: 15rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top-describe-content-text {
    font-size: 16rem;
    line-height: 2.5;
  }
}/*# sourceMappingURL=style.css.map */