@charset "UTF-8";
html {
  font-size: 10px;
  overflow-x: hidden;
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
html ::-webkit-scrollbar-thumb {
  background-color: #feaf26;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
}

body {
  font-size: 1.6rem;
  font-weight: bold;
  color: #272727;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  position: relative;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
body::after {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_p.png") center top, url("../images/bg.png") center top;
  z-index: -1;
}
@media screen and (max-width: 839px) {
  body::after {
    background-size: 200% auto, auto auto;
  }
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.fadein {
  animation: fadein 0.5s ease-out;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  text-align: center;
  background: #feaf26;
}
#loading .logo {
  text-align: center;
  margin: 0 auto;
}
#loading .logo img {
  max-width: 150px;
  height: auto;
  width: 30vw;
}
#loading .logo p {
  font-size: 18px;
  font-family: "Yusei Magic", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: 20px;
}

.loading-body {
  overflow: hidden;
}

a {
  color: #0590CE;
  transition: opacity 0.2s;
}
a:hover, a:visited, a:active {
  opacity: 0.7;
  transition: opacity 0.2s;
}

p {
  margin: 5px 0;
  font-weight: bold;
  line-height: 1.6em;
}

.mt30 {
  margin-top: 30px;
}

.marker {
  background: linear-gradient(transparent 60%, #ffe29d 60%);
  display: inline;
}

.accent {
  font-size: 140%;
}

div,
span,
li,
p,
pre,
a {
  box-sizing: border-box;
}

pre {
  white-space: pre-wrap;
}

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

.center {
  text-align: center;
}
.center img {
  margin: 0 auto;
}

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

/*
=========================
COMMON 
=========================
*/
h2 {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 840px) {
  h2 {
    width: 360px;
    min-height: 87px;
    font-size: 34px;
  }
}
@media screen and (max-width: 839px) {
  h2 {
    width: 70vw;
    font-size: 7vw;
    min-height: 17vw;
  }
}

.outer {
  position: relative;
  padding-bottom: 250px;
  min-height: 100vh;
}

section {
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}

.content-box {
  border: 4px solid #272727;
  max-width: 940px;
  background: #fff;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 840px) {
  .content-box {
    margin: 100px auto;
    padding: 60px 80px;
  }
}
@media screen and (max-width: 839px) {
  .content-box {
    padding: 18vw 6vw 12vw;
    margin: 15vw auto;
  }
}

.common-btn a {
  background: #f3662f;
  border: 4px solid #353535;
  border-radius: 100px;
  display: block;
  max-width: 300px;
  text-align: center;
  padding: 18px 10px;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}
.common-btn a span {
  position: relative;
  display: inline-block;
  padding-right: 24px;
  letter-spacing: 1.5px;
}
.common-btn a span:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  transition: 0.2s;
}
.common-btn a:hover {
  background: #feaf26;
  opacity: 1;
  transition: 0.2s;
}

.share {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.share img {
  vertical-align: middle;
  margin: 0 3px;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.2));
}
.share span {
  line-height: 24px;
  display: inline-block;
  margin-right: 8px;
  background: #fff;
  border-radius: 100px;
  padding: 0 10px;
  border: 1px solid #e7e7e7;
}

