@charset "UTF-8";
/*
Theme Name: TVアニメ「ガングリオン」
Description: TVアニメ「ガングリオン」用のテンプレートです
Version: 1.0
Author: M.KANESHIRO
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Dela+Gothic+One&family=Oswald:wght@200..700&family=RocknRoll+One&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@font-face {
  font-family: "TanukiMagic";
  src: url(font/TanukiMagic.woff) format("woff"); /* フォントファイルのパスとフォーマットを指定 */
}
html {
  height: 100%;
}

body {
  min-height: 100%;
}

body {
  position: relative;
  min-width: 1280px;
  overflow-x: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  scrollbar-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body {
    width: auto;
    min-width: 0;
  }
}

main {
  width: 100%;
}

.btn {
  display: block;
  width: 280px;
  border-radius: 5px;
  border: 2px solid #A61616;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 200px;
  }
}
.btn a {
  display: block;
  text-decoration: none;
  padding: 10px 40px;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 10px 20px;
  }
}
.btn span {
  display: block;
  font-family: "Dela Gothic One";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
  color: #C20101;
}
@media screen and (max-width: 767px) {
  .btn span {
    font-size: 16px;
  }
}

.btn::after {
  background: #A61616;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.btn:hover {
  color: #A61616;
}
.btn:hover span {
  color: #ffffff;
}

.btn:hover::after {
  transform: scale(1, 1);
}

.nav-x {
  width: 180px;
  margin: 0 auto;
  position: relative;
  border-radius: 5px;
}

.nav-x a {
  display: block;
  border: 1px solid #ffffff;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  font-family: "Changa One";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 5px;
}
.nav-x a span {
  display: inline-block;
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(img/X-logo.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.nav-x a::before {
  background: #A61616;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  border-radius: 5px;
}

.nav-x a:hover::before {
  transform: scale(1, 1);
}

.nav-x-fotter {
  width: 180px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 30px;
}

.nav-x-fotter a {
  display: block;
  border: 1px solid #ffffff;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  font-family: "Changa One";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 5px;
}
.nav-x-fotter a span {
  display: inline-block;
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(img/X-logo.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.nav-x-fotter a::before {
  background: #1D1D1D;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.nav-x-fotter a:hover::before {
  transform: scale(1, 1);
}

.fade-in-up {
  opacity: 0; /* 初期状態では非表示 */
  transform: translateY(150px); /* 下から50pxの位置から開始 */
  transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーション効果 */
}

.fade-in-up.is-visible {
  opacity: 1; /* 画面内に入ったら表示 */
  transform: translateY(0); /* 元の位置に移動 */
}

.contentsWrap {
  min-width: 1280px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contentsWrap {
    width: auto;
    min-width: 0;
  }
}

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

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

.nav-pc {
  width: 320px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1500;
  overflow-y: auto;
  background-color: #1D1D1D;
}
@media screen and (max-width: 767px) {
  .nav-pc {
    display: none;
  }
}
.nav-pc .nav-title {
  background-color: #ffffff;
  text-align: center;
}
.nav-pc .nav-title h1 {
  transform: scale(1, 1);
  transition: 0.3s;
}
.nav-pc .nav-title h1 img {
  width: 220px;
  margin: 30px auto;
}
.nav-pc .nav-title h1 img:hover {
  transform: scale(1.2, 1.2);
}
.nav-pc ul {
  color: #ffffff;
  text-align: center;
  font-family: "Changa One";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}
.nav-pc ul span {
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
}
.nav-pc ul li {
  margin: 20px auto;
  width: 120px;
  height: 50px;
  transition: all 0.3s;
}
.nav-pc ul li:hover {
  color: #FFFEAD;
  cursor: pointer;
}
.nav-pc ul li a {
  text-decoration: none;
  color: #ffffff;
}
.nav-pc ul li a:hover {
  text-decoration: none;
  color: #FFFEAD;
}
.nav-pc ul li a:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: 33px;
  background: url(img/nav-icon.svg) no-repeat center center/contain;
  display: block;
  padding: -5px;
  left: 60px;
  transform: scale(0, 0);
  transition: 0.2s;
}
.nav-pc ul li a:hover::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: 33px;
  background: url(img/nav-icon.svg) no-repeat center center/contain;
  display: block;
  padding: -5px;
  left: 60px;
  transform: scale(1, 1);
}

#menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000000;
}

#menu-conts {
  display: none;
  background-color: rgb(29, 29, 29);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
}

