@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  color: #FFF;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  background: url("../images/bg.png") no-repeat center;
  background-size: cover;
}

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

a.rollover {
  transition: all 0.2s ease;
}

a.rollover:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.inner {
  max-width: 1030px;
  padding: 0 15px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Footer
==================================================== */
.common-btn {
  background: #b10000;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .common-btn {
    padding: 20px 0;
  }
}

.common-btn .btn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: center;
}

.common-btn .btn-list li {
  width: 50%;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .common-btn .btn-list li {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .common-btn .btn-list li:last-of-type {
    margin-bottom: 0;
  }
}

.common-btn .btn-list li a {
  display: block;
  position: relative;
  background: #212121;
  color: #cdcdcd;
  text-align: center;
  padding: 38px 0 28px;
  border: 4px solid #212121;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .common-btn .btn-list li a {
    padding: 12px 0 10px;
  }
}

.common-btn .btn-list li a::before, .common-btn .btn-list li a::after {
  content: "";
  display: block;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
}

.common-btn .btn-list li a::before {
  width: 272px;
  height: 26px;
  margin: 0 auto 10px;
}
.common-btn .btn-list li.message-btn a::before {
  width: 355px;
}
@media screen and (max-width: 990px) {
  .common-btn .btn-list li a::before {
    width: 220px;
    height: 26px;
  }
}

@media screen and (max-width: 768px) {
  .common-btn .btn-list li a::before {
    width: 150px;
    height: 14px;
    margin-bottom: 5px;
  }
}

.common-btn .btn-list li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -14px;
  background: url("../images/arrow.png") no-repeat 0 0;
  background-size: 100% auto;
  width: 24px;
  height: 28px;
}

@media screen and (max-width: 768px) {
  .common-btn .btn-list li a::after {
    width: 12px;
    height: 14px;
    margin-top: -7px;
    right: 15px;
  }
}

@media screen and (min-width: 769px) {
  .common-btn .btn-list li a:hover {
    background: #b10000;
    color: #212121;
  }
  .common-btn .btn-list li a:hover::after {
    background-image: url("../images/arrow-bk.png");
  }
}

.common-btn .btn-list li.back-btn a::before {
  background-image: url("../images/back-txt.png");
}

@media screen and (min-width: 769px) {
  .common-btn .btn-list li.back-btn a:hover::before {
    background-image: url("../images/back-txt-bk.png");
  }
}
.common-btn .btn-list li.message-btn a::before {
  background-image: url("../images/message-txt.png");
}

.common-btn .btn-list li.archive-btn a::before {
  background-image: url("../images/archive-txt.png");
}

@media screen and (min-width: 769px) {
  .common-btn .btn-list li.archive-btn a:hover::before {
    background-image: url("../images/archive-txt-bk.png");
  }
  .common-btn .btn-list li.message-btn a:hover::before {
    background-image: url("../images/message-txt-bk.png");
  }
}

footer {
  background: #000000;
}

footer .footer-box {
  position: relative;
  height: 150px;
}

@media screen and (max-width: 768px) {
  footer .footer-box {
    height: 140px;
    padding-top: 95px;
  }
}

footer #home,
footer #copy,
footer #jwavelogo {
  position: absolute;
  top: 50%;
}

@media screen and (min-width: 769px) {
  footer #home,
  footer #copy,
  footer #jwavelogo {
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

footer #home {
  width: 89px;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  footer #home {
    top: 25px;
  }
}

footer #copy {
  z-index: 1;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  footer #copy {
    position: static;
    font-size: 10px;
    font-size: 1rem;
  }
}

footer #jwavelogo {
  z-index: 2;
  width: 170px;
  right: 0;
}

@media screen and (max-width: 768px) {
  footer #jwavelogo {
    top: 40px;
    width: 148px;
  }
}

footer .radiko-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0;
}

footer .radiko-btn li {
  display: inline-block;
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  footer .radiko-btn li {
    width: 75px;
  }
}

#commonFooter ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#commonFooter li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}

#commonFooter {
  text-align: left;
  width: 100%;
  background: #282828;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

#commonFooterInner {
  max-width: 950px;
  margin: 0 auto;
}

.main-head {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .main-head {
    margin-bottom: 85px;
  }
}

