@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]) {
  -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  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@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;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[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;
}

@keyframes blur {
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes katakata {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/**  common  **/
body {
  background-size: 100vw;
  font-family: "A1 Gothic R";
  font-size: 1.5rem;
  line-height: 1.8;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100lvw;
  height: 100lvh;
  z-index: -1;
  background-size: cover;
  background-position: bottom center;
  background-image: url("../images/bg-sp.jpg");
}
@media (min-width: 992px) {
  body:before {
    background-image: url("../images/bg-pc.jpg");
  }
}
@media (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

p:not(:last-child) {
  margin-bottom: 1em;
}

.hero {
  position: relative;
}
.hero .anim {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero .img {
  position: absolute;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.1);
  --delay-time: .5s;
}
.hero .img img,
.hero .img picture {
  width: 100%;
}
.hero .img.date {
  top: 5%;
  right: 5%;
  width: 20%;
  animation: blur 1s calc(var(--delay-time) + 0.5s) forwards;
}
@media (min-width: 600px) {
  .hero .img.date {
    top: 10%;
    right: 8%;
    width: 12%;
  }
}
.hero .img.date img:last-child {
  margin: 1.5rem auto;
  width: 90%;
}
@media (min-width: 600px) {
  .hero .img.date img:last-child {
    display: block;
    width: 80%;
    margin: 2rem auto;
  }
}
.hero .img.fee {
  top: 5%;
  left: 5%;
  width: 20%;
  animation: blur 1s calc(var(--delay-time) + 1s) forwards;
}
@media (min-width: 600px) {
  .hero .img.fee {
    top: 10%;
    left: 4%;
    width: 8%;
  }
}
.hero .img.title {
  top: 5%;
  left: 40%;
  width: 30%;
  animation: blur 1s calc(var(--delay-time) + 1.5s) forwards;
}
@media (min-width: 600px) {
  .hero .img.title {
    top: 8%;
    left: 44%;
    width: 11%;
  }
}
.hero .img.okane {
  top: 20%;
  left: 0%;
  width: 34%;
  position: relative;
  animation: blur 0.2s calc(var(--delay-time) + 2.8s) forwards;
}
.hero .img.okane picture:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.1);
  animation: blur 0.2s calc(var(--delay-time) + 3.3s) forwards;
}
@media (min-width: 600px) {
  .hero .img.okane {
    top: 27%;
    left: 2%;
    width: 27%;
  }
}

.yodogawa {
  color: #fff;
  margin: 4rem 1.8rem;
}
@media (min-width: 600px) {
  .yodogawa {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 6.8rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.prof {
  margin: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 600px) {
  .prof {
    gap: 3.6rem;
  }
}
.prof img {
  width: 100%;
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}

:root {
  --modal-top-padding: 4rem;
}

.modaal-close {
  top: var(--modal-top-padding);
}

.modaal-content {
  padding-top: var(--modal-top-padding);
}
.modaal-content .prof-wrapper {
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  padding: 3rem;
}
.modaal-content .inner {
  display: grid;
  gap: 2.4rem;
  max-width: 53rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .modaal-content .inner {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.modaal-content .prof-ico {
  width: 60%;
  max-width: 20rem;
  margin-right: auto;
  margin-left: auto;
}
.modaal-content .prof-title {
  width: 80%;
  max-width: 32rem;
  margin-right: auto;
  margin-left: auto;
}

h1,
h2 {
  text-align: center;
}
h1 img,
h2 img {
  display: inline;
}

.contents {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 90rem;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .contents {
    overflow: initial;
  }
}
.contents .card {
  padding: 2.8rem 1.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s;
  position: relative;
  transform-origin: center center;
}
.contents .card:nth-child(even) {
  transform: rotate(-10deg);
}
.contents .card:nth-child(odd) {
  transform: rotate(10deg);
}
.contents .card:last-child {
  transform: rotate(0deg);
}
.contents .card:last-child {
  top: 4rem;
}
.contents .card.active {
  opacity: 1;
  top: 0;
  transform: rotate(0deg);
}
@media (min-width: 600px) {
  .contents .card {
    padding: 4.6rem 1.8rem;
    gap: 2.8rem;
  }
  .contents .card > * {
    max-width: 48rem;
    margin-right: auto;
    margin-left: auto;
  }
  .contents .card:last-child div,
  .contents .card:last-child dl {
    width: 48rem;
  }
  .contents .card:last-child a {
    width: auto;
  }
  .contents .card:last-child hr {
    max-width: 63rem;
  }
}
.contents .card li span {
  display: inline-block;
  width: 2.4em;
}
.contents .card-title {
  gap: 3.2rem;
  padding: 4.6rem 1.8rem;
  position: relative;
}
.contents .card-title::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: -1rem;
  width: min(40%, 22rem);
  aspect-ratio: 143/77;
  background-image: url("../images/card-0-img-piyo.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 992px) {
  .contents .card-title::before {
    width: 30%;
    top: 12rem;
    right: -9rem;
  }
}
.contents .card-title br {
  display: block;
}
@media (min-width: 600px) {
  .contents .card-title > * {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.contents .att {
  color: #E60000;
}
@media (min-width: 600px) {
  .contents .att {
    font-size: 1.3rem;
  }
}
.contents dt {
  margin-top: 1em;
  font-size: 1.6rem;
  font-family: "A1 Gothic M";
}
.contents a {
  margin-right: auto;
  margin-left: auto;
}
.contents hr {
  width: 100%;
  border: 0.5px solid #000;
}
.contents .before {
  padding: 1em 0.5em;
  border-radius: 2rem;
  background-color: rgba(255, 82, 52, 0.5);
  display: block;
  color: #fff;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 600px) {
  .contents .before {
    padding: 1em 2em;
  }
}
.contents .before small {
  display: block;
}

.ending {
  color: #fff;
  margin: 3.6rem;
}
@media (min-width: 600px) {
  .ending {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    font-size: 2rem;
  }
}
.ending .img-piano {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  transform-origin: center;
  animation: katakata 2s infinite;
}
@media (min-width: 600px) {
  .ending .img-piano {
    margin-top: 4rem;
  }
}
.ending .photographer {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.5em;
}
@media (min-width: 600px) {
  .ending .photographer {
    margin-top: 2.8rem;
    font-size: 1.6rem;
  }
}
.ending .photographer br {
  display: block;
}

footer {
  margin-top: 4.8rem;
  background-color: var(--color-white);
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (min-width: 600px) {
  footer {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
footer .wrapper {
  width: 76%;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    width: 88%;
  }
}
@media (min-width: 600px) {
  footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-hobo {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 1.6em;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    width: 48%;
  }
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo a {
  display: flex;
  gap: 0.8em;
  align-items: center;
}
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: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 2.4rem;
}
@media (min-width: 600px) {
  footer .footer-share {
    grid-column: 1/3;
    gap: 2rem;
    margin-bottom: initial;
  }
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 4rem;
    grid-column: initial;
  }
}
footer .footer-share img {
  width: 4.4rem;
}
@media (min-width: 600px) {
  footer .footer-share img {
    width: 4.8rem;
  }
}
footer .footer-share li:first-child img {
  width: 5.6rem;
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40rem;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: currentColor;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.8em;
}

.home_menu svg {
  fill: #fff;
}
.home_menu #home_menu {
  margin-top: 0;
}
.home_menu .home_menu_item {
  font-size: 0.9em;
  line-height: 1.5;
}
.home_menu .home_menu_item .home_menu_item_text {
  font-size: 0.95em;
}
@media (min-width: 600px) {
  .home_menu .sp {
    display: none;
  }
}
.home_menu .pc {
  display: none;
}
@media (min-width: 600px) {
  .home_menu .pc {
    display: block;
  }
}
.home_menu .copyright {
  color: #fff;
  text-align: center;
  padding: 3.2rem;
}/*# sourceMappingURL=index.css.map */