@charset "utf-8";
/* CSS Document */

html,body{
	margin: 0;
	padding: 0;
}
/*-- Top --*/
.img{
	display: flex;
	justify-content: center;	/*PCのみ表示*/
	padding: 0px 10px 150px 10px;
	gap: 3px;
}
.About{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 80%;
	height: 60vh;
	margin: 0 auto;
	padding: 20px 20px 150px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.0em;
	color: #fff;
}
.Me{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 80%;
	height: 60vh;
	margin: 0 auto;
	padding: 20px 20px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.0em;
	color: #fff;
}
h4{
	font-size: 1.3em;
	border-bottom: 1px solid #fff;
	width: 80%;
	padding-bottom: 10px;
}
/*-- スマホサイズ（768px以下） --*/
@media screen and (max-width: 768px){
	.img{
		display: none;	/*スマホ非表示*/
	}
	.About{
		font-size: 0.9em;
	}
	.Me{
		font-size: 0.9em;
	}
	.Me img{
		width: 60%;
		height: auto;
	}
	h4{
		font-size: 1.2em;
	}
}

/*-- Gellary --*/
html,body{
	margin: 0;
	padding: 0;
}
h2{
	margin: 0 auto;
	padding: 30px 60px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.5em;
	letter-spacing: 0.05em;
	color: #fff;
}
.Item{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 50px auto;
	width: 60%;
}
.itemImg{
	display: flex;
	justify-content: center;
	gap:20px;
	flex-wrap: wrap;
}
.Item img{
	width: 280px;
	height: 280px;
	object-fit: cover;
	border-radius: 10px;
}
h3{
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.3em;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
	width: fit-content;
}
/*-- スマホサイズ（768px以下） --*/
@media screen and (max-width: 768px){
	h2{
		font-size: 1.2em;
		padding: 10px 30px;
	}
	.Item{
		width: 80%;
		margin: 30px auto;
	}
	itemImg{
		flex-direction: column;
		align-items: center;
		gap: 10px
	}
	.Item img{
		width: 80%;
		height: auto;
	}
	h3{
		font-size: 1.1em;
		width: auto; 
	}
}

/*-- Contact --*/
html,body{
	margin: 0;
	padding: 0;
}
.form-container{
	margin: 50px auto;
	padding: 30px;
	width: 80%;
	background: #000;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.sub{
	text-align: center;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.2em;
	letter-spacing: 0.05em;
	color: #fff;
	margin: 50px;
}
.note{
	text-align: center;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.0em;
	letter-spacing: 0.05em;
	color: #fff;
	margin: 30px;
}
.form{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.form label{
	width: 30%;
	text-align: right;
	padding-right: 10px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.0em;
	color: #fff;
}
input[type="text"],
input[type="email"],
textarea{
	width: 40%;
	padding: 10px;
	border: 1px solid #808080;
	background: #dcdcdc;
	color: #000;
	font-size: 1em;
	outline: none;
}
textarea{
	resize: vertical;
}
.radio{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
	/*width: 60%;*/
}
.radio input[type="radio"]{
	margin-right: 10px;
	accent-color: #800000;
}
.radio label {
  color: #fff;
  white-space: nowrap;  
  cursor: pointer;
}
.Btn{
	text-align: center;
	margin-top: 50px;
}
.Btn input[type="submit"]{
	background: #fff;
	color: #000;
	padding: 10px 30px;
	border: none;
	border-radius: 20px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 500;
  	font-style: normal;
	cursor: pointer;
}
.Btn input[type="submit"]:hover{
	background: #dcdcdc;
}
/*-- スマホサイズ（768px以下） --*/
@media screen and (max-width: 768px){
	.form-container{
		width: 80%;
		padding: 25px;
	}
	.form{
		flex-direction: column;
		align-items: flex-start;
	}
	.form label{
		width: 100%;
		text-align: left;
		padding-right: 0;
		margin-bottom: 10px;
	}
	input[type="text"],
	input[type="email"],
	textarea{
		width: 100%;
	}
	.radio{
		width: 100%;
		display: inline-flex;
		align-items: center;
		gap: 5px;
	}
	.radio input[type="radio"]{
		margin: 0;
		width: 1em;
		height: 1em;
		transform: translateY(-3px);
	}
	.radio label{
		line-height: 1;
	}
	.Btn input[type="submit"]{
		width: 100%;
		padding: 15px;
	}
}