@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: #004ea2;
	/*キーカラー02*/
	--key_color2: #eee;
	/*サブカラー*/
	--sub_color: #069b46;
	/*ナビ テキスト背景 ライン*/
	--nav_bgcolor: #004ea2;
	--nav_txtcolor: #fff;
	--nav_line: rgba(255, 255, 255, 0.5);
	/*見逃し配信 テキスト背景*/
	--missed_bgcolor: #c5ebfb;
	--missed_txtcolor: #fff;
	/*フッター テキスト背景*/
	--footer_bgcolor: #000;
	--footer_txtcolor: #fff;
	/*英語フォント*/
	--txt_eng: "Noto Sans JP";
	/*日本語フォント*/
	--txt_jpn: "Folk Regular";
}

/* =============================================
 背景
============================================= */
/* 背景パターン1 */
.bg_01 {
	background: rgba(209, 223, 247, 0.6)
}

.bg_01 .sec_box {
	background: #fff;
}

/* 背景パターン2 */
.bg_02 {
	background: #fff;
}

.bg_02 .sec_box {
	background: #fff;
}

.bg_03 {
	background: rgba(199, 246, 251, 0.55);
}

.bg_04 {
	background: rgba(190, 211, 224, 0.5);
}

.bg_05 {
	background: rgb(160, 229, 231, 0.7);
}

.bg_06 {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bg_08 {
	background: rgba(173, 247, 237, 0.6);
}

/* =============================================
 リセット
============================================= */
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 "A1 Gothic R", 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif; */
	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");
	background-size: cover;
	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 */
}

@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;
	}
}

/* =============================================
 トップ ヘッダー
============================================= */
.header_wrap {
	/* background: #fff; */
	overflow: hidden;
	position: relative;
}

.header_wrap::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../../season2/img/common/bg_header.jpg);
	position: absolute;
	top: 0;
	background-size: cover;
	filter: blur(15px);
	z-index: -1;
}

.header_wrap .header_main {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.header_wrap img {
	-webkit-backface-visibility: hidden;
}

/* header_main
---------------------------------------- */
.underlayer .header_wrap {
	background: #fff;
}

.underlayer .header_main {
	width: 94%;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.underlayer .header_logo {
	width: 30%;
	max-width: 200px;
}

.underlayer .header_oa {
	width: 50%;
	max-width: 300px;
}

/* 共通 ヘッダー ナビ
---------------------------------------- */
.gnavi_wrap {
	background: var(--nav_bgcolor);
}

.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_jpn);
	/* ※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: 1rem;
}

.gnavi a .last-modified {
	width: 6em;
	height: 1.2em;
	background: var(--sub_color);
	border-radius: 2em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -0.5em;
	left: 50%;
	transform: translateX(-50%);
	font-family: sans-serif;
}

.menu_sp .gnavi a .last-modified {
	top: 1px;
}

.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: 0.9rem;
	}
}

@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;
	}

	.gnavi a .last-modified {
		height: 1.5em;
	}
}

/* =============================================
 共通 タイトル（WEBFONT）
============================================= */
.wrap_ttl_eng{
	margin-bottom: 0.1em;
	font-size: min(11vw, 7rem);
	text-align: center;
}
.wrap_ttl_eng.adjust_mb {
	margin-bottom: 0.3em;
}
.ttl_eng {
	display: inline;
	font-family: var(--txt_eng);
	/* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
	background: rgb(0, 78, 162);
	background: linear-gradient(0deg, rgba(0, 124, 203, 1) 0%, rgba(0, 78, 162, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*.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_jpn_02 {
	margin: 10% 0 5%;
	color: var(--key_color);
	/* ※キーカラー01 */
	font-size: 1.5em;
	font-family: Noto Sans JP;
	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_jpn);
	/* ※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: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
	text-align: center;
}

.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 (min-width:641px) {
	/* .wrap_ttl_eng {
		font-size: 7.2rem;
	} */
	.ttl_jpn {
		font-size: 2.0rem;
	}

	.ttl_jpn_02 {
		margin: 5% 0 3%;
		font-size: 1.8em;
	}

	.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.5em;
	}
}

