<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================
・640pxまでをスマホとする
・641pxからタブレット／PCとする
・1000pxはPC専用とする
============================================= */
/* =============================================
 サイトカラー
------------------------------------------------
文字色： （デフォルト）#222
------------------------------------------------
キーカラー ： #000
※設定時 「※キーカラー01」で検索し、該当箇所を変更してください。
------------------------------------------------
キーカラー２ ： （デフォルト）なし
※設定時 「※キーカラー02」で検索し、該当箇所を変更してください。
------------------------------------------------
背景カラー： #fff &amp; #eaf3fa
------------------------------------------------
基本フォント： （デフォルト）'メイリオ', 'Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','Osaka', sans-serif;
※明朝の場合は'a-otf-ryumin-pr6n';
------------------------------------------------
WEBフォント　（デフォルト）非表示
※設定時 「※WEBフォント」で検索し、該当箇所を変更してください。
============================================= */ :root {
	/*キーカラー01*/
	--key_color: #7242ff;
	/*キーカラー02*/
	--key_color2: #eee;
	/*サブカラー*/
	--sub_color: #870000;
	/*ナビ テキスト背景 ライン*/
	--nav_bgcolor: #41bdce;
	--nav_txtcolor: #fff;
	--nav_line: rgba(255, 255, 255, 0.5);
	/*見逃し配信 テキスト背景*/
	--missed_bgcolor: #2e3638;
	--missed_txtcolor: #fff;
	/*フッター テキスト背景*/
	--footer_bgcolor: #000;
	--footer_txtcolor: #fff;
	/*英語フォント*/
	--txt_eng: 'Cardo', serif;
	/*日本語フォント*/
	--txt_jpn: 'Reimin Y40 Bold';
	--txt_jpn2: 'Sei Kaisho CB1';
	/*--txt_jpn3: 'HonMinSKok-Book';*/
	--txt_jpn3: 'HonMinSink-B';
}
.font_jpn {
	font-family: var(--txt_jpn) !important; /* ※WEBフォント*/
}
.font_jpn2 {
	font-family: var(--txt_jpn2) !important; /* ※WEBフォント*/
}
.font_jpn3 {
	font-family: var(--txt_jpn3) !important; /* ※WEBフォント*/
}

/* =============================================
 背景
============================================= */
/* 背景パターン1 */
.bg_01 {
	background: rgba(0, 0, 0, 0.05);
}
.bg_01 .sec_box {
	background: #fff;
}
/* 背景パターン2 */
.bg_02 {
	/*background: #1a004d;*/
}
.bg_02 .sec_box {
	background: none;
	border: 2px solid rgba(255,255,255,0.3);
	color: #fff;
}
.bg_divinate .bg_02 .sec_box {
	background: rgba(0,0,0,0.5);
}

