@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: #f25596;
	/*キーカラー02*/
	--key_color2: #cc29b1;
	/*サブカラー*/
	--sub_color: #3d9ccc;
	/*ナビ テキスト背景 ライン*/
	--nav_bgcolor: #eb6da5;
	--nav_txtcolor: #fff;
	--nav_line: rgba(255, 255, 255, 0.3);
	/*見逃し配信 テキスト背景*/
	--missed_bgcolor: none;
	--missed_txtcolor: #fff;
	/*フッター テキスト背景*/
	--footer_bgcolor: #bb96f2;
	--footer_txtcolor: #fff;
	/*英語フォント*/
	--txt_eng: 'Roboto', sans-serif;
	/*日本語フォント*/
	/* --txt_jpn: "Shin Maru Go Bold"; */
	--txt_jpn: "Zen Maru Gothic";
}

/* =============================================
 背景
============================================= */
.bg_p {
	background-color: #fba0d8
}

.bg_p02 {
	background-color: #fbbce3
}

.bg_y {
	background-color: #ffd772
}

.bg_b {
	background-color: #74d6ff
}

.bg_g {
	background-color: #8bffd8
}

.bg_w {
	background-color: rgba(255, 255, 255, 0.8)
}

/* 背景パターン1 */
.bg_01 {
	position: relative;
	overflow: hidden;
	background: url(../img/common/bg_pattern_brick.png);
}
.bg_01::before ,
.bg_01::after {
    content: "";
	width: 19vw;
	max-width: 120px;
    height: 300vw;
    position: absolute;
    top: 50%;
    left: 50%;
	transform-origin: center;
	opacity: 0.75;
}
.bg_01::before {
    background: url(../img/common/bg_pattern_pnk.png);
    background-size: 100%;
    transform: translate(-50%, -50%) rotate(-60deg);
}
.bg_01::after {
    background: url(../img/common/bg_pattern_pur.png);
    background-size: 100%;
    transform: translate(-50%, -48%) rotate(40deg);
}
@media screen and (max-width:640px) {
	.bg_01 {
		background: url(../img/common/bg_pattern_brick.png);
		background-size: 60%;
	}
}

.bg_01 .sec_box {
	background: #fff;
}

/* 背景パターン2 */
.bg_02 {
	background: rgba(255,255,255,0.3);
}

.bg_02 .sec_box {
	background: #fff;
}

/* =============================================
 リセット
============================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* =============================================
 COMMON
============================================= */
html {
	font-size: 62.5%;
	/* scroll-behavior: smooth; */
}

body {
	color: #36474d;
	font: 1.6em/1.6 'Zen Maru Gothic', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1;
	-webkit-text-size-adjust: none;
}

/* 背景パターン(ベース画像) */
body::before {
	content: "";
	width: 100vw;
	height: 100vh;
	background: url("../img/common/bg_page.png");
	background-size: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
}

img {
	max-width: 100%;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	image-rendering: auto;
}

a {
	color: var(--key_color2);
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: var(--sub_color);
}

@media screen and (max-width:640px) {
	.onlyPC {
		display: none !important;
	}

	.onlySP {
		display: block;
	}

	.onlyTB {
		display: none !important;
	}
}

@media screen and (min-width:641px) {
	.onlyPC {
		display: block;
	}

	.onlySP {
		display: none !important;
	}
}

@media (min-width: 641px) and (max-width: 800px) {
	.onlyTB {
		display: block;
	}
}

@media screen and (min-width:1001px) {
	.onlyTB {
		display: none !important;
	}

	.onlyTBSP {
		display: none !important;
	}
}

@media screen and (max-width:1001px) {
	.onlyTBSP {
		display: block;
	}
}

/* =============================================
 トップ ヘッダー
============================================= */
.header_wrap {
	position: relative;
}
.header_wrap img {
	-webkit-backface-visibility: hidden;
}
@media screen and (min-width:641px) {
	.header_wrap {
        background: url(../img/common/header_pc_bg.png) no-repeat top center;
        background-size: cover;
		background-attachment: fixed;
	}
	/* .header_wrap::before {
		content: "";
		width: 100%;
		max-width: 1200px;
		height: 100%;
		background: url("../img/common/header_pc_bg.png") no-repeat center;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: -1;
	} */
}

