@charset "utf-8";
/* =============================================
・640pxまでをスマホとする
・641pxからタブレット／PCとする
・1000pxはPC専用とする
============================================= */
/* =============================================
 サイトカラー
------------------------------------------------
文字色： （デフォルト）#222
------------------------------------------------
キーカラー ： #000
※設定時 「※キーカラー01」で検索し、該当箇所を変更してください。
------------------------------------------------
キーカラー２ ： （デフォルト）なし
※設定時 「※キーカラー02」で検索し、該当箇所を変更してください。
------------------------------------------------
背景カラー： #fff & #eaf3fa
------------------------------------------------
基本フォント： （デフォルト）'メイリオ', 'Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','Osaka', sans-serif;
※明朝の場合は'a-otf-ryumin-pr6n';
------------------------------------------------
WEBフォント　（デフォルト）非表示
※設定時 「※WEBフォント」で検索し、該当箇所を変更してください。
============================================= */
:root {
	/*キーカラー01*/
	--key_color: #eb6da5;
	/*キーカラー02*/
	--key_color2: #009BE7;
	/*サブカラー*/
	--sub_color: #eb6da5;
	/*ナビ テキスト背景 ライン*/
	--nav_bgcolor: #EB6DA5;
	--nav_txtcolor: #fff;
	--nav_line: rgba(255, 255, 255, 0.5);
	/*見逃し配信 テキスト背景*/
	--missed_bgcolor:none;
	--missed_txtcolor: #fff;
	/*フッター テキスト背景*/
	--footer_bgcolor: #E63B84;
	--footer_txtcolor: #fff;
	/*英語フォント*/
	--txt_eng: 'Roboto', sans-serif;
	/*日本語フォント*/
    --txt_jpn: "Shin Maru Go Bold";
}
/* =============================================
 背景
============================================= */
.bg_p{ background-color: #fba0d8}

.bg_y{ background-color: #ffd772}

.bg_b{ background-color: #74d6ff}

.bg_g{ background-color: #8bffd8}

.bg_w{ background-color: rgba(255,255,255,0.8)}

/* 背景パターン1 */
.bg_01 {
	background: rgba(0, 0, 0, 0.05);
}
.bg_01 .sec_box {
	background: #fff;
}
/* 背景パターン2 */
.bg_02 {
	background: #fff;
}
.bg_02 .sec_box {
	background: #fff;
}
/* =============================================
 リセット
============================================= */
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
============================================= */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	color: #222;
	font: 1.6em/1.6 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1;
	-webkit-text-size-adjust: none;
}
/* 背景パターン(ベース画像) */
body::before {
	content: "";
	width: 100vw;
	height: 100vh;
	background: url("../img/common/bg_page.png");
	background-size: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
}
img {
	max-width: 100%;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	image-rendering: auto; 
}
a {
	color: var(--key_color); /* ※キーカラー01 */
	text-decoration: none;
	transition: all 0.3s;
}
a:hover {
	color: var(--key_color2); /* ※キーカラー01 */
}
@media screen and (max-width:640px) {
	.onlyPC {
		display: none !important;
	}
	.onlySP {
		display: block;
	}
	.onlyTB {
		display: none !important;
	}
}
@media screen and (min-width:641px) {
	.onlyPC {
		display: block;
	}
	.onlySP {
		display: none !important;
	}
}
@media (min-width: 641px) and (max-width: 800px) {
	.onlyTB {
		display: block;
	}
}
@media screen and (min-width:1001px) {
	.onlyTB {
		display: none !important;
	}
}
/* =============================================
 トップ ヘッダー
============================================= */
.header_wrap {
	background:url("../img/common/header_pc_bg.png") no-repeat ;
	background-size: cover;
	position: relative;
}
.header_wrap .header_main {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.header_wrap img {
	-webkit-backface-visibility: hidden;
}
/* header_main
---------------------------------------- */
/* header_main
---------------------------------------- */
.underlayer .header_wrap {
    background: url("../img/common/header_pc_bg.png") top right;
    background-size: 100% auto;
}
.underlayer .header_main {
    width: 94%;
    padding: 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.underlayer .header_logo {
    width: 75%;
    max-width: 300px;
    margin: 10px auto 5px;
}

/* 共通 ヘッダー ナビ
---------------------------------------- */
.gnavi_wrap {
	background: var(--nav_bgcolor);
	background: linear-gradient(0deg, #ff87bb 0%, #FF95C2 50%, #ff87bb 100%);
    border-top: 2px solid rgba(255,255,255,0.8);
    border-bottom: 2px solid rgba(255,255,255,0.8);
}
.gnavi {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.gnavi li {
    width: 25%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    box-sizing: border-box;
}
.underlayer .gnavi li {
    min-height: 60px;
}
.menu_sp .gnavi li {
    background-image: none;
}
.gnavi.item6 li {
    width: 33.33%;
}
.gnavi li::before {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--nav_line);
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}
.gnavi li::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--nav_line);
    position: absolute;
    bottom: -1px;
    left: 0;
}
.gnavi a {
    padding: 0;
    display: block;
    color: var(--nav_txtcolor);
    font-family: var(--txt_jpn); /* ※WEBフォント*/
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
}
.gnavi li:nth-child(1), .gnavi li:nth-child(2), .gnavi li:nth-child(3) {
    padding: 0.2em 0 0.1em;
}
.gnavi li:nth-child(4), .gnavi li:nth-child(5), .gnavi li:nth-child(6) {
    padding: 0.1em 0 0.2em;
}
.gnavi a span {
    position: relative;
    display: inline-block;
    font-family: var(--txt_eng);
    font-weight: bold;
    font-size: 1.1vw;
}
.gnavi a span::after {
    content: '';
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.80);
    position: absolute;
    left: 50%;
    bottom: -30%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 0.4s;
}
.gnavi a span {
    display: block;
    font-size: 4vw;
/*    text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);*/
}
.gnavi .current a, .gnavi a:hover {
    /*color: #ffff00;*/
}
.gnavi .current a span::after, .gnavi a:hover span::after {
    width: 100%;
    opacity: 1;
    /*background: rgba(255,255,0,0.5);*/
}
@media screen and (max-width:350px) {
    .gnavi a span {
        font-size: 1rem;
    }
}
@media screen and (min-width:641px) {
    .gnavi {
        flex-wrap: inherit;
    }
    .gnavi li {
        width: 100%;
        border-bottom: none;
        background-position: top 10px left 6px, bottom 10px right 6px;
    }
    .gnavi a {
        padding: 20px 0;
    }
    .gnavi li:nth-child(1), .gnavi li:nth-child(2), .gnavi li:nth-child(3), .gnavi li:nth-child(4), .gnavi li:nth-child(5), .gnavi li:nth-child(6) {
        padding: 0;
    }
    .gnavi .adjust {
        width: 120%;
    }
    .gnavi li::before {
        height: 60%;
    }
    .gnavi li:last-child::before {
        content: none;
    }
    .gnavi a span {
        font-size: 2vw;
    }
}
@media screen and (min-width:1001px) {
    .gnavi a span {
        font-size: 1.8rem;
    }
}
/* =============================================
 共通 タイトル（WEBFONT）
============================================= */

.ttl_cont{
	margin: max(-24vw,-150px) auto min(4vw,30px) ;
	text-align: center;
	
}
.ttl_cont img{
		width: min(98vw,540px);
}
.ttl_eng {
	font-size: 5rem;
	font-family: var(--txt_eng); /* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
}
/*.ttl_eng:first-letter{
	color: #fff;
} */
.ttl_jpn {
	margin-bottom: 5%;
	color: var(--key_color); /* ※キーカラー01 */
	font-size: 1.6rem;
	font-family: var(--txt_jpn); /* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
}
.ttl_eng + .ttl_jpn {
	margin-top: 0.5em;
}

.txt_catch {
	font-family: var(--txt_jpn); /* ※WEBフォント*/
    font-weight: bold;
    color:#ff4896;
    line-height: 1.4;
    font-size: 1.1em;
	margin-bottom: 2rem;
}
.txt_catch span {
	display: inline-block;
}
.txt_sub_catch {
	margin: 1.25em 0 0.25em;
	color: var(--key_color); /* ※キーカラー01 */
	font-size: 1.25em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
	text-align: center;
}
.txt_sub_catch span {
	display: inline-block;
	position: relative;
}
.txt_sub_catch span::after, .txt_sub_catch span::before {
	content: "";
	width: 1em;
	height: 50%;
	border-bottom: 1px solid var(--key_color); /* ※キーカラー01 */
	position: absolute;
}
.txt_sub_catch span::after {
	right: -1.5em;
}
.txt_sub_catch span::before {
	left: -1.5em;
}

@media screen and (min-width:641px) {
	.ttl_eng {
		font-size: 7.2rem;
	}
	.ttl_jpn {
		font-size: 2.0rem;
	}
.txt_catch {
    line-height: 1.4;
    font-size: 1.3em;
}
.ttl_cont img{
		width:440px;
}
}
@media screen and (min-width:1001px) {
.ttl_cont img{
		width:540px;
}
}
/* =============================================
 共通 ボックススタイル
============================================= */
.sec_wrap {
	padding: min(16vw, 60px) 0 min(15vw, 80px);
	margin-top: min(12vw, 120px);
	position: relative;
    background-image: url("../img/common/patarn_wan.png");
	background-size:80%;
    background-position:top center;
    background-repeat:repeat;
}
.sec_wrap_cont {
	padding: min(10vw, 60px) 0 min(15vw, 80px);
	margin-top: min(25vw, 160px);
    background-image: url("../img/common/line.png"),url("../img/common/line.png"),url("../img/common/patarn_wan.png");
    background-position: top, bottom, center;
    background-repeat: repeat-x,repeat-x,repeat;
	position: relative;
	background-size: auto,auto,80%;
}

.sec_wrap_cont:first-of-type {
	margin-top: min(16vw, 120px);
}

.sec_box {
	width: min(96vw, 1000px); 
	margin: 0 auto;
	padding: min(4vw, 40px);
	background: #fff;
/*	border: 2px solid #ccc;*/
	box-shadow: 0 0 2px rgba(0,0,0,0.1);
	border-radius: 20px;
	box-sizing: border-box;
	line-height: 1.6;
	position: relative;
}
.sec_box.bt_bg {
    margin: 0 auto min(8vw, 60px);
    padding: min(6vw, 80px);
}

.sec_box + .sec_box {
	margin-top: 5%;
}
/* ボックス無し */
.sec_box.box_none {
	padding: 0 !important;
	background: none;
	border: none;
	box-shadow: none;
}
.main .sec_wrap > .inner {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (min-width:641px) {
	.sec_box {
		line-height: 1.8;
	}
.sec_wrap {
	background-size:700px;
}
.sec_wrap_cont {
	background-size: auto,auto,500px;
}

}
@media screen and (min-width:1000px) {
	.sec_wrap {
		padding: 60px 0;
	}
}
/* =============================================
 汎用パーツ
============================================= */
/* テキストスタイル
---------------------------------------- */
.txt span {
	color: var(--key_color); /* ※キーカラー01 */
}
.txtColor {
	color: var(--key_color); /* ※キーカラー01 */
	font-weight: bold;
}

.txtColor2 {
	color: var(--sub_color);
	font-weight: bold;
}
.txtColorCatch {
	color: #ff4896;
	font-weight: bold;
}
.txtColorStory {
	color: #ff4896;
	font-size: 1.1em;
}

.txtColor_pk {
	color: #ff4896;
}
.txtColor_gr {
	color: #5eb8b1;
}
.txtColor_or {
	color: #eca614;
}
.txtColor_yg {
	color: #83a619;
}
.txtColor_pl {
	color: #ca7ba9;
}

.txtEng {
	color: var(--txt_eng); /* ※WEBフォント*/
	font-weight: bold;
}
.txtjpn {
	color: var(--txt_jpn); /* ※WEBフォント*/
	font-weight: bold;
}
.txtBold {
	font-weight: bold;
}
.txtSSS {
	font-size: 0.625em !important;
}
.txtSS {
	font-size: 0.75em !important;
}
.txtS {
	font-size: 0.875em !important;
}
.txtS1 {
	font-size: 1em !important;
}
.txtL {
	font-size: 1.25em !important;
	font-weight: bold;
}
.txtLL {
	font-size: 1.6em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
}
.txtCenter {
	text-align: center !important;
}
@media screen and (min-width:641px) {
.txtCenterPC {
	text-align: center !important;
}
.txtS1 {
	font-size: 1.1em !important;
}
}
.txtLeft {
	text-align: left !important;
}
.ls-01 {
	letter-spacing: -0.1em;
}
.ls-02 {
	letter-spacing: -0.2em;
}
.ls-03 {
	letter-spacing: -0.3em;
}
.ti-05 {
	text-indent: -0.5em;
}
.txtColorH {
	color: var(--key_color); /* ※キーカラー01 */
	font-weight: bold;
}
.txtColorP {
	color:#ff4896;
	font-weight: bold;
}
.txtColorPr {
	color:#9450DD;
	font-weight: bold;
}

.nowrap{
    white-space: nowrap;
}
/* 共通部分 間隔あける
---------------------------------------- */
.pb0 {
	padding-bottom: 0 !important;
}
.pb30 {
	padding-bottom: 3%;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb30 {
	margin-bottom: 3%;
}
.pt0 {
	padding-top: 0 !important;
}
.pt30 {
	padding-top: 3%;
}
.mt0 {
	margin-top: 0 !important;
}
.mt30 {
	margin-top: 3%;
}
.pl30 {
	padding-left: 3%;
}
.ml30 {
	margin-left: 3%;
}
.pr30 {
	padding-right: 3%;
}
.mr30 {
	margin-right: 3%;
}
/* ボックススタイル
---------------------------------------- */
.box_wrap {
	padding-top: 8%;
	padding-bottom: 8%;
}
.box_wrap:first-child {
	padding-top: 0;
}
.box_wrap:last-child {
	padding-bottom: 0;
}
.box_wrap + .box_wrap {
	border-top: 1px solid #ccc;
}
.box {
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	position: relative;
}
.box + .box {
	margin-top: 4%;
}
.box p + p {
	margin-top: 1em;
}
.box.boxS {
	max-width: 450px;
}
.box.boxM {
	max-width: 750px;
}
.box.inner {
	padding: 4%;
}
.box.border {
	border: 1px solid #ccc;
}
.box.bg::before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--key_color); /* ※キーカラー01 */
	opacity: 0.1;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/* 2カラム */
.gridInner + .gridInner {
	margin-top: 4%;
}
/* リスト */
.ib_list li {
	margin-right: 1em;
	display: inline-block;
}
.ib_list li:last-child {
	margin-right: 0;
}
@media screen and (min-width:641px) {
	.box_wrap {
		padding-top: 4%;
		padding-bottom: 4%;
	}
	.boxS.inner, .boxM.inner {
		padding: 2%;
	}
	.grid {
		display: flex;
		justify-content: space-between;
	}
	.gridInner + .gridInner {
		margin-top: 0;
	}
	.gridLeft {
		width: 40%;
		flex-shrink: 0;
	}
	.gridLeft.w50 {
		width: 50%;
	}
	.gridLeft.w30 {
		width: 30%;
	}
	.gridRight {
		width: 100%;
		padding-left: 4%;
		box-sizing: border-box;
	}
}
/* リンクボタン画像
---------------------------------------- */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -4vw;
    left: 50%;
    transform: translateX(-50%);
}
.btn a {
    display: block;
    width: 80vw;
    height: 20vw;
    background:url("../img/common/btn_bg.png") no-repeat;
    background-size: 100% auto;
    font-family: "Shin Maru Go Bold";
    text-align: center;
    margin: 0 auto;
    padding: 4vw 0 20vw 6vw;
    font-size: 4vw;
    color: #fff;
    text-decoration: none;
/*    text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);*/
    line-height: 1.7;
    box-sizing: border-box;
    transition: all 0.2s;
}
.btn a:hover, .btn a:focus, .btn a:active {
    transform: scale(1.05);
}
.btn.bl {
    bottom: 2vw;
}
.underlayer .btn.bl ,.underlayer .btn{
    bottom: 6vw;
}
.btn.bl a {
    background:url("../img/common/btn_bg_b.png") no-repeat;
    background-size: 100% auto;
}
.btn.pk {
    position: relative;
    margin: 2em auto 0;
	bottom: auto !important;
}
.btn.pk a {
    background:url("../img/common/btn_bg_pk.png") no-repeat;
    background-size: 100% auto;
    padding: 8vw 0 0 18vw;
	text-align: center;
    font-size: 6vw;
    width: 80vw;
    height: 24vw;
}

@media screen and (min-width:641px) {
    .btn {
        bottom: -30px;
    }
    .btn a {
        width: 450px;
        height: 100px;
        margin: 0 auto;
        padding: 23px 0 0 20px;
        font-size: 2rem;
        bottom: -65px
    }
.btn.bl {
    bottom: 60px;
}
.underlayer .btn.bl ,.underlayer .btn{
    bottom: 80px;
}
    .btn.pk a {
        width: 500px;
        height: 150px;
        margin: 0 auto;
        padding: 55px 0 0 90px;
        font-size: 3rem;
        bottom: 0;
    }
}

/* リンクボタン
---------------------------------------- */
.link_btn_rd {
	padding-top: 20px;
}
.link_btn_rd a {
	width: 96%;
	max-width: 650px;
	padding: 2%;
	margin: 0 auto;
	background: #f23084;
	box-sizing: border-box;
	border-radius: 50vh;
	display: block;
	text-align: center;
	text-decoration: none;
	border-bottom: 6px solid #BC4A7D;
}
.link_btn_rd span {
	padding: 0 2em 0 0;
	display: inline-block;
	position: relative;
	color: #fff;
	font-size: 1.4rem;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
	line-height: 40px;
}
.link_btn_rd span::before {
	content: "";
	width: 1em;
	height: 1em;
	background: url("../img/common/ico_link_arrow_wh.png") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.link_btn_rd.x_follow a {
	background: #000;
}
.link_btn_rd.x_follow span {
	padding: 0 0 0 2.5em;
}
.link_btn_rd.x_follow span::before {
	width: 1.8em;
	height: 1.8em;
	background: url("../img/common/ico_x.png") no-repeat;
	background-size: contain;
	right: inherit;
	left: 0;
}
.link_btn_rd.ig_more a {
	background: #d4006a;
}
.link_btn_rd.ig_more span {
	padding: 0 0 0 2.5em;
}
.link_btn_rd.ig_more span::before {
	width: 1.8em;
	height: 1.8em;
	background: url("../img/common/ico_insta.png") no-repeat;
	background-size: contain;
	right: inherit;
	left: 0;
}


.link_btn_rd.bt_red a{
	background-color:#FF002F;
	border-color: #AA0002;
}


@media screen and (min-width:641px) {
	.link_btn_rd {
		padding-top: 30px;
	}
	.link_btn_rd {
		clear: both;
	}
	.link_btn_rd span {
		font-size: 2.0rem;
	}
}
/* Radial Out */
.link_btn_rd a {
	overflow: hidden;
	position: relative;
	transform: perspective(1px) translateZ(0);
	transition-property: color;
	transition-duration: 0.6s;
	vertical-align: middle;
}
.link_btn_rd a:before {
	content: "";
	background: rgba(255, 255, 255, 0.2);
	border-radius: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	transform: scale(0);
	transition-property: transform;
	transition-duration: 0.6s;
	transition-timing-function: ease-out;
	z-index: -1;
}
@media screen and (min-width:1001px) {
	.link_btn_rd a:hover:before, .link_btn_rd a:focus:before, .link_btn_rd a:active:before {
		transform: scale(1.2, 9);
	}
}
/* リンクボタン2
---------------------------------------- */
.link_btn_rd.s_btn a {
	width: 100%;
	max-width: 650px;
	padding: 1% 2%;
	background: var(--sub_color);
	border-radius: 5px;
}
.link_btn_rd.s_btn span {
	padding: 0 2.5em 0 0;
	font-size: 1.2rem;
	line-height: 30px;
}
@media screen and (min-width:641px) {
	.link_btn_rd.s_btn {
		padding-top: 15px;
	}
	.link_btn_rd.s_btn span {
		font-size: 1.6rem;
	}
}
/* =============================================
 トップページ
============================================= */
/* 見逃しバナーエリア
---------------------------------------- */

.missed_bnr-area {
	width: 100%;
	padding: 15px 0 !important;
	background:rgb(88 240 255 / 85%);
	color: var(--missed_txtcolor);
}
.missed_bnr-area ul {
	margin: 0 auto;
	width: 90%;
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.missed_bnr-area li {
	text-align: center;
}
.missed_bnr-area li {
	width: 96%;
	margin: 0 2%;
}
@media screen and (min-width:641px) {
.missed_bnr-area {
	max-width: 1200px;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
	top:48vw;
	background: none;
}
.missed_bnr-area ul {
	margin: 0 auto;
	width: 40%;
	max-width: 470px;
	padding:0 2%;
	float: right;
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	align-items: center;
	box-sizing: border-box;
}
	.missed_bnr-area li {
		width: 100%;
		margin: 0;
	}
}
@media screen and (min-width:1201px) {
.missed_bnr-area {
	top:560px;
}
.missed_bnr-area ul {
	max-width: 470px;
	padding:0 30px 0 0;
}
}
/* バナーエリア
---------------------------------------- */
.sec_wrap_bnr {
	width: 96%;
	max-width: 1000px;
	border-radius: 20px;
    padding:  min(10vw, 40px) 0;
    margin: min(20vw, 80px) auto 0;
    background-image: url("../img/common/patarn_wan.png");
    background-position:center;
    background-repeat:repeat;
    position: relative;
	background-color: rgba(146,212,237,0.5);
	border: 4px solid #92D4ED; 
}
.ttl_cont_sns {
    margin: max(-20vw, -80px) auto 20px;
    text-align: center;
}
.ttl_cont_sns img {
    width: min(75vw,300px);
}
.bnr_list {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.bnr_list.bnr_m {
	margin-bottom: -20px;
	flex-wrap: wrap;
}
.bnr_list + .bnr_list {
	margin-top: 20px;
}
.bnr_list li {
	max-width: 230px;
	margin: 0 1%;
}
.bnr_list.bnr_m li {
	margin-bottom: 20px;
}
.bnr_list li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	transition: .5s;
}
.bnr_list li a img {
	border: 1px solid #fff;
	border-radius: 5px;
}

@media screen and (max-width:640px) {
	
	.bnr_list {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.bnr_list li {
		width: 48%;
		margin-bottom: 2%;
	}
	.bnr_list li {
		max-width: 100%;
	}
}
.bnr_list.sp_col3 {
	justify-content: space-between;
}
.bnr_list.sp_col3 {
	margin-bottom: -2%;
	flex-wrap: wrap;
}
.bnr_list.official.sp_col3 li {
	width: 48%;
	margin-bottom: 2%;
}
.bnr_list.official.sp_col3 .icon {
	padding-left: 2em;
}
.bnr_list.official li a {
	min-height: 4em;
	padding: 0.75em 0.5em;
	border: none;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 3.5vw;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
}
.bnr_list.official .icon {
	/*padding-left: 2.5em;*/
    padding-left: 2em;
	display: inline-block;
	position: relative;
}
.bnr_list.official .icon::before {
	content: "";
	width: 1.7em;
	height: 1.7em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bnr_list.official li a .icon span {
	font-family: Arial, Helvetica, "sans-serif";
	display: inline-block;
}
.bnr_list .official_youtube a {
	background: #ff0000;
}
/*.bnr_list .official_twitter a {
	background: #1da1f2;
}*/
.bnr_list .official_x a {
	background: #fff;
}
.bnr_list .official_instagram a {
	background: #d4006a;
	/*背景グラデ廃止background: #d4006a url("../img/common/bg_insta.jpg") no-repeat;
	background-size: 100% 140%;*/
}
.bnr_list .official_line a {
	background: #00b900;
}
.bnr_list .official_tiktok a {
	background: #000;
}
.bnr_list .official_youtube .icon::before {
	background: url("../img/common/ico_youtube.png") no-repeat;
	background-size: contain;
}
/*.bnr_list .official_twitter .icon::before {
	background: url("../img/common/ico_twitter.png") no-repeat;
	background-size: contain;
}*/
.bnr_list .official_x .icon::before {
	background: url("../img/common/ico_x.png") no-repeat;
	background-size: contain;
}
.bnr_list .official_instagram .icon::before {
	background: url("../img/common/ico_insta.png") no-repeat;
	background-size: contain;
}
.bnr_list .official_line .icon::before {
	background: url("../img/common/ico_line.png") no-repeat;
	background-size: contain;
}
.bnr_list .official_tiktok .icon::before {
	background: url("../img/common/ico_tiktok.png") no-repeat;
	background-size: contain;
}
/**/
.sns_grid dl{
    margin-bottom: 20px;
}
.sns_grid dt{
    padding: 0.25em;
    background: #000;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}
.sns_grid .sns_grid_ttl_x img{
    width: 1.25em;
}
.sns_grid .sns_grid_ttl_insta{
    background: #d4006a;
}
.sns_grid dd{
	padding: 0.5em;
	background: rgba(255,255,255,0.5);
}
@media screen and (max-width:640px) {
	
	.bnr_list.official {
		flex-wrap: wrap;
	}
	.bnr_list.official li {
		width: 48%;
		margin-bottom: 2%;
	}
}
@media screen and (min-width:460px) {
	.bnr_list.official li a {
		font-size: 1.6rem;
	}
}
@media screen and (min-width:641px) {
	.bnr_list.bnr_m li {
		width: 48%;
	}
	.bnr_list + .bnr_list {
		margin-top: 30px;
	}
	.bnr_list.official li {
		width: 100%;
		max-width: 310px;
	}
	.bnr_list.official.sp_col3 {
		justify-content: flex-start;
	}
	.bnr_list.official.sp_col3 li {
		width: 31%;
	}
	.bnr_list.official li a .icon span {
		display: inline;
	}
}
@media screen and (min-width:1000px) {
	.bnr_list + .bnr_list {
		margin-top: 40px;
	}
	.bnr_list.official li a {
		padding: 1.5em 0;
	}
	.bnr_list.official.sp_col3 {
		justify-content: center;
	}
	.bnr_list.official.sp_col3 li {
		width: 18%;
	}
	.sns_grid{
		display: flex;
		justify-content: space-between;
	}
	.sns_grid dl{
		width: 49%;
		margin-bottom: 0;
	}	
}
/* バナーオンマウス */
@media screen and (min-width:1001px) {
	.bnr_list li a:hover {
		transform: scale(1.05);
	}
}
/* PR動画
---------------------------------------- */
.prmov_wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.prmov {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.prmov iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}

/* 次回予告
---------------------------------------- */
.next_pict {
	max-width: 800px;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
}
.next_pict a:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../img/common/mov_icon.png") center no-repeat;
	position: absolute;
	left: 0;
}

/* ボックス
---------------------------------------- */
.line {
	margin: 2em 0;
	border-top: 4px dotted #ccc;
}
.line_pi {
	margin: 2em 0;
	border-top: 4px dotted #FBA0D8;
}
.line_pr {
	margin: 2em 0;
	border-top: 4px dotted #B26DFF;
}
/* list */
.wrap_list li {
	padding-left: 1em;
	margin-bottom: 0.5em;
	font-size: 0.875em;
	text-indent: -1em;
	line-height: 1.3;
}
.wrap_list li:last-child {
	margin-bottom: 0;
}
.done {
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	color: #e60012;
	margin: 1.5em 0;
	border: 2px #e60012 solid;
	padding: 1rem;
}
.box_sttl {
	padding: 0 0 3%;
	margin-top: 8%;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
@media screen and (min-width:641px) {
	.box_sttl {
		padding: 0 0 20px;
		margin-top: 40px;
		font-size: 1.4em;
	}
}
/* 1枚画像 */
.box_main {
	text-align: center;
}
.box_main img {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	display: block;
}
.box_main span {
	display: inline-block;
	line-height: 1.3;
}
/* 画像+テキスト */
.box_LR {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0 0 20px 0 !important;
	margin-bottom: 20px;
}
.box_LR:last-of-type {
	margin-bottom: 0;
}
.box_LR .L_img {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.box_LR .L_img img {
	width: 100%;
	border: 1px solid #eee;
}
.box_LR .R_txt {
	width: 100%;
}
.box_LR .R_txt .box_ttl {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2;
	padding: 0.5em 0;
}
@media screen and (min-width:641px) {
	.box_LR {
		width: 100%;
		margin: 0 auto 20px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		padding: 10px;
	}
	.box_LR .L_img {
		width: 35%;
		margin: 0 5% 0 0;
	}
	.box_LR .L_img img {
		width: 100%;
	}
	.box_LR .R_txt {
		width: 60%;
	}
	.box_LR .R_txt .box_ttl {
		font-size: 1.2em;
		line-height: 1.2;
		padding: 20px 0;
	}
}
.boxcenter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


/* =============================================
 フッター
============================================= */
.sec_wrap_footer {
    padding: 4% 0 0;
    margin-top: min(10vw, 40px);
/*    background-image: url("../img/common/patarn_wan.png");
	background-size:500px;
    background-position:center;
    background-repeat:repeat;*/
    position: relative;
}

.footer_wrap {
	display: block;
	position: relative;
	color: #fff;
	text-align: center;
}
/* SNS シェア
---------------------------------------- */
.wrap_sblink {
	padding: 6% 0;
	background: #fff;
}
.sblink dt {
	margin-bottom: 15px;
	font-weight: bold;
	text-align: center;
}
.sblink dt span {
	color: #e63b84;
}
.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_twitter a {
	background: #1da1f2;
}*/
.list_sblink li.sblink_x a {
	background: #fff;
}
.list_sblink li.sblink_facebook a {
	background: #1877f2;
}
.list_sblink li.sblink_line a {
	background: #00b900;
}
@media screen and (min-width:375px) {
	.list_sblink li a {
		width: 56px;
		height: 56px;
		padding: 12px;
	}
}
@media screen and (min-width:641px) {
	.wrap_sblink {
		padding: 40px 0;
	}
}
@media screen and (min-width:1000px) {
	/*.list_sblink li a:hover{
		transform: scale(1.15);
	}*/
	.list_sblink li {
		margin: 0 0.6rem;
	}
}
/* コピーライト
---------------------------------------- */
.footer_copy {
	padding: 6% 0 calc(6% + 2.5em);
	background: var(--footer_bgcolor);
	background-image: url("../img/common/line.png");
	background-repeat: repeat-x;
	color: var(--footer_txtcolor);
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: center;
}
.footer_copy p {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
}
.footer_copy p + p {
	margin-top: 0.75em;
}
@media screen and (min-width:641px) {
	.footer_copy {
		padding: 40px 0;
		font-size: 1.4rem;
	}
}
/* 下部情報
---------------------------------------- */
.o_info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20vw;
    display: flex;
    justify-content: center;
}
.o_info p {
    text-align: center;
}
@media screen and (min-width:641px) {
    .o_info {
        margin: 0 auto 80px;
    }
}
/* ページトップ
---------------------------------------- */
.pageTop {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    margin-top: -20vw;
    margin-bottom: 5vw;
}
.pageTop a {
    width: 50vw;
    height: auto;
    display: block;
    transition: all 0.2s;
    filter: drop-shadow(0 0px 3px rgba(0, 0, 0, .4));
}
.pageTop a:hover, .pageTop a:focus, .pageTop a:active {
    transform: translate(0, -10px);
    filter: drop-shadow(0 0px 3px rgba(0, 0, 0, .4));
}
@media screen and (min-width:641px) {
    .pageTop {
        margin-top: -100px;
        margin-bottom: 40px;
    }
    .pageTop a {
        width: 250px;
    }
}
/* 終了後対応
---------------------------------------- */
/* 見逃し配信終了対応 */
.watch_bnr .watch_end a {
	background: #787878;
	display: block;
	pointer-events: none;
}
.watch_bnr .watch_end img {
	border: 1px solid #ccc !important;
	opacity: 0.5;
}
/* 次回予告終了対応 */
.end {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}
@media screen and (min-width:641px) {
	.end {
		font-size: 2.0rem;
	}
}
/* =============================================
 動画スライダー
============================================= */
#thumb_slider .owl-carousel {
	max-width: 1000px;
}
#thumb_slider .inner {
	width: 100%;
}
#thumb_slider .sec_box {
	padding: 0;
}
#thumb_slider .owl-item p {
	margin-top: 10px;
	line-height: 1.3;
}
.thumb01 {
	width: 90%;
	margin: 0 auto;
}
@media screen and (min-width:641px) {
	.thumb01 {
		width: 60%;
		max-width: 500px;
	}
}
/* =============================================
 下層スマホメニュー
============================================= */
.menu_sp {
	width: 100%;
	background: rgba(255, 255, 255, 1);
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000000;
	transform: translateY(-100%);
	transition: .3s;
}
.menu_sp.open {
	transform: translateY(0);
}
.menu_sp .gnavi {
	padding-top: calc(2.5em + 2px);
}
.menu_sp .gnavi li {
	width: 50%;
}
.bottom_menu_sp {
	width: 100%;
	padding: 0.75em;
	background: var(--key_color); /* ※キーカラー01 */
	box-sizing: border-box;
	position: fixed;
	top: 0;
	color: #fff;
	text-align: center;
	font-weight: bold;
	z-index: 10000001;
	transform: translateY(-100%);
	transition: .3s;
}
.bottom_menu_sp.show {
	transform: translateY(0);
}
.bottom_menu_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bottom_menu_inner > div {
	width: 20px;
	height: 17px;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
.bottom_menu_inner > p {
	padding-left: 0.75em;
	display: inline-block;
}
.bottom_menu_sp span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	left: 0;
	transition: all .4s;
}
.bottom_menu_sp span:nth-of-type(1) {
	top: 0;
}
.bottom_menu_sp span:nth-of-type(2) {
	top: 7px;
}
.bottom_menu_sp span:nth-of-type(3) {
	bottom: 0;
}
.bottom_menu_sp.active {
	border-bottom: 1px solid var(--nav_line);
}
.bottom_menu_sp.active span:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}
.bottom_menu_sp.active span:nth-of-type(2) {
	opacity: 0;
}
.bottom_menu_sp.active span:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}
@media screen and (min-width:641px) {
	.menu_sp, .bottom_menu_sp {
		display: none !important;
	}
}
/* =============================================
 アクセス時モーダル表示
============================================= */
.popup_inline_open {
	background: #fff;
	line-height: 1.6;
}
/* =============================================
 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;
	}
}
/* =============================================
 owl-dot
============================================= */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--key_color) !important; /* ※キーカラー01 */
	opacity: 1 !important;
}
.owl-theme .owl-dots .owl-dot span {
	background: var(--key_color) !important; /* ※キーカラー01 */
	opacity: 0.3 !important;
}
/* キャスト
---------------------------------------- */
.cast_box {
	width: 100%;
	margin-bottom: 4%;
	background: #fff;
}
.cast_box:last-child {
	margin-bottom: 0;
}
.pict_cast {
	width: 100%;
	max-width: 600px;
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem;
}
.pict_cast.col2 li {
	width: 50%;
}
.txt_cast {
	padding: 4% 0 0 0;
}
.txt_cast:first-child {
	padding-top: 0;
}
.txt_cast dd + dd {
	margin-top: 1em;
}
.sttl_cast {
	margin-bottom: 2em;
	color: var(--key_color); /* ※キーカラー01 */
	line-height: 1.3;
	font-family: var(--txt_jpn);
}
.cast_color_pr .sttl_cast {
	color: #B26DFF;
}
.sttl_cast p + p {
	margin-top: 0.25em;
}
.sttl_cast .cast_name {
	font-size: 1.6em;
	text-align: center;
}
.sttl_cast span {
	display: inline-block;
}
.box_s .pict_cast {
	width: 40%;
	flex-shrink: 0;
}
.cast_box.box_s .sec_box {
	display: flex;
}
.box_s .txt_cast {
	padding: 0 0 0 4%;
}
.box_s .pict_cast li {
	width: 100%;
}
.box_s .sttl_cast .cast_name {
	font-size: 1.2em;
}

@media screen and (min-width:641px) {
	.cast_box .sec_box {
		display: flex;
	}
	.cast_box.box_s {
		width: 48%;
	}
	.mfp-content .cast_box.box_s {
		margin-left: auto;
		margin-right: auto;
	}
	.cast_box.box_s .sec_box {
		padding: 2vw;
	}
	.txt_cast {
		padding: 0 0 0 4%;
	}
	.txt_cast:first-child {
		padding-left: 0;
	}
	.sttl_cast .cast_name {
		font-size: 1.8em;
	}
	.pict_cast.col2 {
		width: 42%;
		max-width: 400px;
	}
	.pict_cast li {
		width: 100%;
	}
	.box_s .sttl_cast .cast_name {
		font-size: 1.2em;
	}
}
@media screen and (min-width:1000px) {
	.cast_box.box_s .sec_box {
		padding: 20px;
	}
}

/* コメント
---------------------------------------- */
.qa_list dt {
	color: var(--key_color);
	font-weight: bold;
}
.cast_color_pr .qa_list dt {
	color: #B26DFF;
}
.qa_list dl + dl {
	margin-top: 0.75em;
}

/* =============================================
 トピックス
============================================= */
.sec_box_topics {
    width: 100%;
	max-width: 1000px;
        margin: 0 auto min(8vw, 60px);
    padding:0 1%;
    background:none;
    box-shadow:none;
    border-radius:none;
    box-sizing: border-box;
}

.wrap_col {
  display: flex;
  justify-content:center;
  align-items: stretch;
  flex-wrap: wrap;
	width: 100%;
margin-top: min(-2vw, -30px);
}

.col_box {
  	width: 48%;
	 margin-right: 1%;
	 margin-left: 1%;
  display: flex;
  justify-content: center;
  border: 1px solid #eee;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
	background-color: #fff !important;
	border-radius: 10px;
	box-sizing: border-box;
}
.col_box {
  margin-top: min(4vw, 40px);
}
	#top .col_box{
		display: none;
	}
	#top .col_box:nth-of-type(n+1):nth-of-type(-n+4){
		display: block;
	}
 #top .col_box:nth-of-type(1), #top .col_box:nth-of-type(2) {
    width: 100%;
  }
