/** @format */
/** @format */
/** @format */
/** @format */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #101010;
  font-family: "Shippori Antique B1", "Noto Sans JP", sans-serif;
  background: #f2f0e7;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.js-fadein {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/** @format */
/** @format */
.kizumono {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: url("../images/bg_all.webp") repeat-y center top;
  background-size: 100vw auto;
}

.kizumono__inner {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 28px 18px 48px;
  text-align: center;
  background: rgba(254, 237, 200, 0.5);
}
@media (max-width: 767px) {
  .kizumono__inner {
    width: min(430px, 100%);
    padding-inline: 16px;
  }
}

.hero {
  padding-top: 40px;
}
.hero__kv {
  width: min(820px, 100%);
  margin: 0 auto;
}
.hero__lead {
  width: min(620px, 92%);
  margin: 0 auto 22px;
}
.hero__main {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: start;
  gap: 10px;
  margin: 0 auto 22px;
}
.hero__title {
  margin: 0 1rem;
}
.hero__copy {
  margin: 0 auto;
  width: 12rem;
}
.hero__copy--left, .hero__copy--right {
  padding-top: 80px;
}
.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 10px;
  }
  .hero__kv {
    width: min(380px, 100%);
  }
  .hero__lead {
    width: 88%;
    margin-bottom: 30px;
  }
  .hero .hero__copy--left {
    width: 70%;
    justify-self: end;
  }
  .hero .hero__copy--right {
    width: 100%;
    justify-self: start;
  }
  .hero__copy--left, .hero__copy--right {
    padding-top: 0;
  }
  .hero .hero__title {
    width: 90%;
  }
  .hero__main {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    gap: 2px;
    align-items: center;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
  }
  .hero__buttons .btn {
    width: 220px;
  }
  .hero__title {
    width: 100%;
  }
}

.btn {
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 32px;
  margin: 1rem;
  padding: 0.2em 1.2em;
  font-size: 1.8rem;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.btn--dark {
  color: #fff;
  background: #101010;
}

.marquee {
  width: 100vw;
  margin: 20px calc(50% - 50vw);
  overflow: hidden;
  background: #101010;
  color: #f8f1d9;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  padding: 0.5rem 0;
}
.marquee__track {
  display: inline-flex;
  min-width: max-content;
  animation: marquee-left 22s linear infinite;
}
.marquee--reverse .marquee__track {
  animation-duration: 26s;
}

.story {
  padding: 34px 0 28px;
}
.story .section-title {
  width: 296px;
  margin: 0 auto 20px;
}
.story__body {
  width: min(510px, 92%);
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}
.story p {
  margin: 0 0 1.2em;
}
@media (max-width: 767px) {
  .story .section-title {
    width: 60%;
    margin: 0 auto 20px;
  }
  .story__body {
    width: min(410px, 92%);
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
  }
  .story p {
    margin: 0 0 1.6em;
  }
}

.items {
  padding: 28px 0 34px;
  margin: 0 auto;
}
.items__stage {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.items__item {
  position: static;
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  margin: auto;
}
.items__item--01, .items__item--02 {
  display: none;
}
.items__item--03, .items__item--04 {
  width: 100%;
  margin: 1rem auto;
  max-width: 420px;
}
@media (max-width: 767px) {
  .items__stage {
    max-width: 330px;
  }
  .items__item--03, .items__item--04 {
    max-width: 300px;
  }
}

.items.is-show .items__item--03,
.items.is-show .items__item--04 {
  animation: pop-in 0.75s cubic-bezier(0.2, 1.35, 0.35, 1) forwards;
}
.items.is-show .items__item--03 {
  animation-delay: 0s;
}
.items.is-show .items__item--04 {
  animation-delay: 0.5s;
}

.author {
  width: min(460px, 82%);
  margin: 48px auto 48px;
}

.bookshop {
  padding: 34px 0 28px;
}
.bookshop__lead {
  margin: 0 0 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.bookshop__title {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0.15em 1.3em;
  color: #fff;
  background: #101010;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.bookshop__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(650px, 90%);
  margin: 0 auto;
}
.bookshop__list a {
  display: block;
  padding: 0.55em 0.8em;
  color: #fff;
  background: #101010;
  font-size: 1.6rem;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bookshop__list a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
@media (max-width: 767px) {
  .bookshop__lead {
    margin: 0 0 16px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .bookshop__title {
    display: inline-block;
    margin: 0 0 12px;
    padding: 0.15em 1.3em;
    color: #fff;
    background: #101010;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
  .bookshop__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 8px;
    width: min(450px, 90%);
    margin: 0 auto;
  }
  .bookshop__list a {
    display: block;
    padding: 0.55em 0.8em;
    color: #fff;
    background: #101010;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .bookshop__list a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
  }
}

.sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 44px;
  font-size: 1.6rem;
}
.sns p {
  margin: 0;
}
.sns a {
  display: grid;
  place-items: center;
  width: 100px;
  color: #fff;
  background: #101010;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .sns {
    font-size: 1.2rem;
  }
}

.footer {
  padding-bottom: 12px;
}
.footer__logo {
  width: 60%;
  margin: 2rem auto 8px;
}
.footer__logo__sgk {
  width: 14%;
  margin: 2rem auto 8px;
}
.footer__date, .footer__copyright {
  margin: 3rem auto;
  font-size: 12px;
  line-height: 1.6;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pop-in-center {
  0% {
    opacity: 0;
    transform: translate(-50%, 18px) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -4px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
/** @format */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96) rotate(-1deg);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}
.items__item--03,
.items__item--04 {
  transform: translateY(18px) scale(0.96);
}

.items.is-show .items__item--03,
.items.is-show .items__item--04 {
  animation-name: pop-in;
}

@keyframes pop-in-center {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96) rotate(-1deg);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}
.js-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}/*# sourceMappingURL=style.css.map */