.area-kv {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 840px) {
  .area-kv {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 839px) {
  .area-kv {
    margin: 90px auto;
  }
}
.area-kv .kv-inner {
  overflow: hidden;
  position: relative;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.3));
}
.area-kv .kv-chara01 {
  position: absolute;
  top: 24%;
  left: 23%;
  width: 74%;
  z-index: 9;
  animation: inpurukun 5s infinite ease-in-out;
}
@keyframes inpurukun {
  0% {
    transform: rotate(-1deg);
  }
  30% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  90% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
.area-kv .kv-chara02 {
  position: absolute;
  top: 54.5%;
  left: 72.5%;
  width: 25%;
  z-index: 7;
  animation: ohamu 1.5s linear infinite alternate;
}
@keyframes ohamu {
  0% {
    left: 72.5%;
  }
  40% {
    left: 73%;
  }
  80% {
    left: 72.5%;
  }
  100% {
    left: 72.5%;
  }
}
.area-kv .kv-chara03 {
  position: absolute;
  top: 28%;
  left: -3%;
  width: 45%;
  z-index: 6;
  animation: purubuchan 3s infinite ease-in-out;
}
@keyframes purubuchan {
  0% {
    top: 28%;
  }
  30% {
    top: 28%;
  }
  50% {
    top: 27.5%;
    transform: rotate(1.5deg);
  }
  70% {
    top: 28%;
  }
  85% {
    top: 27.75%;
  }
  100% {
    top: 28%;
    transform: rotate(0deg);
  }
}
.area-kv .kv-chara04 {
  position: absolute;
  top: 7.5%;
  left: -1%;
  width: 50%;
  z-index: 5;
  animation: kamio 9s linear infinite alternate;
}
@keyframes kamio {
  0% {
    top: 7.5%;
    transform: rotate(0deg);
  }
  45% {
    top: 10%;
    transform: rotate(4deg);
  }
  55% {
    top: 10%;
    transform: rotate(4deg);
  }
  100% {
    top: 7.5%;
    transform: rotate(0deg);
  }
}
.area-kv .kv-chara05 {
  position: absolute;
  top: -4%;
  left: 50.5%;
  width: 65%;
  z-index: 4;
  animation: kokebayashi 8s linear infinite alternate;
}
@keyframes kokebayashi {
  0% {
    transform: scale(100%);
  }
  50% {
    transform: scale(105%);
  }
  70% {
    transform: scale(100%);
  }
  85% {
    transform: scale(102.5%);
  }
  100% {
    transform: scale(100%);
  }
}
.area-kv .kv-ef {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
}
.area-kv .logo-title {
  position: absolute;
  left: 10%;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
  bottom: 3%;
}
.area-kv .pre {
  position: absolute;
  margin: 0 auto;
  text-align: left;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.2));
  z-index: 12;
  left: 14%;
}
@media screen and (min-width: 840px) {
  .area-kv .pre {
    top: 0.5%;
    width: 34%;
  }
}
@media screen and (max-width: 839px) {
  .area-kv .pre {
    top: -1%;
    width: 35vw;
  }
}
.area-kv .catch {
  position: absolute;
  left: -3%;
  margin: 0 auto;
  text-align: left;
  z-index: 11;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 840px) {
  .area-kv .catch {
    top: 4.5%;
    width: 80%;
  }
}
@media screen and (max-width: 839px) {
  .area-kv .catch {
    top: 3%;
    width: 62vw;
  }
}

.area-movie h2 {
  background: url(../images/movie_ttl.png?1) no-repeat center top/100% auto;
}
@media screen and (min-width: 840px) {
  .area-movie h2 {
    padding-top: 25px;
    margin: -109px auto 0;
    max-width: 316px;
  }
}
@media screen and (max-width: 839px) {
  .area-movie h2 {
    margin: -28vw auto 5vw;
    padding-top: 6vw;
    background-size: 100% auto;
  }
}
.area-movie .headline {
  margin-bottom: 40px;
}
.area-movie .date {
  color: #545454;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}
.area-movie .title {
  line-height: 3.5rem;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  padding: 0 5px;
}
.area-movie .movie-container {
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.3));
}
.area-movie .movie-player {
  border: 10px solid #fff;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.area-movie .movie-player iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.area-movie .nextpreview {
  border-top: 1px solid #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 840px) {
  .area-movie .nextpreview {
    margin: 40px 0 60px;
    padding: 35px;
  }
}
@media screen and (max-width: 839px) {
  .area-movie .nextpreview {
    margin: 12vw 0;
    padding: 4vw 0;
  }
}
.area-movie .nextpreview .pic {
  background: url(../images/movie_nexticon.png) no-repeat center left 20px;
  width: 50%;
}
@media screen and (min-width: 840px) {
  .area-movie .nextpreview .pic {
    min-height: 90px;
    max-width: 250px;
  }
}
@media screen and (max-width: 839px) {
  .area-movie .nextpreview .pic {
    width: 100%;
    height: 16vw;
    background-size: contain;
    background-position: center center;
    margin: 2vw 0 4vw;
  }
}
.area-movie .nextpreview .text {
  width: 50%;
}
@media screen and (max-width: 839px) {
  .area-movie .nextpreview .text {
    width: 100%;
  }
}
.area-movie .nextpreview .text pre {
  line-height: 1.6em;
  font-weight: bold;
}