@media print, screen and (min-width:641px) {
 #top .wrap_col {
  justify-content:flex-start;
}
	
 #top .col_box {
  	width: 31%;
	 margin-right: 1%;
	 margin-left: 1%;
}

 #top .col_box:nth-of-type(n+1):nth-of-type(-n+5){
		display: block;
	}
 #top .col_box:nth-of-type(1),#top .col_box:nth-of-type(2) {
    width: 48%;
	 margin-right: 1%;
	 margin-left: 1%;
  }
.underlayer .wrap_col {
  justify-content:flex-start;
}
	
.underlayer .col_box {
  	width: 31%;
	 margin-right: 1%;
	 margin-left: 1%;
}
}	
@media print, screen and (max-width:640px) {
.underlayer .col_box:nth-of-type(1), .underlayer .col_box:nth-of-type(2) {
    width: 48%;
  }
.underlayer .col_box {
  	width: 48%;
}
}

/*----------------------------------------
コンテンツボックス
---------------------------------------- */
.bnr_box {
	overflow: hidden;
	border-radius: 10px;

}
.bnr_img{
  width: 100%;
	max-height: 260px;
	overflow: hidden;
}

.bnr_box img {
	border-top-left-radius: 10px !important;
	border-top-right-radius: 10px !important;
}
a .bnr_box img {
  transition: all 0.5s;
  width: 100%;
}
a:hover .bnr_box img {
  transform: scale(1.05, 1.05);
}
.bnr_box .bnr_info {
  text-align: left;
  padding: min(3vw,15px);
  line-height: 1.5;
}
a .bnr_box .bnr_info p {
  line-height: 1.2;
	font-size: 1em;
	text-decoration: none !important;
}
.new:before {
    display: inline-block;
    content: "NEW";
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFB600;
    box-sizing: border-box;
    font-family: "Shin Maru Go Bold";
    line-height: 1;
    padding-top: 6px;
    margin: 0 4px 0 0;
}
a .new:before {
    color: #FFB600 !important;
}
.label:after {
    display: inline-block;
    min-width: 90px;
    height: 20px;
    border-radius: 50vw;
    text-align: center;
    font-size: 1rem;
	letter-spacing: 1px;
    color: #fff;
    box-sizing: border-box;
    line-height: 1;
    padding: 6px 0 0;
    margin: 0 0 0 10px;
	white-space: nowrap;
}
.notice:after {
    content: "おしらせ";
    background-color: #F061B1;
}
.event:after {
    content: "イベント";
    background-color: #F69231;
}
.campaign:after {
    content: "キャンペーン";
    background-color: #5DC8B8;
}
.essential:after {
    content: "重要";
    background-color: #FF0057;
}

