/* ============================================================
hero
============================================================ */
.container,
.container__inner {
  max-width: initial;
}
.hero {
  padding: 0 14%;
  background-color: var(--black);
}
.hero__inner {
  width: 100%;
}
.hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.5625;

  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.067vw;
}
.hero__pause-btn {
  position: absolute;
  z-index: 999;
  bottom: min(1.1713030747vw, 17.6px);
  right: min(1.1713030747vw, 17.6px);
  width: clamp(20px, 1.756954612vw, 26.4px);
  height: clamp(20px, 1.756954612vw, 26.4px);
  border: 1px solid var(--black);
  /* background-color: var(--white); */
  background-color: var(--black);
  border-radius: 50%;
  border: 2px solid var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* opacity: 0.4; */
  transition:
    background-color 0.3s,
    opacity 0.2s;
  /* -webkit-mask-image:
    linear-gradient(to right, var(--black), var(--black)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6 4h4v16H6zm8 0h4v16h-4z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position:
    center center,
    center center;
  -webkit-mask-size: 100%, 1vw;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude; */
}
.hero__pause-btn::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 50%;
  /* background-color: yellow; */

  -webkit-mask-image:
    linear-gradient(to right, var(--black), var(--black)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6 4h4v16H6zm8 0h4v16h-4z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position:
    center center,
    center center;
  -webkit-mask-size: 100%, 1vw;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.hero__pause-btn:hover {
  opacity: 1;
}
.hero__pause-btn.is-paused::after {
  -webkit-mask-image:
    linear-gradient(to right, var(--black), var(--black)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M8 5v14l11-7z"/></svg>');

}
/* .hero__pause-btn.is-paused {
  -webkit-mask-image:
    linear-gradient(to right, var(--black), var(--black)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M8 5v14l11-7z"/></svg>');
} */
.hero__video video {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
}
/* ============================================================
grandopen
============================================================ */
.grandopen {
  padding: 3.333vw 0 3vw;
}
.grandopen__title {
  max-width: 1046px;
  margin: 0 auto;
}
/* ============================================================
news
============================================================ */
.news {
  background-color: #ebe6d7;
}
.news__inner {
  padding: 4.333vw 0;
}
.news-list {
  display: flex;
  justify-content: center;
  gap: 4.4vw;
  flex-wrap: wrap;
}
.news-card {
  background: var(--white);
  width: 22.667vw;
}
.news-card a {
  display: block;
  background: var(--white);
  width: 100%;
  height: 100%;
}
.news-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.news-card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 11.267vw);
  padding: 1.2vw 1.733vw;
  color: var(--accent);
}
.news-card-bottom__title {
  font-size: 1.133vw;
  font-weight: bold;
}
.news-card-bottom__text {
  margin-top: 8px;
  text-align: right;
}
.news-card-bottom__link {
  font-size: 0.933vw;
}
.news-card-bottom__link::after {
  content: "";
  display: inline-block;
  margin-left: 0.4vw;
  width: 0.8vw;
  height: 0.533vw;
  background-image: url(/assets/img/pages/home/top_icon_arrow_right_accent.svg);
}
.news-card__tag {
  width: fit-content;
  margin-top: 0.8vw;
  padding: 0.4vw 0.533vw;
  font-size: 1vw;
  line-height: 1;
  color: var(--white);
  background-color: var(--accent);
}

