@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #f6cb32;
	--color_RED : #5e0000;
	--color_BRN : #c14917;
	/* --color_BLU : #0068b7; */
	--fontS : clamp(16px,2.2vw,22px);
	--fontM : clamp(18px,2.8vw,28px);
	--fontL : clamp(20px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
/* h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
} */
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	/* font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 600 !important;
}
.shippori-antique {
	font-family: "Shippori Antique", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
.arial {
	font-family: Arial;
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
.flex.col4 {
	column-gap: 4%;
	justify-content: center;
}
.flex.col4 .flex_item {
	width: calc(88% / 4);
}
.flex.col4 .flex_item:nth-child(n + 7) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:1279px) {
	.flex.col4 {
		justify-content: center;
		row-gap: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(94% / 2);
		max-width: 400px;
	}
}
@media screen and (max-width:767px) {
	.flex.col3 .flex_item {
		width: calc(97% / 2);
	}
}
@media screen and (max-width:599px) {
	.flex.col4 .flex_item {
		width: min(80%,320px);
	}
}
@media screen and (max-width:399px) {
	.flex.col2 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(80%, 200px);
	}
	.flex.col3 .flex_item {
		width: min(80%, 480px);
	}
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1600px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_64px);
}
.pd_b {
	padding-bottom: var(--gap_64px);
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.block_title {
	font-size: clamp(18px,3.4vw,28px);
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 0 0 var(--gap_32px);
}
.block_read p {
	margin: var(--gap_16px) auto;
}
.block_read p:not(.demo_btn) {
	padding-left: 1em;
	text-indent: -1em;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
.btn:hover {
	box-shadow: unset !important;
}

.side_nav {
	text-align: center;
	margin-bottom: var(--gap_32px);
}
.side_nav a {
	font-size: clamp(24px,4vw,38px);
	color: #fff !important;
	text-shadow: 0 0 0.4em var(--color_VIO), 0 0 0.4em var(--color_VIO);
	margin-block: var(--gap_8px);
	display: inline-block;
}
@media screen and (max-width: 479px) {
	.side_nav {
		margin-bottom: var(--gap_16px);
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.side_nav > div {
		display: inline-block;
		margin-inline: var(--gap_16px);
	}
}

#btn_pagetop,
#btn_pagetop2 {
	bottom: var(--gap_16px);
    position: fixed;
    z-index: 1100;
}
#btn_pagetop {
	right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
	left: var(--gap_24px);
}
#btn_pagetop a,
#btn_pagetop2 a {
	display: block;
}
#btn_pagetop2 a {
	font-size: clamp(38px,7.8vw,78px);
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--color_YLW) !important;
	text-shadow: 0 0 0.2em var(--color_NVY),0 0 0.3em var(--color_NVY);
	padding: var(--gap_8px);
	/* border: solid 1px var(--color_YLW);
	box-shadow: 0 0 var(--gap_8px) #000; */
    /* background: var(--color_RED); */
	/* background: #214361;
    background: radial-gradient(circle, rgba(33, 67, 97, 1) 0%, rgba(17, 44, 68, 1) 100%); */
}
/* #btn_pagetop i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop2 > i {
	font-size: 1.4em;
	text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
	color: #fff;
	margin-bottom: var(--gap_8px);
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999;
}
#btn_pagetop a img {
	width: clamp(60px, 15vw, 100px);
}
#btn_pagetop2 a img {
	width: clamp(120px, 12vw, 160px);
}
@media screen and (max-width: 479px) {
	.btm_btn_area {
		position: relative;
	}
	.btm_btn_area::after {
		position: fixed;
		/* content: ""; */
		width: 100%;
		background-color: #000;
		background: linear-gradient(90deg, transparent 0%, #000 50%, transparent 100%);
		bottom: 0;
		height: 60px;
		z-index: 1010;
	}
}

/* =============================================================
    コンテンツ内　共通
============================================*/
.sec_title {
	font-weight: 800 !important;
	text-align: center;
	color: var(--color_RED);
	margin-bottom: var(--gap_48px);
}
.sec_title em {
	border-bottom: dotted calc(var(--gap_8px) / 2);
}