.topics_date {
    font-size: 1em;
	color: var(--key_color2);
}

.bnr_info > .topics_date{
	margin-bottom: 0.5em;
}
@media print, screen and (max-width:640px) {
.topics_date {
	letter-spacing: -1px;
}
	.new:before {
    font-size: 1rem;
	letter-spacing: -1px;
}
.label:after {
    padding: 6px 1vw 0;
    min-width: 14vw;
}
.campaign:after {
/*	letter-spacing: -1px;*/
}
.campaign:after {
    font-size: 0.9rem;
}
}
/* =============================================
 ムービー
============================================= */
.sec_box.movie_bg {
	max-width: 800px;
	background-color: #fff;
	border-radius: 6px !important;
	padding: 10px !important;
}

/* =============================================
 ストーリー
============================================= */
.sec_box.chara_bg {
    background-image: url(../img/common/chara.png),url(../img/common/bg_chara.png);
    background-position: bottom 20px center, top center;
    background-size: min(96%, 800px),100%;
    background-repeat: no-repeat, repeat-y;
    padding-bottom: min(65vw, 500px) !important;
    margin: 0 auto min(8vw, 60px);
    border: 4px solid #fff;
}
.txt_box {
    width: 100%;
	max-width: 800px;
    margin: 0 auto 4%;
    padding: 0;
    box-sizing: border-box;
    font-family: "Shin Maru Go Heavy";
    color: var(--key_color2) ;
    font-size:min(6vw, 1.8rem);
	text-align: center;
}
.txt_box p{
    margin-bottom: 1.5rem
}
.txt_box span{
    display: inline-block;
}

