@charset "UTF-8";




@font-face {
  font-family: 'Inter UI';
  font-style:  normal;
  font-weight: 400;
  src: url("./font/Inter-UI-Regular.woff2") format("woff2"),
       url("./font/Inter-UI-Regular.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style:  italic;
  font-weight: 400;
  src: url("./font/Inter-UI-Italic.woff2") format("woff2"),
       url("./font/Inter-UI-Italic.woff") format("woff");
}

@font-face {
  font-family: 'Inter UI';
  font-style:  normal;
  font-weight: 500;
  src: url("./font/Inter-UI-Medium.woff2") format("woff2"),
       url("./font/Inter-UI-Medium.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style:  italic;
  font-weight: 500;
  src: url("./font/Inter-UI-MediumItalic.woff2") format("woff2"),
       url("./font/Inter-UI-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: 'Inter UI';
  font-style:  normal;
  font-weight: 700;
  src: url("./font/Inter-UI-Bold.woff2") format("woff2"),
       url("./font/Inter-UI-Bold.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style:  italic;
  font-weight: 700;
  src: url("./font/Inter-UI-BoldItalic.woff2") format("woff2"),
       url("./font/Inter-UI-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: 'Inter UI';
  font-style:  normal;
  font-weight: 900;
  src: url("./font/Inter-UI-Black.woff2") format("woff2"),
       url("./font/Inter-UI-Black.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style:  italic;
  font-weight: 900;
  src: url("./font/Inter-UI-BlackItalic.woff2") format("woff2"),
       url("./font/Inter-UI-BlackItalic.woff") format("woff");
}



/* css animation (prefixes are cut) */
.appear {
    transform-origin:center top;
    animation:show 1s both;
}
a {
    color:#C5D14B;
}

span.appear {display:inline-block;}
.d01 {animation-delay:0.1s;}
.d02 {animation-delay:0.2s;}
.d03 {animation-delay:0.3s;}
.d04 {animation-delay:0.4s;}
.d06 {animation-delay:0.6s;}
.d08 {animation-delay:0.8s;}
.d10 {animation-delay:1s;}
.d14 {animation-delay:1.4s;}
.d16 {animation-delay:1.6s;}
.d18 {animation-delay:1.8s;}
.d20 {animation-delay:2.0s;}
@keyframes show {
    0% {
        transform:translate(0,1em);
        opacity:0;
    }
    50% {
    }
    100% {
        transform:translate(0,0);
        opacity:1;
        text-shadow:none;
    }
}


#sp-nav{
    display:none;
}
/*Direct style for nav tag*/
nav{
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  height: 80px;
  z-index: 4;
  margin-top: 0;
  position: fixed;
  padding-top: 0px;
  background: none;
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}

/*Navgation general styles*/
/*Background Menu*/
nav .nav-background {
  top: 0px;
  opacity:0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: table;
  background: none;
  position: absolute;
  transition: background-color 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
nav.open .nav-background {
  opacity: 0.95;
  background-color:#000 !important;
  transition: background-color 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
nav.open {
  height: 100%;
  transition: none;
  -o-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
/*Navigation list*/
nav ul {
  top: -10%;
  padding: 0;
  opacity: 0;
  width: 100%;
  text-align: center;
  visibility: hidden;
  display: table-cell;
  vertical-align: middle;
  transform: perspective(600px) rotateX(10deg);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
}
nav ul li{
  visibility: hidden;
}
nav ul li a{
  color:#FFF;
  width: 100%;
  display: block;
  padding: 8px 0 0;
  letter-spacing: 0em;
  font-size:30px;
  font-weight:bold;
}
nav ul li.gnav-blue a{
  color:#0070C9;
  
}
nav ul li a:hover{
  opacity:0.9;
}

nav.open ul {
  top: 0;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: perspective(600px) rotateX(0deg);
}
nav.open ul li {
  color:#000;
  font-size: 28px;
  visibility: visible !important;
  margin-bottom:12px;
}
/*Menu bar logo and menu styles general*/
/*Logo*/

.menu{
  position: absolute;
  z-index: 2000;
}

.menu{
  top:0;
  right:0;
  height: 4px;
  width: 24px;
  text-align:right;
  margin: 36px 22px;
  background: #FFF;
  transition: all 0.3s;
}
.menu:before{
  top: -8px;
}
.menu:after{
  top: 8px;
}

.menu:before,
.menu:after{
  content: '';
  width: 24px;
  height: 4px;
  z-index: -1;
  display: block;
  position: absolute;
  background: #FFF;
  transition: all 0.3s;
}
#toggle:hover {
  transition: top 0.4s;
}
/*Javascript style toggle for menu appear and desappear style background*/
.solid #toggle .menu {
  background: #fff;
}
.solid #toggle .menu:after{
  background-color: #fff;
}
.solid #toggle .menu:before{
  background-color: #fff;
}
/*Javascript style toggle for menu hamburger appear and desappear*/
.open .menu {
  background: none !important;
}
.open .menu:after {
  top: 0 !important;
  background: # !important;
  transform: rotate(45deg);
}
.open .menu:before {
  top: 0 !important;
  background: #FFF !important;
  transform: rotate(-45deg);
}





html body{
    font-family:"Inter UI", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    background: #000000;
    position: relative;
    color:#FFF;
    letter-spacing:0.08em;
    line-height:1.6;
}

p{
    color:#FFF;
}


a {
    text-decoration:none;
    color:#FFF;
}

.c-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.c-bg--01 {
	

}

#content-wrap{
	width:100%;
}

#header-wrap{
    width:100%;
    height: 93px;
    position:fixed;
    z-index:100;
}
#header{
	width:100%;
    height: 93px;
	position:relative;
    border-bottom:1px solid #333333;
    background:#000;

}

#header-container{
    max-width:1040px;
    height:100%;
    margin:0 auto;
}

