@charset "UTF-8";
/* Modern & Accessible CSS Reset
  Based on Josh W. Comeau & Andy Bell's resets
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 水平スクロールバーのスペースを常に確保する（レイアウトの安定化） */
  scrollbar-gutter: stable;
}

html, body {
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 注意: ul, ol の list-style: none; はここには含めません。
  Safari(VoiceOver)のバグで、list-styleを消すとリスト要素として
  読み上げられなくなる問題があるため。
  role="list" が明示的に付与されている場合のみ、リストスタイルをリセットする */
ul[role=list],
ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 10. 【重要】アニメーションを減らす設定（アクセシビリティ）
  OS設定で「視差効果を減らす」をオンにしているユーザーへの配慮 
*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**

  * ここからはHOBONICHI

**/
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #071D49;
  outline-offset: 2px;
}

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

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

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

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

body.scroll-lock {
  overflow: hidden;
}

/**  common  **/
body {
  font-family: "A1 Gothic M", sans-serif;
  background-color: #F1E880;
  color: #000;
  font-size: 0.875rem;
  line-height: 2;
  position: relative;
}
@media (min-width: 600px) {
  body {
    font-size: 1rem;
  }
}

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

a {
  color: #000;
}

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

.hide-fonts {
  font-size: 0;
  line-height: 0;
  color: transparent;
  pointer-events: none;
  user-select: none;
  position: absolute;
  opacity: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 992px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding-left: 1.25rem;
    padding-right: 2.5rem;
  }
}

.header-nav {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  height: 3rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 992px) {
  .header-nav {
    background-color: transparent;
  }
}
.header-nav a {
  display: flex;
  padding: 0.75rem;
}
.header-nav a img {
  height: 1.25rem;
}
.header-nav button {
  margin-left: auto;
}
@media (min-width: 992px) {
  .header-nav button {
    display: none;
  }
}

.header-menu {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  font-size: 1.0625rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .header-menu {
    transform: translateX(0);
    position: relative;
    height: auto;
    width: auto;
  }
}
.header-menu button {
  align-self: flex-end;
  padding: 0.75rem;
}
@media (min-width: 992px) {
  .header-menu button {
    display: none;
  }
}
.header-menu a {
  text-decoration: none;
  display: block;
  padding: 0.75rem;
}
@media (min-width: 992px) {
  .header-menu a {
    line-height: 0.625rem;
    padding: 0.625rem 1.25rem;
  }
}
.header-menu ul {
  width: min(100% - 7.25rem, 25rem);
}
@media (min-width: 992px) {
  .header-menu ul {
    width: auto;
    display: flex;
  }
}
.header-menu li {
  border-bottom: 1px solid #000;
  text-align: center;
}
@media (min-width: 992px) {
  .header-menu li {
    border-bottom: none;
    border-right: 1px solid #000;
  }
}
.header-menu li img {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .header-menu li img {
    display: none;
  }
}
.header-menu.active {
  transform: translateX(0);
}

footer {
  position: relative;
  z-index: 100;
}
footer a {
  display: flex;
}

.footer-image {
  background: linear-gradient(0deg, #37D888, #F1E880);
  position: relative;
}
.footer-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, rgba(241, 232, 128, 0), #F1E880);
}
@media (min-width: 600px) {
  .footer-image::before {
    height: 48%;
  }
}
.footer-image img {
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100%;
}
@media (min-width: 600px) {
  .footer-image {
    height: 18.75rem;
  }
}
@media (min-width: 3844px) {
  .footer-image {
    height: auto;
  }
  .footer-image img {
    object-fit: contain;
  }
}

