@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  text-wrap: initial;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  a:hover {
    filter: brightness(1.1);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

:root {
  --color-white: white;
  --color-black: black;
  --color-gray-1: #808080;
  --color-gray-3: #F3F3F3;
  --color-blue-1: #0F53C9;
  --layout-space-y: 0.75rem;
}
@media (width >= 48rem) {
  :root {
    --layout-space-y: 1.25rem;
  }
}

html {
  color: var(--color-black);
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg {
  position: fixed;
  top: 0;
  width: 100%;
}

.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 375/600;
  container: cover/inline-size;
  color: var(--color-white);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.cover > * {
  position: absolute;
}
.cover .logo {
  top: 4.1666666667%;
  left: 5.8666666667%;
  width: 26.9333333333%;
  aspect-ratio: 101/89;
  height: auto;
}
.cover .o2 {
  bottom: 2.5%;
  right: 4.5333333333%;
  width: 24%;
  aspect-ratio: 90/54;
  height: auto;
}
.cover h1 {
  top: 50%;
  left: 8.5333333333%;
  font-size: 17.4029333333cqi;
  font-weight: 300;
  letter-spacing: 0.0399932578em;
  transform: translateY(-50%);
}
.cover h2 {
  top: 4.1666666667%;
  right: 2.9333333333%;
  color: var(--color-black);
  font-size: 3.8189333333vw;
  line-height: 1.2811954472;
  writing-mode: tb;
}
@media (width >= 48rem) {
  .cover {
    aspect-ratio: 1200/650;
  }
  .cover .logo {
    top: 6.4615384615%;
    left: 3.8333333333%;
    width: 14.6666666667%;
  }
  .cover .o2 {
    bottom: 4%;
    right: 2.4166666667%;
    width: 9%;
  }
  .cover h1 {
    left: 28.5833333333%;
    font-size: 8.9196666667cqi;
    letter-spacing: 0.0399958892em;
  }
  .cover h2 {
    top: 6.4615384615%;
    right: 2.5%;
    font-size: 1.9124166667vw;
    line-height: 1.2812322977;
  }
}

.cover .logo,
.cover .o2,
.cover h1,
.cover h2 {
  opacity: 0;
}
.cover.in-view .logo,
.cover.in-view .o2 {
  animation: fade-in 0.5s 0.6s forwards linear;
}
.cover.in-view h2 {
  animation: fade-in 0.5s 1.1s forwards linear;
}
.cover.in-view h1 {
  animation: fade-in 0.5s 1.6s forwards linear;
}

@keyframes fade-in {
  100% {
    opacity: 1;
  }
}
:root {
  --space-y: 0.75rem;
}

body {
  background-image: url("../img/index/cover.webp");
  background-size: 100% auto;
  background-position: left top;
  background-repeat: no-repeat repeat;
  background-attachment: fixed;
}
@media (width >= 48rem) {
  body {
    background-image: url("../img/index/cover_lg.webp");
  }
}

.main {
  position: relative;
  display: grid;
  gap: var(--space-y) 0;
  margin-bottom: var(--space-y);
}
@media (width >= 48rem) {
  .main {
    --space-y: 1.25rem;
  }
}

.yodogawa {
  display: flex;
  justify-content: center;
  padding-block: 3.125rem;
  background-color: rgb(from var(--color-white) r g b/95%);
}
.yodogawa .para {
  width: min(84%, 25.625rem);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.yodogawa p + p {
  margin-top: 2em;
}
@media (width >= 48rem) {
  .yodogawa {
    padding-block: 5rem;
  }
  .yodogawa p {
    white-space: pre-line;
  }
}

.toc {
  display: flex;
  justify-content: center;
  padding-block: 3.75rem;
  background-color: rgb(from var(--color-white) r g b/95%);
}
@media (width >= 48rem) {
  .toc {
    padding-block: 5rem;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21.875rem), 21.875rem));
  justify-content: center;
  gap: 1.875rem 2.5rem;
  width: min(100%, 46.25rem);
}
@media (width >= 48rem) {
  .cards {
    gap: 3.75rem 2.5rem;
  }
}

.card {
  --anim-duration: 1.05s;
  --content-pad: 0.625rem;
}
.card img {
  width: 100%;
  height: auto;
}
.card h3,
.card p {
  padding-left: var(--content-pad);
}
.card p {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.card .type {
  margin-block: 0 0.125rem;
  color: var(--color-gray-1);
  font-size: 0.9375rem;
  line-height: normal;
}
.card .type.teaser {
  margin-block: 0.75rem 0.125rem;
  font-size: 1.625rem;
  line-height: 1.1923076923;
  font-weight: 300;
}
.card .type .number {
  font-size: 2.6666666667em;
  font-weight: 300;
  line-height: normal;
}
.card h3 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}
.card .series {
  margin-block: 0.25rem;
  font-size: 1.125rem;
  line-height: normal;
}
.card .date {
  margin-top: 0.125rem;
  color: var(--color-gray-1);
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.06em;
}
@media (width >= 48rem) {
  .card {
    --content-pad: 0;
  }
  .card .type.teaser {
    margin-top: 1.25rem;
    line-height: normal;
  }
  .card h3 {
    font-size: 1.25rem;
    line-height: 1.65;
  }
}

.contents {
  display: flex;
  justify-content: center;
  padding-block: 3.75rem;
  background-color: #F2F2F2;
}

.article {
  --content-pad: 0.625rem;
  width: min(93.3333333333%, 21.875rem);
}
.article img {
  width: 100%;
  height: auto;
}
.article h3,
.article p {
  padding-left: var(--content-pad);
}
.article h3 {
  margin-block: 0.75rem 0.25rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-gray-1);
  font-size: 1.625rem;
  line-height: normal;
}
.article p {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.03em;
}
@media (width >= 48rem) {
  .article {
    --content-pad: 0;
  }
  .article h3 {
    margin-block: 1.25rem 0.5rem;
  }
  .article p {
    line-height: 1.8571428571;
  }
}

