:root {
  --white: #ffffff;
  --black: #000000;
  --color-white: white;
  --color-black: black;
  --color-main: #ECDE97;
  --color-contents: #FAF7EB;
  --space-x1: 0.5rem;
  --space-x2: 1rem;
  --space-x3: 1.5rem;
  --space-x4: 2rem;
  --space-x5: 2.5rem;
  --space-x6: 3rem;
  --space-x7: 3.5rem;
  --space-x8: 4rem;
  --space-x9: 4.5rem;
  --space-x10: 5rem;
}

.lang ul {
  position: absolute;
  z-index: 1;
  top: var(--space-x2);
  right: var(--space-x2);
  display: flex;
  gap: 0 var(--space-x1);
  font-size: 0.75rem;
}
.lang .active,
.lang a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.lang .active {
  color: #B2B2A1;
  font-family: "Hiragino UD Sans W6 JIS2004";
  background-color: #ffffff;
}
.lang a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (min-width: 768px) {
  .lang ul {
    top: var(--space-x4);
    right: var(--space-x4);
    gap: 0 0.75rem;
    font-size: 1.125rem;
  }
  .lang .active,
  .lang a {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-x7) 0;
  padding-block: var(--space-x7);
  background-color: var(--color-main);
}
.cover figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.cover figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cover figure figcaption {
  position: absolute;
  right: var(--space-x1);
  bottom: var(--space-x1);
  color: var(--color-white);
  font-family: "Hiragino Sans Old W6 JIS2004";
  font-size: 0.625rem;
  line-height: 100%;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.cover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover h1 {
  padding-left: min(7.9326923077vw, 2.0625rem);
}
.cover-logo {
  width: min(39.4230769231vw, 10.25rem);
  height: auto;
}
.cover h2 {
  margin-block: var(--space-x3) var(--space-x1);
  font-family: "Hiragino Sans Old W6 JIS2004";
  font-size: min(5.7692307692vw, 3rem);
  line-height: 150%;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" on;
  font-weight: normal;
}
.cover p {
  padding: 0.25em 0.75em;
  font-family: "Hiragino UD Sans W5 JIS2004";
  font-size: min(3.8461538462vw, 1rem);
  line-height: 150%;
  font-feature-settings: "halt" on;
  border: 1px solid var(--color-black);
}
@media (min-width: 768px) {
  .cover {
    gap: 0;
    padding-block: 0;
  }
  .cover figure {
    aspect-ratio: 16/9;
  }
  .cover-content {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 min(2.6666666667vw, var(--space-x5));
    padding-block: 2.1875rem 1.5625rem;
  }
  .cover h1 {
    padding-left: min(2.6666666667vw, 2.5rem);
  }
  .cover-logo {
    width: min(13.0666666667vw, 12.25rem);
  }
  .cover h2 {
    margin-block: 0;
    font-size: min(3.2vw, 3rem);
    letter-spacing: 0.08em;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .cover figure {
    aspect-ratio: 768/680;
  }
  .cover-content {
    flex-direction: column;
    padding: var(--space-x4);
  }
  .cover-logo {
    width: min(31.25vw, 15rem);
  }
  .cover h2 {
    margin-block: var(--space-x2) 1.25rem;
    font-size: min(5.8333333333vw, 2.8rem);
  }
}

.yodogawa {
  padding: var(--space-x6) min(3.8461538462vw, 1rem);
  font-family: "Hiragino Sans Old W6 JIS2004";
  font-size: 0.875rem;
  line-height: 175%;
  font-feature-settings: "halt" on;
}
@media (min-width: 768px) {
  .yodogawa {
    display: flex;
    justify-content: center;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    white-space: pre-line;
  }
}

.wrapper {
  width: min(92.3076923077vw, 960px);
}

.layout-50 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-x5);
}
@media (min-width: 768px) {
  .layout-50 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-x6) var(--space-x5);
  }
  .layout-50 .item {
    width: calc(50% - 1.25rem);
  }
  .layout-50 .fullsize {
    width: 100%;
  }
}

