:root {
  --text-color: #000000;
  --bg-color: rgba(255, 255, 255, 0.9);
  --footer-bg-color: #4a4a4a;
  --footer-text-color: #000000;
  --animation-duration: 1.6s;
  --animation-delay: 0.4s;
}

img {
  height: auto;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

.pc {
  display: none;
}

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

  .pc {
    display: block;
  }
}

@media screen and (max-width: 374px) {
  html {
    font-size: 4.27vw;
  }
}

body {
  font-weight: 400;
  font-family: "A1 Mincho";
  color: var(--text-color);
  opacity: 0;
  transition: opacity var(--animation-duration) var(--animation-delay);
}

body.is-loaded {
  opacity: 1;
}

.mv__title {
  opacity: 0;
  transition: opacity var(--animation-duration)
    calc(var(--animation-duration) + var(--animation-delay) + 0.2s);
}

body.is-loaded .mv__title {
  opacity: 1;
}

/* mv */
.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 100svh;
}

.mv__title {
  max-width: 16.375rem;
  aspect-ratio: 1.4;
}

@media screen and (min-width: 600px) {
  .mv__title {
    max-width: 17.3125rem;
  }
}

/* content */
.content {
  background: rgba(255, 255, 255, 0.9);
}

/* yodogawa */
.yodogawa {
  padding-block: 3.56rem 3rem;
}

.yodogawa__inner {
  display: grid;
  justify-content: center;
  padding-inline: 2.31rem;
}

.yodogawa__text {
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  line-break: strict;
}

.yodogawa__text p + p {
  margin-top: 2.2em;
}

.yodogawa__sale {
  margin-top: 2.62rem;
  font-size: 1.08631rem;
  line-height: 2.02775rem;
  letter-spacing: 0.11em;
}

.yodogawa__sale .date {
  font-size: 2.17263rem;
}

.yodogawa__sale .ja {
  font-size: 1.01388rem;
}

.yodogawa__buttons {
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin-top: 2.62rem;
}

.yodogawa__button {
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.8125rem;
  line-height: 2;
  /* font-feature-settings: "palt"; */
  color: var(--text-color);
  background: transparent;
  letter-spacing: 0.11em;
  border: 1px solid var(--text-color);
  transition: background-color 0.8s, color 0.8s;
}

.yodogawa__button span {
  letter-spacing: -0.09em;
}

@media screen and (min-width: 600px) {
  .yodogawa {
    padding-block: 7.44rem;
  }

  .yodogawa__text {
    font-size: 0.9375rem;
    line-height: 2.33;
  }

  .yodogawa__text p + p {
    margin-top: 2.33em;
  }
}

@media (hover: hover) {
  .yodogawa__button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
}

/* info */
.info {
  padding-block: 3.75rem;
}

.info__inner {
  display: grid;
  justify-content: center;
  padding-inline: 1rem;
}

.info__title {
  width: max-content;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.info__title::after {
  content: "";
  display: block;
  margin-top: 0.4rem;
  width: calc(100% - 0.8rem);
  height: 1px;
  background: var(--text-color);
}

.info__desc {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  line-height: 2.33;
  letter-spacing: 0.11em;
  line-break: strict;
}

.infoAccess {
  margin-top: 1.75rem;
}

.infoAccess + .infoAccess {
  margin-top: 1.8rem;
}

.infoAccess__title {
  font-size: 0.9375rem;
  line-height: 2.33;
  letter-spacing: 0.11em;
}

.infoAccess__text {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.11em;
  line-break: strict;
}

.infoAccess__text address {
  font-style: normal;
}

.infoAccess__buttons {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
  margin-top: 0.5rem;
}

.infoAccess__button {
  padding-inline: 0.38rem;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--text-color);
  transition: background-color 0.8s, color 0.8s;
}

@media screen and (min-width: 600px) {
  .info {
    padding-block: 5rem;
  }
}

@media (hover: hover) {
  .infoAccess__button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  transition: opacity 0.8s, visibility 0.8s;
  opacity: 0;
  visibility: hidden;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__layer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5.62rem 1.44rem 4.94rem;
  background: rgba(000, 000, 000, 0.2);
}

.modal__container {
  contain: layout;
  position: relative;
  display: flex;

  max-width: 38rem;
  width: 100%;
  max-height: 100%;
  background: #fff;
}

.modal__title {
  width: 7.3851rem;
  margin-inline: auto;
}

.modal__close {
  --button-size: 0.9375rem;
  --side-padding: 1.25rem;
  position: fixed;
  display: flex;
  top: calc((var(--button-size) + 0.3125rem) * -1);
  left: 0;
  justify-content: flex-end;
  width: 100%;
  height: var(--button-size);
}

.modal__close-button {
  display: block;
  padding: 0;
  background: none;
  border: none;
  width: var(--button-size);
}

.modal__close-button svg {
  width: 100%;
  height: auto;
}

.modal__content {
  display: grid;
  justify-content: center;
  width: 100%;
  padding: 4.4rem 1.25rem 3.74rem;
  overflow-y: auto;
  font-size: 0.9375rem;
  line-height: 2.33;
  letter-spacing: 0.11em;
}

/* bg */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg img,
.bg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer */
.footer {
  --text-color: #fff;

  padding-block: 4.06rem 3.19rem;
  background: var(--footer-bg-color);
}

.footer a {
  transition: opacity 0.8s;
}

@media (hover: hover) {
  .footer a:hover {
    opacity: 0.5;
  }
}

.footer__inner {
  padding-inline: 1.5rem;
}

.footerShare {
  display: flex;
  gap: 2.95rem;
  justify-content: center;
  align-items: center;
}

.footerShare__title {
  width: 2.73875rem;
}

.footerShare__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2.95rem;
  font-size: 2rem;
}

.footerContact {
  display: flex;
  justify-content: center;
  gap: 0.94rem;
  margin-top: 1.48rem;
}

.footerContact__link {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.footerContact__link--mail span {
  font-size: 1.01625rem;
}

.footerNav {
  margin-top: 3.16rem;
}

.footerNav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.footerCopy {
  width: 5.125rem;
  margin-top: 1.64rem;
  margin-inline: auto;
}

@media screen and (min-width: 600px) {
  .footer {
    padding-block: 5.83rem 4.65rem;
  }

  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 2.64rem;
  }

  .footerShare__list {
    gap: 2.5rem;
  }

  .footerContact {
    margin-top: 0;
  }

  .footerNav {
    width: 100%;
    margin-top: 1.34rem;
  }

  .footerNav__list {
    gap: 0.2rem 1.5rem;
  }

  .footerCopy {
    width: 5.125rem;
    margin-top: 2.75rem;
  }
}
