@charset "UTF-8";
/*
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;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-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,
hr {
  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;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}
a:not([class])[target=_blank]::after {
  font-family: "Hobonichi-Icons";
  font-size: 87.5%;
  font-weight: normal;
  line-height: 1;
  position: relative;
  top: -0.25em;
  display: inline-block;
  margin-left: 0.25em;
  content: "\e914";
}

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

*:focus {
  outline: none;
}

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

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

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    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;
}

/**  common  **/
header {
  position: relative;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
header.is-shown {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.header-bar {
  position: relative;
  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;
  background-color: #E7F3E2;
  height: 6rem;
  -webkit-box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}
.header-bar img {
  width: auto;
  height: 100%;
}
.header-bar a {
  display: block;
  height: 100%;
  padding: 1.3rem 2.3rem 1.4rem;
  -webkit-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}
.header-bar .hamburger {
  height: 100%;
  padding: 1.7rem 2.3rem;
  background-color: transparent;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.header-bar .hamburger img {
  width: 4rem;
}
.header-bar .hamburger:hover, .header-bar .hamburger:active, .header-bar .hamburger:focus {
  background-color: #fff;
}
@media (min-width: 600px) {
  .header-bar {
    height: 7.8rem;
  }
  .header-bar .hamburger {
    padding: 2.3rem 3.1rem;
  }
  .header-bar .hamburger img {
    width: 5rem;
  }
}

.header-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 56.8%;
  background-color: #E7F3E2;
  z-index: 1000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header-menu li:not(:last-child) {
  border-bottom: 1px solid #001230;
}
.header-menu a {
  display: block;
  padding: 0.8rem 0 0.9rem 2.7rem;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0.15px;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.header-menu a:hover, .header-menu a:active, .header-menu a:focus {
  opacity: 1;
  background-color: #fff;
}
.header-menu br {
  display: block;
}
@media (min-width: 600px) {
  .header-menu {
    width: 41.2rem;
  }
  .header-menu a {
    padding: 2.5rem 0.8rem 2.5rem 2.6rem;
    font-size: 2rem;
    line-height: 140%;
    letter-spacing: 0.2px;
  }
  .header-menu br {
    display: none;
  }
}

/* footer */
footer {
  font-family: "Midashi Go MB1", sans-serif;
  color: #001230;
  background-color: #E7F3E2;
}
footer a {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
footer a:active, footer a:focus {
  opacity: 0.5;
}

footer .wrapper {
  max-width: 1272px;
  width: 74.666vw;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-areas: "share" "hobo" "store" "copy";
}

footer .footer-share {
  grid-area: share;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

footer .footer-share .title {
  margin-right: 5px;
}

footer .footer-hobo {
  grid-area: hobo;
  font-size: 1.6rem;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
  margin-top: 30px;
}

footer .footer-store {
  grid-area: store;
  font-size: 1.2rem;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.12px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer-store li::after {
  content: "/";
  display: inline-block;
  padding: 0 0.5em 0 0.2em;
}

footer .footer-store li:last-of-type:after {
  display: none;
}

footer .footer-copy {
  grid-area: copy;
  font-size: 1.4rem;
  line-height: 28px; /* 200% */
  letter-spacing: 0.14px;
  margin-top: 16px;
}

@media (min-width: 601px) {
  footer .wrapper {
    width: 96%;
    padding: 75px 0 100px;
    grid-template-areas: "share hobo ." "store hobo copy";
    grid-template-columns: 1fr auto auto;
  }
  footer .footer-share {
    gap: 20px;
  }
  footer .footer-share .title {
    margin-right: 20px;
  }
  footer .footer-store {
    margin-top: 24px;
    font-size: 1.4rem;
    line-height: 28px; /* 200% */
    letter-spacing: 0.14px;
  }
  footer .footer-hobo {
    margin-top: 0;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: end;
        align-self: end;
    width: 10.5em;
    margin-right: 5vw;
  }
  footer .footer-copy {
    margin-top: 0;
    -ms-flex-item-align: end;
        align-self: end;
  }
}
@media (min-width: 1200px) {
  footer .footer-hobo {
    margin-right: 64px;
  }
}
:root {
  --auburn: #A22E00;
  --white: #ffffff;
  --gray: #CFCFCF;
  --auburn-hover: #e04001;
}

body {
  font-family: "Midashi Go MB1", sans-serif;
  background-color: #C1EBE1;
}

.main {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-after: 4.9rem;
          padding-block-end: 4.9rem;
}
.main img {
  width: 100%;
  height: auto;
}
@media (min-width: 48rem) {
  .main {
    -webkit-padding-after: 14.4rem;
            padding-block-end: 14.4rem;
  }
}

@-webkit-keyframes blur-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.hero {
  --arw: 375;
  --arh: 617;
  position: relative;
  aspect-ratio: var(--arw)/var(--arh);
}
.hero h1,
.hero p {
  position: absolute;
}
.hero h1 img,
.hero p img {
  width: 100%;
  height: auto;
}
.hero h1 {
  top: calc(71 / var(--arh) * 100%);
  left: calc(142 / var(--arw) * 100%);
  width: calc(91 / var(--arw) * 100%);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-animation: blur-in 1.2s ease-in forwards;
          animation: blur-in 1.2s ease-in forwards;
}
.hero p {
  bottom: calc(171 / var(--arh) * 100%);
  right: calc(79 / var(--arw) * 100%);
  width: calc(192 / var(--arw) * 100%);
}
@media (min-width: 48rem) {
  .hero {
    --arw: 1512;
    --arh: 855;
  }
  .hero h1 {
    top: calc(126 / var(--arh) * 100%);
    left: calc(704 / var(--arw) * 100%);
    width: calc(105 / var(--arw) * 100%);
  }
  .hero p {
    bottom: calc(320 / var(--arh) * 100%);
    right: calc(503 / var(--arw) * 100%);
    width: calc(201 / var(--arw) * 100%);
  }
}

.yodogawa {
  width: 88vw;
  -webkit-padding-before: 1rem;
          padding-block-start: 1rem;
}
.yodogawa p {
  color: #572324;
  font-size: 1.5rem;
  line-height: 186.667%;
  letter-spacing: 0.15px;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
}
@media (min-width: 32.5rem) {
  .yodogawa {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-padding-before: 3.6rem;
            padding-block-start: 3.6rem;
  }
  .yodogawa p {
    white-space: pre-line;
  }
}

.noticeboard {
  width: min(85.333333333vw, 50rem);
  padding-block: 4.5rem 5rem;
}
.noticeboard ul {
  display: grid;
  gap: 2.4rem 0;
}
.noticeboard a {
  -webkit-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}
.noticeboard a:focus, .noticeboard a:active {
  opacity: 0.5;
}
@media (min-width: 48rem) {
  .noticeboard {
    padding-block: 8.3rem 13.6rem;
  }
  .noticeboard ul {
    gap: 2rem 0;
  }
}

.explorer {
  width: min(93.333333333vw, 78rem);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
}
.explorer h2 {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem 0;
  padding-block: 2.2rem 2.1rem;
  color: #ffffff;
  font-size: 2rem;
  line-height: 115%;
  letter-spacing: 0.2px;
  background-color: #128E84;
}
.explorer h2 img {
  width: 5rem;
}
.explorer-content {
  width: min(90.285714285%, 50rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .explorer h2 {
    gap: 0.8rem 0;
    padding-block: 2rem;
    font-size: 2.4rem;
    line-height: 95.833%;
    letter-spacing: 0.24px;
  }
  .explorer h2 img {
    width: 4.8rem;
  }
}

.navigator {
  display: grid;
  grid-template-areas: "buttons buttons" "oldest latest";
  gap: 0.8rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigator.at-top {
  padding-block: 2.4rem 1.6rem;
}
.navigator.at-bottom {
  padding-block: 3.2rem;
}
.navigator li:first-of-type {
  grid-area: oldest;
}
.navigator li:nth-of-type(2) {
  grid-area: buttons;
}
.navigator li:last-of-type {
  grid-area: latest;
}
.navigator button {
  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;
}
.navigator button.is-disabled {
  pointer-events: none;
  cursor: default;
}
.navigator .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navigator .button {
  gap: 0 0.6rem;
  width: 8.6rem;
  height: 4rem;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 175%;
  letter-spacing: 0.16px;
  background-color: var(--auburn);
  -webkit-transition: background-color 0.35s ease-out;
  transition: background-color 0.35s ease-out;
}
.navigator .button.is-disabled {
  background-color: var(--gray);
}
.navigator .button:not(.is-disabled):hover, .navigator .button:not(.is-disabled):focus, .navigator .button:not(.is-disabled):active {
  background-color: var(--auburn-hover);
}
.navigator .button:before, .navigator .button:after {
  display: block;
  width: 1.2rem;
  height: 1.6rem;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.navigator .button.prev {
  border-radius: 1.6rem 0 0 1.6rem;
}
.navigator .button.prev:before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16" fill="none"%3E%3Cpath d="M11.5 1L1 8L11.5 15" stroke="white" stroke-linejoin="round"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16" fill="none"%3E%3Cpath d="M11.5 1L1 8L11.5 15" stroke="white" stroke-linejoin="round"/%3E%3C/svg%3E');
}
.navigator .button.next {
  border-radius: 0 1.6rem 1.6rem 0;
}
.navigator .button.next:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16" fill="none"%3E%3Cpath d="M1 15L11.5 8L1 0.999999" stroke="white" stroke-linejoin="round"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16" fill="none"%3E%3Cpath d="M1 15L11.5 8L1 0.999999" stroke="white" stroke-linejoin="round"/%3E%3C/svg%3E');
}
.navigator .link {
  color: var(--auburn);
  font-size: 1.2rem;
  line-height: 233.333%;
  letter-spacing: 0.12px;
  -webkit-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.navigator .link.is-disabled {
  color: var(--gray);
}
.navigator .link:not(.is-disabled):hover, .navigator .link:not(.is-disabled):focus, .navigator .link:not(.is-disabled):active {
  color: var(--auburn-hover);
}
.navigator .link:before, .navigator .link:after {
  width: 1.3rem;
  height: 1.3rem;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.navigator .link.oldest:before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 1L6 6.5L12 12" stroke="black" stroke-linejoin="round"/%3E%3Cpath d="M7 1L0.999999 6.5L7 12" stroke="black" stroke-linejoin="round"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 1L6 6.5L12 12" stroke="black" stroke-linejoin="round"/%3E%3Cpath d="M7 1L0.999999 6.5L7 12" stroke="black" stroke-linejoin="round"/%3E%3C/svg%3E');
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.navigator .link.latest {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.navigator .link.latest:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.999999 12L7 6.5L1 1" stroke="black" stroke-linejoin="round"/%3E%3Cpath d="M6 12L12 6.5L6 1" stroke="black" stroke-linejoin="round"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.999999 12L7 6.5L1 1" stroke="black" stroke-linejoin="round"/%3E%3Cpath d="M6 12L12 6.5L6 1" stroke="black" stroke-linejoin="round"/%3E%3C/svg%3E');
  -webkit-margin-start: 0.2rem;
          margin-inline-start: 0.2rem;
}
@media (min-width: 48rem) {
  .navigator {
    grid-template-areas: "oldest buttons latest";
  }
  .navigator.at-top {
    padding-block: 5rem 4rem;
  }
  .navigator.at-bottom {
    padding-block: 5.6rem 6.8rem;
  }
}

.cards {
  display: grid;
  gap: 2.4rem 0;
}
@media (min-width: 48rem) {
  .cards {
    gap: 4rem 0;
  }
}

.card {
  padding: 1.8rem 1.8rem 1rem;
  color: 1.4rem;
  font-family: "Shuei MaruGo L", sans-serif;
  line-height: 185.714%;
  letter-spacing: -0.14px;
  background-color: var(--white);
  border-radius: 0.8rem;
}
.card img, .card video {
  margin-bottom: 1.5rem;
}
.card .datetime {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem 0 0 auto;
  color: var(--auburn);
  -webkit-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.card .datetime:hover, .card .datetime:focus, .card .datetime:active {
  color: var(--auburn-hover);
}
@media (min-width: 48rem) {
  .card {
    padding: 4.2rem 4rem 2.5rem;
  }
  .card img {
    margin-bottom: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */