@charset "UTF-8";

/* MOVIE PAGE
------------------------------------------- */
[v-cloak] {
	display:none;
}

body {
	background-color: #000;
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Roboto, '游ゴシック Medium', meiryo, sans-serif;
	color: #000;
	font-size: 13px;
	font-size: 1.3rem;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	background-repeat: no-repeat;
}

.oswald {
	font-family: 'Oswald', sans-serif;
}

/* messages setting
------------------------------------------- */
.msg-wrap {
	display: none;
	width: 100%;
	height: 100vh;
}

.msg-container {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background: #00000040;
	height: 100vh;
	width: 30%;
	padding: 2rem 1.5rem;
	z-index: 30;
}

@media screen and (max-width: 768px) {
	.msg-container {
		height: 27%;
		width: 100%;
		bottom: 0;
		top: auto;
		padding: 1rem;
	}
}

@media screen and (max-width: 480px) {
	.msg-container {
		height: 32%;
	}
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
	.msg-container {
		height: 100vh;
		width: 30%;
		top: 0;
		bottom: auto;
	}
}

.msg-content {
	color: #fff;
	word-wrap: break-word;
	white-space: normal;
	height: 95%;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow-y: auto;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}

.msg-content:-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}

@media screen and (max-width: 480px) {
	.msg-content {
		height: 70%;
	}
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
	.msg-content {
		height: 89%;
	}
}

.button-area {
	width: 100%;
}

.speech-bubbles {
	fill:#fff;
}
.dual-1,.dual-2 {
	fill:none;
}

.dual-1 {
	stroke:#fff;
	stroke-miterlimit:10;
	stroke-width:2px;
}

.dual-close-arrow {
	fill:none;
	stroke:#fff;
	stroke-miterlimit:10;
	stroke-width:2px;
}

.btn-square {
	display: flex;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	width: 155px;
	height: 40px;
	padding: 0.5rem;
	text-decoration: none;
	color: #fff;
	z-index: 30;
	font-size: .8rem;
}

.btn-square.btn-square-left {
	position: fixed;
	top: 17px;
	left: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 5px;
	cursor: pointer;
}

.btn-square.btn-square-left.btn-back {
	top: unset;
	bottom: 92px;
	width: 45px;
}

.btn-square.btn-square-right {
	position: fixed;
	top: 17px;
	right: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 0;
}

.btn-square.dual-active {
	width: 45px;
}

.dual-button {
	display: flex;
}

.dual-button.dual-close {
	display: none;
}

/*.btn-square:active {
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	border-bottom: none;
}*/

.image-box {
	width: 24px;
	height: 14px;
	margin-right: 1rem;
}

.image-box-s {
	width: 14px;
	height: 14px;
}

.close-btn {
	font-size: 10px;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 19px;
	right: 19px;
	cursor: pointer;
	z-index: 40;
}

.close-btn::before {
	position: absolute;
	top: -4px;
	left: 8px;
	width: 4px;
	height: 28px;
	content: "";
	background-color: #e6e6e6;
	transform: rotate(45deg);
}

.close-btn::after {
	position: absolute;
	top: 8px;
	left: -4px;
	width: 28px;
	height: 4px;
	content: "";
	background-color: #e6e6e6;
	transform: rotate(225deg);
}

.msg-text-area {
	padding-top: .5rem;
	padding-bottom: .7rem;
}

@media screen and (max-width: 768px) {
	.msg-text-area {
		font-size: .8rem;
	}
}

.msg-text {
	margin: 0;
}

.msg-name-text {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5em;
}

@media screen and (max-width: 768px) {
	.msg-name-text {
		font-size: .6rem;
	}
}

.send-area {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
}

.send-message {
	resize: none;
	width: calc(100% - 75px);
	line-height: 1.6rem;
	height: 48px;
	padding: 3px 6px 0px 16px;
	border-width: 0;
	border-radius: 5px;
	text-align: left;
	font-size: .8rem;
	background: #FFF;
	color: #000;
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
	.send-message {
		width: calc(100% - 48px);
		height: 38px;
		padding: 3px 6px 0px 12px;
	}
}

.send-btn {
	width: 72px;
	height: 48px;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	background: #000;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
	.send-btn {
		width: 48px;
		height: 38px;
		line-height: 2.4;
		font-size: 1.5rem;
	}
}

.fa-1-5 {
	font-size: 1.5em;
}

.latest-btn {
	width: 35px;
	height: 35px;
	background: rgba(23, 35, 34, 0.89);
	border-radius: 50%;
	text-align: center;
	color: #fff;
	cursor: pointer;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 26px;
	bottom: 95px;
}

.latest-btn.active {
	background: rgba(52, 205, 201, 0.89);
}

/* vimeo setting
------------------------------------------- */

#video iframe {
	position: fixed;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

/* iphone Safari barにミュート解除ボタンが隠れる対策 */
@media (max-width:567px){
	#video iframe {
		padding: 20% 0;
	}
}

#video iframe body {
	background-color: #000;
}

.black-belt {
	background-color: #000;
	width: 100%;
	height: 100vh;
	z-index: -10;
	position: sticky;
}

/* video setting
------------------------------------------- */

.video-area {
	display: none;
	width: 75%;
	z-index: 20;
	position: fixed;
	overflow: hidden;
	top: 0%;
	left: 40%;
	/*background-color: #000;*/
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	_:lang(x)::-internal-media-controls-overlay-cast-button, .video-area {
		width: 75%;
	}

	@media screen and (min-width: 1500px) {
		_:lang(x)::-internal-media-controls-overlay-cast-button, .video-area {
			width: 70%;
		}
	}
}

.video-area video {
	/*background-color: #000;*/
	/*position: fixed;*/
	/*position: -webkit-sticky;
	position: sticky;*/
	/*position: fixed;*/
	/*top: 0;
	left: 0;*/
	/*z-index: 20;*/
	width: 100%;
	height: 100%;
	/*min-height: 100%;
	min-height: 100vh;
	min-width: 100%;
	min-width: 75vw;*/
}

.play-area .button-defalut {
	position: fixed;
	border-radius: 5px;
	z-index: 30;
	width: 6.5em;
	height: 4em;
	bottom: 7%;
	left: 1%;
	background: rgba(0, 0, 0, 0.7);
	border-width: 0;
	color: #fff;
	cursor: pointer;
}

.play-area.vertical .button-defalut {
	bottom: 36%;
}

.button-defalut i {
	font-size: 24px;
}

.button-defalut:hover {
	background: rgba(52, 205, 201, 0.89);
}

.play-area {
	position: relative;
	display: none;
}