/* =============================================
 共通 ボックススタイル
============================================= */
.sec_wrap {
	padding: 8% 0;
}

/* .sec_wrap + .sec_wrap,
.sec_wrap + script + .sec_wrap {
	border-top: 5px solid #ccc;
} */
/* 背景パターン(ベース画像) */
.sec_box {
	padding: 4vw;
	background: #fff;
	/* border: 1px solid #ccc; */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	/*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;
	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;
	}
}

@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;
}

.txtColor3 {
	color: #f7701e;
}

.txtColor4 {
	color: #275fd0;
}

.txtColor5 {
	color: #0d996a;
}

.txtColor6 {
	color: #36c9c0;
}

.txtColor7 {
	color: #bf0000;
}

.txtEng {
	font-family: var(--txt_eng);
	/* ※WEBフォント*/
	font-weight: bold;
}

.txtjpn {
	font-family: 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;
}

.txtM {
	font-size: 1.125em !important;
}

.txtL {
	font-size: 1.25em !important;
	font-weight: bold;
}

.txtLL {
	font-size: 1.6em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
}

.txtcastL {
	font-size: 1.2em !important;
}

.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;
}

/* 共通部分 間隔あける
---------------------------------------- */
.pd0 {
	padding: 0 !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pb30 {
	padding-bottom: 3%;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 1%;
}

.mb20 {
	margin-bottom: 2%;
}

.mb30 {
	margin-bottom: 3%;
}

.mb1e {
	margin-bottom: 1em !important;
}

.mb05e {
	margin-bottom: 0.5em !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt15 {
	padding-top: 1.5% !important;
}

.pt30 {
	padding-top: 3%;
}

.mt0 {
	margin-top: 0 !important;
}

.mt10 {
	margin-top: 1%;
}

.mt20 {
	margin-top: 2%;
}

.mt30 {
	margin-top: 3%;
}

.mt1e {
	margin-top: 1em !important;
}

.mt05e {
	margin-top: 0.5em !important;
}

.pl30 {
	padding-left: 3%;
}

.ml30 {
	margin-left: 3%;
}

.pr30 {
	padding-right: 3%;
}

.mr30 {
	margin-right: 3%;
}

.dib,
.d-ib {
	display: inline-block;
}

/* ボックススタイル
---------------------------------------- */
.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 {
	background: #fff;
}

.box.shadow {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* 2カラム */
.gridInner+.gridInner {
	margin-top: 4%;
}

/* リスト */
.ib_list li {
	margin-right: 1em;
	display: inline-block;
}

.ib_list li:last-child {
	margin-right: 0;
}

.grid.col_gap4 {
	gap: 15px 4%;
}

@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;
	}
}

/* リンクボタン
---------------------------------------- */
.link_btn_rd {
	padding-top: 20px;
}

.link_btn_rd a {
	width: 100%;
	max-width: 650px;
	min-height: min(15vw, 68px);
	padding: 0.75em 2.5em 0.75em 0.75em;
	margin: 0 auto;
	background: var(--key_color);
	/* ※キーカラー01 */
	box-sizing: border-box;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	transform: perspective(1px) translateZ(0);
	transition-property: color;
	transition-duration: 0.6s;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}

.link_btn_rd.btn_red a {
	background: #bf0000;
}

.link_btn_rd.btn_orn a {
	background: #ff9900;
}

.link_btn_rd.btn_grn a {
	background: #39C1BE;
}

.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;
}

.link_btn_rd a::after {
	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.5em;
	transform: translateY(-50%);
}

@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);
	}
}

.link_btn_rd.btn_blu a {
	background: #21abe6;
}

.link_btn_rd span {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
}

.link_btn_rd.btn_blk a {
	background: #333;
}

.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;
}

@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);
	}
}

/* ire_btn */
.link_btn_rd.ire_btn {
	padding: 0;
	margin: 30px auto;
}

.link_btn_rd.ire_btn a {
	width: 100%;
	padding: 3% 2%;
}

.link_btn_rd.ire_btn span {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.3;
}

.link_btn_rd.ire_btn span span {
	padding: 0;
}