/* header_main
---------------------------------------- */
.header_main {
	max-width: 1020px;
	margin: 0 auto;
	position: relative;
}
.header_grid {
	padding: min(5vw, 30px);
	box-sizing: border-box;
}
.header_grid .header_logo{
	filter: drop-shadow(0px 0px 3px #fff) drop-shadow(0px 0px 3px #fff) drop-shadow(0px 0px 1px #fff);
}
.header_grid .header_oadate{
    width: 85%;
    margin: 0 auto;
	filter: drop-shadow(0px 0px 3px #fff) drop-shadow(0px 0px 3px #fff) drop-shadow(0px 0px 1px #fff);
}
@media screen and (max-width:640px) {
	.header_grid .header_logo{
		display: none;
	}
}
@media screen and (min-width:641px) {
	.header_main .header_img {
		width: 52%;
	}
	.header_grid {
		width: 48%;
		position: absolute;
		top: 50%;
		right: 0;
        transform: translate(0, -50%);
	}
	.header_grid .header_oadate{
		margin-top: min(5vw, 30px);
	}
}


/* header_main
---------------------------------------- */
.underlayer .header_main {
	width: 94%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.underlayer .header_logo {
    width: 50%;
    max-width: 230px;
    margin: 15px auto;
}

/* 共通 ヘッダー ナビ
---------------------------------------- */
.gnavi_wrap {
	background: linear-gradient(0deg, #d4369b 0%, #e06db6 100%);
}

.gnavi {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.gnavi li {
	width: 25%;
	background: linear-gradient(0deg, #e8388a 0%,#ef71ab 100%);
	position: relative;
	box-shadow: inset 0px 0px 0px 1px #e8388a , inset -1px 0px 0px 1px #e8388a ;
}

.gnavi.col3 li {
	width: 33.33%;
}

.gnavi.col2 li {
	width: 50%;
}

.gnavi li::before {
	content: "";
	width: 1px;
	height: 100%;
	background: var(--nav_line);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.gnavi li::after {
	content: "";
	width: 100%;
	height: 1px;
	background: var(--nav_line);
	position: absolute;
	bottom: 0;
	left: 0;
}

.gnavi a {
    min-height: 4em;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	font-size: clamp(0.935em, 2.34vw, 1.125em);
	color: var(--nav_txtcolor);
	text-align: center;
	text-decoration: none;
	transition: 0.4s;
}

.gnavi a span {
	position: relative;
	display: inline-block;
	font-weight: bold;
}

.gnavi a span::after {
	content: '';
	width: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.80);
	position: absolute;
	left: 50%;
	bottom: -0.4em;
	opacity: 0;
	transform: translateX(-50%);
	transition: 0.4s;
}

.gnavi .current a span::after, .gnavi a:hover span::after {
	width: 100%;
	opacity: 1;
}

@media screen and (max-width:640px) {
	.gnavi.col2 li:nth-child(4n + 1),
	.gnavi.col2 li:nth-child(4n + 4) {
		background: linear-gradient(0deg, #bf30aa 0%,#d16bc2 100%);
		box-shadow: inset 0px 0px 0px 1px #bf30aa, inset -1px 0px 0px 1px #bf30aa;
	}
	.gnavi.col3 li:nth-child(2n + 1) {
		background: linear-gradient(0deg, #bf30aa 0%,#d16bc2 100%);
		box-shadow: inset 0px 0px 0px 1px #bf30aa, inset -1px 0px 0px 1px #bf30aa;
	}
	.gnavi.col4 li:nth-child(8n + 1),
	.gnavi.col4 li:nth-child(8n + 3),
	.gnavi.col4 li:nth-child(8n + 6),
	.gnavi.col4 li:nth-child(8n){
		background: linear-gradient(0deg, #bf30aa 0%,#d16bc2 100%);
		box-shadow: inset 0px 0px 0px 1px #bf30aa, inset -1px 0px 0px 1px #bf30aa;
	}
}

@media screen and (min-width:641px) {
	.gnavi {
		flex-wrap: inherit;
	}

	.gnavi li {
		width: 100%;
	}

	.gnavi .adjust {
		width: 120%;
	}

	.gnavi li:first-child {
		border-left: 1px solid var(--nav_line);
	}

	.gnavi li:nth-child(odd) {
		background: linear-gradient(0deg, #bf30aa 0%,#d16bc2 100%);
		box-shadow: inset 0px 0px 0px 1px #bf30aa, inset -1px 0px 0px 1px #bf30aa;
	}
}

/* =============================================
 共通 タイトル（WEBFONT）
============================================= */

.ttl_cont {
	margin-bottom: min(6vw,40px);
	text-align: center;
}

.ttl_cont img {
	width: min(70vw, 400px);
	filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
}
.ttl_cont img.size_s {
	width: min(63vw, 360px);
}
.ttl_cont img.size_l {
	width: min(77vw, 440px);
}

.ttl_eng {
	font-size: 5rem;
	font-family: var(--txt_eng);
	/* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
}

/*.ttl_eng:first-letter{
	color: #fff;
} */
.ttl_jpn {
	margin-bottom: 5%;
	color: var(--key_color);
	/* ※キーカラー01 */
	font-size: 1.6rem;
	font-family: var(--txt_jpn);
	/* ※WEBフォント*/
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
}

.ttl_eng+.ttl_jpn {
	margin-top: 0.5em;
}

.txt_catch {
	/* font-family: var(--txt_jpn); */
	/* ※WEBフォント*/
	font-weight: bold;
	color: var(--key_color);
	line-height: 1.4;
	font-size: 1.1em;
	margin-bottom: 2rem;
}

.txt_catch span {
	display: inline-block;
}

.txt_sub_catch {
	margin: 1.25em 0 0.25em;
	color: var(--key_color);
	/* ※キーカラー01 */
	font-size: 1.25em;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
	text-align: center;
}

.txt_sub_catch span {
	display: inline-block;
	position: relative;
}

.txt_sub_catch span::after, .txt_sub_catch span::before {
	content: "";
	width: 1em;
	height: 50%;
	border-bottom: 1px solid var(--key_color);
	/* ※キーカラー01 */
	position: absolute;
}

.txt_sub_catch span::after {
	right: -1.5em;
}

.txt_sub_catch span::before {
	left: -1.5em;
}

@media screen and (min-width:641px) {
	.ttl_eng {
		font-size: 7.2rem;
	}

	.ttl_jpn {
		font-size: 2.0rem;
	}

	.txt_catch {
		line-height: 1.4;
		font-size: 1.3em;
	}

}

/* =============================================
 共通 ボックススタイル
============================================= */
.main{
	padding-bottom: min(50vw, 200px);
}
#top .main{
	padding-bottom: 75vw;
}
@media screen and (min-width:641px) {
	#top .main{
		padding-bottom: 200px;
	}
}

.sec_wrap {
	padding: min(8vw, 50px) 0 min(10vw, 60px);
	position: relative;
	overflow: hidden;
}

.sec_box {
	padding: min(4vw, 40px);
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	box-sizing: border-box;
	line-height: 1.6;
	position: relative;
}

.sec_box.bt_bg {
	margin: 0 auto min(6vw, 40px);
	padding: min(6vw, 40px);
	font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
}

.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;
	position: relative;
    z-index: 1;
}

@media screen and (min-width:641px) {
	.sec_box {
		line-height: 1.8;
	}
}

/* =============================================
 汎用パーツ
============================================= */
/* テキストスタイル
---------------------------------------- */
.txt span {
	color: var(--key_color);
	/* ※キーカラー01 */
}

.txtColor {
	color: var(--key_color);
	/* ※キーカラー01 */
	font-weight: bold;
}

.txtColor2 {
	color: var(--key_color2);
	font-weight: bold;
}

.txtColor_pl {
	color: #bb96f2;/* キュアアンサー */
}

.txtColor_pk {
	color: #ff6b9a;/* キュアミスティック */
}

.txtColor_pk2 {
	color: #f291b6;/* ポチタン */
}

.txtColor_re {
	color: #f26161;/* 怪盗団ファントム */
}

.txtColor_gr {
	color: #5eb8b1;
}

.txtColor_or {
	color: #eca614;
}

.txtColor_yg {
	color: #83a619;
}

.txtColor_wh {
	color: #fff;
}

.txtColor_bl {
	color: #42bbf9;
}

.txtColor_em {
	color: #21c6d8;
}

.txtColor_black {
	color: #000;
}

.txtEng {
	color: var(--txt_eng);
	/* ※WEBフォント*/
	font-weight: bold;
}

.txtjpn {
	color: var(--txt_jpn);
	/* ※WEBフォント*/
	font-weight: bold;
}

.txtjpn_type {
	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;
}

.txtS1 {
	font-size: 1em !important;
}

.txtM {
	font-size: 1.1em !important;
}

.txtL {
	font-size: 1.25em !important;
	font-weight: bold;
}

.txtL1 {
	font-size: 1.4em !important;
	font-weight: bold;
}

.txtLL {
	font-size: 1.6em !important;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
}

.txtLLL {
	font-size: 1.8em !important;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
}

.txtL2 {
	line-height: 1.4;
	font-size: 1.1em;
}

@media screen and (min-width:641px) {
	.txtL2 {
		line-height: 1.4;
		font-size: 1.3em;
	}
}

.txtCenter {
	text-align: center !important;
}

.txtRight {
	text-align: right !important;
}

@media screen and (max-width:900px) {
	.txtCenterSP {
		text-align: center !important;
	}
}

@media screen and (min-width:641px) {
	.txtCenterPC {
		text-align: center !important;
	}

	.txtS1 {
		font-size: 1.1em !important;
	}
}

.txtLeft {
	text-align: left !important;
}

.ls005 {
	letter-spacing: 0.05em;
}

.ls01 {
	letter-spacing: 0.1em;
}

.ls-01 {
	letter-spacing: -0.1em;
}

.ls-02 {
	letter-spacing: -0.2em;
}

.ls-03 {
	letter-spacing: -0.3em;
}

.ti-05 {
	text-indent: -0.5em;
}

.txtColorH {
	color: var(--key_color);
	/* ※キーカラー01 */
	font-weight: bold;
}

.txtColorP {
	color: #ff4896;
	font-weight: bold;
}

.txtColorPr {
	color: #9450DD;
	font-weight: bold;
}

.nowrap {
	white-space: nowrap;
}

.lh13 {
	line-height: 1.3 !important;

}

/* 共通部分 間隔あける
---------------------------------------- */
.pb0 {
	padding-bottom: 0 !important;
}

.pb30 {
	padding-bottom: 3%;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb20 {
	margin-bottom: 2% !important;
}

.mb30 {
	margin-bottom: 3%;
}

.mb40 {
	margin-bottom: 4%;
}

.mb50 {
	margin-bottom: 5% !important;
}

.mb1e {
	margin-bottom: 1em !important;
}

.mb05e {
	margin-bottom: 0.5em !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pt30 {
	padding-top: 3%;
}

.mt0 {
	margin-top: 0 !important;
}

.mt1 {
	margin-top: 1%;
}

.mt20 {
	margin-top: 2%;
}

.mt30 {
	margin-top: 3%;
}

.mt60 {
	margin-top: 6%;
}

.mt2r {
	margin-top: 2rem;
}

.pl30 {
	padding-left: 3%;
}

.ml30 {
	margin-left: 3%;
}

.pr30 {
	padding-right: 3%;
}

.mr30 {
	margin-right: 3%;
}

.dib {
	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::before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--key_color);
	/* ※キーカラー01 */
	opacity: 0.1;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/* 2カラム */
.gridInner+.gridInner {
	margin-top: 4%;
}

/* リスト */
.ib_list li {
	margin-right: 1em;
	display: inline-block;
}

.ib_list li:last-child {
	margin-right: 0;
}

@media screen and (min-width:641px) {
	.box_wrap {
		padding-top: 4%;
		padding-bottom: 4%;
	}

	.boxS.inner, .boxM.inner {
		padding: 2%;
	}

	.grid {
		display: flex;
		justify-content: space-between;
	}

	.gridInner+.gridInner {
		margin-top: 0;
	}

	.gridLeft {
		width: 40%;
		flex-shrink: 0;
	}

	.gridLeft.w50 {
		width: 50%;
	}

	.gridLeft.w30 {
		width: 30%;
	}

	.gridRight {
		width: 100%;
		padding-left: 4%;
		box-sizing: border-box;
	}
}

/* リンクボタン画像
---------------------------------------- */
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn a {
    width: 100%;
	max-width: 500px;
    padding: 1em;
    margin: 0 auto;
    background: linear-gradient(0deg, #bf30a7 0%,#e8207e 100%);
	border: 1px solid #fff;
    border-radius: 2em;
    box-sizing: border-box;
	position: relative;
    display: block;
    color: #fff;
    font-size: clamp(1.6rem,2.5vw,2rem);
	font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn.btn_s a {
    width: 50%;
	max-width: 300px;
}

.btn a::before {
    content: "";
    width: 0.4em;
    height: 0.4em;
    margin-top: -0.2em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 1em;
    top: 50%;
}

.btn_chara a {
    width: 100%;
	max-width: 500px;
    margin: 30px auto 0;
	display: block;
}

.btn a:hover, .btn a:focus, .btn a:active,.btn_chara a:hover {
	transform: scale(1.05);
}


/* リンクボタン
---------------------------------------- */
.link_btn_rd {
	/* padding-top: 20px; */
	margin: min(4vw, 24px) 0;
}
.link_btn_rd:first-child {
	margin-top: 0;
}
.link_btn_rd:last-child {
	margin-bottom: 0;
}

.link_btn_rd a {
	width: 96%;
	max-width: 650px;
	padding: 2%;
	margin: 0 auto;
	background: #e60012;
	box-sizing: border-box;
	border-radius: 50vh;
	display: block;
	text-align: center;
	text-decoration: none;
	/* border-bottom: 6px solid #9f000c; */
}

.link_btn_rd span {
	padding: 0 2em 0 0;
	display: inline-block;
	position: relative;
	color: #fff;
	font-size: 1.4rem;
	/*! font-family: 'a-otf-ryumin-pr6n'; */
	font-weight: bold;
	line-height: 40px;
}

.link_btn_rd span::before {
	content: "";
	width: 1em;
	height: 1em;
	background: url("../img/common/ico_link_arrow_wh.png") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.link_btn_rd.x_follow a {
	background: #000;
}

.link_btn_rd.x_follow span {
	padding: 0 0 0 2.5em;
}

.link_btn_rd.x_follow span::before {
	width: 1.8em;
	height: 1.8em;
	background: url("../img/common/ico_x.png") no-repeat;
	background-size: contain;
	right: inherit;
	left: 0;
}

.link_btn_rd.ig_more a {
	background: #d4006a;
}

.link_btn_rd.ig_more span {
	padding: 0 0 0 2.5em;
}

.link_btn_rd.ig_more span::before {
	width: 1.8em;
	height: 1.8em;
	background: url("../img/common/ico_insta.png") no-repeat;
	background-size: contain;
	right: inherit;
	left: 0;
}


.link_btn_rd.bt_red a {
	background-color: #FF002F;
	/* border-color: #AA0002; */
}

.link_btn_rd.bt_blue a {
	background-color: #00a8ff;
	border-color: #006ea6;
}

.link_btn_rd.bt_pink a {
	background-color: var(--key_color);
	border-color: #bc4a7d;
}

@media screen and (min-width:641px) {
	/* .link_btn_rd {
		padding-top: 30px;
	} */

	.link_btn_rd {
		clear: both;
	}

	.link_btn_rd span {
		font-size: 2.0rem;
	}
}

/* Radial Out */
.link_btn_rd a {
	overflow: hidden;
	position: relative;
	transform: perspective(1px) translateZ(0);
	transition-property: color;
	transition-duration: 0.6s;
	vertical-align: middle;
}

.link_btn_rd a:before {
	content: "";
	background: rgba(255, 255, 255, 0.2);
	border-radius: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	transform: scale(0);
	transition-property: transform;
	transition-duration: 0.6s;
	transition-timing-function: ease-out;
	z-index: -1;
}

@media screen and (min-width:1001px) {
	.link_btn_rd a:hover:before, .link_btn_rd a:focus:before, .link_btn_rd a:active:before {
		transform: scale(1.2, 9);
	}
}

/* リンクボタン2
---------------------------------------- */
.link_btn_rd.s_btn a {
	width: 100%;
	max-width: 650px;
	padding: 1% 2%;
	background: var(--sub_color);
	border-radius: 5px;
}

.link_btn_rd.s_btn span {
	padding: 0 2.5em 0 0;
	font-size: 1.2rem;
	line-height: 30px;
}

@media screen and (min-width:641px) {
	.link_btn_rd.s_btn {
		padding-top: 15px;
	}

	.link_btn_rd.s_btn span {
		font-size: 1.6rem;
	}
}

/* =============================================
 トップページ
============================================= */
/* 見逃しバナーエリア
---------------------------------------- */

/* .missed_bnr-area {
	width: 100%;
	padding: 5% 0;
	background: rgb(255 255 255 / 70%);
} */

.missed_bnr-area ul {
	width: 90%;
	/* max-width: 1000px; */
	margin: min(5vw, 30px) auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.missed_bnr-area li {
	margin-bottom: 3%;
}
.missed_bnr-area li:last-child {
	margin-bottom: 0;
}
.missed_bnr-area li a {
	display: block;
	transition: .5s;
}
.missed_bnr-area li.bd_pnk a img{
	border: 3px solid #f05397;
	border-radius: 8px;
	box-sizing: border-box;
}

@media screen and (min-width:641px) {
	/* .missed_bnr-area {
		max-width: 1800px;
        padding: 0;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0);
		background: none;
	} */
	/* .missed_bnr-area::before {
		content: "";
		display: block;
		padding-top: 70%;
		padding-top: 38%;
	} */

	/* .missed_bnr-area ul {
        width: 33%;
        position: absolute;
		top: 66%;
        right: 0;
	} */

	/* .missed_bnr-area li {
		width: 80%;
	} */

	.missed_bnr-area li.bd_pnk a img{
		border: 0.15vw solid #f05397;
    }
}

@media screen and (min-width:1001px) {
	.missed_bnr-area li a:hover {
		transform: scale(1.05);
	}
}

/* バナーエリア
---------------------------------------- */
.sec_wrap_bnr {
	width: 94%;
	max-width: 1000px;
	border-radius: 20px;
	padding: min(10vw, 40px) 0 min(5vw, 30px);
	margin: min(20vw, 100px) auto 0;
	position: relative;
	background: rgba(245, 159, 231, 0.1);
    border: 4px solid #fff;
	box-sizing: border-box;
}

.ttl_cont_sns {
	margin: max(-20vw, -90px) auto 20px;
	text-align: center;
}

.ttl_cont_sns img {
	width: min(75vw, 300px);
}

.bnr_list {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.bnr_list.bnr_m {
	margin-bottom: -20px;
	flex-wrap: wrap;
}

.bnr_list+.bnr_list {
	margin-top: 20px;
}

.bnr_list li {
	/*	max-width: 230px;*/
	max-width: 280px;
	margin: 0 1%;
}

.bnr_list.bnr_m li {
	margin-bottom: 20px;
}

.bnr_list li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	transition: .5s;
}

.bnr_list li a img {
	border: 1px solid #fff;
	border-radius: 5px;
}

@media screen and (max-width:640px) {

	.bnr_list {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.bnr_list li {
		width: 48%;
		margin-bottom: 2%;
	}

	.bnr_list li {
		max-width: 100%;
	}
}

.bnr_list.sp_col3 {
	justify-content: space-between;
}

.bnr_list.sp_col3 {
	margin-bottom: -2%;
	flex-wrap: wrap;
}

.bnr_list.official.sp_col3 li {
	width: 48%;
	margin-bottom: 2%;
}

.bnr_list.official.sp_col3 .icon {
	padding-left: 2em;
}

.bnr_list.official li a {
	min-height: 4em;
	padding: 0.75em 0.5em;
	border: none;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 3.5vw;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
}

.bnr_list.official .icon {
	/*padding-left: 2.5em;*/
	padding-left: 2em;
	display: inline-block;
	position: relative;
}

.bnr_list.official .icon::before {
	content: "";
	width: 1.7em;
	height: 1.7em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.bnr_list.official li a .icon span {
	font-family: Arial, Helvetica, "sans-serif";
	display: inline-block;
}

.bnr_list .official_youtube a {
	background: #ff0000;
}

/*.bnr_list .official_twitter a {
	background: #1da1f2;
}*/
.bnr_list .official_x a {
	background: #fff;
}

.bnr_list .official_instagram a {
	background: #d4006a;
	/*背景グラデ廃止background: #d4006a url("../img/common/bg_insta.jpg") no-repeat;
	background-size: 100% 140%;*/
}

.bnr_list .official_line a {
	background: #00b900;
}

.bnr_list .official_tiktok a {
	background: #000;
}

.bnr_list .official_youtube .icon::before {
	background: url("../img/common/ico_youtube.png") no-repeat;
	background-size: contain;
}

/*.bnr_list .official_twitter .icon::before {
	background: url("../img/common/ico_twitter.png") no-repeat;
	background-size: contain;
}*/
.bnr_list .official_x .icon::before {
	background: url("../img/common/ico_x.png") no-repeat;
	background-size: contain;
}

.bnr_list .official_instagram .icon::before {
	background: url("../img/common/ico_insta.png") no-repeat;
	background-size: contain;
}

.bnr_list .official_line .icon::before {
	background: url("../img/common/ico_line.png") no-repeat;
	background-size: contain;
}

.bnr_list .official_tiktok .icon::before {
	background: url("../img/common/ico_tiktok.png") no-repeat;
	background-size: contain;
}

/**/
.sns_grid dl {
	margin-bottom: 20px;
}

.sns_grid dt {
	padding: 0.25em;
	background: #000;
	color: #fff;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}

.sns_grid .sns_grid_ttl_x img {
	width: 1.25em;
}

.sns_grid .sns_grid_ttl_insta {
	background: #d4006a;
}

.sns_grid dd {
	padding: 0.5em;
	background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:640px) {

	.bnr_list.official {
		flex-wrap: wrap;
	}

	.bnr_list.official li {
		width: 48%;
		margin-bottom: 2%;
	}
}

@media screen and (min-width:460px) {
	.bnr_list.official li a {
		font-size: 1.6rem;
	}
}

@media screen and (min-width:641px) {
	.bnr_list.bnr_m li {
		width: 48%;
	}

	.bnr_list+.bnr_list {
		margin-top: 30px;
	}

	.bnr_list.official li {
		width: 100%;
		max-width: 310px;
	}

	.bnr_list.official.sp_col3 {
		justify-content: flex-start;
	}

	.bnr_list.official.sp_col3 li {
		width: 31%;
	}

	.bnr_list.official li a .icon span {
		display: inline;
	}
}

@media screen and (min-width:1000px) {
	.bnr_list+.bnr_list {
		margin-top: 40px;
	}

	.bnr_list.official li a {
		padding: 1.5em 0;
	}

	.bnr_list.official.sp_col3 {
		justify-content: center;
	}

	.bnr_list.official.sp_col3 li {
		width: 18%;
	}

	.sns_grid {
		display: flex;
		justify-content: space-between;
	}

	.sns_grid dl {
		width: 49%;
		margin-bottom: 0;
	}
}

/* バナーオンマウス */
@media screen and (min-width:1001px) {
	.bnr_list li a:hover {
		transform: scale(1.05);
	}
}

/* PR動画
---------------------------------------- */
.prmov_wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.prmov {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}

.prmov iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}

/* 次回予告
---------------------------------------- */
.next_pict {
	max-width: 800px;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
}

.next_pict a:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../img/common/mov_icon.png") center no-repeat;
	position: absolute;
	left: 0;
}

/* ボックス
---------------------------------------- */
.line {
	margin: min(7vw, 42px) 0;
	border-top: 4px 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;
}


/* =============================================
 フッター
============================================= */
.sec_wrap_footer {
	margin: min(10vw, 60px) 0;
	position: relative;
}
.sec_wrap + .sec_wrap_footer {
	margin-top: 0;
}

.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: #fff;
}

.list_sblink li.sblink_facebook a {
	background: #1877f2;
}

.list_sblink li.sblink_line a {
	background: #00b900;
}

@media screen and (min-width:375px) {
	.list_sblink li a {
		width: 56px;
		height: 56px;
		padding: 12px;
	}
}

@media screen and (min-width:641px) {
	.wrap_sblink {
		padding: 40px 0;
	}
}

@media screen and (min-width:1000px) {

	/*.list_sblink li a:hover{
		transform: scale(1.15);
	}*/
	.list_sblink li {
		margin: 0 0.6rem;
	}
}

/* コピーライト
---------------------------------------- */
.footer_copy {
	padding: 6% 0;
	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;
	}
}

/* 下部情報
---------------------------------------- */
.o_info {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	font-size: clamp(1.4rem,2.18vw,1.6rem);
}

.o_info p {
	text-align: center;
}


/* ページトップ
---------------------------------------- */
.pageTop {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
}

.pageTop a {
	width: 45vw;
	max-width: 200px;
	display: block;
	transition: all 0.2s;
}

.pageTop a:hover, .pageTop a:focus, .pageTop a:active {
	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;
	top: 0px;
	z-index: 10000000;
	transform: translateY(-100%);
	transition: .3s;
}

.menu_sp.open {
	transform: translateY(0);
}

.menu_sp .gnavi {
	padding-top: calc(2.5em + 2px);
}

.menu_sp .gnavi li {
	width: 50%;
}

.bottom_menu_sp {
	width: 100%;
	padding: 0.75em;
	background: var(--key_color);
	/* ※キーカラー01 */
	box-sizing: border-box;
	position: fixed;
	top: 0;
	color: #fff;
	text-align: center;
	font-weight: bold;
	z-index: 10000001;
	transform: translateY(-100%);
	transition: .3s;
}

.bottom_menu_sp.show {
	transform: translateY(0);
}

.bottom_menu_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bottom_menu_inner>div {
	width: 20px;
	height: 17px;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.bottom_menu_inner>p {
	padding-left: 0.75em;
	display: inline-block;
}

.bottom_menu_sp span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	left: 0;
	transition: all .4s;
}

.bottom_menu_sp span:nth-of-type(1) {
	top: 0;
}

.bottom_menu_sp span:nth-of-type(2) {
	top: 7px;
}

.bottom_menu_sp span:nth-of-type(3) {
	bottom: 0;
}

.bottom_menu_sp.active {
	border-bottom: 1px solid var(--nav_line);
}

.bottom_menu_sp.active span:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}

.bottom_menu_sp.active span:nth-of-type(2) {
	opacity: 0;
}

.bottom_menu_sp.active span:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}

@media screen and (min-width:641px) {
	.menu_sp, .bottom_menu_sp {
		display: none !important;
	}
}

/* =============================================
 アクセス時モーダル表示
============================================= */
.popup_inline_open {
	background: #fff;
	line-height: 1.6;
}

/* =============================================
 protect
============================================= */
.protect {
	display: block;
	position: relative;
	-webkit-user-drag: none;
	user-select: none;
}

.protect::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.protect img {
	-webkit-user-drag: none;
	pointer-events: none;
}

@media print {
	.protect {
		display: none !important;
	}
}

/* =============================================
 owl-dot
============================================= */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--key_color) !important;
	/* ※キーカラー01 */
	opacity: 1 !important;
}

.owl-theme .owl-dots .owl-dot span {
	background: var(--key_color) !important;
	/* ※キーカラー01 */
	opacity: 0.3 !important;
}

/* キャスト
---------------------------------------- */
.cast_box {
	width: 100%;
	margin-bottom: min(7vw, 42px);
	background: #fff;
}

.cast_box:last-child {
	margin-bottom: 0;
}

/* .pict_cast {
	width: 100%;
	max-width: 600px;
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem;
}

.pict_cast_cure {
	width: 100%;
	max-width: 900px;
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem;
}
.pict_cast_cure li:first-child{
	width: 40%;
}
.pict_cast_cure li:last-child{
	width: 60%;
}

.pict_cast.col2 li {
	width: 50%;
} */

/* .txt_cast {
	padding: 4% 0 0 0;
} */

.txt_cast:first-child {
	padding-top: 0;
}

.txt_cast dd+dd {
	margin-top: 1em;
}

.sttl_cast {
	margin-bottom: 2em;
	color: var(--key_color);
	/* ※キーカラー01 */
	line-height: 1.3;
	font-family: var(--txt_jpn);
}

.cast_color_pr .sttl_cast {
	color: #B26DFF;
}

.cast_color_re .sttl_cast {
	color: #e3483d;
}

.cast_color_gr .sttl_cast {
	color: #4dd59a;
}

.cast_color_pi .sttl_cast {
	color: #fe5fa5;
}

.cast_color_bl .sttl_cast {
	color: #42bbf9;
}

.cast_color_em .sttl_cast {
	color: #21c6d8;
}


.sttl_cast p+p {
	margin-top: 0.25em;
}

.sttl_cast .cast_name {
	font-size: 1.6em;
	text-align: center;
}

.sttl_cast .cast_name img{
	max-width: inherit;
	height: min(20vw, 120px);
}

.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;
	}

	/* .sttl_cast .cast_name img{
		max-width: 450px;
		width: 100%;
	} */

	.pict_cast.col2 {
		width: 42%;
		max-width: 400px;
	}

	.pict_cast li {
		width: 100%;
	}

	.box_s .sttl_cast .cast_name {
		font-size: 1.2em;
	}
}

@media screen and (min-width:1000px) {
	.cast_box.box_s .sec_box {
		padding: 20px;
	}
}

/* コメント
---------------------------------------- */
.qa_list dt {
	color: var(--key_color);
	font-weight: bold;
}

.cast_color_pr .qa_list dt {
	/* color: #bb96f2; */
	color: #9a71d9;/* 色味調整 */
}

.cast_color_re .qa_list dt {
	color: #e3483d;
}

.cast_color_gr .qa_list dt {
	color: #4dd59a;
}

.cast_color_pi .qa_list dt {
	color: #ff6b9a;
}

.cast_color_bl .qa_list dt {
	color: #42bbf9;
}

.cast_color_em .qa_list dt {
	color: #21c6d8;
}

.cast_color_ye .qa_list dt {
	/* color: #d9c357; */
	color: #bfa939;/* 色味調整 */
}

.cast_color_bk .qa_list dt {
	color: #524b5e;
}

.qa_list dl+dl {
	margin-top: 0.75em;
}

/* =============================================
 トピックス
============================================= */
.sec_box_topics {
	max-width: 1000px;
	margin: 0 auto min(5vw, 50px);
}
.sec_box_topics:last-child {
	margin-bottom: 0;
}

.wrap_col {
	display: flex;
    justify-content: space-between;
    column-gap: 2%;
    row-gap: 15px;
	flex-wrap: wrap;
	width: 100%;
}

.col_box {
	width: 48%;
	display: flex;
	justify-content: center;
	border: 1px solid #eee;
	box-shadow: 0 0 5px rgba(85, 58, 147, 0.3);
	background-color: #fff !important;
	border-radius: 10px;
	box-sizing: border-box;
}

#top .col_box {
	display: none;
}

#top .col_box:nth-of-type(n+1):nth-of-type(-n+4) {
	display: block;
}

#top .col_box:nth-of-type(1), #top .col_box:nth-of-type(2) {
	width: 100%;
}

@media print, screen and (min-width:641px) {
	#top .wrap_col {
		justify-content: flex-start;
		row-gap: 30px;
	}

	#top .col_box {
		width: 32%;
	}

	#top .col_box:nth-of-type(n+1):nth-of-type(-n+5) {
		display: block;
	}

	#top .col_box:nth-of-type(1), #top .col_box:nth-of-type(2) {
		width: 49%;
	}

	.underlayer .wrap_col {
		justify-content: flex-start;
	}

	.underlayer .col_box {
		width: 31%;
	}
}