/* ============================================================
section
============================================================ */
/* .section {
  display: flex;
  gap: 2.133vw;
  align-items: center;
} */
.section__inner {
  width: 100%;
  display: flex;
}
.section__img-wrap {
  position: relative;
}
.section__img-wrap::before,
.section__img-wrap::after {
  content: "";
  position: absolute;
  z-index: 10;
  background-color: var(--accent);
}
.section__img {
  /* width: calc(100% - 1.333vw); */
  display: block;
  object-fit: cover;
  object-position: bottom;
}
.section__desc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__desc__inner {
  padding: 2.667vw 3.7vw;
}
.section__title {
  display: inline-block;
  color: var(--accent);
  font-size: 1.8vw;
  font-weight: bold;
  position: relative;
  padding-left: 2vw;
}
.section__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.267vw;
  height: 1.267vw;
  background-color: #d2c3a5;
}
.section__title:not(.event .section__title, .news-cont .section__title)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.867vw;
  transform: translateY(-50%);
  width: 1vw;
  height: 0.687vw;
  background-image: url(/assets/img/pages/home/top_icon_arrow_right_accent.svg);
}
.section__title__link {
  color: var(--accent);
  font-size: 1.8vw;
  font-weight: bold;
}
.section__lead {
  color: var(--accent);
  font-size: 1.467vw;
  font-weight: bold;
  margin-top: 3.333vw;
  padding-left: 2vw;
}
.section__text {
  color: var(--black);
  font-size: 1.067vw;
  margin-top: 2.133vw;
  padding-left: 2vw;
  line-height: 2;
}
.section__text:first-of-type {
  margin-top: 2.933vw;
}

/* ============================================================
left
============================================================ */
.section__img--left {
  --radiusHight: 3.333vw;
  --radiusWidth: 7.333vw;
  clip-path: polygon(
    var(--radiusHight) 0,
    calc(100% - var(--radiusWidth)) 0,
    calc(100% - var(--radiusWidth)) var(--radiusHight),
    100% var(--radiusHight),
    100% calc(100% - var(--radiusHight)),
    calc(100% - var(--radiusWidth)) calc(100% - var(--radiusHight)),
    calc(100% - var(--radiusWidth)) 100%,
    0 100%,
    0 calc(100% - var(--radiusHight)),
    0 calc(100% - var(--radiusHight)),
    0 0,
    0 0
  );
}
/* ============================================================
right
============================================================ */
.section__img--right {
  --radiusHight: 5.133vw;
  --radiusWidth: 19.62vw;
  --radiusHight02: 3.333vw;
  --radiusWidth02: 7.333vw;
  clip-path: polygon(
    var(--radiusWidth) 0%,
    100% 0%,
    100% 100%,
    var(--radiusWidth02) 100%,
    var(--radiusWidth02) calc(100% - var(--radiusHight02)),
    0% calc(100% - var(--radiusHight02)),
    0% var(--radiusHight),
    var(--radiusWidth) var(--radiusHight)
  );
}
/* ============================================================
about
============================================================ */
.about__img-wrap {
  width: 65.6vw;
}
.about__img-wrap img {
  aspect-ratio: 1 / 0.8558375634517766;
}
.about__desc {
  width: 34.4vw;
}
.about__img-wrap::before {
  width: 1.333vw;
  height: 5.333vw;
  top: 3.333vw;
  right: -1.333vw;
}
.about__img-wrap::after {
  width: 6.667vw;
  height: 2vw;
  bottom: 0;
  right: 7.333vw;
}

/* ============================================================
shop
============================================================ */
.shop__img-wrap {
  width: 61.333vw;
}
.shop__img-wrap img {
  aspect-ratio: 1 / 0.9169275;
}
.shop__desc {
  width: 38.667vw;
}
.shop__img-wrap::before {
  width: 13.333vw;
  height: 1.333vw;
  top: 0;
  left: 19.62vw;
}
.shop__img-wrap::after {
  width: 7.333vw;
  height: 1.667vw;
  bottom: 3.333vw;
  left: 0;
}

/* ============================================================
event
============================================================ */
.event {
  margin-top: -60px;
  padding-top: 60px;
}
.event__img-wrap {
  width: 53.333vw;
}
.event__img-wrap img {
  aspect-ratio: 1 / 1.05375;
}
.event__desc {
  width: 46.667vw;
}
.event__img-wrap::before {
  width: 1.333vw;
  height: 7.333vw;
  top: 3.333vw;
  right: -1.333vw;
}
.event__desc__inner {
  padding: 2.667vw 8vw;
}
.event-list {
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  gap: 2.4vw;
  padding-left: 2vw;
}
.event-card {
  display: flex;
  gap: 1.333vw;
}
.event-card img {
  width: 7.333vw;
  height: 7.333vw;
  object-fit: cover;
}
.event-card dl {
  padding: 0.8vw 0;
  color: var(--accent);
}
.event-card dt {
  font-size: 0.933vw;
  line-height: 1;
}
.event-card__list-title {
  margin-top: 0.533vw;
  font-size: 1.067vw;
}
.event-card__list-text {
  margin-top: 0.533vw;
  font-size: 0.933vw;
}

