@charset "UTF-8";

.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;

	/* titleを上下左右中央 */
	display: flex;
	align-items: center;
	justify-content: center;

	/* ブラーのはみ出し防止 */
	overflow: hidden;
}

/* 背景画像 */
.hero::before {
	content: "";
	position: absolute;
	inset: -10px;

	background-image:
		linear-gradient(
			rgba(80, 77, 145, 0.7),
			rgba(80, 77, 145, 0.7)
		),
		url("../../images/takumi/hero.jpg");

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	/* 背景だけぼかす */
	filter: blur(5px);

	z-index: 0;
}


/* タイトルエリア */
.hero .title {
	width: min(800px, 90%);
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* タイトルエリア */
.hero .title figure {
	width: 50%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

/* メインコピー */
.hero h2 {
	 font-size: clamp(2rem, 3vw, 3.5rem);
    font-family: "Noto Serif JP", serif;text-align: center;
	color:#fff;
	font-weight: 400;
	margin-bottom: 20px;
}

.comming {
	border: 2px solid #fff;
	padding: 40px;
	box-sizing: border-box;
	color:#fff;
}
.comming h3 {
	font-family: "Google Sans", sans-serif;
	font-size: clamp(3rem, 3vw, 5rem);
	text-align: center;
	font-weight: 400;
	letter-spacing: 0.3rem;
}

.hero p {
color:#fff;
}


@media screen and (max-width: 834px){
	
.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;

	/* titleを上下左右中央 */
	display: flex;
	align-items: center;
	justify-content: center;

	/* ブラーのはみ出し防止 */
	overflow: hidden;
}

/* 背景画像 */
.hero::before {
	content: "";
	position: absolute;
	inset: -10px;

	background-image:
		linear-gradient(
			rgba(80, 77, 145, 0.7),
			rgba(80, 77, 145, 0.7)
		),
		url("../../images/takumi/hero.jpg");

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	/* 背景だけぼかす */
	filter: blur(5px);

	z-index: 0;
}


/* タイトルエリア */
.hero .title {
	width: min(800px, 90%);
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* タイトルエリア */
.hero .title figure {
	width: 60%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

/* メインコピー */
.hero h2 {
	 font-size: clamp(1.8rem, 3vw, 3.5rem);
    font-family: "Noto Serif JP", serif;text-align: center;
	color:#fff;
	font-weight: 400;
	margin-bottom: 20px;
}

.comming {
	border: 2px solid #fff;
	padding: 20px;
	box-sizing: border-box;
	color:#fff;
}
.comming h3 {
	font-family: "Google Sans", sans-serif;
	font-size: clamp(2rem, 3vw, 5rem);
	text-align: center;
	font-weight: 400;
	letter-spacing: 0.3rem;
}
	

}