﻿*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}


html {
	overflow: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


body{
font-family: 'Kosugi Maru', sans-serif;
	background-color:"#fffffe";
}





/*====囲みの枠=====================================================================*/

#container {
	  display: block;
	  max-width: 1080px;
	  margin:0 auto 30px;
		padding:20px;
		background-color:#fff;
}


.news_box {
	border:1px solid #f2f2f2;
	padding:20px;
	margin-bottom:2rem;
}

.contact_box {
	border:1px solid #f2f2f2;
	padding:20px;
	margin-bottom:2rem;
	background-color:#f4f4f4;
}



@media screen and (max-width: 480px) {

		.news_box {
			flex-wrap:wrap;
		}



}



/*====画像の設置=====================================================================*/

.main_img {
	margin: 0 auto;
	text-align: center;
}

img {
	max-width:100%;
	height:auto;
}



/*====テキスト装飾=====================================================================*/


.txt_red {
	font-size: 1.6em;
	color: crimson;
	font-weight: 700;		
}



#container ul{
    margin-left: 0px;
    padding: 0px;
}

#container li{
    list-style: none;

}


.text_small {
		font-size:.8rem;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}



/*==見出しの設定====================*/

h1.title {
		padding: 20px 0;
    font-size: 2.4rem;
    color: #f44336;
    margin: 0 auto;
    text-align: center;
    letter-spacing: .2rem;
    line-height: 1.1;
}


/*==放送内容の文章==*/
h2 {
		font-size: 2rem;
    margin: 1rem auto 0;
    line-height: 1.4;
    color: #fff;
    background: #e91e63;
    font-weight: normal;
    width: 100%;
    text-align: center;
		padding: 0.5rem;
}

/*==各見出し==*/


h3 {
		font-size: 1.6rem;
    margin: 1.4rem auto;
    color: #3f4040;
    border-left: 6px solid #3f4040;
    padding-left: 1rem;
    line-height: 1.4;
}

/*==投稿の見出し==*/


h4 {
font-size: 1.6rem;
    border-bottom: 3px solid #e91e63;
    margin: 1rem auto;
    padding-bottom: 0.6rem;
    color: #000;
}

/*==投稿日時==*/


h5 {
		font-size : 1.2rem;
		margin:1rem auto;
		padding-bottom:.6rem;
		color:#3f4040;
}



@media screen and (max-width: 480px) {

h1.title {
		padding: 20px 0;
    font-size: 1.6rem;
    color: #f44336;
    margin: 0 auto;
    text-align: center;
    letter-spacing: .2rem;
    line-height: 1.1;
}


h2 {
		font-size: 1.4rem;
    margin: 1rem auto 0;
    line-height: 1.4;
    color: #fff;
    background: #e91e63;
    font-weight: normal;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
}

h3 {
    font-size: 1.2rem;
    margin: 1.4rem auto;
    color: #3f4040;
    border-left: 6px solid #3f4040;
    padding-left: 1rem;
    line-height: 1.4;
}

}



/*======================*/

p {
		font-size : 1.2rem;
		line-height : 1.6;
		margin:1rem;
}

ul,ol {
		margin:0 auto 20px;

}

ul li,
ol li {
		font-size : 1.2rem;
		line-height : 1.8;
}


/*==仕切り線==*/

hr {
 height: 6px;
 background-color: #f2f2f2;
 width: 90%;
 border: none;
	margin:2rem auto;
}


/*==テキスト色変更==*/

/*==オレンジ==*/

.txt_c_o {
	color:#eb6100;
}

/*==水色==*/

.txt_c_b {
	color:#00BCD4;
}


/*==ピンク==*/

.txt_c_p {
	color:#e91e63;
}


/*==赤==*/

.txt_c_r {
	color:#f43636;
}



/*====ボタンの設定=====================================================================*/

.btn,
a.btn,
button.btn {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
	border:none;
}

.btn_sns {
	margin:1rem auto;
	max-width:100%;
}

.btn_sns,
a.btn_sns {
  color: #000;
  background-color: #ffeb3b;
}

.btn_sns:hover,
a.btn_sns:hover {
  color: #000;
  background: #ffeb3b91;
}

/*==ヘッダーナビ==*/

#nav_box {
width:100%;
    background: #03a9f4;

}

