@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_RED : #e01006;
	--color_BLU : #0856f5;
	--color_YLW : #fce429;
	--color_GRN : #44bc08;
	--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%;
	position: relative;
}

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-size: inherit;
	font-weight: 500;
}
li,ol,ul {
	list-style-type: none;
}
table {
	width: 100%;
}

#page {
	font-size: clamp(18px, 2.2vw, 20px);
	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.6;
	margin: 0 auto;
	/* max-width: 1920px; */
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	position: relative;
}

.top__bg {
	position: relative;
}

.top__bg::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: url(/sp/uchiwake_society/images/bg_pc.jpg) no-repeat top center / cover;
	z-index: -2;
}


#page * {
	box-sizing: border-box;
}
#page img {
	max-width: 100%;
-o-object-fit: cover;
object-fit: cover;
}

#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
/* リンクとボタンのoutlineを非表示にする */
#page a,
#page button {
	outline: none;
	cursor: pointer;
}
/* ボタンとリンクにフォーカスした時にoutlineが表示されるようにする */
#page a:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 2px;
}
#page button:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 1px;
}
#page a:hover {
	cursor: pointer;
	text-decoration: none;
	opacity: 0.7;
}
#page label {
	cursor: pointer;
}

#page em {
	font-style: normal;
	font-weight: bold;
}

#page picture { display: block;}

/* #page section:nth-of-type(4),
#page section:last-of-type { margin-bottom: 0;} */

/* #page section {
padding-top: 10px;
margin-top: -10px;
} */

.pc {
display: block;
}

.sp {
display: none;
}


.ib {
	font-size: inherit !important;
	display: inline-block;
}

#page_top {
position: fixed;
right: 0.5%;
bottom: 2%;
display: block;
width: min(20vw,100px);
z-index: 999;
}

#page_top img { width: 100%;}

.top__movie {
margin: var(--gap_24px) auto;
}

.movie {
position: relative;
max-width: 900px;
aspect-ratio: 16/9;
margin: 0 auto var(--gap_32px);
overflow: hidden;
}

.tver_area {
	text-align: center;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
	/* margin: var(--gap_64px) auto var(--gap_32px); */
	/* width: clamp(250px, 50vw, 450px); */
}

.tver_info {
	margin-bottom: var(--gap_8px);
}

.tver_info em {
	font-size: 1.3em;
}

.tver_area .tver_info_btm {
	color: inherit;
	margin: var(--gap_16px) auto 0;
	text-align: center;
	line-height: 1.2;
}

.tvo-video {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
}

	@media not screen and (min-width: 767px) {
	#page_top {
		z-index: 800;
	}
}

/*================================
アニメーションcss
================================*/
.animated {
    animation-fill-mode: both;
    animation-duration: 0.5s;
}

.fadeIn{
    opacity:0;
}