.main-head .row {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.main-head .row .l-col {
  width: 45%;
  background: url("../images/flag.png") no-repeat left top;
  min-height: 721px;
  padding-left: 4.3%;
  padding-top: 41%;
}

@media screen and (max-width: 768px) {
  .main-head .row .l-col {
    width: 100%;
    padding: 30px 7% 0;
    min-height: inherit;
    height: 115vw;
    background-image: url("../images/flag-sp.png");
    background-size: 67% auto;
  }
}

.main-head .row .r-col {
  width: 47.5%;
  padding-top: 17%;
}

@media screen and (max-width: 768px) {
  .main-head .row .r-col {
    padding: 0 7%;
    margin-top: -11vw;
    width: 100%;
  }
}

.main-head .row .img {
  position: relative;
  margin-bottom: 55px;
  max-width: 475px;
}

@media screen and (max-width: 768px) {
  .main-head .row .img {
    margin-bottom: 25px;
    max-width: 100%;
  }
}

.main-head .row .img::after {
  content: "";
  display: block;
  padding-top: 58.2%;
}

.main-head .row .img .img01,
.main-head .row .img .img02 {
  position: absolute;
  max-width: 55%;
  top: 0;
}

@media screen and (max-width: 768px) {
  .main-head .row .img .img01,
  .main-head .row .img .img02 {
    max-width: 56%;
  }
}

.main-head .row .img .img01 {
  z-index: 2;
  left: 0;
}

.main-head .row .img .img02 {
  z-index: 1;
  right: 5px;
  top: 7%;
}

@media screen and (max-width: 768px) {
  .main-head .row .img .img02 {
    right: 0;
  }
}

.main-head .row .logo {
  position: absolute;
  top: 78px;
  left: 4.3%;
  max-width: 55.4%;
}

@media screen and (max-width: 768px) {
  .main-head .row .logo {
    position: static;
    max-width: 100%;
    margin-bottom: 25px;
  }
}

.main-head .row .txt-wrap {
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 90%;
}

@media screen and (max-width: 768px) {
  .main-head .row .txt-wrap {
    font-size: 14px;
    font-size: 1.4rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .main-head .row .txt-wrap {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.main-head .row .data {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  border-bottom: 2px solid #FFF;
  padding: 0 0 10px;
  margin-bottom: 15px;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .main-head .row .data {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.main-head .row .txt {
  font-style: italic;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .main-head .row .txt {
    line-height: 1.6;
  }
}
.container {
  overflow: hidden;
}
.onairArchive {
  margin-bottom: 120px;
  text-align: center;
  position: relative;
}
.onairArchive:before {
  display: block;
  content: "";
  width: 150%;
  height: 300px;
  background: #b70202;
  position: absolute;
  right: -15%;
  top: 24%;
  z-index: 1;
  transform:skew(-15deg,-15deg);
}
.onairArchive h2{
  max-width: 410px;
  margin: 0 auto 40px;
}
.onairArchive .inner {
  z-index: 5;
  position: relative;
}
.onairArchive p.pic {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1px;
}
.onairArchive p.title {
  text-align: left;
  font-size: 24px;
  color: #b70202;
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: bold;
}
.onairArchive p.title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #cdcdcd;
  margin: 0 0 20px;
}
.onairArchive .text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #cdcdcd;
  line-height: 1.8em;
  text-align: left;
}
.onairArchive .text p {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .onairArchive {
    margin-bottom: 70px;
  }
  .onairArchive:before {
    height: 20%;
    top: 15%;
  }
  .onairArchive h2 {
    width: 80%;
    max-width: 297.5%;
  }
  .onairArchive p.pic {
    margin-bottom: 20px;
  }
  .onairArchive p.title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .onairArchive p.title span {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .onairArchive .text {
    font-size: 14px;
  }
}

.info {
  max-width: 800px;
  margin: 0 auto 140px;
  text-align: center;
}
.info h2{
  max-width: 460px;;
  margin: 0 auto 40px;
}
.info .l-col {
  width: 48%;
  float: left;
  text-align: left;
}
.info .r-col {
  width: 48%;
  float: right;
  text-align: left;
  font-size: 16px;
  color: #cdcdcd;
  line-height: 1.8em;
}
.info .r-col p {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .info {
    margin-bottom: 70px;
  }
  .info h2 {
    width: 80%;
    max-width: 222px;
    margin-bottom: 20px;
  }
  .info .l-col, .info .r-col {
    width: 100%;
    float: none;
  }
  .info .l-col {
    max-height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .info .r-col {
    font-size: 14px;
  }
}
.sponsor {
  margin-bottom: 140px;
  text-align: center;
}
.sponsor h2{
  max-width: 271px;;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .sponsor {
    margin: 0 0 70px;
    text-align: center;
  }
  .sponsor h2 {
    width: 80%;
    max-width: 202px;
    margin-bottom: 20px;
  }
  .sponsor .banner {
    margin: 0 auto;
  }
}

.common-btn .btn-list li.message-btn {
  padding-left: 2%;
}
.common-btn .btn-list li.back-btn {
  padding-right: 2%;
}
.common-btn .btn-list li.message-btn a::before {
  width: 70%;
  height: 26px;
  max-width: 355px;
}
.common-btn .btn-list li.message-btn a::before {
  background-image: url("../images/message-txt.png");
  background-position: center bottom;
}
.common-btn .btn-list li.message-btn a:hover::before {
  background-image: url("../images/message-txt-bk.png");
}
.common-btn .btn-list li.back-btn a::before {
  background-image: url("../images/back-txt.png");
  background-position: center bottom;
}
.common-btn .btn-list li.back-btn a:hover::before {
  background-image: url("../images/back-txt-bk.png");
}
@media screen and (max-width: 768px) {
  .common-btn .btn-list li.message-btn,
  .common-btn .btn-list li.back-btn {
    width: 100%;
    padding: 0;
  }
  .common-btn .btn-list li a:hover {
    background: #b10000;
    color: #212121;
  }
  .common-btn .btn-list li a:hover::after {
    background-image: url("../images/arrow-bk.png");
  }
  .common-btn .btn-list li.message-btn a::before {
    width: 200px;
    height: 14px;
    background-image: url("../images/message-txt.png");
    background-size: contain;
  }
  .common-btn .btn-list li.back-btn a::before {
    background-image: url("../images/back-txt.png");
    width: 200px;
    background-size: contain;
  }
  .common-btn .btn-list li.back-btn a:hover::before {
    background-image: url("../images/back-txt-bk.png");
    background-size: contain;
    width: 200px;
  }
  .common-btn .btn-list li.message-btn a:hover::before {
    background-image: url("../images/message-txt-bk.png");
    width: 200px;
    background-size: contain;
  }
}

.archivelist {
  padding: 150px 0 100px;
  text-align: center;
}
.archivelist h2 {
  width: 50%;
  max-width: 354px;
  height: auto;
  margin: 0 auto 50px;
}
.archivelist ul {
  margin-left: -4%;
}
.archivelist ul li {
  width: 21%;
  max-width: 220px;
  min-height: 270px;
  float: left;
  margin: 0 0 40px 4%;
  text-align: left;
  box-sizing: inherit;
}
.archivelist ul li a {
  display: block;
  position: relative;
  background: url(../images/arrow-wh-min.png) right bottom no-repeat;
}
.archivelist ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
}
.archivelist ul li p.pic  {
  line-height: 1px;
  margin-bottom: 10px;
}
.archivelist ul li p.title {
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid #b10000;
  line-height: 1.8em;
  font-weight: bold;
}
.archivelist ul li p.date {
  font-size: 14px;
  height: 16px;
  line-height: 16px;
}
.archivelist ul li a:hover {
  background: url(../images/arrow-red-min.png) right bottom no-repeat;
}
.archivelist ul li a:hover p.title,
.archivelist ul li a:hover p.date {
  color: #b10000;
}

@media screen and (max-width: 768px) {
  .archivelist {
    padding: 70px 0;
  }
  .archivelist h2 {
    width: 80%;
    max-width: 260px;
    height: auto;
    margin: 0 auto 20px;
  }
  .archivelist ul li {
    width: 46%;
    max-width: inherit;
    float: left;
    margin: 0 0 20px 4%;
    text-align: left;
    box-sizing: inherit;
  }
  .archivelist ul li p.pic img {
    width: 100%;
    height: auto;
  }
  .archivelist ul li p.title {
    font-size: 11px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #b10000;
    line-height: 1.8em;
    font-weight: bold;
  }
  .archivelist ul li p.date {
    font-size: 10px;
    height: 10px;
    line-height: 10px;
  }
  .archivelist ul li a {
    background: url(../images/arrow-wh-min.png) right bottom no-repeat;
    background-size: 10px 10px;
  }
  .archivelist ul li a:hover {
    background: url(../images/arrow-red-min.png) right bottom no-repeat;
    background-size: 10px 10px;
  }
}