.nav-sp .nav-title {
  background-color: #ffffff;
  text-align: center;
}
.nav-sp .nav-title img {
  margin: 20px auto;
}
.nav-sp ul {
  text-align: center;
  font-family: "Changa One";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  transition: all 0.5s ease;
}
.nav-sp ul span {
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
}
.nav-sp ul li {
  margin: 20px auto;
  width: 120px;
  height: 50px;
  transition: all 0.3s;
}
.nav-sp ul li a {
  color: #ffffff;
  text-decoration: none;
}
.nav-sp ul li a:hover {
  color: #FFFEAD;
  cursor: pointer;
}

.contentsWrap-pc {
  padding-left: 320px;
}
@media screen and (max-width: 767px) {
  .contentsWrap-pc {
    padding-left: 0px;
  }
}

.home-kv-inner {
  text-align: center;
}
.home-kv-inner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.home-main-news {
  background: url(img/bg_mizutama.png);
  background-size: cover;
}
@media screen and (max-width: 440px) {
  .home-main-news {
    background: url(img/bg_mizutama_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1440px) {
  .home-main-news {
    background-size: contain;
  }
}

.home-main-logo {
  width: 70%;
  margin: 0px auto 40px;
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .home-main-logo {
    padding-top: 30px;
  }
}
.home-main-logo img {
  width: 100%;
}
.home-main-text {
  width: 70%;
  margin: 60px auto 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-main-text img {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .home-main-text {
    margin: 30px auto 60px;
  }
}

.home-news {
  padding-bottom: 60px;
}
@media screen and (max-width: 440px) {
  .home-news {
    padding-bottom: 0px;
  }
}

.home-news-inner {
  border-radius: 20px;
  border: 2px solid #C20101;
  background: #ffffff;
  position: relative;
  width: 86%;
  margin: 0 auto;
}
.home-news-inner h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 15px;
  top: -20px !important;
}
@media screen and (max-width: 767px) {
  .home-news-inner h2 {
    font-size: 32px;
  }
}
.home-news-inner h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
}
@media screen and (max-width: 767px) {
  .home-news-inner h2 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home-news-inner h2 {
    width: 190px;
    padding: 0px;
  }
}
.home-news-inner ul {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: flex-start;
  margin: 80px auto 30px;
}
@media screen and (max-width: 767px) {
  .home-news-inner ul {
    margin: 60px auto 30px;
  }
}
.home-news-inner ul li {
  margin: 0 auto;
  border-top: 0.5px solid #333333;
  width: 100%;
}
.home-news-inner ul li a {
  display: block;
  padding: 15px auto;
  text-decoration: none;
  color: #333333;
  cursor: pointer;
  transition: 0.3s;
}
.home-news-inner ul li a .text {
  padding: 15px 0px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .home-news-inner ul li a .text {
    display: block;
  }
}
.home-news-inner ul li a .text time {
  width: 100px;
  font-family: "Oswald";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #C20101;
}
.home-news-inner ul li:hover a {
  color: #C20101;
}
.home-news-inner ul li:nth-child(3) {
  border-bottom: 0.5px solid #333333;
}

.home-intro-chara {
  padding-bottom: 120px;
  background: linear-gradient(180deg, rgb(180, 12, 12), rgb(194, 1, 1), rgb(248, 188, 68), rgb(255, 255, 255));
}
@media screen and (max-width: 767px) {
  .home-intro-chara {
    padding-bottom: 60px;
  }
}
.home-intro-chara h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  margin: 0px auto 30px;
  -webkit-text-stroke-width: 1.5px;
}
@media screen and (max-width: 767px) {
  .home-intro-chara h2 {
    font-size: 32px;
  }
}
.home-intro-chara h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .home-intro-chara h2 p {
    font-size: 16px;
  }
}
.home-intro-chara .home-introdution {
  background: url(../img/bg_bakuhatsu.png);
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-intro-chara .home-introdution {
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 50%;
  }
}
.home-intro-chara .home-introdution-text {
  text-align: center;
}
.home-intro-chara .home-introdution-text img {
  width: 80%;
}
.home-intro-chara .home-introdution-deco {
  width: 80%;
  margin: 0 auto;
}
.home-intro-chara .home-introdution-deco img {
  width: 100%;
}
.home-intro-chara .home-introdution-text::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 35%;
  background-image: 33px;
  background: url(img/intoro_deco_1.png) no-repeat center center/contain;
  display: block;
  top: 10%;
  left: 5%;
  animation: zoomIn 1s infinite alternate forwards running;
}
@media screen and (max-width: 767px) {
  .home-intro-chara .home-introdution-text::before {
    width: 20%;
    height: 25%;
    top: -10%;
    left: 5%;
  }
}
@media screen and (max-width: 580px) {
  .home-intro-chara .home-introdution-text::before {
    width: 25%;
    height: 50%;
    top: -13%;
    left: -2%;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}
.home-intro-chara .home-introdution-text::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 60%;
  background: url(img/intoro_deco_2.png) no-repeat center center/contain;
  display: block;
  bottom: -10%;
  right: 0%;
  background-position-x: 160%;
  z-index: 9000;
  animation: bounce 2s infinite alternate forwards running;
}
@media screen and (max-width: 767px) {
  .home-intro-chara .home-introdution-text::after {
    width: 90%;
    height: 40%;
    background-position-x: 128%;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.home-intro-chara .home-character {
  background: url(img/bg_pachi.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-intro-chara .home-character {
    background-size: contain;
  }
}
.home-intro-chara .home-character-inner {
  border-radius: 20px;
  border: 2px solid #FFFEAD;
  background: #FFF;
  width: 86%;
  margin: 0 auto;
}
.home-intro-chara .home-character-inner h2 {
  margin-top: 60px;
  color: #C20101;
}
@media screen and (max-width: 767px) {
  .home-intro-chara .home-character-inner h2 {
    margin-top: 0px;
  }
}
.home-intro-chara .home-character-inner p {
  -webkit-text-stroke-color: #C20101;
}
.home-intro-chara .home-character-inner-all {
  width: 100%;
  text-align: center;
}
.home-intro-chara .home-character-inner-all img {
  width: 90%;
}
.home-intro-chara .home-character-inner .btn {
  margin: 40px auto 60px;
}

.home-staff-cast {
  background: url(img/bg_night.svg);
  background-size: cover;
}
.home-staff-cast h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  -webkit-text-stroke-width: 1.5px;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .home-staff-cast h2 {
    font-size: 32px;
  }
}
.home-staff-cast h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .home-staff-cast h2 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home-staff-cast h2 {
    padding-top: 60px;
  }
}

.home-staff ul {
  text-align: center;
  width: 86%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .home-staff ul {
    width: 100%;
  }
}
.home-staff ul li {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .home-staff ul li {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.home-staff ul p {
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 0px 30px;
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .home-staff ul p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.home-staff ul span {
  display: block;
  color: #FFFEAD;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .home-staff ul span {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .home-staff ul .sp-width {
    width: 130px;
  }
}
.home-staff ul .sp-width-2 {
  line-height: 1.2;
}

.home-cast ul {
  text-align: center;
  width: 86%;
  margin: 0 auto;
  padding-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .home-cast ul {
    padding-bottom: 60px;
  }
}
.home-cast ul li {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  position: relative;
}
.home-cast ul li:nth-child(1) {
  width: 100%;
}
.home-cast ul li:nth-child(2) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(2) {
    width: 50%;
  }
}
.home-cast ul li:nth-child(3) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(3) {
    width: 50%;
  }
}
.home-cast ul li:nth-child(4) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(4) {
    width: 50%;
  }
}
.home-cast ul li:nth-child(5) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(5) {
    width: 50%;
  }
}
.home-cast ul li:nth-child(6) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(6) {
    width: 50%;
  }
}
.home-cast ul li:nth-child(7) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .home-cast ul li:nth-child(7) {
    width: 50%;
  }
}
.home-cast ul p {
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 0px 30px;
  line-height: 0.8;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .home-cast ul p {
    font-size: 16px;
  }
}
@media screen and (max-width: 440px) {
  .home-cast ul p {
    font-size: 16px;
    width: 150px;
  }
}
.home-cast ul span {
  display: block;
  color: #FFFEAD;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .home-cast ul span {
    font-size: 14px;
  }
}
.home-cast ul p::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(img/cast_fukidashi.png) no-repeat center center/contain;
  display: block;
  top: 20px;
  margin-left: 60%;
}
@media screen and (max-width: 767px) {
  .home-cast ul p::after {
    top: 5px;
  }
}
.home-cast ul .cast-main::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(img/cast_fukidashi.png) no-repeat center center/contain;
  display: block;
  top: 20px;
  margin-left: 203px;
}
@media screen and (max-width: 767px) {
  .home-cast ul .cast-main::after {
    top: 5px;
  }
}
@media screen and (min-width: 1281px) {
  .home-cast ul .cast-main::after {
    margin-left: 210px;
  }
}
@media screen and (max-width: 440px) {
  .home-cast ul .cast-main::after {
    margin-left: 120px;
  }
}