/* ============================================================
work
============================================================ */
.work__img-wrap {
  width: 61.333vw;
}
.work__img-wrap img {
  aspect-ratio: 1 / 0.9169275;
}
.work__desc {
  width: 38.667vw;
}
.work__img-wrap::before {
  width: 12vw;
  height: 2.667vw;
  top: 0;
  left: 19.62vw;
}
.work__img-wrap::after {
  width: 1.333vw;
  height: 12vw;
  bottom: 3.333vw;
  left: -1.333vw;
}

/* ============================================================
news-cont
============================================================ */
.news-cont {
  margin-top: -60px;
  padding-top: 60px;
}
.news-cont__img-wrap {
  width: 53.333vw;
}
.event__img-wrap img {
  aspect-ratio: 1 / 1.05375;
}
.event__img-wrap02 img {
  aspect-ratio: 1 / 4.215;
}
.news-cont__img-wrap02 {
  width: 13.333vw;
}
.news-cont__desc {
  width: calc(100vw - 53.333vw - 13.333vw);
}
.news-cont__img-wrap::before {
  width: 2vw;
  height: 7.333vw;
  bottom: 3.333vw;
  right: -2vw;
}
.news-cont__img-wrap02::before {
  width: 8.667vw;
  height: 1.333vw;
  top: 5.2vw;
  left: 0;
}
.news-cont__desc__inner {
  padding: 2.667vw 6.267vw;
  z-index: 8;
}
/* .is-visible .news-cont__desc__inner {
  z-index: 11;
} */
.news-cont__img-wrap02 {
  overflow: hidden;
}
.news-cont__img-wrap {
  z-index: 12 !important;
}
.news-cont__desc {
  z-index: 11;
}
.news-cont-list {
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.news-cont-card {
  display: flex;
  /* gap: 1.333vw; */
  border-bottom: 1px solid var(--black);
}
.news-cont-card dl {
  padding: 0.8vw 0;
  color: var(--black);
}
.news-cont-card dt {
  font-size: 0.933vw;
  line-height: 1;
}
.news-cont-card__list-title {
  margin-top: 0.533vw;
  font-size: 1.067vw;
}
.news-cont-card__list-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  border: 1px solid var(--black);
}
.news-cont-card__list-text {
  margin-top: 0.533vw;
  font-size: 0.933vw;
}
.news-cont-card__list-link {
  text-decoration: underline;
}
.news-cont__img-wrap02 img {
  height: 100%;
  --radiusHight: 5.133vw;
  --radiusWidth: 19.62vw;
  --radiusHight02: 3.333vw;
  --radiusWidth02: 7.333vw;
  clip-path: polygon(
    0% 5.2vw,
    13.333vw 5.2vw,
    13.333vw 0%,
    0 0,
    100% 0,
    100% 100%,
    var(--radiusWidth02) 100%,
    var(--radiusWidth02) calc(100% - var(--radiusHight02)),
    0 calc(100% - var(--radiusHight02))
  );
}

