<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=Noto+Sans+JP:400,500,700,900&amp;display=swap");
/* -- FOUNDATION -- */
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  position: relative;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

/* -- LAYOUT -- */
.header {
  width: 100%;
}

.header .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_container {
  width: 100%;
  max-height: 120px;
  box-sizing: border-box;
  padding: 15px 0;
  background: url(../../img/head_bg.jpg) center center no-repeat;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header_container {
    max-width: 100%;
    min-height: auto;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .header_container {
    max-width: 100%;
    min-height: auto;
    padding: 15px 0;
  }
}

.header_inner {
  width: 96%;
  margin: 25px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .header_inner {
    margin: 15px auto;
  }
}

.header .hd_nav {
  display: none;
  width: 6.54545%;
}

@media (max-width: 767px) {
  .header .hd_nav {
    display: block !important;
  }
}

.header .hd_logo_left {
  width: 270px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 35px;
}

@media (max-width: 767px) {
  .header .hd_logo_left {
    width: 50%;
    margin-left: 3%;
  }
}

.header .hd_logo_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .header .hd_logo_right {
    width: 26.04167%;
    margin-right: 3%;
  }
}

.header .hd_logo_sns {
  display: block;
  width: 30px;
  margin: 0 7px;
}

.header .hd_logo_sns &gt; img {
  width: 100%;
  height: auto;
}

.header .hd_logo_tfm {
  width: 129px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header .hd_logo_tfm {
    width: 100px;
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .header .hd_logo_tfm {
    width: 100px;
    margin-left: 15px;
  }
}

.header .hd_logo_tfm &gt; img {
  width: 100%;
  height: auto;
}

.header .hd_menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header .hd_menu ul li {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 30px;
}

.header .hd_menu ul li img {
  max-height: 50px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header .hd_menu ul li {
    margin-right: 15px;
  }
  .header .hd_menu ul li img {
    max-height: 34px;
  }
}

.header .hd_menu ul li:last-child {
  margin-right: 0px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header .hd_menu ul li:last-child {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .header .hd_menu {
    display: none;
  }
}

.kv {
  width: 100%;
  height: 830px;
  margin: 0 auto;
  background: url(../../img/kv_bg.jpg) center top no-repeat;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .kv {
    background: url(../../img/kv_bg_tab.jpg) 50% 50% repeat-x;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .kv {
    background: url(../../img/kv_bg_sp.jpg) center bottom repeat-x;
    background-size: cover;
    height: 500px;
  }
}

.kv .container {
  width: 100%;
  height: 95%;
}

.kv_inner {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .kv_inner {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .kv_inner {
    width: 100%;
  }
}

.kv_logo {
  width: 97.27273%;
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv_logo a:hover {
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .kv_logo {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .kv_logo {
    width: 90%;
  }
}

.kv_bt {
  position: absolute;
  width: 19.09091%;
  left: 0%;
  bottom: 50px;
}

.kv_bt_present {
  position: absolute;
  width: 21.90909%;
  right: -3%;
  top: 5%;
}

@media (max-width: 767px) {
  .kv_bt_present {
    display: none;
  }
}

#nav_open {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #012488;
  left: 0;
  top: 0;
  z-index: 101;
}

#nav_toggle {
  background: #012488;
  display: block;
  width: 62px;
  height: 60px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999;
}

#nav_toggle div {
  position: relative;
}

#nav_toggle span {
  display: block;
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
  top: 20px;
  right: 16px;
  width: 47.54098%;
}

#nav_toggle span:nth-child(2) {
  top: 28px;
  right: 16px;
  width: 47.54098%;
}

#nav_toggle span:nth-child(3) {
  top: 37px;
  right: 16px;
  width: 47.54098%;
}

