@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-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]) {
  -webkit-text-decoration-skip: ink;
          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  **/
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

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

*:focus {
  outline: none;
}

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

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 2;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.scroll_rock {
  overflow: hidden;
}
@media (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}

/**  common  **/
.hidden {
  visibility: hidden;
}

.purple {
  color: #84689D;
}

body {
  color: #434242;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

body:has(.menu-toggle:checked) {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  background-color: #434242;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 992px) {
  header {
    padding: 0 46px;
  }
}
header.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .menu-toggle {
  display: none;
}
header .menu-toggle:checked + .menu-icon span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(1) {
    top: 10px;
  }
}
header .menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle:checked + .menu-icon span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  bottom: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(3) {
    bottom: 10px;
  }
}
header .menu-toggle:checked + .menu-icon + .menu-wrapper {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
header .header-logo {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding-left: 18px;
}
@media (min-width: 992px) {
  header .header-logo {
    font-size: 1.5rem;
    padding-left: 0;
  }
}
header .header-logo img {
  height: 9px;
}
@media (min-width: 600px) {
  header .header-logo img {
    height: initial;
  }
}
header .header-index {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header-index img {
  max-width: 35px;
}
@media (min-width: 600px) {
  header .header-index img {
    max-width: 190px;
  }
}
header .menu-icon {
  width: 4em;
  height: 3.4em;
  position: relative;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
}
header .menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  border: 0.5px solid currentColor;
  -webkit-transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, transform 0.4s;
  transition: opacity 0s, transform 0.4s, -webkit-transform 0.4s;
}
header .menu-wrapper {
  z-index: 10;
  position: fixed;
  top: 70px;
  right: 0;
  width: 100vw;
  height: calc(100dvh - 70px);
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: auto;
}
header .menu-wrapper nav {
  width: 250px;
  margin: 40px auto 0;
}
@media (min-width: 600px) {
  header .menu-wrapper nav {
    margin: 85px auto 0;
  }
}
header .menu-wrapper p {
  font-size: 1.6rem;
  padding: 5px 0;
}
header .menu-wrapper p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (min-width: 600px) {
  header .menu-wrapper p {
    padding: 10px 0;
  }
}
header .menu-wrapper p.top {
  vertical-align: middle;
}
header .menu-wrapper p.top img {
  width: 122px;
}
header .menu-wrapper p.top span {
  vertical-align: middle;
}
header .menu-wrapper p.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
header .menu-wrapper hr {
  height: 1px;
  border: none;
  background-color: #ffffff;
  margin: 15px 0;
}

#instagram {
  background-color: #D6E0EC;
  text-align: center;
  padding: 30px 0;
}
#instagram a {
  font-size: 1.4rem;
  display: inline-block;
}
#instagram a span {
  font-size: 40px;
  display: block;
  padding-top: 10px;
}