/* ============================================================
access
============================================================ */
.access__img-wrap {
  width: 58.667vw;
}
.access__img-wrap img {
  aspect-ratio: 1 / 0.9579545454545455;
}
.access__desc {
  width: 41.333vw;
}
/* .access__desc::after {
  content: "";
  position: absolute;
  z-index: 12;
  background-color: var(--accent);
  width: 8.667vw;
  height: 1.333vw;
  bottom: 0;
  left: 0;
} */
.access__img-wrap--sub {
  width: 23vw;
  margin-top: 2.133vw;
  padding-left: 2vw;
}
.access__img-wrap--sub img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ============================================================
image-reveal-container
============================================================ */
.image-reveal-container,
.image-reveal-container--after {
  position: relative;
}
.section--right .image-reveal-container--after {
  z-index: 11;
}
.image-reveal-container img {
  display: block;
  width: 100%;
}
.image-reveal-container span,
.image-reveal-container--after span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0);
  z-index: 11;
}
.image-reveal-container {
  z-index: 10;
}
.image-reveal-container--after span {
  z-index: 9;
}
.image-reveal-container.is-visible span,
.image-reveal-container--after.is-visible span {
  transform: translateX(-100%);
}

.about .image-reveal-container span,
.event .image-reveal-container span {
  width: calc(100% + 1.333vw);
}

.news-cont .image-reveal-container span {
  width: calc(100% + 2vw);
}