.items h2 {
  margin-bottom: var(--space-x3);
  padding: 0 0 0 var(--space-x4);
  font-family: "Hiragino Sans Old W6 JIS2004";
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" on;
  font-weight: normal;
  background-image: linear-gradient(var(--color-main), var(--color-main));
  background-size: 1rem 100%;
  background-repeat: no-repeat;
}
.items h2 br {
  display: block;
}
@media (min-width: 768px) {
  .items h2 {
    padding: 0 0 0 var(--space-x5);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    background-size: var(--space-x3) 100%;
  }
  .items h2.fixed {
    min-height: 150px;
  }
  .items h2.nowrap-md {
    min-height: auto;
    white-space: normal;
  }
}

.video-wrapper {
  aspect-ratio: 16/9;
  background-color: var(--color-black);
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item {
  position: relative;
  padding-block: var(--space-x5) var(--space-x3);
  background-color: #F2F2E6;
}
.item:nth-of-type(1) {
  background-image: linear-gradient(#54C4C6 var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #54C4C6 calc(100% - var(--space-x3)));
}
.item:nth-of-type(1) .button:hover {
  background-color: #54C4C6;
}
.item:nth-of-type(2) {
  background-image: linear-gradient(#ADADD9 var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #ADADD9 calc(100% - var(--space-x3)));
}
.item:nth-of-type(2) .button:hover {
  background-color: #ADADD9;
}
.item:nth-of-type(3) {
  background-image: linear-gradient(#AFCCBF var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #AFCCBF calc(100% - var(--space-x3)));
}
.item:nth-of-type(3) .button:hover {
  background-color: #AFCCBF;
}
.item:nth-of-type(4) {
  background-image: linear-gradient(#9FF596 var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #9FF596 calc(100% - var(--space-x3)));
}
.item:nth-of-type(4) .button:hover {
  background-color: #9FF596;
}
.item:nth-of-type(5) {
  background-image: linear-gradient(#19E0C2 var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #19E0C2 calc(100% - var(--space-x3)));
}
.item:nth-of-type(5) .button:hover {
  background-color: #19E0C2;
}
.item:nth-of-type(6) {
  background-image: linear-gradient(#57DA7E var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #57DA7E calc(100% - var(--space-x3)));
}
.item:nth-of-type(6) .button:hover {
  background-color: #57DA7E;
}
.item:nth-of-type(7) {
  background-image: linear-gradient(#B7BFAC var(--space-x5), var(--color-contents) var(--space-x5), var(--color-contents) calc(100% - var(--space-x3)), #B7BFAC calc(100% - var(--space-x3)));
}
.item:nth-of-type(7) .button:hover {
  background-color: #B7BFAC;
}
.item img.item-number {
  position: absolute;
  top: 0.25rem;
  left: 0.375rem;
  z-index: 1;
  width: fit-content;
  opacity: 0.5;
}
.item-content {
  padding: 0.75rem var(--space-x2) var(--space-x5);
  font-feature-settings: "halt" on;
}
.item h3 {
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 1.25rem;
  line-height: 150%;
  font-weight: normal;
}
.item-description {
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 175%;
}
.item-description br {
  display: none;
}
.item-type {
  margin-top: var(--space-x2);
  color: rgba(0, 0, 0, 0.8);
  font-family: "Hiragino UD Sans W5 JIS2004";
  font-size: 0.875rem;
  line-height: 150%;
}
.item-copyright {
  margin-top: var(--space-x2);
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 0.625rem;
  line-height: 100%;
}
.item-picture {
  display: block;
  aspect-ratio: 1;
}
.item figcaption {
  padding: 0.25rem var(--space-x2) 0;
  font-size: 0.625rem;
  line-height: 100%;
  text-align: right;
}
.item-button {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.item-button.stack {
  flex-direction: column;
  gap: var(--space-x2) 0;
}
@media (min-width: 768px) {
  .item {
    display: flex;
    flex-direction: column;
  }
  .item-content {
    padding: var(--space-x4) var(--space-x5) var(--space-x5);
  }
  .item.fullsize .item-content {
    padding-bottom: var(--space-x1);
  }
  .item-button {
    margin-top: auto;
  }
  .item-description br {
    display: block;
  }
  .item-picture {
    aspect-ratio: 960/540;
  }
  .item:nth-of-type(1n + 4) .item-picture {
    aspect-ratio: 1;
  }
}

.button {
  width: fit-content;
  padding: 0.9375rem 1.5rem 1rem 1.4375rem;
  font-family: "Hiragino UD Sans W6 JIS2004";
  color: var(--black);
  font-size: min(3.3653846154vw, 14px);
  line-height: 150%;
  font-feature-settings: "halt" on;
  border-top-left-radius: 0.5rem;
  background-color: var(--color-main);
  transition: all 0.35s ease;
}
.stack .button:first-of-type {
  border-bottom-left-radius: 0.5rem;
}
.button span {
  display: flex;
  border-bottom: 1px solid var(--black);
}
.button span:after {
  content: "";
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
  background: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21" fill="none"%3E%3Cpath d="M3.5 9.62495V11.3749H14L9.1875 16.1874L10.43 17.4299L17.36 10.4999L10.43 3.56995L9.1875 4.81245L14 9.62495H3.5Z" fill="black"/%3E%3C/svg%3E') center/100% no-repeat;
}
.button:hover {
  opacity: 1;
}

.banners {
  display: grid;
  gap: var(--space-x2) 0;
  width: min(92.3076923077vw, 800px);
}
@media (min-width: 768px) {
  .banners {
    gap: var(--space-x5) 0;
  }
}

.banner {
  position: relative;
  display: block;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.5);
  clip-path: circle(0%);
  transition: clip-path 0s linear;
}
.banner:hover {
  opacity: 1;
}
.banner:hover::before {
  clip-path: circle(150%);
  transition: clip-path 0.5s cubic-bezier(0.3, 0.4, 0.3, 1);
}

[data-watch=title] {
  opacity: 0;
  transition: all 0.75s ease;
}
[data-watch=title].in-view {
  opacity: 1;
}

[data-watch=item] {
  opacity: 0;
  transition: opacity 0.3s 0.1s ease-out;
}
[data-watch=item] .item-picture {
  overflow: hidden;
  background-color: #e2ded8;
}
[data-watch=item] .item-picture img {
  opacity: 0;
  filter: blur(1px);
  transform: scale(1.1);
  transition: all 1.5s 0.25s ease-out;
}
[data-watch=item].in-view {
  opacity: 1;
}
[data-watch=item].in-view .item-picture img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

[data-watch=cover] figure {
  overflow: hidden;
  background-color: #e2ded8;
}
[data-watch=cover] figure img {
  opacity: 0;
  filter: blur(5px);
  transform: scale(0.97);
  transition: all 1.2s ease;
}
[data-watch=cover] .cover-content {
  opacity: 0;
  transition: all 1.2s 0.5s ease;
}
[data-watch=cover].in-view figure img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
[data-watch=cover].in-view .cover-content {
  opacity: 1;
}

/* ===============================================================================
Footer share
=============================================================================== */
.footer {
  display: grid;
  justify-items: center;
  gap: var(--space-x6) 0;
  padding-block: var(--space-x6);
}
.footer .btn-top {
  display: block;
  width: 17.5rem;
  padding: var(--space-x2) 0;
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 1rem;
  line-height: 150%;
  text-align: center;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}
.footer .copyright {
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 0.625rem;
  line-height: 150%;
}

* {
  box-sizing: border-box;
}

body {
  font: initial !important;
  font-family: "Hiragino UD Sans W3 JIS2004" !important;
  font-feature-settings: "halt" on;
  color: #000;
  font-weight: normal;
  line-height: 1.75;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

#page {
  padding-top: 0 !important;
  overflow: hidden;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-x6) 0;
  color: var(--black);
}
.main img {
  width: 100%;
}

@keyframes pulsate-fwd {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulsate-fwd-sp {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}