.link_btn_rd.ire_btn span span::before {
	content: none;
}

@media screen and (min-width:641px) {
	.link_btn_rd.ire_btn span {
		font-size: 2.0rem;
	}
}

/**/
.link_txt {
	word-wrap: break-word;
}

/* リンクボタン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;
	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.bnr {
	width: 45%;
	margin: 0 1%;
} */
/*見逃しバナーが一個になったときの対応.bnr_onlyone*/
/* .missed_bnr-area li.bnr_onlyone {
	width: 90%;
	max-width: 450px;
	margin: 0;
}
@media screen and (max-width:640px) {
	.missed_bnr-area {
		padding: 5% 0;
	}
	.missed_bnr-area ul {
		margin: 0 auto;
		width: 100%;
	}
	.missed_bnr-area li.bnr img {
		width: 100%;
		margin: 0 auto;
	}
} */
/* バナーエリア
---------------------------------------- */
.sec_wrap.pd_min {
	padding: min(4vw, 18px) 0;
}

.missed_bg {
	background: var(--missed_bgcolor);
}

.bnr_grid {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: min(3vw, 12px);
}

.bnr_grid+.bnr_grid {
	margin-top: min(3vw, 12px);
}

.bnr_grid li {
	grid-column: span 2;
}

.bnr_grid li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	transition: .5s;
}

.bnr_grid li.ire_bnr_m {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: min(3vw, 12px);
}

.bnr_grid li.ire_bnr_m:has(> :only-child) {
	grid-template-columns: 1fr;
}

.bnr_grid li.ire_bnr_m:has(> :only-child),
.bnr_grid li.ire_bnr_m:only-child> :only-child {
	width: 100%;
	max-width: 241px;
}

.bnr_grid li.ire_bnr_m:only-child> :only-child {
	justify-self: center;
}

.bnr_grid li:only-child,
.bnr_grid li.ire_bnr_m:only-child {
	grid-column: 1 / -1;
	justify-self: center;
	width: 100%;
	max-width: 494px;
}

.bnr_grid li.col1:only-child {
	max-width: inherit;
}

@media screen and (max-width:640px) {
	.bnr_grid li.bnr_s {
		grid-column: span 1;
	}
}

@media screen and (min-width:641px) {
	.bnr_grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.bnr_grid li.bnr_l {
		max-width: 800px;
		margin: 0 auto;
		grid-column: span 4;
	}
}

/* bnr_list */
.bnr_list {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: min(3vw, 12px);
}

.bnr_list+.bnr_list {
	margin-top: min(3vw, 12px);
}

.bnr_list li {
	max-width: 100%;
}

.bnr_list li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	transition: .5s;
}

@media screen and (max-width:640px) {
	.bnr_list li.bnr_s {
		width: 48%;
	}
}

@media screen and (min-width:641px) {
	.bnr_list li {
		width: 49%;
	}

	.bnr_list li.bnr_l {
		width: 100%;
	}
}

@media screen and (min-width:1001px) {
	.bnr_list li a:hover {
		transform: scale(1.05);
	}
}

/* official */
.bnr_list.official li a {
	min-height: 4em;
	padding: 0.75em 0.5em;
	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: 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_x a {
	background: #000;
}

.bnr_list .official_instagram a {
	background: #d4006a;
}

.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_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;
}

@media screen and (max-width:640px) {

	.bnr_list.official li {
		width: 48%;
	}

	.bnr_list.official.sp_col3 li {
		width: 31%;
	}
}

@media screen and (min-width:460px) {
	.bnr_list.official li a {
		font-size: 1.6rem;
	}
}

@media screen and (min-width:641px) {
	.bnr_list.official li {
		width: 31%;
	}

	.bnr_list.official li a .icon span {
		display: inline;
	}
}

@media screen and (min-width:1001px) {
	.bnr_list.official {
		flex-wrap: inherit;
	}

	.bnr_list.official li {
		width: 100%;
		max-width: 310px;
	}

	.bnr_list.official li a {
		padding: 1.5em 0;
	}
}

/* sns_grid */
.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);
}

