/* Setting
=========================================================== */
:root {
  --black: #000;
  --brown: #2B1811;
  --white: #fff;
  --red: #D91B3D;
  --yellow: #E7D487;
  --yellow-dark: #E8D28A;
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/common/fonts/notoserifjp/NotoSerifJP-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/common/fonts/notoserifjp/NotoSerifJP-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/common/fonts/cinzel/Cinzel-Bold.woff2") format("woff2");
}

.michael__container,
.michael__container button {
  font-family: "Noto Serif JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 85px;
}

a,
button {
  transition: all 0.3s ease-out;
}
a:hover {
  opacity: 0.6;
}

/* hero-area
=========================================================== */
.hero-area__box {
  position: relative;
  border-top: solid 12px var(--brown);
}

.hero-area__box-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-area__text {
  position: relative;
  text-align: center;
  max-width: fit-content;
  z-index: 1;
}

.hero-area__credit {
  position: relative;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  &::before,
  &::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--white);
    min-width: 30px;
  }
}

.hero-area__title img {
  max-height: 227px;
  width: 100%;
  object-fit: contain;
}

.hero-area__logo {
  width: fit-content;
  margin: 0 -44px 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
 img {
  width: auto;
  max-height: 50px;
  object-fit: contain;
 }
 .hero-area__logo-cross {
  max-width: 12px;
  max-height: 12px;
  object-fit: contain;
 }
}

.hero-area__catch {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.7;
  color: var(--white);
  margin: 14px 0;
  span {
    color: var(--yellow-dark);
  }
}

.hero-area__date {
  font-family: "cinzel", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow-dark);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 24px;
  border-top: solid 1px var(--yellow-dark);
  border-bottom: solid 1px var(--yellow-dark);
  span {
    color: var(--white);
    margin: 0 20px;
  }
}

.hero-area__line {
  background-color: #45261A;
  color: var(--yellow-dark);
  font-size: 1.3rem;
  padding: 10px 0;
  overflow: hidden;
  border-top: solid 1px var(--yellow);
  border-bottom: solid 1px var(--yellow);
}

.hero-area__line .splide__slide {
  font-family: "cinzel", sans-serif;
  font-weight: 700;
  width: auto;
  letter-spacing: 7px;
  flex-shrink: 0;
  white-space: nowrap;
  &::after {
    display: inline-block;
    content: '★';
    font-size: 18px;
    margin-left: 32px;
  }
}

.followus {
  position: fixed;
  top: 0;
  z-index: 1002;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

/* cinema-navigation
=========================================================== */
.cinema-navigation {
  position: relative;
  z-index: 1001;
  background-color: var(--white);
  border-bottom: solid 1px var(--yellow);
  &.is-fixed {
    position: sticky;
    top: 0;
  }
}

.cinema-navigation__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
}

.cinema-navigation__item {
  min-width: 230px;
  text-align: center;
  border-right: solid 1px var(--yellow);
  a {
    display: block;
    width: 100%;
    padding: 17px 50px;
  }
  span {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
  }
  span::after {
    content: '▲';
    display: inline-block;
    margin-top: -3px;
    transform: rotate(60deg);
    transition: all 0.3s ease-out;
  }
  &:first-of-type {
    border-left: solid 1px var(--yellow);
  }
}

.cinema-navigation__item a:hover {
  opacity: 1;
  background-color: var(--black);
  color: var(--white);
  span::after {
    margin-top: 0px;
    transform: rotate(90deg);
  }
}

/* cinema-tab
=========================================================== */
.cinema-tab {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  margin: 0 auto 24px;
  width: fit-content;
}

.cinema-tab__button {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 50px;
  background: inherit;
  color: var(--black);
  text-align: center;
  padding: 10px 50px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 25px;
  cursor: pointer;
  &:hover {
    background: var(--black);
    color: var(--white);
  }
}

.cinema-tab__button.is-active {
  background: var(--black);
  color: var(--white);
  pointer-events: none;
  cursor: not-allowed;
}

/* article-section
=========================================================== */
.article-section {
  padding: 60px 0 225px;
  background-image: url("/common/images/bunshun/v1/cinema/michael/bg_contents.webp");
}

