﻿* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	scroll-behavior: smooth;
}

.wrap {
	max-width: 480px;
	margin: auto;
}

video {
	width: 100%;
}

.twitter {
	padding: 0 20px;
	margin: auto;
}

.twitter_box {
	height: 300px;
	overflow: scroll;
}

.youtube_box {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.youtube_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn_group {
	position: fixed;
	bottom: 10px;
	right: 5%;
	z-index: 9999;
}
.btn2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #333;
	border-radius: 10px;
	text-decoration: none;
	transition: 0.1s;
	filter: drop-shadow(2px 3px 3px rgba(255, 255, 255, 0.2));
}
.btn2::before {
	content: "";
	width: 6px;
	height: 6px;
	border: 3px solid;
	border-color: #fff transparent transparent #fff;
	transform: rotate(45deg);
	margin-top: 2px;
}
.btn2::after {
	content: "TOP";
	color: #fff;
	font-weight: bold;
	font-size: 13px;
}
.btn2:hover {
	filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.2));
}


/*トップメニュー設定*/
.shadows {
	filter: drop-shadow(4px 4px 2px rgba(255, 255, 255, 0.2));
}
.shadows:hover {
	transition: all 0.3s ease-in-out;
	filter: brightness(130%);
}

#menu {
	position: fixed;
	max-width: 480px;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.3);
	padding: 5px;
	border-bottom: 8px solid #d5c6b8;
	border-right: 8px solid #d5c6b8;
	z-index: 9999;
}

@media screen and (max-width: 960px) {
	.btn_group {
		bottom: 8%;
	}
}