@media print, screen and (max-width:640px) {
	.underlayer .col_box:nth-of-type(1), .underlayer .col_box:nth-of-type(2) {
		width: 48%;
	}

	.underlayer .col_box {
		width: 48%;
	}
}

/**/
.theme_box{
    margin: 1em 0;
    border: 1px solid #f3c7db;
    border-radius: 5px;
    overflow: hidden;
}
.theme_box dt{
    padding: 0.75em 1em;
    background: #ffebf4;
    font-weight: bold;
    line-height: 1.3;
}
.theme_box dd{
    padding: 1em;
}
.theme_box dd p{
    margin-right: 0.5em;
    display: inline-block;
}
.theme_box dd p::before{
    content: "●";
    color: #ee589e;
}
@media print, screen and (max-width:640px) {
	.theme_box dd p{
		margin-right: 0;
		display: block;
	}
}

/**/
.postcard_grid{
	display: flex;
	gap: 4vw 4%;
}
.postcard_grid .grid_img{
	text-align: center;
	line-height: 1.3;
}
.postcard_grid .grid_img img{
	max-width: 220px;
	margin: 0 auto;
}
.postcard_grid .grid_img p{
	margin-bottom: 0.5em;
}
@media print, screen and (max-width:640px) {
	.postcard_grid{
		flex-direction: column;
	}
}
@media print, screen and (min-width:641px) {
	.postcard_grid{
		justify-content: space-between;
	}
	.postcard_grid .grid_txt{
		flex: 1;
	}
	.postcard_grid .grid_img{
		width: 40%;
		max-width: 230px;
	}
}

