@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.2rem;
  font-feature-settings: "palt";
  position: relative;
  color: #fff;
}
@media screen and (max-width: 840px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  margin: 0 auto;
  position: relative;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.df_row {
  display: flex;
  flex-flow: row wrap;
}

.df_col {
  display: flex;
  flex-flow: column;
}

.detail {
  font-size: 1rem;
  text-align: right;
}

main {
  overflow-x: hidden;
}

section {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  section {
    padding: 50px 0;
  }
}

/*-------------------------*/
body {
  background: linear-gradient(to right, #e5e1a6, #dfd680);
  font-family: "kozuka-mincho-pr6n", serif;
  font-weight: 700;
  font-style: normal;
  color: #2d2921;
}
body.no-scroll {
  overflow: hidden;
}

.yt {
  height: -moz-fit-content;
  height: fit-content;
}
.yt .youtube_link {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  width: 100%;
}
.yt .youtube_link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 840px) {
  .yt {
    width: 80%;
    margin: 0 auto;
  }
}

.thumnail,
.ph {
  background-color: #ddd;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}

.menu {
  display: flex;
  flex-flow: row wrap;
  max-width: 95%;
  gap: 10px 0px;
  justify-content: center;
}
.menu a {
  font-size: 2rem;
  width: 160px;
  aspect-ratio: 1/0.3;
  background-image: url(images/menu_off.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.menu a:hover {
  background-image: url(images/menu_on.webp);
}
@media screen and (max-width: 600px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: initial;
    background-color: rgba(2, 26, 71, 0.8);
    display: flex;
    flex-flow: column;
    z-index: 101;
    height: 100vh;
    justify-content: space-evenly;
    opacity: 0;
    pointer-events: none;
    padding: 30px 0;
    transition: all 0.3s ease;
  }
  .menu a {
    background-image: none;
    width: 100%;
    padding: 5px;
    aspect-ratio: initial;
  }
  .menu a:hover {
    background-image: none;
    background-color: #3dbbf3;
  }
  .menu.open {
    opacity: 1;
    pointer-events: initial;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 600px) {
  .hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 70px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
    z-index: 102;
  }
  .hamburger span {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
  }
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(30px) rotate(45deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
  transform: rotate(-45deg);
}

.yellow_back {
  background: linear-gradient(to right, #e5e1a6, #dfd680);
}

#mv {
  padding: 0;
  background-image: url(images/mw2.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
#mv .yellow_back {
  background: linear-gradient(to right, rgba(229, 225, 166, 0.85), rgba(223, 214, 128, 0.85));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#mv .inner {
  max-width: 1800px;
  width: 100%;
  height: auto;
}
#mv .left,
#mv .right {
  width: 50%;
}
@media screen and (max-width: 840px) {
  #mv .left,
  #mv .right {
    width: 100%;
  }
}
#mv .left img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: right;
     object-position: right;
}
#mv .right {
  padding: 0 40px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
}
#mv .comingsoon {
  font-size: 5rem;
  color: #b7523b;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-style: normal;
  filter: drop-shadow(0 0 5px #fff);
}
@media screen and (max-width: 600px) {
  #mv .comingsoon {
    font-size: 2.5rem;
  }
}
#mv .main_logo {
  max-height: 870px;
  height: 30vw;
}
#mv .main_logo img {
  height: 70%;
  width: auto;
}
@media screen and (max-width: 600px) {
  #mv .main_logo {
    display: none;
  }
}
#mv .cast {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
#mv .cast .item {
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5rem;
  color: #b7523b;
  margin: 0;
}
@media screen and (max-width: 600px) {
  #mv .cast .item {
    width: 100%;
    text-align: center;
  }
}
#mv .cast .item span {
  font-size: 2.5rem;
}
#mv .cast .item span.large {
  font-size: 4.8rem;
}
#mv .cast .item:nth-of-type(1) {
  border-right: none;
}
@media screen and (max-width: 600px) {
  #mv .cast .item:nth-of-type(1) {
    border-right: none;
    border-bottom: 1px solid #b7523b;
  }
}
#mv .txt_public {
  width: 100%;
}
#mv .txt_public img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#mv .yt_cont {
  width: 90%;
  background-image: url(images/yt_cont.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  aspect-ratio: 1/0.681;
  background-position: center;
}
#mv .yt_cont .yt {
  width: 65%;
  position: absolute;
  top: 56.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
}
#mv .yt_title {
  font-size: 2rem;
  width: 90%;
  background-color: rgba(27, 113, 245, 0.7);
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 10%;
}
#mv .yt_btn {
  width: 188px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(30%, 30%);
}
@media screen and (max-width: 840px) {
  #mv .yt_btn {
    width: 148px;
    bottom: 20px;
  }
}
#mv .loadshow_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #3dbbf3, #3a8cf7, #d5559a);
  padding: 0 5%;
  width: 100%;
}
#mv .loadshow_wrap .loadshow {
  max-width: 50%;
}