@media (max-width: 767px) {
  #nav_toggle {
    width: 61px;
    height: 61px;
  }
  #nav_toggle span {
    height: 2px;
  }
  #nav_toggle span:nth-child(1) {
    top: 24px;
    left: 18px;
    width: 44.44444%;
  }
  #nav_toggle span:nth-child(2) {
    top: 30px;
    left: 18px;
    width: 44.44444%;
  }
  #nav_toggle span:nth-child(3) {
    top: 36px;
    left: 18px;
    width: 44.44444%;
  }
}

.open #nav_toggle {
  background: #fff;
}

.open #nav_toggle span {
  background: #012488;
}

.open #nav_toggle span:nth-child(1) {
  top: 33px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav_toggle span:nth-child(3) {
  top: 33px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 767px) {
  .open #nav_toggle span:nth-child(1) {
    top: 30px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 30px;
  }
}

#global-nav {
  padding-top: 90px;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 110%;
}

#global-nav.active {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

#global-nav li {
  font-family: "Bitter", serif;
  font-weight: bold;
  padding-bottom: 60px;
  margin: 0 auto;
  max-width: 265px;
}

#global-nav li a {
  color: #fff;
  text-decoration: none;
}

#global-nav .menuLogo img {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
}

.menu_sns {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 180px;
  display: flex;
  justify-content: center;
}

.menu_sns li {
  padding: 0 2%;
}

.menu_sns li img {
  width: 25px;
}

.bn_Area {
  text-align: center;
  padding: 0 10px;
}

.bn_Area li {
  padding: 0 10px 30px 10px;
}

.bn_Area li:nth-of-type(1) {
  max-width: 300px;
  margin: 0 auto;
  height: auto;
}

