@charset "utf-8";
/* CSS Document */
/*==================================================
 共通
===================================*/
body{
	overflow: hidden;
	margin: 0;
}
a{
	text-decoration: none;
}
li{
	list-style: none;
}
/*フォント*/
body{
	font-family: "Jost", "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #333;
}
#header{
	width: 100vw;
	/*height: 150vh;*/
	position: relative;
}
h1{
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 500;
}
h2{
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
}
h3{
  letter-spacing: 0.2em;
  font-weight: 500;
}
h4{
	border-bottom: 1px solid #000;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	margin-bottom: 30px;
	font-weight: 400;
}
.flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
@media only screen and (min-width: 769px){
	.sp{
		display: none;
	}
}
/*==================================================
 縦線が動いてスクロールを促す
===================================*/
/*スクロールダウン全体の場所*/
.scrolldown1{
	position:absolute;
	left:50%;
	top:10px;
    /*全体の高さ*/
	height:200px;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	left:50%;
    /*線の形状*/
	width: 1px;
	height: 200px;
	background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	20%{
		height:100px;
		opacity: 0;
	}
	50%{
		height:100px;
		opacity: 1;
	}
	100%{
		height:0;
		top:200px;
		opacity: 0;
	}
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#cfbeae;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:25px;
	display: block;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.3em;
	letter-spacing: 0.08em;
}
#g-nav li a img{
	width: 15%;
}
.nav-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
@media screen and (max-width:768px){
	#g-nav li a img{
		width: 30%;
	}
}

/*==================================================
　MENUが×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
    display: block;
	position: fixed;
    z-index: 9999;
    cursor: pointer;
    top:40px;
    right:40px;
    width: 60px;
    height:60px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 1px;
	background: #666;
  	width: 100%;
    left: 0;
 }

.openbtn span:nth-of-type(1) {
	top:5px;	
}

.openbtn span:nth-of-type(2) {
	top:18px;
	left:0;
	/*font-family: "mrs-eaves-roman-all-petite-c", serif;*/
    font-weight: 400;
    font-style: normal;
	font-size:1.3rem;
	text-transform: uppercase;
	color: #666;
}

.openbtn span:nth-of-type(3) {
	top:60px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 34px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


@media screen and (max-width:990px) {
	.openbtn{
		top:20px;
        right:20px;
	}
#g-nav ul{
    display: block;
    text-align: center;
}
#g-nav ul li a{
    padding: 15px;
    color: #333;
	font-size: 1.2em;
}
#g-nav ul li.current a::before,
#g-nav ul li a:hover::before{
    animation: none;
    left:0;
    top:48%;
    width:10px;
    height: 1px;
    background: #333;
    opacity: 1;
}
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes gnavipathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:20px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}
/*==================================================
#header
===================================*/
#header img.header_upper{
	width: 60%;
	margin-top: 50px;
}
#header img.header_bottom{
	width: 45%;
	margin-top: -130px;
}
.img_animal{
	text-align: right;
}
h1{
	position: absolute;
	 top: 300px;
     left: 50%;                 
     transform: translateX(-50%); 
	letter-spacing: 0.5em;
}
#menu-area{
	position: absolute;
	 top: 150px;
	 right: 50px;
	 text-align: right;
}
#menu-area ul li{
	padding: 20px 0;
}
#menu-area ul li a{
	color: #666;
	letter-spacing: 0.2em;
	font-size: 1.2em;
}