.fix_back {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background-image: url(images/fix_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#info .link_btn {
  margin-bottom: 100px;
}
#info .store {
  max-width: 800px;
  gap: 30px;
  margin: 100px auto;
}
#info .store .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 600px) {
  #info .store {
    margin: 20px auto;
  }
  #info .store .item {
    width: 100%;
  }
}
#info .trailer {
  width: 100%;
  max-width: 984px;
  aspect-ratio: 1/0.6;
  background-image: url(images/trailer.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  background-position: center;
  margin: 0 auto;
}
#info .trailer .yt {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
}

h2 {
  font-size: 4.5rem;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-style: normal;
  color: #2d2921;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin: 0 auto;
  line-height: 1.2;
  margin-bottom: 80px;
  position: relative;
  padding: 0 30px;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
h2 rt {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
h2 .ja {
  font-size: 2rem;
  display: block;
  margin-top: 20px;
}
h2::before {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #2d2921;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
}
h2.ruby::before {
  top: 30px;
}
h2.small {
  font-size: 3.8rem;
}
h2.small::before {
  top: 7px;
}
@media screen and (max-width: 600px) {
  h2.small {
    font-size: 2rem;
    padding: 0 15px;
  }
  h2.small::before {
    top: 2px;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 2.5rem;
  }
  h2 rt {
    font-size: 1rem;
  }
  h2 .ja {
    font-size: 1.5rem;
  }
  h2::before, h2::after {
    top: 3.5rem;
  }
  h2.ruby::before, h2.ruby::after {
    top: 18px;
  }
}

.news .thumnail {
  aspect-ratio: 1/0.75;
}
.news .thumnail img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.news .date {
  background-color: #b7523b;
  color: #fff;
  font-size: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0;
  padding: 0 10px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 600px) {
  .news .date {
    font-size: 1.3rem;
  }
}
.news .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .news .title {
    font-size: 1.5rem;
  }
}

.w_cast {
  font-size: 3rem;
  width: 360px;
  height: 107px;
  background-image: url(images/w_cast.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #b7523b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
}

.cast_inner {
  display: flex;
  gap: 50px;
  flex-flow: row wrap;
  justify-content: center;
}
.cast_inner .item {
  width: calc((100% - 50px) / 2);
  display: flex;
  flex-flow: column;
  align-items: center;
  aspect-ratio: 1/0.7;
  justify-content: center;
  max-width: 320px;
  position: relative;
}
.cast_inner .item .chara_yomi {
  font-size: 1.6rem;
}
.cast_inner .item .chara_name {
  font-size: 2.4rem;
}
.cast_inner .item .cast_name {
  font-size: 3rem;
  /* margin-top: 20px; */
  text-align: center;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.cast_inner .item .cast_name span {
  font-size: 1.8rem;
  display: block;
}
.cast_inner .item::before, .cast_inner .item::after {
  content: "";
  width: 8%;
  height: 100%;
  background-image: url(images/cast_border.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
}
.cast_inner .item::before {
  left: 0;
  transform: rotate(180deg);
}
.cast_inner .item::after {
  right: 0;
}
@media screen and (max-width: 600px) {
  .cast_inner .item {
    width: 100%;
  }
}

.theatre_info {
  margin: 50px auto;
  width: 677px;
  height: 99px;
  font-size: 2.6rem;
  color: #fff;
  background-image: url(images/theatre_info.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .theatre_info {
    width: 100%;
  }
}

#news_intro .inner {
  padding: 50px 0;
}

.intro {
  position: relative;
  text-align: center;
}
.intro .border {
  width: 95%;
  margin: 0 auto;
  height: 1.5px;
  background-color: #d3b365;
  position: relative;
}
.intro .border::before, .intro .border::after {
  content: "";
  width: 2%;
  aspect-ratio: 1/1;
  background-image: url(images/border_assets.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.2px;
}
.intro .border::before {
  left: -2%;
  transform: scale(-1, 1);
}
.intro .border::after {
  right: -2%;
}
@media screen and (max-width: 600px) {
  .intro .border {
    width: 92%;
  }
  .intro .border::before, .intro .border::after {
    width: 4%;
  }
  .intro .border::before {
    left: -4%;
  }
  .intro .border::after {
    right: -4%;
  }
}
.intro .border1 {
  margin-bottom: 100px;
}
.intro .border2 {
  margin-top: 100px;
}
.intro .border2::before, .intro .border2::after {
  top: initial;
  bottom: -0.2px;
  transform: rotate(90deg);
}
.intro .border2::before {
  transform: scale(-1, 1) rotate(90deg);
}
.intro .chara {
  position: absolute;
  width: 40%;
}
@media screen and (max-width: 600px) {
  .intro .chara {
    width: 60%;
  }
}
.intro .chara1 {
  right: 0;
  top: 10%;
}
@media screen and (max-width: 600px) {
  .intro .chara1 {
    top: 16%;
  }
}
.intro .chara2 {
  left: 0;
  bottom: 10%;
}
@media screen and (max-width: 840px) {
  .intro .chara2 {
    bottom: initial;
    top: 30%;
  }
}
.intro .lead {
  font-size: 2.6rem;
  margin: 80px 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .intro .lead {
    font-size: 1.8rem;
  }
}

.link_btn {
  padding: 1% 15% 1% 15%;
  border: 1px solid #2d2921;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 10px;
  display: block;
  position: relative;
}
.link_btn:after {
  content: "";
  background-image: url(images/arrow.webp);
  width: 18%;
  aspect-ratio: 8/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 7%;
  top: 42%;
}

#about p {
  max-width: 800px;
}
#about p strong {
  font-size: 2.4rem;
}
#about p strong.txt_header {
  display: block;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #about p strong {
    font-size: 2.2rem;
  }
}
#about p span {
  font-size: 1.4rem;
}