footer {
  position: relative;
  background-color: #6f6f6f;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
footer a {
  color: #ffffff !important;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
footer .wrapper {
  margin-right: auto;
  margin-left: auto;
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo span {
  display: inline-block;
  width: 1.6em;
  text-align: center;
}
footer .footer-hobo span:before {
  font-size: 1.6em;
}
footer .footer-hobo span.hb-hobo::before {
  font-size: 1.2em;
}
footer .footer-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
    margin-bottom: initial;
  }
}
footer .footer-share img {
  width: 3.2em;
}
@media (min-width: 992px) {
  footer .footer-share img {
    width: 2.8em;
  }
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 28rem;
  margin-top: 3em !important;
  padding-top: 1em;
  padding-bottom: 0.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  border-top: 1px dashed;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.2em;
}
footer .footer-sns li:first-of-type {
  font-size: 1.2rem;
  padding-bottom: 0.2em;
}
footer .footer-store,
footer .footer-copy {
  font-size: 0.96em;
}
footer .footer-store li {
  margin-bottom: 0.4em;
}

.footer-columns-2 .wrapper {
  width: calc(100% - 8rem);
  max-width: 88rem;
}
@media (min-width: 600px) {
  .footer-columns-2 .wrapper {
    display: grid;
    grid-template-columns: minmax(24rem, 1fr) 1fr;
    gap: min(8vw, 12rem);
  }
}
.footer-columns-2 .footer-hobo,
.footer-columns-2 .footer-sns,
.footer-columns-2 .footer-store,
.footer-columns-2 .footer-copy {
  color: #ffffff;
  font-size: 1.4rem;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.footer-columns-2 .footer-store {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 36px;
}
@media (min-width: 600px) {
  .footer-columns-2 .footer-store {
    margin-top: 1.6em;
  }
}
.footer-columns-2 .footer-copy {
  font-size: 1.2rem;
  margin: 0;
}

footer + footer {
  border-top: 4px solid #ffffff;
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
body.active {
  opacity: 1;
}
@media (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  overflow: hidden;
}

.observe-target {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.observe-target.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.en-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  display: none;
}

hr {
  border: none;
  border-top: 1px solid;
  margin: 0;
  padding-bottom: 0;
  background-color: #FBFBFB;
}
@media (min-width: 600px) {
  hr {
    padding-bottom: 40px;
  }
}

@media (min-width: 600px) {
  header .menu-wrapper hr {
    padding-bottom: 0;
    z-index: 1;
    position: relative;
  }
}

#top {
  height: 100vh;
  height: 100svh;
}
#top > div {
  position: absolute;
  z-index: -1;
}
#top > .img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 16s;
  transition: -webkit-transform 16s;
  transition: transform 16s;
  transition: transform 16s, -webkit-transform 16s;
}
#top > .img.active {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}
#top > .img > picture img {
  width: 100vw;
  height: calc(100vh + 200px);
  height: calc(100svh + 200px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#top .ttl {
  top: calc(50% + 13vh);
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 992px) {
  #top .ttl {
    top: calc(50% + 7vh);
  }
}
#top .ttl img {
  margin: 0 auto;
}
#top .ttl h1 {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}
#top .ttl h1.active {
  opacity: 1;
}
#top .ttl h1 img {
  max-width: 1089px;
  width: 91.733vw;
}
@media (min-width: 992px) {
  #top .ttl h1 img {
    width: 75.625vw;
  }
}
#top .ttl p {
  margin-top: 10vh;
}
@media (min-width: 992px) {
  #top .ttl p {
    margin-top: 7vh;
  }
}
#top .ttl p img {
  max-width: 250px;
  width: 61.333vw;
}
@media (min-width: 992px) {
  #top .ttl p img {
    width: 17.361vw;
  }
}
@media (max-width: 992px) {
  #pre2 #top {
    height: auto;
  }
}
#pre2 #top > div {
  position: relative;
}
#pre2 #top > div.text > picture img {
  -webkit-filter: blur(10.5px);
          filter: blur(10.5px);
  opacity: 0.3;
}
@media (max-width: 992px) {
  #pre2 #top > div.img:not(.text) picture img {
    height: auto;
  }
  #pre2 #top > div.text > picture img {
    height: 64.88vw;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -o-object-position: center -17vw;
       object-position: center -17vw;
  }
  #pre2 #top > div.text h1 {
    position: absolute;
    top: 5.089vw;
    right: 6.361vw;
  }
  #pre2 #top > div.text h1 img {
    width: 41.475vw;
  }
  #pre2 #top > div.text h2 {
    position: absolute;
    bottom: 4.58vw;
    left: 0;
    right: 0;
  }
  #pre2 #top > div.text h2 img {
    width: 92.62vw;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #pre2 #top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #pre2 #top > div {
    width: 50%;
  }
  #pre2 #top > div.img > img {
    height: 100vh;
    height: 100svh;
  }
  #pre2 #top > div.text > picture img {
    height: 160vh;
    -o-object-position: right -40vh;
       object-position: right -40vh;
    height: 160svh;
    -o-object-position: right -40svh;
       object-position: right -40svh;
  }
  #pre2 #top > div.text h1 {
    position: absolute;
    top: 6.66vh;
    right: 3.81vw;
  }
  #pre2 #top > div.text h1 img {
    width: 33.333vw;
  }
  #pre2 #top > div.text h2 {
    position: absolute;
    bottom: 6.11vh;
    left: 0;
    right: 0;
  }
  #pre2 #top > div.text h2 img {
    width: 43.263vw;
    margin: 0 auto;
  }
}