@media only screen and (max-width: 768px){
	.pc{
		display: none;
	}
	#header{
	width: 100vw;
	height: 100vh;
	}
	#header img.header_upper{
		width: 90%;
		margin-top: 50px;
	}
	#header img.header_bottom{
		width: 90%;
		position: absolute;
		  bottom: 30px;
		  right: 0;
	}
	h1{
		position: absolute;
		 top: 55%;
		 left: 50%;                 
		 transform: translateX(-50%)translateY(-45%); 
	}
}
/*==================================================
video
===================================*/
#video-area{
    position: absolute;
    z-index: -1;/*最背面に設定*/
    right:0;
    overflow: hidden;
	height: 106.666667vh;
	width: 60vw;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	height: 106.666667vh;
	width: 60vw;
}
@media only screen and (max-width: 1024px){
	#video-area,
	#video{
		height: 75vh;
	    width: 133.333333vw;
	}
	#video-area{
		position: absolute;
		 top: 380px;
	}
}
@media only screen and (min-width: 1025px){
	#video-area{
		position: absolute;
		 top: 450px;
	}
}

/*==================================================
news
===================================*/
#news{
	position: relative;
}
#news p{
	color: #333;
	margin-left: 20%;
	font-size: 1.7em;
}
/*ボタン*/
#news a{
	color: #333;
	font-size: 1.1em;
	position: absolute;
	  right: 30px;
	  bottom: 30px;
	padding: 10px;
}
#news a.btn-radius-solid {
  border: 1px solid #ccc;
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
}

#news a.btn-radius-solid:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}
@media only screen and (min-width: 769px){
	.news_img{
	width: 20%;
	position: absolute;
	  top: -70px;
	  left: 30px;
}
	.news_box{
	background-color: #f7f4ef;
	padding: 50px 70px;
}
}
@media only screen and (max-width: 768px){
	#news{
		display: block;
		text-align: center;
		background-color: #f7f4ef;
	}
	#news p{
		margin-left: 0;
	}
	.news_box{
		padding: 30px 30px 150px;
		text-align: center;
	}
	.news_img{
		width: 65%;
		margin-top: -30px;
	}
}
/*==================================================
item
===================================*/
#item{
	padding: 50px 0;
}
#item ul{
	background-image:url("../img/bg01.jpg");
	background-size: cover;
	width: 100vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	padding-bottom: 50px;
}
#item ul li{
	width: 20%;
	margin: -50px 40px 30px 0;
}
#item ul li img{
	width: 100%;
}

/*ホバーしたときのcss*/
.image_link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.image_link img{
  display:block;
  width:100%;
}
.image_link:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;
  opacity:0;
  transition:0.3s;
}
.image_link:after{
  content:"MORE";
  display:block;
  color:#fff;
  line-height:48px;
  width:180px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.5s;
  font-weight:bold;
  letter-spacing:0.4em;
}
.image_link:hover:before{
  opacity:0.5;
}
.image_link:hover:after{
  opacity:1;
  margin-top:-0.5em;
}
@media only screen and (max-width: 768px){
	#item ul{
		margin-top: 30px;
	}
	#item ul li{
		width: 90%;
		margin: 30px auto;
	}
	h3{
		font-size: 1.5em;
	}
}
/*==================================================
profile
===================================*/
#profile{
	text-align: center;
}
#profile h2{
	margin-bottom: 50px;
	background-color: #f7f4ef;
	padding: 30px 0;
	width: 100%;
}
#profile section.flex{
	gap: 30px;
	width: 90%;
	margin: 50px auto;
	padding: 50px;
}
.reverse{
	flex-direction: row-reverse;
}
#profile section img{
	width: 20%;
}
#profile section p{
	width: 60%;
	text-align: left;
}
@media only screen and (max-width: 768px){
	#profile section.flex{
		display: block;
		padding: 20px;
		width: 100%;
	}
	#profile section img{
	width: 50%;
	margin: 20px auto;
}
	#profile section p{
		width: 100%;
	}
}
/*==================================================
shop
===================================*/
#shop{
	padding: 50px;
	background-color: #f7f4ef;
}
#shop h2{
	margin-top: 30px;
	margin-bottom: 50px;
}
#shop_p{
	position: relative;
	padding-bottom: 50px;
}
#shop_p section{
	margin: 30px auto;
	width: 50%;
}
/*---------------------
button2
---------------------*/
.button2 a{
  display: inline-block;
  width: 200px; 
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  margin: 15px auto;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0.5em;
  background: #cebdad;
  border: 1px solid #cebdad;
}
#payment{
	margin: 30px;
}
#payment section{
	width: 50%;
	margin: 20px 20px 0 0;
}
@media only screen and (max-width: 1200px){
	#shop{
		padding: 30px;
	}
}
@media only screen and (max-width: 768px){
	#shop{
		padding: 10px;
	}
	#shop h2{
	    margin-bottom: 30px;
	}
	#shop_p,
	#shop section{
		width: 95%;
		margin: 0 auto;
	}
	#shop_ section{
		text-align: left;
	}
	#shop section p{
		margin: 10px 0 30px 0;
	}
	#payment{
		margin: 0 0 30px 0;
	}
	#payment section.flex{
		width: 100%;
	}
}
/*==================================================
スライダーのためのcss
===================================*/
/*.slider .slick-slide {
    margin:0 10px;
}*/
.slider-area{
	position: relative;
}
.slider_on{
	position: absolute;
	  top: 50%;
	  left: 50%;;
	  transform: translate(-50%, -50%);
	color: #fff;
	font-size: 1.5em;
	letter-spacing: 0.2em;
}

