@charset "UTF-8";
@media (min-width: 1200px){
.container {
    max-width: 1280px;
    margin: 0 auto;
}
}
html {font-size: 62.5%;}
body { font-size: 1.6em;}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    margin: 0;
}
ol, ul, dl {
    margin: 0;
    list-style-type: none;
    padding: 0;
}
p {
    margin: 0;
}
img { vertical-align: bottom;}
header {
}

header .container {background: #fff;}

header img {
    vertical-align: middle;
    width:70%;
    height: auto;
}

header #onair {
}
header .headerLogo {
    width: 20%;
}

header .headerLogo a {
    display: block;
    width: 100%;
    height: 100%;
}

header #onair .cont {
    background:#e15176;
    color: #fff;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}

header #onair .cont .ttl {
	background: #fff;
	color: #e15176;
	border-radius: 0 5px 5px 0;
	padding: 5px;
	min-width: 22%;
	max-width: 10em;
	text-align: center;
	font-size: 3vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
header #onair .cont .txtBox {
	display: flex;
	width: 78%;
	padding: 5px;
}
header #onair .cont .txtBox .programTime {
	margin-right: 10px;
}
header #onair .cont .txtBox .programTtl {
	overflow: hidden;
	width: 100%;
}
header #onair .cont .txtBox .programTtl .wrap {
    padding-left:100%;
    white-space:nowrap;
    animation-name:ticker;
    animation-timing-function:linear;
    animation-duration:20s;
    animation-iteration-count:infinite;
    display: inline-block;
}
header #onair .cont .txtBox .programTtl .wrap:hover {
    animation-play-state: paused;
}
@keyframes ticker {
  0% {
    transform: translate(0, 0);
    visibility: visible;
  }
  100% {
    transform: translate(-100%, 0);
  }
}
header #onair .cont a{
    color:#fff;
}
header #onair .headerProgramBtn {
    display:none;
}
header #onair .headerProgramBtn:after {
}
header #onair .headerProgramBtn a {
    display: none;
}

nav {
    background-image:url(../img/contents_bg.png);
}
nav > .container {
    width:100%;
    overflow-x: auto;
    -ms-overflow-style: none;
}
nav > .container::-webkit-scrollbar {
	display:none;
}
nav ul {
    list-style-type: none;
    display: flex;
    width: 260vw;
    /* height:12vw; */
    /* min-width: 1230px; */
    margin: 0;
    padding: 0;
    justify-content: space-between;
    overflow: hidden;
    padding-top:4px;
    /* width: 80%; */
}
nav ul li {
    width:34vw;
    margin-right: 1px;
}
nav ul li:last-child {
    margin-right: 0;
    width:17vw;
}
nav ul a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width:100%;
    height:100%;
    text-align: center;
    padding:10px 0;
    background: #abaaaa;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 3vw;
    font-weight: bold;
    line-height: 1.3;
    transform: translateY(4px);
    transition: all 100ms ease;
    opacity: .9;
    position: relative;
}
nav ul a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(0);
    opacity: 1;
}
nav ul a.current {
    transform: translateY(0);
    opacity: 1;
}

nav ul li:nth-child(1) a {background:#e15176;}
nav ul li:nth-child(2) a {background:#ff9933;}
nav ul li:nth-child(3) a {background:#ff0033;}
nav ul li:nth-child(4) a {background:#6666cc;}
nav ul li:nth-child(5) a {background:#3366CC;}
nav ul li:nth-child(6) a {background:#66cc99;}
nav ul li:nth-child(7) a {background:#ff99cc;}

nav .icon {
    width: 100%;
    height: 45px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
    z-index: 9999;
}
nav .icon i{
	display: inline-block;
	width: 25px;
	height: 3px;
	margin-right: 5px;
	border-radius: 3px;
	background: #fff;
	transition: background 0.5s;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
}
nav .icon i:before,
nav .icon i:after{
	content: "";
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 3px;
	background: #fff;
	position: absolute;
	transform: rotate(0deg);
	transition: all 0.3s !important;
}
nav .icon i:before{
	transform: translateY(8px);


}
nav .icon i:after{
	transform: translateY(-8px);
}
nav .icon.open i{
	background: transparent;
}
nav .icon.open i:after{
	transform:translateY(0px) rotate(-45deg);
}
nav .icon.open i:before{
	transform:translateY(0px) rotate(45deg);
}
nav .icon span {
	position:absolute;
	top: 37px;
	left: 0;
	right: 0;
	margin: auto;
}
nav ul a span {
    display:block;
    font-size: 80%;
    opacity: .8;
}

nav #menu {
    position: absolute;
    width: 100%;
    padding: 1%;
    display: none;
    line-height: 2;
    align-items: center;
    background: #abaaaa;
    z-index: 999;
    color: #fff;
    font-size: 15px;
}
#menu a{
	color: #fff;
}



footer {
    background: #666767;
    color: #fff;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer .container {
	padding:20px 0;
    position:relative;
}
footer #sitemap {
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 30px;
}
footer .sitemapList {
	width: 48%;
	margin: 5px 1%;
	float: left;
}
footer li {
	padding:3px 0;
	font-size: 13px;
}
footer .ttl {
    border-bottom: 1px solid #fff;
    font-size: 14px;
}
footer .copy {
    text-align: center;
    border-top: 1px solid #fff;
    padding:10px 0 50px 0;
    font-size: 80%;
}
footer a.btnPagetop {
    display: block;
    position: absolute;
    right: 0;
    color: #ffffff;
    background: #666767;
    padding: 0 12px;
    height: 35px;
    line-height: 35px;
    top: -35px;
}

/* common style*/
.aright{
	text-align:right;
}

.fright{
	float:right;
	margin-left:10px;
}

.fleft{
	float:left;
	margin-right:10px;
}

.clr{
	clear:both;
}
/* - ClearFix ------------------------------------------------------ */
.clrFix:after { clear: both; height: 0; font-size: 0; visibility: hidden; display: block; content: "."; }
.clrFix {display:inline-table; }
/* Hides from IE-mac \*/
* html .clrFix {height:1%;}
.clrFix {display:block;}
