@charset "utf-8";
/* CSS Document */
html,body{
	margin: 0;
	padding: 0;
}
/*-- header共通 --*/
header{
	width: 100%;
	height: auto;
	background-image: url(../img/top.jpg);
	background-size: cover;
}
.title{
	margin: 0 auto;
	text-align: center;
}
.title .atelier{
	display: block;
	font-family: "Imperial Script", cursive;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.8em;
	letter-spacing: 0.1em;
	color: #800000;
}
/*-- スマホサイズ（768px以下） --*/
@media screen and (max-width: 768px){
	.title .atelier{
		font-size: 1.2em;
		letter-spacing: 0.05em;
		text-align: center;
	}
}
.title .angelica{
	padding-bottom: 20px;
	display: block;
	font-family: "Imperial Script", cursive;
  	font-weight: 400;
  	font-style: normal;
	font-size: 2.5em;
	letter-spacing: 0.1em;
	color: #800000;
}
/*-- スマホサイズ（768px以下） --*/
@media screen and (max-width: 768px){
	.title .angelica{
		font-size: 1.8em;
		letter-spacing: 0.05em;
		text-align: center;
	}
}

/*-- nav共通 --*/
nav{
	margin: 0;
	padding: 20px;
	/*position: relative;*/
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	font-family: "Kaisei Decol", serif;
	font-size: 1.0em;
  	font-weight: 400;
  	font-style: normal;
}
nav ul{
	list-style: none;
}
nav ul a{
	text-decoration: none;
	color: #800000;
}
nav .menu{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}
.menu a {
  text-decoration: none;        
  color: #800000;                   
  position: relative;            
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;                  
  width: 0;
  height: 2px;                   
  background-color: #4B4848;        
  transition: width 0.3s ease;   
}

.menu a:hover::after {
  width: 100%;                   
}

.SNS {
  position: fixed;         
  bottom: 20px;            
  right: 20px;             
  display: flex;
  flex-direction: column;  
  gap: 10px;               
  z-index: 1000;           
}
.SNS img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s;
}
.SNS img:hover {
  transform: scale(1.1); 
}
/* -- ContactページSNSアイコン -- */
body.Contact .SNS {
  position: static;    
  flex-direction: row; 
  justify-content: center;
  margin: 10px 0;
}

/*-- 背景共通 --*/
.Bg{
	margin: 0;
	padding: 0;
	width: 100%;
	background-image: url("../img/bg.jpg");
}

/*-- footer共通 --*/
.footer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding-top: 250px;
	font-family: "Kaisei Decol", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 0.8em;
	color: #fff;
}