.bn_Area li:last-of-type {
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.main {
  width: 100%;
  display: block;
  background: url(../../img/bg.png) repeat;
  padding: 70px 0 0 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .main {
    padding: 35px 0 0 0;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 35px 0 0 0;
  }
}

.main_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.story {
  padding: 0 0 140px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .story {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 70px;
  }
}

@media (max-width: 767px) {
  .story {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 70px;
  }
}

.story_ttl {
  width: 100%;
  max-width: 377px;
  margin: 0 auto 70px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .story_ttl {
    width: 50%;
    margin: 0 auto 35px;
  }
  .story_ttl img {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .story_ttl {
    width: 90%;
    margin: 0 auto 35px;
  }
  .story_ttl img {
    height: 60px;
  }
}

.story_report {
  width: 100%;
  padding: 70px 0 70px;
  box-sizing: border-box;
  background-color: #FFF;
  background-image: url(../../img/frame_hd.png), url(../../img/frame_ft.png);
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: contain,contain;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .story_report {
    padding: 35px 0 35px;
  }
}

@media (max-width: 767px) {
  .story_report {
    padding: 35px 0 35px;
  }
}

.story_lead {
  width: 90%;
  margin: 20px auto 40px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .story_lead {
    width: 70%;
    margin: 20px auto 40px;
  }
}

@media (max-width: 767px) {
  .story_lead {
    width: 80%;
    margin: 0px auto 20px;
  }
}

.machine {
  padding: 0 0 140px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .machine {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 70px;
  }
}

@media (max-width: 767px) {
  .machine {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 70px;
  }
}

.machine_ttl {
  width: 100%;
  max-width: 517px;
  margin: 0 auto 70px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .machine_ttl {
    width: 50%;
    margin: 0 auto 35px;
  }
  .machine_ttl img {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .machine_ttl {
    width: 90%;
    margin: 0 auto 35px;
  }
  .machine_ttl img {
    height: 60px;
  }
}

.machine_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .machine_list ul {
    flex-direction: column;
  }
}

.machine_box {
  width: 46%;
  margin: 2%;
}

@media (max-width: 767px) {
  .machine_box {
    width: 90%;
    margin: 0 auto 20px;
  }
}

.machine_btn {
  display: block;
  width: 100%;
  max-width: 525px;
}

@media (max-width: 767px) {
  .fancybox-content {
    padding: 22px !important;
  }
}

.popup {
  height: 90%;
  max-width: 816px !important;
  background: #ececec;
  border-radius: 10px;
}

.popup img {
  width: auto;
  max-height: 100%;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .popup {
    width: 90%;
    height: auto;
  }
  .popup img {
    max-width: 100%;
    max-height: auto;
    height: auto;
  }
}

@media (max-width: 767px) {
  .popup {
    width: 90%;
    height: auto;
  }
  .popup img {
    max-width: 100%;
    max-height: auto;
    height: auto;
  }
}

.popup h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .popup h3 {
    font-size: 1.7rem;
  }
}

.popup_txt {
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .popup_txt {
    font-size: 1.4rem;
  }
}

.popup_txt strong {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .popup_txt strong {
    font-size: 2rem;
  }
}

.popup_txt span {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .popup_txt span {
    font-size: 1.2rem;
  }
}

.popup_txt a {
  color: #28a7e1;
}

.popup_txt:nth-of-type(1) {
  margin-bottom: 30px;
}

.message_ttl {
  width: 100%;
  max-width: 517px;
  margin: 0 auto 70px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .message_ttl {
    width: 50%;
    margin: 0 auto 35px;
  }
  .message_ttl img {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .message_ttl {
    width: 90%;
    margin: 0 auto 35px;
  }
  .message_ttl img {
    height: 60px;
  }
}

.message_btn {
  display: block;
  width: 100%;
  max-width: 756px;
  margin: 0 auto;
  padding-bottom: 140px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .message_btn {
    width: 80%;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .message_btn {
    width: 90%;
    padding-bottom: 70px;
  }
}

.sponsor {
  background: url(../../img/FOOTER.png) center top no-repeat;
  height: 430px;
  box-sizing: border-box;
  padding-top: 30px;
}

@media (max-width: 767px) {
  .sponsor {
    background: url(../../img/FOOTER_sp.jpg) center top no-repeat;
    background-size: cover;
    padding-top: 15px;
  }
}

.sponsor a {
  display: block;
  width: 300px;
  margin: 0px auto 30px;
  padding: 20px 45px;
  border: #ccc 1px solid;
  background: #FFF;
  text-align: center;
}

@media (max-width: 767px) {
  .sponsor a {
    width: 70%;
    max-width: 200px;
    margin: 25px auto;
  }
}

.sponsor a img {
  max-height: 65px;
}

aside {
  width: 100%;
  background: #fff;
}

.footer {
  margin-top: 0px;
  padding: 30px 0;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .footer {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-bottom: 0px;
    padding: 15px 0;
  }
}

.footer .copyright_txt {
  color: #333;
  letter-spacing: 0.05rem;
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
}

@media (max-width: 767px) {
  .footer .copyright_txt {
    font-size: 0.9rem;
  }
}

.pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: black;
  border-radius: 50%;
  z-index: 100;
}

.pagetop &gt; img {
  width: 16px;
  min-height: 0;
}

/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 980px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}

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

@media (max-width: 767px) {
  .pcDetail {
    display: none;
  }
  .spDetail {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block !important;
  }
}

.title {
  padding: 30px 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;
  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 &gt; img {
  width: 166px;
  height: auto;
}

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

.desc {
  min-width: 50%;
  padding-left: 30px;
  line-height: 2;
}

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

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

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

@media(max-width: 480px) {
  .message {
    margin-bottom: 50px;
  }
} */
.report__title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 2.4rem;
  text-align: center;
}

@media (max-width: 480px) {
  .report__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

.article_wrap {
  width: 90%;
  margin: 0 auto 50px;
  padding-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article_wrap {
    margin: 0 auto 25px;
  }
}

@media (max-width: 767px) {
  .article_wrap {
    margin: 0 auto 25px;
  }
}

.articleBG {
  background: #f8f8f8;
}

.cast h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFF;
}

.cast {
  color: #FFF;
  text-align: center;
  border: #ddd double 3px;
  box-sizing: border-box;
  background: #16459c;
  border-radius: 30px;
  padding: 30px;
  line-height: 1.8;
  font-size: 1.7rem;
  font-weight: bold;
  margin: 30px auto;
}

@media (max-width: 480px) {
  .cast h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .cast {
    font-size: 1.2rem;
    padding: 15px;
    margin: 15px auto;
  }
}

.article {
  background: #f4f4f4;
  position: relative;
  margin: 0 auto 20px;
  width: 90%;
  height: auto;
  background-image: url(../../img/kk_left.png), url(../../img/kk_right.png);
  background-position: left top , right bottom;
  background-repeat: no-repeat ,no-repeat;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article {
    margin: 0 auto 20px;
  }
}

@media (max-width: 767px) {
  .article {
    width: 96%;
    margin: 0 auto 20px;
  }
}

.article:last-child {
  border: none;
}

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

.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%;
  height: 300px;
  object-fit: cover;
}