@media screen and (max-width: 767px) {
  .container,
  .container__inner {
    max-width: initial;
    width: 100%;
  }
  /* ============================================================
hero
============================================================ */
  .hero {
    padding: 0;
  }
  .hero__video {
    aspect-ratio: 1 / 1.558974358974359;

    font-size: 24px;
  }
  .hero__pause-btn {
    width: 24px;
    height: 24px;
    bottom: 36.5vw;
    right: 2vw;
    /* -webkit-mask-size: 100%, 14px; */
  }
  .hero__pause-btn::after {
    width: 100%;
    height: 100%;
    -webkit-mask-size: 100%, 14px;
  }
  /* ============================================================
grandopen
============================================================ */
  .grandopen {
    padding: 14px 70px;
  }
  .grandopen__title {
    max-width: 250px;
  }
  .grandopen__title img {
    width: 100%;
    display: block;
    object-fit: contain;
  }
  /* ============================================================
news
============================================================ */
  .news__inner {
    padding: 20px;
  }
  .news-list {
    flex-direction: column;
    gap: 16px;
  }
  .news-card {
    width: 100%;
    display: flex;
  }
  .news-card a {
    width: 100%;
    display: flex;
  }
  .news-card__img-wrap {
    width: 30vw;
    aspect-ratio: 1.15 / 1;
    flex-shrink: 0;
  }
  .news-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .news-card-bottom {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .news-card-bottom__title {
    font-size: 1.4rem;
  }
  .news-card__tag {
    margin-top: 4px;
    padding: 4px 6px;
    font-size: 1.2rem;
  }
  .news-card-bottom__link {
    font-size: 1.2rem;
  }
  .news-card-bottom__link::after {
    margin-left: 4px;
    width: 10px;
    height: 7px;
  }

  /* ============================================================
section
============================================================ */
  .section__inner {
    flex-direction: column;
  }
  .section--right .section__inner {
    flex-direction: column-reverse;
  }
  .section__img-wrap {
    width: 100%;
  }
  .section__img {
    display: block;
    object-fit: cover;
    object-position: bottom;
  }
  .section__img-wrap .section__img {
    aspect-ratio: 1 / 0.597;
  }
  .section__desc {
    width: 100%;
  }
  .section__desc__inner {
    width: 100%;
    padding: 20px 40px;
  }
  .section__title {
    font-size: 2rem;
    padding-left: 2.2rem;
  }
  .section__title::before {
    width: 1.4rem;
    height: 1.4rem;
  }
  .section__title::after {
    right: -2.4rem;
    width: 1.5rem;
    height: 1rem;
  }
  .section__title:not(.event .section__title, .news-cont .section__title)::after {
    right: -16px;
    width: 10px;
    height: 7px;
  }
  .section__title__link {
    font-size: 2rem;
  }
  .section__lead {
    font-size: 2rem;
    margin-top: 16px;
    padding-left: 22px;
  }
  .section__text {
    font-size: 1.4rem;
    margin-top: 8px;
    padding-left: 22px;
  }
  /* ============================================================
left
============================================================ */
  .section__img--left {
    clip-path: none;
  }
  /* ============================================================
right
============================================================ */
  .section__img--right {
    clip-path: none;
  }
  /* ============================================================
about
============================================================ */
  .about__img-wrap::before {
    content: none;
  }
  .about__img-wrap::after {
    width: 50px;
    height: 15px;
    bottom: 0;
    right: 0;
  }
  .about__img-wrap img {
    object-position: center;
  }
  .about__desc__inner {
    position: relative;
  }
  .about__desc__inner::before {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: var(--accent);
  }

  /* ============================================================
shop
============================================================ */
  .shop__img-wrap::before {
    width: 100px;
    height: 10px;
    top: 0;
    left: 0;
  }
  .shop__img-wrap::after {
    content: none;
  }
  .shop__desc__inner {
    position: relative;
  }
  .shop__desc__inner::before {
    position: absolute;
    top: 20px;
    right: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: #eae5d5;
  }
  .shop__desc__inner::after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: "";
    width: 10px;
    height: 65px;
    background-color: var(--accent);
  }

  /* ============================================================
event
============================================================ */
  .event__img-wrap::before {
    width: 65px;
    height: 10px;
    top: initial;
    bottom: -10px;
    right: 0;
  }
  .event-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 22px;
  }
  .event-card {
    width: 100%;
    gap: 20px;
  }
  .event-card img {
    width: 70px;
    height: 70px;
  }
  .event-card dl {
    width: 100%;
    padding: 0;
  }
  .event-card dt {
    font-size: 1.2rem;
  }
  .event-card__list-title {
    margin-top: 4px;
    font-size: 1.4rem;
  }
  .event-card__list-text {
    margin-top: 4px;
    font-size: 1.2rem;
  }
  .event__desc__inner {
    position: relative;
  }
  .event__desc__inner::before {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: var(--accent);
  }

  /* ============================================================
work
============================================================ */
  .work__img-wrap::before,
  .work__img-wrap::after {
    content: none;
  }
  .work__desc__inner {
    position: relative;
  }
  .work__desc__inner::before {
    position: absolute;
    top: 20px;
    right: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: #eae5d5;
  }
  .work__desc__inner::after {
    position: absolute;
    bottom: 20px;
    right: 20px;
    content: "";
    width: 10px;
    height: 65px;
    background-color: var(--accent);
  }

  /* ============================================================
news-cont
============================================================ */
  .news-cont__img-wrap::before {
    width: 65px;
    height: 10px;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .news-cont__img-wrap img {
    object-position: center;
  }
  .news-cont-list {
    margin-top: 16px;
    gap: 0;
  }
  .news-cont-card:last-of-type {
    border-bottom: none;
  }
  .news-cont-card dl {
    width: 100%;
    padding: 8px 0;
  }
  .news-cont-card dt {
    font-size: 1.2rem;
  }
  .news-cont-card__list-title {
    margin-top: 4px;
    font-size: 1.4rem;
  }
  .news-cont-card__list-text {
    margin-top: 4px;
    font-size: 1.2rem;
  }
  .news-cont__desc__inner {
    position: relative;
  }
  .news-cont__desc__inner::before {
    position: absolute;
    top: 20px;
    right: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: var(--accent);
  }
  .news-cont__desc__inner::after {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: var(--accent);
  }

  /* ============================================================
access
============================================================ */
  /* .access__desc::after {
    width: 65px;
    height: 10px;
    top: 0;
    bottom: initial;
    right: 0;
  } */
  .access__img-wrap--sub {
    width: 100%;
    margin-top: 16px;
    padding-left: initial;
  }
  .access__img-wrap img {
    object-position: center;
  }
  .access__desc__inner {
    position: relative;
  }
  .access__desc__inner::before {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    width: 20px;
    height: calc(100% - 40px);
    background-color: #eae5d5;
  }
  .about .image-reveal-container span,
  .event .image-reveal-container span,
  .news-cont .image-reveal-container span {
    display: none;
  }
}