#header-logo{
    float:left;
    margin-left:20px;
    margin-right:50px;
    padding-right:45px;
    border-right:solid 1px #333333;
}
#header h1{
    font-family:"Inter UI", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;    color:#FFF;
    
    padding-top:33px;
	font-size:22px;
	letter-spacing:-0.02em;
	text-align:left;
    
}

#gnav{
    font-family:"Inter UI", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    list-style: none;
    font-weight:bold;
    padding-top:37px;
}

#gnav li{
    font-size:16px;
    text-decoration-style:none;
    float:left;
    margin-left:60px;
}

.gnav-blue a{
    color:#0070C9;
}

#top-visual{
    background: url(../img/background/top-visual-bg.jpg) center;
    background-size:cover;
    height:840px;
    position:relative;
}

#top-visual-logo{
    display:block;
    margin:0 auto;
    padding-top:300px;
    width:90%;
    height:auto;
    max-width:840px;
}
#fr-bt-wrap{
    position:absolute;
    bottom:0px;
    width:100%;
}
#front-bt-blk{
    background:#000000;
    width:95%;
    max-width:416px;
    height:120px;
    margin:0 auto;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#front-bt-blk p{
    text-align:center;
    font-size:18px;
    font-weight:bold;
    padding-top:25px;
    padding-bottom:10px;
}

.c-button{
    margin:0 auto;
    background:#0070c9;
    width:250px;
    height:46px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#front-bt-blk .c-button p{
    font-size:15px;
    padding-top:12px;
}

.c-button p{
    text-align:center;
    font-size:18px;
    font-weight:bold;
    font-size:15px;
    padding-top:12px;
    padding-bottom:10px;
}


.content-block{
    background:#000000;
    width:100%;
}
.content-container{
    width:100%;
    max-width:1040px;
    margin:0 auto;
    position:relative;
    padding-top:40px;
    padding-bottom:40px;
}

.c-title h2{
    margin-top:90px;
    font-size:20px;
    text-align:center;
}

.tit-line{
    margin:0 auto;
    width:70px;
    height:4px;
    margin-top:12px;
    margin-bottom:45px;
    background:#0070C9;
}

.onair-btn{
    width:100%;
    height:40px;
}
.onair-btn p{
    text-align:center;
    font-size:20px;
    font-weight:bold;
}
.oa-latest{

    float:left;
    height:100%;
    width:50%;
    border-bottom:solid 5px #0070C9;
}

.oa-next{
    float:left;
    height:100%;
    width:50%;
    border-bottom:solid 5px #5B5B5B;
}

.oa-content{
    margin-top:40px;
    margin-bottom:40px;
}

.onair-info-head{
    padding:20px;
    border-bottom:solid 1px #333333;
}

.onair-info-head h3{
    font-size:18px;
    margin-top:10px;
    margin-bottom:10px;
}


.oa-description{
    float:right;
    width:54%;
}
.oa-description p{
    margin:20px;
    font-size:14px;
}
.oa-img{
    float:right;
    width:46%;
    
}

.oa-img img{
    display:block;
    margin:0 auto;
    margin-top:20px;
    width:90%;
    height:auto;

}

.oa-archive{
    padding:40px 0 120px 0;
    width:100%;
    max-width:1040px;
    background:#191919;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;

}

