@charset "utf-8";
/* CSS Document */
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
h1, h2 {
  color: #9e7f35;
}
h1:hover{
	opacity: 0.7;
}
h2 {
  font-size: 45px;
  padding-bottom: 15px;
  border-bottom: solid 2px #9e7f35;
  display: inline-block;
}
nav li a {
  color: #9e7f35;
}
p, h3, small, dd, dt {
  color: #6a3906;
}
#wrap {
  width: 980px;
  text-align: center;
  margin: 0 auto;
  /*background: #90682F;*/
  padding-top: 100px;
  padding-bottom: 100px;
}
#top #link_item_top, #store #link_item_store, #collection #link_item_collection, #news #link_item_news {
  text-decoration: underline;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#fff;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:300px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity 0.5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #9e7f35;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #9e7f35;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}
/*-----------------------------*/


/*-----------------------------------------*/
header {
  position: relative;
	
}
h1 {
 font-size: 45px;
	
  margin-left: 60px;
  padding-top: 5px;
	padding-bottom: 5px;
	
}
nav {
  overflow: hidden;
}
ul {
  overflow: hidden;
  position: absolute;
  right: 2%;
  top: 20px;
}
ul li {
  float: left;
}
nav li a {
  font-size: 22px;
  margin-left: 25px;
}
nav li a:hover {
  opacity: 0.7;
}
.instagram_01{
	padding-bottom:  0px;
}
/*------ハンバーガーメニュー-------------------------*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.7);
}
.menu-content ul {
  padding: 70px 10px 0;
  width: 100%;
}
.menu-content ul li {
  border-bottom: solid 1px #9e7f35;
  ;
  list-style: none;
  width: 80%;
  margin-left: 15%;
}
.menu-content ul li a {
  display: block;
  font-size: 23px;
  box-sizing: border-box;
  color: #9e7f35;
  text-decoration: none;
  padding: 20px 15px 15px 0;
  position: relative;
}
.menu-content ul li a:hover {
  opacity: 0.7;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #9e7f35;
  border-right: solid 2px #9e7f35;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 30px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s; /*アニメーション設定*/
}
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0);
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #9e7f35;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.instagram{
	margin-left: 20px;
	vertical-align: top;}
/*------------------------*/
.bg-slider {
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 60px);
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-slider__title {
  color: #fff;
  font-size: 48px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}
#store .bg-slider {
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 60px);
  background-image: url("../images/store_01.png");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
#collection .bg-slider {
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 60px);
  background-image: url("../images/collection_header_01.png");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .bg-slider {
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 60px);
  background-image: url("../images/news_header_01.png");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*
.img_box{
	
  width: 100vw;
  height: auto;
  min-height: calc(100vh - 60px);
	background-size: cover;
  background-position: center;
  background-image: url("../img/top_header_01.png");
}
*/
/*-------------------------*/
footer {
  background: #d8c4b7;
  text-align: center;
}
small {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #9e7f35;
  font-size: 15px;
}
/*------concept-------------------------*/
.concept_text {
  padding: 40px 0 40px 0;
}
.concept_text p {
  line-height: 36px;
  font-size: 18px;
  margin-bottom: 20px;
}
.concept_image {
  overflow: hidden;
  padding-bottom: 180px;
  position: relative;
}
.concept_image img {
  max-width: 100%;
  height: auto;
}
.concept_image .concept_01 {
  float: left;
  margin-left: 30px;
}
.concept_02 {
  position: absolute;
  left: 320px;
  top: 200px;
  z-index: 1;
}
.concept_03 {
  float: right;
  margin-right: 30px;
  padding-top: 50px;
}
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(30px);
}
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/*------store-----------------------------------*/
.store_contents {
  overflow: hidden;
}
.store_box {
  text-align: left;
  padding-top: 40px;
  width: 210px;
  margin-left: 150px;
}
.store_box h3 {
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: #A44606 1px solid;
}
.store_box p {
  font-size: 15px;
  line-height: 30px;
}
.store_box p a:hover {
  opacity: 0.7;
}
.map {
  float: right;
  padding-top: 40px;
  margin-right: 50px;
  width: 440px;
  height: 330px;
}
/*-----collection---------------------------------------------------------*/
.collection_text {
  padding-top: 40px;
  padding-bottom: 40px;
}
.collection_text p {
  line-height: 36px;
  font-size: 20px;
}
.collection_box1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	
}
.collection_box1 {
  margin-bottom: 0px;
}
.collection_photo {
  width: 300px;
  height: 500px;
  margin: 0;
	/*transform: scale(0.8);*/
  overflow: hidden;
  position: relative;
}
.collection_photo:nth-of-type(1), .collection_photo:nth-of-type(2), .collection_photo:nth-of-type(3) {
  margin-bottom: 40px;
}
.collection_photo .caption {
  font-size: 15px;
  text-align: center;
  padding-top: 150px;
  color: #fff;
  line-height: 40px;
}