#yodogawa {
  background-color: #FBFBFB;
  padding: 40px 0;
}
@media (min-width: 992px) {
  #yodogawa {
    padding: 150px 0 170px;
  }
}
@media (min-width: 992px) {
  #pre2 #yodogawa {
    padding: 60px 0 0;
  }
}
#yodogawa > div {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 92.3vw;
  margin: 0 auto;
}
#yodogawa > div a {
  display: block;
  width: 100%;
  padding-top: 35px;
}
#yodogawa > div a img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  #yodogawa > div a {
    width: 300px;
    padding-top: 20px;
    padding-bottom: 50px;
  }
}

.desc {
  background-color: #D6E0EC;
  width: 100%;
}
.desc div {
  width: 92.3vw;
  margin: 0 auto;
  padding: 40px 0;
}
@media (min-width: 600px) {
  .desc div {
    width: 300px;
    padding: 80px 0;
    white-space: nowrap;
  }
}

.index {
  width: 100%;
  background-color: #FBFBFB;
}
.index div {
  width: 92.3vw;
  margin: 0 auto;
  padding: 40px 0;
}
@media (min-width: 600px) {
  .index div {
    width: 300px;
    padding: 80px 0;
    white-space: nowrap;
    font-size: 1.6rem;
  }
}
.index div ul {
  margin-top: 36px;
}
@media (min-width: 600px) {
  .index div ul {
    margin-top: 40px;
  }
}
.index div ul li:nth-of-type(n + 2) {
  margin-top: 5px;
}
@media (min-width: 600px) {
  .index div ul li:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}
.index div ul a {
  display: block;
  border-bottom: 1px dashed;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.6rem;
}
@media (min-width: 600px) {
  .index div ul a {
    display: inline-block;
    font-size: 1.8rem;
  }
}

#debut {
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 10;
}
@media (min-width: 600px) {
  #debut {
    bottom: 30px;
    right: 40px;
  }
}
#debut img {
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
  width: 60px;
}
@media (min-width: 600px) {
  #debut img {
    width: initial;
  }
}
#debut.active {
  opacity: 1;
}

