@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------------------
common
--------------------------------------------------------*/
#eiyou{
	color: #000;
}
#wrapper {
  font-family: 'Noto Sans JP';
  overflow: hidden;
  min-width: 100%;
}
.media_pc414{
	display: block;
}
.media_sp414{
	display: none;
}

@media screen and (max-width:414px){
.media_pc414{
	display: none;
}
.media_sp414{
	display: block;
}
}

/*--------------------------------------------------------
キービジュアル
--------------------------------------------------------*/
.main_visual {
  background:url("../img/img_main_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0 40px 0;	
}
.eiyou_title {
  text-align: center;
}

@media screen and (max-width:1100px){
.main_visual {
  padding: 60px 40px 40px 40px;
}
}
@media screen and (max-width:768px){
.main_visual {
  padding: 40px 20px 40px 20px;
}
}
@media screen and (max-width:414px){
.main_visual {
  padding: 20px;
}
}

/*--------------------------------------------------------
ページナビゲーション
--------------------------------------------------------*/
.page_nav_list {
  display: flex;
  justify-content: center;
}
.page_nav_li:nth-child(2) {
  margin: 0 12px;
}
.page_nav_li:hover{
  opacity: 0.7;
  transition: 0.5s;	
  cursor: pointer;
}
.page_nav_li a {
  width: 100%;
  height: 100%;
  display: block;
}
.page_nav {
  max-width: 900px;
  padding: 20px;
  background: #eff8ea;
  border-radius: 12px;
  margin: 60px auto;
}

@media screen and (max-width:768px){
.page_nav_list {
  flex-wrap: wrap;
}
.page_nav {
  padding: 10px;
  border-radius: 8px;
  margin: 40px 20px 60px 20px;	
}	
.page_nav_li:nth-child(1) {
  margin-bottom: 10px;
  margin-right: 10px;	
}
.page_nav_li:nth-child(2) {
  margin: inherit;
  margin-left: 0;
  margin-bottom: 10px;
}	
}

@media screen and (max-width:414px){
.page_nav_li:nth-child(1) {
  margin-right: 0;	
}	
.page_nav_li:nth-child(2) {
  margin-left: 0;
  margin-bottom: 10px;
}
}

/*--------------------------------------------------------
タイトル
--------------------------------------------------------*/
.h2_title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #47b53e;
  padding: 16px;
  letter-spacing: 0.04em;
  position: relative;
}
.h2_title::after {
  content: "";
  width: 100px;
  height: 100px;
  background-color: #47b53e;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  z-index: -1;
}
.h2_title::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
}
#sec01 .h2_title::before {
  content: "";
  width: 30px;
  height: 30px;	
  background: url("../img/icn_enpitsu.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#sec02 .h2_title::before {
  content: "";
  width: 36px;
  height: 27px;	
  background: url("../img/icn_book.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#sec03 .h2_title::before {
  content: "";
  width: 22px;
  height: 34px;
  background: url("../img/icn_mic.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width:768px){
.h2_title {
  font-size: 20px;
  padding: 12px 0;
}
.h2_title::after {
  width: 84px;
  height: 84px;
  top: -36px;
	}
.h2_title::before {
  top: -20px;
	}
#sec01 .h2_title::before {
  width: 24px;
  height: 24px;
	}
#sec02 .h2_title::before {
    width: 29px;
    height: 22px;
	}
#sec03 .h2_title::before {
  width: 18px;
  height: 27px;
	}
}


/*--------------------------------------------------------
ラジオ　sec01
--------------------------------------------------------*/
.blink {
	animation: flash 2s linear infinite;
	position: absolute;
}
@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}
.radio_list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 60px auto 24px auto;
}
.radio_list_li {
  width: calc((100% - 120px)/3);
}
.radio_content {
  position: relative;
}
#sec01 .radio_list_li .title {
  position: absolute;
  width: 90%;
  top: 50%;
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  padding: 16px 12px 24px 12px;
  border: solid 2px #32b16c;
  border-radius: 0 10px 10px;
}
#sec01 .radio_list_li span {
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: -32px;
  background: #47b53e;
  padding: 2px 12px;
  color: #fff;
  left: -2px;
  border-radius: 10px 10px 0 0;
}
.radio_title {
  font-size: 18px;
  font-weight: 600;
  color: #32b16c;
}
.point {
  text-align: right;
  font-size: 12px;
  position: absolute;
  right: 8px;
}
.point img {
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 6px;
}
.point:hover {
  color: #ccc;
  transition: 0.5s;
  cursor: pointer;	
}
#btn_play {
  background: #fff;
  border: none;
  margin-right: 10px;
}
#btn_pause {
  background: #fff;
  border: none;
}
.radio_img {
  margin-bottom: 20px;
  text-align: center;	
}
.time {
  display: flex;
  align-items: center;
  margin-bottom: 10px;	
}