/* nav_topics */
.nav_topics{
	margin: min(5vw, 30px) 0 min(6vw, 36px);
	display: flex;
	justify-content: space-between;
}
.nav_topics li{
	width: 48%;
}
.nav_topics a{
	padding: 1em 1em 1.5em;
    background: var(--key_color);
    box-shadow: 0 6px 0 #bf4377;
    border-radius: 10px;
    display: block;
	position: relative;
    color: #fff;
    font-size: min(4vw, 1.25em);
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
.nav_topics a.nav_blu{
    background: var(--sub_color);
	box-shadow: 0 6px 0 #2e7599;
}
.nav_topics a::before{
	content: "";
    width: 0.75em;
    height: 0.75em;
    background: url(../img/common/ico_link_arrow_wh.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0.25em;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}
.nav_topics span{
	display: inline-block;
}


/* terms */
.wrap_terms {
	margin: 30px 0;
	font-size: 0.875em;
	line-height: 1.5;
}
.wrap_terms:last-child {
	margin-bottom: 0;
}
/* .wrap_form + .wrap_terms{
	padding-bottom: 30px;
	border-bottom: 2px solid #ccc;
} */
.wrap_terms .form-check-inline{
	width: 90%;
	margin: 0 auto;
	display: block;
}
.terms li {
	margin-bottom: 5px;
}
.terms li li {
	margin-bottom: 0;
}
.terms li:last-child {
	margin-bottom: 0;
}
.terms ol > li {
	margin-left: 1.5em;
	list-style: decimal;
}
.terms ul > li {
	padding-left: 1em;
	text-indent: -1em;
}
.terms {
	/* width: 95%;
	height: 250px;
	margin: 0 auto;
	overflow: hidden; */
	border: solid 2px #CCC;
	padding: 15px;
	border-radius: 5px;
	box-sizing: border-box;
	/* overflow-y: scroll; */
}
.terms p + ol,
.terms p + ul,
.terms ol + p,
.terms ul + p{
  margin-top: 1em;
}
.terms_ttl {
  margin-bottom: 0.5em;
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
}
.indent_none li {
	padding-left: 0;
	text-indent: 0;
}
.terms_attention {
	margin: 1em 0;
	text-align: center;
}
.ta_center {
	text-align: center !important;
}
.fw_bold {
	font-weight: bold !important;
}
.mt15 {
	margin-top: 15px !important;
}
.fs_m {
	font-size: 1.125em !important;
}
.fs_l {
	font-size: 1.25em !important;
}

/* present
---------------------------------------- */

/* wrap_present */
.wrap_present {
	background: #fffded;
	box-shadow: 0 0 0 2px var(--key_color) inset;
	border-radius: 10px;
	overflow: hidden;
}

.wrap_present+.wrap_present {
	margin-top: 15px;
}

.wrap_present table {
	background: #fff;
}

.inner_present {
	padding: 1em;
}

.inner_present>p:not(:last-of-type) {
	margin-bottom: 1.5rem;
}

.ttl_present,
.ttl_present.ttl_pink {
	padding: 0.5em 1em;
	background: var(--key_color);
	color: #fff;
	font-family: var(--txt_jpn);
	font-size: 1.15em;
	font-weight: bold;
	text-align: center;
}

.ttl_present.ttl_pink {
	background: var(--key_color);
	background-image: url("../topics/img/1000memorial/patarn_wan_title.png");
	background-position: bottom, center;
	background-repeat: repeat-x, repeat-x, repeat;
	position: relative;
	background-size: auto, auto, 80%;
}

.wrap_present .link_btn_rd a {
	width: 100%;
}

.wrap_present .link_btn_rd span {
	line-height: 1.5;
}

/* @media screen and (max-width: 641px) {
	.wrap_present table.gaiyo {
		width: 100%;
		margin: 4vw auto;
	}
} */

@media print, screen and (min-width:641px) {
	.wrap_present+.wrap_present {
		margin-top: 30px;
	}

	.inner_present {
		padding: 1.5em;
	}

	.ttl_present,
	.ttl_present.ttl_pink {
		font-size: 1.5em;
	}
}

/* image_2個並び */
.photo_flex {
	display: flex;
	justify-content: space-between;
	padding: 0 0 2em;
}

.photo_flex li {
	width: 48%;
}

@media screen and (max-width: 641px) {
	.photo_flex {
		display: block;
		padding: 0 0 0em;
	}

	.photo_flex li {
		width: 100%;
		padding: 1em 0 0.5em;
	}
}

.wrap_bg_ye {
	background: #fffded;
	box-shadow: 0 0 0 2px #ffe4a3 inset;
	border-radius: 10px;
	padding: 0.5em 1.5em;
}

/* 1000memorial */
.nav_logo {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 40px;
	gap: 10px;
}

.nav_logo li {
	width: 28%;
	padding: 1em;
	background: var(--key_color);
	border-radius: 10px;
}

.nav_logo li img {
	margin-bottom: 10px;
	border-radius: 10px;
}

.nav_logo li a:hover {
	opacity: 0.7
}

@media screen and (max-width: 641px) {
	.nav_logo {
		display: block;
		background: #fff1fa;
		padding: 1.9em;
		border-radius: 10px;
	}

	.nav_logo li {
		width: 60%;
		margin: 0 auto 25px;
		padding: 1em 1em 0.5em;
	}

	.nav_logo li:last-child {
		margin-bottom: 0;
	}
}

.member_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 35px 0 0;
	font-size: 1em;
	line-height: 1.5;
}

.member_box dt {
	width: 20%;
}

.member_box dd {
	width: 76%;
}

.member_box .member_name {
	color: var(--key_color);
	/* ※キーカラー01 */
	font-family: var(--txt_jpn);
	margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
	.member_box {
		display: block;
		margin: 20px 0 0;
	}

	.member_box dt {
		width: 40%;
		margin: 0 auto 10px;
	}

	.member_box dd {
		width: 100%;
	}
}

/* bg_box */
.wrap_bg_box {
	border-radius: 5px;
	padding: min(3vw, 18px);
}
.wrap_bg_box.pnk {
    background: #fff7fa;
    border: 2px solid #f2c2d4;
}
.wrap_bg_box.blu {
    background: #f7fcff;
    border: 2px solid #c2e2f2;
}


/*モーダル*/
.inline-contents .box_inner p {
	line-height: 1.6;
}

/* btn */
.link_btn_rd.coming a,
.link_btn_rd.period_end a {
	pointer-events: none;
	opacity: 0.2;
}

.link_btn_rd.coming,
.link_btn_rd.period_end {
	position: relative;
}

.link_btn_rd.coming::after,
.link_btn_rd.period_end::after {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #664de7;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
	text-shadow: #fff 2px 2px 0px, #fff 1px 2px 0px, #fff 0px 2px 0px, #fff -1px 2px 0px, #fff -2px 2px 0px, #fff 2px 1px 0px, #fff 1px 1px 0px, #fff 0px 1px 0px, #fff -1px 1px 0px, #fff -2px 1px 0px, #fff 2px 0px 0px, #fff 1px 0px 0px, #fff 0px 0px 0px, #fff -1px 0px 0px, #fff -2px 0px 0px, #fff 2px -1px 0px, #fff 1px -1px 0px, #fff 0px -1px 0px, #fff -1px -1px 0px, #fff -2px -1px 0px, #fff 2px -2px 0px, #fff 1px -2px 0px, #fff 0px -2px 0px, #fff -1px -2px 0px, #fff -2px -2px 0px;
}

.link_btn_rd.coming::after {
	content: "Coming Soon";
}

.link_btn_rd.period_end::after {
	content: "応募期間は終了しました";
}

@media print, screen and (min-width:641px) {
	.link_btn_rd.coming::after {
		font-size: 1.5em;
	}
}


/*----------------------------------------
コンテンツボックス
---------------------------------------- */
.bnr_box {
	overflow: hidden;
	border-radius: 10px;

}

.bnr_img {
	width: 100%;
	/* max-height: 260px; */
	overflow: hidden;
}

.bnr_box img {
	border-top-left-radius: 10px !important;
	border-top-right-radius: 10px !important;
}

a .bnr_box img {
	transition: all 0.5s;
	width: 100%;
}

a:hover .bnr_box img {
	transform: scale(1.05, 1.05);
}

.bnr_box .bnr_info {
	text-align: left;
	padding: min(3vw, 15px);
	line-height: 1.5;
}

a .bnr_box .bnr_info p {
	line-height: 1.3;
	text-decoration: none !important;
}

a .bnr_box .bnr_info .note {
	display: block;
	margin-top: 0.5em;
	color: #333;
}

.new:before {
	display: inline-block;
	content: "NEW";
	font-size: 0.75em;
	color: #fff;
	box-sizing: border-box;
	line-height: 1;
	/* margin-right: 0.5em; */
	position: relative;
    top: -0.1em;
	text-shadow: #ffbf00 2px 2px 0px, #ffbf00 1px 2px 0px, #ffbf00 0px 2px 0px, #ffbf00 -1px 2px 0px, #ffbf00 -2px 2px 0px, #ffbf00 2px 1px 0px, #ffbf00 1px 1px 0px, #ffbf00 0px 1px 0px, #ffbf00 -1px 1px 0px, #ffbf00 -2px 1px 0px, #ffbf00 2px 0px 0px, #ffbf00 1px 0px 0px, #ffbf00 0px 0px 0px, #ffbf00 -1px 0px 0px, #ffbf00 -2px 0px 0px, #ffbf00 2px -1px 0px, #ffbf00 1px -1px 0px, #ffbf00 0px -1px 0px, #ffbf00 -1px -1px 0px, #ffbf00 -2px -1px 0px, #ffbf00 2px -2px 0px, #ffbf00 1px -2px 0px, #ffbf00 0px -2px 0px, #ffbf00 -1px -2px 0px, #ffbf00 -2px -2px 0px;
}

.label:after {
	display: inline-block;
	min-width: 70px;
	border-radius: 50vw;
	background-color: var(--key_color);
	text-align: center;
	font-size: 0.875em;
	color: #fff;
	box-sizing: border-box;
	line-height: 1;
	padding: 0.3em 0.5em;
	white-space: nowrap;
}

.label.topics:after {
	min-width: 90px;
	font-size: 0.75em;
	margin-left: 0.5em;
}

.notice:after {
	content: "おしらせ";
	background-color: var(--key_color);
}

.event:after {
	content: "イベント";
	background-color: #F69231;
}

.campaign:after {
	content: "キャンペーン";
	background-color: #5DC8B8;
}

.essential:after {
	content: "重要";
	background-color: #FF0057;
}

.topics_box a{
	color: #222;
}
.topics_box a:hover{
	color: var(--key_color);
}

.topics_date {
    display: flex;
    align-items: center;
	color: var(--key_color);
}
.page_box .topics_date {
    justify-content: flex-end;
}
.topics_txt {
	letter-spacing: -0.05em;
}

.bnr_info>.topics_date {
	margin-bottom: 0.5em;
	font-size: clamp(1.3rem, 1.3vw, 1.5rem);
    display: flex;
    flex-wrap: wrap;
    column-gap: 7px;
}


/* =============================================
 ムービー
============================================= */
.sec_box.movie_bg {
	max-width: 800px;
	padding: 0 !important;
	background-color: #fff;
	border-radius: 6px !important;
    border: min(1.5vw, 10px) solid #fff;
	overflow: hidden;
}

.sec_box.movie_bg_pink {
	max-width: 800px;
	padding: 0 !important;
	background-color: #ffe0ec;
	border-radius: 6px !important;
    border: min(1.5vw, 10px) solid #ffe0ec;
	overflow: hidden;
}

/* =============================================
 ストーリー
============================================= */
.sec_box.chara_bg {
	background: linear-gradient(90deg, rgba(255,255,255,0) 0% , rgba(255,255,255,0.9) 50% , rgba(255,255,255,0) 100%) ,url(../img/common/bg_chara.png) center;
	background-size: auto, cover;
	border: 4px solid #fff;
}

.txt_box {
	width: 100%;
    max-width: 800px;
    margin: 0 auto 4%;
    padding: 0;
    box-sizing: border-box;
    color: #5c6d73;
	font-size: clamp(1.6rem,2.5vw,2.0rem);
    font-weight: 900;
    text-align: center;
    text-shadow: #fff 0px 0px 5px, #fff 0px 0px 5px,#fff 0px 0px 5px, #fff 0px 0px 5px;
}

.txt_box p {
	margin-bottom: 1.5rem
}

.txt_box span {
	display: inline-block;
}

.story_cara{
	max-width: 800px;
	margin: 0 auto;
}
.story_cara img{
	transform: translateX(2%);
}
@media screen and (max-width:640px) {
	.story_cara{
		margin: 10% auto;
		transform: scale(1.15);
	}
}

/* =============================================
 過去の作品
============================================= */
.archive_box {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.archive_list {
	width: 100%;
	padding: 0 1rem;
	box-sizing: border-box;
}

.archive_list ul {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	row-gap: 20px;
}

.archive_list li a {
	font-size: min(6vw, 1.6rem);
	text-decoration: none;
	font-weight: bold;
	color: var(--key_color2);
	letter-spacing: -0.05em;
	transition: .3s;
}

.archive_list li a:hover {
	color: var(--sub_color);
}

@media screen and (min-width:641px) {
	.slide_select, .move_controler {
		display: none;
	}

	.contains {
		padding: 55px min(4vw, 20px);
		background: #fff;
		box-sizing: border-box;
		border-radius: 20px;
		box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	}

	.slide+.slide {
		margin-top: 30px;
	}

	.archive_list {
		padding: 0 1rem;
	}

	.contains ul {
		width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
		row-gap: 30px;
	}

	.contains ul li {
		width: 33.3%;
		line-height: 1.2;
		text-align: center;
	}

	.contains ul li a {
		white-space: nowrap
	}

	.only_Sl {
		display: none;
	}
}

@media screen and (max-width:640px) {

	.carousel {
		display: flex;
		justify-content: center;
	}

	.contains {
		width: 100vw;
		height: 96vw;
		overflow: hidden;
		position: relative;
		padding: 0;
		margin: 0 auto;
	}

	.slide_select {
		display: none;
	}

	.slide {
		width: 100vw;
		position: absolute;
		opacity: 0;
		transition: .5s;
	}

	.scroll_button {
		position: absolute;
		display: block;
		height: 30px;
		width: 30px;
		top: 35vw;
		margin-top: -15px;
		border-width: 8px 8px 0 0;
		border-style: solid;
		border-color: var(--key_color2);
		cursor: pointer;
		opacity: 0.5;
		z-index: 3;
	}

	.scroll_button:hover {
		opacity: 1;
	}

	.scroll_prev {
		position: absolute;
		left: 15px;
		transform: rotate(-135deg);
		z-index: 100;
	}

	.scroll_next {
		right: 15px;
		transform: rotate(45deg);
	}

	.move_controler {
		position: absolute;
		bottom: 20px;
		width: 100%;
		text-align: center;
		z-index: 10;
	}

	.button_move {
		display: inline-block;
		height: 16px;
		width: 16px;
		margin: 0 8px;
		background-color: #fff;
		border-radius: 100%;
		cursor: pointer;
		z-index: 2;
	}

	.button_move:hover {
		background-color: var(--key_color2);
	}

	.slide_select:nth-of-type(1):checked~.slide:nth-of-type(1) {
		opacity: 1;
		z-index: 1;
	}

	.slide_select:nth-of-type(1):checked~.move_controler .button_move:nth-of-type(1) {
		background-color: var(--key_color2);
	}

	.slide_select:nth-of-type(2):checked~.slide:nth-of-type(2) {
		opacity: 1;
		z-index: 1;
	}

	.slide_select:nth-of-type(2):checked~.move_controler .button_move:nth-of-type(2) {
		background-color: var(--key_color2);
	}

	.slide_select:nth-of-type(3):checked~.slide:nth-of-type(3) {
		opacity: 1;
		z-index: 1;
	}

	.slide_select:nth-of-type(3):checked~.move_controler .button_move:nth-of-type(3) {
		background-color: var(--key_color2);
	}

	.slide_select:nth-of-type(4):checked~.slide:nth-of-type(4) {
		opacity: 1;
		z-index: 1;
	}

	.slide_select:nth-of-type(4):checked~.move_controler .button_move:nth-of-type(4) {
		background-color: var(--key_color2);
	}

	.contains ul {
		width: calc(100% - 30px);
		height: 80vw;
		margin: 0 30px 0 15px;
		border-radius: 20px;
		background: #fff;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.contains ul li {
		width: 100%;
		text-align: center;
		line-height: 1;
	}

	.only_nSl {
		display: none;
	}
}

/* =============================================
 トピックスページ
============================================= */
/* .page_box {
	width: 96%;
	max-width: 800px;
	margin: 0 auto;
} */

.page_box_inner {
	font-size: clamp(1.4rem, 2.2vw, 1.6rem);
}

.page_box_inner+.page_box_inner {
	margin-top: 30px;
}

.page_img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto min(4vw, 24px);
}

.page_box .topics_date {
	text-align: right;
	margin-bottom: 1rem;
}

.page_title {
	padding: 0 0 min(6vw, 40px);
    margin-bottom: 1em;
	position: relative;
	font-size: min(5vw, 3rem);
	font-weight: bold;
	font-family: var(--txt_jpn);
	color: var(--key_color);
	line-height: 1.5;
	text-align: center;
	display: block;
	border-radius: 10px;
}
.page_title::after{
	content: "";
    width: 100%;
    height: 0.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/common/bg_ttl.png);
    background-size: auto 100%;
    opacity: 0.5;
}
.page_title span {
	display: inline-block;
}

