@charset "utf-8";

/*--------------------------------------
    タイトル
--------------------------------------*/

#title {
	width: 90% ;
	max-width: 1400px;
	height: 250px;
	margin: 90px auto 0;
	position: relative;
}

#title h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(45px, 5.5vw, 65px);
	font-weight: normal;
	line-height: 1.3;
	letter-spacing: 0.08em;
	position: absolute;
	left: 0;
	bottom: 40px;
}

#title img.sub {
	width: 270px;
	height: 30px;
	position: absolute;
	left: 0.35%;
	bottom: 0;
}

@media screen and (max-width: 1024px) {
	#title {
	margin: 0 auto;
	}
	#title h2 {
	bottom: 32px;
	}
	#title img.sub {
	width: auto;
	height: 18px;
	}
}

/*--------------------------------------
    タイトル画像
--------------------------------------*/

#top_img {
	width: 100% ;
	height: 700px;
	margin: 70px 0 100px;
}

#top_img img{
	width: 100% ;
	height: 100%;
	object-fit: cover;
	object-position: 50% 100%;	
}

@media screen and (max-width: 1024px) {
	#top_img {
	height: 350px;
	margin: 50px 0 100px;
	}
}

/*--------------------------------------
    説明文
--------------------------------------*/

#cap {
	width: 90% ;
	max-width: 1400px;
	margin: 0 auto;
}

#cap h3  {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(20px, 4vw, 45px);
	font-weight: normal;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

#cap p  {
	line-height: 2;
	letter-spacing: 0.08em;
	margin: 40px 0 60px;
}

#cap img {
	width: 100% ;
	height: 550px;
	object-fit: cover;
	object-position: 50% 50%;
	margin: 0 0 100px;
}

@media screen and (max-width: 1024px) {
	#cap p  {
	margin: 30px 0 60px;
	}
	#cap img {
	height: auto;
	margin: 0 0 80px;
	}	
}

/*--------------------------------------
    料金
--------------------------------------*/

#price {
	width: 90% ;
	max-width: 1400px;
	margin: 0 auto 100px;
}

#price h4  {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(15px, 4vw, 35px);
	font-weight: normal;
	line-height: 1.3;
	letter-spacing: 0.08em;
	margin: 0 0 5px;
}

#price p  {
	line-height: 2;
	letter-spacing: 0.08em;
}

#price p.price  {
	line-height: 2;
	font-size: 20px;
	letter-spacing: 0.08em;
	margin: 0 0 0px;
}

#price p.price span  {
	font-family: 'Noto Serif JP', serif;
	font-size: 34px;
	font-style: italic;
}

@media screen and (max-width: 1024px) {
	#price p.price  {
	line-height: 1.5;
	font-size: 20px;
	letter-spacing: 0.08em;
	margin: 10px 0 0;
	}
}

/*--------------------------------------
    ギャラリー
--------------------------------------*/

#gallery {
	width: 100% ;
	background: #333;
	color: #fff;
}

#gallery .box {
	width: 90% ;
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 0;
}

#gallery .box h3  {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(20px, 4vw, 45px);
	font-weight: normal;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

/* グリッド */

#gallery .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 40px 2px 0;
}

#gallery .grid .item {
	text-align: left;
	background:rgba(255,255,255,1);
}

#gallery .grid .item img {
	width: 100%;
	height: auto;
}

#gallery .grid h5 {
	font-size: 22px;
	font-weight: bold;
	color: #f44272;
	padding: 0.8em 10px 0;
}

#gallery .grid h6 {
	font-weight: bold;
	padding: 0 10px 0;
	line-height: 1.2;
}

@media screen and (max-width: 580px) {
	.grid h5 {
	line-height: 1.2;
	margin: 5px 0;
	}
	#gallery .grid_area {
		padding: 20px 10px;
	}
	#gallery .grid {
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}