@charset "UTF-8";

/* 基本色 */
:root{
	--main-color: #efece1;
	--accent-color:#914c70;
	--accent-color: #f0d3bc;
	--accent-color: #4d2a52;
	--accent-color: #4d4c61;
	--accent-color: #b32425;
	--accent-color: #c6ae4a;
}


#top{
	background-color: #EFECE1;
	min-height: 100vh;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration:5s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
@keyframes fadeInAnime{
	0% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 1;
	}
  }
/* スライドショー */
h5{
	height: 68%;
	position: absolute;
	top:65%;
	left:70%;
	transform: translate(-50%,-50%);
	padding: 10px;
	margin: 0;
	font-size:2.2rem;
	color: #fff;
	writing-mode: vertical-rl;
	z-index: 5;
	font-family: 'Zen Antique';
	font-family: "HG正楷書体-PRO";
	opacity: 0.9;
	line-height: 4rem;
	text-align: justify;
	text-shadow: 2px 2px 2px #000;
}

#slideshow{
	position: relative;

	min-height: 100vh;
}
#slideshow span{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	filter: opacity(0%);
	width: 100%;
}
#slideshow span.active{
	z-index: 3;
	filter: opacity(100%);
}
#slideshow span.last-active{
	z-index: 2;
}
span{
	background-size: cover;
	height: 100vh;
}
.ph1{
	background-image: url(images/slidshow_1_store.jpg);
}
.ph2{
	background-image: url(images/slidshow_2_spring.png);
}
.ph3{
	background-image: url(images/slidshow_4_fall.png);
}
.ph4{
	background-image: url(images/slidshow_5_winter.png);
}


/* ------------------------------*/

/* ここからメインページ */

main{
	width:100%=768px;
	margin: auto;
}
#con1 h3, #con2 h3, #con3 h3, #con4 h3{
	font-weight: bold;
}

/* お知らせ */
#con1{
	width: 638px;
	margin: 40px auto 50px auto;
	border-bottom: dotted 2px #4d2a52;
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-template-rows: repeat(3, auto);
}
#con1 p{
	font-size: 0.9rem;
}
.news{
	color: #4D2A52;
	border: none;
	grid-column: 1/2;
	grid-row: 1/3;
	text-align: left;
	margin-top: 15px;
	margin-left: 10px;
}
.con1-1,.con1-2,.con1-3{
	text-indent: -5.5rem;
	padding-left: 5.5rem;
	margin-left: 0;
	padding-top: 8px;
	line-height: 1.9rem;
}
.con1-1{
	grid-column: 2/5;
	grid-row: 1/2;
	text-align: left;
}
.con1-2{
	grid-column: 2/5;
	grid-row: 2/3;
	text-align: left;
}
.con1-3{
	grid-column: 2/5;
	grid-row: 3/4;
	text-align: left;
	padding-bottom: 20px;
}

/* 下から */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
	.fadeUpTrigger{
		opacity: 0;
	}
	/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
	animation-delay: 0.5s;
  }
  
  .delay-time1{  
	animation-delay: 1s;
  }
  
  .delay-time15{  
	animation-delay: 1.5s;
  }
  
	
/* ------------------------- */

article{
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	background-image: url(images/background_img5.png);
	background-size: cover;
	/* margin: auto; */
}
#con2 h3, #con3 h3{
	text-align: center;
	color: #4D2A52;
	background-color: #ffffff;
	border-top: double 4px rgb(77, 42, 82);
	border-bottom: double 4px #4D2A52;
	width: 165px;
	margin: 20px auto 30px auto;
	padding: 10px 0;
	font-size: 1.1rem;
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blurTrigger{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
	from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
	}
  
	to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
	}
  }
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .blurTrigger{
	  opacity: 0;
  }

/* ごあいさつ */
#con2 p{
	writing-mode: vertical-rl;
	text-align: left;
	line-height: 2.3rem;
	/* font-family: 'Yuji Syuku';
	font-family: "HG正楷書体-PRO"; */
	font-size: 1.2rem;
	font-weight: lighter;
	margin: auto auto 20px auto;
	padding: 20px 0 15px 0;
	/* animation-name:fadeInAnime;
	animation-duration:4s;
	animation-fill-mode:forwards;
	opacity:0; */
}
/*==================================================
ふわっ
===================================*/

/* 下から */

.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
.fadeInTrigger{
		opacity: 0;
	}