#story p,
.intro p {
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 600px) {
  #story p,
  .intro p {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: justify;
  }
}

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

.sceneSwiper .item {
  aspect-ratio: 1/0.419;
}
.sceneSwiper .item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

#partner_banners p {
  text-align: center;
  font-size: 2.7rem;
  line-height: 2;
  letter-spacing: 0.3rem;
}
#partner_banners p span {
  font-size: 4rem;
}

.banner_inner {
  margin: 80px auto;
  display: flex;
  flex-flow: row wrap;
  gap: 80px;
  justify-content: center;
}
.banner_inner .item {
  width: 260px;
}

.chara_inner {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.chara_inner .item {
  width: calc((100% - 50px) / 2);
  background-image: url(images/chara_back.webp);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1.76;
  display: flex;
  flex-flow: column;
}
.chara_inner .item:hover .chara {
  animation: chara 0.5s forwards ease;
}
@keyframes chara {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: translateY(-30px);
  }
}
.chara_inner .chara {
  height: 73%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5%;
}
.chara_inner .chara img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
.chara_inner .name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #3dbbf3, #3a8cf7, #d5559a);
  padding: 3px 5%;
  font-size: 4.8rem;
  width: 100%;
}
.chara_inner .name rt {
  font-size: 1.2rem;
}
@media screen and (max-width: 840px) {
  .chara_inner .name {
    font-size: 3.2rem;
  }
}
.chara_inner .cv {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 5px;
}
.chara_inner .cv rt {
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .chara_inner {
    justify-content: center;
  }
  .chara_inner .item {
    width: 80%;
  }
  .chara_inner .name {
    font-size: 2.5rem;
  }
  .chara_inner .cv {
    font-size: 1.5rem;
  }
  .chara_inner .cv rt {
    font-size: 0.8rem;
  }
}
.chara_inner.small {
  max-width: 800px;
  gap: 30px;
}
@media screen and (max-width: 840px) {
  .chara_inner.small {
    max-width: 600px;
  }
}
.chara_inner.small .item {
  width: calc((100% - 30px) / 2);
}
.chara_inner.small .name {
  font-size: 3.6rem;
}
.chara_inner.small .chara {
  padding: 15%;
}
.chara_inner.small .cv {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .chara_inner.small {
    gap: 10px;
  }
  .chara_inner.small .item {
    width: calc((100% - 10px) / 2);
  }
  .chara_inner.small .name {
    font-size: 2rem;
  }
  .chara_inner.small .name rt {
    font-size: 0.6rem;
  }
  .chara_inner.small .chara {
    height: 68%;
  }
  .chara_inner.small .cv {
    font-size: 1.3rem;
  }
}