.article-section__title {
  text-align: center;
  margin-bottom: 30px;
  img {
    max-height: 36px;
    width: auto;
  }
}

.more-btn {
  text-align: center;
  font-weight: 700;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: var(--white);
  color: var(--black);
  border: solid 1px var(--black);
  transition: all 0.3s ease-out;
}

.more-btn::after {
  content: '';
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  margin: -2px 0 0 8px;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid var(--black);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.more-error {
  display: none;
  font-weight: normal;
  text-align: center;
}

/* movie-introduction
=========================================================== */
.movie-introduction {
  position: relative;
  background: url("/common/images/bunshun/v1/cinema/michael/bg_contents2.webp") center top / cover no-repeat;
  background-color: #39180A;
  margin-top: -225px;
  padding: 225px 0 0;
  clip-path: polygon(0 225px,
        100% 0,
        100% 100%,
        0 100%);
}

/* movie-introduction__summary
=========================================================== */
.movie-introduction__summary h2 {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1;
  img {
    max-height: 36px;
    width: auto;
  }
}

.movie-introduction__summary-content {
  display: flex;
  max-width: 1036px;
  margin: 0 auto;
  gap: 30px;
  img {
    max-width: 446px;
    height: auto;
    object-fit: cover;
  }
  p {
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* movie-introduction__banner
=========================================================== */
.movie-introduction__banner {
  max-width: 1036px;
  margin: 40px auto;
  img {
    display: block;
  }
}

/* movie-introduction__gallery
=========================================================== */
.movie-introduction__gallery {
  width: 100%;
  margin-bottom: 60px;
  overflow: hidden;
}

.movie-introduction__gallery .splide__slide {
  margin: 0;
  a {
    display: block;
    width: auto;
    height: 100%;
  }
  img{
    display: block;
    object-fit: cover;
    width: auto;
    height: 100%;
  }
}

/* movie-introduction__book
=========================================================== */
.movie-introduction__book {
  max-width: 1036px;
  margin: 0 auto 70px;
  padding: 1px 0 28px;
  text-align: center;
  border: solid 1px var(--white);
  border-top: none;
}

.movie-introduction__book h2 {
  position: relative;
  margin: -18px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  img {
    max-height: 36px;
    width: auto;
  }
}

.movie-introduction__book h2::before,
.movie-introduction__book h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--white);
  min-width: 40px;
}

.movie-introduction__book-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.movie-introduction__book-subtitle {
  color: var(--white);
  font-size: 2.6rem;
}

.movie-introduction__book-lead {
  color: var(--yellow);
  font-size: 2.2rem;
  margin-top: 5px;
  z-index: 1;
  position: relative;
}

.movie-introduction__book-icon {
  position: absolute;
  bottom: 4px;
  left: 23px;
  max-width: 76px;
  height: auto;
  object-fit: contain;
  transform: translateX(-100%) rotate(-15deg);
  z-index: 0;
}

.movie-introduction__book-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 18px auto 21px;
  img {
    max-width: 260px;
    height: auto;
    object-fit: contain;
  }
}

.movie-introduction__book-note {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.6;
}

/* amazon-section
=========================================================== */
.amazon-section {
  position: relative;
  overflow: hidden;
  background-color: var(--brown);
}

.amazon-area {
  position: relative;
  background: rgba(225, 225, 225, 0.2);
}

.amazon-box-img img {
  width: 100%;
  height: auto;
  margin: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  display: block;
}

.amazon-book-date {
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.amazon-book-title,
.amazon-book-price {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--white);
}

.amazon-book-price {
  font-size: 1.6rem;
}

.amazon-inner-box-button {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: bold;
  border: 1px solid var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-out;
}

.amazon-inner-box-button:hover {
  color: var(--white) !important;
  background: var(--black) !important;
}

.amazon-section-txtround {
  position: absolute;
  left: 0;
  right: 0;
  background: url(/common/images/bunshun/v1/cinema/txtround.webp) 50% 0 no-repeat;
  background-size: cover;
  animation: 100s linear infinite bgcnca;
  opacity: 0.2;
}

@keyframes bgcnca {
  100% {
    transform: rotate(0deg);
  }

  0% {
    transform: rotate(360deg);
  }
}