.tiktok-inner .tiktok-embed {
	margin: 0 !important;
}

@media screen and (min-width:1000px) {
	.sns_grid {
		display: flex;
		justify-content: center;
	}

	.sns_grid dl {
		width: 80%;
		margin-bottom: 0;
	}
}

/* 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;
}

.bd_line {
	border-bottom: 1px solid var(--key_color2);
}

.next_text {
	margin-top: 10px;
	padding: 15px;
	background-color: #ebf8ff;
	border-radius: 5px;
}

.next_text p {
	text-align: left;
	font-family: Folk Bold;
	font-size: 1.4rem;
}

.end_oatime {
	width: 100%;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--key_color2);
	/* ※キーカラー02 */
	font-size: 2rem;
	font-weight: bold;
}

@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;
	}

	.end_oatime {
		font-size: 2.5rem;
	}

	.next_text {
		padding: 10px 0;
	}

	.next_text p {
		text-align: center;
		font-size: 1.6rem;
	}
}

@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>.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%;
}

.instagram-inner a {
	background: rgba(255, 255, 255, 0.5);
	display: block;
	position: relative;
	overflow: hidden;
}

.instagram-inner a::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.instagram-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.instagram-inner .protect {
	position: static;
}

/* イントロ
---------------------------------------- */
#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_story {
	padding: 2% 4% 4%;
	margin: 4% auto 0;
	background: #fff;
	/* border: 2px solid #e9e9e9; */
	width: 100%;
	box-sizing: border-box;
	/* border-radius: 10px; */
	box-shadow: 0 0 10px 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: 70%;
}

.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: 0.5em;
	line-height: 1.3;
}

.sttl_cast p+p {
	margin-top: 0.25em;
}

.sttl_cast .cast_name {
	font-size: 1.6em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
}

.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 {
		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: 20px;
	}
}

/**/
.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;
	}
}

/* cast_pict */
.cast_pict {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.cast_pict li {
	width: 48%;
	margin: 0 1% 2%;
	text-align: center;
}

@media screen and (max-width:640px) {
	.cast_pict li {
		width: auto;
		margin: 0 0 3%;
	}

	.cast_pict.guest li {
		width: 80%;
	}

	.cast_pict li:last-child {
		margin-bottom: 0;
	}
}

@media screen and (min-width:641px) {
	.cast_pict {
		flex-wrap: inherit;
	}

	.cast_pict li {
		width: auto;
		max-width: 420px;
		margin: 0 2%;
	}
}

/*相関図 キャスト詳細*/
#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;
}

/* 原作 主題歌
---------------------------------------- */
.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: 48%;
	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;
}

/* QA
---------------------------------------- */
.question {
	padding-left: 2em;
	font-weight: bold;
	position: relative;
	line-height: 1.5;
}

.question:before {
	content: "";
	width: 1.5em;
	height: 1px;
	background: #000;
	display: block;
	position: absolute;
	top: 0.7em;
	left: 0;
}

.question+.answer {
	margin-top: 0.5em;
}

.answer {
	line-height: 1.5;
}

.answer span {
	font-weight: bold;
}

@media screen and (max-width:640px) {
	.answer span {
		display: block;
	}
}

@media screen and (min-width:641px) {
	.question {
		padding-left: 4em;
	}

	.question:before {
		width: 3.5em;
	}

	.answer {
		padding-left: 4em;
		position: relative;
	}

	.answer span {
		position: absolute;
		top: 0;
		left: 0;
	}

	.size_adjust .question {
		padding-left: 2em;
	}

	.size_adjust .question:before {
		width: 1.5em;
	}

	.size_adjust .answer {
		padding-left: 0;
	}
}

/* スタッフ
---------------------------------------- */
.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;
}

/* ボックス
---------------------------------------- */
.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: var(--key_color);
	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;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	/* border: 1px solid #ccc; */
}

.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-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}

.goods_box dl:last-child {
	border-bottom: none;
}

.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;
}

.goods_box .wrap_list {
	padding: 15px;
	background: #fff;
}

.goods_box .wrap_list.bg_yellow {
	background: #fffaeb;
}