.input-range {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #efefef;
  height: 14px;
  width: 100%;
  border-radius: 10px;
  border: solid 3px #efefef;
  outline: 0;
  /* アウトラインを消して代わりにfocusのスタイルをあてる */
}
.input-range:focus {
  box-shadow: 0 0 3px #00a1ff;
}
.input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #5cc2cf;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.input-range::-moz-range-thumb {
  background: #5cc2cf;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
}
.input-range::-moz-focus-outer {
  border: 0;
}
.input-range:active::-webkit-slider-thumb {
  box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
}
#playback_position {
  font-size: 12px;
  margin-right: 4px;
}
#end_position {
  font-size: 12px;
  margin-left: 4px;
}
.hidden_content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);  background: #fff;
  padding: 32px 40px;
  border-radius: 4px;
  z-index: 2;
  display: none;	
}
.hidden_content.show {
  display: block;	
  transition: 0.5s;		
}
.radio_list_li .hidden_title {
  font-size: 21px;
  color: #32b16c;
  padding-bottom: 7px;
  border-bottom: solid 2px #32b16c;
  margin-bottom: 20px;
}
.hidden_list_li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.hidden_list_li:last-child {
  margin-bottom: 0;
}
.cover.active {
  background: rgba(229,245,236,0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2;
}
.close {
  position: absolute;
  top: -16px;
  right: -16px;
}
.dictionary_wrap {
  max-width: 800px;
  margin: 80px auto 120px auto;
  position: relative;
}
.mokuji_list {
  position: absolute;
  top: 26px;
  right: -30px;
}
.mokuji_list_li {
  margin-bottom: 8px;
}
.mokuji_list_li:hover{
	opacity: 0.7;
	transition: 0.5s;
}
.btn_more {
  text-align: right;
  max-width: 1000px;
  margin: 0 auto;
}


@media screen and (max-width:768px){
.radio_list {
  margin: 40px auto 20px auto;
  padding: 0 20px;	
  flex-wrap: wrap;	
}
.radio_list_li {
  width: calc((100% - 40px)/2);
  margin-bottom: 40px;	
  margin: 0 auto;	
}
.radio_title {
  font-size: 16px;	
	}
.hidden_content {
  padding: 28px 24px;
  width: 90%;
}
.btn_more {
  margin: 0 20px;
	}	
}

@media screen and (max-width:414px){
.radio_list_li {
  width: 100%;
}
#sec01 .radio_list_li span {
  font-size: 15px;
  top: -28px;
  padding: 2px 12px;
  left: -2px;
  border-radius: 6px 6px 0 0;
}
#sec01 .radio_list_li .title {
  position: absolute;
  width: 85%;
  top: 50%;
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 2px #32b16c;
  border-radius: 0 6px 6px;
}	
.radio_list_li .hidden_title {
  font-size: 17px;
	}
.hidden_list_li {
  font-size: 15px;
	}
.close img {
  width: 40px;
  height: 40px;
}
.close {
  top: -12px;
  right: -12px;
}	

}


/*------------------------------------------------------
辞書
------------------------------------------------------*/
#sec02 {
  margin-top: 88px;
}
.dictionary_list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.dictionary_list_li{
  display: none;
}
.dictionary_list_li.show {
  display: flex;
  transition: 0.5s;	
}
.page {
  width: 50%;
  padding: 40px;
}

.title_colum {
  font-size: 24px;
  font-weight: 600;
  color: #ff85b4;
  border-bottom: solid 2px #ff85b4;
  padding-bottom: 2px;
  margin-bottom: 20px;
}
.colum_ai .title_colum {
  color: #ff85b4;
}
.colum_st .title_colum {
  color: #f1ce22;
  border-bottom: solid 2px #f1ce22;	
}
.colum_nh .title_colum {
  color: #7cbee9;
  border-bottom: solid 2px #7cbee9;	
}
.colum_my .title_colum {
  color: #97cd95;
  border-bottom: solid 2px #97cd95;	
}
.colum_rw .title_colum {
  color: #9079b6;
  border-bottom: solid 2px #9079b6;	
}
.colum_list_li:hover{
	cursor: pointer;
	transition: 0.5s;	
}
.colum_ai .colum_list_li:hover{
	color: #ff85b4;
}
.colum_st .colum_list_li:hover{
	color: #f1ce22;
}
.colum_nh .colum_list_li:hover{
	color: #7cbee9;
}
.colum_my .colum_list_li:hover{
	color: #97cd95;
}
.colum_rw .colum_list_li:hover{
	color: #9079b6;
}


.colum_list_li.none {
  opacity: 0.3;
  pointer-events: none;
	display: none;
}
.title_colum {
  font-size: 24px;
  font-weight: 600;
  color: #ff85b4;
  border-bottom: solid 2px #ff85b4;
  padding-bottom: 2px;
  margin-bottom: 20px;
}
.colum_list_li {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;	
  justify-content: space-between;
  padding-left: 16px;	
  position: relative;
  background-image: url("../img/arrow_mokuji.png");
  background-repeat: no-repeat;
  background-position: left 6px;
  background-size: 8px 10px ;	
}



