@charset "UTF-8";

/* ******************************
* 基本設定
****************************** */
html{scroll-behavior: smooth;}
body{
  width: 100vw;
  color:#62665f;
  font-size: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  box-shadow: inset 0px 0px 32px 16px rgba(223,200,30,0.66);
  background-color: #fcfcfc;
}
main,article{width: 100vw;}
p,ul,ol,dl,figure{margin: 0;}
ul{list-style: none;}
ul li{margin-bottom:0.25rem;}
img,iframe{max-width: 100%;}
figure,iframe{text-align: center;}
a{
  color:rgb(223,200,30);
  font-weight:;
  text-decoration: none;
}
a:visited {color:;}
a:active {color:;}
a:hover{
  color: #fff;
  text-shadow:  2px  2px 10px rgba(223,200,30,1) ,
             -2px  2px 10px rgba(223,200,30,1) ,
              2px -2px 10px rgba(223,200,30,1) ,
             -2px -2px 10px rgba(223,200,30,1);
}
a.sp_link{
  color: #fff;
  text-shadow:  2px  2px 10px rgba(223,200,30,1) ,
             -2px  2px 10px rgba(223,200,30,1) ,
              2px -2px 10px rgba(223,200,30,1) ,
             -2px -2px 10px rgba(223,200,30,1);
}
/* ******************************
* レイアウト
****************************** */
.grid_lo{display: grid;}
.dl_grid{
  grid-template-columns: auto 1fr;
  grid-column-gap: 1rem;
  width: fit-content;
  margin: auto;
}
.dl_grid dt{
  grid-column: 1;
  text-align: center;
  color:#fff;
  font-weight: ;
  background-color: #62665f;
  border-radius: 5px;
  border-bottom: solid 1px #fff;
  padding: 0.25rem 0.5rem;
}
.dl_grid dd{
  grid-column: 2;
  border-bottom: solid 1px #62665f;
  padding: 0.25rem 0.5rem;
}
.col2{grid-template-columns: 1fr 1fr;grid-gap: 1rem;}
.repeat_col{
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap:2.5rem;
  width:;
}
.flex_lo{
  display: flex;
  justify-content: space-around;
  margin: auto;
}

/* ******************************
* header
****************************** */
header{
  width: 100vw;height:80px;
  position: fixed;
  top:0;
  z-index: 10;
  /*
  display:flex;
  justify-content: space-between;
  */
  display: grid;
  grid-template-columns:  auto 1fr auto auto auto;
  grid-template-rows: 1fr auto auto;
  grid-column-gap:0.5rem;
  padding: 2.5vw 2.5vw 0 2.5vw;
}

.program_logo{
  max-width: 150px;
  grid-column: 1;
  grid-row: 1;
}
.program_logo img{ display: block;}