.page-nav ul{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-nav li{
    list-style: none;
}

.page-nav a{
    display: block;
    padding: 10px;
    border-left: 1px solid #fff;
    border-right: none;
    text-decoration: none;
    color: #fff;
    background: #03a9f4;
}

.page-nav li:last-child a{
    border-right: 1px solid #fff;
}

.page-nav a:hover {
  color: #fff;
  background: #2196f3;
}




@media(max-width:750px){
    .page-nav ul{
        flex-wrap: wrap;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .page-nav li{
        width: 50%;
        margin: 0;
    }
    .page-nav a{
        border-bottom: none;
    }
    .page-nav li:last-child a{
        border-right: none;
    }
}




/*==プロフィール==*/

.profile_box {
width: 100%;
    text-align: center;
    background-color: #fff;
    margin: 0.5rem auto;
    padding: 1rem;
}


.btn_profile {
	margin:.5rem auto;
	max-width:100%;
	color:#fff;
	padding:.5rem;
	border-radius:20px;
}


.btn_hp,
a.btn_hp {
  color: #fff;
  background-color: #00BCD4;
}
.btn_hp:hover,
a.btn_hp:hover {
  color: #fff;
  background: #228d9b;
}








/*====テーブルの設定=====================================================================*/




.tbl_onair {
	border-collapse: collapse;
	width: 100%;
	margin: 1em auto;
}

.tbl_onair th,
.tbl_onair td {
	padding: 1em 5%;
	border: 1px solid #aaa;
	vertical-align: top;
	text-align: left;
}

.tbl_onair th {
	background: #eee;
	width: 30%;
	text-align: center;
}

.tbl_onair td {
	background: #fff;
}


@media screen and (max-width: 480px) {
.tbl_onair th,.tbl_onair td {
	display: block;
	width: auto;
	border-bottom: none;
}

.tbl_onair tr:last-child {
	border-bottom: 1px solid #aaa;
}

}




/*====ヘッダーの設定=====================================================================*/


#topicpath {
		padding : 10px 0;
		font-size : 10px;
		line-height : 12px;
		clear: both;
		width :100%;
		text-align : left;
		background:#294C7A;
		color:#fff;
}

#topicpath .pan {
	max-width:960px;
	margin:0 auto;
	padding:6px;
}


#topicpath .pan a {
		color:#fff;
}

/*====出演者の設定=====================================================================*/


.performer_box {
    background-color: #fff;
    padding:  10px;
		display: flex;
		justify-content: flex-start;

}

.performer_box p {
		font-size: 1rem;
    line-height: 1.6;
    margin: 1rem;
}

.performer_box h5 {
		font-size: 1.2rem;
    margin:.5rem auto;
		text-align:center;
    }


.performer {
		color:  #000;
    margin:  10px;
    border-radius:  5px;
    align-self: stretch;
		border:solid 1px #f5f5f5;
		width: 30%;
}

.performer img {
	width: 100%;
}



@media screen and (max-width: 480px) {

.performer_box {
    background-color: #fff;
    padding:  10px;
		display:block;
		flex-direction: column;
	width: 100%;
}

.performer {
		color: #000;
    margin: 10px auto;
    border-radius: 5px;
    align-self: stretch;
    border: solid 1px #f5f5f5;
    width: 100%;
}

.performer img {
	width: 100%;
}


}


/*==SNSまとめ==*/

.sns_box {
    background-color: #fff;
    padding:  10px;
		justify-content: space-between;
		border-radius:6px;
}


.sns_contetn {
		color:  #000;
    margin:  10px;
    border-radius:  5px;
    align-self: stretch;
		border:solid 1px #f5f5f5;
		width: 40%;
}



@media screen and (max-width: 480px) {


.sns_box {
    background-color: #fff;
    padding:  10px;
		display: flex;
		flex-direction: column;
		width: 100%;
}


.sns_contetn {
		color:  #000;
    margin:  10px;
    border-radius:  5px;
    align-self: stretch;
		border:solid 1px #f5f5f5;
		width: 100%;
}


}


/*====フッターの設定=====================================================================*/



/* コピーライト */

#cr{
		padding : 10px 0;
		font-size : 10px;
		line-height : 12px;
		clear: both;
		width :100%;
		text-align : center;
		background:#294C7A;
		color:#fff;
}

.wrapper {
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 120px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
		background-color:#fff;
}

footer {
    width: 100%;
    text-align: center;
		position: absolute;/*←絶対位置*/
		bottom: 0; /*下に固定*/
}



/*====YouTube設置の設定=====================================================================*/

.youtube {
  position:relative;
  width:100%;
  /*padding-top:56.25%;*/
}
.youtube iframe {
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}




/*===スマホ設定======================================================================*/


@media screen and (max-width: 480px) {

p {
		font-size : 1rem;
		line-height : 1.6;
		margin:20px;
}



h1.title span {
    font-size: 1rem;
}

ul li,
ol li {
		font-size : 1rem;
		line-height : 1.6;
}


}

/*====タグの設定=====================================================================*/

.bg-goods {
background-color:#8bc34a;
}

.bg-sweets {

background-color:#e95a8b;
}


.bg-performance{
background-color:#ff9800;
}


.bg-bande {
background-color:#00bcd4;
}

.bg-dance {
background-color:#c076cd;
}

.bg-mc {
background-color:#ff5722;
}

/*===背景色の設定=======================*/

.bg_cream {
	background-color:#fff8f0;
}


.bg_purple {
	background-color:#e6c8eba3;
}


.bg_yellow {
	background-color:#fffac4;
}


/*----------------------------
  TOP ページ
-----------------------------*/
/* ====== TOP IMAGE ====== */
header .jumbotron-fluid {
    background-image: url(./img/main.jpg);
    background-size: contain;
    background-position: center;
    min-height: 100%;
}