/*==================================================
アコーディオン
===================================*/
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 40vw;
    max-width: 900px;
    margin:0 auto;
	
}

.accordion-area li{
    margin: 10px;
	width: 40vw;
	
}

.accordion-area section {
	border: 1px solid #ccc;
	width: 100%;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
	width: 40vw;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	width: 40vw;
}
@media only screen and (max-width: 768px){
	.accordion-area,
	.accordion-area li,
	.title,
	.box{
		width: 100%;
		margin: 0 auto;
	}
	#payment h4{
		margin-top: 30px;
	}
}

/*==================================================
footer
===================================*/
footer{
	width: 100%;
	background-image:url("../img/bg01.jpg");
	background-size: cover;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	padding: 40px 80px;
	position: relative;
	margin-top: auto;
}
#footer_left{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
footer img{
	width: 35%;
	height: 32.68467%;
}
section.icon{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
section.icon img{
	width: 15%;
}
p.name{
	font-size: 2.5rem;
	letter-spacing: 0.2em;
	margin-bottom: 50px;
}
p.address{
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px){
	footer-left,
	p.name,
	p.address,
	.icon,
	footer img{
		width: 100%;
	}
	section.icon img{
	width: 25%;
    }
	footer{
		padding: 40px 65px;
	}
	footer img{
		margin-top: 50px;
	}
	section.icon img{
		margin-top: 0;
	}
}
/*==================================================
ページトップリンク
===================================*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background-image: url("../img/pagetop_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 80px;
	height: 80px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.09em;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.8rem;
	transition:all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*==================================================
potteryのcss
===================================*/
.header{
	width: 90%;
	margin: 0 auto;
}
#pottery_content{
	padding: 0 80px;
}
p.header-p{
	width: 60%;
	padding: 30px 30px 10px 60px;
	margin-top: -70px;
}
.thumbnail{
	width: 30%;
	justify-content: space-between;
}
.thumbnail-p{
	width: 60%;
	padding: 30px;
}
.thumbnail-p p{
	margin-bottom: 30px;
}
.thumbnail-p p span{
		letter-spacing: 0.1em;
		font-size: 1.2rem;
	}
section.flex{
	justify-content: center;
}
#animal{
	margin-top: 40px;
}
p.header-p1{
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}
.present{
	width: 100%;
	margin-top: 50px;
	background: linear-gradient(transparent 0%, transparent 5%, #f7f4ef 5%, #f7f4ef 95%, transparent 95%, transparent 100%);
}
.animal_order{
	background-image:url("../img/animal.png");
	background-position: bottom right;
	background-size: cover;
	margin: 30px 0;
	padding: 50px 0;
}
.animal_order section.thumbnail-p{
	width: 40%;
}
@media only screen and (min-width: 921px){
#takeout{
	position: relative;
	height: 800px;
}
img.takeout01{
	width: 60%;
}
#takeout section{
	position: absolute;
	  bottom: 0;
	  right: 0;
}
}

