<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Quicksand');

@font-face {
  font-family: 'rounded-mplus-1p';
  font-style: normal;
  font-weight: 300;
  src: url('/shared/fixedsite/font/rounded-mplus-1p-light.eot');
  src: url('/shared/fixedsite/font/rounded-mplus-1p-light.eot?#iefix') format('embedded-opentype'),
    url('/shared/fixedsite/font/rounded-mplus-1p-light.woff') format('woff'),
    url('/shared/fixedsite/font/rounded-mplus-1p-light.ttf') format('truetype');
}

@font-face {
  font-family: 'rounded-mplus-1p';
  font-style: normal;
  font-weight: normal;
  src: url('/shared/fixedsite/font/rounded-mplus-1p-regular.eot');
  src: url('/shared/fixedsite/font/fonts/rounded-mplus-1p-regular.eot?#iefix') format('embedded-opentype'),
    url('/shared/fixedsite/font/fonts/rounded-mplus-1p-regular.woff') format('woff'),
    url('/shared/fixedsite/font/fonts/rounded-mplus-1p-regular.ttf') format('truetype');
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #575757;
}

img {
  vertical-align: bottom;
}

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

a:hover {
  opacity: .8;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 70px;
  padding: 20px;
  width: 250px;
  height: 70px;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 2.4rem;
  color: #fff;
  background: #959595;
}

.header {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #333;
  line-height: 1;
}

.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
  /* background: url(/shared/fixedsite/img/bg_header.gif) no-repeat; */
  background-position: right;
}

@media(max-width: 800px) {
  .header__container {
    background: none;
  }
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__tokyofm {
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 800px) {
  .header__tokyofm {
    width: 105px;
    height: 70px;
  }
}

.header__tokyofm img {
  width: 140px;
  height: auto;
}

@media(max-width: 800px) {
  .header__tokyofm img {
    width: 105px;
    height: auto;
  }
}

.header__jfn {
  width: 50px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  margin-left: 30px;
}

@media(max-width: 800px) {
  .header__jfn {
    width: 40px;
    height: 70px;
    margin-left: 20px;
  }
}

.header__jfn img {
  width: 50px;
  height: auto;
}

@media(max-width: 800px) {
  .header__jfn img {
    width: 40px;
    height: auto;
  }
}

.header__freq {
  position: absolute;
  right: 0;
  bottom: 5px;
  font-size: 1.0rem;
  text-align: right;
  line-height: 1.2;
  font-family: sans-serif;
  transform: rotate(0);
}

@media(max-width: 800px) {
  .header__freq {
    display: none;
  }
}

.container {
  margin: auto;
  max-width: 1000px;
}

@media(max-width: 1100px) {
  .container {
    width: 90%;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  font-family: 'Quicksand';
  background: rgba(255, 255, 255, .9);
  word-break: keep-all;
}

@media(max-width: 480px) {
  .nav {
    display: none;
  }
}

.nav__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}

@media(max-width: 480px) {
  .nav__menu {
    display: none;
  }
}

.nav__menu&gt;li {
  padding-right: 30px;
}

.nav__menu&gt;li:last-child {
  padding-right: 0;
}

@media(max-width: 480px) {
  .nav__menu&gt;li {
    padding-right: 15px;
  }

  .nav__menu&gt;li:last-child {
    padding-left: 0;
  }
}

.nav__sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.nav__sns a:hover {
  background: white;
}

.nav__sns&gt;li {
  margin-left: 15px;
}

.nav__sns svg {
  width: 25px;
  height: 25px;
  vertical-align: bottom;
}

@media(max-width: 480px) {
  .nav__sns {
    display: none;
  }

  .nav__sns svg {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
  }
}

.ham {
  position: relative;
  display: none;
}

@media(max-width: 480px) {
  .ham {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .ham__icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 15px;
    right: 0;
  }
}

.ham__menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 1);
  left: 0;
  top: 0;
  z-index: 2;
}

#menu.is-open {
  display: block;
  overflow-y: hidden;
}

.ham__contents {
  margin-top: 100px;
  font-family: 'Quicksand';
  text-align: center;
}

.ham__contents &gt; li {
  margin-bottom: 30px;
}

.ham__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.ham__sns &gt; li {
  margin: 0 20px;
}

.ham__sns svg {
  width: 30px;
  height: auto;
}

.hide__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 5%;
}

.title {
  padding: 70px 0 20px;
  font-family: 'rounded-mplus-1p';
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: .4em;
  text-align: center;
}

@media(max-width: 480px) {
  .title {
    padding-top: 20px;
    font-size: 2.8rem;
    letter-spacing: .2em;
  }
}