.collection_photo .caption a:hover {
  opacity: 0.7;
}

.collection_photo .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.2); /* マスクは半透明 */
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.collection_photo:hover .mask {
  opacity: 1; /* マスクを表示する */
}
.collection_photo:active .mask {
  opacity: 1; /* マスクを表示する */
}
/*----------news------------------*/
.news_list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
}
.news_list dt {
  width: 35%;
  font-size: 18px;
  font-weight: normal;
  padding-top: 20px;
  vertical-align: bottom;
  line-height: 40px;
}
.news_list dd {
  text-align: left;
  width: 65%;
  border-top: dotted 1px #9e7f35;
  font-size: 18px;
  line-height: 40px;
  padding-top: 20px;
}
.news_list dd:first-of-type, .news_list dt:first-of-type {
  border: none;
  padding-top: 0;
}
.news_list dd a:hover {
  opacity: 0.7;
}
.news_box {
  padding-top: 40px;
  font-size: 16px;
  line-height: 40px;
}
.news_title {
  display: inline-block;
  border-bottom: dotted 1px #9e7f35;
  font-size: 18px;
}
.news_text {
  margin-top: 20px;
}
.time {
  font-weight: bold;
  color: #B51D23;
}
/*------スマホデザイン------------------------------*/
@media(max-width: 767px) {
  nav {
    display: none;
  }
  h1 {
    font-size: 40px;
    margin-left: 30px;
  }
  #wrap {
    max-width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  h2 {
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: solid 1px #9e7f35;
  }
	.bg-slider {
   max-width:100%;
  height: auto;
min-height: 270px;
  background-position:top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
	#store .bg-slider {
  max-width:100%;
  height: auto;
min-height: 270px;
  background: url("../images/store_01.png") no-repeat;
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
	#collection .bg-slider {
  max-width:100%;
  height: auto;
min-height: 270px;
  background-image: url("../images/collection_header_01.png");
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .bg-slider {
 max-width:100%;
  height: auto;
min-height: 270px;
  background-image: url("../images/news_header_01.png");
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
  /*----concept-----------*/
  .concept_image {
    display: none;
  }
  .concept_text {
    padding: 30px 0 0px 0;
  }
  .concept_text p {
    line-height: 30px;
    font-size: 15px;
  }
  /*-----news--------------------*/
  .news_list dt, .news_list dd {
    line-height: 30px;
    font-size: 15px;
  }
  .news_list dt {
    /*text-align: left;*/
    width: 30%;
  }
  .news_list dd {
    width: 70%;
  }
	.news_list{
		padding-top: 30px;
	}
  /*footer*/
  small {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 10px;
  }
  /*-----------newslist----------------------*/
  .news_box {
    padding-top: 20px;
    font-size: 15px;
    line-height: 30px;
  }
  .news_title {
    display: inline-block;
    border-bottom: dotted 1px #9e7f35;
    font-size: 17px;
  }
	
  .news_text {
    margin-top: 15px;
  }
  /*------store---------------------------*/
  .store_contents {
    overflow: hidden;
  }
  .store_box {
    text-align: left;
    padding-top: 35px;
    width: 200px;
    margin-left: 20px;
    float: none;
  }
  .store_box h3 {
    font-size: 17px;
    padding-bottom: 3px;
    border-bottom: #A44606 1px solid;
  }
  .store_box p {
    font-size: 14px;
    line-height: 28px;
  }
  .map {
    float: none;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding-top: 50%;
    margin-right: 0px;
    position: relative;
  }
  .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
	
  /*-----collection---------------------------------------------------------*/
  .collection_text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .collection_text p {
    line-height: 30px;
    font-size: 18px;
  }
  .collection_box1 {
    margin-bottom: 20px;
    align-items: center;
  justify-content: center;
	
  }
  .collection_photo {
    width: 53%;
    height: auto;
  }
  .collection_photo:nth-of-type(1), .collection_photo:nth-of-type(2), .collection_photo:nth-of-type(3), .collection_photo:nth-of-type(4),.collection_photo:nth-of-type(5) {
    margin-bottom: 30px;
  }
  .collection_photo .caption {
    padding-top: 100px;
  }
  .collection_photo .caption {
    padding-top: 40%;
  }
	.collection_photo .caption{
		padding-left: 0;
		padding-right: 0;
	}
}
@media(min-width:768px) and (max-width:979px){
	nav {
    display: none;
  }
	
  #wrap {
    max-width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  h2 {
    font-size: 35px;
    padding-bottom: 12px;
    border-bottom: solid 1px #9e7f35;
  }
	.bg-slider {
   max-width:100%;
  height: auto;
min-height: 380px;
  background-position:top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
	#store .bg-slider {
  max-width:100%;
  height: auto;
min-height: 380px;
  background: url("../images/store_01.png") no-repeat;
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
	#collection .bg-slider {
  max-width:100%;
  height: auto;
min-height: 380px;
  background-image: url("../images/collection_header_01.png");
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .bg-slider {
 max-width:100%;
  height: auto;
min-height: 380px;
  background-image: url("../images/news_header_01.png");
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
  /*----concept-----------*/
  .concept_image {
    display: none;
  }
  .concept_text {
    padding: 30px 0 0px 0;
  }
  .concept_text p {
    line-height: 30px;
    font-size: 15px;
  }
  /*-----news--------------------*/
  .news_list dt, .news_list dd {
    line-height: 30px;
    font-size: 15px;
  }
  .news_list dt {
    /*text-align: left;*/
    width: 30%;
  }
  .news_list dd {
    width: 70%;
  }
	.news_list{
		padding-top: 30px;
	}
  /*footer*/
  small {
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 13px;
  }
  /*-----------newslist----------------------*/
  .news_box {
    padding-top: 30px;
    font-size: 15px;
    line-height: 30px;
  }
  .news_title {
    display: inline-block;
    border-bottom: dotted 1px #9e7f35;
    font-size: 17px;
  }
	
  .news_text {
    margin-top: 15px;
  }
  /*------store---------------------------*/
  .store_contents {
    overflow: hidden;
  }
  .store_box {
    text-align: left;
    padding-top: 35px;
    width: 200px;
    margin-left: 20px;
    float: none;
  }
  .store_box h3 {
    font-size: 17px;
    padding-bottom: 3px;
    border-bottom: #A44606 1px solid;
  }
  .store_box p {
    font-size: 14px;
    line-height: 28px;
  }
  .map {
    float: none;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding-top: 50%;
    margin-right: 0px;
    position: relative;
  }
  .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
	
  /*-----collection---------------------------------------------------------*/
  .collection_text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .collection_text p {
    line-height: 30px;
    font-size: 18px;
  }
  .collection_box1 {
    margin-bottom: 20px;
    justify-content: space-around;
  }
  .collection_photo {
    width: 41%;
    height: auto;
  }

  .collection_photo:nth-of-type(1), .collection_photo:nth-of-type(2), .collection_photo:nth-of-type(3), .collection_photo:nth-of-type(4) {
    margin-bottom: 30px;
  }
  .collection_photo .caption {
    padding-top: 100px;
  }
  .collection_photo .caption {
    padding-top: 40%;
  }
	


}
@media (min-width: 980px) {
  .hamburger-menu {
    display: none;
  }
}