<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("../../fonts/rounded-mplus-1p-light.eot");
  src: url("../../fonts/rounded-mplus-1p-light.eot?#iefix") format("embedded-opentype"),
    url("../../fonts/rounded-mplus-1p-light.woff") format("woff"),
    url("../../fonts/rounded-mplus-1p-light.ttf") format("truetype");
}

@font-face {
  font-family: "rounded-mplus-1p";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/rounded-mplus-1p-regular.eot");
  src: url("../../fonts/rounded-mplus-1p-regular.eot?#iefix") format("embedded-opentype"),
    url("../../fonts/rounded-mplus-1p-regular.woff") format("woff"),
    url("../../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: 0.8;
}

.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: 5px;
  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: 1rem;
  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", sans-serif;
  background: rgba(255, 255, 255, 0.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 &gt; li {
  margin-left: 15px;
}

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

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

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

.nav__sns a:hover {
  background: white;
}

.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: 10;
}

#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 img {
  width: 30px;
  height: auto;
}

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

.title {
  font-family: "rounded-mplus-1p";
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .title {
    margin-bottom: 25px;
    padding: 20px 15px 0 15px;
  }
}
@media (max-width: 480px) {
  .title {
    margin-bottom: 25px;
    padding: 20px 15px 0 15px;
    font-size: 2.8rem;
    letter-spacing: 0.2em;
  }
}

.onairtime {
  font-size: 2.5rem;
  color: #ab7d00;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 480px) {
  .onairtime {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
}

.onairtime__onair {
  margin-right: 10px;
}

.onairtime__day {
  margin-bottom: 10px;
}

.onairtime__area {
  display: inline-block;
  color: #ab7d00;
}

.onairtime__list {
  display: flex;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 10px 5px;
  font-size: 1.8rem;
  text-align: left;
  border-bottom: 1px dotted #ab7d00;
  box-sizing: border-box;
}
.onairtime__list:first-of-type {
  border-top: 1px dotted #ab7d00;
}

.onairtime__list &gt; dt {
  width: 10em;
  margin-right: 20px;
  font-size: 1.5rem;
}
.onairtime__list &gt; dd {
  font-size: 1.8rem;
  font-weight: bold;
}  


@media (max-width: 480px) {
  .onairtime__list {
    font-size: 1.6rem;
  }
  .onairtime__list &gt; dd {
    font-size: 1.6rem;
    font-weight: bold;
  }  
}

.lead {
  display: block;
  margin: 0 auto 50px;
  text-align: center;
}
@media (max-width: 800px) {
  .lead {
    display: block;
    margin: 0px auto 30px;
    flex-flow: column;
    text-align: center;
  }
}
.person{
  margin-bottom: 40px;
}
.person img {
  width: 500px;
  height: auto;
}
@media (max-width: 800px) {
  .person img {
    width: 90%;
    max-width: 500px;
  }
}

.credit {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 1.1rem;

}

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

.desc {
  padding: 0 30px;
  margin-bottom: 30px;
  line-height: 2;
}
.desc a {
  color: #f54d6d;
  padding: 0 5px;
}
.desc a:hover {
  opacity: 0.6;
}
.desc span {
  display: block;
}
@media (max-width: 800px) {
  .desc {
    margin: 0 auto 30px;
    padding:0 20px;
    text-align: left;
    line-height: 1.7;
  }
  .desc br {
    display: none;
  }
}

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

.message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  width: 320px;
  height: 70px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  background: #ab7d00;
}
.message &gt; span {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .message {
    width: 80%;
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
.report_desc{
  text-align: center;
  font-weight: bold;
  margin-bottom: 70px;
}
.links a{
  text-decoration: underline;
}
.message_txt{
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.message_txt_sub{
  text-align: center;
  font-weight: normal;
}
.report_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 480px) {
  .report_wrap {
    flex-direction: column;
  }
}
.report {
  max-width: 320px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.bnr_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  margin: 100px auto;
}

.bnr_link a {
  margin: 0 20px;
}
@media (max-width: 480px) {
  .bnr_link {
    width: 80%;
    margin: 20px auto;
    flex-direction: column;
  }
  .bnr_link &gt; a{
    margin-bottom:20px;
    display: block;
  }
}
@media (max-width: 480px) {
  .report {
    max-width: 100%;
  }
}
.message__title {
  margin-bottom: 30px;
  padding: 15px 0;
  color: #333;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Quicksand";
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;  
}
.message__present{
  padding: 20px 0;
  text-align: center;
}
.article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-flow: wrap;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.article div {
  min-height: 0%;
}

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

.article__image {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 300px;
  background: #eee;
  box-sizing: border-box;
  line-height: 0em;
  text-align: center;
}
.article__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media (max-width: 800px) {
  .article__image {
    height: 230px;
  }
  .article__image::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
@media (max-width: 480px) {
  .article__image {
    height: auto;
  }
  .article__image::before {
    content: "";
    display: block;
    padding-top: 0;
  }
}

.article__image &gt; img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 800px) {
  .article__image &gt; img {
    position: absolute;
  }
}
@media (max-width: 480px) {
  .article__image &gt; img {
    position: relative;
  }
}

.article__content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 100%;
  padding: 20px;
}

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

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

.article__more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: 30px;
  font-size: 1.4rem;
  margin: 0 0 0 auto;
  padding:0 10px;
  color: #fff;
  background: #f54d6d;
  font-family: "Quicksand";
}
@media (max-width: 800px) {
  .article__more {
    width: 100%;
    margin-top: 0px;
  }
}