footer {
  background-color: #A61616;
  position: relative;
  z-index: 5000;
  padding: 30px 0px 10px;
}
@media screen and (max-width: 767px) {
  footer {
    height: 30%;
  }
}
footer .fotter-logo {
  text-align: center;
  border-bottom: 0.5px solid #ffffff;
}
@media screen and (max-width: 767px) {
  footer .fotter-logo {
    border-bottom: none;
  }
}
footer .fotter-logo img {
  width: 30%;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .fotter-logo img {
    width: 90%;
  }
}
footer .fotter-text {
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .fotter-text {
    display: block;
  }
}
footer .fotter-text small {
  text-align: center;
  display: block;
  margin-top: 20px;
}
footer .fotter-text small a {
  text-decoration: none;
  color: #ffffff;
}
footer .fotter-text small a:hover {
  color: #1D1D1D;
}

@media screen and (max-width: 767px) {
  .fotter-inner {
    border-bottom: 0.5px solid #ffffff;
  }
}

.inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

/* モーダルを開くボタン */
.modal__trigger {
  cursor: pointer;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 1000px);
  height: calc(100% - 40px);
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 40px 20px 20px;
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
}

.modal__close:hover {
  opacity: 0.6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal__content {
  width: 90%;
  margin-top: 30px;
}
.modal__content img {
  width: 100%;
}

.newspage {
  background-image: url(img/bg_page.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1000px;
}
/* @media screen and (max-width: 440px) {
  .newspage {
    background-size: contain;
  }
} */

@media screen and (max-width: 640px) {
  .newspage {
    padding-bottom: 0px;
  }
}
.newspage h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .newspage h2 {
    font-size: 32px;
  }
}
.newspage h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .newspage h2 p {
    font-size: 16px;
  }
}