@media only screen and (max-width: 920px){
	#pottery_content{
		padding: 0;
	}
	p.header-p,
	.thmbnail-p,
	.thumbnail,
	p.header-p1{
		padding:  0 50px;
	}
	#pottery section.flex{
		display: block;
}
	.header,
	p.header-p,
	.thumbnail-p{
		width: 100%;
		margin: 0 auto;
	}
	.thumbnail{
		width: 60%;
		margin: 30px auto 0;
	}
	p.header-p{
		margin: 30px 0;
	}
	.thumbnail-p{
	padding-top: 30px;
	}
	p.header-p{
		padding-top: 20px;
	}
	p.header-p1{
		margin-top: -50px;
	}
	img.takeout01{
		width: 90%;
		margin: 30px;
		
	}
	.present{
	background: linear-gradient(transparent 0%, transparent 15%, #f7f4ef 15%, #f7f4ef 100%);
	}
}
@media only screen and (max-width: 768px){
	.pc{
		display: none;
	}
	p.header-p,
	.thmbnail-p,
	p.header-p1{
		padding:  0 20px;
	}
	p.header-p1{
		text-align: left;
	}
	.thumbnail,
	img.takeout01{
		width: 100%;
		margin: 30px 0 0;
		padding: 0 20px;
	}
	.animal_order{
	background:none;
    }
	.animal_order section.thumbnail-p{
	width: 100%;
	}
}


/*---------------------
button1
---------------------*/
.button1{
	padding: 10px 30px;
	background: #cebdad;
	color: #fff;
	margin-top: 30px;
}

/*==================================================
動きのcss
===================================*/
/* fadeUp */

.fadeIn{
animation-name:fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
    opacity: 0;
}

/*==================================================
ギャラリーのためのcss
===================================*/
#gallery{
	margin: 50px 0;
}
li.item p a{
	color: #333;
	font-size: 1.3rem;
}
li.item p a span{
	font-size: 0.8rem;
}
/*＝＝＝並び替えボタンチェックマークのCSS*/
.sort-btn{
	background: #f3f3f3;
	padding: 20px;
	margin:50px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.sort-btn dt{
	font-weight: bold;
	margin:0 0 10px 0;
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
}

.sort-btn dd{
	margin:0 0 10px 0;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
}

.sort-btn ul{
	display: flex;
	flex-wrap: wrap;
}

.sort-btn li{
	margin:0 10px;
list-style:none;
}

.sort-btn ul li{
	position: relative;
	cursor: pointer;
	padding:0 0 0 30px;
	margin:0 10px 0 0;
}

/*横幅が810px以下になった際の指定*/
@media only screen and (max-width: 810px) {
.sort-btn li{
	width:100%;
	margin:0;
}
	
.sort-btn ul li{
	width:auto;
}
	
}

/*チェックマークの設定*/
.sort-btn ul li::before{
	content:'';
	position: absolute;
	left:0;
	width:20px;
	height:20px;
	border:2px solid #ccc;
}

.sort-btn ul li.active::after{/*現在地＝activeというクラス名がついたらチェックマークを出現*/
	content:'';
	position: absolute;
	left:5px;	
	top:0;
    /*チェックマークの色や形*/
	border-left:2px solid #333;
	border-bottom:2px solid #333;
	width:16px;
	height:9px;
	transform:rotate(-45deg);
}



/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 25%;/*横並びで4つ表示*/
  padding:0 5px 5px 5px;/*画像に余白をつける*/
  z-index: 1;
list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
  padding: 0 5px 10px 5px;
}
}


/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
    background: transparent!important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}




    