.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;
	margin-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 {
	margin-top: 20px;
	font-size: 0.875em;
	line-height: 1.3;
}

.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;
}

@media screen and (max-width:640px) {
	.bclist_wrap li dt {
		display: block;
	}
}

/* =============================================
 フッター
============================================= */
.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: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: #000;
}

.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);
	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: absolute;
	top: 0;
	transform: translateY(-50%);
	right: 5%;
	z-index: 10;
	transition: .5s;
}

.pageTop a {
	width: 60px;
	height: 60px;
	background: var(--key_color);
	/* ※キーカラー01 */
	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;
}

#thumb_slider .link_btn_rd a {
	width: 90%;
}

.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;
	-webkit-user-select: none;
	user-select: 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;
}

/* =============================================
 関連商品
============================================= */
/* link_menu */
.link_menu {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 0 2em;
}

.link_menu li {
	width: 50%;
	background: #fff;
	text-align: center;
	border-top: 1px solid var(--key_color);
	border-bottom: 1px solid var(--key_color);
	border-right: 1px solid var(--key_color);
}

.link_menu li:first-child {
	border-left: 1px solid var(--key_color);
}

.link_menu li a {
	color: var(--key_color);
	padding: 1em 0.5em;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	font-size: 0.875em;
}

.link_menu li a:hover {
	background: #f2feff;
	text-decoration: none;
}

@media screen and (min-width: 641px) {
	.link_menu li {
		width: 35%;
	}

	.link_menu li a {
		font-size: 1em;
	}
}

/* =============================================
 ニュース
============================================= */
/* archive_list
------------------------------------ */
.archive_list {
	border: 1px solid #ccc;
}

.archive_list li {
	border-top: 1px dotted #999;
	background: #fff;
}

.archive_list li:first-child {
	border-top: none;
}

.archive_list li .date {
	width: 100%;
	margin-bottom: 0.25em;
	color: #666;
	font-size: 0.875em;
}

.archive_list li a {
	padding: 0.75em 3em 0.75em 0.75em;
	display: block;
	position: relative;
	color: #000;
	font-size: 1em;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s;
}

.archive_list li a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--key_color);
	border-right: 1px solid var(--key_color);
	position: absolute;
	right: 0.75em;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.archive_list li .week {
	margin: 0 -0.25em;
}

.archive_list li .txt {
	width: 100%;
}

.archive_list li .txt span {
	color: inherit;
}

@media print,
screen and (min-width:641px) {
	.archive_list li a {
		padding: 1em 3em 1em 1em;
	}

	.archive_list li a::after {
		right: 1em;
	}
}

@media print,
screen and (min-width:1001px) {
	.archive_list li a:hover {
		background: #f8f8f8;
	}

	.archive_list li a {
		padding: 1em 3em 1em 1.5em;
		display: flex;
		font-size: 1.125em;
	}

	.archive_list li a::after {
		right: 1.5em;
	}

	.archive_list li .txt {
		width: 80%;
	}

	.archive_list li .date {
		width: 20%;
		margin-bottom: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
		align-items: center;
	}
}

/* news_article */
.news_article {
	background: #fff;
}

.news_date {
	margin-bottom: 1em;
	color: #666;
	font-size: 0.875em;
}

.news_ttl {
	padding-bottom: 0.6em;
	margin-bottom: 0.75em;
	border-bottom: 1px solid #ccc;
	font-size: 1.5em;
	font-size: clamp(1.25em, 3.12vw, 1.75em);
	line-height: 1.2;
	font-weight: bold;
}

.news_txt p {
	margin-top: 1em;
	line-height: 2;
}

.news_txt h4 {
	margin-top: 1.25em;
	font-size: 1.125em;
	font-size: clamp(1.125em, 2.81vw, 1.5em);
	font-weight: bold;
	line-height: 1.2;
}

.news_txt p:first-child {
	margin-top: 0;
}

.news_txt .bd_l {
	padding-left: 0.5em;
	border-left: 3px solid var(--key_color);
}