.character_list {
  background-image: url(images/character_list.webp);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/0.365;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .character_list {
    background-image: none;
  }
}

.character_list_inner {
  max-width: 660px;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.character_list_inner .item {
  font-size: 2.5rem;
  text-align: center;
  width: calc((100% - 16px) / 3);
}
.character_list_inner .item span {
  font-size: 1.5rem;
  display: block;
}
@media screen and (max-width: 840px) {
  .character_list_inner {
    max-width: 590px;
  }
  .character_list_inner .item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .character_list_inner .item {
    font-size: 1.6rem;
  }
  .character_list_inner .item span {
    font-size: 1.1rem;
  }
}

.staff_list .item {
  color: #000;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}
.staff_list .item span {
  color: #1b71f5;
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .staff_list .item {
    font-size: 2rem;
    line-height: 1.5;
  }
  .staff_list .item span {
    font-size: 1.5rem;
  }
}

.song_wrap {
  gap: 50px;
  justify-content: center;
}
.song_wrap .ph {
  width: 450px;
  aspect-ratio: 1/1.1;
  background-color: #ddd;
}
.song_wrap .txt {
  width: 455px;
}
.song_wrap .txt h3 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
}
.song_wrap .txt h3 span {
  font-size: 2.7rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .song_wrap {
    gap: 30px;
  }
  .song_wrap .ph,
  .song_wrap .txt {
    width: 100%;
  }
  .song_wrap .ph h3,
  .song_wrap .txt h3 {
    font-size: 3rem;
  }
  .song_wrap .ph h3 span,
  .song_wrap .txt h3 span {
    font-size: 2rem;
  }
}

.goods_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.goods_wrap .item {
  width: calc((100% - 90px) / 4);
  padding: 15px;
  background-color: #79d5fc;
  border-radius: 15px;
}
.goods_wrap .item .ph {
  aspect-ratio: 1/1.253;
  background-color: #ddd;
}
.goods_wrap .item .txt {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 5px;
}
.goods_wrap .item .txt span {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 600px) {
  .goods_wrap {
    gap: 15px;
  }
  .goods_wrap .item {
    width: calc((100% - 15px) / 2);
  }
  .goods_wrap .item .txt {
    font-size: 2rem;
  }
  .goods_wrap .item .txt span {
    font-size: 1.5rem;
  }
}

footer {
  padding: 70px 0 0;
}
footer .logo_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 70px;
}
footer .logo_wrap .logo {
  width: 255px;
  aspect-ratio: 1/0.427;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
footer .logo_wrap .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
footer .sns {
  display: flex;
  flex-flow: row wrap;
  gap: 70px;
  justify-content: center;
  align-items: center;
}
footer .sns .item {
  width: 43px;
  aspect-ratio: 1/0.8;
}
footer .sns .item img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 600px) {
  footer .sns {
    gap: 30px;
  }
}

