@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=EB+Garamond);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@font-face {
  font-family: DINNLTP-B;
  src: url(../fonts/DINNLTP-B.otf);
}

@font-face {
  font-family: DINNLTP-B;
  src: url(../fonts/DINNLTP-B.woff);
}

@font-face {
  font-family: DINNLTP-B;
  src: url(../fonts/DINNLTP-B.woff2);
}

@font-face {
  font-family: DINNLTP-B-NUM;
  src: url(../fonts/DINNLTP-B.woff2);
  unicode-range: U+0030-0039;
}

/* mixinの定義 */
#load-area {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  margin-left: -230px;
  margin-top: -50px;
  display: block;
  width: 500px;
}

.guestLister {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 38px;
}

/* ooo, css circles*/
.circle {
  display: inline-block;
  position: relative;
  /* key up the animations! */
  -webkit-animation: dotloader 2.5s infinite;
  -moz-animation: dotloader 2.5s infinite;
  -ms-animation: dotloader 2.5s infinite;
  -o-animation: dotloader 2.5s infinite;
  animation: dotloader 2.5s infinite;
}

.circle + .circle {
  margin-left: -25px;
  /* staggered effect cause by delay property */
  -webkit-animation: dotloader 2.5s 0.2s infinite;
  -moz-animation: dotloader 2.5s 0.2s infinite;
  -ms-animation: dotloader 2.5s 0.2s infinite;
  -o-animation: dotloader 2.5s 0.2s infinite;
  animation: dotloader 2.5s 0.2s infinite;
}

.circle + .circle + .circle {
  margin-left: -25px;
  -webkit-animation: dotloader 2.5s 0.4s infinite;
  -moz-animation: dotloader 2.5s 0.4s infinite;
  -ms-animation: dotloader 2.5s 0.4s infinite;
  -o-animation: dotloader 2.5s 0.4s infinite;
  animation: dotloader 2.5s 0.4s infinite;
}

.circle + .circle + .circle + .circle {
  margin-left: -25px;
  -webkit-animation: dotloader 2.5s 0.6s infinite;
  -moz-animation: dotloader 2.5s 0.6s infinite;
  -ms-animation: dotloader 2.5s 0.6s infinite;
  -o-animation: dotloader 2.5s 0.6s infinite;
  animation: dotloader 2.5s 0.6s infinite;
}