.newspage-wrap {
  background-image: url(img/bg_pachi.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .newspage-wrap {
    background-size: contain;
  }
}

.newspage-inner {
  border-radius: 20px;
  border: 2px solid #C20101;
  background: #ffffff;
  position: relative;
  width: 86%;
  margin: 0 auto 60px;
}
.newspage-inner ul {
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: flex-start;
  margin: 80px auto 30px;
}
@media screen and (max-width: 767px) {
  .newspage-inner ul {
    margin: 60px auto 30px;
  }
}
.newspage-inner ul li {
  margin: 0 auto;
  border-top: 0.5px solid #333333;
  width: 100%;
}
.newspage-inner ul li a {
  display: block;
  padding: 15px auto;
  text-decoration: none;
  color: #333333;
  cursor: pointer;
  transition: 0.3s;
}
.newspage-inner ul li a .text {
  padding: 15px 0px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .newspage-inner ul li a .text {
    display: block;
  }
}
.newspage-inner ul li a .text time {
  width: 100px;
  font-family: "Oswald";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #C20101;
}
.newspage-inner ul li:hover a {
  color: #C20101;
}
.newspage-inner ul li:last-child {
  border-bottom: 0.5px solid #333333;
}

.newspage-single {
  background-image: url(img/bg_page.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1000px;
}
@media screen and (max-width: 440px) {
  .newspage-single {
    padding-bottom: 0px;
  }
}
.newspage-single h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .newspage-single h2 {
    font-size: 32px;
  }
}
.newspage-single h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .newspage-single h2 p {
    font-size: 16px;
  }
}

.newspage-single-content {
  background-image: url(img/bg_pachi.png);
  background-size: cover;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .newspage-single-content {
    background-size: contain;
  }
}

.newspage-single-wrap {
  width: 86%;
  margin: 0 auto;
}