.onairtime {
  font-size: 2.0rem;
  color: #858585;
  letter-spacing: .1em;
  line-height: 1.8;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

@media(max-width: 480px) {
  .onairtime {
    font-size: 1.6rem;
  }
}

.onairtime__onair {
  margin-right: 10px;
}

.lead {
  display: flex;
  justify-content: center;
  margin: 70px auto 70px;
}

@media(max-width: 800px) {
  .lead {
    margin: 30px auto;
    flex-flow: column;
    text-align: center;
  }
}

.person img {
  width: 100%;
  height: auto;
  flex: 1 0 0%;
}

@media(min-width: 801px) {
  .person__one:not(:last-child) {
    margin-right: 10px;
  }
}

.person__name {
  padding-top: 10px;
  letter-spacing: .3em;
  line-height: 1;
  text-align: center;
  vertical-align: bottom;
}

.desc {
  padding-left: 30px;
  line-height: 2;
}
.lead1{
  text-align: center;
  margin-bottom: 20px;
}
.lead2{
  text-align: center;
}

@media (max-width: 800px) {
  .desc {
    margin: 0 auto;
    padding: 30px 0 0;
    text-align: left;
  }
  .lead2{
    text-align: left;
  }
  
}

@media(max-width: 480px) {
  .desc {
    width: 100%;
  }
}

.sponsor__bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: auto;
  margin: 0 auto 70px;
  padding: 15px 40px;
  border: 1px solid #ddd;
}

.sponsor__bnr__image {
  width: 138px;
  height: auto;
}
.end{
  text-align: center;
  color: #f0037e;
  margin-bottom: 30px;
}
.message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 70px;
  padding: 20px;
  width: 350px;
  height: 70px;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 1.8rem !important;
  color: #fff;
  background: #959595;
}

@media(max-width: 480px) {
  .message {
    width: 100%;
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }
}

.section {
  margin: 70px auto 70px;
  text-align: center;
}
@media(max-width: 800px) {
  .section {
    margin: 30px auto;
    flex-flow: column;
    text-align: center;
  }
}

.subtitle {
  margin-bottom: 30px;
  font-size: 2.4rem;
  text-align: center;
  font-family: 'Quicksand';
}

@media(max-width: 480px) {
  .subtitle {
    margin-bottom: 20px;
  }
}

.report__title {
  margin-bottom: 30px;
  font-size: 2.4rem;
  text-align: center;
  font-family: 'Quicksand';
}

@media(max-width: 480px) {
  .report__title {
    margin-bottom: 20px;
  }
}

.article {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-flow: wrap;
  margin: 0 auto 50px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

@media(max-width: 480px) {
  .article {
    flex-flow: wrap;
    margin: 0 auto 20px;
  }
}

.article__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
}

@media(max-width: 800px) {
  .article__image {
    width: 100%;
    border-right: none;
  }
}

.article__image&gt;img {
  width: 100%;
}

.article__content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 50%;
  padding: 30px;
  border-left: 1px solid #ddd;
}

@media(max-width: 800px) {
  .article__content {
    width: 100%;
    border-left: none;
  }
}

.article__space {
  float: right;
  height: 100%;
}

.article__more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 30px;
  font-size: 1.4rem;
  margin: 5px 0 0 auto;
  color: #fff;
  background: #959595;
  font-family: 'Quicksand';
}

.article__title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 2.0rem;
  border-bottom: 3px double #ddd;
}

@media(max-width: 480px) {
  .article__title {
    font-size: 1.8rem;
  }
}

.article__time {
  font-size: 1.2rem;
  color: #858585;
  font-family: 'Quicksand'
}

.article__text {
  font-size: 1.4rem;
  line-height: 1.4;
  width: 100%;
  height: 100%;
}

.article__text--index img {
  display: none;
}

.article__share {
  margin-top: 30px;
  width: 100%;
  height: 50px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.0rem;
  border-top: 1px solid #ddd;
}

.article__share svg {
  width: 25px;
  height: 25px;
  vertical-align: bottom;
}

.fb-like {
  margin-right: 5px;
}

.pager {
  display: flex;
  margin-bottom: 50px;
}

@media(max-width: 480px) {
  .pager {
    margin-bottom: 20px;
  }
}

.pager__back,
.pager__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  color: #fff;
  background: #959595;
  font-family: 'Quicksand';
  font-size: 2.4rem;
}

.pager__back {
  margin-right: auto;
}
.pager__next {
  margin-left: auto;
}

@media(max-width: 480px) {
  .pager__back,
  .pager__next {
    width: 70px;
    height: 40px;
    font-size: 1.6rem;
  }
}

.vap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 70px 0;
  padding: 20px;
  width: 200px;
  height: 50px;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 1.8rem;
  color: #fff;
  background: #959595;
}

.vap:hover {
  opacity: .8;
  cursor: pointer;
}