.article__content_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article__content_box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .article__content_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px 10px;
  }
}

@media (max-width: 800px) {
  .article__content_box {
    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;
}

.article__title {
  width: 70%;
  font-size: 3rem;
  padding-bottom: 5px;
}

.article__title a {
  width: 100%;
  height: 100%;
  display: block;
  color: #034679;
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article__title {
    width: 100%;
    font-size: 2.6rem;
  }
}

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

.article__time {
  width: 20%;
  margin-left: 5%;
  font-size: 2rem;
  color: #034679;
  font-weight: 900;
  background: #fcee21;
  border-radius: 20px 0 20px 0;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article__time {
    width: 30%;
    font-size: 1.7rem;
    margin-left: 0%;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .article__time {
    width: 40%;
    font-size: 1.4rem;
    margin-left: 0%;
    margin-bottom: 10px;
  }
}

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

@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;
  padding-top: 30px;
  width: 100%;
  /*height: 50px;
  text-align: right;*/
  display: flex;
  align-items: flex-start;
  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;
  padding-bottom: 50px;
}

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

.pager__back,
.pager__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  color: #fff;
  background: #959595;
  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-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: 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;
  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-size: 1.2rem;
}

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

/* On Air Report */
.title--onair {
  display: flex;
  justify-content: flex-end;
  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: 20px;
    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(../../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;
  margin-bottom: 70px;
  transform: rotate(0);
}

@media (min-width: 768px) and (max-width: 1100px) {
  .pageswitch {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .pageswitch {
    margin-bottom: 35px;
  }
}

.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 10px;
  height: 28px;
  border-radius: 20px 0;
  background: #f4f4f4;
}

strong.num {
  color: #034679;
  background: #fcee21;
}

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

@media (max-width: 800px) {
  .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 (min-width: 768px) and (max-width: 1100px) {
  .article__time--individ,
  .article__title--individ,
  .article__image--individ,
  .article__content--individ {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .article__time--individ,
  .article__title--individ,
  .article__image--individ,
  .article__content--individ {
    width: 100%;
  }
}

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

.article__title--individ {
  font-size: 3.6rem;
  border-bottom: none;
  color: #012488;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .article__title--individ {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .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;
  line-height: 1.75;
}

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

.article__text--individ em {
  font-style: italic;
}

.article__text--individ .article__thumb {
  margin-bottom: 0 auto 20px;
}

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

.article__text--individ &gt; img {
  display: block;
  margin: 30px auto 0;
  height: 500px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .article__text--individ &gt; img {
    height: 300px;
  }
}

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

.article__text--individ figure {
  margin: 0 0 20px;
}

.article__text--individ h2 {
  margin: 15px 0;
  font-weight: bold;
  font-size: 1.2em;
  padding: 5px 8px;
  color: #45a1a1;
  border-left-style: solid;
  border-left-width: 8px;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  border-color: rgba(233, 89, 119, 0.95);
}

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

.kobetu .article {
  background: #FFF;
  display: flex;
  justify-content: center;
}

.kobetu .article__time {
  width: 30%;
  align-self: flex-start;
  margin-bottom: 20px;
}

.story_btn {
  background: #012488;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  border-radius: 100px;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
}
</pre></body></html>