.newspage-single-inner {
  min-height: 800px;
  border-radius: 20px;
  border: 2px solid #C20101;
  background: #ffffff;
  position: relative;
  padding: 40px;
}
.newspage-single-inner time {
  width: 100px;
  font-family: "Oswald";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #C20101;
  padding: 20px auto;
}
.newspage-single-inner h3 {
  font-size: 20px;
  padding: 20px 0px;
  border-top: 1px solid #1D1D1D;
  border-bottom: 1px solid #1D1D1D;
  margin: 20px 0px;
}
.newspage-single-inner p {
  padding: 40px auto;
  line-height: 1.8;
  font-weight: normal;
  margin: 40px auto;
  text-align: left;
}
.newspage-single-inner .newsimg {
  width: 80%;
  margin: 40px auto;
}
.newspage-single-inner .newsimg img {
  width: 100%;
}

.onair-page {
  background-image: url(img/bg_page.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1000px;
}
@media screen and (max-width: 440px) {
  .onair-page {
    padding-bottom: 0px;
  }
}
/* @media screen and (max-width: 640px) {
  .onair-page {
    background-size: contain;
  }
} */
.onair-page h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .onair-page h2 {
    font-size: 32px;
  }
}
.onair-page h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .onair-page h2 p {
    font-size: 16px;
  }
}
.onair-page h3 {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 60px;
  font-size: 48px;
  color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .onair-page h3 {
    font-size: 32px;
  }
}
.onair-page h3 span {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .onair-page h3 span {
    font-size: 24px;
  }
}

.onair-page-content {
  background-image: url(img/bg_pachi.png);
  background-size: cover;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .onair-page-content {
    background-size: contain;
  }
}

.onair-page-wrap {
  width: 86%;
  margin: 0 auto;
}

.onair-page-inner {
  border-radius: 20px;
  border: 2px solid #C20101;
  background: #ffffff;
  position: relative;
  padding: 60px;
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .onair-page-inner {
    display: block;
    padding: 30px;
  }
}
.onair-page-inner h4 {
  margin-right: 40px;
  min-width: 150px;
}
@media screen and (max-width: 767px) {
  .onair-page-inner h4 {
    width: 180px;
    margin: 0 auto 30px;
  }
}
.onair-page-inner h4 img {
  width: 100%;
}
.onair-page-inner ul {
  width: 90%;
  max-width: 1280px;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul {
    width: 100%;
  }
}
.onair-page-inner ul li {
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
  border-bottom: 1px solid #1D1D1D;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li {
    width: 100%;
    display: block;
  }
}
.onair-page-inner ul li p:nth-child(1) {
  width: 160px;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li p:nth-child(1) {
    font-size: 18px;
  }
}
.onair-page-inner ul li p:nth-child(2) {
  width: 180px;
  font-size: 18px;
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li p:nth-child(2) {
    width: 100%;
    text-align: right;
    margin-top: -30px;
    font-size: 16px;
  }
}
.onair-page-inner ul li p:nth-child(3) {
  width: 250px;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li p:nth-child(3) {
    width: 100%;
    text-align: right;
    font-size: 16px;
  }
}
.onair-page-inner ul li p:nth-child(3) span {
  display: block;
  font-size: 13px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li p:nth-child(3) span {
    width: 100%;
    text-align: right;
  }
}
.onair-page-inner ul li:nth-child(6) {
  display: flex;
  padding: 20px 0px;
  border: none;
  text-align: right;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .onair-page-inner ul li:nth-child(6) {
    font-size: 10px;
  }
}

.onair-page-inner ul li:nth-child(3) {
  border-bottom: none;
}
.onair-page-inner ul li:nth-child(4) {
  display: block;
  width: 100%;
  padding-top: 0px;
}
.onair-page-inner ul li:nth-child(4) p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.character-page {
  background-image: url(img/bg_page.png);
  background-size: cover;
  background-repeat: no-repeat;
}
/* @media screen and (max-width: 640px) {
  .character-page {
    background-size: contain;
  }
} */

.character-page h2 {
  color: #C20101;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1D1D1D;
  font-family: "Changa One";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 30px 0;
  color: #FFFEAD;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .character-page h2 {
    font-size: 32px;
  }
}
.character-page h2 p {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  -webkit-text-stroke-color: #C20101;
  -webkit-text-stroke-color: #FFFEAD;
}
@media screen and (max-width: 767px) {
  .character-page h2 p {
    font-size: 16px;
  }
}

.character-page-content {
  background-image: url(img/bg_pachi.png);
  background-size: cover;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .character-page-content {
    background-size: contain;
  }
}