.marker {
	background: linear-gradient(transparent 60%, #feff65 60%);
}

.line_gry {
	margin: 4% 0;
	border-top: 1px solid #ccc;
	display: block;
}

/* news_cast_list */
.news_cast_list {
	margin: 3% 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news_cast_list.bd_none li:first-child {
	padding-top: 0;
	margin-top: 0;
}

.news_cast_list.bd_none li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.news_cast_list ul {
	width: 100%;
}

.news_cast_list li {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px dotted #ccc;
}

.news_cast_list li:first-child {
	border-top: none;
}

.news_cast_list li:last-child {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: none;
}

.news_pict_cast {
	width: 60%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.news_pict_cast li {
	width: 70%;
}

.news_txt_cast {
	width: 100%;
	padding: 4% 0 0 0;
}

.news_txt_cast:first-child {
	padding-top: 0;
}

.news_txt_cast dd+dd {
	margin-top: 1em;
}

.news_txt_cast .sttl_cast {
	margin-bottom: 0.5em;
	color: var(--key_color);
	/* ※キーカラー01 */
	line-height: 1.3;
}

.news_txt_cast .sttl_cast p+p {
	margin-top: 0.25em;
}

.news_txt_cast .sttl_cast .cast_name {
	font-size: 1.125em;
	font-weight: bold;
}

.news_txt_cast .sttl_cast span {
	display: inline-block;
}

@media screen and (min-width:641px) {
	.news_txt_cast {
		padding: 0 0 0 4%;
	}

	.news_txt_cast:first-child {
		padding-left: 0;
	}

	.news_txt_cast .sttl_cast .cast_name {
		font-size: 1.25em;
	}

	.news_pict_cast {
		width: 28%;
		max-width: 250px;
		flex-shrink: 0;
	}

	.news_pict_cast li {
		width: 100%;
	}
}

@media screen and (min-width:641px) {
	.news_cast_list li {
		display: flex;
	}
}

/* =============================================
 おすすめ関連記事（ABCマガジン）
============================================= */
.magazine_ttl {
	padding: 0.75em;
	background: #000;
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}

.magazine_ttl span {
	display: inline-block;
	font-size: 0.875em;
}

.post_list li {
	width: 100%;
	border-top: 1px solid #ccc;
}

.post_list li:first-child {
	border-top: none;
}

.post_list li a {
	padding: 1em;
	display: flex;
	column-gap: 1em;
	color: inherit;
	/* font-size: clamp(0.875em, 2.2vw, 1em); */
	text-decoration: none;
	line-height: 1.3;
}

.post_list .post_img {
	width: 30%;
	max-width: 200px;
	display: block;
	aspect-ratio: 1.77 / 1;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.post_list .post_img img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* protect */
.post_list .post_img {
	-webkit-user-drag: none;
	user-select: none;
}

.post_list .post_img::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.post_list .post_img img {
	-webkit-user-drag: none;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}

@media print {
	.post_list .post_img {
		display: none !important;
	}
}

/**/
.post_list .post_txt {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.post_list .post_ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.post_list .post_date {
	margin-top: 0.5em;
	color: #666;
	text-align: right;
}

.link_btn_rd.md_adjust {
	margin: min(5vw, 30px) auto;
}

.watch_bnr.md_adjust {
	margin: min(5vw, 30px) auto;
}

.watch_bnr.md_adjust:last-child,
.watch_bnr.md_adjust li:last-child {
	margin-bottom: 0;
}

.watch_bnr li a.bd_adjust {
	display: block;
	border: 1px solid #ccc;
}

@media screen and (max-width: 640px) {
	.post_list {
		display: flex;
		flex-wrap: wrap;
		gap: 8vw 4%;
	}

	.post_list li {
		border-top: none;
	}

	.post_list li a {
		padding: 0;
		flex-direction: column;
		row-gap: 1em;
	}

	.post_list .post_img {
		width: 100%;
		max-width: inherit;
	}

	.post_list .post_date {
		margin-top: 0.25em;
	}
}

@media screen and (min-width: 1000px) {
	.sec_box.post_box {
		padding: 30px;
	}
}


@media (hover: hover) {
	.post_list a:hover .post_ttl {
		text-decoration: underline;
	}
}