/* 商品紹介 */
#con3 {
	width: 638px;
	background-color: rgba(240, 211, 188,0.7);
	margin: 20px auto 50px auto;
	padding: 5px 0 20px 0;
	border-radius: 5px;
}
#con3 img{
	width: 180px;
	margin: 10px;
}
#con3 .con3-2{
	width: 130px;
	background-color: #914C70;
	border: solid 2px #EFECE1;
	border-radius: 10px;
	font-size: 1rem;
	margin: 30px auto 10px auto;
	padding: 7px 10px;
}
#con3 .con3-2 a{
	color: #efece1;
}
#con3 .con3-2:hover, .shopping:hover{
	opacity: 0.5;
}
/* FADE（ふわっと出る） */
.delay-time02{
animation-delay: 0.4s;
}
.delay-time04{
animation-delay: 0.6s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.shopping{
	width: 450px;
	margin: auto auto 20px auto;
    position: relative;
    padding: 8px;
    border-top: solid 2px #914C70;
    border-bottom: solid 2px #914C70;
	font-weight: lighter;
	color: #706269;
}
.shopping:before, .shopping:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #914C70;
}
.shopping:before {left: 10px;}
.shopping:after {right: 10px;}
.shopping p {
    margin: 0; 
    padding: 0;
}
-------------------------

/* アクセス */
#con4{
	width: 87%;
	margin: 20px auto;
}
#con4 h3{
	width: 30px;
	margin: 30px auto;
	color: #4D2A52;
	writing-mode: vertical-rl;
	text-align: center;
	border-right: double 4px #4D2A52;
	border-top: none;
	border-bottom: none;
	font-size: 1.2rem;
}
table{
	border-collapse: collapse;
}
#con4 table{
	margin: 10px auto;
}
th{
	padding: 13px 30px 10px 5px;
	margin: 0 5px 0 5px;
	color: #914C70;
	font-size: 1rem;
	text-align: left;
}
td{
	padding: 5px 10px 10px 0;
	text-align: left;
	font-size: 0.9rem;
	line-height: 2.1rem;
}
td, th{
	/* padding: 10px; */
	border-bottom: solid 0.2px #914c70;
}
iframe{
	display: block;
	width: 50%;
	height: 450px;
	margin: 20px auto;
}
/* ------------------------- */



/* スマホ設定 */
@media (max-width:640px){
	/* スライドショー設定 */
	h5{
		height: 60%;
		position: absolute;
		top:70%;
		left:60%;
		padding: 10px;
		margin: 0;
		font-size:2.0rem;
		z-index: 5;
		font-family: 'Zen Antique Soft';
		font-family: "HG正楷書体-PRO";
		opacity: 0.9;
		line-height: 4rem;
	}
	.ph1{
		background-image: url(images/slidshow_1_store_640.jpg);
	}
	.ph2{
		background-image: url(images/slidshow_2_spring_640.jpg);
	}
	.ph3{
		background-image: url(images/slidshow_4_fall_640.jpg);
	}
	.ph4{
		background-image: url(images/slidshow_5_winter_640.jpg);
	}
	.ph1, .ph2, .ph3, .ph4{
		background-position: center;
	}
	
	/* -------------------- */

	/* お知らせ */
	#con1{
		width: 85%;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, auto);
	}
	.news{
		text-align: left;
		padding-left: 5px;
		margin-left: 0;
		margin-bottom: 15px;
		border-left: solid 2px #4d2a52;
		grid-column: 1/2;
		grid-row: 1/2;
	}
	#con1, #con2, #con3 h3{
		font-size: 1.2rem;
	}
	.con1-1,.con1-2,.con1-3{
		width: 305px;
		margin: auto;
		text-indent: -5.6rem;
		padding-left: 5.6rem;
		padding-top: 5px;
		padding-bottom: 5px;
		font-size: 0.95rem;
	}
	.con1-1{
		grid-column: 1/2;
		grid-row: 2/3;
	}
	.con1-2{
		grid-column: 1/2;
		grid-row: 3/4;
	}
	.con1-3{
		grid-column: 1/2;
		grid-row: 4/5;
	}
	/* -------------------- */
	
	/* ごあいさつ */
	#con2 h3{
		margin: 0 auto 10px;
	}
	#con2 p{
		width: 335px;
		height: 415px;
		line-height: 1.6rem;
		padding-top: 10px;
		font-family: 'Yuji Syuku';
		font-family: "HG正楷書体-PRO";
	}
	/* -------------------- */

	/*　商品紹介 */
	#con3{
		width: 85%;
	}
	#con3 img{
		width: 60%;
		padding-left: 6px;
	}
	#con3 .con3-3{
		width: 230px;
		padding-top: 15px;
		padding-bottom: 0;
	}
	.shopping{
		width: 340px;
		padding-left: 15px;
	}
	/* -------------------- */
	
	/* アクセス */
	#con4 h4{
		width: 95px;
		margin-bottom: 0;
	}
	#con4 table{
		width: 90%;
		margin: auto;
	} 
	th{
		width: 30%;
		font-size: 0.9ren;
	}
	iframe{
		width: 80%;
		height: 350px;
	}
	/* -------------------- */
}


/* *{border: 1px solid #000;} */