/* here be the animations matey! */
@keyframes "dotloader" {
  0%, 20% {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    left: 0%;
    background-color: rgba(0, 0, 0, 0);
  }
  30%, 70% {
    width: 8px;
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  80%, 100% {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

@-moz-keyframes dotloader {
  0%, 20% {
    width: 4px;
    height: 4px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    left: 0%;
    background-color: rgba(0, 0, 0, 0);
  }
  30%, 70% {
    width: 8px;
    height: 8px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  80%, 100% {
    width: 4px;
    height: 4px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes "dotloader" {
  0%, 20% {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    left: 0%;
    background-color: rgba(0, 0, 0, 0);
  }
  30%, 70% {
    width: 8px;
    height: 8px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  80%, 100% {
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

@-ms-keyframes "dotloader" {
  0%, 20% {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    left: 0%;
    background-color: rgba(0, 0, 0, 0);
  }
  30%, 70% {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  80%, 100% {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

@-o-keyframes "dotloader" {
  0%, 20% {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    left: 0%;
    background-color: rgba(0, 0, 0, 0);
  }
  30%, 70% {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  80%, 100% {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
  }
}

.allloaded {
  opacity: 0;
  visibility: hidden;
}

* {
  box-sizing: border-box;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  overflow-x: hidden;
  background-size: 50%;
  min-height: 100vh;
  z-index: 0;
  position: relative;
}

body::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url("../images/bg.jpg?2") center/cover no-repeat;
	/*background-size: 100%;*/
	z-index:-1;
}

body a {
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #b695ff;
  transition: all .2s;
}

body a:hover, body a:active, body a:focus {
  color: #6E5D93;
}

body.fadeout:after {
  opacity: 1;
}

header {
  position: fixed;
  z-index: 5;
  width: 100%;
  height:86px;
  border-bottom: 4px solid #000;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

header h1 {
  width: 215px;
  height: 50px;
  margin: 5px 10px;
  position: relative;
  z-index: 3;
}

header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/logo.svg?1") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
	header h1 a {
		height: 80%;
		margin: 8px 0 0;
	}
}

header #hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  header #hamburger {
    position: fixed;
    display: inline-block;
    width: 50px;
    height: 50px;
    top: 14px;
    right: 6px;
    background: transparent;
    cursor: pointer;
    z-index: 4;
  }
  header #hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-out;
  }
  header #hamburger span:nth-of-type(1) {
    top: 10px;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 1.5px;
  }
  header #hamburger span:nth-of-type(2) {
    top: 17px;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 1.5px;
  }
  header #hamburger span:nth-of-type(3) {
    top: 24px;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 1.5px;
  }
  header #hamburger span:nth-of-type(4) {
    top: 32px;
    font-size: 9px;
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  }
  header #hamburger.active span:nth-of-type(1) {
    top: 18px;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  header #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #hamburger.active span:nth-of-type(3) {
    top: 18px;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  header #hamburger.active + nav.global {
    left: 0;
    top: 0;
    z-index: 2;
    transform: translateY(0);
  }
  header #hamburger.active + nav.global li {
    transform: none;
    opacity: 1;
  }
}

header nav {
  width: 800px;
}

header nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

header nav ul li {
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  header nav ul li {
    width: 100%;
    padding: 10px 50px;
  }
}

header nav ul li a {
  color: #fff;
}
header nav ul li a:hover img {
  animation: shake 0.4s ease;
}

@media screen and (max-width: 768px) {
  header nav {
    width: 100%;
    height: 100%;
    -ms-flex-line-pack: center;
    align-content: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: .3s all;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 2;
  }
}

header .ico_twitter {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display: block;
  position: relative;
}

@media screen and (max-width: 768px) {
  header .ico_twitter {
    margin: 5px 60px 0 0;
  }
}

header .ico_twitter span {
  display: none;
}

header .ico_twitter:after {
  position: absolute;
  font-family: icomoon;
  content: '\e90c';
  font-size: 30px;
  display: block;
  color: #1DA0F1;
  width: 30px;
  height: 30px;
}

section h2 {
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
  font-size: 3.6rem;
  letter-spacing: .3rem;
  text-align: center;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
  position: relative;
}

section h3, section h4, section h5 {
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
}

section p {
  font-size: 1.5rem;
  line-height: 2.6rem;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 400;*/
  font-style: normal;
}

section a.button {
  display: block;
  width: 440px/*360px*/;
  height: 60px;
  border-radius: 30px;
  font-size: 1.7rem;
  line-height: 54px;
  text-align: center;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  font-style: normal;
  position: relative;
  background: #7660a7;
  border: 3px solid #000;
  margin: 30px auto 10px;
  color: #fff;
  transition: all .2s;
}
section a.button:hover {
  animation: shake 0.4s ease;
}

@media screen and (max-width: 768px) {
  section a.button {
    width: 100%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 380px) {
  section a.button {
    width: 100%;
    font-size: 1.4rem;
  }
}

section a.button:after {
  content: '';
  width: 440px;/*360px*/
  height: 60px;
  display: block;
  border-radius: 30px;
  position: absolute;
  top: 2px;
  left: -3px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  section a.button:after {
    width: 100%;
    border: 3px solid #000;
    top: -1px;
  }
}

section span.button {
  display: block;
  width: 440px;/*360px*/
  height: 60px;
  border-radius: 30px;
  border: 4px;
  font-size: 1.7rem;
  line-height: 54px;
  text-align: center;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
  position: relative;
  background: #E3E3E3;
  border: 3px solid #000;
  margin: 30px auto 10px;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  section span.button {
    width: 100%;
    font-size: 1.5rem;
  }
}

section span.button:after {
  content: '';
  width: 440px;/*360px*/
  height: 60px;
  background: #000;
  display: block;
  border-radius: 30px;
  position: absolute;
  top: 2px;
  left: -3px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  section span.button:after {
    width: 100%;
    border: 3px solid #000;
    top: -1px;
  }
}

section div.btn_btxt {
  font-size: 1.5rem;
  line-height: 2.6rem;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  text-align: center;
}

section strong {
  font-size: 1.1em;
}

section strong.line-blue span {
  background: linear-gradient(transparent 60%, #1DA0F1 60%);
}

section strong.line-yellow span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

section strong.line-pink span {
  background: linear-gradient(transparent 60%, #ff7cc9 60%);
}

section strong.red {
  color: #FF2E9C;
}

section strong.blue {
  color: #1DA0F1;
}

section strong.gold {
  color: #C4B172;
}

section strong.double-line {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1em 0;
}

section strong.double-line-blue {
  border-top: 1px solid #1DA0F1;
  border-bottom: 1px solid #1DA0F1;
  padding: 1em 0;
  color: #1DA0F1;
}

section strong.double-line-gold {
  border-top: 1px solid #C4B172;
  border-bottom: 1px solid #C4B172;
  padding: 1em 0;
  color: #C4B172;
}

section#first {
  background: url('../images/img_kv.jpg?4') top/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom:20px;
}
section#first::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(to right, #73c6c4 50%, #f19c97 50%);
}

@media screen and (max-width: 768px) {
  section#first {
    padding: 80px 0 0;
    height: calc(100vh - 100px);
	background: url('../images/img_kv_sp.jpg?2') top/cover no-repeat;
  }
}

section#first .firstImage{
	width: 400px;
}

section#first h2 {
	width: 100%;
	height: 142px;
	text-indent: -9999px;
	background: url(../images/logo.svg?1) no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	section#first h2 {
		width: 100%;
		margin: auto;
	}
}

section#first .onair {
  width: 100%;
  height: 52px;
  text-indent: -9999px;
  background: url("../images/onair.svg") no-repeat center;
  background-size: contain;
  margin: 15px 0 10px;
}

@media screen and (max-width: 768px) {
  section#first .onair {
    margin: 0 auto;
    width: 80%;
  }
}