/* menu */
.g_nav{grid-column: 3;grid-row: 1;}
.tab_input,.g_nav_sp{display:none;}
.menu_list{
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(3,1fr);
  grid-column-gap: 0.1rem;
  margin-bottom: 0;
  align-items: center;
  font-size: 0.9rem;
}
.menu_list li,.news_triger_box,.menu_triger_box {
  background-color: #e1f0df;
  border-bottom: solid 0.2rem #93998e;
  padding: 0.25rem 0.5rem 0 0.5rem;
  height: 40px;
  text-align: center;
  font-size: 1.25rem;
  transition: all .3s ease 0s;
}
.menu_list li:first-child {
  border-radius: 7.5px 0 0 0;
}
.menu_list li:last-child {
  border-radius: 0 7.5px 0 0;
}
.menu_list li:hover{text-shadow: initial;transform: scale(.9);}
.menu_list li a{color: #93998e;}
.menu_list li a:hover{text-shadow: initial;}
.news_nav{
  grid-column: 4;grid-row: 1;
}
.news_triger_box ,.menu_triger_box{
  display:block;
  color:#93998e;
  font-size: 1.25rem;
  border-radius: 7.5px 7.5px 0 0;
  cursor:pointer;
}
.news_triger_box:hover ,.menu_triger_box:hover{
  transform: scale(.9);
}
.news_mount{
  grid-row: 3;grid-column: 1 / 6;
  height: 0;
  opacity: 0;
  display: none;
  background-color: #e1f0df;
  overflow-y: scroll;
}
.menu_mount{
  grid-row: 2;grid-column: 1 / 6;
  height: 0;
  opacity: 0;
  display: none;
  background-color: #e1f0df;
}

#news_input:checked ~ .news_mount{
  height:calc(100vh - 2.5vw - 80px);
  opacity: 0.9;
  display: block;
}
.news_list{
  padding: 3vw;
  color:#93998e;
  opacity: 0.8;
}
.news_list li{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 2rem;
  border-bottom: dashed 1px #93998e;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
}
.news_list span{display:block;}
.twitter_nav{grid-column: 5;}
.twitter_nav a{
  display: block;
  color: #93998e;
  font-size: 1.25rem;
  border-radius: 7.5px 7.5px 0 0;
  cursor: pointer;
  background-color: #e1f0df;
  border-bottom: solid 0.2rem #93998e;
  padding: 0.25rem 0.5rem 0 0.5rem;
  height: 40px;
  text-align: center;
  transition: all .3s ease 0s;
}
.twitter_nav a:hover{
  transform: scale(.9);
  text-shadow: initial;
}
/* ******************************
* main
****************************** */
/* common */
section{margin-bottom: 7.5rem;}
.section_title{
  font-size:4rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5vh;
  color: transparent;
  background: linear-gradient(90deg, rgb(110,190,45), rgb(223,200,30),rgb(230,170,70),rgb(230,125,160));
  background-clip: text;
  -webkit-background-clip: text;
  border-bottom: 5px solid ;
  border-image: linear-gradient(to right, rgba(110,190,45,.75)0 33%, rgba(223,200,30,.75)33% 66%,rgba(230,125,160,.75)66% 100%);
  border-image-slice: 1;
  display: grid;
  grid-template-columns:  1fr auto 1fr;
  grid-column-gap:0.5rem;
}
.section_title:before{
  content: url(../img/flag_left.png);
  display: inline-block;
  vertical-align: super;
  /*padding-right: 0.5rem;*/
  margin-top: -1rem;
}
.section_title:after{
  content: url(../img/flag_right.png);
  display: inline-block;
  vertical-align: super;
  /*padding-left: 0.5rem;*/
  margin-top: -1rem;
}

/* メインヴィジュアル */
.main_visu{height:;margin-bottom:5rem;}
.main_visu figure{padding:7.5vw;}

.concept_text{
  padding: 0 10vw 3vh 10vw;
  text-align: center;
}
.article_nav_list{margin-top:5vh;}