.baseball .page_title {
	padding: 0.75em 10vw 0.75em;
	line-height: 1.2;
}

.page_title .fs_normal {
	font-size: 1em;
}

.page_title .txt_adjust {
	margin: -0.1em 0 0.2em;
	display: block;
	line-height: 1.0;
}

.main_title {
    padding: 0 0 0.25em;
    margin: 1em 0 0.5em;
    border-bottom: 2px solid  var(--key_color);
    position: relative;
	font-size: clamp(1.25em, 3.15vw, 1.5em);
    font-weight: bold;
    font-family: var(--txt_jpn);
    color: var(--key_color);
    line-height: 1.4;
}

.sub_title {
	font-family: var(--txt_jpn);
	color: var(--key_color);
	line-height: 1.4;
	margin: 1em 0 0.5em;
	font-weight: bold;
	font-size: 1.125em;
	padding-left: 0.5em;
	border-left: 3px solid var(--key_color);
}

.sub_title.blu {
	color: var(--sub_color);
	border-left: 3px solid var(--sub_color);
}

.sub_title.blk {
	color: #333;
	border-left: 3px solid #333;
}

.info_ttle {
    font-family: var(--txt_jpn);
    /* color: var(--key_color); */
    line-height: 1.4;
    padding-bottom: 0.4em;
    margin: 1em 0 0.5em;
    font-size: 1.125em;
    font-weight: bold;
    border-bottom: 1px solid #999;
}