.area-news h2 {
  background: url(../images/news_ttl.png?1) no-repeat center top;
  background-size: 100% auto;
}
@media screen and (min-width: 840px) {
  .area-news h2 {
    padding-top: 20px;
    margin: -102px auto 30px;
    max-width: 314px;
  }
}
@media screen and (max-width: 839px) {
  .area-news h2 {
    margin: -25vw auto 2vw;
    padding-top: 5vw;
  }
}
.area-news dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #353535;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .area-news dl dt {
    width: 150px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 839px) {
  .area-news dl dt {
    width: 100%;
    margin-top: 4vw;
  }
}
.area-news dl dt .date {
  background: #353535;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}
@media screen and (min-width: 840px) {
  .area-news dl dd {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 839px) {
  .area-news dl dd {
    width: 100%;
  }
}
.area-news dl dd a {
  color: #353535;
  font-weight: bold;
  text-decoration: none;
  display: block;
  line-height: 1.4em;
  position: relative;
}
@media screen and (min-width: 840px) {
  .area-news dl dd a {
    padding: 30px 60px 30px 20px;
  }
}
@media screen and (max-width: 839px) {
  .area-news dl dd a {
    padding: 4vw 50px 4vw 0;
  }
}
.area-news dl dd a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #353535;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  transition: 0.2s;
}
.area-news .common-btn {
  margin-top: 60px;
}

.area-chara {
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media screen and (min-width: 840px) {
  .area-chara {
    margin: 70px auto 100px;
  }
}
@media screen and (max-width: 839px) {
  .area-chara {
    padding: 8vw 0 14vw;
  }
}
.area-chara h2 {
  background: url(../images/chara_ttl.png?1) no-repeat center top;
  margin: 0 auto;
  background-size: 100% auto;
}
@media screen and (min-width: 840px) {
  .area-chara h2 {
    padding-top: 28px;
  }
}
@media screen and (max-width: 839px) {
  .area-chara h2 {
    padding-top: 5vw;
  }
}
.area-chara .content-box {
  margin: 30px auto 60px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 839px) {
  .area-chara .content-box {
    min-height: 101vw;
  }
}
.area-chara .content-box::after {
  border: 4px solid #272727;
  background: #fff;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-2deg);
  z-index: -1;
}
.area-chara .content-box .pic {
  width: 48%;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
}
.area-chara .content-box .text {
  line-height: 2.2rem;
}
@media screen and (min-width: 840px) {
  .area-chara .content-box .text {
    width: 48%;
  }
}
@media screen and (max-width: 839px) {
  .area-chara .content-box .text {
    width: 100%;
    margin-top: 6vw;
  }
}
.area-chara .content-box .text span {
  display: inline-block;
}
.area-chara .content-box .name {
  display: block;
  font-size: 22px;
  margin-bottom: 20px;
}
.area-chara .content-box .name .cv {
  font-size: 80%;
}
.area-chara .thumb-wrapper {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}
.area-chara .thumb-wrapper .thumb-media {
  border: 4px solid #272727;
  display: inline-block;
  margin: 0 2%;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  position: relative;
  cursor: pointer;
  width: 14%;
}
.area-chara .thumb-wrapper .thumb-media img {
  vertical-align: bottom;
}
.area-chara .thumb-wrapper .pin {
  position: absolute;
  top: -18%;
  left: 16%;
  opacity: 0;
  width: 45%;
}
.area-chara .thumb-wrapper .thumb-media-active .pin {
  opacity: 1;
}
.area-chara .swiper-button-next, .area-chara .swiper-button-prev {
  background-image: none;
  top: calc(50% - 40px);
}
.area-chara .swiper-button-prev::after,
.area-chara .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.area-chara .swiper-button-prev::after {
  border-bottom: 20px solid transparent;
  border-right: 30px solid #272727;
  border-top: 20px solid transparent;
}
.area-chara .swiper-button-next::after {
  border-bottom: 20px solid transparent;
  border-left: 30px solid #272727;
  border-top: 20px solid transparent;
}

@media screen and (min-width: 840px) {
  .area-404 h2 {
    padding-top: 20px;
    margin: -109px auto 30px;
    max-width: 351px;
  }
}
@media screen and (max-width: 839px) {
  .area-404 h2 {
    padding-top: 3.8vw;
    margin: -25vw auto 4vw;
  }
}

.area-about h2 {
  background: url(../images/about_ttl.png?1) no-repeat center top;
  background-size: 100% auto;
}
@media screen and (min-width: 840px) {
  .area-about h2 {
    padding-top: 20px;
    margin: -109px auto 30px;
    max-width: 351px;
  }
}
@media screen and (max-width: 839px) {
  .area-about h2 {
    padding-top: 3.8vw;
    margin: -25vw auto 4vw;
  }
}
.area-about .bnr {
  margin-top: 50px;
}
.area-about .bnr img {
  border: 4px solid #272727;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}

.area-info {
  margin-bottom: 20px;
}
.area-info h2 {
  background: url(../images/info_ttl.png?1) no-repeat center top;
  background-size: 100% auto;
}
@media screen and (min-width: 840px) {
  .area-info h2 {
    padding-top: 23px;
    margin: -109px auto 30px;
    max-width: 351px;
  }
}
@media screen and (max-width: 839px) {
  .area-info h2 {
    padding-top: 4vw;
    margin: -25vw auto 2vw;
  }
}
.area-info .bnr {
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}
.area-info .bnr a {
  display: block;
  width: 48%;
}
.area-info .bnr a img {
  border: 4px solid #272727;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}

.footer {
  background: #d0f98c;
  text-align: center;
  font-size: 1.2rem;
  padding: 40px 0 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer .company-logo {
  margin-bottom: 30px;
}
.footer .company-logo img {
  width: 300px;
}
.footer p {
  font-weight: normal;
}

/*
===========================================
下層ページ
===========================================
*/
.page-second {
  padding-top: 80px;
}
.page-second .header-logo {
  position: absolute;
}
@media screen and (min-width: 840px) {
  .page-second .header-logo {
    top: 10px;
    left: 20px;
    width: 150px;
  }
}
@media screen and (max-width: 839px) {
  .page-second .header-logo {
    width: 26vw;
    top: 2vw;
    left: 2vw;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: 0;
}

.pager {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 80px;
}
.pager .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.pager .wp-pagenavi a {
  display: inline-block;
  color: #272727;
  font-size: 1.4rem;
  min-width: 30px;
  transition: 0.3s;
  box-sizing: border-box;
  padding: 0 5px;
  margin: 0;
  text-decoration: none;
  width: 36px;
  height: 36px;
  border: 3px solid #272727;
  background: #fff;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
}
.pager .wp-pagenavi .previouspostslink {
  margin-right: 15px;
}
.pager .wp-pagenavi .nextpostslink {
  margin-left: 15px;
}
.pager .wp-pagenavi .nextpostslink:hover {
  opacity: 0.5;
}
.pager .wp-pagenavi a, .pager .wp-pagenavi .current, .pager .wp-pagenavi span {
  display: inline-block;
  line-height: 30px;
  font-weight: bold;
  margin: 0 10px 12px;
}
.pager .wp-pagenavi .current {
  transition: 0.3s;
  box-sizing: border-box;
  background: #272727;
  color: #fff;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  border: 3px solid #272727;
  line-height: 23px;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.2));
  margin: 0 10px;
}

/*
===========================================
news detail
===========================================
*/
.news-detail .date {
  background: #353535;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}
.news-detail .headline {
  margin: 20px 0 40px;
}
.news-detail .headline .title {
  font-size: 2.5rem;
  line-height: 4rem;
  font-weight: bold;
  display: inline;
}
.news-detail article {
  margin-bottom: 80px;
}
.news-detail article .text {
  padding: 10px 0;
  font-weight: bold;
  line-height: 1.6em;
}
.news-detail article h4 {
  padding: 10px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 30px 0;
}
.news-detail article h5 {
  padding: 6px 0 6px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 30px 0;
}
.news-detail article p {
  margin: 30px 0;
}
.news-detail .common-btn {
  padding-bottom: 80px;
}

/*
===========================================
404
===========================================
*/
.notfound {
  padding-bottom: 40px;
}
.notfound p {
  text-align: center;
  line-height: 2.5rem;
}
.notfound .common-btn {
  margin: 60px auto;
}

/*
=========================
pc / sp
=========================
*/
.sp {
  display: none;
}

@media screen and (max-width: 839px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=common.css.map */