@charset "utf-8";

/*=============================================
	
	タイトル枠
	
==============================================*/
#top_title_wrap {
	text-align: center;
	color: #FFF;
	position: relative;
	margin: 0 0 0;
}
#top_title_wrap .title_img {
	position: relative;
}
#top_title_wrap .title_img:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #000;
	opacity: 0.3;
	display:block;
}
#top_title_wrap h3 {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	font-size: 3.6em;
	line-height: 1.0em;
	transform: translate(-50%, -50%);
}
#top_title_wrap p.sub {
	position: absolute;
	left: 50%;
	top: 60%;
	width: 100%;
	font-size: 1.1em;
	line-height: 1.0em;
	transform: translate(-50%, -50%);
}

#top_title_wrap.noimage {
	background: #F1EEED;
	height: 30vh;	
}
#top_title_wrap.noimage h3 {
	color: #333;
}
#top_title_wrap.noimage p.sub {
	color: #333;
	top: 65%;
}

@media print, screen and (min-width: 769px) {
	#top_title_wrap {
		padding: 0 0;
		text-align: center;
		margin: 0 0 0;
		max-height: 560px;
		overflow: hidden;
	}
	#top_title_wrap h3 {
		font-size: 56px;
	}
	#top_title_wrap p.sub {
		font-size: 14px;
	}
	
	#top_title_wrap.noimage {
		background: #F1EEED;
		height: 50vh;	
	}
	#top_title_wrap.noimage h3 {
	}
	#top_title_wrap.noimage p.sub {
		top: 65%;
	}

}

/*=============================================
	
	ドレスショップ
	
==============================================*/
#dressshop_wrap {
	padding: 5em 0 3em;
	text-align: center;
	background: #F1EEED;
}
#dressshop_wrap .title {
	font-size: 2.6em;
	margin: 0 0 0.8em;
}
#dressshop_wrap h3 {
	font-size: 2.0em;
	margin: 0 0 1em;
}
#dressshop_wrap.bg_title:before {
	top: 10vh;
	content: "Dress Shop";
	color: #FFF;
	font-size: 8em;
	text-align: center;
}
#dressshop_wrap .pics{
	margin: 0 0 1.6em;
}
#dressshop_wrap .pics li {
	margin: 0;
	padding: 0;
}
#dressshop_wrap .body {
	font-size: 1.1em;
	line-height: 2.2em;
	margin: 0;
	text-align: left;
}
@media print, screen and (min-width: 769px) {
	#dressshop_wrap {
		padding: 80px 0 30px;
	}
	#dressshop_wrap .title {
		font-size: 48px;
		margin: 0 0 30px;
	}
	#dressshop_wrap h3 {
		font-size: 28px;
		margin: 0 0 30px;
	}
	#dressshop_wrap.bg_title:before {
		top: 90px;
		font-size: 210px;
	}
	#dressshop_wrap .pics{
		margin: 0 0 30px;
	}
	#dressshop_wrap .pics li {
		float: left;
		width: 50%;
	}
	#dressshop_wrap .body {
		font-size: 13px;
		text-align: center;
	}
	

}

/*=============================================
	
	ドレス カテゴリ 詳細
	
==============================================*/
.dress_category {
	width: 100%;
	margin: 0 auto;
	padding: 3em 0;
}
.dress_category .title {
	text-align: center;
	font-size: 2em;
	margin-bottom: 0.6em;
}
.dress_category h3 {
	text-align: center;
	font-size: 1em;
	margin-bottom: 1em;
}
.dress_category .attention {
	text-align: center;
	font-size: 0.9em;
	margin-bottom: 1.3em;
	color: #999;
}

@media print, screen and (min-width: 769px) {
	.dress_category {
		width: 90%;
		margin: 0 auto;
		padding: 50px 0;
	}
}

/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
columns: 4;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
margin:0;
}

.gallery li {
    margin-bottom: 12px;/*各画像下に余白をつける*/
list-style:none;
	overflow: hidden;
	cursor: pointer;	
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
	transition-duration: 0.5s;

}