.info_ttle_s {
	font-family: var(--txt_jpn);
	color: var(--key_color);
	line-height: 1.4;
	margin: 1em 0 0.5em;
	font-size: 1em;
}

.circle_catch {
	text-indent: -0.8em;
	padding-left: 0.8em;
}

.circle_catch::before {
	content: "●";
	margin-right: 2px;
	color: #000;
	font-size: 0.8em;
}

.page_box>p:not(:last-of-type) {
	margin-bottom: 1.5rem;
}

.topicsdetail_box {
	width: 100%;
	max-width: 1000px;
	margin: -12% auto 12%;
	padding: 10% 4% 20% 4%;
	background: #fff;
	border-radius: 10px;
	position: relative;
	box-sizing: border-box;
	box-shadow: 0 6px 6px rgb(0 0 0 / 10%);
	border: 4px solid #AAE2FF;
}

.topics_img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	width: 100%;
	max-width: 800px;
	margin: 4vw auto 0;
}

.topicsdetail_box .topics_date {
	text-align: right;
	margin-bottom: 10px;
}

@media screen and (min-width:641px) {
	.page_box_inner+.page_box_inner {
		margin-top: 60px;
	}
}

/*リスト*/
ul.info-list {
	list-style: none;
}

ul.info-list li {
	padding-left: 1em;
	margin-bottom: 0.5em;
	text-indent: -1em;
    line-height: 1.3;
}
ul.info-list li:last-child {
	margin-bottom: 0;
}

