@charset "utf-8";

/*============================
背景
============================*/
body {
	background-image: url(../img/mv_pc.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	height: 100vh;
	font-family: "Noto Serif JP", serif;
}

main {
	height: 100svh;
	position: relative;
}

/*============================
ロゴ
============================*/
.logo {
	width: 1.50rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	@media screen and (max-width: 640px) {
		width: 0.92rem;
	}
}

/*============================
テキスト
============================*/
.txt_box {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0.50rem;
	text-align: center;
	color: #FFF;
	@media screen and (max-width: 640px) {
		bottom: 0.40rem;
	}
	.en_txt {
		font-family: "Bellefair", serif;
		font-size: 0.26rem;
		letter-spacing: 0;
	}
	.txt {
		padding: 0.15rem 0;
		font-size: 0.14rem;
		font-weight: 500;
		@media screen and (max-width: 640px) {
			font-size: 0.11rem;
			line-height: 1.81;
		}
	}
	.list {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 0.30rem;
		.link {
			a {
				font-family: "Bellefair", serif;
				font-size: 0.16rem;
				color: #FFF;
				@media screen and (max-width: 640px) {
					font-size: 0.14rem;
				}
				&:hover {
					opacity: 0.7;
				}
			}
			&.-insta {
				a::before {
					content: "";
					width: 0.16rem;
					height: 0.16rem;
					display: inline-block;
					background-image: url(../img/icon_isnta.svg);
					background-position: center;
					background-repeat: no-repeat;
					background-size: contain;
					margin-right: 0.05rem;
					position: relative;
					top: 0.05rem;
					@media screen and (max-width: 640px) {
						width: 0.13rem;
						height: 0.13rem;
					}
				}
			}
			&.-mail {
				a::before {
					content: "";
					width: 0.17rem;
					height: 0.16rem;
					display: inline-block;
					background-image: url(../img/icon_mail.svg);
					background-position: center;
					background-repeat: no-repeat;
					background-size: contain;
					margin-right: 0.05rem;
					position: relative;
					top: 0.04rem;
					@media screen and (max-width: 640px) {
						width: 0.13rem;
						height: 0.13rem;
						top: 0.03rem;
					}
				}
			}
		}
	}
}