.sns-part{
    margin-top:50px;
    padding-top:60px;
    padding-bottom:50px;
}

.sns-left{
    float:left;
    width:48%;
    margin:1%;
}
.sns-right{
    float:left;
    width:48%;
    margin:1%;
}

.sns-ic img{
    display:block;
    margin:0 auto;
    padding:15px;
}

.sns-content{
    background:#440000;
    height:400px;
    width:100%;
}


.bgGrey{
    background:#191919;
}


.about-program h3{
    font-size:18px;
    font-weight:bold;
    text-align:center;
    margin:20px;
}
.about-program p{
    padding-top:20px;
    margin:20px;
    font-size:14px;
    text-align:center;
    line-height:2;
}

.ap-sns{
    width:120px;
    height:52px;
    margin:0 auto;
    position:relative;
    margin-top:50px;
    margin-bottom:50px;
}

.ap-sns-l{
    position:absolute;
    top:0;
    left:0;
}

.ap-sns-c{
    position:absolute;
    top:0;
    left:70px;
}

.ap-sns-r{
    position:absolute;
    top:0;
    left:140px;
}

.time-table{
    width:100%;
    background:#000;
}

.tt-title{
    float:left;
    width:49%;
    position:relative;
    min-height:250px;
    border-right:solid 1px #333;
}

.tt-title h3{
    font-size:20px;
    text-align:center;
    display:block;
    margin:0 auto;
    padding-top:110px;
}

.tt-content{
    float:left;
    width:50%;
}

.tt-content p{
    text-align:left;
    margin-left:40px;
}


.navigators{
    width:95%;
    max-width:380px;
    margin:0 auto;
    padding-top:40px;
    padding-bottom:40px;
}

.navigator{
    float:left;
    width:48%;
    margin:1%;
}

.navigator img{
    width:100%;
}

.navigator p{
    text-align:center;
}

/*------------ARCHIVE LIST--------------*/
.archivelists{
    min-height:600px;
}
.archives{
    border-bottom:1px solid #333;
    width:100%;
    padding:20px 0 20px 0;
}

.archives-ic{
    float:left;
    width:40%;
}

.archives-ic img{
    width:90%;
    margin-left:20px;
}
.archives-content{
    float:left;
    width:60%;
}

.archives-title{
    margin-left:20px;
    margin-right:20px;
    border-bottom:1px solid #333;
    padding-bottom:10px;
}

.archives-title p{
    margin-bottom:5px;
}
.archive-article h3{
    font-size:18px;
    margin-bottom:10px;
}
.archives-text{
    font-size:14px;
    padding-top:10px;
    margin:20px;
}

.archive-article{
    padding:50px 0 50px 0;
}

.aa-title{
    padding:20px;
    border-bottom:solid 1px #333;
    padding-bottom:20px;
}

.archive-article h3{
    font-size:20px;
    margin-top:10px;
}
.archive-article h4{
    font-size:20px;
    margin-top:10px;
    margin-left:20px;
}

.aa-text{
    padding:20px;
    font-size:14px;
}

.aa-img{
    margin:0 auto;
    width:95%;
    margin-top:20px;
    margin-bottom:20px;
}

.aa-img img{
    width:100%;
    display:block;
}

.j-mecomment{
    margin:0 auto;
    width:95%;
    background:#FFF;
}

.p-t-50{
    padding-top:50px;
}
.cB{
    clear:both;
}

.backToTop{
    text-align:right;
}

.thankyou{
    height:400px;
}

.thankyou h3{
    margin-top:200px;
    font-size:50px;
    text-align:center;
}

.thankyou p{
    margin-top:20px;
    text-align:center;
}


@media screen and (max-width: 1080px) {
    #sp-nav{
        display:inherit;
    }
    #header-wrap{
        /*position:inherit;*/
    }
    #header-logo{
        border:none;
        position:fixed;
        z-index:101;
    }
    #header{
        background:none;
        border:none;
    }
	#gnav{
        display:none;
    }
	#top-visual {
        height: 620px;
    }
    #top-visual-logo{
        padding-top:190px;
    }
    .oa-archive{
        background:#191919;
        border-top-left-radius:0px;
        border-top-right-radius:0px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .tt-title{
        width:34%;
    }
    .tt-content{
        width:65%;
    }
}