/* パーソナリティ */
.prof_col{margin-left: 10vw;margin-right: 10vw;}
.portrait_pic{position: relative;width: fit-content;margin: auto;}
.portrait_pic img{
  display: block;
  border-radius: 10px;
  margin: 0 auto 1rem auto;
}
.pic_gradation{
  display: block;
  position: absolute;
  z-index: -1;
  top: 15px; /*ドロップシャドウ：縦位置調整*/
  left: 15px; /*ドロップシャドウ：横位置調整*/
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, rgb(110,190,45), rgb(223,200,30),rgb(230,170,70),rgb(230,125,160));
  filter: blur(12px);
  -webkit-filter: blur(12px);
}
.personality_name{
  text-align: center;
  color: #fff;
  text-shadow:  2px  2px 10px rgba(220,80,125,1) ,
             -2px  2px 10px rgba(220,80,125,1) ,
              2px -2px 10px rgba(220,80,125,1) ,
             -2px -2px 10px rgba(220,80,125,1);
  margin-bottom: 1rem;
}
.profile{margin-top:2.5rem;margin-bottom: 0.5rem;}
.appearance_title{
  text-align: center;
  margin-bottom: 0.5rem;
  color:#fff;
  text-shadow:  2px  2px 10px rgba(110,180,45,1) ,
             -2px  2px 10px rgba(110,180,45,1) ,
              2px -2px 10px rgba(110,180,45,1) ,
             -2px -2px 10px rgba(110,180,45,1);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.appearance{
  padding: .5rem;
  font-size: 1rem;
  width: 90%;
  margin: auto;
  list-style-type: square;
}

/* 配信情報 */
.web_cast_mount{
  width: 100vw;
  background-color: #e1f0df;
  padding-bottom: 2.5rem;
}
.web_cast_mount h2{text-align:center;margin-bottom: 0.5rem;}
.latest_time{margin:0 auto 2.5rem auto;width: fit-content;}
.latest_time figure{}
.web_cast_mount a{color:;}
.webcast_attention{
  text-align: center;
  font-size: 1rem;
}
.hol_scroll{
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  /*margin-left: 5vw;
  margin-right: 5vw;*/
  display: flex;
}
.hol_scroll li{
  display: inline-block;
  margin-right: 1rem;
}

/* コーナー紹介 */
#sec_segment{margin-left: 10vw;margin-right: 10vw;}
.segment_dl dt{color:rgb(220 80 125);margin-bottom: 0.5rem;}
.segment_dl dd{margin-bottom: 2rem;}

/* ******************************
* お知らせ
****************************** */
.sec_info{padding-top: 10vh;}
.sec_info article{padding-left: 7.5vw;padding-right: 7.5vw;}
.article_title ._date{color:rgba(220,80,125,1);display: block;}
.article_title ._title{
  color: #fff;
  text-shadow: 2px 2px 10px rgba(220,80,125,1), -2px 2px 10px rgba(220,80,125,1), 2px -2px 10px rgba(220,80,125,1), -2px -2px 10px rgba(220,80,125,1);
  margin-bottom: 1rem;
  display: block;
}
.article_box{position: relative;}
.article_box p,.article_box figure{margin-bottom: 1rem;}
.article_mount{
  padding: 1.5rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  font-size:1.2rem;
}


/* ******************************
* メールフォーム
****************************** */
.sec_mailform{
  padding-top: 10vh;
  min-height: 100vh;
}
.mailform_attentin{
  text-align:center;
  font-size:1.25rem;
  margin-bottom:2rem;
}
.mailform{
  margin-left: 10vw;margin-right: 10vw;
  font-size: 1.25rem;
}
.form_area{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form_area dt {
  grid-column: 1;
  color: #fff;
  background-color: rgb(110 180 45);
  padding: 0.25rem;
  border-radius: 5px;
}
.form_area dd {
  grid-column: 2;
  padding: 0.25rem;
  background-color: #ffffff;
  border: solid 1px rgb(110 180 45);
  border-radius: 5px;
}
.form_area select {
  width: 100%;
  border: none;
}
.form_area input.add_text {
  height: 1.2rem;
  width: 66%;
  border: none;
}
.red {
  color: #ee92bb;
  margin-left: 0.5rem;
  font-weight: bold;
}
.form_area textarea {
  font-size: 16px;
  width: 99%;
  height: 20rem;
  border: none;
  resize: vertical;
}
.submit_box{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap:2rem;
  place-items: center;
}
.submit_btn {
  color: #fff;
  font-weight: bold;
  padding: 0.25rem;
  background-color: rgb(110 180 45);
  border: solid 1px ;
  border-radius: 5px;
  width: 10rem;
}
.submit_btn:hover{
  color: rgb(110 180 45);
  background-color: initial;
}
.sec_mailform_check{
  padding-top: 7.5vh;
  margin-left: 10vw;margin-right: 10vw;
}
/* ******************************
* footer
****************************** */

/* 広告 */
.links{
  padding-left: 10vw;padding-right: 10vw;
  gap:2vw;
}
.ad_g{padding:5vw 10vw 5vw 10vw;}
footer{
  width: 100vw;height: 15vh;
  background-color: #e1f0df;
  padding-top: ;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright{
  text-align: center;
  color: #93998e;
  font-family:'IBM Plex Sans', sans-serif;
  font-size:0.9rem;
}

/* ******************************
* 背景
****************************** */
.bg_only{
  position: fixed;
  width: 100vw;height:100vh;
  top:0;left:0;
  z-index: -1;
  background-image: url(../img/patern_pbox.png);
  background-repeat: repeat;
  opacity: .1;
}
