<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ---------------------------------------------------------------------------
 * ROOT
--------------------------------------------------------------------------- */ :root {
    --color_01: #0ba29a; /* var(--color_01) */
    --color_02: #d4fef4; /* var(--color_02) */
}
/* ---------------------------------------------------------------------------
 * RESET STYLE
--------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* =============================================
 COMMON
============================================= */
body {
    background: #ebfbfb;
    font-family: 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
    line-height: 1;
    -webkit-text-size-adjust: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    color: var(--color_01);
    text-decoration: none;
}
b {
    font-weight: bold;
}
.wrap {
    overflow: hidden;
}
@media print, screen and (max-width:640px) {
    .onlyPC {
        display: none !important;
    }
    .onlyTAB {
        display: none !important;
    }
    .onlySP {
        display: block;
    }
}
@media print, screen and (min-width:641px) {
    body {
        font-size: 0.875em;
    }
    .onlyPC {
        display: block;
    }
    .onlySP {
        display: none !important;
    }
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
    .onlyTAB {
        display: block;
    }
    .noTAB {
        display: none !important;
    }
}
@media print, screen and (min-width:1001px) {
    body {
        font-size: 1em;
    }
    #generalHeader {
        height: 41px;
    }
    .onlyTAB {
        display: none !important;
    }
}
/**/
/* =============================================
 ヘッダー
============================================= */
.header {
    background: #00a199 url("../img/bg_default.png");
    /*background: var(--color_01) url("../img/bg_default.png");*/
    border-bottom: 2px solid var(--color_02);
    position: relative;
    z-index: 5;
}
.prg_reg_col1 .header, .prg_reg_col2 .header {
    border-bottom: none;
}
.header_inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /*display: flex;*/
    box-sizing: border-box;
    align-items: center;
}
.prg_info {
    box-sizing: border-box;
    font-family: "Folk Regular";
    /*text-shadow: 0 1px 3px rgba(0,0,0,0.2);*/
}
.prg_name {
    /*color: #fff;*/
    color: var(--color_01);
    font-size: 1.25em;
    font-family: "Folk Medium";
    line-height: 1.2;
}
.header-time {
    color: #fff;
    font-weight: bold;
    line-height: 1.1;
}
.header-time span {
    margin: 0 0.05em;
    position: relative;
    top: 0.025em;
    font-size: 1.5em;
    font-family: "Folk Medium";
}
.header-time span.week {
    margin: 0 -0.5em;
    top: 0;
    font-size: 1em;
}
.header-time .note {
    display: inline-block;
    margin-top: 1em;
    font-size: 0.75rem;
}
.header-time .header-caption {
	display: inline-block;
	width: 50%;
	padding: 0.3em 1em 0.4em;
	margin-bottom: 0.2em;
    background: #fff; 
	color: var(--color_01);
	text-align: center;
	border-radius: 2em;
}

@media print, screen and (max-width:640px) {
    .header.fixed {
        width: 100%;
        position: fixed;
        padding-bottom: 0;
        margin-top: 0;
        top: 0;
        left: 0;
        z-index: 6;
    }
    .header_inner {
        min-height: 60px;
        padding: 10px;
    }
    .prg_logo {
        /*max-width: 30%;*/
        max-width: 60%;
        margin: 0 auto;
    }
    .fixed .prg_logo img {
        max-height: 60px;
        transition: .3s;
        margin: 0 auto;
        display: block;
    }
    .prg_info {
        width: calc(73% - 50px);
        padding: 0 0.5em;
    }
    .prg_info .header-time {
        display: none;
    }
    .header-time {
        padding: 0.5em 0.25em;
        background: #424242;
        font-size: 0.875em;
        text-align: center;
    }
	.header-time .header-caption {
		width: 65%;
		color: #000;
		font-size: 0.9em;
		line-height: 0.9em;
	}
}
@media print, screen and (min-width:641px) {
    .header_inner {
        display: flex;
        padding: 25px 10px;
    }
    .prg_logo {
        width: 50%;
        flex-shrink: 0;
        max-width: 800px;
    }
    .prg_info {
        width: 100%;
        padding-left: 3.5em;
        box-sizing: border-box;
    }
    .prg_name {
        padding-bottom: 0.25em;
    }
    .header &gt; .header-time {
        display: none;
    }
    .header-time {
        padding: 0.25em 0 0.4em 0;
        color: #fff;
        /*border-top: 1px solid rgba(255, 255, 255, 0.5);*/
    }
	.header-time .header-caption {
        width: 80%;
		font-size: 0.9em;
		line-height: 0.9em;
	}
    .header-time .note {
        margin-top: 1.6em;
        font-size: 0.875rem;
    }
}
@media print, screen and (min-width:1001px) {
    .prg_name {
        font-size: 2.25em;
    }
    .header-time {
        font-size: 1.4em;
    }
    .header_inner {
        padding: 25px 0;
    }
	.header-time .header-caption {
		font-size: 0.7em;
		line-height: 0.9em;
	}
}
/* =============================================
 sp-menu
============================================= */
.sp-menu_title {
    padding: 10px;
    margin-top: 1px;
    background: #424242;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
}
.sp-menu_title:before {
    content: "";
    border-top: 0.55em solid var(--color_02);
    border-right: 0.325em solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0.325em solid transparent;
    position: absolute;
    top: 50%;
    left: calc(50% - 2.25em);
    transform: translate(-50%, -50%);
    transition: all 0.2s;
}
.sp-menu .sp-menu_title.open:before {
    transform: translate(-50%, -50%) rotate(180deg);
}
.sp-menu ul {
    background-color: #fff;
    overflow: hidden;
}
.sp-menu li {
    width: 50%;
    background: #fff;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    font-size: 0.875rem;
    vertical-align: top;
}
.sp-menu li a {
    width: 100%;
    padding: 10px 7px;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    color: #7d7d7d;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.sp-menu li span {
    display: none;
}
.sp-menu li::before, .sp-menu li::after {
    content: "";
    background: #e4e4e4;
    position: absolute;
    z-index: 1;
}
.sp-menu li::before {
    width: 1px;
    height: 100%;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}