.dictionary_hidden_list {
  max-width: 600px;
  width: 100%;	
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-\ transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  background: #fff;
  padding: 40px;
  display: none;
}
.dictionary_hidden_list.show{
	display: block;
	transition: 0.5s;
} 
.colum_list_li.show .dictionary_hidden_list {
  display: block;
  transition: 0.5s;	
}
.dictionary_hidden_list .hidden_title {
  font-size: 18px;
  background: #ff85b4;
  color: #fff;
  padding: 4px 16px;
  display: flex;
  justify-content: space-between;
  border-radius: 50px;
  margin-bottom: 20px;
}
.dictionary_hidden_list .txt {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
}

@media screen and (max-width:768px){
#sec02 {
  margin-top: 64px;
}
.dictionary_wrap {
  margin: 100px auto 80px auto;
  padding: 0 10px;
}
.mokuji_list {
  position: absolute;
  top: -64px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;	
}	
.mokuji_list_li {
  margin-bottom: 0;
  margin-right: 8px;
}
.mokuji_list_li:last-child {
  margin-right: 0;
}	
.title_colum {
  font-size: 21px;
  padding-bottom: 0px;
  margin-bottom: 16px;
}	
.colum_list_li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 10px;
  background-position: left 6px;
  background-size: 6px 8px;
}	
.page:nth-child(1) {
  padding: 32px 20px 20px 40px;
}	
.page:nth-child(2) {
  padding: 32px 40px 20px 20px;
}	
.dictionary_hidden_list {
  padding: 28px 24px;
  width: 90%;
}	
.dictionary_hidden_list .hidden_title {
  font-size: 17px;
  align-items: baseline;	
	}
.hidden_title span {
  font-size: 14px;
}	
.dictionary_hidden_list .txt {
  font-size: 15px;
  padding: 0;
}
.dictionary_list {
  background-color: #f2f2f2;
  position: relative;
	}
.dictionary_list:before{	
 content: "";
 width: 100%;
 height: 100px;
 background-image: url("../img/img_note.png");
 background-repeat: no-repeat;
 background-position: top center;
 background-size: contain;
 position: absolute;
 top: -20px;
 right: 0;
 left: 0;
 margin: auto;
 z-index: -1;
	}	
}

@media screen and (max-width:414px){
.dictionary_list_li.show {
  display: block;
}
.page {
  width: 100%;
 padding: 20px !important;	
	}

}

/*------------------------------------------------------
パーソナリティー
------------------------------------------------------*/
.personality_list {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 60px auto 0 auto;
}
.personality_list_li {
  text-align: center;	
}
.personality_list_li .img {
  margin-bottom: -24px;
}
.personality_list_li .name {
  font-size: 18px;
  background: #f29da6;
  text-align: center;
  color: #fff;
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 28px;	
}
.career {
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width:768px){
.personality_list {
  display: block;
  margin: 40px auto 0 auto;
  padding: 0 20px;	
}
.personality_list_li .img {
  padding: 0 60px;
}	
.personality_list_li {
  margin-bottom: 50px;
}	
.personality_list_li:last-child {
  margin-bottom: 0;
}
.personality_list_li .name {
  font-size: 17px;
  padding: 6px 18px;
  margin-bottom: 20px;
}	
.career {
  font-size: 14px;
  line-height: 1.6;
}	
}



/*------------------------------------------------------
アーカイブ
------------------------------------------------------*/
.archives .radio_list_a {
  max-width: 1000px;
  margin: 56px auto;
}
.archives .radio_list_li_a {
  border: solid 1px #ccc;
  padding: 16px 24px;
  margin-bottom: 16px;	
}
.archives .title span {
  font-size: 16px;
  color: #fff;
  background: #32b16c;
  padding: 4px 14px;
  border-radius: 10px;
  margin-right: 24px;	
}
.archives .title {
  display: flex;
  align-items: center;
}
.archives .section {
  margin-top: 100px;
}
.archives .radio_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f8fa;
	padding: 20px 24px;	
	margin-bottom: 16px;
}
.archives .point {
  position: relative;
}
.archives .radio_detaisl {
  display: flex;
  align-items: center;
}
.archives .time {
  margin-left: 10px;
}
.radio_list_li_a .hidden_title {
  font-size: 21px;
  color: #32b16c;
  padding-bottom: 7px;
  border-bottom: solid 2px #32b16c;
  margin-bottom: 20px;
}

@media screen and (max-width:768px){
.archives .radio_list_a {
  margin: 32px 20px;
}
.archives .radio_list_li_a {
  padding: 10px;
}	
.archives .radio_content {
  display: block;
  padding: 16px;
  margin-bottom: 16px;
}	
.archives .title {
  margin-bottom: 10px;
}	
.archives .radio_detaisl {
  display: block;
  text-align: center;	
	}
.archives .time {
  margin-left: 0;
  margin-top: 20px;
}	
.archives .point img {
  width: 120px;
}	
}