/* ul.info-list li::before {
	content: '・';
}
ul.info-list.kome li::before {
	content: '※';
} */

/*表*/
table.gaiyo {
	border-collapse: collapse;
	width: 100%;
	max-width: 800px;
	margin: min(4vw, 24px) auto;
}

.gaiyo th, .gaiyo td {
	padding: 0.5em;
	border: solid 2px var(--key_color);
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
}

table.gaiyo th {
	background: var(--key_color);
	border-bottom: solid 2px #fff;
	color: #fff;
	font-weight: bold;
	width: 20%;
}

table.gaiyo.skyth th {
	background: var(--key_color);
	color: #fff;
	border-bottom: solid 2px #fff;
}

table.gaiyo tr:last-child th {
	border-bottom: solid 2px var(--key_color);
}

.gaiyo span {
	color: var(--key_color);
	font-weight: bold;
}

.gaiyo span.day {
	color: #222;
	font-weight: normal;
	display: inline-block;
	min-width: 200px;
	text-align: left;
}

.gaiyo span.num {
	color: #222;
	font-weight: normal;
	display: inline-block;
	width: 4em;
}

@media screen and (max-width: 641px) {
	/* table.gaiyo {
		width: 100%;
		margin: 6vw auto 0;
	} */

	table.gaiyo th, table.gaiyo td {
		display: block;
		width: 100%;
		border-bottom: none;
	}

	.gaiyo tr:last-child {
		border-bottom: solid 2px var(--key_color);
	}

	table.gaiyo tr:last-child th {
		border-bottom: none;
	}

	table.gaiyo.skyth th {
		border-bottom: none;
	}
}