section#broadcast {
	margin: 0 0 60px;
}

section#broadcast h2.title_tv {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_tv.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
  section#broadcast h2.title_tv {
    width: 100%;
	margin-top: 10px;
  }
}

section#broadcast h2.title_otherbroadcast {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_otherbroadcast.svg?1") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
  section#broadcast h2.title_otherbroadcast {
    width: 80%;
	margin-top: 10px;
  }
}

section#broadcast h2.title_radio {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_radio.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
  section#broadcast h2.title_radio {
    width: 100%;
	margin-top: 10px;
  }
}

section#broadcast h2.title_stream {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_stream.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
  section#broadcast h2.title_stream {
    width: 100%;
	margin-top: 10px;
  }
}

section#broadcast .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#broadcast .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -40px;
	width: 120px;
}
section#broadcast .img_btm_right {
  position: absolute;
  right: 30px;
  bottom: -40px;
  width: 120px;
}
section#broadcast .img_top_left {
	position: absolute;
	left: 30px;
	top: -40px;
	width: 120px;
}
section#broadcast .img_top_right {
	position: absolute;
	right: 30px;
	top: -40px;
	width: 120px;
}
@media screen and (max-width: 768px) {
	section#broadcast .img_btm_left,section#broadcast .img_top_left {
		left: 20px;
		width: 90px;
	}
	section#broadcast .img_btm_right,section#broadcast .img_top_right {
		right: 20px;
		width: 90px;
	}
}

section#broadcast .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px;
}

@media screen and (max-width: 768px) {
  section#broadcast .box {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 768px) {
  section#broadcast .box article {
    padding: 30px 10px 60px;
  }
}

section#broadcast .box dl {
  width: 500px;
  margin: 0 auto;
  font-size: 1.6rem;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl {
    width: 100%;
    font-size: 1.4rem;
	padding: 0 20px;
  }
}

section#broadcast .box dl dt {
  width: 30%;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl dt {
    width: 35%;
    padding: 5px;
  }
}

section#broadcast .box dl dd:nth-child(2) {
  padding: 10px;
  width: 70%;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl dd:nth-child(2) {
    width: 65%;
    padding: 5px;
	line-height: 1.3em;
  }
}

section#broadcast .box dl dd:nth-child(3) {
  width: 35%;
  padding: 10px;
  display: none;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl dd:nth-child(3) {
    width: 65%;
    padding: 5px 5px 15px 5px;
    margin-left: 35%;
  }
}

.pc {
  position: relative;
  z-index: 1;
}

.pc img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
    position: relative;
    z-index: 1;
  }
  .sp img {
    width: 100%;
    height: auto;
  }
}

footer {
  width: 100%;
  padding: 60px 0;
  text-align: center;
}

footer p {
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
}

.footerImg {
  width: calc(100% - 60px);
  height: auto;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .footerImg {
    display: none;
  }
}

.footerSp {
  display: none;
}

@media screen and (max-width: 768px) {
  .footerSp {
    display: block;
    width: calc(100% - 20px);
    height: auto;
    bottom: 5px;
    left: 10px;
    position: fixed;
    z-index: 2;
  }
}

/* テキスト - SPのみ
------------------------*/
@media screen and (max-width:767px){
  .brSP:before{content:"\A";display:block}
  .hiddenSP,.forPC,.forTB{display:none}
}
/* テキスト - TBのみ
------------------------*/
@media screen and (min-width:768px) and (max-device-width:991px){
  .brTB:before{content:"\A";display:block}
  .hiddenTB,.forPC,.forSP{display:none}
}
/* テキスト - PC
------------------------*/
@media screen and (min-width:992px){
  .brPC:before{content:"\A";display:block}
  .hiddenPC,.forTB,.forSP{display:none}
  }

.fontS{font-size:0.8em;}
.fontM{font-size:1.2em}
.fontMM{font-size:1.3em; line-height:1.6em;}
.fontL{font-size:1.5em;line-height:1.8}
.fontLL{font-size:2em}

.mt0{margin-top:0 !important}
.mt5{margin-top:5px !important}
.mt10{margin-top:10px !important}
.mt20{margin-top:20px !important}
.mt1em{margin-top:1em !important}
.mt2em{margin-top:2em !important}

.mb0{margin-bottom:0 !important}
.mb5{margin-bottom:5px !important}
.mb10{margin-bottom:10px !important}
.mb20{margin-bottom:20px !important}
.mb1em{margin-bottom:1em !important}
.mb2em{margin-bottom:2em !important}

.mr0{margin-right:0 !important}
.mr5{margin-right:5px !important}
.mr10{margin-right:10px !important}
.mr20{margin-right:20px !important}
.mr1em{margin-right:1em !important}
.mr2em{margin-right:2em !important}

.ml0{margin-left:0 !important}
.ml5{margin-left:5px !important}
.ml10{margin-left:10px !important}
.ml20{margin-left:20px !important}
.ml1em{margin-left:1em !important}
.ml2em{margin-left:2em !important}

.mtb0{margin-top:0;margin-bottom:0 !important}
.mrl8{margin-right:8px;margin-left:8px !important}