/* 背景パターン3 */
.bg_03 {
	/*background: #1a004d;*/
}
.bg_03 .sec_box {
	background: none;
	border: none;
}
.bg_divinate .bg_03 .sec_box {
	/*background: #e5e5e5;*/
	/*background: linear-gradient(30deg, #e5ffff, #eee5ff);*/
	background: #f2f2f2;
	border: 2px solid #c21500;
	border-image: linear-gradient(to right, #cceeff 0%, #deccff 100%);
	border-image-slice: 1;
}
.sec_box {
	border: 2px solid #c21500 !important;
	border-image: linear-gradient(to right, #cceeff 0%, #deccff 100%) !important;
	border-image-slice: 1 !important;
}
.sec_box.bg_ajust {
	background: #ccc !important;
}
/* =============================================
 リセット
============================================= */
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%;
}
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/main_bg.png");
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
}*/
img {
	max-width: 100%;
	vertical-align: middle;
}
a {
	color: var(--key_color); /* ※キーカラー01 */
}
a:hover {
	text-decoration: none;
}
@media screen and (max-width:640px) {
	.onlyPC {
		display: none !important;
	}
	.onlySP {
		display: block;
	}
}
@media screen and (min-width:641px) {
	.onlyPC {
		display: block;
	}
	.onlySP {
		display: none !important;
	}
}
@media screen and (max-width:768px) {
	.onlyTBPC {
		display: none !important;
	}
	.onlyTB {
		display: block;
	}
}
@media screen and (min-width:769px) {
	.onlyTBPC {
		display: block;
	}
	.onlyTB {
		display: none !important;
	}
}
@media screen and (min-width:1001px) {
	#generalHeader{
		height: 41px;
	}
}
/* =============================================
 トップ ヘッダー
============================================= */
.header_wrap {
	/*background: linear-gradient(0deg, #1a004d, #272ba6);*/
	background: #fff;
}
.header_wrap.bg_divinate {
	min-height: 100vh;
	background: #05062a url("../img/common/bg_divinate.jpg") center no-repeat;
	background-size: cover;
}
.header_wrap.bg_divinate.bg02 {
	background: url(../img/common/bg_divinate02_buil.png) center bottom no-repeat , url(../img/common/bg_divinate02.jpg) center no-repeat #05062a;
	background-size: 100% , cover;
}
.header_wrap.bg_divinate.bg03 {
	background: #fff;
}
.header_wrap .header_main {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}
.header_wrap .header_main .header_txt {
	padding: 15vw 0;
	color: #fff;
	font-size: 8.5vw;
	text-align: center;
	text-shadow: 0 0 0.25em #000;
}
.header_wrap.bg03 .header_main .header_txt {
	text-shadow: none;
	letter-spacing: 0.5vw;
	color: #000;
}
.header_wrap img {
	-webkit-backface-visibility: hidden;
}
@media screen and (max-width:640px) {
	.header_wrap.bg_divinate {
		min-height: calc(100vh - 50px);
	}
}
@media screen and (min-width:641px) {
	.header_wrap .header_main .header_txt {
		padding: 100px 0;
	}
}
@media screen and (min-width:880px) {
	.header_wrap.bg_divinate {
		min-height: calc(100vh - 41px);
	}
	.header_wrap .header_main .header_txt {
		font-size: 4.5em;
	}
}
/* header_main
---------------------------------------- */
.underlayer .header_wrap {
	/*background: #ccc;*/
}
.underlayer .header_main {
	width: 94%;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.underlayer .header_logo {
	width: 35%;
	max-width: 250px;
}
.underlayer .header_oa {
	width: 45%;
	max-width: 300px;
}
/* 共通 ヘッダー ナビ
---------------------------------------- */
.gnavi_wrap {
	background: #333;
}
.gnavi {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}
.gnavi li {
	width: 25%;
	position: relative;
}
.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: 1em 0;
	display: block;
	color: var(--nav_txtcolor);
	font-family: var(--txt_jpn3); /* ※WEBフォント*/
	text-align: center;
	text-decoration: none;
	transition: 0.4s;
}
.gnavi a em {
	margin-bottom: 0.6em;
	position: relative;
	display: inline-block;
	font-family: var(--txt_eng);
	font-weight: bold;
	font-size: 4.2vw;
}
.gnavi a em::after {
	content: '';
	width: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	left: 50%;
	bottom: -30%;
	opacity: 0;
	transform: translateX(-50%);
	transition: 0.4s;
}
.gnavi a span {
	display: block;
	font-size: 1.1rem;
}
.gnavi .current a, .gnavi a:hover {
	/*color: #ffff00;*/
}
.gnavi .current a em::after, .gnavi a:hover em::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;
	}
	.gnavi .adjust {
		width: 120%;
	}
	.gnavi li::before {
		height: 60%;
	}
	.gnavi li:last-child::before {
		content: none;
	}
	.gnavi a {
		padding: 1.8em 0;
	}
	.gnavi a em {
		font-size: 2vw;
	}
	.gnavi a span {
		font-size: 1rem;
	}
}
@media screen and (min-width:800px) {
	.gnavi a span {
		font-size: 1.1rem;
	}
}
@media screen and (min-width:1000px) {
	.gnavi a em {
		font-size: 2rem;
	}
	.gnavi a span {
		font-size: 1.3rem;
	}
}
/* =============================================
 共通 タイトル（WEBFONT）
============================================= */
.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_jpn3); /* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
}
.ttl_eng + .ttl_jpn {
	margin-top: 0.5em;
}
/*話数*/
.oa_story {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #ddd;
	font-size: 1.25em;
	font-family: var(--txt_jpn3); /* ※WEBフォント*/
	font-weight: bold;
}
.oa_story .oa_story_num {
	margin-bottom: 10px;
	font-size: 1.2em;
	font-family: var(--txt_eng); /* ※WEBフォント*/
	line-height: 1;
	text-align: center;
}
.oa_story .oa_story_num:last-child {
	margin-bottom: 0;
}
.oa_story .oa_story_num span {
	margin: 0 0.1em;
	position: relative;
	top: 0.05em;
	color: var(--key_color); /* ※キーカラー01 */
	font-size: 1.4em;
}
.oa_story .oa_story_ttl {
	line-height: 1.3;
	text-align: center;
}
.txt_catch {
	margin-bottom: 20px;
	font-size: 5.2vw;
	font-family: var(--txt_jpn3);
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}
.txt_catch span {
	display: inline-block;
}
.txt_catch:last-child {
	margin-bottom: 0;
}
.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 (max-width:640px) {
	.txt_catch.fs_adjust {
		font-size: 5vw;
		letter-spacing: -0.025em;
	}
}
@media screen and (min-width:641px) {
	.ttl_eng {
		font-size: 7.2rem;
	}
	.ttl_jpn {
		font-size: 2.0rem;
	}
	.oa_story {
		padding-bottom: 20px;
		margin-bottom: 30px;
		font-size: 1.6em;
	}
	.oa_story .oa_next_ttl {
		width: 8em;
	}
	.txt_catch {
		margin-bottom: 40px;
		font-size: 1.6em;
	}
}
/* =============================================
 共通 ボックススタイル
============================================= */
.sec_wrap {
	padding: 8% 0;
}
.sec_wrap + .sec_wrap, .sec_wrap + script + .sec_wrap {
	/*border-top: 1px solid #ccc;*/
}
/* 背景パターン(ベース画像) */
.sec_box {
	padding: 4vw;
	background: #fff;
	border: 1px solid #ccc;
	/*box-shadow: 0 0 3px rgba(0,0,0,0.4);*/
	/*border-radius: 5px;*/
	box-sizing: border-box;
	line-height: 1.6;
}
.sec_box + .sec_box {
	margin-top: 5%;
}
/* ボックス無し */
.sec_box.box_none {
	padding: 0 !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}