.sp-menu li::after {
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
}
@media print, screen and (min-width:641px) {
    .sp-menu {
        display: none;
    }
    .sp-menu li::before {
        height: 60%;
    }
    .sp-menu li:last-child::before {
        content: none;
    }
}
/* prg_reg_col1 menu
------------------------------------ */
.prg_reg_col1 .sp-menu {
    display: block !important;
    background: var(--color_02);
}
.prg_reg_col1 .sp-menu .sp-menu_title {
    display: none !important;
}
.prg_reg_col1 .sp-menu ul {
    max-width: 1000px;
    margin: 0 auto;
    background-color: inherit;
    display: flex;
    flex-wrap: wrap;
}
.prg_reg_col1 .sp-menu li {
    width: 33.33%;
    background: var(--color_02);
}
.prg_reg_col1 .sp-menu li a {
    min-height: 4em;
    padding: 1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #000;
    font-size: 4.2vw;
    font-weight: bold;
    white-space: inherit;
}
.prg_reg_col1 .sp-menu li a::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s;
    z-index: -1;
}
.sp-menu li::before, .sp-menu li::after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width:641px) {
    .prg_reg_col1 .sp-menu ul {
        flex-wrap: inherit;
    }
    .prg_reg_col1 .sp-menu li {
        width: 100%;
    }
    .prg_reg_col1 .sp-menu li a {
        font-size: 2vw;
    }
}
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .sp-menu li a {
        font-size: 1.25em;
    }
    .prg_reg_col1 .sp-menu li a:hover::after {
        height: 100%;
        background: #fff;
        opacity: 0.3;
    }
}
/* =============================================
 pageMenu
============================================= */
.pageMenu-toggle {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    position: absolute;
    right: 0;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    color: #fff;
}
.open .pageMenu-toggle {
    background: none;
}
.pageMenu-toggle span:nth-child(1), .pageMenu-toggle span:nth-child(2), .pageMenu-toggle span:nth-child(3) {
    content: "";
    height: 2px;
    margin-left: -13px;
    background: #fff;
    position: absolute;
    transition: all 0.2s;
}
.pageMenu {
    z-index: 10;
}
.pageMenu-toggle span:nth-child(1) {
    width: 26px;
    top: 16px;
    left: 50%;
}
.pageMenu-toggle span:nth-child(2) {
    width: 26px;
    top: 24px;
    left: 50%;
}
.pageMenu-toggle span:nth-child(3) {
    width: 26px;
    top: 32px;
    left: 50%;
}
.open .pageMenu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
}
.open .pageMenu-toggle span:nth-child(2) {
    transform: translateY(0px) rotate(45deg);
}
.open .pageMenu-toggle span:nth-child(3) {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "alpha(opacity=0)";
}
@media print, screen and (max-width:640px) {
    .pageMenu {
        width: calc(100% - 12px);
        margin: 0 auto;
        display: block !important;
        position: absolute;
        top: 5px;
        right: 0;
        left: 0;
    }
    .pageMenu-toggle span:nth-child(1) {
        width: 26px;
        top: 16px;
        left: 50%;
    }
    .pageMenu-toggle span:nth-child(2) {
        width: 26px;
        top: 24px;
        left: 50%;
    }
    .pageMenu-toggle span:nth-child(3) {
        width: 26px;
        top: 32px;
        left: 50%;
    }
}
@media print, screen and (min-width:641px) {
    .pageMenu-toggle {
        opacity: 0;
    }
    .on .pageMenu-toggle {
        opacity: 1;
    }
    .pageMenu {
        width: 300px;
        position: fixed;
        top: 60px;
        right: 30px;
    }
}
/* side-menu
------------------------------------ */
.side-menu a {
    padding: 1em 1em 1em 2em;
    border-top: 1px solid #676767;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    color: #fff;
    text-decoration: none;
    text-align: left;
    line-height: 1.3;
}
.side-menu a::before {
    content: "";
    border-top: 0.325em solid transparent;
    border-right: 0.6em solid var(--color_02);
    border-bottom: 0.325em solid transparent;
    border-left: 0 solid transparent;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    transition: all 0.2s;
}
.side-menu a span {
    display: none;
}
.side-menu li:first-child a {
    border-top: none;
}
.pageMenu .side-menu {
    width: 100%;
    padding: 20px 15px 15px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 8;
}
.pageMenu .side-menu span:first-child {
    margin-bottom: 10px;
    display: block;
    color: #fff;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}
@media print, screen and (max-width:640px) {
    .side-menu a {
        padding: 1em 2em;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: center;
    }
}
@media print, screen and (min-width:641px) {
    .side-menu {
        background: #424242;
        margin-bottom: 15px;
        border-radius: 0 0 5px 5px;
        display: block;
        overflow: hidden;
    }
    .prg_reg_col1 .wrap_side-menu {
        display: none;
    }
    .side-menu a:hover::before {
        left: 0.75em;
    }
    .side-menu a span {
        font-size: 0.8rem;
    }
}
@media print, screen and (min-width:1001px) {
    .side-menu a:after {
        content: "";
        width: 100%;
        height: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 0.2s;
    }
    .side-menu a:hover:after {
        height: 100%;
        background: #fff;
        opacity: 0.15;
    }
}
/* =============================================
 info
============================================= */
.info {
    background-repeat: repeat;
    background-color: var(--color_02);
    position: relative;
    z-index: 3;
    color: #333;
}
.info_14 {
    background-image: url(../img/bg_01.jpg);
    background-size: contain;
    background-repeat: repeat;
    background-position: right;
}
.info_1 {
    background-image: url("../../../template/img/pc/info_bg1.png");
}
.info_2 {
    background-image: url("../../../template/img/pc/info_bg2.png");
}
.info_3 {
    background-image: url("../../../template/img/pc/info_bg3.png");
}
.info_4 {
    background-image: url("../../../template/img/pc/info_bg4.png");
}
.info_5 {
    background-image: url("../../../template/img/pc/info_bg5.png");
}
.info_6 {
    background-image: url("../../../template/img/pc/info_bg6.png");
}
.info_7 {
    background-image: url("../../../template/img/pc/info_bg7.png");
}
.info_8 {
    background-image: url("../../../template/img/pc/info_bg8.png");
}
.info_9 {
    background-image: url("../../../template/img/pc/info_bg9.png");
}
.info_10 {
    background-image: url("../../../template/img/pc/info_bg10.png");
}
.info_11 {
    background-image: url("../../../template/img/pc/info_bg11.png");
}
.info_12 {
    background-image: url("../../../template/img/pc/info_bg12.png");
}
.info_13 {
    background-image: url("../../../template/img/pc/info_bg13.png");
    background-repeat: repeat-x;
}
.info_inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
@media print, screen and (min-width:641px) {
    .info {
        margin-top: 0 !important;
        border-bottom: 2px solid var(--color_02);
    }
    .prg_reg_col1 .info {
        border-bottom: none;
    }
}
/* ヘッダー - ビデオ（画像）
------------------------------------ */
.info-img, .info-video {
    width: 100%;
    text-align: center;
}
.prmov {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.prmov iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 0;
}
@media print, screen and (min-width:1001px) {
    .info-img, .info-video {
        width: 68%;
        display: flex;
        align-items: center;
    }
    .prg_reg_col1 .info-img, .prg_reg_col2 .info-img {
        width: 100%;
    }
}
/* ヘッダー - 出演者情報
------------------------------------ */
.info-txt {
    width: 100%;
    padding: 1em;
    background: rgba(40, 173, 166, 0.3);
    box-sizing: border-box;
}
.cast-txt dl {
    margin-bottom: 15px;
    line-height: 1.5;
}
.cast-txt dl:last-child {
    margin-bottom: 0;
}
.cast-txt dt {
    padding: 0.5em 0.5em 0.5em 1.75em;
    margin-top: -0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    position: relative;
    display: block;
    font-size: 1.125em;
    font-weight: bold;
    line-height: 1.2;
}
.box .cast-txt dt {
    margin-bottom: 1em;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
    font-size: 1.25em;
}
.cast-txt dt::before {
    content: "";
    width: 1.25em;
    height: 1.25em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
/**/
.cast-txt .mc dt::before {
    background: url("../img/icon_mike.png") center no-repeat;
    background-size: contain;
}
.cast-txt .guest dt::before {
    background: url(../img/icon_human.png) center no-repeat;
    background-size: contain;
}
.cast-txt .progres dt::before {
    background: url(../img/icon_progres.png) center no-repeat;
    background-size: contain;
}
/**/
.cast-txt dd {
    /*margin-bottom: 0.25em;*/
    margin-bottom: 1em;
}
/*.cast-txt dd:last-child {
    margin-bottom: 0;
}*/
.cast-txt dd p {
    display: inline-block;
}
.cast-txt dd p::after {
    content: "、";
    margin-left: 0.25em;
    font-weight: normal;
}
.cast-txt dd p:last-child::after {
    content: none;
}
.cast-txt dd p:last-child {
    margin-right: 0;
}
.cast-txt dd span {
    font-size: 0.875em;
    font-weight: normal;
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
    .info-txt .cast-txt {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .info-txt .cast-txt dl {
        width: 48%;
    }
}
@media print, screen and (min-width:1001px) {
    .info-txt {
        width: 32%;
        padding: 20px;
    }
}
/* =============================================
 navigation
============================================= */
#js-nav {
    display: none;
}
/* =============================================
 contents
============================================= */
.contents {
    max-width: 1000px;
    padding: 20px 0;
    margin: 0 auto;
    font-size: 0.875em;
}
.prg_reg_col1 .contents {
    max-width: inherit;
    padding: 0;
}
.contents_main {
    width: 90%;
    margin: 0 auto 20px;
}
.prg_reg_col1 .contents_main {
    width: 100%;
}
.contents_side {
    width: 90%;
    margin: 0 auto 20px;
}
.sec_wrap {
    width: 100%;
    padding: 6% 0;
}
@media print, screen and (max-width:640px) {
    .contents_side {
        padding-top: 1px;
        margin-top: 30px;
    }
    .prg_reg_col1 .contents_side {
        margin-top: 0;
        border-top: none;
    }
    .contents_side .wrap_side-menu {
        display: none;
    }
}
@media print, screen and (min-width:641px) {
    .contents {
        width: 94%;
        padding: 0 0 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: 1em;
    }
    .prg_reg_col1 .contents {
        width: auto;
    }
    .contents_main {
        width: 68%;
        padding-top: 25px;
        margin: 0;
    }
    .prg_reg_col1 .contents_main {
        padding-top: 0;
    }
    .contents_side {
        width: 28%;
        margin: 0;
    }
    .prg_reg_col1 .contents_side {
        width: 100%;
    }
}
@media print, screen and (min-width:1001px) {
    .sec_wrap {
        padding: 50px 0;
    }
}
/* 背景パターン1 */
.bg_01 {
    background: rgba(0, 0, 0, 0.05);
}
/* 背景パターン2 */
.bg_02 {
    background: #fff;
}
/* -------------------------------------------
 hタグ
------------------------------------------- */
.box_title {
    padding: 0.3em;
    background-color: var(--color_01);
    background-image: url("../img/bg_default.png");
    background-repeat: repeat;
    /*border-top: 2px solid var(--color_02);*/
    border-bottom: 2px solid var(--color_02);
    color: #fff;
    font-size: 6.5vw;
    font-family: "Folk Medium";
    line-height: 1.2;
    text-align: center;
    /*text-shadow: 0 1px 3px rgba(0,0,0,0.2);*/
}
.inline-contents .box_title {
    text-align: left;
}
.box_title span {
    font-size: 1.5rem;
    line-height: 1.1;
}
.box .sub_title {
    padding: 0 0 5px;
    margin: 1em 0 0.5em;
    border-bottom: 2px solid #ccc;
    position: relative;
    font-size: 1.25em;
    font-weight: bold;
}
.box .sub_title:first-child {
    margin-top: 0;
}
.box .sub_title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 5em;
    height: 2px;
    background: #eeab09;
}
.box .sub_title2 {
    margin: 1em 0 0.5em;
    color: var(--color_01);
    font-weight: bold;
    font-size: 1.25em;
}
.box .sub_title2:first-child {
    margin-top: 0;
}
.box .sub_title3 {
	margin-bottom: 15px;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: var(--color_01);
}
.box .comingsoon {
    min-height: 2em;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
}
.box .comingsoon:last-child {
    margin-bottom: 0;
}
.box .comingsoon:first-child:last-child {
    min-height: 4em;
    margin: 0;
}
@media print, screen and (min-width:490px) {
    .box_title {
        font-size: 2.0em;
    }
}
@media print, screen and (min-width:641px) {
    .box_title {
        padding: 10px 20px;
    }
    .box .comingsoon {
        margin: 20px 0;
    }
}
@media screen and (min-width:1001px) {
    .box .comingsoon {
        margin: 30px 0;
    }
}
/* -------------------------------------------
 box
------------------------------------------- */
.box {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.sec_wrap .box {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.box + .box {
    margin-top: 30px;
}
.box_inner {
    padding: 15px;
    line-height: 1.5;
}
.box_inner + .box_inner {
    padding-top: 0;
}
.box_inner b {
    color: var(--color_01);
    font-weight: bold;
}
.box_inner a {
    text-decoration: underline;
}
.box_inner &gt; p + p {
    margin-top: 0.5em;
}
@media print, screen and (min-width:641px) {
    #twitter_embed_sp.box + .box {
        margin-top: 0;
    }
    .box_inner {
        padding: 20px;
    }
    .inline-contents .box_inner {
        padding: 20px !important;
    }
}
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .box + .box {
        margin-top: 60px;
    }
    .box_inner {
        padding: 30px;
    }
    .prg_reg_col1 .box_inner {
        padding: 30px 40px;
    }
    .prg_reg_col1 .box_inner + .box_inner {
        padding-top: 0;
    }
    .box_inner a:hover {
        text-decoration: none;
    }
}

/* ouen_box
---------------------------------------- */
.ouen_box{
    padding: 0 0 30px;
}

.ouen_box a:hover{
    opacity: 0.7;
} 

/* oa_date
---------------------------------------- */
.oa_date {
    padding: 0.5em 0.5em 0.7em;
    background: #424242;
    color: #fff;
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}
.oa_date span {
    margin: 0 0.125em;
    position: relative;
    top: 0.025em;
    font-size: 1.4em;
    line-height: 1.1;
}
.oa_date .week {
    margin: 0 -0.5rem;
    top: 0;
    font-size: 1em;
}
.oa_date .caution {
    margin-top: 0.5em;
    font-size: 0.875rem;
    font-weight: normal;
}
@media print, screen and (max-width:400px) {
    .oa_date .caution {
        font-size: 0.75rem;
    }
}
@media print, screen and (min-width:641px) {
    .oa_date {
        font-size: 1.5em;
    }
}
/* guest
---------------------------------------- */
.wrap_guest {
    padding: 0.75em;
    margin: 20px 0;
    background: #f0f1f2;
}
.wrap_guest:first-child {
    margin-top: 0;
}
.wrap_guest:last-child {
    margin-bottom: 0;
}
.wrap_guest .guest_box dt {
    width: 100%;
    min-width: 7em;
    min-height: 2em;
    padding: 0.5em;
    background: #000;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.875em;
    font-weight: bold;
}
.wrap_guest .guest_box dt span {
    position: relative;
    z-index: 1;
}
.wrap_guest .guest_box dd {
    padding: 0.75em 0.5em;
    font-weight: bold;
    line-height: 1.3;
}
.wrap_guest .guest_box dd p {
    display: inline-block;
    letter-spacing: 0;
}
.wrap_guest .guest_box dd p::after {
    content: "、";
    margin-left: 0.25em;
    font-weight: normal;
}
.wrap_guest .guest_box dd p:last-child::after, .wrap_guest .guest_box dd p:last-of-type::after {
    content: none;
}
.wrap_guest .guest_box dd p:last-child {
    margin-right: 0;
}
.wrap_guest .guest_box dd span {
    font-size: 0.875em;
    font-weight: normal;
}
.oa_coming {
    padding: 0.5em 0;
    font-size: 1.5rem;
    text-align: center;
}
.wrap_guest .note {
    font-size: 0.875em;
    text-align: right;
}
.wrap_guest .guest_box dl + .note {
    margin-top: -1em;
}
@media print, screen and (max-width:640px) {
    .wrap_guest .guest_box dl:last-child dd {
        padding-bottom: 0;
    }
}
@media print, screen and (min-width:520px) {
    .oa_coming {
        font-size: 2.5rem;
    }
}
@media print, screen and (min-width:641px) {
    .wrap_guest .guest_box dl {
        margin: 0.75em 0;
        display: flex;
    }
    .wrap_guest .guest_box dl:first-child {
        margin-top: 0;
    }
    .wrap_guest .guest_box dl:last-child {
        margin-bottom: 0;
    }
    .wrap_guest .guest_box dl + dl {
        padding-top: 0.75em;
        border-top: 2px dotted #999;
    }
    .wrap_guest .guest_box dt {
        width: 22%;
        font-size: 1em;
    }
    .wrap_guest .guest_box dd {
        padding: 0.5em 0 0.5em 0.75em;
        font-size: 1.125em;
    }
}

/* mini
---------------------------------------- */
.box_inner .mini_box{
	padding: 2em 0.75em;
	background: #ebfbfb;
}

.box_inner .mini_box .mini_box_img{
    padding-bottom: 2em;
}

@media print, screen and (min-width:1001px) {
    .box_inner .mini_box{
		padding: 2em 1.25em;
	}
}

/* リンクボタン
---------------------------------------- */
.link_btn {
    margin: 6% 0;
}
.link_btn:last-child {
    margin-bottom: 0;
}
.link_btn a {
    width: 90%;
    max-width: 600px;
    padding: 1em 1.5em 1em 0.5em;
    margin: 0 auto;
    background: #d90000;
    box-sizing: border-box;
    border-radius: 5px;
    display: block;
    position: relative;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
}
.link_btn a::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    margin-top: -0.3em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 0.75em;
    top: 50%;
}
@media print, screen and (min-width:641px) {
    .link_btn a {
        font-size: 1.5em;
    }
}
@media print, screen and (min-width:1001px) {
    .link_btn {
        margin: 50px 0;
    }
    .link_btn a:hover {
        transform: scale(1.05);
    }
}
/* cast-img
---------------------------------------- */
.cast-img {
    /*margin: 20px 0;*/
}
.cast-img:first-child {
    margin-top: 0;
}
.cast-img ul {
    /*margin-bottom: -15px;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.cast-img ul + ul {
    margin-top: 20px;
}
.cast-img li {
    /*width: 65%;
	max-width: 250px;*/
    width: 100%;
    max-width: 800px;
    /*margin: 0 2% 15px;*/
    position: relative;
}
.cast-img .prg_reg_col1 li {
    width: 60%;
}
.cast-img .col2 li {
    width: 45%;
}
.cast-img .col3 li {
    width: 45%;
}
.cast-img li .wrap_name {
    width: 100%;
    min-height: 4em;
    padding: 0.5em;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    line-height: 1.1;
}
.cast-img li .wrap_name p {
    width: 100%;
}
.cast-img li .name {
    font-weight: bold;
}
.cast-img li .position {
    margin-bottom: 0.5em;
    display: block;
    font-size: 0.75em;
    font-weight: normal;
}
.prof_txt {
    text-align: left;
    margin-bottom: 2em;
}
@media print, screen and (max-width:400px) {
    .cast-img li .position {
        font-size: 0.65em;
    }
}
@media print, screen and (min-width:641px) {
    .cast-img .col2 li {
        width: 35%;
        margin-left: 4%;
        margin-right: 4%;
    }
    .cast-img .col3 li {
        width: 28%;
    }
    /*.prof_txt {
        text-align: center;
    }*/
}
@media print, screen and (min-width:1001px) {
    .prof_txt {
        text-align: center;
    }
}
/* =============================================
 過去の放送内容
============================================= */
.bkn_list_year {
    padding: 0.5em 2.25em 0.5em 0.75em;
    margin-bottom: 0.5em;
    background: url("../img/icon_arrow_bot.png") center right .5em no-repeat #fff;
    background-size: 0.75em;
    border: 2px solid #ccc;
    border-radius: 5px;
    color: #000 !important;
    font-size: 1.125em;
    font-weight: bold;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.bkn_list_month {
    display: none;
}
.bkn_list_month:first-child {
    display: block;
}
.bkn_list_month ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bkn_list_month li {
    width: 16%;
    margin-bottom: 0.25em;
}
.bkn_list_month li a {
    padding: 0.5em 0;
    background: #333;
    border-radius: 5px;
    display: block;
    color: #fff;
    font-size: 1.125em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all .3s;
}
.bkn_list_month li a.active {
    background: var(--color_01);
}
.bkn_list_month li span {
    padding: 0.5em 0;
    background: #ccc;
    border-radius: 5px;
    display: block;
    color: #999;
    font-size: 1.125em;
    text-align: center;
}
@media print, screen and (min-width:641px) {
    .prg_reg_col1 .bkn_list_month li {
        width: 7.5%;
        margin-bottom: 0;
    }
}
@media print, screen and (min-width:801px) {
    .bkn_list_month li {
        width: 7.5%;
        margin-bottom: 0;
    }
}
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .bkn_list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .prg_reg_col1 .search_year {
        width: 14%;
    }
    .prg_reg_col1 .bkn_list_year {
        width: 100%;
        margin-bottom: 0;
    }
    .prg_reg_col1 .wrap_bkn_list_month {
        width: 84%;
    }
    .bkn_list_month li a:hover {
        background: var(--color_01);
    }
}
/* archive_list
------------------------------------ */
.archive_list dl + dl {
    margin-top: 1.5em;
}
.archive_list dl {
    box-shadow: 0 0 0 1px #ccc inset;
}
.archive_list dt {
    margin-top: 0.5em;
    padding: 0.5em 0.75em;
    background: #333;
    color: #fff;
    font-size: 1.4em;
    line-height: 1;
    font-weight: bold;
}
.archive_list dt span {
    font-size: 1.25em;
}
.archive_list dd {
    padding: 0 2px 2px;
}
.archive_list li {
    border-top: 1px solid #ccc;
    background: #f8f8f8;
}
/*.archive_list li:first-child {
    border-top: none;
}*/
.archive_list li:nth-child(even) {
    background: #fff;
}
.archive_list li .date {
    /*width: 25%;*/
    padding-left: 1em;
    /*display: flex;
    justify-content: left;
    align-items: center;*/
    font-weight: bold;
}
.archive_list li a {
    padding: 0.75em 3em 0.75em 0;
    display: flex;
    position: relative;
    color: #000;
    font-size: 1em;
    line-height: 1.2;
    text-decoration: none;
    transition: all .3s;
}
.archive_list li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    right: 0.75em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.archive_list li .week {
    margin: 0 -0.25em;
}
.archive_list li .txt {
    width: 75%;
    display: flex;
    justify-content: left;
}
@media print, screen and (min-width:641px) {
    .archive_list li a {
        padding: 1em 3em 1em 0;
        font-size: 1.125em;
    }
}
@media print, screen and (min-width:1001px) {
    .archive_list li a:hover {
        background: #fff4c6;
    }
}
@media print, screen and (max-width:640px) {
    .archive_list li a {
        padding: 0.75em 3em 0.75em 0.75em;
        flex-wrap: wrap;
    }
    .archive_list li a .date {
        width: 100%;
        /*margin-bottom: 0.25em;*/
        justify-content: left;
        padding-left: 0;
        font-size: 1.125em;
    }
    .archive_list li .txt {
        width: 100%;
    }
}
/* =============================================
 アイコン付きリンク
============================================= */
.icon_link a {
    display: block;
    color: #000;
    font-weight: bold;
    text-align: center;
}
.icon_link span {
    padding: 0.25em 1em 0.25em 0.25em;
    position: relative;
    display: inline-block;
}
.icon_link span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
/* =============================================
 バナーエリア
============================================= */
.bnr_list {
    max-width: 1000px;
    margin: 30px auto;
}
.sec_wrap .bnr_list {
    width: 90%;
}
.bnr_list:first-child, script + .bnr_list {
    margin-top: 0;
}
.bnr_list:last-child {
    margin-bottom: 0;
}
.box .bnr_list {
    margin: 20px auto;
}
.contents_side .bnr_list {
    width: 100%;
}
.bnr_list:first-child, script:first-child + .bnr_list {
    margin-top: 0 !important;
}
.bnr_list ul {
    display: flex;
    justify-content: center;
}
.bnr_list ul + ul {
    margin-top: 20px;
}
.bnr_list li a {
    display: block;
    box-sizing: border-box;
    text-align: center;
    transition: all .3s;
}
.bnr_list .bnr_m, .contents_side .bnr_list ul {
    margin-bottom: -10px;
    flex-wrap: wrap;
}
.prg_reg_col1 .contents_side .bnr_list ul {
    flex-wrap: inherit;
}
.bnr_list .bnr_m li {
    margin: 0 1%;
}
.bnr_list .bnr_m li, .contents_side .bnr_list li {
    margin-bottom: 10px;
}
@media print, screen and (min-width:641px) {
    .bnr_list .bnr_m li {
        width: 48%;
    }
    .bnr_list .bnr_l li {
        width: 75%;
    }
    .contents_side .bnr_list .bnr_m li {
        width: 100%;
    }
}
/* バナーオンマウス */
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .box .bnr_list {
        margin: 30px auto;
    }
    .bnr_list li a:hover {
        transform: scale(1.05);
    }
}
/*bnr_list02*/
.bnr_list02 {
    max-width: 1000px;
    margin: 30px auto;
    width: 90%;
    padding: 0 0 30px;
}
.sec_wrap .bnr_list02 {
    width: 90%;
}
.bnr_list02:first-child, script + .bnr_list02 {
    margin-top: 0;
}
.bnr_list02:last-child {
    margin-bottom: 0;
}
.bnr_list02:first-child, script:first-child + .bnr_list02 {
    margin-top: 0 !important;
}
.bnr_list02 ul {
    display: flex;
    justify-content: center;
}
.bnr_list02 ul + ul {
    margin-top: 20px;
}
.bnr_list02 li a {
    display: block;
    box-sizing: border-box;
    text-align: center;
    transition: all .3s;
}
@media print, screen and (min-width:641px) {
    .bnr_list02 {
        width: 50%;
        padding: 0;
    }
}
/* バナーオンマウス */
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .box .bnr_list02 {
        margin: 30px auto;
    }
    .bnr_list02 {
        width: 100%;
    }
    .bnr_list02 li a:hover {
        transform: scale(1.05);
    }
}
/* アーカイブ（サイド）
---------------------------------------- */
.side_tit {
    padding-bottom: 10px;
    margin: 30px auto 0;
    border-bottom: solid 2px var(--color_01);
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}
.wrap_side-archive {
    margin: 30px 0;
}
.side-archive dl {
    margin-top: 15px;
}
.side-archive dt {
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.side-archive dt span {
    padding-left: 1em;
    position: relative;
}
.side-archive dt span::before {
    content: "";
    border-top: 0.55em solid var(--color_01);
    border-right: 0.325em solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0.325em solid transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all .3s;
}
.side-archive dt.open span::before {
    transform: translateY(-50%) rotate(180deg);
}
.side-archive dd {
    padding: 0 0.75em;
    margin-top: 0.5em;
    display: block;
    text-align: center;
}
.side-archive dd a {
    padding: 0.75em;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
    display: block;
    transition: all .3s;
}
.side-archive dd a:first-child {
    border-top: 1px dotted rgba(0, 0, 0, 0.5);
}
/* sns
---------------------------------------- */
.prg_reg_col1 .wrap_sns {
    /*width: 80%;*/
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.prg_reg_col1 .wrap_sns .official {
    width: 100%;
    order: 2;
}
.prg_reg_col1 .wrap_sns .wrap_twitter {
    width: 100%;
    order: 1;
}
.prg_reg_col1 .wrap_sns .wrap_x {
    width: 100%;
    order: 1;
}
@media print, screen and (min-width:1001px) {
    .prg_reg_col1 .wrap_sns {
        max-width: 920px;
    }
    .prg_reg_col1 .wrap_sns .official {
        width: 30%;
        margin: 0;
    }
    .prg_reg_col1 .wrap_sns .wrap_twitter {
        width: 66%;
    }
    .prg_reg_col1 .wrap_sns .wrap_x {
        width: 66%;
    }
}
/* official
---------------------------------------- */
.official {
    /*margin: 30px auto;*/
    margin: 0 auto;
}
.official ul {
    margin-bottom: -15px;
    /*display: flex;
	justify-content: center;*/
}
.official li {
    margin-bottom: 15px;
}
.official li a {
    min-height: 3em;
    padding: 0.75em 0.5em;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    transition: all .3s;
}
.official .icon {
    width: 90%;
    padding-left: 2em;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
}
.official .icon::before {
    content: "";
    width: 1.6em;
    height: 1.6em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.official li a .icon span {
    font-family: Arial, Helvetica, "sans-serif";
    display: inline-block;
}
.official_youtube a {
    background: #ff0000;
}
.official_x a {
    background: #000;
}
.official_facebook a {
    background: #1877f2;
}
.official_instagram a {
    background: #d4006a;
}
.official_line a {
    background: #00b900;
}
.official_tiktok a {
    background: #000;
}
.official_youtube .icon::before {
    background: url("../img/ico_youtube.png") no-repeat;
    background-size: contain;
}
.official_x .icon::before {
    background: url("../img/ico_x.png") no-repeat;
    background-size: contain;
}
.official_facebook .icon::before {
    background: url("../img/ico_facebook.png") no-repeat;
    background-size: contain;
}
.official_instagram .icon::before {
    background: url("../img/ico_insta.png") no-repeat;
    background-size: contain;
}
.official_line .icon::before {
    background: url("../img/ico_line.png") no-repeat;
    background-size: contain;
}
.official_tiktok .icon::before {
    background: url("../img/ico_tiktok.png") no-repeat;
    background-size: contain;
}
@media print, screen and (min-width:460px) {
    .official li a {
        font-size: 1em;
    }
}
@media print, screen and (min-width:641px) {
    .official ul {
        display: flex;
        justify-content: flex-start;
    }
    .official li {
        width: 33%;
        margin: 0 1% 1em;
    }
    .official li a .icon span {
        display: inline;
    }
}
@media print, screen and (min-width:1001px) {
    .official ul {
        margin-bottom: -15px;
        display: block;
    }
    .official li {
        margin: 0 0 15px;
        width: 100%;
    }
    .official li a {
        font-size: 1.125em;
    }
    .official li a:hover {
        transform: scale(1.05);
    }
}
/* 縦配置 */
.official.vertical a {
    padding: 1.5em 1rem;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all .3s;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
}
.official.vertical a .icon {
    position: relative;
}
.official.vertical .official_x a {
    background: #000;
    display: none; /* スマホでTwitter非表示 */
}
.official.vertical .official_instagram a {
    background: #d4006a url("../img/bg_insta.png") no-repeat;
    background-size: 100% 100%;
}
@media print, screen and (min-width:1001px) {
    .official.vertical ul {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .official.vertical li {
        width: 100%;
        height: calc(100% / 2 - 2%); /* 分割する数により調整 */
        margin-bottom: 0;
    }
    .official.vertical a {
        width: 100%;
        height: 100%;
        align-items: center;
    }
    .official.vertical .official_x a {
        display: flex; /* スマホで非表示の場合追加*/
    }
    .official.vertical .icon {
        padding-left: 0;
        padding-top: 4.5em;
    }
    .official.vertical .icon::before {
        width: 3.6em;
        height: 3.6em;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
}
/* x
---------------------------------------- */
.wrap_x {
    background: #f2faff;
    border: 2px solid #000;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 0 1.5em;
}
.ttl_x {
    padding: 0.9em;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.ttl_x span {
    padding-left: 2em;
    position: relative;
}
.ttl_x span::before {
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-top: -0.8em;
    background: url("../img/ico_x.png") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
}
.x_embed {
    /*width: 90%;*/
    max-width: 610px;
    /*margin: 15px auto;*/
    min-height: 400px;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-y: scroll;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 1px rgb(0 0 0 / 30%);
}
.x_embed iframe {
    width: 660px !important;
}
.twbtn a {
    padding: 0.75em 1.5em 0.75em 0.5em;
    background-color: #1da1f2;
    border-radius: 25px;
    display: block;
    box-sizing: border-box;
    position: relative;
    transition: all .3s;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}
.twbtn a span {
    display: inline-block;
}
.twbtn a:after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
@media print, screen and (min-width:641px) {
    .x_embed {
        /*margin: 30px auto;*/
        overflow: hidden;
    }
}
@media print, screen and (min-width:1001px) {
    .ttl_x {
        font-size: 1.125rem;
    }
    .twbtn a:hover {
        transform: scale(1.05);
    }
}
/* =============================================
 SNS シェア
============================================= */
.wrap_sblink {
    padding: 6% 0;
    background: #fff;
}
.sblink dt {
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}
.sblink dt span:before {
    content: "/";
    margin-right: 0.25em;
    display: inline-block;
    transform: scale(-1, 1) translateY(0.1em);
    font-size: 1.4em;
}
.sblink dt span:after {
    content: "/";
    margin-left: 0.25em;
    display: inline-block;
    transform: translateY(0.1em);
    font-size: 1.4em;
}
.list_sblink {
    font-size: 0;
    text-align: center;
}
.list_sblink li {
    margin: 0 0.4rem;
    display: inline-block;
}
.list_sblink li a {
    width: 16vw;
    height: 16vw;
    padding: 3vw;
    background: #000;
    border-radius: 100%;
    box-sizing: border-box;
    display: block;
    transition: all .3s;
}
.list_sblink li.sblink_x a {
    background: #000;
}
.list_sblink li.sblink_facebook a {
    background: #1877f2;
}
.list_sblink li.sblink_line a {
    background: #00b900;
}
@media print, screen and (min-width:375px) {
    .list_sblink li a {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
}
@media print, screen and (min-width:641px) {
    .wrap_sblink {
        padding: 40px 0;
    }
}
@media print, screen and (min-width:1001px) {
    /*.list_sblink li a:hover {
		transform: scale(1.15);
	}*/
    .list_sblink li {
        margin: 0 0.6rem;
    }
    .sblink_line {
        display: none !important;
    }
}
/* =============================================
 フッター
============================================= */
footer {
    background: #000;
}
.footer {
    position: relative;
}
/* コピーライト
---------------------------------------- */
.footer_copy {
    padding: 30px 0;
    color: #fff;
    font-size: 0.875em;
    line-height: 1.3;
    text-align: center;
}
.footer_copy p {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
}
.footer_copy a {
    color: #fff;
}
/* ページトップ
---------------------------------------- */
.pageTop {
    position: fixed;
    position: absolute;
    top: -30px;
    right: 10px;
    z-index: 10;
    transition: all .3s;
}
.pageTop a {
    width: 60px;
    height: 60px;
    background: var(--color_01);
    border-radius: 100%;
    display: block;
    position: relative;
}
.pageTop a::before {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translate(-50%, -30%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
}
@media print, screen and (min-width:1001px) {
    .pageTop {
        top: -40px;
        right: 30px;
    }
    .pageTop a {
        width: 80px;
        height: 80px;
        transition: all .3s;
    }
    .pageTop a::before {
        width: 20px;
        height: 20px;
        border-top: 4px solid #fff;
        border-right: 4px solid #fff;
    }
    .pageTop a:hover {
        transform: translate(0, -10px);
    }
}
/* フッター広告
---------------------------------------- */
#ad_banner_sp &gt; div {
    margin: 0 auto;
}
@media print, screen and (max-width:640px) {
    footer {
        padding-bottom: 30px;
    }
}
/* ---------------------------------------------------------------------------
 * 汎用
--------------------------------------------------------------------------- */
/* テキスト
------------------------------------ */
.fs_xs {
    font-size: 0.75em !important;
}
.fs_s {
    font-size: 0.875em !important;
}
.fs_l {
    font-size: 1.25em !important;
}
.fs_xl {
    font-size: 1.5em !important;
}
.fs_inherit {
    font-size: inherit !important;
}
.fw_normal {
    font-weight: normal !important;
}
.fw_bold {
    font-weight: bold !important;
}
.ti-05 {
    text-indent: -0.5em !important;
}
.ls01 {
    letter-spacing: 0.1em !important;
}
.ls-005 {
    letter-spacing: -0.05em !important;
}
.ls-01 {
    letter-spacing: -0.1em !important;
}
.ls-02 {
    letter-spacing: -0.2em !important;
}
.ls-03 {
    letter-spacing: -0.3em !important;
}
.ta_left {
    text-align: left !important;
}
.ta_right {
    text-align: right !important;
}
.ta_center {
    text-align: center !important;
}
.week {
    margin: 0 -0.5em;
    display: inline-block;
    font-size: 0.875em;
}
.update{
    font-size: 0.75em;
    color: #fff;
    background: #0ba29a;
    padding: 0.2em 0.8em;
    border-radius: 50px;
}
/* レイアウト
------------------------------------ */
.mt0 {
    margin-top: 0 !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mt_1em {
    margin-top: 1em !important;
}
.mb_1em {
    margin-bottom: 1em !important;
}
/* =============================================
 protect
============================================= */
.protect {
    display: block;
    position: relative;
    -webkit-user-drag: none;
    user-select: none;
}
.protect::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.protect img {
    -webkit-user-drag: none;
    pointer-events: none;
}
@media print {
    .protect {
        display: none !important;
    }
}
/* =============================================
 見逃しバナー
============================================= */
.delivery_list_wrap {
    padding: 2% 0;
    background: #434343;
    position: relative;
    overflow: hidden;
}
.delivery_list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.delivery_list ul {
    display: flex;
    justify-content: center;
}
.delivery_list ul + ul {
    margin-top: 20px;
}
.delivery_list li a {
    display: block;
    box-sizing: border-box;
    text-align: center;
    transition: all .3s;
}
.delivery_list ul {
    margin: 0;
    flex-wrap: wrap;
}
.delivery_list li {
    margin: 0 0 10px;
}
.delivery_list li:last-child {
    margin-bottom: 0;
}
@media print, screen and (min-width:641px) {
    .delivery_list_wrap {
        padding: 20px 0;
    }
    .delivery_list {
        width: 98%;
    }
    .delivery_list ul {
        justify-content: flex-start;
    }
    .delivery_list li {
        width: 48%;
        margin: 0 1%;
    }
    .delivery_list li:nth-child(3) {
        margin-top: 1%;
    }
}
@media print, screen and (min-width:1024px) {
    .delivery_list ul {
        justify-content: center;
    }
    .delivery_list li {
        width: 31%;
        margin: 0 1%;
    }
    .delivery_list li:first-child {
        margin-left: 0;
    }
    .delivery_list li:last-child {
        margin-right: 0;
    }
    .delivery_list li:nth-child(3) {
        margin-top: 0;
    }
}
/* バナーオンマウス */
@media print, screen and (min-width:1024px) {
    .delivery_list li a:hover {
        transform: scale(1.05);
    }
}
/* 画像 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .delivery_list li img {
        image-rendering: -webkit-optimize-contrast;
    }
}
/*member*/
.member .ttl {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    color: #0ba29a;
}
.member .ttl span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}
.member .member_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0 0;
    font-size: 0.875em;
}
.member .member_box dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.member .member_box dl dt {
    width: 48%;
    margin: 0 2% 15px 0;
}
.member .member_box dl dt img {
    width: 100%;
}
.member .member_box dl dd {
    width: 50%;
}
.member .member_box dl dd ol li {
    text-indent: -1.3em;
    padding-left: 1.3em;
}
.member2 {
    width: 100%;
    border: 1px solid #0ba29a;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.member2 dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.member2 dl dt {
    width: 40%;
    background-color: #ffcfd5;
    margin-right: 5%;
}
.member2 dl dt img {
    width: 70%;
    margin: 5% 15%;
}
.member2 dl dd p.name {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    color: #0ba29a;
    margin-bottom: 8px;
}
.member2 dl dd {
    width: 55%;
}
.member2 dl dd p {
    font-size: 1.0rem;
}
.txtBold {
    font-weight: bold;
    text-align: center;
}
@media print, screen and (min-width:641px) {
    .member .member_box dl {
        width: 48%;
    }
    .member .member_box dl dt {
        margin: 0 2% 25px 0;
    }
    .member2 {
        padding: 20px;
    }
    .member2 dl dt {
        margin-right: 15px;
    }
}
@media print, screen and (min-width:641px) {
    .gaiyo .onlyPC {
        display: none;
    }
}
@media print, screen and (min-width:1001px) {
    .gaiyo .onlyPC {
        display: block;
    }
}
.wrap_video {
  max-width: 800px;
  margin: 0 auto 15px;
  background: #000;
  border: 2px solid #000;
  border-radius: 2px;
}
.oa_video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.oa_video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}</pre></body></html>