@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  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

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

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

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.65;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

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

:root {
  --white: #ffffff;
  --black: #000000;
  --theme: #9398AA;
  --link: #005AFF;
  --bg-white: rgba(255, 255, 255, 0.95);
}

body {
  color: var(--black);
  font-family: "Koburina Gothic W3 JIS2004";
}

.footer {
  --footer-pad: 6.3rem 2rem 5.1rem;
  --footer-font-standard: 1.3rem;
  --footer-font-small: 1rem;
  --color-white: #ffffff;
  --color-footer-bg: #888888;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 4.2rem;
  padding: var(--footer-pad);
  color: var(--color-white);
  background-color: var(--color-footer-bg);
}
.footer_share, .footer_hobo {
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--footer-font-standard);
}
.footer_share svg, .footer_hobo svg {
  fill: currentColor;
}
.footer_share {
  display: grid;
  grid-template-columns: 4.382rem auto;
  gap: 4.718rem;
  width: 26.6rem;
  margin-block-end: 2.4rem;
}
.footer_share__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.43rem;
  border-top: solid 1.42px var(--color-white);
  border-bottom: solid 1.42px var(--color-white);
}
.footer_share ul {
  justify-content: space-between;
}
.footer_hobo {
  letter-spacing: 1.3px;
}
.footer_hobo ul {
  gap: 2.4rem;
}
.footer_hobo a {
  display: flex;
  align-items: center;
  gap: 9.24px;
}
.footer ul {
  display: flex;
  align-items: center;
  flex-flow: wrap;
}
.footer_store {
  margin: 5rem 0 2.6rem;
  font-family: "Koburina Gothic W3 JIS2004";
  font-size: var(--footer-font-small);
  letter-spacing: 1px;
}
.footer_store ul {
  justify-content: center;
  gap: 1.4rem 2rem;
  line-height: 1;
}
.footer_store, .footer_copy {
  width: 100%;
}
@media (min-width: 48rem) {
  .footer {
    --footer-pad: 6.2rem 2rem 5.1rem;
  }
  .footer_share {
    margin-block-end: 0;
  }
  .footer_store {
    margin: 2.6rem 0 4.4rem;
  }
}

.banner {
  --banner-pad: 3.2rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: var(--banner-pad);
  background-color: var(--bg-white);
}
.banner img {
  width: min(86.5384615385vw, 44.8rem);
  height: auto;
}

@media (min-width: 48rem) {
  .banner {
    --banner-pad: 5.6rem 0;
  }
}
.svg-symbol {
  display: none;
}

@keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.cover {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
.cover picture,
.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.header {
  --h1-w: min(39.6634615385%, 16.5rem);
  --h1-ar: 165 / 153;
  --h1-x: 8.4134615385%;
  --h1-y: 3.25%;
  --logo-width: 44.2424242424%;
  --logo-height: auto;
  --logo-ar: 73 / 112;
  --sl-width: 46.0606060606%;
  --sl-height: auto;
  --sl-ar: 76 / 70;
  --t-width: 7.2115384615%;
  --t-height: auto;
  --t-ar: 30 / 159;
  --t-x: 7.2115384615%;
  --t-y: 5.625%;
  position: relative;
  height: 100vh;
}
.header h1 {
  position: absolute;
  top: var(--h1-y);
  right: var(--h1-x);
  width: var(--h1-w);
  aspect-ratio: var(--h1-ar);
  display: flex;
  justify-content: space-between;
  color: var(--black);
}
.header .strapline,
.header .logo,
.header .trailer {
  visibility: hidden;
  opacity: 0;
}
.header .logo {
  width: var(--logo-width);
  height: var(--logo-height);
  aspect-ratio: var(--logo-ar);
  align-self: flex-start;
  animation: fade-in 0.5s 0.6s forwards linear;
}
.header .strapline {
  width: var(--sl-width);
  height: var(--sl-height);
  aspect-ratio: var(--sl-ar);
  align-self: flex-end;
  animation: fade-in 0.5s 1.1s forwards linear;
}
.header .trailer {
  position: absolute;
  top: var(--t-y);
  left: var(--t-x);
  width: var(--t-width);
  height: var(--t-height);
  aspect-ratio: var(--t-ar);
  animation: fade-in 0.5s 1.6s forwards linear;
}
@media (min-width: 48rem) {
  .header {
    --h1-w: min(13.4722222222%, 19.4rem);
    --h1-ar: 194 / 324;
    --h1-x: 9.9305555556%;
    --h1-y: 10.25%;
    --logo-width: 56.1855670103%;
    --sl-width: 61.8556701031%;
    --t-y: 49.75%;
    --t-x: 16.1805555556%;
    --t-width: 4.4444444444%;
    --t-height: auto;
  }
  .header h1 {
    flex-direction: column-reverse;
  }
}

.yodogawa {
  --yodo-pad: 3.2rem 3rem;
  --yodo-fs: 1.44rem;
  --yodo-lh: 201.389%;
  --yodo-ls: 1.44px;
  width: 100%;
  padding: var(--yodo-pad);
  background-color: rgb(from var(--white) r g b/0.35);
  transition: background-color 1s ease-out;
}
.yodogawa.in-view {
  background-color: rgb(from var(--white) r g b/0.9);
}
.yodogawa__content {
  width: fit-content;
  margin: 0 auto;
  color: var(--black);
  font-family: "Koburina Gothic W6 JIS2004";
}
.yodogawa p {
  font-feature-settings: "halt" on;
  font-size: var(--yodo-fs);
  line-height: var(--yodo-lh);
  letter-spacing: var(--yodo-ls);
}
.yodogawa p:not(:last-of-type) {
  margin: 0 0 2em;
}
.yodogawa br {
  display: block;
}
.yodogawa a {
  color: #005AFF;
}

@media (min-width: 48rem) {
  .yodogawa {
    --yodo-pad: 6rem 0;
    --yodo-fs: 1.5rem;
    --yodo-lh: 193.333%;
    --yodo-ls: 1.2px;
  }
  .yodogawa p {
    white-space: pre-line;
    font-feature-settings: normal;
  }
  .yodogawa br {
    display: none;
  }
}
.info {
  --info-pad: 30px 0;
  --ul-fs: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--info-pad);
  background-color: var(--white);
}
.info h2 {
  margin-bottom: 1em;
  font-size: 1.9rem;
  font-family: "Koburina Gothic W6 JIS2004";
  line-height: 200%;
  letter-spacing: 0.1em;
}
.info h3 {
  font-size: 1.5rem;
  line-height: 200%;
  letter-spacing: 0.1em;
}
.info ul {
  font-size: var(--ul-fs);
  line-height: 200%;
  letter-spacing: 0.1em;
}

@media (min-width: 48rem) {
  .info {
    --info-pad: 60px 0;
    --ul-fs: 1.6rem;
  }
}
.contents {
  display: grid;
  gap: 6rem 0;
  width: 100%;
}

.content {
  --contents-pad: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--contents-pad);
  background-color: rgba(255, 255, 255, 0.93);
}
.content h2 {
  margin-bottom: 3.2rem;
}
.content h2 img {
  width: min(100%, 38.9rem);
  height: auto;
}

.wrap {
  width: min(87.9807692308vw, 1000px);
}

@media (min-width: 820px) {
  .content {
    --contents-pad: 8rem 0;
  }
}
.cards {
  --cards-grid: repeat(2, 1fr);
  --cards-gap: 2.8rem 1.2rem;
  display: grid;
  grid-template-columns: var(--cards-grid);
  gap: var(--cards-gap);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem 0;
}
.card:hover {
  color: var(--link);
  opacity: 1;
}
.card:hover img {
  filter: brightness(1.05);
}
.card h3 {
  color: currentColor;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: 1.6rem;
  line-height: 137.5%;
  letter-spacing: 0.96px;
}
.card p {
  color: currentColor;
  font-size: 1.3rem;
  line-height: 169.231%;
  letter-spacing: 0.78px;
}
.card img {
  width: 100%;
  height: auto;
  transition: filter 0.25s;
}
.card time {
  display: block;
}
.card br {
  display: block;
}

@media (min-width: 620px) {
  .cards {
    --cards-grid: repeat(3, 1fr);
    --cards-gap: 2.8rem 1.6rem;
  }
}
@media (min-width: 820px) {
  .cards {
    --cards-grid: repeat(4, 1fr);
    --cards-gap: 5rem 2.4rem;
  }
}
.main {
  display: grid;
  gap: 8.2rem 0;
  padding-top: 8.5rem;
}

.cover img {
  object-position: center top;
}

@media (width >= 48rem) {
  .main {
    gap: 2rem 0;
    padding-top: 5.7rem;
  }
}