.fontRed{color:#dc000c!important;}

.txtC{text-align:center!important}
.txtR{text-align:right!important}
.txtL{text-align:left!important}


/*  ▼▼▼　26.3　追記　▼▼▼  */
section#movie {
}

section#movie .box {
  width: 1100px;
  margin: 40px auto 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section#movie .box {
    width: calc(100% - 20px);
  }
}

section#movie .box .mov-cnt {
}

@media screen and (max-width: 768px) {
  section#movie .box .mov-cnt {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: static;
  }
}

section#movie .box .mov-cnt iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#movie .box .mov-cnt iframe {
    height: 100%;
  }
}


section#guest {
  display: flex;
  padding: 0 0 60px;
	margin: auto;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}
@media screen and (max-width: 768px) {
  section#guest .box {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: auto;
  }
}

section#guest .box {
	width: 530px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#guest .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  padding: 26px;
  position: relative;
	display: flex;
	flex-direction: column;
}
section#guest .box article a.button{
	margin: auto auto 0;
}

section#guest .box article img {
  width: 100%;
  margin: 7px 0;
}

@media screen and (max-width: 768px) {
  section#guest .box {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: auto;
  }
}

section#guest .box .mov-cnt {
  /*width: 460px;*/
  height: 280px;
	}

@media screen and (max-width: 768px) {
  section#guest .box .mov-cnt {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: static;
  }
}

section#guest .box .mov-cnt iframe {
  width: 100%;
  height: 100%;
}

section#guest #next_Thu {
  margin: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  section#guest #next_Thu {
    margin: 0 auto 30px;
  }
}


section#guest #next_Thu h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_next_thu.svg?1") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
  section#guest #next_Thu h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#guest #next_Thu p {
  text-align: center;
}

section#guest #next_Fri h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_next_fri.svg?1") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#guest #next_Fri h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#guest #next_Fri p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  section#guest #next_Fri p br {
    display: none;
  }
}


section#news {
	margin: 0 0 60px;
	padding-top: 4em;/* 26.4.9 お知らせ一番上に移動の為。追加*/
}
section#news h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_news.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#news h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#news .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -50px;
	width: 120px;
}
section#news .img_btm_right {
  position: absolute;
  right: 30px;
  bottom: -50px;
  width: 120px;
}
section#news .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#news .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}
@media screen and (max-width: 768px) {
	section#news .img_btm_left,section#news .img_top_left {
		left: 20px;
		width: 90px;
	}
section#news .img_btm_right,section#news .img_top_right {
		right: 20px;
		width: 90px;
	}
}

section#news .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#news .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 190px 100px;
}

@media screen and (max-width: 768px) {
  section#news .box {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 768px) {
  section#news .box article {
    padding: 30px 10px 60px;
  }
}

section#news .box .dl_scroll {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 14em;
  margin: 0 auto;
  overflow-y: scroll;
  padding: 0 20px
}

section#news .box dl {
  width: 630px;
  margin: 0 auto;
  font-size: 1.6rem;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  section#news .box dl {
    width: 100%;
    font-size: 1.4rem;
  }
}

section#news .box dl dt {
  width: 16%;
  padding: 10px 10px 10px 0;
}

@media screen and (max-width: 768px) {
  section#news .box dl dt {
    width: 100%;
    padding: 14px 0 5px;
  }
}

section#news .box dl dd:nth-child(2) {
  width: 84%;
  word-break: break-all;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  section#news .box dl dd:nth-child(2) {
    width: 100%;
    padding: 5px 0 14px;
	border-bottom: 1px solid;
  }
}

section#news .box dl dd:nth-child(3) {
  width: 35%;
  padding: 10px;
  display: none;
}

@media screen and (max-width: 768px) {
  section#news .box dl dd:nth-child(3) {
    width: 65%;
    padding: 5px 5px 15px 5px;
    margin-left: 35%;
  }
}


section#introduction {
	margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#introduction {
    margin: 0 0 40px;
  }
}

section#introduction h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_introduction.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#introduction h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#introduction .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#introduction .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#introduction .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#introduction .box article {
    padding: 30px 20px 60px;
  }
}

section#introduction .box p {
  text-align: center;
}
@media screen and (max-width: 768px) {
	section#introduction .box p {
		text-align: left;
	}
}

section#introduction .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -50px;
	width: 120px;
}

section#introduction .img_btm_right {
	position: absolute;
	right: 30px;
	bottom: -50px;
	width: 120px;
}
section#introduction .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#introduction .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}
@media screen and (max-width: 768px) {
	section#introduction .img_btm_left,section#introduction .img_top_left {
		left: 20px;
		width: 90px;
	}
	section#introduction .img_btm_right,section#introduction .img_top_right {
		right: 20px;
		width: 90px;
	}
}


section#character {
  margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#character {
    margin: 0 0 40px;
  }
}

section#character h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_character.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#character h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#character .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}
@media screen and (max-width: 768px) {
  section#character .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

section#character .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  section#character .box article {
    padding: 30px;
  }
}

section#character .box article ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 40px 20px 30px;
}
@media screen and (max-width: 768px) {
	section#character .box article ul{
		padding: 0;
	}
}