/* =============================================
 過去の作品
============================================= */
.archive_box{
	width: min(96vw, 1000px); 
	margin: 0 auto;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}
.archive_list{
	width: 100%;
	padding: 0 1rem;
	box-sizing: border-box;
}
.archive_list ul{
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.archive_list ul li{
	margin-bottom: 1rem;
}
.archive_list li a{
	font-size: min(6vw, 1.6rem);
	text-decoration: none;
    font-family: "Shin Maru Go Heavy";
	color: #00AB7E;
transition: .3s;
}
.archive_list li a:hover{
	color: var(--key_color);
}

@media screen and (min-width:641px) {
.slide_select,.move_controler{
	display: none;
}
.contains{
	width: min(96vw, 1000px);
    margin: min(2vw, 20px) auto min(4vw, 40px);
    padding: 55px min(4vw, 20px) 35px;
    background: #fff;
	box-sizing: border-box;
	border-radius: 20px;
	box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.slide{
	width: 100%;
}
.archive_list{
	padding: 0 1rem;
}	
.contains ul{
	width: 100%;
	/*margin: 1rem auto 0 0;*/
	display: flex;
	justify-content:flex-start;
	align-items:flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	box-sizing: border-box;
}
.contains ul li{
	width: 33.3%;
	padding-bottom: 1rem;
	line-height: 1.2;
	text-align: center;
}
/*.contains ul li.wid1{
		width: 36% !important;
	line-height: 1.2;
	}
.contains ul li.wid2{
		width: 28% !important;
	}*/
	.contains ul li a{
	white-space: nowrap
}
.only_Sl{
		display: none;
	}
}
@media screen and (max-width:640px) {
	
.carousel {
  display: flex;
  justify-content: center;
}
.contains {
  width: 100vw;
  height:86vw;
  overflow: hidden;
  position: relative;
  padding: 0;
	margin: 0 auto;
}
.slide_select {
  display: none;
}
.slide {
  width: 100vw;
  height:86vw;
  position: absolute;
  opacity: 0;
transition: .5s;
}
.scroll_button {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  top: 35vw;
  margin-top: -15px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #00AB7E;
  cursor: pointer;
  opacity: 0.5;
  z-index: 3;
}
.scroll_button:hover {
  opacity: 1;
}
.scroll_prev {
	position: absolute;
  left: 15px;
  transform: rotate(-135deg);
	z-index: 100;
}
.scroll_next {
  right: 15px;
  transform: rotate(45deg);
}
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.button_move {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 8px;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0.5;
  z-index: 2;
}
.button_move:hover {
  opacity: 0.75;
}
.button_move {
  background-color: #00AB7E;
}
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .move_controler
  .button_move:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked
  ~ .move_controler
  .button_move:nth-of-type(4) {
  opacity: 1;
}
	
.contains ul{
	width: calc(100% - 30px);
  	height:70vw;
	margin: 0 30px 0 15px;
	box-sizing: border-box;
	border-radius: 20px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.contains ul li{
	width:100%;
	text-align: center;
	line-height: 1;
}
.only_nSl{
		display: none;
	}
	}

/* =============================================
 トピックスページ
============================================= */
.page_box{
    width: 96%;
	max-width: 800px;
    margin: 0 auto 30px;
}
.page_box_inner + .page_box_inner {
	margin-top: 30px;
}
.page_img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.page_box .topics_date {
    text-align: right;
    margin-bottom: 1rem;
}

.page_title {
    padding: 0.5em 5vw;
    margin: 0 0 1em;
    position: relative;
    font-size: min(5vw,3rem);
    font-weight: bold;
    font-family: var(--txt_jpn);
    color:#fff;
    line-height: 1.2;
    text-align: center;
	background: #ff4896;
	display: block;
	border-radius: 16px;
}

.page_title::before {
  content: '';
  display: inline-block;
  width: 20vw;
  height: 20vw;
background-image: url("../img/common/icon_cat.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
	position: absolute;
	top:-5vw;
	left:-6vw;
}
.page_title::after {
  content: '';
  display: inline-block;
  width: 14vw;
  height: 14vw;
background-image: url("../img/common/icon_dog.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
	position: absolute;
	bottom:-6vw;
	right:-8vw;
}
.page_title span {
    font-size: 0.8em;
    line-height: 1.2;
	display: inline-block;
}
.page_title .fs_normal {
    font-size: 1em;
}
.page_title .txt_adjust {
    margin: -0.1em 0 0.2em;
    display: block;
    line-height: 1.0;
}
.main_title {
    padding: 0;
    margin: 1em 0 0.5em;
    border-bottom: 2px solid  var(--key_color);
    position: relative;
	font-size: 1.2em;
    font-weight: bold;
    font-family: var(--txt_jpn);
    color: var(--key_color);
    line-height: 1.4;
/*    text-align: center;*/
}
.main_title::before {
    content: "●";
    margin-right: 2px;
    font-size: 0.8em;
}
.sub_title {
    font-family: var(--txt_jpn);
    color: var(--key_color);
    line-height: 1.4;
    margin: 1em 0 0.5em;
    font-weight: bold;
	font-size: 1.1em;
	padding-left: 0.5em;
	border-left: 3px solid var(--key_color);
}
.info_ttle{
    font-family: var(--txt_jpn);
    color: var(--key_color);
    line-height: 1.4;
    margin: 1em 0 0.5em;
	font-size: 1em;
    border-bottom:1px solid  var(--key_color);
}
.info_ttle_s{
    font-family: var(--txt_jpn);
    color: var(--key_color);
    line-height: 1.4;
    margin: 1em 0 0.5em;
	font-size: 1em;
}

.page_box > p:not(:last-of-type) {
	margin-bottom: 1.5rem;
}

.topicsdetail_box {
    width: 100%;
    max-width: 1000px;
    margin: -12% auto 12%;
    padding: 10% 4% 20% 4%;
    background: #fff;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 6px 6px rgb(0 0 0 / 10%);
    border: 4px solid #AAE2FF;
}
.topics_img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 4vw auto 0;
}
.topicsdetail_box .topics_date {
    text-align: right;
    margin-bottom: 10px;
}

@media screen and (min-width:641px) {
.page_title {
    padding: 0.5em 90px;
}
.page_title::before {
  width: 140px;
  height: 140px;
	top:-30px;
	left:-10px;
}
.page_title::after {
  width: 100px;
  height: 100px;
	bottom: auto;
	top:-10px;
	right:-20px;
}
.page_box_inner + .page_box_inner {
	margin-top: 60px;
}
}

/*リスト*/
ul.info-list{
  list-style: none;
}
ul.info-list li {
  text-indent: -1em;
  padding-left: 1em;
}
ul.info-list li::before {
  content: '・';
}
/*表*/
table.gaiyo {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
}
.gaiyo th, .gaiyo td {
    padding: 0.2em;
    border: solid 2px var(--sub_color);
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
}
table.gaiyo th {
    background:  var(--sub_color);
    border-bottom: solid 2px #fff;
    color: #fff;
    font-weight: bold;
    width: 20%;
}
table.gaiyo.skyth th {
    background:  var(--sub_color);
	color: #fff;
	border-bottom: solid 2px #fff;
}
table.gaiyo tr:last-child th {
    border-bottom: solid 2px var(--sub_color);
}
.gaiyo span {
    color: var(--sub_color);
    font-weight: bold;
}
.gaiyo span.day{
	color: #222;
	font-weight: normal;
    display: inline-block;
    min-width: 200px;
    text-align: left;
}
.gaiyo span.num{
	color: #222;
	font-weight: normal;
	display:inline-block;
	width: 4em;
}

@media screen and (max-width: 641px) {
    table.gaiyo {
        width: 100%;
        margin: 6vw auto 0;
    }
    table.gaiyo th, table.gaiyo td {
        display: block;
        width: 100%;
        border-bottom: none;
        max-width: auto;
    }
    .gaiyo tr:last-child {
        border-bottom: solid 2px var(--sub_color);
    }
    table.gaiyo tr:last-child th {
        border-bottom: none;
    }
table.gaiyo.skyth th {
	border-bottom: none;
}
}
/*終了対応*/
.endwrap {
    width: 100%;
    height: 100%;
    position: relative;
}
.endwrap .endwrap_over {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 50;
    top: 0;
    left: 0;
}
.endwrap .endwrap_txt {
	font-family: var(--txt_jpn);
    font-size: 2.4rem;
    color: var(--key_color);;
    text-align: center;
    line-height: 1.5;
    padding: 5%;
    border: 2px solid var(--key_color);
    top: 50px;
    left: 0;
    right: 0;
}
@media screen and (max-width:640px) {
    .endwrap .endwrap_txt {
        font-size: 1.8rem;
    }
}
.spanblock{
	display: block;
}

/* ------------------------------------
 * entry
------------------------------------ */
.entrybnr {
  position: fixed;
  bottom: 30vw;
  right: -3vw;
  z-index: 1000;
	width: 35vw;
	height: 35vw;
	background: url("../img/common/entry_dog.png") no-repeat bottom left;
	background-size: contain;
	transition: all 0.5s;
}
.entrybnr:hover {
	background: url("../img/common/entry_cat.png") no-repeat bottom left;
	background-size: contain;
}

@media print, screen and (min-width:641px) {
  .entrybnr {
  bottom: 0;
  right: -20px;
  width: 250px;
	  height: 250px;
  }
}
jump_point {height: 1px;
display: block;
padding-top: 40px;
margin-top: -40px;
}

/* ------------------------------------
 * data
------------------------------------ */
.txtColorData {
	color: var(--key_color2) !important;
}
.bgData {
	background-color: var(--key_color2) !important;
}
.main_data{
	border-bottom: 4px solid var(--key_color2);
	color: var(--key_color2);
}
.sub_data{
    border-left: 4px solid var(--key_color2);
	color: var(--key_color2);
}
.txt_catch1 {
    margin-bottom: 1em;
    font-size: min(5.5vw,2rem);
    text-align: center;
    color:  var(--key_color2);
    letter-spacing: 1px;
    line-height: 1.4;
    font-family: var(--txt_jpn);
    text-shadow: #E1F4FF 2px 0px, #E1F4FF -2px 0px, #E1F4FF 0px -2px, #E1F4FF 0px 2px, #E1F4FF 2px 2px, #E1F4FF -2px 2px, #E1F4FF 2px -2px, #E1F4FF -2px -2px, #E1F4FF 1px 2px, #E1F4FF -1px 2px, #E1F4FF 1px -2px, #E1F4FF -1px -2px, #E1F4FF 2px 1px, #E1F4FF -2px 1px, #E1F4FF 2px -1px, #E1F4FF -2px -1px;
}
.txt_catch2 {
	margin: 20px 0 0;
    font-weight: bold;
    font-family: var(--txt_jpn);
    color: var(--key_color2);
    line-height: 1.4;
    font-size: 1.2em;
}
.txt_catch3 {
    margin: 0.5em 0 0;
    font-weight: bold;
    font-family: var(--txt_jpn);
    color: #394756;
    line-height: 1.4;
    font-size: 0.96em;
}
.txt_catch1 span,
.txt_catch2 span,
.txt_catch3 span,
.data_box span{
	display: inline-block;
}

.data_box{
	width: 100%;
	border-radius: 10px;
	padding: min(4vw,20px);
	font-family: var(--txt_jpn);
	color:   var(--key_color2);
	box-sizing: border-box;
	background-color: #E5F5FF;
	text-align: center;
	margin-bottom: 1em
}

.border_box{
    width: 100%;
    border: 2px solid var(--key_color2);
    box-sizing: border-box;
    background-color: #E5F5FF;
    border-radius: 10px;
    padding: 5% 3%;
    margin: 1em 0;
	font-family: var(--txt_jpn);
}

ol.list_num > li {
    width: 100%;
    list-style:decimal;
    list-style-position: inside !important;
    text-indent: -0.9em;
    margin-bottom: 0.6em;
    line-height: 1.6;
    font-size: 0.98em;
    border-bottom: 2px dashed #fff;
    padding-left: 0.9em;
    padding-bottom: 0.6em;
    box-sizing: border-box;
	color:   var(--key_color2);
	font-weight: bold;
}
ol.list_num > li:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}
@media print, screen and (min-width:641px) {
	.txt_catch2 {
		font-size: 1.4em;
	}
	.txt_catch3 {
		font-size: 1.2em;
	}
}