@charset "UTF-8";
.anime__header {
  position: relative;
  background-image: url(../img/anime-bg.jpg);
  background-size: cover;
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 430px) {
  .anime__header {
    height: 240px;
    margin-bottom: 40px;
  }
}
.anime__header p {
  max-width: 350px;
  width: 30%;
  position: relative;
}
.anime__header p::before {
  position: absolute;
  left: -430px;
  top: -20px;
  content: "";
  z-index: 10;
  background-image: url(../img/anime-company.png);
  width: 430px;
  height: 106px;
  background-size: cover;
}
@media only screen and (max-width: 430px) {
  .anime__header p::before {
    left: -100px;
    top: -40px;
    width: 200px;
    height: 49px;
  }
}
.anime__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.anime__link__inner {
  position: relative;
  width: 90vw;
  max-width: 860px;
  aspect-ratio: 860/820;
  background-image: url(../img/anime-link.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.anime__link__inner p {
  width: 25%;
}
.anime__link__inner__btn1, .anime__link__inner__btn2, .anime__link__inner__btn3, .anime__link__inner__btn4 {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
}
.anime__link__inner__btn1:hover, .anime__link__inner__btn2:hover, .anime__link__inner__btn3:hover, .anime__link__inner__btn4:hover {
  -webkit-transform: translateY(0) scale(1.08);
          transform: translateY(0) scale(1.08);
}
.anime__link__inner__btn--show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.anime__link__inner__btn1 {
  position: absolute;
  left: 10.5%;
  top: 10.5%;
}
.anime__link__inner__btn2 {
  position: absolute;
  right: 10.5%;
  top: 10.5%;
}
.anime__link__inner__btn3 {
  position: absolute;
  left: 10.5%;
  bottom: 5.5%;
}
.anime__link__inner__btn4 {
  position: absolute;
  right: 10.5%;
  bottom: 5.5%;
}
.anime .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}
.anime .modal__content {
  position: absolute;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 20px 40px 40px;
  width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 760px;
  border-radius: 16px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content {
    padding: 40px 0 20px 20px;
  }
}
.anime .modal__content__inner {
  padding-right: 20px;
  max-width: 660px;
  max-height: 80vh;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* ===== スクロールバー全体 ===== */
}
.anime .modal__content__inner {
  /* ===== スクロールバーの背景 ===== */
}
.anime .modal__content__inner::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 8px;
}
.anime .modal__content__inner {
  /* ===== スクロールバーのつまみ部分 ===== */
}
.anime .modal__content__inner::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 8px;
}
.anime .modal__content__inner {
  /* ===== ホバー時に少し明るく ===== */
}
.anime .modal__content__inner::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.anime .modal__content__inner {
  /* ===== Firefox用 ===== */
  scrollbar-width: thin;
  scrollbar-color: #666 #1a1a1a;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner {
    row-gap: 16px;
  }
}
.anime .modal__content__inner__human {
  overflow: visible;
  padding-top: 70px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human {
    margin-bottom: 0px;
  }
}
.anime .modal__content__inner__human__content {
  background-color: var(--color-blue-vivid);
  color: var(--color-black);
  border-radius: 16px;
  padding: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 50;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content {
    padding: 20px;
    border-radius: 12px;
  }
}
.anime .modal__content__inner__human__content p {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content p {
    width: 140px;
  }
}
.anime .modal__content__inner__human__content p span {
  position: absolute;
  bottom: -29px;
  left: 8px;
  z-index: 999;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content p span {
    bottom: -21px;
    left: 0;
  }
}
.anime .modal__content__inner__human__content p span img {
  max-width: 150px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content p span img {
    max-width: 120px;
  }
}
.anime .modal__content__inner__human__content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}
.anime .modal__content__inner__human__content dl dt {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__human__content dl dt {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content dl dt {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.anime .modal__content__inner__human__content dl dt {
  font-weight: 600;
}
.anime .modal__content__inner__human__content dl dd {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__human__content dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__human__content dl dd {
    font-size: 14px;
  }
}
.anime .modal__content__inner__title {
  font-size: 24px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__title {
    font-size: 18px;
  }
}
.anime .modal__content__inner__title {
  font-weight: 600;
  margin-bottom: 24px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__title {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 768px) {
  .anime .modal__content__inner__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 430px) {
  .anime .modal__content__inner__title {
    font-size: 18px;
  }
}
.anime .modal__content__inner__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
.anime .modal__content__inner__header p:nth-of-type(1) {
  width: 100px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__header p:nth-of-type(1) {
    width: 60px;
  }
}
.anime .modal__content__inner__header p:nth-of-type(2) {
  font-size: 28px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__header p:nth-of-type(2) {
    font-size: 24px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__header p:nth-of-type(2) {
    font-size: 20px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__header {
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.anime .modal__content__inner__photo {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__photo {
    width: 100%;
    margin-bottom: 0;
  }
}
.anime .modal__content__inner__photo img {
  max-height: 252px;
}
.anime .modal__content__inner__photo__list {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.anime .modal__content__inner__photo__list.stuff {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.anime .modal__content__inner__photo__list--first {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  max-width: 290px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__photo__list--first {
    max-width: 200px;
  }
}
.anime .modal__content__inner__photo__list--second {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.anime .modal__content__inner__photo__list--second2 {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.anime .modal__content__inner__photo__list--second2 li {
  float: left;
}
.anime .modal__content__inner__photo__list--second2 li:first-child {
  margin-right: 20px;
}
.anime .modal__content__inner__photo__list--second2 img {
  max-height: 200px;
}
.anime .modal__content__inner__photo__list--third {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.anime .modal__content__inner__photo .copyright {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__photo .copyright {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__photo .copyright {
    font-size: 10px;
  }
}
.anime .modal__content__inner__glid {
  display: -ms-grid;
  display: grid;
  max-width: 660px;
  width: 100%;
  gap: 16px; /* 余白 */
  margin: 0 auto 20px;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__glid {
    gap: 8px;
    margin: 0 auto 0px;
  }
}
.anime .modal__content__inner__glid p {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__glid p {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__glid p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.anime .modal__content__inner__glid p {
  font-weight: 600;
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__glid p {
    padding: 12px;
  }
}
.anime .modal__content__inner__glid--first {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr); /* 上段3列 */
  /* --- 下段(4・5番目)を2列に --- */
}
.anime .modal__content__inner__glid--first p:nth-child(4) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3; /* 左2列 */
}
.anime .modal__content__inner__glid--first p:nth-child(5) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4; /* 右1列 */
}
.anime .modal__content__inner__glid--second {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr); /* 上段3列 */
}
.anime .modal__content__inner__glid--third {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr); /* 上段3列 */
}
.anime .modal__content__inner__text {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .anime .modal__content__inner__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 430px) {
  .anime .modal__content__inner__text {
    font-size: 15px;
    line-height: 1.8;
  }
}
.anime .modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  cursor: pointer;
  max-width: 36px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 430px) {
  .anime .modal__close {
    max-width: 24px;
  }
}
.anime__container {
  width: 1024px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .anime__container {
    width: 90%;
  }
}
@media only screen and (max-width: 430px) {
  .anime__container {
    padding-top: 0;
  }
}
.anime__container__inner {
  width: 860px;
  margin: 0 auto;
}
@media only screen and (max-width: 860px) {
  .anime__container__inner {
    width: 100%;
  }
}
.anime__possible {
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
  width: 100%;
  min-height: 150px;
  gap: 24px;
  margin: 0 auto 60px;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 430px) {
  .anime__possible {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    min-height: auto;
    margin: 0 auto 40px;
    gap: 32px;
  }
}
.anime__possible a {
  border-radius: 16px;
  background-color: var(--color-blue-vivid);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  text-decoration: none;
  color: var(--color-black);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 5px 5px 0px -2px var(--color-red);
          box-shadow: 5px 5px 0px -2px var(--color-red);
}
@media only screen and (max-width: 430px) {
  .anime__possible a {
    min-height: 150px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.anime__possible a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.anime__possible a p {
  width: 120px;
  position: relative;
}
.anime__possible a p img {
  position: absolute;
  bottom: 0;
  left: 8px;
}
.anime__possible a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.anime__possible a dl dt {
  font-size: 12px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .anime__possible a dl dt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 430px) {
  .anime__possible a dl dt {
    font-size: 10px;
  }
}
.anime__possible a dl dt {
  font-weight: 600;
  margin-bottom: 4px;
}
.anime__possible a dl dd {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .anime__possible a dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .anime__possible a dl dd {
    font-size: 14px;
  }
}
.anime__possible a dl dd {
  line-height: 1.4;
}