.point {
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .point {
    height: calc(100vh - 45px);
    height: calc(100svh - 45px);
  }
}
@media (min-height: 890px) and (min-width: 1440px) {
  .point {
    height: auto;
  }
}
@media (min-width: 992px) {
  .point > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point > div.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .point > div > div {
    width: 50%;
    height: calc(100vh - 45px);
    height: calc(100svh - 45px);
  }
}
.point > div > div.img {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .point > div > div.img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: calc(100vh - 45px);
    height: calc(100svh - 45px);
  }
}
.point > div > div.text {
  position: relative;
  z-index: 0;
  padding: 65px 0 70px;
}
@media (min-width: 992px) {
  .point > div > div.text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.point > div > div.text .bg {
  position: absolute;
  top: -10px;
  z-index: 0;
}
@media (min-width: 992px) {
  .point > div > div.text .bg {
    top: 4vh;
  }
}
.point > div > div.text .bg img {
  max-width: initial;
  width: 130vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 45%;
  position: relative;
}
@media (min-width: 992px) {
  .point > div > div.text .bg img {
    width: initial;
    height: 85vh;
  }
}
.point > div > div.text :not(.bg) {
  z-index: 1;
}
@media (min-width: 992px) {
  .point > div > div.text :not(.bg) {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
}
.point > div > div.text .icon img {
  margin: 0 auto;
}
.point > div > div.text dl {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 92.3vw;
  margin: 0 auto;
  padding-top: 20px;
}
.point > div > div.text dl dt {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.point > div > div.text dl dt span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  display: block;
}
@media (min-width: 992px) {
  .point > div > div.text dl dt {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
.point > div > div.text dl dd {
  font-size: 1.4rem;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .point > div > div.text dl dd {
    font-size: 1.6rem;
    padding-top: 27px;
  }
}

.content {
  background-color: #FBFBFB;
  padding: 40px 0 55px;
}
@media (min-width: 992px) {
  .content {
    padding: 120px 0 50px;
  }
}
.content .inner {
  max-width: 500px;
  width: 92.3vw;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.content h3 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 2.4rem;
  line-height: 35px;
  margin-bottom: 30px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
@media (min-width: 992px) {
  .content h3 {
    font-size: 3rem;
    margin-bottom: 40px;
    white-space: nowrap;
  }
}
.content h4 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.8rem;
  line-height: 166.667%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .content h4 {
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.content h4 span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-weight: 800;
}
.content h5 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .content h5 {
    font-size: 1.8rem;
    margin-top: 40px;
  }
}
.content .caption {
  color: #000;
  font-family: "Yu Gothic Pr6N M", sans-serif;
  padding-left: 4.1vw;
  padding-top: 0.8em;
}
@media (min-width: 600px) {
  .content .caption {
    font-size: 1.4rem;
    padding-left: 0;
  }
}
.content hr {
  border: none;
  border-top: 1px dashed;
  margin: 40px 0 0;
}
.content hr.height-min {
  margin: 20px 0;
}
@media (min-width: 992px) {
  .content hr.height-min {
    margin: 40px 0;
  }
}
@media (min-width: 992px) {
  .content hr {
    margin: 80px 0 0;
  }
}
.content .swiper {
  margin-top: 40px;
}
.content .swiper .swiper-wrapper .swiper-slide p {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 1.4rem;
  line-height: 1.44;
  padding-left: 4.1vw;
  padding-top: 5px;
}
@media (min-width: 600px) {
  .content .swiper {
    margin-top: 40px;
  }
  .content .swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .swiper .swiper-wrapper .swiper-slide {
    width: 33.3333333333%;
    position: relative;
  }
  .content .swiper .swiper-wrapper .swiper-slide p {
    position: absolute;
    padding-left: 1em;
    bottom: 0.8em;
  }
  .content .swiper .swiper-wrapper .swiper-slide p.white {
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.content .swiper-pagination {
  position: relative;
  margin-top: 5px;
}
@media (min-width: 600px) {
  .content .swiper-pagination {
    display: none;
  }
}
.content .swiper-pagination-bullet-active {
  background-color: #B41400;
}
.content figure {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .content dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin-top: 70px;
  }
}
.content dl dd {
  padding-top: 40px;
}
@media (min-width: 600px) {
  .content dl dd {
    width: 140px;
  }
}
.content dl dt h5 {
  margin-top: 10px;
}
@media (min-width: 600px) {
  .content dl dt h5 {
    margin-top: 20px;
  }
}
.content dl dt p {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 1.4rem;
  line-height: 20px;
}
.content .ttl-story {
  background-color: #B41400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 4.1vw;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .content .ttl-story {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: calc((100% - 500px) / 2 + 150px);
    margin-top: 75px;
    margin-bottom: 40px;
    padding: 10px;
  }
}
.content .ttl-story p {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #ffffff;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 166.667%;
}
@media (min-width: 992px) {
  .content .ttl-story p {
    font-size: 2rem;
    line-height: 1.44;
  }
}
.content .ttl-story p span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-weight: 800;
  display: block;
}
.content .bg-story {
  position: absolute;
  padding-top: 80px;
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  .content .bg-story {
    padding-top: 0;
  }
}
.content .bg-story img {
  margin: 0 auto;
}

#date {
  position: relative;
}
#date div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.44;
}
@media (min-width: 992px) {
  #date div {
    font-size: 3.5rem;
  }
}
#date div span {
  font-size: 3rem;
  display: block;
}
@media (min-width: 992px) {
  #date div span {
    font-size: 4.5rem;
  }
}

#banner {
  padding: 55px 0 30px;
}
@media (min-width: 992px) {
  #banner {
    padding: 130px 0 90px;
  }
}
#banner ul {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 992px) {
  #banner ul {
    gap: 10px;
  }
}
#banner ul li {
  width: calc((100% - 5px) / 2);
  position: relative;
}
@media (min-width: 992px) {
  #banner ul li {
    width: calc((100% - 20px) / 3);
  }
}
#banner ul li img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#banner ul li.off {
  pointer-events: none;
}
#banner ul li.off::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#banner ul li.off p {
  display: block;
}
#banner ul li p {
  display: none;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.22;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-weight: 800;
}
@media (min-width: 600px) {
  #banner ul li p {
    font-size: 2.2rem;
  }
}
#banner ul li p span {
  font-size: 2.2rem;
}
@media (min-width: 600px) {
  #banner ul li p span {
    font-size: 3.2rem;
  }
}/*# sourceMappingURL=preview.css.map */