@charset "utf-8";

body {
	height: 100vh;
	margin: 0px;
	padding: 0px;
	color: #FFF;
	/*全体の文字色*/
	font-family: 'Quicksand', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	font-size: 1rem;
	/*文字サイズ*/
	font-weight: 300;
	line-height: 2;
	/*行間*/
	background: #000;
	/*背景色*/
	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
dt,
form,
figure,
form {
	margin: 0px;
	padding: 0px;
	font-weight: 700;
}

ul {
	list-style-type: none;
}

ol {
	padding-left: 40px;
	padding-bottom: 15px;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}

iframe {
	width: 100%;
}

h1 {
	font-size: 1.4rem;
}

@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	/*リンクテキストの色*/
	transition: 0.5s;
	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

a:hover {
	color: #ff4765;
	/*マウスオン時の文字色*/
	text-decoration: none;
	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;
	text-align: left;
	position: absolute;
	top: 0;

	/* background-color: #F00; */
}

/*ロゴ画像*/
#app-logo {
	margin-left: 16px;
}

#app-subtitle {
	font-family: 'Futura PT', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 16px;
}

#app-description {
	margin-top: 16px;
	font-family: 'Futura PT', sans-serif;
	font-weight: 400;
	font-size: 0.5rem;
	letter-spacing: 4px;
}

#app-store-nav {
	position: absolute;
	bottom: 18%;
	left: 0px;
	width: 100%;
	text-align: center;
}

#app-store-nav li {
	display: inline-block;
	margin: 0 1%;
}

#app-store-nav li a {
	text-decoration: none;
	display: block;
	text-align: center;
	width: 140px;
	color: #fff;
	border-bottom: 2px solid transparent;
	padding-bottom: 7px;
}

#app-store-nav li a img:hover,
.scroll a img:hover {
	transform: scale(1.2, 1.2);
	transition: 0.5s all;
}

#app-store-nav li a img:not(:hover),
.scroll a img:not(:hover) {
	transform: scale(1.0, 1.0);
	transition: 0.5s all;
}

.video-container {
	position: relative;
	width: 100%;
	height: auto;
	max-height: 100%;
	overflow: hidden;
}

.video-background {
	width: 100%;
	height: auto;
	display: block;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#main-view {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.full-width {
	width: 100%;
}

.half-width {
	width: 50%;
}

.width80 {
	width: 80%;
}

.full-height {
	height: 100%;
}

.half-height {
	height: 50%;
}

.pad16 {
	padding: 16px;
}

.pad32 {
	padding: 32px;
}

.fa-solid {
	margin-right: 16px;
}

footer {
	/* clear: both; */
	width: 100%;
	margin: 0;
	text-align: center;
	/* background: #374c55; */
	position: absolute;
	bottom: 0;
	color: #fff;
	font-size: 70%;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

dl {
	padding-left: 20px;
	margin-bottom: 15px;
}

dt {
	float: left;
	width: 16rem;
	letter-spacing: 0.1em;
}

/*記事設定*/
dd {
	padding-left: 16rem;
	/* float: left; */
}

@media screen and (max-width:480px) {
	dt {
		float: left;
		width: fit-content;
	}

	dd {
		float: left;
		padding-left: 0%;
	}

}

.ta1 caption {
	border: 1px solid #999;
	border-bottom: none;
	text-align: center;
	background: #dfdfdf;
	font-weight: bold;
	padding: 10px;
}

.ta1 th.tamidashi {
	width: auto;
	text-align: center;
	background: #dfdfdf;
}

.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}

.ta1,
.ta1 td,
.ta1 th {
	word-break: break-all;
	border: 1px solid #999;
	padding: 10px;
}

.ta1 th {
	text-align: center;
	width: 30%;
}

.scroll-show {
	display: block;
}

.scroll a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 30%;
	left: 35%;
	position: fixed;
	bottom: 16px;
}

.newicon {
	background: #F00;
	/*背景色*/
	color: #FFF;
	/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}

ol {
	padding: 0 20px 20px 42px;
}

@media screen and (max-width:800px) {
	header #logo img {
		width: 30%;
		left: 35%;
	}
}

@media screen and (max-width:480px) {
	header #logo img {
		width: 50%;
		left: 25%;
	}

	#container {
		width: 100%;
	}

	#contents h2 {
		font-size: 16px;
	}

	#contents h3 {
		font-size: 14px;
	}

	.list h4 {
		font-size: 16px;
	}

	ul.disc {
		padding: 0 0px 20px 35px;
	}

	ol {
		padding: 0 0px 20px 35px;
	}

}

.language-select {
	position: absolute;
	top: 12px;
	right: 16px;
	z-index: 10;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	top: 32px;
	right: 0;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	width: 96px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.flag-icon {
	width: 24px;
	height: 16px;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.dropdown-toggle img {
	margin-right: 8px;
}