.article__title {
  padding-top: 13px;
  font-size: 1.6rem;
  border-top: 3px double #ddd;
  padding-bottom: 50px;
}

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

.article__time {
  font-size: 1.6rem;
  margin-bottom: 7px;
  color: #858585;
  font-family: "Quicksand";
}

.article__text {
  font-size: 1.6rem;
  line-height: 1.4;
  width: 100%;
  height: auto;
  margin: 6px 0;
}

@media (min-width: 800px) {
  .article__text--index {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
  }
}

.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: 1rem;
  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;
}

.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: 0.8;
  cursor: pointer;
}

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

footer {
  clear: both;
  margin: 0 auto;
  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;
  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;
}

.page-top__arrow {
  min-height: 0;
}

/* 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: 2rem;
  }
}

.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(../../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: 2rem;
  }
}

@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: 0.4;
}

.pageswitch a img {
  opacity: 0.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: 2rem;
  }
}

.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 {
  display: block;
  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: 2rem;
  }
}

.fb_iframe_widget {
  margin-right: 5px;
}

/* Present 2021 06 21 東京佼成ウインドオーケストラ */
.present {
  margin: 0 auto;
  padding: 0 15px;
  font-size: 1.4rem;
}
.present_container {
  display: inline-block;
  padding: 15px;
  text-align: left;
  background: #f7ebca;
}
.present_list {
  display: inline-block;
}
.present_list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 0.8em;
}
.present_list &gt; li:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0.2em;
  width: 0.2em;
  height: 0.2em;
  background: #555;
  border-radius: 50%;
}
.present_list span {
  display: block;
  color: #888;
  font-size: 1.2rem;
  font-weight: normal;
}
.present_txt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
/* info 2022 東京佼成ウインドオーケストラ */
.info {
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto 50px;
  text-align: center;
}
.info_inner {
  display: inline-block;
}
.info_box {
  margin-bottom: 20px;
  text-align: left;
}
.info_box:last-of-type {
  margin-bottom: 0px;
}
.info_box &gt; span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 5px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  background: #ab7d00;
}
@media (max-width: 800px) {
  .info {
    margin-bottom: 20px;
  }
}

/* Utility */

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

.u-red {
  color: #fc012e;
}

.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;
  }
}

#listen-sp section div{
	box-sizing: content-box;
}</pre></body></html>