.gallery li:hover img{
	transform: scale(1.2);
	transition-duration: 0.5s;
}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery{
	columns: 2;
	}	
}


/*=============================================
	
	ドレス カテゴリ リスト
	
==============================================*/
.category_list {
	width: 90%;
	margin: 0 auto;
	padding: 3em 0;
	border-bottom: 1px solid #CCC;
	border-top: 1px solid #CCC;
}
.category_list h4 {
	text-align: center;
	font-size: 1.6em;
	margin-bottom: 1em;
}
.category_list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.category_list ul::after {
	display: block;
	content:"";
	width: 31%;
}
.category_list ul li {
	text-align: center;
	width: 31%;
	line-height: 1.2em;
	margin-bottom: 1.2em;
}
.category_list ul li a {
	color: #333;
}
.category_list ul li img {
	border-radius: 50%;
	margin-bottom: 0.6em;
	width: 80%;
}
@media print, screen and (min-width: 769px) {

	.category_list {
		width: 960px;
		padding: 40px 0;
	}
	.category_list h4 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.category_list ul::after {
		width: 11%;
	}
	.category_list ul li {
		width: 11%;
		margin-bottom: 10px;
	}
	.category_list ul li a {
		color: #333;
	}
	.category_list ul li img {
		margin-bottom: 0.6em;
		width: 80%;
	}


}

/*=============================================
	
	トップページ ドレス カテゴリ リスト
	
==============================================*/
.index_category_list {
	width: 90%;
	margin: 0 auto;
	padding: 3em 0;
}
.index_category_list .title {
	text-align: center;
	font-size: 2em;
	margin-bottom: 0.6em;
}

.index_category_list h4 {
	text-align: center;
	font-size: 1em;
	margin-bottom: 2em;
}
.index_category_list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index_category_list ul::after {
	display: block;
	content:"";
}
.index_category_list ul li {
	text-align: center;
	width: 100%;
	line-height: 1.6em;
	margin-bottom: 2.5em;
	font-size: 1.4em;
}
.index_category_list ul li a {
	color: #333;
}
.index_category_list ul li a .pic {
	margin-bottom: 0.5em;
	overflow: hidden;
	cursor: pointer;	
}
.index_category_list ul li a .pic img {
	width: 100%;
	transition-duration: 0.5s;
}
.index_category_list ul li a .pic:hover img {
	transform: scale(1.2);
	transition-duration: 0.5s;
}
@media print, screen and (min-width: 769px) {

	.index_category_list {
		width: 90%;
		max-width: 1280px;
		min-width: 960px;
		padding: 70px 0 50px;
	}
	.index_category_list .title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	
	.index_category_list h4 {
		font-size: 12px;
		margin-bottom: 30px;
	}
	.index_category_list ul {
	}
	.index_category_list ul::after {
		display: block;
		width: 32%;
	}
	.index_category_list ul li {
		width: 32%;
		margin-bottom: 30px;
		font-size: 16px;
	}
	.index_category_list ul li a {
	}
	.index_category_list ul li a .pic {
		margin-bottom: 0.8em;
		overflow: hidden;
		cursor: pointer;	
	}
	.index_category_list ul li a .pic img {
		width: 100%;
		transition-duration: 0.5s;
	}
	.index_category_list ul li a .pic:hover img {
		transform: scale(1.2);
		transition-duration: 0.5s;
	}
}

/*=============================================
	
	その他ドレス 問い合わせ
	
==============================================*/
.announce {
	background: #EDEAE9;
	text-align: center;
	padding: 2em 0;
	margin: 0 auto 2em;
	width: 90%;
}
.announce a {
	color: #887249;
	text-decoration: underline;
}
@media print, screen and (min-width: 769px) {
	.announce {
		padding: 25px 0;
		margin: 0 auto 40px;
		width: 960px;
		font-size: 14px;
	}
}