section#character .box article ul li{
	width:calc(100% / 3 - 20px);
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#character .box article ul li{
	width: calc(100% / 2 - 20px);
	/*padding: 5px;*/
	min-width: 0;
	}
}

section#character .box article ul li img{
	width: 70%;
}
@media screen and (max-width: 768px) {
	section#character .box article ul li img{
		width: 100%;
		height: auto;
		display: block;
	}
}

section#character h2.characterCast {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_cast.svg") no-repeat;
  margin: 70px auto 0;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 768px) {
	section#character h2.characterCast {
		width: 100%;
	}
}

section#character .box article ul.castList{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding-top: 10px;
}
@media screen and (max-width: 768px) {
	section#character .box article ul.castList{
		flex-direction: column;
		padding-top: 20px;
	}
}

section#character .box article ul.castList li{
	width: calc(100% / 2);
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#character .box article ul.castList li{
		width: 100%;
		margin-bottom: 20px
	}
}

section#character .box article ul.castList li img{
	width: 80%;
}
@media screen and (max-width: 768px) {
	section#character .box article ul.castList li img{
		width: 100%;
	}
}

section#character .box p {
	text-align: center;
}
section#character .box p.castName{
	line-height: 1.2em;
	margin-top: 16px;
}

section#character .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -40px;
	width: 120px;
}
section#character .img_btm_right {
	position: absolute;
	right: 30px;
	bottom: -40px;
	width: 120px;
}
section#character .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#character .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}
@media screen and (max-width: 768px) {
	section#character .img_btm_left,section#character .img_top_left {
		left: 20px;
		width: 70px;
	}
	section#character .img_btm_right,section#character .img_top_right {
		right: 20px;
		width: 70px;
	}
}


section#cast {
	margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#cast {
    margin: 0 0 40px;
  }
}

section#cast h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_cast.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#cast h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#cast .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#cast .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#cast .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#cast .box article {
    padding: 30px 20px 60px;
  }
}

section#cast .box article ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding-top: 40px;
}
@media screen and (max-width: 768px) {
	section#cast .box article ul{flex-direction: column;}
}

section#cast .box article ul li{
	width: calc(100% / 2);
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#cast .box article ul li{
		width: 100%;
		margin-bottom: 20px
	}
}

section#cast .box article ul li img{
	width: 60%;
}
@media screen and (max-width: 768px) {
	section#cast .box article ul li img{
		width: 80%;
	}
}

section#cast .box p {
	text-align: center;
}
section#cast .box p.castName{
	line-height: 1.2em;
	margin-top: 16px;
}

section#cast .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -40px;
	width: 120px;
}

section#cast .img_btm_right {
	position: absolute;
	right: 30px;
	bottom: -40px;
	width: 120px;
}
section#cast .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#cast .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}

@media screen and (max-width: 768px) {
	section#cast .img_btm_left,section#cast .img_top_left {
		left: 20px;
		width: 70px;
	}
	section#cast .img_btm_right,section#cast .img_top_right {
		right: 20px;
		width: 70px;
	}
}

section#broadcast .box dl.broadcast_Radio {
  width: 670px;
  margin: 0 auto;
  font-size: 1.6rem;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  /*font-weight: 600;*/
  font-style: normal;
  align-items: center;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl.broadcast_Radio{
    width: 100%;
    font-size: 1.4rem;
	padding: 0 20px;
  }
}

section#broadcast .box dl.broadcast_Radio dt {
  width: 40%;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl.broadcast_Radio dt {
    width: 100%;
    padding: 5px;
	text-align: center;
	margin-top: 14px;
  }
}

section#broadcast .box dl.broadcast_Radio dt img {
  width: 240px;
}
@media screen and (max-width: 768px) {
	section#broadcast .box dl.broadcast_Radio dt img {
	  width: 100%;
	}
}

section#broadcast .box dl.broadcast_Radio dd:nth-child(2) {
  padding: 10px;
  width: 60%;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl.broadcast_Radio dd:nth-child(2) {
    width: 100%;
    padding: 5px;
	line-height: 1.3em;
	text-align: center;
  }
}

section#broadcast .box dl.broadcast_Radio dd:nth-child(3) {
  width: 35%;
  padding: 10px;
  display: none;
}

@media screen and (max-width: 768px) {
  section#broadcast .box dl.broadcast_Radio dd:nth-child(3) {
    width: 65%;
    padding: 5px 5px 15px 5px;
    margin-left: 35%;
  }
}

section#broadcast .box article ul {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding-top: 10px;
	align-items: flex-end;
}

@media screen and (max-width: 768px) {
	section#broadcast .box article ul {
		padding-top: 0;
	}
}
section#broadcast .box article ul li{
	width: 150px;
	margin: 10px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#broadcast .box article ul li{
		width: 140px;
	}
}

section#broadcast .box article ul li img{
	width: 100%;
	padding: 10px;
}
/*@media screen and (max-width: 768px) {
	section#broadcast .box article ul li img{
		width: 100%;
	}
}*/


section#contact {
	margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#contact {
    margin: 0 0 40px;
  }
}