.character-page-wrap {
  width: 86%;
  margin: 0 auto;
}

.character-page-inner {
  border-radius: 20px;
  border: 2px solid #C20101;
  background: #ffffff;
  position: relative;
  padding: 60px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .character-page-inner {
    padding: 20px;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .character-page-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .tab-buttons {
    text-align: center;
    display: flex;
    margin-right: 0px;
    flex-wrap: wrap;
    width: 130px;
  }
}
@media screen and (min-width: 1440px) {
  .tab-buttons {
    width: 40%;
  }
}

.tab-buttons button {
  padding: 10px 20px;
  background: none;
  border: 2px solid #1D1D1D;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "TanukiMagic";
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .tab-buttons button {
    font-size: 16px;
    width: 130px;
    margin: 5px;
    padding: 8px;
    height: 50px;
  }
}
.tab-buttons button span {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tab-buttons button span {
    font-size: 14px;
  }
}

.tab-buttons button:hover {
  background: #f0f8ff;
}

.tab-buttons button.active {
  background: #1D1D1D;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .tab-buttons button.active {
    font-size: 16px;
    width: 130px;
    margin: 5px;
    padding: 8px;
    height: 50px;
  }
}

.tab-contents {
  display: flex;
}
@media screen and (max-width: 767px) {
  .tab-contents {
    flex-direction: column;
    width: 100%;
  }
}

.tab-contents .content {
  display: none;
  padding: 20px 0;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-contents .content.active {
  display: flex;
}
@media screen and (max-width: 767px) {
  .tab-contents .content.active {
    flex-direction: column-reverse;
  }
}

.tab-contents .content-text {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .tab-contents .content-text {
    width: 100%;
  }
}
.tab-contents .content-text h3 {
  font-family: "TanukiMagic";
  font-size: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tab-contents .content-text h3 {
    font-size: 26px;
    margin-top: 20px;
  }
}
.tab-contents .content-text h3 span {
  font-size: 20px;
  display: block;
}
.tab-contents .content-text h4 {
  font-size: 20px;
  margin-bottom: 40px;
}
.tab-contents .content-text p {
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
}

.tab-contents .content-img {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .tab-contents .content-img {
    height: 400px;
  }
}

.tab-contents .content-img img {
  width: 100%;
  top: 50%;
  left: 80%;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .tab-contents .content-img img {
    left: 100%;
    max-height: 400px;
    width: auto;
  }
}

.content-img.chara2 img {
  width: 150%;
}
@media screen and (max-width: 767px) {
  .content-img.chara2 img {
    left: 100%;
    max-height: 400px;
    width: auto;
  }
}

.content-img.chara3 img {
  width: 200%;
}
@media screen and (max-width: 767px) {
  .content-img.chara3 img {
    left: 100%;
    max-height: 400px;
    width: auto;
  }
}

@media screen and (max-width: 440px) {
  .tab-contents .content-text {
    width: 300px;
    margin: 0 -120px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */

/* 追加調整 */
/* お知らせ個別画像表紙 */
.newspage-single-inner .newsimg {
width: 100%;
}
.newspage-single-inner .newsimg img {
    width: 100%;
    height: auto;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
}
/* お知らせい一覧ページネーション */
.pagenavi{
	width:100%;
	margin:30px auto;
}
.wp-pagenavi {
    display: flex;
    justify-content: center;
}
span.current {
	text-decoration: none;
    display: block;
    width: 20px;
    margin: 0 10px;
    font-size: 20px;
    background-color: #C20101;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
	text-align:center;
}

a.page.larger {
    display: block;
    width: 20px;
    margin: 0 10px;
    font-size: 20px;
    padding: 5px;
    color: #C20101;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #C20101;
	text-align:center;
}

a.page.larger:hover{
background-color: #C20101;
	color: #fff;
}

a.page.smaller{
    display: block;
    width: 20px;
    margin: 0 10px;
    font-size: 20px;
    padding: 5px;
    color: #C20101;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #C20101;
	text-align:center;
}
a.page.smaller:hover{
background-color: #C20101;
	color: #fff;
}

/* 404ページ */
.\34 04-content {
    width: 80%;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #C20101;
    background: #ffffff;
    position: relative;
    line-height: 2;
}
/* ニュース個別ページ */
@media screen and (max-width: 767px) {
  .newspage-single-inner {
   padding:20px;
  }
}