/* =============================================================
      main コンテンツ
============================================*/
.kv {
	background: url(/sp/minaosou_np/oa/02/images/kv_bg.jpg) center bottom/cover no-repeat;
}
.kv_wave {
	background: url(/sp/minaosou_np/oa/02/images/wave_L.png) left bottom/clamp(100px,58vw,860px) no-repeat,
		url(/sp/minaosou_np/oa/02/images/wave_R.png) right bottom/clamp(100px,58vw,860px) no-repeat;
	animation: kv_anime 3s infinite;
}
@keyframes kv_anime {
	0% {
		background-position: left bottom calc(var(--gap_16px) * -1),
		right bottom calc(var(--gap_32px) * -1);
	}
	50% {
		background-position: left bottom calc(var(--gap_32px) * -1),
		right bottom calc(var(--gap_16px) * -1);
	}
	100% {
		background-position: left bottom calc(var(--gap_16px) * -1),
		right bottom calc(var(--gap_32px) * -1);
	}
}
.kv_inner.flex {
	align-items: flex-end;
	position: relative;
}
.logo_wrap {
	font-size: 0em;
	width: min(100%,1405px);
	padding-top: var(--gap_48px);
	margin-inline: auto;
    position: relative;
}
.logo {
	background: url(/sp/minaosou_np/oa/02/images/kv_logo.png) center center/contain no-repeat;
	padding-top: calc(692 / 1405 * 100%);
}
.oa_date_wrap {
	text-align: center;
	padding: var(--gap_16px) var(--gap_24px) var(--gap_48px);
	background: url(/sp/minaosou_np/oa/02/images/bg_date_top.png) center top/100% no-repeat,
		url(/sp/minaosou_np/oa/02/images/bg_date_btm.png) center bottom/100% no-repeat,
		url(/sp/minaosou_np/oa/02/images/bg_date_mid.png) center center/100% repeat-y;
	position: relative;
	z-index: 100;
}
.oa_date {
	font-size: clamp(16px,5.8vw,98px);
	font-weight: 800;
	line-height: 1.1;
	text-shadow: 0 0 0.2em var(--color_RED),0 0 0.3em var(--color_RED);
	color: #fff;
}
.oa_date em {
	font-size: 1.5em;
	line-height: 1;
	display: inline-block;
}
.oa_date em,
.oa_date b {
	color: var(--color_YLW);
}
.oa_net {
	font-size: clamp(12px, 3.2vw, 16px);
	font-weight: 800;
	line-height: 1.1;
	color: var(--color_RED);
	padding: var(--gap_8px) var(--gap_16px);
	margin-top: var(--gap_24px);
	background-color: #fff;
	border-radius: 50px;
	display: inline-block;
}

/* =============================================================
      intro
============================================*/
.intro_read {
	text-align: center;
}

.intro_read p:not(:last-of-type) {
	padding-bottom: var(--gap_24px);
}
.intro_read p b {
	font-weight: inherit
}
.intro_read p .large {
	font-size: 1.3em;
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1000px;
    margin: var(--gap_48px) auto 0;
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.tver_area {
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-align: center;
    margin-bottom: var(--gap_48px);
}
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_area a {
    width: clamp(150px, 30vw, 380px);
    margin: 0 auto;
	filter: drop-shadow(0 0 var(--gap_16px) #c1c2be);
    display: block;
}
.tver_info_btm {
    margin-top: var(--gap_8px);
}
.tver_info,
.tver_info_btm {
    text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
}

/* =============================================================
      cast
============================================*/
.contents {
	background: url(/sp/minaosou_np/oa/02/images/bg.jpg) center center/min(100%,654px) repeat;
	position: relative;
}
.bg_box {
	background: url(/sp/minaosou_np/oa/02/images/deco_L.png) left top var(--gap_32px)/clamp(300px,95vw,1810px) no-repeat,
		linear-gradient(90deg,transparent 0%,#fff 25%,#fff 75%,transparent 100%);
}
.bg_box > .inner_wrap {
	padding-bottom: min(50vw,260px);
    margin-bottom: max(-50vw,-260px);
	position: relative;
	z-index: 100;
}
.deco_R {
	width: min(34vw, 635px);
	position: absolute;
	top: 0;
	right: var(--gap_48px);
}

#cast {
	position: relative;
	z-index: 100;
}
.cast_wrap {
	justify-content: center;
	row-gap: var(--gap_48px);
}
.cast_item {
	text-align: center;
	max-width: 400px;
}
.cast_item img {
	filter: drop-shadow(0 0 var(--gap_16px) #c1c2be);
}
.cast_name {
	font-size: var(--fontS);
	line-height: 1;
	padding: 0 var(--gap_8px);
	margin: var(--gap_24px) auto 0;
	width: min(100%, 320px);
	height: min(14vw,80px);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	background-color: #fff;
	border: solid calc(var(--gap_8px) / 2) var(--color_BRN);
	filter: drop-shadow(0 0 var(--gap_16px) #c1c2be);
}
.cast_name small {
	font-size: clamp(10px,1.8vw,14px);
	line-height: 1;
	margin-top: var(--gap_8px);
	width: 100%;
	display: block;
}
@media screen and (max-width:479px) {

}






/* JS 時間指定で表示非表示を制御用 */
.js-time_limited {
    display: none !important;
}
.js-time_limited_fire {
    display: block !important;
}
.js-time_limited_fire.hidden {
    display: none !important;
}
/* END // JS 時間指定で表示非表示を制御用 */

#tvoHeader,
#tvoFooter {
	position: relative;
	z-index: 1000;
}