@charset "utf-8";

* {
	padding: 0;
	margin: 0;
}

html {
  	height: 100%;
	font-size: 30px;	
}

body {
	word-wrap: break-word;
	height: 100%;
}


section,
article {
	display: block;
}

img {
	vertical-align: top;
}

h1{
	font-size: 0;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

li {
	list-style-type: none;
}

a {
	color: #0066CC;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	text-decoration: none;
}

a:hover {
	color: #0099CC;
	text-decoration: none;
}

footer{
	background-color: #FFFFFF;
	font-size: 0.6rem
}


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/*　ヘッダー　メニュー*/
nav{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color:#fff;
}

header{
	background-color:#fff;
 	z-index:1000;
  	position: fixed;
  	width: 100%;
	top:0;
	}

nav h1{
	margin-top:10px;	
}

.nav_02{
	padding-left: 44px;
	font-size: 25px;
}

.nav_02 a {
	color: #000;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	text-decoration: none;
}

.nav_02 a:hover {
	color: #7A7A7A;
	text-decoration: none;
}

.entry{
	color: #fff;
	background-color: #009FFF;
}

.nav_03 a:hover {
	opacity:0.8;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#000;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 9px;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:0px;
}

/* ハンバーガーメニュー */
.header_nav{
	background-color: #fff;
	color: #000;
	text-align: center;
	position:fixed;
	top:70px;
    right: -120%;
	width: 100%;
    /*動き*/
	transition: all 0.6s;
	z-index: 999;
}

.header_nav.panelactive{
    right: 0;
}


.header_menu{
	padding:0px;
	margin:0px;
}

.header_menu li{
	padding: 20px 0px;
	font-size: 1.2rem;
}

.menu_01{
	margin-top: 4px;
}

.top_pading{
	padding-top: 80px;
}


.header_nav ul{
	padding: 0;
	background-color: #fff;
}

.header_menu ul{
	margin-bottom: 0;
}

/*　フッター　*/
.footer_p{
	font-size: 0.4rem;
}

#page_top{
  width: 50px;
  height: 50px;
  background: #005192;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

footer{
	border-bottom: solid #005192 10px;
}

/*　トップ　*/
.top{
	background-color: #005192;
}

.top_p{
	font-size: 1.1rem;
}

.top_p span{
	font-size: 1.5rem;
}

/*　出演者　*/
.name span{
	font-size: 0.7rem;
}

h3{
	font-size: 1rem;
}

.box{
	text-align: center;
	display: block;
}

.box_text{
	text-align: left;
	display: inline-block;}