@media screen and (max-width: 767px) {
    .oa-description{
        float:none;
        width:100%
    }
    .oa-img{
        float:none;
        width:100%;
    }
    .oa-img img {
        width: 95%;
    }
    .sns-left{
        float:none;
        margin:0 auto;
        width:95%;
    }
    .sns-right{
        float:none;
        margin:0 auto;
        width:95%;
    }
    .tt-title{
        float:none;
        width:100%;
        height:50px;
        min-height:0;
        border:none;
        border-bottom:solid 1px #333;
        padding:40px 0 20px 0;
    }
    .tt-title h3{
        padding-top:0;
    }
    .tt-content{
        float:none;
        width:100%;
        margin:0px;
        padding-bottom:40px;
    }
    .tt-content p{
        margin:20px;
        text-align:center;
    }
    .archives-ic{
        float:none;
        width:100%;
    }
    .archives-ic img{
        width:95%;
        margin:0 auto;
        display:block;
    }
    .archives-title{
        margin-left:20px;
        margin-top:20px;
        margin-right:20px;
    }
    .archives-content{
        float:none;
        width:100%;
    }


}



.c-footer {
    background-color: #000000;
}

.c-footer__inner {
    position: relative;
    width: 1040px;
    height: 109px;
    margin: 0 auto;
    padding-top: 44px;
    text-align: left;
}

.c-footer__copyright {
    margin-top: -16px;
    margin-left: -12px;
    text-align: center;
}

.c-footer__copyright img {
    width: 294px;
    height: auto;
}

.c-footer__logo {
    position: absolute;
    top: 53px;
    right: 0;
}

.c-footer-logo img {
    width: 177px;
    height: auto;
}




@media screen and (max-width: 1040px) {
    .c-footer__inner {
        width: 100%;
        height: auto;
        padding-top: 20px;
        padding-bottom: 34px;
    }
    .c-footer__copyright {
        margin-top: 10px;
    }
    .c-footer__copyright img {
        width: 157px;
    }
    .c-footer__logo {
        position: static;
        margin-top: 13px;
        text-align: center;
    }
    .c-footer__logo img {
        width: 88px;
    }
    #backtop {
        margin-left: 10px;
    }
    #backtop img {
        width: 30px;
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .c-footer__inner {
        width: 100%;
        height: auto;
        padding-top: 20px;
        padding-bottom: 34px;
    }
    .c-footer__copyright {
        margin-top: 10px;
    }
    .c-footer__copyright img {
        width: 157px;
    }
    .c-footer__logo {
        position: static;
        margin-top: 13px;
        text-align: center;
    }
    .c-footer__logo img {
        width: 88px;
    }
    #backtop {
        margin-left: 10px;
    }
    #backtop img {
        width: 30px;
        height: auto;
    }
}


/*@import url(utility.css);*/
/*  CLEAR FIX 
---------------------------------------------- */

.clrfix {
    zoom: 1;
    /*for IE 5.5-7*/
}

.clrfix:after {
    /*for modern browser*/
    content: "";
    display: block;
    clear: both;
    /* height: 0px; */
    /* overflow: hidden; */
}

* html .clrfix {
    display: inline-table;
    /*\*/
    display: block;
    /**/
}

.u-sidebar-pad {
    padding-left: 5px;
    padding-right: 5px;
}

.u-hover {
    -webkit-transition: 0.1s opacity linear;
    -o-transition: 0.1s opacity linear;
    transition: 0.1s opacity linear;
}

.u-hover:hover {
    opacity: 0.7;
}

#size-detect {
    font-family: pc;
    display: none;
}

@media screen and (max-width: 767px) {
    #size-detect {
        font-family: sp;
        display: none;
    }
}






.c-select {
    position: relative;
    color: #222222;
}
.c-select select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 37px;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
}
.c-select__inner {
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    border: 1px solid #DDDDDD;
    padding: 0 12px;
    width: 100%;
    height: 37px;
    font-size: 13px;
    line-height: 32px;
    background: #DDDDDD;
    padding-left: 44px;
    font-weight: bold;
    margin-top: -2px;
    border: 1px solid #838383;
}
.c-select__inner:before,
.c-select__inner:after {
    content: '';
    position: absolute;
    display: block;
}
.c-select__inner:before {
    top: 0;
    left: 0;
    bottom: 0;
    width: 29px;
    background: #DDDDDD;

    border-right: 1px solid;
    margin: 4px 0;
}
.c-select__inner:after {
    top: 50%;
    left: 7px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-top-color: #838383;
    border-width: 5px 5px 0 5px;
}

@media screen and (max-width: 767px) {
    
    /* overrides common styles */
    #commonFooter{
        width: 100%;
        position: static;
    }
    
    #commonFooterInner{
        padding: 15px 0;
        width: 100%;
        background-color: #282828;
        text-align: center;
    }
    #commonFooter li{
        display:inline-block !important;
        float: none;
    }
}