.sec_wrap &gt; .inner {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (min-width:641px) {
	.sec_box {
		line-height: 1.8;
	}
}
@media screen and (min-width:1000px) {
	.sec_wrap {
		padding: 60px 0;
	}
	.sec_box {
		padding: 40px;
	}
}
/* =============================================
 汎用パーツ
============================================= */
/* テキストスタイル
---------------------------------------- */
.txt span {
	color: var(--key_color); /* ※キーカラー01 */
}
.txtColor {
	color: var(--key_color); /* ※キーカラー01 */
	font-weight: bold;
}
.txtColor2 {
	color: var(--sub_color);
	font-weight: bold;
}
.txtEng {
	color: var(--txt_eng); /* ※WEBフォント*/
	font-weight: bold;
}
.txtjpn {
	color: var(--txt_jpn3); /* ※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;
}
.txtL {
	font-size: 1.125em !important;
	font-weight: bold;
}
.txtLL {
	font-size: 1.25em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
}
.txtCenter {
	text-align: center !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;
}
/* 共通部分 間隔あける
---------------------------------------- */
.pb0 {
	padding-bottom: 0 !important;
}
.pb30 {
	padding-bottom: 3%;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb30 {
	margin-bottom: 3%;
}
.mb05em {
	margin-bottom: 0.5em !important;
}
.pt0 {
	padding-top: 0 !important;
}
.pt30 {
	padding-top: 3%;
}
.mt0 {
	margin-top: 0 !important;
}
.mt30 {
	margin-top: 3%;
}
.mt1em {
	margin-top: 1em;
}
.pl30 {
	padding-left: 3%;
}
.ml30 {
	margin-left: 3%;
}
.pr30 {
	padding-right: 3%;
}
.mr30 {
	margin-right: 3%;
}
.mh_none{
	min-height: inherit !important;
}
/* ボックススタイル
---------------------------------------- */
.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.w30 {
		width: 30%;
	}
	.gridRight {
		padding-left: 4%;
	}
}
/* リンクボタン
---------------------------------------- */
.link_btn_rd {
	padding-top: 20px;
}
.link_btn_rd a {
	width: 90%;
	max-width: 650px;
	padding: 2%;
	margin: 0 auto;
	background: var(--key_color); /* ※キーカラー01 */
	box-sizing: border-box;
	border-radius: 5px;
	display: block;
	text-align: center;
	text-decoration: none;
}
.link_btn_rd span {
	padding: 0 2.5em 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.tw_follow a {
	background: #1da1f2;
}
.link_btn_rd.tw_follow span {
	padding: 0 0 0 2.5em;
}
.link_btn_rd.tw_follow span::before {
	width: 1.8em;
	height: 1.8em;
	background: url("../img/common/ico_twitter.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;
}
@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 {
	padding: 30px 0 !important;
	background: var(--missed_bgcolor);
	color: var(--missed_txtcolor);
	font-weight: bold;
}
.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.txt {
	width: 20%;
	padding-top: 0;
}
.missed_bnr-area li.txt p:before {
	content: "/";
	margin-right: 5px;
	display: inline-block;
	transform: matrix(-1, 0, 0, 1, 0, 0);
}
.missed_bnr-area li.txt p:after {
	content: "/";
	margin-left: 5px;
}
.missed_bnr-area li.bnr {
	width: 37.5%;
	margin: 0 1%;
}
.missed_bnr-area li:first-child {
	width: 20%;
	margin: 0;
}
/*見逃しバナーが一個になったときの対応.bnr_onlyone*/
.missed_bnr-area li.bnr_onlyone {
	width: 65%;
	margin: 0;
}
/*見逃しバナーテキストがない場合　.bnr_notxt*/
.missed_bnr-area .bnr_notxt li:first-child {
	width: 45%;
}
.missed_bnr-area .bnr_notxt li.bnr {
	width: 45%;
	margin: 0 1%;
}
.missed_bnr-area .bnr_notxt li.bnr_onlyone {
	width: 65% !important;
	margin: 0;
}
@media screen and (min-width:641px) {
	.missed_bnr-area li.bnr_onlyone {
		width: 52%;
		margin: 0;
	}
	.missed_bnr-area .bnr_notxt li.bnr_onlyone {
		width: 52%;
		margin: 0;
	}
}
@media screen and (min-width:1000px) {
	.missed_bnr-area li.txt {
		width: 15%;
	}
	.missed_bnr-area li.bnr {
		width: 40%;
	}
	.missed_bnr-area li:first-child {
		width: 15%;
	}
	.missed_bnr-area li.bnr_onlyone {
		width: 40%;
		margin: 0;
	}
	.missed_bnr-area .bnr_notxt li.bnr_onlyone {
		width: 40%;
		margin: 0;
	}
}
@media screen and (max-width:640px) {
	.missed_bnr-area {
		padding: 5% 0 !important;
	}
	.missed_bnr-area ul {
		margin: 0 auto;
		width: 96%;
	}
	.missed_bnr-area li.txt {
		width: 20%;
		padding-top: 0;
		text-align: center;
		font-size: 16px;
	}
	.missed_bnr-area li.txt p {
		text-align: center;
		line-height: 1.4;
	}
	.missed_bnr-area li.bnr img {
		width: 95%;
		margin: 0 auto;
	}
	.missed_bnr-area li.txt p:before {
		content: none;
		margin-right: 0;
	}
	.missed_bnr-area li.txt p:after {
		content: none;
		margin-left: 0;
	}
	.missed_bnr-area .bnr_notxt ul {
		margin: 0 auto;
		width: 100%;
	}
	.missed_bnr-area .bnr_notxt li.bnr img {
		width: 100%;
		margin: 0 auto;
	}
}
/* バナーエリア
---------------------------------------- */
.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: 100%;
	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 #000;
}*/
.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;
	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_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_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;
}
@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%;
	}
}
/* バナーオンマウス */
@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 20px;
}
.prmov {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.prmov iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (min-width:641px) {
	.prmov_wrap {
		margin-bottom: 30px;
	}
}
/* 次回予告
---------------------------------------- */
.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;
}
.next_oatime {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--key_color2); /* ※キーカラー02 */
}
.next_oatime dl {
	margin-bottom: 15px;
	font-weight: bold;
}
.next_oatime .col1 {
	text-align: center;
}
.next_oatime dt {
	padding-left: 0.2em;
	font-size: 1.1em;
}
.next_oatime .col1 dt {
	padding-left: 0;
}
.next_oatime dt span {
	position: relative;
	top: -0.05em;
	font-size: 0.8em;
}
.next_oatime dd {
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	line-height: 1.3;
	letter-spacing: -0.025em;
}
.next_oatime dd span {
	margin: 0 0.1em;
	display: inline-block;
	position: relative;
	top: 0.05em;
	color: var(--key_color); /* ※キーカラー01 */
	font-size: 1.3em;
}
.next_oatime .week {
	top: 0;
	font-size: 1em;
}
.next_oatime .date, .next_oatime .time {
	display: inline-block;
}
.irre {
	font-size: 0.875em;
	text-align: center;
}
@media screen and (min-width:641px) {
	.next_oatime {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.next_oatime dl {
		width: 49%;
	}
	.next_oatime .col1 {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.next_oatime .col1 dd {
		position: relative;
		top: -0.1em;
	}
}
@media screen and (min-width:800px) {
	.next_oatime dd {
		font-size: 1.2em;
	}
}
@media screen and (min-width:1000px) {
	.next_oatime dd {
		font-size: 1.4em;
		letter-spacing: 0;
	}
}
/* 公式ツイッター
---------------------------------------- */
/*#twitter .sec_box:first-child {
	height: 350px;
}
.twitter-inner {
	width: 100%;
	height: 350px;
	max-width: 918px;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow-y: scroll;
}
.twitter-inner iframe {
	width: 920px !important;
}
@media screen and (min-width: 1000px) {
	.twitter-inner {
		overflow-y: hidden;
	}
}*/
/* 公式インスタグラム
---------------------------------------- */
.main #instagram.sec_wrap &gt; .inner {
	width: 100%;
}
#instagram .sec_box {
	padding-left: 0;
	padding-right: 0;
}
.instagram-inner {
	overflow: hidden;
}
.instagram-inner ul {
	margin: 0 -0.8%;
	display: flex;
	flex-wrap: wrap;
}
.instagram-inner li {
	width: calc(33.33% - 0.8%);
	margin: 0 0.4% 0.8%;
}
/* イントロ
---------------------------------------- */
#intro .sec_box p + p {
	margin-top: 1em;
}
.intro_cast {
	margin: 0 0 40px;
}
.intro_cast ul {
	text-align: center;
}
.intro_cast li {
	margin-bottom: 0.5em;
}
.intro_cast li:last-child {
	margin-bottom: 0;
}
.intro_cast li span {
	padding: 0 0.5em;
	display: inline-block;
}
.intro_cast ul + ul {
	margin-top: 1em;
}
.intro_img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 4%;
}
.intro_img.width_adjust {
	width: 70%;
}
.intro_story {
	padding: 2% 4% 4%;
	margin: 4% auto 0;
	background: #fff;
	border: 4px solid #e9e9e9;
	width: 100%;
	box-sizing: border-box;
	/*border-radius: 10px;*/
	/*box-shadow: 0 0 3px rgba(130,130,130,0.40);*/
}
.intro_story p + p {
	margin-top: 0.5em;
}
@media screen and (min-width:641px) {
	intro_img {
		margin: 0 auto 40px;
	}
}
/* キャスト
---------------------------------------- */
.pict_diagram {
	margin-bottom: 5%;
}
.pict_diagram:last-child {
	margin-bottom: 0;
}
.pict_diagram li {
	position: absolute;
}
.cast_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cast_box {
	width: 100%;
	margin-bottom: 4%;
	background: #fff;
}
.cast_box:last-child {
	margin-bottom: 0;
}
.pict_cast {
	width: 100%;
	display: flex;
	justify-content: center;
}
.pict_cast 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: 0.5em;
	/*color: var(--key_color);*/ /* ※キーカラー01 */
	line-height: 1.3;
}
.sttl_cast p + p {
	margin-top: 0.25em;
}
.sttl_cast .cast_name {
	font-size: 1.6em;
	font-family: var(--txt_jpn3); /* ※WEBフォント*/
}
.sttl_cast span {
	display: inline-block;
}
.box_s .pict_cast {
	width: 40%;
	flex-shrink: 0;
}
.cast_box .sec_box {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}
.cast_box.box_s .sec_box {
	flex-wrap: inherit;
}
.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 {
		flex-wrap: inherit;
	}
	.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 {
		width: 28%;
		max-width: 250px;
		flex-shrink: 0;
	}
	.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: 40px;
	}
}
/**/
.mfp-content .box_s .sttl_cast .cast_name {
	font-size: 1.6em;
}
@media screen and (min-width:1000px) {
	.mfp-content .cast_box.box_s {
		width: auto;
	}
	.mfp-content .box_s .sttl_cast .cast_name {
		font-size: 1.8em;
	}
}
/**/
/*相関図 キャスト詳細*/
#diagramCast {
	display: none;
}
#diagramCast .sec_box {
	background: none;
	border: none;
	box-shadow: none;
}
/*モーダル*/
.relation_wrap {
	margin-bottom: 40px;
	text-align: center;
}
.relation_wrap:last-child {
	margin-bottom: 0;
}
.relation {
	margin: 0 auto;
	position: relative;
}
.relation:after {
	content: "";
	width: 7.87%;
	height: 4.83%;
	background-size: 100%;
	position: absolute;
	top: 77.97%;
	left: 53.19%;
}
.relation a {
	width: 25.8%;
	height: 39.4%;
	position: absolute;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0);
	box-sizing: border-box;
	transition: .3s;
}
/* 相関図モーダル各キャスト位置 */
.relation .cast01 {
	top: 5.2%;
	left: 4%;
}
.relation .cast02 {
	top: 5.2%;
	left: 37%;
}
.relation .cast03 {
	top: 5.2%;
	left: 70%;
}
.relation .cast04 {
	top: 55.2%;
	left: 20.8%;
}
.relation .cast05 {
	top: 55.2%;
	left: 53.6%;
}
/* ストーリー
---------------------------------------- */
.slider .sec_box {
	background-color: #fff;
}
.bx-wrapper .sec_box + .sec_box {
	margin-top: 0;
}
/*カルーセル設定*/
.bx-wrapper {
	background: none;
	border: none;
	box-shadow: none;
}
.bx-wrapper .bx-controls-direction a {
	height: 90px;
	width: 45px;
}
.bx-wrapper .bx-prev {
	background: url("../img/common/btn_arrow_prev.png") no-repeat 0 0;
	left: -30px;
}
.bx-wrapper .bx-next {
	background: url("../img/common/btn_arrow_next.png") no-repeat 0 0;
	right: -30px;
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus {
	background-position: 0;
}
.bx-wrapper .bx-pager-item {
	margin: 0 5px 5px;
	font-size: 1.8rem;
	/*! font-family: 'M PLUS Rounded 1c', sans-serif; */
	font-weight: 400;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	width: 30px;
	height: 30px;
	margin: 0;
	background: #bdbdbd;
	border-radius: inherit;
	color: #fff;
	line-height: 30px;
	text-indent: inherit;
	text-decoration: none;
}
.bx-controls {
	padding-bottom: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus {
	background: #666;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: var(--key_color); /* キーカラー01 */
}
.bx-wrapper {
	margin-bottom: 0;
}
.bx-controls-direction {
	display: none;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	width: 16em;
	padding-top: 0;
	margin: 0 auto;
	position: static;
}
@media screen and (min-width:641px) {
	.bx-wrapper {
		margin-bottom: 30px;
	}
	.bx-wrapper .bx-pager {
		width: 100%;
	}
	.bx-wrapper .bx-controls-auto {
		width: 100%;
		position: absolute;
	}
}
@media screen and (min-width:1000px) {
	.bx-wrapper .bx-prev {
		left: -30px;
	}
	.bx-wrapper .bx-next {
		right: -30px;
	}
	.bx-controls-direction {
		display: block;
	}
}
/* 原作 主題歌
---------------------------------------- */
.media_detail {
	padding: 20px;
	margin-top: 30px;
	border: 1px solid var(--key_color2); /* ※キーカラー02 */
}
.comic_pict {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.comic_pict li {
	width: 35%;
	margin: 0 1% 2%;
	text-align: center;
}
@media screen and (min-width:641px) {
	.comic_pict {
		flex-wrap: inherit;
	}
	.comic_pict li {
		width: auto;
		margin: 0 2%;
	}
}
.music_ttl {
	font-size: 1.6em;
	font-weight: bold;
}
.music_ttl span {
	display: inline-block;
}
/* コメント
---------------------------------------- */
.qa_list dt {
	/*color: var(--key_color);*/
	font-weight: bold;
}
.qa_list dl + dl {
	margin-top: 0.75em;
}
/* スタッフ
---------------------------------------- */
.staff dl {
	margin-bottom: 20px;
	text-align: center;
}
.staff dl:last-child {
	margin-bottom: 0;
}
.staff dt {
	margin-bottom: 10px;
	/*color: var(--key_color);*/ /* ※キーカラー01 */
	font-size: 1.1em;
	font-weight: bold;
}
.staff dd {
	display: block;
	text-align: center;
}
.staff dd span{
	display: inline-block;
}
.staff dd:last-child {
	margin-bottom: 0;
}
@media screen and (max-width:350px) {
	.staff dd.fs_adjust {
		font-size: 4vw;
	}
}
/* ボックス
---------------------------------------- */
.line {
	margin: 4% 0;
	border-top: 2px dotted #ccc;
}
/* 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;
}
/* グッズ
---------------------------------------- */
#goods a.shoplink {
	color: #333;
	word-break: break-all;
	font-size: 0.8em;
	line-height: 1.2;
}
#goods h4 {
	margin-top: 0.5em;
	font-weight: bold;
}
.bnr_box_b {
	width: 100%;
	margin: 0 auto 5rem;
	max-width: 600px;
}
.bnr_box_b img {
	width: 100%;
	transition: all .4s;
}
.bnr_box_b a:hover img {
	transform: scale(1.05);
}
.goods_box {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 3em;
}
.goods_img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 0;
}
.goods_img img {
	width: 100%;
}
.goods_box dl {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin: 0 auto;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.goods_box dt {
	flex-basis: 100%;
	padding: 0.5em;
	background-color: #F8F8F8;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
}
.goods_box dd {
	flex-basis: 100%;
	padding: 0.5em;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.goods_box dd:last-child, .goods_box dt:last-of-type {
	border-bottom: none;
}
.lineH1 {
	line-height: 1.2
}
@media screen and (max-width:640px) {
	.txtLeftSP {
		text-align: left !important;
	}
	.txtCenterSP {
		text-align: center !important;
	}
}
@media screen and (min-width: 641px) {
	.txtLeftPC {
		text-align: left !important;
	}
	.txtCenterPC {
		text-align: center !important;
	}
	a.shoplink {
		font-size: 0.9em;
	}
	.goods_img {
		margin-bottom: 0;
	}
	.goods_box dl {
		flex-flow: row wrap;
	}
	.goods_box dt {
		flex-basis: 70%;
	}
	.goods_box dd {
		flex-basis: 30%;
	}
}
/* 見逃し配信
---------------------------------------- */
.watch_bnr {
	margin: 0 auto 2%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.watch_bnr li {
	width: 64%;
	max-width: 310px;
	margin: 0 1% 2%;
	box-sizing: border-box;
	text-align: center;
}
.watch_bnr li img {
	box-sizing: border-box;
}
.watch_bnr.size_m li img, .watch_bnr.size_s li img {
	border: 1px solid #aaa;
}
.watch_bnr.size_m li {
	width: 48%;
	max-width: 240px;
}
.watch_bnr.size_s li {
	width: 38%;
	max-width: 160px;
}
.bclist_wrap {
	margin-bottom: 20px;
}
.ttl_bclist {
	margin-bottom: 10px;
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
.txt_bclist {
	margin-bottom: 25px;
	text-align: center;
}
.bclist {
	padding-top: 20px;
	border-top: 1px solid #ccc;
}
.bclist_wrap li {
	margin-bottom: 0.5em;
}
.bclist_wrap li dt {
	display: inline-block;
}
.bclist_wrap li dd {
	padding-left: 1em;
	display: inline-block;
}
.bclist_wrap li span {
	display: inline-block;
}
.bclist_wrap li:last-child {
	margin-bottom: 0;
}
.other_area {
	font-size: 0.875em;
}
.other_area li {
	padding-left: 1em;
	margin-bottom: 0.5em;
	text-indent: -1em;
}
.other_area li:last-child {
	margin-bottom: 0;
}
.other_area li a {
	display: inline;
}
/* =============================================
 フッター
============================================= */
.footer_wrap {
	display: block;
	color: #fff;
	text-align: center;
}
/* SNS シェア
---------------------------------------- */
.wrap_sblink {
	padding: 6% 0;
	background: #fff;
}
.sblink dt {
	margin-bottom: 15px;
	font-weight: bold;
	text-align: center;
}
.result .sblink dt {
	font-weight: normal;
}
.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;
}
.result .sblink dt span:before ,
.result .sblink dt span:after{
	content: none;
}
.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_facebook a {
	background: #1877f2;
}
.list_sblink li.sblink_line a {
	background: #00b900;
}
/**/
.result .list_sblink li.sblink_twitter a {
	background: #484848;
}
.result .list_sblink li.sblink_facebook a {
	background: #484848;
}
.result .list_sblink li.sblink_line a {
	background: #484848;
}
@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);
	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;
	}
}
/* ページトップ
---------------------------------------- */
.pageTop {
	position: fixed;
	bottom: 60px;
	right: 5%;
	opacity: 0;
	z-index: 10;
	transition: .5s;
}
.pageTop.show {
	opacity: 1;
}
.pageTop a {
	width: 60px;
	height: 60px;
	background: #666;
	display: block;
	position: relative;
}
.pageTop a::before {
	content: "";
	width: 30px;
	height: 30px;
	background: url("../img/common/ico_link_arrow_wh.png") no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (min-width:641px) {
	.pageTop {
		bottom: 40px;
	}
}
@media screen and (min-width:1000px) {
	.pageTop a {
		width: 80px;
		height: 80px;
		transition: 0.3s;
	}
	.pageTop a:hover {
		transform: translate(0, -10px);
	}
}
/* 終了後対応
---------------------------------------- */
/* 見逃し配信終了対応 */
.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;
	bottom: 0px;
	z-index: 10000000;
	transform: translateY(100%);
	transition: .3s;
}
.menu_sp.open {
	transform: translateY(0);
}
.menu_sp .gnavi {
	padding-bottom: 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;
	bottom: 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 &gt; div {
	width: 20px;
	height: 17px;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
.bottom_menu_inner &gt; 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 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;
}
/* =============================================
 ギャラリー
============================================= */
#gallery .btn_gallery ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}
#gallery .btn_gallery ul li {
	width: 24%;
	margin: 0 0.5% 1%;
}
#gallery .btn_gallery ul 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;
}
#gallery .btn_gallery ul li a.active {
	background: var(--key_color); /* ※キーカラー01 */
}
#gallery .btn_gallery ul li span {
	padding: 0.5em 0;
	background: #ccc;
	border-radius: 5px;
	display: block;
	color: #999;
	font-size: 1.125em;
	text-align: center;
}
#gallery .btn_gallery {
	margin: 0 0 1em;
}
#gallery .next_pict img {
	border: 1px solid #ccc;
	box-sizing: border-box;
}
/* =============================================
 占い
============================================= */
.input-group input{
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	font-size: 16px;
	font-family: 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1.3;
	-webkit-appearance : none;
}
.input-group select {
	padding: 2%;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat;
	background-position: right 0.35rem center;
	background-size: 16px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	position: relative;
	color: #000;
	font-size: 16px;
	font-family: 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1.3;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input-group input:focus,
.input-group select:focus{
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(0,172,230,.5);
}
.input-group select::-ms-expand {
	display: none;
}
.sec_wrap.divinate &gt; .inner {
	width: 100%;
}
.sec_wrap.divinate{
	padding: 0 0 15%;
	position: relative;
    z-index: 20;
}
.sec_wrap.divinate .sec_box {
	padding: 10vw 4vw;
}
.sec_wrap.divinate .sec_box:first-child:last-child {
	padding: 15vw 4vw;
}
.sec_wrap.divinate .sec_box.pd_ajust:first-child:last-child {
	padding: 10vw 4vw;
}
.box{
	display: flex;
	flex-direction: column;
	text-align: center;
}
.box + .box{
	padding-top: 4%;
	margin-top: 4%;
	border-top: 2px dotted rgba(255,255,255,0.3);
}
.bg03 .box + .box{
	border-top: 1px dotted rgba(0,0,0,0.3);
}
.input .box + .box{
	padding-top: 8%;
	margin-top: 8%;
}
.result .box{
	line-height: 1.3;
}
.input-group{
	/*padding-right: 20px;*/
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	/*font-weight: bold;*/
	white-space: nowrap;
	line-height: 1;
	/*left: -10px;*/
}
.input-group input{
	width: 20%;
	margin: 0 0.25em;
}
.input-group input + img{
	width: 11%;
	max-width: 25px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-55%);
	cursor: pointer;
}
.input-group select{
	width: 17%;
	margin: 0 0.25em;
}
.btn_search{
	width: 90%;
	max-width: 400px;
	margin: 30px auto 0;
	padding: 0.75em 1em;
	border: 0;
	border-radius: 5px;
	background: #00ace6;
	color: #fff;
	/*font-weight: bold;*/
	font-size: 1.25em;
	line-height: 1;
	cursor: pointer;
	transition: .3s;
	user-select: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
}
.btn_search.mtb{
	margin: 30px auto;
}
.btn_search.bc_ppl{
	border: 1px solid #fff;
	background: linear-gradient(0, #6a0080, #3c00b3);
}
.btn_search.bc_wht{
	border: 1px solid #ccc;
	background: linear-gradient(0, #f1f1f1, #fff);
	color: #000;
}
.ttl_divinate{
	margin-bottom: 0.75em;
	font-size: 5.25vw;
	font-family: var(--txt_jpn3); /* ※WEBフォント*/
	text-align: center;
	line-height: 1.2;
}
.ttl_divinate span{
	display: inline-block;
}
.result .ttl_divinate{
	margin-bottom: 0.5em;
}
.ttl_divinate span{
	display: inline-block;
}
.txt_result span{
	margin-bottom: 0.25em;
	display: inline-block;
	font-weight: bold;
}
.mon .ttl_divinate .fc{
	color: #fff;
	text-shadow: #808080 0px 0px 4px,#808080 0px 0px 4px,#808080 0px 0px 4px,#808080 0px 0px 4px;
}
.tue .ttl_divinate .fc{
	color: #ff3333;
}
.wed .ttl_divinate .fc{
	color: #33ccff;
}
.thu .ttl_divinate .fc{
	color: #0077ff;
}
.fri .ttl_divinate .fc{
	color: #ff8080;
}
.sat .ttl_divinate .fc{
	color: #b36212;
}
.sun .ttl_divinate .fc{
	color: #ff661a;
}
.list_divinate {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.list_divinate li{
	width: 20%;
	margin: 0 2.5%;
	margin-bottom: 4%;
}
.list_divinate a{
	padding: 0.25em 0;
	display: block;
	border-radius: 5px;
	position: relative;
	color: #fff;
	font-family: var(--txt_jpn); /* ※WEBフォント*/
	font-size: 5.5vw;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: .3s;
	user-select: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
}
.list_divinate a span{
	display: block;
	font-size: 1.3rem;
}
.list_divinate .mon a{
	background: #fff;
	color: #000;
}
.list_divinate .tue a{
	background: #e62e2e;
}
.list_divinate .wed a{
	background: #00ace6;
}
.list_divinate .thu a{
	background: #00489d;
}
.list_divinate .fri a{
	background: #ffcccc;
	color: #000;
}
.list_divinate .sat a{
	background: #80460d;
}
.list_divinate .sun a{
	background: #e65c17;
}
@media screen and (min-width:641px) {
	.input-group{
		font-size: 1.25em;
	}
	.input-group input{
		max-width: 6em;
		padding: 0.25em 0.5em;
		margin: 0 0.5em;
		font-size: 1em;
	}
	.input-group select {
		max-width: 4em;
		padding: 0.25em 1em 0.25em 0.5em;
		background-position: right 0.75rem center;
		font-size: 1em;
	}
	.box + .box{
		padding-top: 40px;
		margin-top: 40px;
	}
	.input .box + .box{
		padding-top: 40px;
		margin-top: 40px;
	}
	.btn_search{
		width: 70%;
		margin-top: 40px;
		font-size: 1.5em;
	}
	.btn_search.mtb{
		margin: 40px auto;
	}
	.ttl_divinate{
		margin-bottom: 1em;
		font-size: 2em;
	}
	.list_divinate li{
		width: 11%;
		margin: 0 1.6%;
		margin-bottom: 0;
	}
	.list_divinate a{
		font-size: 1.75em;
	}
}
@media screen and (min-width:1001px) {
	.sec_wrap.divinate{
		padding: 0 0 100px;
	}
	.sec_wrap.divinate .sec_box {
		padding: 40px;
	}
	.sec_wrap.divinate .sec_box:first-child:last-child {
		padding: 80px 40px;
	}
	.sec_wrap.divinate .sec_box.pd_ajust:first-child:last-child {
		padding: 50px 40px 60px;
	}
	.list_divinate a:hover,
	.btn_search:hover{
		opacity: 0.80;
		filter: brightness(1.05);
	}
}
/* =============================================
 占い 結果
============================================= */
.box .bnr_list.official li a {
	border: 1px solid #fff;
}
.logo_divinate{
	padding: 15px 0;
	text-align: center;
}
.logo_divinate img{
	width: 60%;
	max-width: 400px;
	margin: 0 auto;
}
.logo_divinate .date{
	margin-top: 0.75em;
	font-size: 4vw;
}
.ttl_result{
	margin-top: -0.25em;
	font-size: 5.5vw;
	font-family: var(--txt_jpn3); /* ※WEBフォント*/
	text-align: center;
	line-height: 1.1;
}
.ttl_result span{
	display: inline-block;
	font-size: 1.5em;
}
.mon .ttl_result .fc{
	color: #fff;
	text-shadow: #808080 0px 0px 4px,#808080 0px 0px 4px,#808080 0px 0px 4px,#808080 0px 0px 4px;
}
.tue .ttl_result .fc{
	color: #ff3333;
}
.wed .ttl_result .fc{
	color: #33ccff;
}
.thu .ttl_result .fc{
	color: #0077ff;
}
.fri .ttl_result .fc{
	color: #ff8080;
}
.sat .ttl_result .fc{
	color: #b36212;
}
.sun .ttl_result .fc{
	color: #ff661a;
}
.cooperate{
	color: #ccc;
	font-size: 0.75em;
}
.bg03 .cooperate{
	color: #999;
}
.result .sblink dt {
	margin-bottom: 10px;
}
.result .bnr_list{
	margin-top: 10px;
}
@media screen and (min-width:641px) {
	.logo_divinate{
		padding: 30px 0;
	}
	.ttl_result{
		font-size: 2em;
	}
}
/* ランキング */
.ranking{
	margin-top: 20px;
}
.ranking ul{
	display: flex;
	flex-direction: column;
}
.ranking li{
	padding: 0.75em 0.75em 0.75em 2em;
	border-top: 1px dotted rgba(0,0,0,0.3);
	position: relative;
	box-sizing: border-box;
}
.ranking li span{
	width: 1.5em;
	height: 1.5em;
	background: #fff;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #666;
	line-height: 1;
	font-weight: bold;
}
.ranking li:nth-child(1) span{
	background:  linear-gradient(45deg, #B67B03 0%, #DAAF08 50%,#B67B03 100%);
	color: #fff;
	font-weight: bold;
}
.ranking li:nth-child(2) span{
	background:  linear-gradient(45deg, #8a9499 0%, #c3d2d9 50%,#8a9499 100%);
	color: #fff;
	font-weight: bold;
}
.ranking li:nth-child(3) span{
	background:  linear-gradient(45deg, #66482b 0%, #b3885d 50%,#66482b 100%);
	color: #fff;
	font-weight: bold;
}
@media screen and (min-width:451px) {
	.logo_divinate .date{
		font-size: 1.125em;
	}
}
@media screen and (min-width:641px) {
	.ranking ul{
		height: 12em;
		flex-wrap: wrap;
		align-items: center;
	}
	.ranking li{
		width: 45%;
	}
}</pre></body></html>