/*終了対応*/
.endwrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.endwrap .endwrap_over {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 50;
	top: 0;
	left: 0;
}

.endwrap .endwrap_txt {
	font-family: var(--txt_jpn);
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--key_color);
	text-align: center;
	line-height: 1.5;
	padding: 5%;
	border: 2px solid var(--key_color);
	top: 50px;
	left: 0;
	right: 0;
}

@media screen and (max-width:640px) {
	.endwrap .endwrap_txt {
		font-size: 1.8rem;
	}
}

.spanblock {
	display: block;
}

/*画像テキスト*/

.box_news {
	display: flex;
	flex-directio: row;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.box_img_news {
	text-align: center;
}

.box_img_news img {
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}

/* .mt10 {
	margin-top: 60px !important;
} */

@media screen and (max-width:640px) {
	.box_news {
		flex-direction: column;
		justify-content: center;
	}

	.box_txt_news {
		width: 100%;
	}

	.box_img_news {
		width: 100%;
	}

	.box_img_news img {
		max-width: none;
	}

	.mt10 {
		margin-top: 10vw !important;
	}
}

@media screen and (min-width:641px) {
	.box_txt_news {
		width: 60%;
	}

	.box_img_news {
		width: 40%;
	}
}

@media screen and (min-width:1001px) {
	.box_txt_news {
		width: 50%;
	}

	.box_img_news {
		width: 50%;
	}
}

/* jump_point */

jump_point {
	height: 1px;
	display: block;
	padding-top: 40px;
	margin-top: -40px;
}

/* ------------------------------------
 * data
------------------------------------ */
.txtColorData {
	color: var(--key_color2) !important;
}

.main_data {
	border-bottom: 4px solid var(--key_color2);
	color: var(--key_color2);
}

.sub_data {
	border-left: 4px solid var(--key_color2);
	color: var(--key_color2);
}

.txt_catch1 {
	margin: 20px 0 0;
	font-weight: bold;
	font-family: var(--txt_jpn);
	color: var(--key_color);
	line-height: 1.4;
	font-size: clamp(1.25em,3.15vw,1.5em);
}

.txt_catch2 {
	margin: 0.5em 0 0;
	font-weight: bold;
	font-family: var(--txt_jpn);
	color: var(--sub_color);
	line-height: 1.4;
	font-size: 1.25em;
}

.txt_catch1 span,
.txt_catch2 span,
.data_box span {
	display: inline-block;
}

.data_box {
	width: 100%;
	border-radius: 10px;
	padding: min(4vw, 20px);
	color: var(--key_color2);
	font-size: 1.125em;
	font-weight: bold;
	box-sizing: border-box;
	background-color: #ffedef;
	text-align: center;
	margin-bottom: 1em
}

.border_box {
	width: 100%;
	border: 2px solid var(--key_color2);
	box-sizing: border-box;
	background-color: #ffedef;
	border-radius: 10px;
	padding: 3%;
	margin: 20px 0;
}

ol.list_num>li {
	width: 100%;
	list-style: decimal;
	list-style-position: inside !important;
	text-indent: -1.3em;
	margin-bottom: 0.6em;
	line-height: 1.6;
	border-bottom: 2px dashed #fff;
	padding-left: 1.3em;
	padding-bottom: 0.6em;
	box-sizing: border-box;
	color: var(--key_color2);
	font-weight: bold;
}

ol.list_num>li:last-child {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}

/* ------------------------------------
 * 追従バナー
------------------------------------ */
.bnr_fixed {
	position: fixed;
	bottom: 30vw;
	right: 0;
	z-index: 1000;
	width: 50vw;
	height: 31vw;
	background: url("../img/common/bnr_fixed.png") no-repeat bottom left;
	background-size: contain;
	transform: translateX(110%);
	transition: all 0.5s;
}
.bnr_fixed.bnr-active{
	transform: translateX(0%);
}

.bnr_fixed.bnr-active:hover {
	transform: translateY(-4%);
}

@media print,
screen and (max-width:640px) {
	.bnr_fixed.bnr-active.bottom{
		bottom: min(70vw,350px);
	}
}

@media print,
screen and (min-width:641px) {
	.bnr_fixed {
		bottom: 15px;
		right: 10px;
		width: 300px;
		height: 186px;
	}
}