.footer-contents {
  background-color: #37D888;
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  padding-right: 3.125rem;
  padding-left: 3.125rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .footer-contents {
    gap: 0;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

.footer_logo a {
  display: block;
  width: min(100%, 31.25rem);
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3.75rem;
    margin-top: 5.375rem;
    margin-bottom: 4.125rem;
  }
}

.footer_share {
  font-family: "A1 Gothic B", sans-serif;
  font-size: 0.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.footer_share ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.footer_share li {
  width: 1.75rem;
}

@media (min-width: 992px) {
  .footer_mo {
    order: 1;
  }
}
.footer_mo ul {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
}
.footer_mo li:first-child {
  width: 9.1875rem;
}
.footer_mo li:last-child {
  width: 4.1875rem;
}

.footer_hobo {
  font-family: "A1 Gothic B", sans-serif;
  font-size: 0.75rem;
}
.footer_hobo ul {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.footer_hobo a {
  text-decoration: none;
}

.footer_store {
  font-size: 0.75rem;
  width: 82%;
}
.footer_store ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}
@media (min-width: 600px) {
  .footer_store ul {
    justify-content: center;
  }
}
.footer_store li:nth-child(2) {
  width: 100%;
}
@media (min-width: 600px) {
  .footer_store li:nth-child(2) {
    width: auto;
  }
}

.footer_copyright {
  text-align: center;
  font-size: 0.625rem;
}

/**  index  **/
@media (min-width: 992px) {
  header {
    background-color: rgb(255, 255, 255);
  }
}

@keyframes effect-fade-out {
  100% {
    backdrop-filter: brightness(1) blur(0);
    opacity: 0;
  }
}
.hero {
  min-height: calc(100vh - 3rem);
}
.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(255, 245, 131, 0.8);
  z-index: 10000;
  backdrop-filter: brightness(2) blur(12px);
  pointer-events: none;
  animation: effect-fade-out 1.4s ease 0.1s forwards;
}
@media (min-width: 600px) {
  .hero {
    min-height: auto;
  }
}
@media (min-width: 600px) {
  .hero {
    min-height: auto;
  }
}

.hero-bg {
  position: relative;
}
.hero-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32%;
  background: linear-gradient(0deg, #F1E880, rgba(241, 232, 128, 0));
}
.hero-bg img {
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100%;
}
@media (min-width: 600px) {
  .hero-bg {
    height: 29.25rem;
  }
}
@media (min-width: 1704px) {
  .hero-bg {
    height: auto;
  }
  .hero-bg img {
    object-fit: contain;
  }
}

.hero-title {
  width: 100%;
  display: block;
  margin-top: 1.25rem;
}
@media (min-width: 600px) {
  .hero-title {
    width: min(80%, 62.5rem);
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

main {
  overflow: hidden;
}

.yodogawa {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  margin-top: 3.875rem;
  margin-bottom: 1rem;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
@media (min-width: 600px) {
  .yodogawa {
    font-size: 1.125rem;
    text-align: center;
    gap: 3.4375rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 7.5rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  .yodogawa {
    margin-bottom: 4.125rem;
    margin-top: 10.9375rem;
  }
}
.yodogawa > img {
  width: min(100%, 38.0625rem);
  filter: blur(8px);
  clip-path: inset(0 100% 0 0);
}
.yodogawa div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.yodogawa div::before, .yodogawa div::after {
  content: "";
  display: block;
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 992px) {
  .yodogawa div::before, .yodogawa div::after {
    content: none;
  }
}
.yodogawa div::before {
  width: calc(100% - 9rem);
  aspect-ratio: 227/71;
  background-image: url(../images/index/image-top-sp.png);
  margin-bottom: 1.1875rem;
}
.yodogawa div::after {
  width: calc(100% - 5.25rem);
  aspect-ratio: 281/85;
  background-image: url(../images/index/image-bottom-sp.png);
  margin-top: 1.875rem;
}
.yodogawa div img {
  display: none;
  opacity: 0;
  transform: scale(0.8);
}
@media (min-width: 992px) {
  .yodogawa div img {
    display: block;
  }
}
.yodogawa div img {
  position: absolute;
}
.yodogawa div img:nth-of-type(1) {
  width: 13.9375rem;
  height: 9.5rem;
  top: -1.1875rem;
  left: -21.6875rem;
}
.yodogawa div img:nth-of-type(2) {
  width: 7.0625rem;
  height: 4.125rem;
  top: 19.375rem;
  right: -22.4375rem;
}
.yodogawa div img:nth-of-type(3) {
  width: 4.8125rem;
  height: 7.25rem;
  top: 2.25rem;
  right: -15.125rem;
}
.yodogawa div img:nth-of-type(4) {
  width: 14.25rem;
  height: 6.0625rem;
  top: 34.0625rem;
  right: -21.75rem;
}
.yodogawa div img:nth-of-type(5) {
  width: 4.8125rem;
  height: 7.25rem;
  top: -8.875rem;
  right: -22.0625rem;
}
.yodogawa div img:nth-of-type(6) {
  width: 8.3125rem;
  height: 11rem;
  top: 26.25rem;
  left: -22.0625rem;
}
.yodogawa div img:nth-of-type(7) {
  width: 4.8125rem;
  height: 7.1875rem;
  top: 13.75rem;
  left: -11.4375rem;
}
.yodogawa p:not(:last-of-type) {
  margin-bottom: 2em;
}
@keyframes slide-in {
  to {
    filter: blur(0);
    clip-path: inset(0);
  }
}
@keyframes pop-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.yodogawa.active > img {
  animation: slide-in 0.6s ease-in-out 0.2s forwards;
}
.yodogawa.active div img {
  animation: pop-in 0.2s ease-in-out forwards;
}
.yodogawa.active div img:nth-of-type(1) {
  animation-delay: 0.3s;
}
.yodogawa.active div img:nth-of-type(2) {
  animation-delay: 0.6s;
}
.yodogawa.active div img:nth-of-type(3) {
  animation-delay: 0.9s;
}
.yodogawa.active div img:nth-of-type(4) {
  animation-delay: 1.2s;
}
.yodogawa.active div img:nth-of-type(5) {
  animation-delay: 1.5s;
}
.yodogawa.active div img:nth-of-type(6) {
  animation-delay: 1.8s;
}
.yodogawa.active div img:nth-of-type(7) {
  animation-delay: 2.1s;
}

.news {
  width: min(100% - 3rem, 42.8125rem);
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1875rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.125rem;
  padding-bottom: 1.75rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
@media (min-width: 600px) {
  .news {
    width: fit-content;
    max-width: 42.8125rem;
    padding: 2rem 3.125rem;
  }
}
.news dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 600px) {
  .news dl {
    flex-direction: row;
    gap: 2.25rem;
  }
}
.news dt {
  width: 4.3125rem;
  height: 3.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .news dt {
    width: 5rem;
    height: auto;
  }
}
.news dd {
  font-family: "A1 Gothic R", sans-serif;
  line-height: 1.5;
}
.news time {
  display: block;
  font-family: "A1 Gothic M", sans-serif;
  line-height: 2;
}
@media (min-width: 600px) {
  .news time {
    display: inline-flex;
    margin-right: 1em;
  }
}
.news ul {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}
.news button {
  font-size: 0.75rem;
  border-radius: 0.5rem;
  width: 9.375rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.72);
}