[data-anim=title] {
  display: flex;
  align-items: center;
  height: var(--title-height, 3.125rem);
}
[data-anim=title] .clip {
  display: block;
  overflow: hidden;
}
[data-anim=title] .clip .t {
  display: block;
  line-height: 125%;
  transform: translateY(100%);
  transition: transform 0.75s var(--anim-delay, 0s) cubic-bezier(0.32, 0.94, 0.6, 1);
}
.in-view [data-anim=title] .t, [data-anim=title].in-view .t {
  transform: translateY(0);
}

[data-anim=fade] {
  opacity: 0;
  transition: opacity var(--anim-duration, 0.75s) var(--anim-delay, 0s) linear;
}
[data-anim=fade].in-view {
  opacity: 1;
}

[data-anim=key-features] li {
  opacity: 0;
  transition: all 0.25s var(--anim-delay, 0s) linear;
  transform: translateX(-1ch);
}
[data-anim=key-features] li:nth-of-type(1) {
  --anim-delay: calc(0.35s + var(--anim-wait, 0s));
}
[data-anim=key-features] li:nth-of-type(2) {
  --anim-delay: calc(0.7s + var(--anim-wait, 0s));
}
[data-anim=key-features] li:nth-of-type(3) {
  --anim-delay: calc(1.05s + var(--anim-wait, 0s));
}
[data-anim=key-features] li:nth-of-type(4) {
  --anim-delay: calc(1.4s + var(--anim-wait, 0s));
}
[data-anim=key-features] li:nth-of-type(5) {
  --anim-delay: calc(1.75s + var(--anim-wait, 0s));
}
[data-anim=key-features] li:nth-of-type(6) {
  --anim-delay: calc(2.1s + var(--anim-wait, 0s));
}
[data-anim=key-features].in-view li {
  opacity: 1;
  transform: translateX(0);
}

[data-anim=list] li {
  opacity: 0;
  transition: opacity var(--anim-duration, 0.5s) var(--anim-delay, 0s);
}
[data-anim=list] li:nth-of-type(1) {
  transition-delay: calc(0.35s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(2) {
  transition-delay: calc(0.7s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(3) {
  transition-delay: calc(1.05s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(4) {
  transition-delay: calc(1.4s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(5) {
  transition-delay: calc(1.75s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(6) {
  transition-delay: calc(2.1s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(7) {
  transition-delay: calc(2.45s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(8) {
  transition-delay: calc(2.8s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(9) {
  transition-delay: calc(3.15s + var(--anim-wait, 0s));
}
[data-anim=list] li:nth-of-type(10) {
  transition-delay: calc(3.5s + var(--anim-wait, 0s));
}
[data-anim=list].in-view li {
  opacity: 1;
}

.banner {
  padding-block: 2.5rem;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  transition: background-size 1s;
  background-image: linear-gradient(var(--color-black), var(--color-black));
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
.banner.in-view::before {
  background-size: 100% 100%;
}
.banner {
  background-color: var(--color-white);
}
.banner a {
  display: block;
  width: min(93.3333333333%, 31.25rem);
  margin-inline: auto;
}
.banner img {
  width: 100%;
  height: auto;
}

.footer {
  padding-block: 2.25rem 2.0625rem;
  font-size: 0.75rem;
  line-height: 200%;
  letter-spacing: 0.1em;
  background-color: var(--color-white);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  transition: background-size 1s;
  background-image: linear-gradient(var(--color-black), var(--color-black));
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
.footer.in-view::before {
  background-size: 100% 100%;
}
.footer-wrapper {
  width: min(90vw, 68.75rem);
  display: grid;
  justify-items: center;
  margin-inline: auto;
}
.footer ul {
  display: flex;
  align-items: center;
}
.footer a,
.footer svg {
  display: block;
}
.footer-logo {
  display: none;
  gap: 0 3.0625rem;
}
.footer-logo img {
  align-self: end;
}
.footer-share-hobo, .footer-store-copy {
  display: flex;
  flex-direction: column;
  gap: 1.6875rem 0;
}
.footer-store-copy {
  margin-top: 0.75rem;
}
.footer-share ul {
  gap: 0 1.3125rem;
}
.footer-hobo {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}
.footer-hobo ul {
  gap: 0 1.3125rem;
}
.footer-store {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
}
.footer-store ul {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.footer-copy {
  text-align: center;
}
.footer-copy svg {
  display: inline-block;
}
@media (width >= 48rem) {
  .footer {
    padding-block: 3.1875rem 2.4375rem;
  }
  .footer-wrapper {
    grid-template-columns: max-content auto;
    grid-template-rows: 1fr auto;
    justify-items: unset;
  }
  .footer-logo {
    grid-row: 1/3;
    display: flex;
  }
  .footer-share ul {
    gap: 0 1.25rem;
  }
  .footer-share svg {
    height: auto;
  }
  .footer-share [data-platform=twitter] svg {
    width: 1.875rem;
  }
  .footer-share [data-platform=facebook] svg {
    width: 2.0625rem;
  }
  .footer-share [data-platform=line] svg {
    width: 2.0625rem;
  }
  .footer-hobo {
    font-size: 0.8125rem;
  }
  .footer-store ul {
    gap: 0 1rem;
  }
  .footer-share-hobo {
    align-self: end;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0 1.3125rem;
  }
  .footer-store-copy {
    display: block;
    text-align: right;
    margin-top: 1.625rem;
  }
  .footer-store-copy ul {
    flex-wrap: wrap;
    justify-content: end;
  }
  .footer-store, .footer-copy {
    display: inline-flex;
  }
}
@media (width >= 75rem) {
  .footer-wrapper {
    transform: translateX(-0.375rem);
  }
  .footer-store {
    font-size: 0.625rem;
  }
}