/* その場で */
.fadeIn.animated {
    animation-name:fadeInAnime;
}
    
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 下から */
.fadeUp {
    opacity:0;
}
.fadeUp.animated{
    animation:fadeUpAnime 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeUpAnime{
    0% {
		transform: translateY(30px);
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 上から */

.fadeDown {
    opacity:0;
}

.fadeDown.animated{
    animation-name:fadeDownAnime;
}

@keyframes fadeDownAnime{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft {
    opacity:0;
}

.fadeLeft.animated{
    animation-name:fadeLeftAnime;
}

@keyframes fadeLeftAnime{
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */

.fadeRight {
    opacity:0;
}

.fadeRight.animated {
    animation-name:fadeRightAnime;
}

@keyframes fadeRightAnime{
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-focus-in {
	opacity:0;
}

/* text出現 fuwa */
.text-focus-in.animated {
	-webkit-animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: text-focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

/* text出現 hirogaru */
.tracking-in-expand {
	opacity:0;
}

.tracking-in-expand.animated {
	-webkit-animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both;
	animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both
}

@-webkit-keyframes tracking-in-expand {
	0% {
		letter-spacing:-.5em;
		opacity:0
	}
	40% {
		opacity:.6
	}
	100% {
		opacity:1
	}
}
	@keyframes tracking-in-expand {
		0% {
			letter-spacing:-.5em;
			opacity:0
		}
		40% {
			opacity:.6
		}
		100% {
			opacity:1
		}
	}

/* 右傾く */
.fadeRotateRight {
	opacity: 0;
}
.fadeRotateRight.animated {
	animation:fadeRotateRight 1s ease-in-out both;
}

@keyframes fadeRotateRight {
	0% {
		opacity: 0;
		rotate: 0deg;
	}
	25% {
		opacity: 1;
	}
	50% {
		rotate: -20deg;
	}
	100% {
		rotate: 0deg;
		opacity: 1;
	}
}

/* 左傾く */
.fadeRotateLeft {
	opacity: 0;
}
.fadeRotateLeft.animated {
	animation:fadeRotateLeft 1s ease-in-out both;
}

@keyframes fadeRotateLeft {
	0% {
		opacity: 0;
		rotate: 0deg;
	}
	25% {
		opacity: 1;
	}
	50% {
		rotate: 20deg;
	}
	100% {
		rotate: 0deg;
		opacity: 1;
	}
}

/* 滑らかに変形して出現 */
.smoothTrigger {
	opacity:0;
}

.smoothTrigger.animated{
	animation-name:smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	transform-origin: left;
}

@keyframes smoothAnime{
	from {
		transform: translate3d(0, 60%, 0) skewY(12deg);
		opacity:0;
	}

	to {
		transform: translate3d(0, 0, 0) skewY(0);
		opacity:1;
	}
}

/*背景→text出現 （span）*/

.bgextend {
	opacity: 0;
}
.bgextend.animated{
	animation-name:bgextendAnimeBase;
	animation-timing-function: ease-in-out;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
}
@keyframes bgextendAnimeBase{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}

/*左から*/

.bgLRextend.animated::before{
	--band-padding: 0.25em;
	animation-name:bgLRextendAnime;
	animation-duration: 0.8s;
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-fill-mode: both;
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% + var(--band-padding)* 2);
	top: calc(var(--band-padding)* -1);
	background-color: #fff;/*伸びる背景色の設定*/
	z-index: 1;
}
@keyframes bgLRextendAnime{
	0% {
	transform-origin:left;
	transform:scaleX(0);
	}
	50% {
	transform-origin:left;
	transform:scaleX(1);
	}
	50.001% {
	transform-origin:right;
	}
	100% {
	transform-origin:right;
	transform:scaleX(0);
	}
}

/*右から*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
	transform-origin:right;
	transform:scaleX(0);
	}
	50% {
	transform-origin:right;
	transform:scaleX(1);
	}
	50.001% {
	transform-origin:left;
	}
	100% {
	transform-origin:left;
	transform:scaleX(0);
	}
}

/*下から*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
	transform-origin:bottom;
	transform:scaleY(0);
	}
	50% {
	transform-origin:bottom;
	transform:scaleY(1);
	}
	50.001% {
	transform-origin:top;
	}
	100% {
	transform-origin:top;
	transform:scaleY(0);
	}
}

/*上から*/
.bgUDextend::before{
	animation-name:bgUDextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
	0% {
	transform-origin:top;
	transform:scaleY(0);
	}
	50% {
	transform-origin:top;
	transform:scaleY(1);
	}
	50.001% {
	transform-origin:bottom;
	}
	100% {
	transform-origin:bottom;
	transform:scaleY(0);
	}
}

/*text左から右*/
.leftAnime {
    opacity: 0;
    overflow: hidden;
    display: inline-block;
}

.leftAnimeInner {
	display: inline-block;
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextX100 {
	from {
	transform: translateX(-100%);
	/*要素を左の枠外に移動*/
	opacity: 0;
	}

	to {
	transform: translateX(0);
	/*要素を元の位置に移動*/
	opacity: 1;
	}
}


/*================================
共通パーツ
================================*/
.inner_wide {
	padding-inline: min(5vw,80px);
}

.inner_contents {
	max-width: min(85vw,1355px);
	margin-inline: auto;
	padding-inline: 25px;
}

@media not screen and (min-width: 768px) {
	.inner {
	width: 94%;
	padding-inline: calc((16/750)*100vw);
	}

	.inner_wide, .inner_contents {
	max-width: 94%;
	padding-inline: 3vw;
	margin-inline: auto;
	}

	.pc {
	display: none;
	}
	
	.sp {
	display: block;
	}
}

.sub_title {
	margin-bottom: var(--gap_48px);
}


/* =============================================================
	main コンテンツ
============================================*/
.mv__img {
	width: min(75vw,984px);
	margin: var(--gap_64px) auto var(--gap_48px);
}

.mv__img img {
	width: 100%;
}

.date {
	width: min(70%,1240px);
	margin: 0 auto; 
}

/* =============================================================
	contents
============================================*/
.contents {
	background-image: url("/sp/uchiwake_society/images/main_bg.png");
	background-attachment: fixed;
	background-size: 100% auto;
	background-position: center;
	padding: var(--gap_80px) 0 0;
}

@media only screen and (max-width: 767px) {
	.contents {
		background-size: cover;
	}
}

.contents__bg {
	background: #fff;
	box-shadow: 0 0 20px #696969;
	padding: var(--gap_64px) var(--gap_48px);
	margin: var(--gap_80px) auto;
	text-align: center;
	border-radius: var(--gap_48px);
}

/* =============================================================
	about
============================================*/
.sub_title {
	width: min(70%,400px);
	margin: 0 auto var(--gap_48px);
}

/* .about .sub_title.title02 {
	width: min(55%,263px);
} */

.about__text01{
	text-align: center;
	line-height: 2em;
	margin-bottom: var(--gap_48px);
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}

.about__text01.mb30  {
	margin-top: var(--gap_32px);
}

.about__text01 .red {
	font-size: 1.4em;
	color: var(--color_RED);
}

.about__streaming {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--gap_48px);
	margin: var(--gap_64px) auto var(--gap_80px);
}

.tver_area, .youtube_area {
	width: 45%;
}

.about__lieup {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gap_48px);
	max-width: 1000px;
	margin: 0 auto;
}

.about__lieup > li {
	width: 40%;
}


/* =============================================================
	spot
============================================*/
.spot__contents:not(:last-of-type) {
	background: url(/sp/uchiwake_society/images/line.png) no-repeat center bottom / 100% auto;
	padding-bottom: var(--gap_80px);
	margin-bottom: var(--gap_48px);
}

.spot__contents--title {
	font-size: 1.2em;
    font-weight: 700;
	text-align: center;
	margin-bottom: var(--gap_32px);
}

.spot__contents--title .title_block {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: .1em;
	color: #fff;
	background: #ff5d7e;
	padding: var(--gap_8px) var(--gap_24px);
	line-height: 3em;
}

.spot__contents--title.title03 {
	margin-bottom: var(--gap_16px);
}

.spot__contents--text {
	margin-bottom: var(--gap_48px);
}

.spot__img01 img, .spot__img02 img {
	box-shadow: 0 0 20px #696969;
}

.spot__img01 {
	margin-bottom: var(--gap_48px);
}

.spot__img02 {
	display: flex;
	justify-content: space-between;
	align-items: center;

}

.spot__img02 > li {
	width: 30%;
}

.spot__img02 > li > img {
	width: 100%;
}


/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 900px;
    margin: var(--gap_64px) auto;
}
#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_wrap {
    margin: var(--gap_64px) auto 0;
}
.bnr_tver {
    margin: 0 auto;
    max-width: 800px;
}
.bnr_tver img {
    box-shadow: 0 0 10px #4d869e;
}
.tver_wrap .limit_text {
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    margin: 12px auto 0;
}
.tver_wrap .limit_text small {
    font-size: 16px;
    font-weight: normal;
}


@media not screen and (min-width: 768px) {
	.top__bg::before {
		background: url(/sp/uchiwake_society/images/bg_sp.jpg) no-repeat top center / cover;
	}


/* =============================================================
	about
============================================*/
.about__text01 {
	font-size: .9em;
	line-height: 1.7em;
}

.about__text01 .red {
	font-size: 1.2em;
}

.about__streaming {
	display: block;
	margin: var(--gap_64px) auto var(--gap_80px);
}

.tver_area, .youtube_area {
	width: 80%;
	margin-inline: auto;
}

.tver_area {
	margin-bottom: var(--gap_48px);
}


.about__lieup {
	display: block;
}

.about__lieup > li {
	width: 80%;
	margin-inline: auto;
}

.about__lieup > li:not(:last-child) {
	margin-bottom: var(--gap_32px);
}


/* =============================================================
	spot
============================================*/
	.spot__contents--title {
		font-size: 1em;
	}

	.spot__contents--title.title02 {
		width: 75%;
	}

	.spot__contents--title .title_block {
		font-size: 1.2em;
	}

	.spot__contents--title .title_block.small {
		font-size: .9em;
	}

	.spot__contents:not(:last-of-type) {
		background: url(/sp/uchiwake_society/images/line_sp.png) no-repeat center bottom / 100% auto;
	}

	.spot__img02 {
		display: block;

	}

	.spot__img02 > li {
		width: 100%;
	}

	.spot__img02 > li:not(:last-child) {
		margin-bottom: var(--gap_48px);
	}









}