section#contact h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_contact.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#contact h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#contact .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#contact .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#contact .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#contact .box article {
    padding: 30px 20px 30px;
  }
}
section#news .box article
section#contact .box p {
  text-align: center;
}

section#contact .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -50px;
	width: 120px;
}
section#contact .img_btm_right {
	position: absolute;
	right: 30px;
	bottom: -50px;
	width: 120px;
}
section#contact .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#contact .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}

@media screen and (max-width: 768px) {
	section#contact .img_btm_left,section#contact .img_top_left {
		left: 20px;
		width: 90px;
	}
	section#contact .img_btm_right,section#contact .img_top_right {
		right: 20px;
		width: 90px;
	}
}

section#sns {
	margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#sns {
    margin: 0 0 40px;
  }
}

section#sns h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_sns.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#sns h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#sns .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#sns .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#sns .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#sns .box article {
    padding: 30px 20px 60px;
  }
}

section#sns .box p {
  text-align: center;
}

section#sns .img_btm_left {
	position: absolute;
	left: -40px;
	bottom: -40px;
	width: 120px;
}
section#sns .img_btm_right {
	position: absolute;
	right: -40px;
	bottom: -40px;
	width: 120px;
}
section#sns .img_top_left {
	position: absolute;
	left: -40px;
	top: -40px;
	width: 120px;
}
section#sns .img_top_right {
	position: absolute;
	right: -40px;
	top: -40px;
	width: 120px;
}
@media screen and (max-width: 768px) {
	section#sns .img_btm_left,section#sns .img_top_left {
		left: 40px;
		width: 70px;
	}
	section#sns .img_btm_right,section#sns .img_top_right {
		right: 40px;
		width: 70px;
	}
}

section#sns .box article ul {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding-top: 10px;
	align-items: flex-end;
}

@media screen and (max-width: 768px) {
	section#sns .box article ul {
		padding-top: 0;
	}
}
section#sns .box article ul li{
	width: 70px;
	margin: 10px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#sns .box article ul li{
		/*width: 140px;*/
	}
}

section#sns .box article ul li img{
	width: 100%;
	padding: 10px;
}
/*@media screen and (max-width: 768px) {
	section#sns .box article ul li img{
		width: 100%;
	}
}*/


section#theme {
  margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#theme {
    margin: 0 0 40px;
  }
}

section#theme h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_theme.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#theme h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#theme .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#theme .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#theme .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#theme .box article {
    padding: 30px;
  }
}

section#theme .box dl {
  width: 780px;
  margin: 0 auto;
  display: flex;
  /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
  align-items: center;
}

@media screen and (max-width: 768px) {
  section#theme .box dl{
    width: 100%;
  }
}

section#theme .box dl dt {
  width: 50%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  section#theme .box dl dt {
    width: 100%;
  }
}

section#theme .box dl dt img {
  width: 350px;
}
@media screen and (max-width: 768px) {
	section#theme .box dl dt img {
	  width: 100%;
	  margin-bottom: 1em;
	}
}
section#theme .box dl dd {
	padding-left: 3em;
}

@media screen and (max-width: 768px) {
  section#theme .box dl dd {
    width: 100%;
	padding-left: 1em;
  }
}

section#theme .box p {
	/*padding: 5px 0;*/
}
section#theme .box p.artistName{
	/*font-weight: bold;*/
}
section#theme .box p.musicTitle{
	/*font-weight: bold;*/
	margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
	section#theme .box p.musicTitle{
		margin-top: 1em;
	}
}
section#theme .box p.Label{
	font-size: 0.9em;
}


/* キャラクターページ */
section#characterInfo {
  margin: 0 0 60px;
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  section#characterInfo {
    margin: 0 0 40px;
	padding-top: 80px;
  }
}

section#characterInfo h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_character.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#characterInfo h2 {
    width: 100%;
	margin: 10px 0 0;
  }
}

section#characterInfo .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}
@media screen and (max-width: 768px) {
  section#characterInfo .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

section#characterInfo .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 120px;
}

@media screen and (max-width: 768px) {
  section#characterInfo .box article {
    padding: 30px;
  }
}

section#characterInfo .box article ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 40px 0 30px;
	width: 600px;
	margin: auto;
}
@media screen and (max-width: 768px) {
	section#characterInfo .box article ul{
		padding: 10px 0 0;
		width: 100%;
	}
}

section#characterInfo .box article ul li{
	width: calc(100% / 5);
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#characterInfo .box article ul li{
	width: calc(100% / 3);
	padding: 5px 10px;;
	}
}

section#characterInfo .box article ul li img{
	width: 70%;
}
@media screen and (max-width: 768px) {
	section#characterInfo .box article ul li img{
		width: 100%;
	}
}

section#characterInfo .box p {
	font-size: 1.2em;
	/*text-align: center;*/
}

section#characterInfo .box .characterText{
	width: 490px;
    margin: 12px auto 0;
    padding: 10px;
    border: 1px solid;
    border-radius: 6px;
    text-align: left;
}
@media screen and (max-width: 768px) {
	section#characterInfo .box .characterText{
		width: 100%;
		padding: 10px;
	}
}