.vap&gt;svg {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

footer {
  clear: both;
  margin: 70px auto 0;
  padding-bottom: 6px;
  font-size: 1.1rem;
  word-break: normal;
}

.copyright {
  margin: 20px 0 0;
  padding: 0 0 30px;
  font-size: 1.2rem;
  text-align: center;
  font-family: 'Quicksand';
  clear: both;
  transform: rotate(0);
}

.page-top {
  position: fixed;
  padding: 2px;
  bottom: 20px;
  right: 20px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  background: #ffffffaa;
  border-radius: 7px;
  z-index: 100;
}

.page-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.page-top img {
  width: 30px;
  height: auto;
  margin-bottom: 10px;
}

.page-top svg {
  width: 30px;
  min-height: 0;
}

.page-top p {
  margin-top: -15px;
  font-family: 'Quicksand';
  font-size: 1.2rem;
}

/* On Air Report */
.title--onair {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  letter-spacing: normal;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
}

@media(max-width: 480px) {
  .title--onair {
    padding-top: 50px;
    font-size: 2.0rem;
  }
}

.backnumber {
  width: 150px;
  height: 30px;
  padding-left: 7px;
  color: #575757;
  border: 1px solid #575757;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media(max-width: 480px) {
  .backnumber {
    width: 130px;
  }
}

.selectWrapper {
  position: relative;
}

.selectWrapper:after {
  position: absolute;
  content: '';
  background: url(/shared/fixedsite/img/arrow_down.png) no-repeat;
  background-size: 50%;
  bottom: 3px;
  right: 0;
  width: 15px;
  height: 15px;
}

.report--onair {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.article--onair {
  margin: 0 2% 2% 0;
  width: 32%;
  display: block;
}

@media (max-width: 480px) {
  .article--onair {
    margin: 0 0 20px;
    width: 100%;
  }
}

.article--onair:nth-of-type(3n) {
  margin-right: 0;
}

.article__image--onair {
  width: 100%;
  border-right: none;
}

.article__content--onair {
  flex-flow: row;
  padding: 10px;
  width: 100%;
  border-left: none;
}

.article__time--onair {
  font-size: 2.4rem;
  color: #959595;
}

@media(min-width: 481px) and (max-width: 800px) {
  .article__time--onair {
    font-size: 2.0rem;
  }
}

@media(max-width: 480px) {
  .article__time--onair {
    font-size: 2.2rem;
  }
}

.article__title--onair {
  margin-bottom: 0;
  font-size: 1.4rem;
  border-bottom: none;
}

.pageswitch {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Quicksand';
  margin-bottom: 70px;
  transform: rotate(0);
}

.pageswitch img {
  margin: 0 10px;
  width: 18px;
  height: 28px;
  vertical-align: bottom;
  opacity: .4;
}

.pageswitch a img {
  opacity: .8;
}

.pageswitch .pre {
  transform: rotateZ(-180deg);
}

.report--onair .pageswitch {
  width: 100%;
}

.num {
  display: block;
  margin: 0 3px;
  padding: 0px 5px;
  height: 28px;
  border: 1px solid #959595;
}

strong.num {
  color: #fff;
  background: #575757;
}

/* Indivisual */
.report--individ {
  margin-top: 30px;
}

.article--individ {
  flex-flow: column;
  align-items: center;
  padding-top: 50px;
}

@media(max-width: 480px) {
  .article--individ {
    padding-top: 20px;
  }
}

.article__time--individ,
.article__title--individ,
.article__image--individ,
.article__content--individ {
  width: 70%;
  height: 100%;
}

@media(max-width: 480px) {

  .article__time--individ,
  .article__title--individ,
  .article__image--individ,
  .article__content--individ {
    width: 90%;
  }
}

.article__time--individ {
  font-size: 1.6rem;
  border-bottom: none;
}

.article__title--individ {
  font-size: 2.8rem;
  border-bottom: none;
}

@media(max-width: 480px) {
  .article__title--individ {
    font-size: 2.0rem;
  }
}

.article__image--individ {
  border: none;
}

.article__content--individ {
  padding: 0px 0 50px;
  border-left: none;
}

@media(max-width: 480px) {
  .article__content--individ {
    padding-bottom: 0;
  }
}

.article__text--individ {
  font-size: 1.6rem;
}

.article__text--individ a {
  color: #FC012E;
}

@media(max-width: 480px) {
  .article__text--individ {
    font-size: 1.4rem;
  }
}

.article__text--individ &gt; img {
  margin: 30px 0;
}

.article__text--individ &gt; img:first-child {
  margin-top: 0;
}

/* Archive */
.title--archive {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  text-align: left;
  letter-spacing: normal;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
}

@media(max-width: 480px) {
  .title--archive {
    font-size: 2.0rem;
  }
}

.fb_iframe_widget {
  margin-right: 5px;
}

.comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Quicksand';
  font-size: 2.4rem;
  color: #aaa;
  margin-bottom: 70px;
  height: 300px;
  border: 1px solid #ddd;
}
@media(max-width: 480px) {
  .comingsoon {
    margin-bottom: 30px;
  }
}

/* Utility */

.u-flexsb {
  display: flex;
  justify-content: space-between;
}

.u-red {
  color: #FC012E;
}

.u-under {
  text-decoration: underline;
}

.u-pc {
  display: block;
}

@media(max-width: 480px) {
  .u-pc {
    display: none;
  }
}

.spDetail {
  display: none;
}

@media screen and (max-width:767px) {
  .spDetail {
    display: block;
  }

  .pcDetail {
    display: none;
  }
}

@media screen and (max-width:999px) and (min-width:768px) {
  .spDetail {
    display: block;
  }

  .pcDetail {
    display: none;
  }
}
</pre></body></html>