@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;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin: 60px auto;
}

.slider img {
    width:30vw;  /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/* ----------------------------------------- */

/* ここからメインページ */
main{
	margin: 50px auto 30px;
}

/* ページリンク設定 */
#page-link{
	display: flex;
	justify-content: center;
	padding: 20px;
	margin-bottom: 50px;
  }
  
  #page-link li{
	list-style: none;
  }
  
  #page-link li a{
	color: #4d4c61;
	padding:0 20px;
	text-decoration: none;
  }
  
  #page-link li a::before{
	content:'▼';
	font-size:0.8rem;
	padding:0 10px 0 0;
	color: #927f89;
  }
  /* --------------------------- */


#con1 section, #con2 section{
	/* border-bottom: double 3px #914C70; */
	padding-bottom: 40px;
}
section{
	width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr)) ;
	margin: 0 auto 10px auto;
}
main .title{
	width: 70%;
	color: #4D2A52;
	font-size: 1.7rem;
	margin: 20px auto;
	background: linear-gradient(transparent 70%, #d6b845 70%);
}
main .title:first-letter {
	font-size: 2em;
	color: #914c70;
  }

main h4{
	font-family: 'Zen Antique Soft';
	color: #4D2A52;
	font-size: 1.2rem;
	border-bottom: dotted #4D2A52;
	margin-top: 0;
	padding-bottom: 5px;
}
main p{
    text-align: right;
	font-family: 'Zen Antique Soft';
	font-size: 1rem;
	padding-top: 5px;
	margin-bottom: 5px;
}
select{
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
	background-color: #f7efe9;
	width: 60px;
	font-size: 0.8rem;
	margin-top: -5px;
	padding: 0 5px 2px 0;
	text-align: center;
	border: solid 1px #c6ae4a;
}
.tag{
	/* width: 90%; */
	text-align: center;
	color: #fff;
	margin-top: 5px;
	padding: 5px;
	font-weight: lighter;
	font-size: 0.9rem;
	background-color: #b32425;
	border-radius: 3px;
}
.coment{
	position: absolute;    /*　絶対位置指定 */
	opacity: 0;     /* コメントを表示しない */
	top: 10px;
	left: 10px;
	width: 200px;
	height: 200px;
	padding: 60px 14px 0 14px;
	color: #7c6262;
}
.item{
	position: relative;
    width: 220px;
    padding: 10px;
    margin: 0 auto 30px auto;
}
.item img{
	width: 200px;
	opacity: 1;
	transition: .3s ease-out;
}
.item:hover .coment{
	opacity: 1;     /*コメントを表示*/
	background-color: rgba(255, 255, 255, 0.7);
}
/*==================================================
ふわっ
===================================*/

/* 下から */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
.fadeUpTrigger{
		opacity: 0;
	}


/* スマホ設定 */
@media (max-width:640px){

	.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
		width:94%;
		margin: 120px auto 10px auto;
	}
	
	.slider img {
		width:62vw;  /*スライダー内の画像を60vwにしてレスポンシブ化*/
		height:auto;
	}

	/* ------------------ */

	#page-link li a{
		padding:0 10px;
		text-decoration: none;
	  }
	#page-link li a::before{
		font: size 0.7em;
		padding:0 10px 0 0;
	  }

	main .title{
		width: 350px;
		color: #4D2A52;
		font-size: 1.4rem;
		margin: 20px auto;
		background: linear-gradient(transparent 70%, #d6b845 70%);
	}
	main .title:first-letter {
		font-size: 1.5em;
		color: #914c70;
	  }

	.item{
		margin-bottom: 5px;
	}
	.item:active .coment{
		opacity: 1;
		background-color: rgba(255, 255, 255, 0.5);
	}

	/*アコーディオン全体*/
	.accordion-area{
    	margin:0 auto;
	}

	/*アコーディオンタイトル*/
	.title {
		width: 350px;
		position: relative;  /*+マークの位置基準とするためrelative指定*/
    	cursor: pointer;
    	font-size:1rem;
    	font-weight: normal;
    	padding: 3% 3% 3% 30px;
    	transition: all .5s ease;
		margin: 5px auto 5px 16px;
	}

	/*アイコンの＋と×*/
	.title::before,
	.title::after{
    	position: absolute;
    	content:'';
    	width: 15px;
    	height: 2px;
    	background-color: #b32425;
    }
	.title::before{
    	top:48%;
    	left: 5px;
    	transform: rotate(0deg);
    }
	.title::after{    
    	top:48%;
    	left: 5px;
    	transform: rotate(90deg);
	}

	/*　closeというクラスがついたら形状変化　*/
	.title.close::before{
		transform: rotate(45deg);
	}

	.title.close::after{
		transform: rotate(-45deg);
	}

	/*アコーディオンで現れるエリア*/
	.box {
    	display: none; /*はじめは非表示*/
		margin: auto;
    	padding: 3%;
	}
}

/* *{border: 1px solid #000;} */