section#characterInfo .box h3 {
	font-size: 2em;
	/*font-weight: bold;*/
	margin-bottom: 10px;
}

/* キャラクター一覧 */
section#characterInfo .characterList{
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 768px) {
	section#characterInfo .characterList{
		margin-bottom: 10px;
	}
}
section#characterInfo .characterList img {
	width: 70px;
	cursor: pointer;
	margin: 15px;
}
@media screen and (max-width: 768px) {
	section#characterInfo .characterList img {
		width: 50px;
		cursor: pointer;
		margin: 10px;
	}
}

section#characterInfo .characterList img {
  transform-origin: center bottom;
}

section#characterInfo .characterList img:hover:not(.clicked) {
  animation: shake 0.5s ease;
}

section#characterInfo .characterList img.clicked {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-20px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ラジオボタン非表示 */
input {
  display: none;
}

/* 全部非表示 */
.characterContents {
  display: none;
  text-align: center;
}

/* 選択されたものだけ表示 */
#c1:checked ~ .characterDetails .c1,
#c2:checked ~ .characterDetails .c2,
#c3:checked ~ .characterDetails .c3,
#c4:checked ~ .characterDetails .c4,
#c5:checked ~ .characterDetails .c5,
#c6:checked ~ .characterDetails .c6,
#c7:checked ~ .characterDetails .c7,
#c8:checked ~ .characterDetails .c8 {
 	display: block;
	animation: dropFadeBounce 0.5s ease;
}

/* 詳細エリア */
section#characterInfo .characterDetails {
	text-align: center;
	min-height: 320px;
}
@keyframes dropFadeBounce {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(5px) scale(1.05);
  }
  80% {
    transform: translateY(-3px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 768px) {
	section#characterInfo .characterDetails {
		width: 100%;
	}
}

section#characterInfo .characterDetails img {
  height: 220px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
	section#characterInfo .characterDetails img {
	  height: 150px;
	}
}

@keyframes shake {
  0%   { transform: translateX(0) rotate(0deg); }
  20%  { transform: translateX(-4px) rotate(-2deg); }
  40%  { transform: translateX(4px) rotate(2deg); }
  60%  { transform: translateX(-3px) rotate(-1deg); }
  80%  { transform: translateX(3px) rotate(1deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

@keyframes shake_5s {
  0%, 85%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }

  87% { transform: translate(-4px, 2px) rotate(-15deg); }
  89% { transform: translate(4px, -2px) rotate(15deg); }
  91% { transform: translate(-3px, 1px) rotate(-5deg); }
  93% { transform: translate(3px, -1px) rotate(5deg); }
  95% { transform: translate(0, 0) rotate(0deg); }
}
.shake_5s {
  animation: shake_5s 5s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake_7s {
   0%, 90%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }

  92% { transform: translate(-4px, 2px) rotate(-15deg); }
  94% { transform: translate(4px, -2px) rotate(15deg); }
  96% { transform: translate(-3px, 1px) rotate(-5deg); }
  98% { transform: translate(3px, -1px) rotate(5deg); }
}
.shake_7s {
  animation: shake_7s 7s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97);
}


/* ゲスト詳細 */
.guest_wrap {
	display: flex;
    padding: 120px 0 0;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
@media screen and (max-width: 768px) {
	.guest_wrap {
		padding-top: 80px;
	}
}

.guest_wrap section#guest {
	margin: 0 20px 0 0;
	padding: 0;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guest {
    margin: 0;
	padding: 0;
  }
}

.guest_wrap section#guest .box {
	width: 720px;
	margin: 0 auto;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: 4px solid #666666;
	position: relative;
	height: auto;
}
@media screen and (max-width: 768px) {
  .guest_wrap section#guest .box {
    width: calc(100% - 20px);
    margin: 0 auto;
	height: auto;
  }
}

.guest_wrap section#guest .box article {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	z-index: 2;
	overflow: hidden;
	color: #fff;
	padding: 26px;
	position: relative;
}

.guest_wrap section#guest .box article .guestImg{
	width: 600px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.guest_wrap section#guest .box article .guestImg{
		width: 100%;
	}
}

.guest_wrap section#guest .box article img {
  width: 100%;
  margin: 7px 0;
}

.guest_wrap section#guest #next_Fri h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_next_fri.svg?1") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}
.guest_wrap section#guest #next_Thu h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_next_thu.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guest #next_Fri h2,.guest_wrap section#guest #next_Thu h2 {
    width: 100%;
	margin-top: 10px;
  }
}

.guest_wrap section#guest #next_Fri p,.guest_wrap section#guest #next_Thu p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guest #next_Fri p br,.guest_wrap section#guest #next_Thu p br {
    display: none;
  }
}

.guest_wrap section#guest #next_Thu {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guest #next_Thu {
    margin: 0;
  }
}

.guest_wrap section#guestNavi {
	font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestNavi {
    margin: 20px 0 0;
	width: 100%;
  }
}

.guest_wrap section#guestNavi .box {
	width: 320px;
	margin: 0 auto;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: 4px solid #666666;
	position: relative;
}
@media screen and (max-width: 768px) {
  .guest_wrap section#guestNavi .box {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: auto;
  }
}

