@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: 100%;
}

body {
  font-size: 1rem;
  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: 38px 20px 34px;
  --footer-font-standard: 0.8125rem;
  --footer-font-small: 0.625rem;
  --footer-store-m: 10px 0;
  --color-white: #ffffff;
  --color-footer-bg: #9398AA;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 42px;
  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: 43.82px auto;
  gap: 47.18px;
  width: 266px;
}
.footer_share__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43.82px;
  height: 34.3px;
  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: 24px;
}
.footer_hobo a {
  display: flex;
  align-items: center;
  gap: 9.24px;
}
.footer ul {
  display: flex;
  align-items: center;
  flex-flow: wrap;
}
.footer_store {
  margin: var(--footer-store-m);
  font-family: "Koburina Gothic W3 JIS2004";
  font-size: var(--footer-font-small);
  letter-spacing: 1px;
}
.footer_store ul {
  justify-content: center;
  gap: 14px 20px;
  line-height: 1;
}
.footer_store, .footer_copy {
  width: 100%;
}
@media (min-width: 768px) {
  .footer {
    --footer-pad: 62px 20px 51px;
    --footer-store-m: 0 0 20px;
  }
}

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

@media (min-width: 768px) {
  .banner {
    --banner-pad: 56px 0;
  }
}
.svg-symbol {
  display: none;
}

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

.header {
  --sl-width: 29.8076923077vw;
  --sl-height: 12.5vh;
  --sl-x: 21.875vw;
  --sl-y: 18.125vh;
  --logo-width: 23.5576923077vw;
  --logo-height: 19vh;
  --logo-x: 20.6730769231vw;
  --logo-y: 11.625vh;
  --t-width: 57.4711538462vw;
  --t-height: 10.6475vh;
  --t-x: 20.6538461538vw;
  --t-y: 32.0525vh;
  position: relative;
  height: 100vh;
}
.header .strapline,
.header .logo,
.header .trailer {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.header .logo,
.header .strapline {
  animation: fade-in 0.5s 0.6s forwards linear;
}
.header .logo {
  top: var(--logo-y);
  left: var(--logo-x);
  width: var(--logo-width);
  height: var(--logo-height);
  fill: var(--white);
}
.header .strapline {
  top: var(--sl-y);
  right: var(--sl-x);
  width: var(--sl-width);
  height: var(--sl-height);
}
.header .trailer {
  bottom: var(--t-y);
  left: var(--t-x);
  width: var(--t-width);
  height: var(--t-height);
  height: auto;
  animation: fade-in 0.5s 1.1s forwards linear;
}
@media (min-width: 768px) {
  .header {
    --sl-width: 47.8333333333vw;
    --sl-height: 5.25vh;
    --sl-x: 2.75vw;
    --sl-y: 4.625vh;
    --logo-width: 11.0833333333vw;
    --logo-height: 25.625vh;
    --logo-x: 3vw;
    --logo-y: 70.375vh;
    --t-width: 32.75vw;
    --t-height: 17.5vh;
    --t-x: 33.25vw;
    --t-y: 33.875vh;
  }
}

.yodogawa {
  --yodo-pad: 70px 0;
  --yodo-p-mar: 0 0 16px;
  --yodo-fs: 0.875rem;
  --yodo-ls: 0.84px;
  --notice-pad: 12px 14px;
  width: 100%;
  padding: var(--yodo-pad);
  background-color: rgba(147, 152, 170, 0.35);
  transition: background-color 1s ease-out;
}
.yodogawa.in-view {
  background-color: rgba(147, 152, 170, 0.95);
}
.yodogawa__content {
  width: 84.1346153846vw;
  max-width: max-content;
  margin: 0 auto;
  color: var(--white);
  font-family: "Koburina Gothic W3 JIS2004";
}
.yodogawa p {
  font-feature-settings: "halt" on;
}
.yodogawa p:not(.notice) {
  margin: var(--yodo-p-mar);
  font-size: var(--yodo-fs);
  line-height: 210.714%;
  letter-spacing: var(--yodo-ls);
}
.yodogawa .notice {
  padding: var(--notice-pad);
  font-size: 0.8125rem;
  line-height: 200%;
  letter-spacing: 1.3px;
  border: 1px solid var(--black);
}
.yodogawa br {
  display: block;
}
.yodogawa a {
  color: #005AFF;
}

@media (min-width: 768px) {
  .yodogawa {
    --yodo-pad: 80px 0;
    --yodo-p-mar: 0 0 24px;
    --yodo-fs: 0.9375rem;
    --yodo-ls: 1.5px;
  }
  .yodogawa p {
    white-space: pre-line;
    font-feature-settings: normal;
  }
  .yodogawa br {
    display: none;
  }
}
.info {
  --info-pad: 30px 0;
  --ul-fs: 0.9375rem;
  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.1875rem;
  font-family: "Koburina Gothic W6 JIS2004";
  line-height: 200%;
  letter-spacing: 0.1em;
}
.info h3 {
  font-size: 0.9375rem;
  line-height: 200%;
  letter-spacing: 0.1em;
}
.info ul {
  font-size: var(--ul-fs);
  line-height: 200%;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .info {
    --info-pad: 60px 0;
    --ul-fs: 1rem;
  }
}
.contents {
  --contents-pad: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--contents-pad);
  background-color: rgba(255, 255, 255, 0.93);
}

.cards {
  --cards-grid: repeat(2, 1fr);
  --cards-gap: 28px 12px;
  display: grid;
  grid-template-columns: var(--cards-grid);
  gap: var(--cards-gap);
  width: min(92vw, 1000px);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px 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: 1rem;
  line-height: 137.5%;
  letter-spacing: 0.96px;
}
.card p {
  color: currentColor;
  font-size: 0.8125rem;
  line-height: 169.231%;
  letter-spacing: 0.78px;
  white-space: pre-line;
}
.card img {
  width: 100%;
  height: auto;
  transition: filter 0.25s;
}

@media (min-width: 620px) {
  .cards {
    --cards-grid: repeat(3, 1fr);
    --cards-gap: 28px 16px;
  }
}
@media (min-width: 820px) {
  .contents {
    --contents-pad: 56px 0;
  }
  .cards {
    --cards-grid: repeat(4, 1fr);
    --cards-gap: 50px 24px;
  }
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
}

@media (min-width: 768px) {
  .main {
    gap: 60px 0;
  }
}