.pp {
  font-size: 1.6rem;
  margin: 80px auto;
  border-bottom: 1px solid #2d2921;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.newsSwiper .swiper-wrapper {
  margin-bottom: 50px;
}

.fix_btn {
  width: 90px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}
.fix_btn .sns {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.fix_btn .sns a {
  filter: drop-shadow(0 0 18px #fbb03b);
}
@media screen and (max-width: 840px) {
  .fix_btn {
    top: 150px;
  }
}
@media screen and (max-width: 600px) {
  .fix_btn {
    width: 70%;
    top: initial;
    bottom: 10px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
  .fix_btn .sns {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .fix_btn .sns a {
    width: calc((100% - 20px) / 3);
  }
}

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

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

.copyright {
  margin-top: 60px;
  background-color: #b7523b;
  width: 100%;
  color: #fff;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.archive-news .news_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.archive-news .news_wrap .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 600px) {
  .archive-news .news_wrap .item {
    width: 100%;
  }
}

.single-news .title {
  font-size: 3rem;
}
.single-news .content {
  margin-top: 20px;
  color: #000;
}
.single-news #news .inner img {
  width: initial;
  height: auto;
}

.archive-news #news,
.single-news #news {
  min-height: 1000px;
}

.modal_layer {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.2s;
}
.modal_layer.is-active {
  opacity: 1;
  visibility: visible;
}
.modal_layer .close {
  z-index: 100;
  width: 110px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.modal_layer .close span {
  height: 1px;
  background-color: #fff;
  width: 100%;
  transform: rotate(45deg);
}
.modal_layer .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.modal_layer .modal_inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 75px 85px;
  width: 90%;
  max-width: 1800px;
  position: relative;
}
.modal_layer .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  align-items: center;
}
.modal_layer .wrap > .name {
  width: 100%;
  margin: 0 auto;
  padding: 3px 7% 3px 53%;
  font-size: 4rem;
}
.modal_layer .wrap .chara {
  width: 32%;
  aspect-ratio: 1/1.3;
}
.modal_layer .wrap .chara img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal_layer .wrap .txt {
  padding: 9rem;
  flex: 1;
  font-size: 1.6rem;
}
.modal_layer .wrap .txt .chara_name {
  color: #d3b365;
  font-size: 4.2rem;
  margin-bottom: 15px;
}
.modal_layer .wrap .txt .chara_name span {
  font-size: 1.6rem;
  padding-left: 1rem;
}
.modal_layer .wrap .txt .cast_name {
  font-size: 3rem;
  margin-bottom: 25px;
}
.modal_layer .wrap .txt .cast_name span {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 840px) {
  .modal_layer .close {
    width: 40px;
  }
  .modal_layer .modal_inner {
    height: 95%;
    overflow: scroll;
    padding: 0;
  }
  .modal_layer .wrap {
    flex-flow: column;
    padding-top: 110px;
    height: auto;
  }
  .modal_layer .wrap .chara {
    width: 75%;
  }
  .modal_layer .wrap .txt {
    width: 100%;
  }
  .modal_layer .wrap .txt > p {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .modal_layer .wrap {
    padding-top: 2rem;
  }
  .modal_layer .wrap .chara {
    width: 90%;
  }
  .modal_layer .wrap .txt {
    padding: 2rem;
  }
  .modal_layer .wrap .txt > p {
    font-size: 1.5rem;
  }
}

.wp-block-code code {
  white-space: pre;
}/*# sourceMappingURL=style.css.map */