.guest_wrap section#guestNavi article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  padding: 26px;
  position: relative;
}

.guest_wrap section#guestNavi h2 {
  text-indent: -9999px;
  width: 200px;
  height: 45px;
  background: url("../images/title_guestnavi.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestNavi h2 {
    /*width: 100%;*/
	margin-top: 10px;
  }
}

.guest_wrap section#guestNavi p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestNavi p br {
    display: none;
  }
}

.guest_wrap section#guestNavi ul {
	/*padding: 10px;*/
}
.guest_wrap section#guestNavi ul li {
	font-size: 1.5rem;
	padding: 10px 5px;
	border-bottom: 1px #fff dotted;
}

.guest_wrap section#guestNavi article.monthList {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  padding: 26px;
  position: relative;
}

.guest_wrap section#guestNavi article.monthList h2 {
  text-indent: -9999px;
  width: 200px;
  height: 45px;
  background: url("../images/title_archive.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestNavi article.monthList h2 {
    /*width: 100%;*/
	margin-top: 10px;
  }
}

.guest_wrap section#guestList {
	margin: 0 20px 0 0 ;
	font-family: 'Kosugi Maru',dnp-shuei-mgothic-std,sans-serif;
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestList {
    margin: 0;
	padding: 0;
	width: 100%;
  }
}

.guest_wrap section#guestList .box {
	/*width: 800px;*/
	width: 720px;
	margin: 0 auto;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: 4px solid #666666;
	position: relative;
}
@media screen and (max-width: 768px) {
  .guest_wrap section#guestList .box {
    width: calc(100% - 20px);
    margin: 0 auto;
    height: auto;
  }
}

.guest_wrap section#guestList article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  padding: 26px;
  position: relative;
}

.guest_wrap section#guestList h2 {
  text-indent: -9999px;
  width: 200px;
  height: 45px;
  background: url("../images/title_guestlist.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

.guest_wrap section#guestList h2.archive_thu {
  text-indent: -9999px;
  width: 640px;
  height: 100px;
  background: url("../images/title_archive_thu.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

.guest_wrap section#guestList h2.archive_fri {
  text-indent: -9999px;
  width: 640px;
  height: 100px;
  background: url("../images/title_archive_fri.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  .guest_wrap section#guestList h2 {
    /*width: 100%;*/
	margin-top: 10px;
  }
	.guest_wrap section#guestList h2.archive_thu {
		width: 100%;
		height: 45px;
	}
	.guest_wrap section#guestList h2.archive_fri {
		width: 100%;
		height: 45px;
	}
}

.guest_wrap section#guestList p {
  text-align: center;
}

@media screen and (max-width: 768px) {
   .guest_wrap section#guestList p br {
    display: none;
  }
}

.guest_wrap section#guestList ul {
	/*padding: 10px;*/
}
.guest_wrap section#guestList ul li {
	font-size: 1.5rem;
	padding: 10px 5px;
	border-bottom: 1px #fff dotted;
	line-height: 1.5em;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.popup-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}
/* 表示時 */
.popup.show {
  opacity: 1;
  visibility: visible;
}
.popup.show .popup-content {
  transform: translateY(0);
}
.popup img {
	width: 900px;
	height: auto;
	display: block;
	margin: auto;
}
.popup img:hover {
  animation: shake 0.4s ease;
}
@media screen and (max-width: 768px) {
	.popup img {
		width: 90%;
	}
}
#closeBtn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
	#closeBtn {
		right: 10px;
	}
}

section#present {
	margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  section#present {
    margin: 0 0 40px;
  }
}

section#present h2 {
  text-indent: -9999px;
  width: 350px;
  height: 82px;
  background: url("../images/title_present.svg") no-repeat;
  margin: -14px auto 14px;
	-webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.9));
}

@media screen and (max-width: 768px) {
  section#present h2 {
    width: 100%;
	margin-top: 10px;
  }
}

section#present .box {
  width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 4px solid #666666;
  position: relative;
}

section#present .box article {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden;
	color: #fff;
	padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  section#present .box {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  section#present .box article {
    padding: 30px 20px 30px;
  }
}
section#news .box article
section#present .box p {
  text-align: center;
}

section#present .box p img {
	width: 800px;
	margin: 1em auto 0;
}
@media screen and (max-width: 768px) {
	section#present .box p img {
		width: 100%;
	}
}

section#present .img_btm_left {
	position: absolute;
	left: 30px;
	bottom: -50px;
	width: 120px;
}
section#present .img_btm_right {
	position: absolute;
	right: 30px;
	bottom: -50px;
	width: 120px;
}
section#present .img_top_left {
	position: absolute;
	left: 30px;
	top: -50px;
	width: 120px;
}
section#present .img_top_right {
	position: absolute;
	right: 30px;
	top: -50px;
	width: 120px;
}

@media screen and (max-width: 768px) {
	section#present .img_btm_left,section#present .img_top_left {
		left: 20px;
		width: 90px;
	}
	section#present .img_btm_right,section#present .img_top_right {
		right: 20px;
		width: 90px;
	}
}