@charset "UTF-8";
/* CSS Document */
/*必須--------------------------*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
/*ページ内スムールスクロール--------------------------*/
/*html { scroll-behavior: smooth;}*/
/*-----------------------------------------------*/
section {
  margin: 0px 0;
  padding: 80px 0;
}
.inner {
  width: 900px;
  margin: 0 auto;
}
figure {
  margin: 0;
  padding: 0;
}
figure img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
a {
  text-decoration: none;
}
ul li a:hover {
  opacity: 0.5;
}
*:hover {
  transition: all .3s;
}
p {
  color: #595757;
  line-height: 20px;
  letter-spacing: 1px;
}
/*左から右にフェードイン--------------------*/
.left-to-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*右から左にフェードイン--------------------*/
.right-to-left {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}
.right-to-left.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*下から上にフェードイン--------------------*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s;
}
.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}
/*下から上にフェードイン--------------------*/
.down-to-top2 {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.5s;
}
.down-to-top2.scrollin {
  opacity: 1;
  transform: translateY(0);
}
/*下から上にフェードイン--------------------*/
.down-to-top3 {
  opacity: 0;
  transform: translateY(100px);
  transition: all 2.5s;
}
.down-to-top3.scrollin {
  opacity: 1;
  transform: translateY(0);
}
/*共通タイトル------------------- */
.title {
  color: #7a6a56;
  font-size: 30px;
  margin: 0px 0 30px 0;
  padding: 0;
  text-align: center;
  letter-spacing: 2px;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
}
a .btn:hover {
  background-color: #7a6a56;
  color: white;
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーTOPー*/
#movie {
  /*margin: -133px auto -3px auto;*/
	 margin:0px auto 0px auto;
  padding: 0;
}
#movie .center { margin: 0 auto 0px; text-align: center;}
#movie .center img { width: 100%; height:auto;}
#movie .center video { width: 100%; height: auto;}
#movie .center .slick-next { right: 20px; z-index: 99;}
#movie .center .slick-prev { left: 15px; z-index: 100;}
#movie .center .slick-dots{margin-bottom: 50px;}

@media (min-width:1051px) {
	#movie{max-height:1000px;}
	#movie .center{}
	#movie .center div{height:100%;}
	#movie .center div img{width: 100%; height: 100%;max-height:1000px;object-fit: cover;object-position: 50% 50%;}
}/*
@media (max-width:1050px) {
	#movie{max-height:400px;}
	#movie .center div{height:100%;}
	#movie .center div img{width: 100%; height: 100%;max-height:400px;object-fit: cover;object-position: 50% 50%;}
}*/


/* モーダルを開くボタン */
/*.modal-open{
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 16px;
  font-weight: bold;
  width: 300px;
  height: 60px;
  color: #fff;
  background: #7a6a56;
  border: none;
  cursor: pointer;
  translate: -50% -50%;
}*/

.modal {
  display: none;       /* 最初は非表示 */
  /* 〜その他スタイル〜 */
}
.modal.is-show {
  display: block;
}


/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 9999;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 95%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #7a6a56;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align:center; 
  line-height: 1.8;
  padding: 0px;
}

/* モーダルのコンテンツ部分のテキストの指定 
.modal-content p{
  margin: 1em 0;
}　*/

/* モーダル内の画像を中央寄せに */
.modal-content img {
  display: block;
  margin: 0 auto 15px; /* 上下中央＋下に少し余白 */
  max-width: 100%; /* 画面幅に合わせて縮小 */
  height: auto;
}


/*ーーーーーーーーーーーーーーーーーーーーーーーーaboutー*/
#about {
  padding: 80px 0;
}
#about .flex {
  display: flex;
  height: 450px;
}
#about .flex .box1 {
  width: 50%;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/about.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
#about .flex .box2 {
  width: 50%;
  padding: 80px;
  box-sizing: border-box;
  align-self: center;
}
#about h3 {
  color: #a38a78;
  font-size: 22px;
  margin: 5px 0 0px 0;
  font-weight: 500;
  letter-spacing: 2px;
}
#about h2 {
  color: #a38a78;
  font-size: 14px;
  margin: 20px 0 30px 0;
  font-weight: 300;
  letter-spacing: 2px;
	line-height: 25px;
}
#about h2 .br-h{
display: block;
content: "";
margin: 10px 0;
}
#about p {
  margin: 30px 0 30px 0;
  line-height: 20px;
  letter-spacing: 1px;
}
#about a {
  text-align: center;
  color: #a38a78;
  letter-spacing: 1px;
}
#about a .btn {
  margin-top: 25px;
  padding: 15px 0;
  width: 240px;
  /*  border: 1px solid #a38a78;*/
  background-color: #efeae2;
}
#about a .btn:hover {
  background-color: #7a6a56;
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーitemー*/
#item {
  height: auto;
 padding: 0;
}
#item .bk {
  background-color: #f9f7f3;
  padding: 100px 0 40px;
  margin: 0 0 0px 0;
}
#item .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#item .flex .box {
  margin: 0 5px 0px 0;
  width: 100%;
  height: 400px;
  padding: 0px 0 0 0;
  box-sizing: border-box;
  display: inline-flex;
  flex-wrap: wrap;
}
#item .flex .inner{
	width: 1190px;
	display: flex;
   justify-content: space-between;
}
#item .flex .box .item1 {
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_1.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 70%;
}
#item .flex .box .item2 {
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 70%;
}
#item .flex .box .item3 {
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_3.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 70%;
}
#item .flex .box .item4 {
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_4.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 70%;
}
#item .flex .box .item1 {
  transition: transform .6s ease;
}
#item .flex .box .item2 {
  transition: transform .6s ease;
}
#item .flex .box .item3 {
  transition: transform .6s ease;
}
#item .flex .box .item4 {
  transition: transform .6s ease;
}
#item .flex .box:hover .item1 {
  transform: scale(1.05);
}
#item .flex .box:hover .item2 {
  transform: scale(1.05);
}
#item .flex .box:hover .item3 {
  transform: scale(1.05);
}
#item .flex .box:hover .item4 {
  transform: scale(1.05);
}
#item .flex a {
  color: #a38a78;
  text-align: center;  
  width: 23.5%;
}
#item .flex a:hover {
  opacity: 0.8;
}
#item .flex .box h2 {
  width: 100%;
  margin: -15px 0 0 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 14px;
}
#item .flex .box h3 {
  width: 100%;
  margin: -30px 0 0 0;
  padding: 0;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 2px;
}
/*ーーーーーーーーーーーーーーーーーーーーitem picupー*/
/*
#item .box {
  margin: 0px 0 50px 0;
}
#item .box .text {
  background-color: #FCEEE6;
  width: 700px;
  height: 355px;
  padding: 100px 220px 0px 50px;
  box-sizing: border-box;
  text-align: center;
}
#item .box1 {
  position: relative;
}
#item .box1 .picup1 {
  position: absolute;
  top: 30px;
  right: 0px;
  width: 47%;
  height: 300px;
  background-image: url("../img/picup_1.jpg");
}
*/
/*
#item .box1 .picup1 video{
	  top: 40px;
  right: 0px;
  width: 100%;
  height: 300px;
}
#item .box .text h3 {
  color: #7a6a56;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
}
#item .box .text h2 {
  color: #7a6a56;
  font-size: 22px;
  margin: 0px 0 20px 0;
  font-weight: 400;
  letter-spacing: 2px;
}
#item .box .text p {
  margin: 0px 0 40px 0;
  line-height: 20px;
  letter-spacing: 1px;
}
#item .box .text a {
  text-align: center;
  color: #a38a78;
  letter-spacing: 1px;
}
#item .box .text .btn {
  margin: 0 auto;
  padding: 15px 0;
  width: 200px;
  border: 1px solid #a38a78;
}
*/
/*ーーーーーーーーーー2番目ー*/
/*
#item .box2 {
  position: relative;
}
#item .box2 .text {
  position: absolute;
  right: 0;
  height: 355px;
  background-color: #f3f6f5;
  padding: 100px 0px 50px 220px;
}
#item .box2 .picup2 {
  position: absolute;
  top: 60px;
  left: 0px;
  width: 47%;
  height: 300px;
  background-image: url("../img/picup_2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
#item .box .text h2 sup {
	font-size:small !important;
	vertical-align:text-top !important;
}
*/
/*
#item .fair{
margin: -13px auto 0;
padding:0;
overflow: scroll;
}
#item .top_slider {
	margin:0;
	padding:0;
}
#item .top_slider .box{
	height:auto;
	margin:0 auto;
	padding:0px;
}
#item .top_slider .box video{
	width: 100%;
	height: 700px;
	object-fit: cover;
	margin:0 auto;
}	
#item .top_slider .box .text {
  background-color: #FCEEE6;
  width: 100vw;
  padding: 20px 0 80px;
	 margin: -3px 0 0 0;
	 line-height: 0;
	 box-sizing: border-box;
  text-align: center;
}
#item .top_slider .box .text h3 {
  color: #7a6a56;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
	 line-height: 10px;
}
#item .top_slider .box .text h2 {
  color: #7a6a56;
  font-size: 22px;
  margin: 20px 0 20px 0;
  font-weight: 400;
	 letter-spacing: 2px;
}
#item .top_slider .box img{
	width: 100%;
	height: 700px;
	object-fit: cover;
	margin:0 auto;
}
#item .top_slider .box .text2 {
  background-color: #f3f6f5;
	 margin: 0px 0 0 0;
}
#item .top_slider .slick-dots{
	bottom: 60px!important;
}
*/
/*ーーーーーーーーーーーーーーーーーーーーguideー*/
#guide {
  background-color: #efeae2;
}
#guide .inner {
  margin: 0 auto;
  text-align: center;
}
#guide .flex {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
#guide .flex .box {
  width: 47%;
  margin: 10px;
}
#guide .flex img {
  width: 100%;
  margin: 0;
  padding: 0;
}
#guide .flex .text {
  color: #7a6a56;
  padding: 35px 25px 25px;
  background-color: #fff;
  margin: -4px 0 0 0;
}
#guide a .text h2 {
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin: 0 0 0px 0;
}
#guide a .text h3 {
  font-size: 11px;
  font-weight: 100;
  margin: 0;
  line-height: 23px;
}
#guide a .text:hover {
  background-color: #7a6a56;
  color: white;
}
#guide .text p {
  text-align: left;
}
#guide .flex2 {
  margin: 0 auto;
  text-align: center;
}
#guide .flex2 .text {
  text-align: left;
  position: relative;
}
#guide .flex2 .img {
  position: absolute;
  right: 0;
}
#guide .flex .text1 {
  position: relative;
}
#guide .flex .text2 {
  position: relative;
}
#guide .flex .text3 {
  position: relative;
}
#guide .flex .text4 {
  position: relative;
}
#guide .flex .text5 {
  position: relative;
}
#guide .flex .text6 {
  position: relative;
}
#guide .flex .text7 {
  position: relative;
}
#guide .flex .guide {
  width: 105px;
  height: 105px;
}
#guide .flex .text1 .guide1 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#guide .flex .text2 .guide2 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#guide .flex .text3 .guide3 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#guide .flex .text4 .guide4 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#guide .flex .text5 .guide5 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#guide .flex .text6 .guide6 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide6.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#guide .flex .text7 .guide7 {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/guide7.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
/*ーーーーーーーーーーーーーーーーーーーーshopー*/
#shop {
  background-color: #eadfd2;
}
#shop .flex {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 350px;
}
#shop .flex .text {
  width: 50%;
}
#shop .flex .text h2 {
  color: #a38a78;
  font-size: 20px;
  margin: 0 0 10px 0;
  font-weight: 100;
}
#shop .flex .text h1 {
  color: #5a5957;
  font-size: 30px;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
  font-weight: 400;
}
#shop .flex .text h3 {
  color: #5a5957;
  font-weight: 100;
  font-size: 12px;
  margin: 0 0 25px 0;
}
#shop .flex .img {
  width: 50%;
  height: 510px;
  background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/shop1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#shop a {
  color: #5a5957;
  width: 240px;
}
#shop .btn {
  font-size: 12px;
  letter-spacing: 1px;
  background-color: #fff;
  width: 240px;
  padding: 15px 0;
  margin: 0 auto 10px;
}
#shop .btn:hover {
  background-color: #7a6a56;
}
#shop .shiro {
  color: #fff;
}
#shop .btn2 {
  background-color: #5a5957;
}
#shop .btn2:hover {
  background-color: #7a6a56;
  color: #fff;
}
/*ーーーーーーーーーーーーーーーーーーーーtopicsー*/
#topics {
  background-color: #f9f7f3;
  margin: 0 auto;
  text-align: center;
}
#topics .inner {
  width: 1480px;
  width: 90%;
}
#topics .flex {
  display: flex;
  text-align: center;
  justify-content: center;
}
#topics .flex .box {
  width: 30%;
  margin: 30px 40px;
}
#topics .flex .box h2 {
  text-align: left;
  border-bottom: 1px solid #c8bb9b;
  padding: 0 0 10px 0;
  color: #7a6a56;
  letter-spacing: 1px;
  font-weight: 500;
}
#topics .flex .box2 {
  display: flex;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
#topics .flex .box2 figure {
 display: inline-block;
	width: 120px;
}
#topics .flex .box2 figure img{
	min-width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: top;
}
#topics .flex .box2 .text {
  width: 100%;
  vertical-align: top;
  text-align: left;
  margin: 0 0 0 20px;
  font-size: 13px;
}
#topics .flex .box2 .text span {
  display: block;
  color: #604c3f;
  font-size: 13px;
  font-weight: 500;
}
#topics .flex .box a {
  text-align: center;
  color: #a38a78;
  letter-spacing: 1px;
}
#topics .flex .box .btn {
  margin: 20px auto 0;
  padding: 15px 0;
  width: 200px;
  border: 1px solid #a38a78;
}
.top-topics{
	background-color: #efeae2;
}
.top-topics-inner{
   max-width: 900px;
	width: 90%;
   margin: 0 auto;
	background-color: #efeae2;
	padding: 10px 0;
}
.top-topics-date{
	margin: 0 0 2px 0;
	color: #604c3f;
    font-size: 13px;
    font-weight: 500;
}
.top-topics-inner ul{
	margin: 0;
	padding-left: 0;
   color: #7a6a56;
}
.top-topics-inner ul li{
   padding: 10px 0;
   border-bottom: 1px solid #7a6a56;
	font-size: 13px;
	list-style: none
}
.top-topics-inner ul li:last-child{
	border-bottom: none
}
.top-topics-inner ul li a{
	 color: #595757;
    line-height: 20px;
    letter-spacing: 1px;
	margin-top: -20px;
    display: block;
}
.wp-block-columns{
	margin-bottom: 0 !important;
}

/*-----------=================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================------------- */
@media screen and (max-width: 1050px) {
  /*		html { scroll-behavior: auto;}*/
  section {
    margin: 0px 0;
    padding: 50px 0;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .inner {
    width: 100%;
  }
  p {
    font-size: 12px;
    line-height: 20px;
  }
  /*タイトル------------------- */
  .title {
    font-size: 24px;
    margin: 0px 0 20px 0;
    padding: 0;
    text-align: center;
    letter-spacing: 1px;
  }
  /*ムービー------------------- */
	#movie {  margin: 0px auto -4px auto;  padding: 0;}
	#movie .center .slick-dots{margin-bottom: 30px;}

 /*ーーーーーーーーーーーーーーーーーーーーーーーーaboutー*/
  #about .flex {
    display: flex;
    height: auto;
    flex-wrap: wrap;
  }
  #about .flex .box1 {
    width: 100%;
    height: 270px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #about .flex .box2 {
    width: 100%;
    height: 340px;
    padding: 20px 0 0 0;
    margin: 0;
    text-align: center;
  }
  #about h3 {
    color: #a38a78;
    font-size: 18px;
    margin: 0px 0 0px 0;
    letter-spacing: 2px;
  }
  #about h2 {
    color: #a38a78;
    font-size: 13px;
    margin: 20px 0 30px 0;
    letter-spacing: 2px;
  }
  #about a .btn {
    margin: 20px auto 0;
    width: 300px;
  }
  #about p {
    margin: 0px 0 20px 0;
    line-height: 20px;
    letter-spacing: 1px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーitemー*/
  #item {
    height: auto;
  }
  #item .bk {
    padding: 50px 0 30px 0;
    margin: 0 0 0px 0;
  }
  #item .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #item .flex .box {
    width: 90%;
    height: 380px;
    padding: 0px 0 0px 0;
    margin: 0 0 -38px 0;
    box-sizing: border-box;
    display: inline-flex;
    flex-wrap: wrap;
  }
  #item .flex .box .item1 {
    background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 70%;
  }
  #item .flex .box .item2 {
    background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 70%;
  }
  #item .flex .box .item3 {
    background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_3.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 70%;
  }
	#item .flex .box .item4 {
    background-image: url("../../Library/Containers/com.apple.mail/Data/Library/Mail Downloads/img/item_4.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 70%;
  }
	#item .flex .inner{
		flex-direction: column;
		align-items: center;
	}
  #item .flex a {
    color: #a38a78;
    text-align: center;
	  width: 90%;
  }
  #item .flex .box h2 {
    width: 100%;
    margin: -25px 0 0 0;
    line-height: 20px;
    font-size: 18px;
    letter-spacing: 1px;
  }
  #item .flex .box h3 {
    width: 100%;
    margin: -40px 0 0 0;
    font-size: 11px;
    line-height: 20px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーitem picupー*/
/*
  #item .box {
    margin: 50px 0 0 0;
  }
  #item .box .text {
    background-color: #FCEEE6;
    width: 95%;
    height: 370px;
    padding: 180px 10px 0px 5%;
    box-sizing: border-box;
    text-align: center;
  }
  #item .box1 {
    position: relative;
  }
  #item .box1 .picup1 {
    position: absolute;
    top: -20px;
    right: 0px;
    width: 100%;
    height: 200px;
  }
#item .box1 .picup1 video{
	  top: 40px;
  right: 0px;
  width: 100%;
  height: 190px;
}
  #item .box .text h3 {
    color: #7a6a56;
    font-size: 14px;
    margin: 20px 0 7px 0;
  }
  #item .box .text h2 {
    color: #7a6a56;
    font-size: 20px;
    margin: 0px 0 10px 0;
    letter-spacing: 1px;
  }
  #item .box .text p {
    margin: 0px 0 20px 0;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
  }
  #item .box .text a {
    text-align: center;
    color: #a38a78;
    letter-spacing: 1px;
  }
  #item .box .text .btn {
    margin: 20px auto 0;
    padding: 15px 0;
    width: 300px;
    border: 1px solid #a38a78;
  }
*/
  /*ーーーーーーーーーー2番目ー*/
/*
  #item .box2 {
    position: relative;
  }
  #item .box2 .text {
    position: absolute;
    right: 0;
    height: 370px;
    background-color: #f3f6f5;
    padding: 180px 5% 0px 10px;
  }
  #item .box2 .picup2 {
    position: absolute;
    top: -20px;
    right: 0px;
    width: 100%;
    height: 190px;
    background-image: url("../img/picup_2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
*/
/*
#item .fair{
width: 100vw;
margin: -13px auto 0;
padding:0;
}
#item .top_slider {
width: 100%;
	margin:0;
	padding:0;
}
#item .top_slider .box{
	width:100%;
	height:auto;
	margin:0 auto;
	padding:0px;
}
#item .top_slider .box video{
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin:0 auto;
}	
#item .top_slider .box .text {
  background-color: #FCEEE6;
  width: 100%;
  padding: 20px 0 60px;
	 margin: -3px 0 0 0;
	 line-height: 0;
	 box-sizing: border-box;
  text-align: center;
}
#item .top_slider .box .text h3 {
  color: #7a6a56;
  font-size: 14px;
  margin: 0px 0 15px 0;
  font-weight: 100;
  letter-spacing: 1px;
	 line-height: 10px;
}
#item .top_slider .box .text h2 {
  color: #7a6a56;
  font-size: 20px;
  margin: 0px 0 10px 0;
  font-weight: 400;
	 letter-spacing: 1px;
}
#item .top_slider .box img{
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin:0 auto;
}
#item .top_slider .box .text2 {
  background-color: #f3f6f5;
	 margin: 0px 0 0 0;
}
#item .top_slider .slick-dots{
	bottom: 40px!important;
}
*/
  /*ーーーーーーーーーーーーーーーーーーーーguideー*/
  #guide {
    margin-bottom: 50px;
  }
  #guide .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  #guide .flex .box {
    width: 80%;
  }
  #guide .flex .text {
    padding: 20px 20px;
    background-color: rgba(0, 0, 0, 0.00);
  }
  #guide .text h2 {
    font-size: 15px;
  }
  #guide .text h3 {
    font-size: 11px;
  }
  #guide .flex2 .text {
    background-color: #fff;
  }
  #guide .flex .guide {
    width: 86px;
    height: 86px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーshopー*/
  #shop {
    margin-top: 100px;
  }
  #shop .flex {
    flex-wrap: wrap;
    height: 420px;
  }
  #shop .flex .text {
    width: 100%;
    order: 2;
  }
  #shop .flex .text h2 {
    font-size: 17px;
    margin: 0 0 5px 0;
  }
  #shop .flex .text h1 {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
  #shop .flex .text h3 {
    font-size: 12px;
    margin: 0 0 25px 0;
  }
  #shop .flex .img {
    width: 90%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -110px 0 20px 0;
  }
  #shop a {
    color: #5a5957;
    width: 240px;
  }
  #shop .btn {
    font-size: 12px;
    letter-spacing: 1px;
    background-color: #fff;
    width: 300px;
    padding: 15px 0;
    margin: 0 auto 10px;
  }
  #shop .shiro {
    color: #fff;
  }
  #shop .btn2 {
    background-color: #5a5957;
  }
  /*ーーーーーーーーーーーーーーーーーーーーtopicsー*/
  #topics .inner {
    width: 100%;
  }
  #topics .flex {
    flex-wrap: wrap;
  }
  #topics .flex .box {
    width: 80%;
    margin: 0 15px 30px;
  }
  #topics .flex .box2 figure {
    min-width: 130px;
	  margin-right: 6px;
  }
	  #topics .flex .box2 figure img{
				width: 130px;
				height: 130px;
				object-fit: cover;
  }
  #topics .flex .box2 .text {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: 0 0 0 10px;
    font-size: 14px;
  }
  #topics .flex .box2 .text p {
    margin: 0;
  }
  #topics .flex .box .btn {
    width: 300px;
  }
  @media screen and (max-width: 700px) {
    #movie .wrap .bg-video-pc {
      display: none;
    }
    #movie .wrap #bg-video-sp {
      display: block;
      /*	position: fixed;	right: 0;	bottom: 0;*/ /*min-width: 100%;	min-height: 100%;*/ width: 100%;
      height: auto; /*	z-index: -100;*/ background: url('poster.jpg') no-repeat;
      background-size: cover;
      background-position: 50% 50%;
    }
    #about {
      padding: 50px 0 0 0;
    }
			#item {
    padding-top: 0;
  }
    #topics .flex .box {
      width: 90%;
    }
    #topics .flex .box2 figure {
      width: 25%;
		margin-right: 0;
    }
	  #topics .flex .box2 figure img{
		  		min-width: unset;
				width: 130px;
				height: 130px;
				object-fit: cover;
  }
    #topics .flex .box2 .text {
      display: inline-block;
      width: 70%;
      vertical-align: top;
      text-align: left;
      margin: 0 0 0 10px;
      font-size: 14px;
    }
    #guide .flex .box {
      width: 100%;
    }
  }
}


.sp-block{display: none;}
@media (max-width: 700px) {	
	.pc-block{display: none;}
	.sp-block{display: block;}
}

/*ファセッツコレクション　2023*/
#facets_collection_index{background-color: #f9f7f3;  padding: 100px 0 60px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
#facets_collection_index h2{color:#7a6a56;  font-size: 28px;  margin: 0px auto 30px auto; padding: 0; letter-spacing: 2px;text-align: center;font-weight: normal;}
#facets_collection_index h2 span{display:block; margin: 0px auto 10px auto; font-size: 18px;letter-spacing: 1px;}
#facets_collection_index .inner_wc{/*width: 1190px;*/width: 1250px;margin: 0 auto;font-size: 0}
#facets_collection_index .inner_wc .box_wc{display: inline-block;/*width: 23.5%;margin: 0 2% 0 0;*/width:290px;margin: 0 30px 0 0;padding: 0;}
#facets_collection_index .inner_wc .box_wc:last-of-type{margin: 0}
#facets_collection_index .inner_wc .box_wc a{display: block;}
#facets_collection_index .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
#facets_collection_index .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
#facets_collection_index .inner_wc .box_wc a .wc_category{color:#a38a78;  font-size: 17px;  margin: 20px auto 0px auto; padding: 0; letter-spacing: 1px;text-align: center;font-weight:400}
#facets_collection_index .inner_wc .box_wc a:hover{opacity:0.7;}
#facets_collection_index .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}
/*ウエディングコレクション　2023*/
#wedding_collection{background-color: #f9f7f3;  padding: 50px 0 80px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
#wedding_collection h2{color:#7a6a56;  font-size: 28px;  margin: 0px auto 30px auto; padding: 0; letter-spacing: 2px;text-align: center;font-weight: normal;}
#wedding_collection h2 span{display:block; margin: 0px auto 10px auto; font-size: 18px;letter-spacing: 1px;}
#wedding_collection .inner_wc{width: 1570px;margin: 0 auto;font-size: 0}
#wedding_collection .inner_wc .box_wc{display: inline-block;/*width: 23.5%;margin: 0 2% 0 0;*/width: 290px;margin: 0 30px 0 0;padding: 0;}
#wedding_collection .inner_wc .box_wc:last-of-type{margin: 0}
#wedding_collection .inner_wc .box_wc a{display: block;}
#wedding_collection .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
#wedding_collection .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
#wedding_collection .inner_wc .box_wc a .wc_category{color:#a38a78;  font-size: 17px;  margin: 20px auto 0px auto; padding: 0; letter-spacing: 1px;text-align: center;font-weight:400}
#wedding_collection .inner_wc .box_wc a .wc_category_jpn{display:none;}
#wedding_collection .inner_wc .box_wc a:hover{opacity:0.7;}
#wedding_collection .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}
#wedding_collection .box_wc_all{display:none;}

@media screen and (min-width:701px) and ( max-width:1571px)  {
	/*ファセッツコレクション　2023*/
    #facets_collection_index{background-color: #f9f7f3;  padding: 50px 0 30px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#facets_collection_index h2{color:#7a6a56;  font-size: 24px;  margin: 0px auto 30px auto; padding: 0; letter-spacing:1px;text-align: center;font-weight: normal;}
	#facets_collection_index h2 span{display:block; margin: 0px auto 5px auto; font-size: 16px;letter-spacing: 1px;}	
	#facets_collection_index .inner_wc{width: 95%;margin: 0 auto;font-size: 0}
	#facets_collection_index .inner_wc .box_wc{display: block;display: inline-block;width:23.5%;margin: 0 2% 20px 0;padding: 0;vertical-align: top}
	#facets_collection_index .inner_wc .box_wc:nth-of-type(4){margin: 0 0 20px 0%}
	#facets_collection_index .inner_wc .box_wc a{display: block;}
	#facets_collection_index .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
	#facets_collection_index .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
	#facets_collection_index .inner_wc .box_wc a .wc_category{color:#a38a78;  font-size: 14px;  margin: 10px auto 0px auto; padding: 0; letter-spacing: 0px;text-align: center;font-weight:400}
	#facets_collection_index .inner_wc .box_wc a:hover{opacity:0.7;}
	#facets_collection_index .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}
    /*ウエディングコレクション　2023*/
	#wedding_collection{background-color: #f9f7f3;  padding: 50px 0 30px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#wedding_collection h2{color:#7a6a56;  font-size: 24px;  margin: 0px auto 30px auto; padding: 0; letter-spacing:1px;text-align: center;font-weight: normal;}
	#wedding_collection h2 span{display:block; margin: 0px auto 5px auto; font-size: 16px;letter-spacing: 1px;}	
	#wedding_collection .inner_wc{width: 95%;margin: 0 auto;font-size: 0}
	#wedding_collection .inner_wc .box_wc{/*display: block;width: 270px;*/display: inline-block;width:23.5%;margin: 0 2% 20px 0;padding: 0;}
	#wedding_collection .inner_wc .box_wc:nth-of-type(4n){margin: 0 0 20px 0%}
	#wedding_collection .inner_wc .box_wc a{display: block;}
	#wedding_collection .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
	#wedding_collection .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
	#wedding_collection .inner_wc .box_wc a .wc_category{color:#a38a78;  font-size: 14px;  margin: 10px auto 0px auto; padding: 0; letter-spacing: 0px;text-align: center;font-weight:400}
	#wedding_collection .inner_wc .box_wc a .wc_category_jpn{display:none;}
	#wedding_collection .inner_wc .box_wc a:hover{opacity:0.7;}
	#wedding_collection .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}		
}
@media (max-width: 700px) {
    /*ファセッツコレクション　2023*/
    #facets_collection_index{display: none;background-color: #f9f7f3;  padding: 50px 0 30px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#facets_collection_index h2{color:#7a6a56;  font-size: 24px;  margin: 0px auto 10px auto; padding: 0; letter-spacing:1px;text-align: center;font-weight: normal;}
	#facets_collection_index h2 span{display:block; margin: 0px auto 5px auto; font-size: 16px;letter-spacing: 1px;}	
	#facets_collection_index .inner_wc{width: 80%;margin: 0 auto;font-size: 0}
	#facets_collection_index .inner_wc .box_wc{display: block;display: inline-block;width:48%;margin: 0 2% 20px 0;padding: 0;vertical-align: top}
	#facets_collection_index .inner_wc .box_wc:nth-of-type(2n){margin: 0 0 20px 2%}
	#facets_collection_index .inner_wc .box_wc a{display: block;}
	#facets_collection_index .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
	#facets_collection_index .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
	#facets_collection_index .inner_wc .box_wc a .wc_category{color:#a38a78;  font-size: 16px;  margin: 10px auto 0px auto; padding: 0; letter-spacing: 1px;text-align: center;font-weight:400}
	#facets_collection_index .inner_wc .box_wc a:hover{opacity:0.7;}
	#facets_collection_index .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}
    /*ウエディングコレクション　2023*/
	#wedding_collection{background-color: #f9f7f3;  padding:30px 0 30px 0;  margin: 0 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#wedding_collection h2{color:#7a6a56;  font-size: 24px;  margin: 0px auto 10px auto; padding: 0; letter-spacing:1px;text-align: center;font-weight: normal;}
	#wedding_collection h2 span{display:block; margin: 0px auto 5px auto; font-size: 16px;letter-spacing: 1px;}	
	#wedding_collection .inner_wc{width: 70%;margin: 0 auto 20px auto;font-size: 0;display: flex;flex-direction: column;}
	#wedding_collection .inner_wc .box_wc{/*display: block;width: 270px;display: inline-block;width:48%;margin: 0 2% 20px 0;*/width:100%;padding: 0;display:block;margin: 0 auto 20px auto;}
	#wedding_collection .inner_wc .box_wc:last-of-type{margin: 0 auto}
	#wedding_collection .inner_wc .box_wc a{display: block;}
	#wedding_collection .inner_wc .box_wc a figure{margin: 0;padding: 0;overflow:hidden;}
	#wedding_collection .inner_wc .box_wc a figure img{width: 100%;transition:1s all;}
	#wedding_collection .inner_wc .box_wc a .wc_category{display:none;color:#a38a78;  font-size: 16px;  margin: 10px auto 0px auto; padding: 0; letter-spacing: 1px;text-align: center;font-weight:400}
	#wedding_collection .inner_wc .box_wc a .wc_category_jpn{display: inherit;color:#a38a78;  font-size: 16px;  margin: 10px auto 0px auto; padding: 0; letter-spacing: 1px;text-align: center;font-weight:400}
	#wedding_collection .inner_wc .box_wc a:hover{opacity:0.7;}
	#wedding_collection .inner_wc .box_wc a:hover figure img{transform:scale(1.2,1.2);  transition:1s all;}	
	#wedding_collection .inner_wc .order1{order:1;}
	#wedding_collection .inner_wc .order2{order:2;}
	#wedding_collection .inner_wc .order3{order:3;}
	#wedding_collection .inner_wc .order4{order:4;}
	#wedding_collection .inner_wc .order5{order:5;}
	#wedding_collection .box_wc_all{display: inherit;width:80%;padding: 0;display:block;margin: 0 auto 0px auto;}
	#wedding_collection .box_wc_all a{display: block;background:#a38a78; font-size: 12px; padding:14px 0; letter-spacing: 1px;text-align: center;font-weight:400;color: white }
}

/*ネイチャーベージュ動画　2023*/
#nature_beige{background-color: #efeae2;padding: 0px 0;}
#nature_beige video{display: block; width:100%;margin:0 auto;padding: 0px 0;}
@media (max-width: 700px) {
	/*ネイチャーベージュ動画　2023*/
	#nature_beige{background-color: #efeae2;padding: 0px 0;}
	#nature_beige video{display: block; width:100%;margin:0 auto;padding: 0px 0;}
}

/*ブランドイメージ紹介*/
@media (min-width: 1051px){
	#brand_introduction{/*background:#efeae2;*/padding:0px 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#brand_introduction .inner_area01,
	#brand_introduction .inner_area02{position: relative;width:100%; margin: 0 auto 0px auto;}
	
	#brand_introduction .inner_area01::before,
	#brand_introduction .inner_area02::before{  content: "";  display: block;  padding-top:30%;}
	
	#brand_introduction .inner_area01 .figure_big{position: absolute;top: 0;left: 0; width: 50%;height: 100%; overflow: hidden;}
	#brand_introduction .inner_area01 .figure_big img{width:100%;height:auto;object-fit: cover}	
	#brand_introduction .inner_area01 .introduction_text{position: absolute;top:50%;transform: translateY(-50%);right:0%;width: 50%;padding: 0;margin: 0;font-size: 24px;letter-spacing: 0px;color: #a38a78;line-height: 40px;font-weight:600;text-align: center;transition: color 0.5s;}
	
	#brand_introduction .inner_area01 .introduction_text .tiny_title{color: #a38a78;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_text{color: #a38a78;font-size: 14px;line-height:1.7;width: 80%;margin: 0 auto 30px auto;font-weight:400;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_banner{color: #a38a78;font-size: 14px;width: 30%;margin: 0 auto;border: 1px solid #a38a78;font-weight:400;transition: color 0.5s;}
	
	#brand_introduction .inner_area02 .figure_big{position: absolute;top: 0;right: 0; width: 50%; height: 100%; overflow: hidden;}
	#brand_introduction .inner_area02 .figure_big img{width: 100%;height:auto;object-fit: cover}
	#brand_introduction .inner_area02 .introduction_text{position: absolute;top: 50%;transform: translateY(-50%);left:0%;width: 50%; padding: 0;margin: 0;font-size: 24px;letter-spacing: 0px;color:#a38a78;line-height: 40px;font-weight:600;text-align: center;transition: color 0.5s;}
  
	#brand_introduction .inner_area01 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area01 a:hover .introduction_text,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_title,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_text{color: #ed9b61;}
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_banner{background: #ed9b61;color:white;border: 1px solid #ed9b61;}
	
	#brand_introduction .inner_area02 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area02 a:hover .introduction_text {color: #ed9b61;}  
  
	/*
	#brand_introduction .inner_area02 .figure_big{position: absolute;top: 0;right: 0; width: 500px;height: 340px; }
	#brand_introduction .inner_area02 .figure_big img{width: 100%;height:340px;object-fit: cover}
	#brand_introduction .inner_area02 .figure_small{position: absolute;bottom: 0;right:40%;width:210px;height:210px;}
	#brand_introduction .inner_area02 .figure_small img{width: 100%;height:210px;object-fit: cover}
	#brand_introduction .inner_area02 .introduction_text{position: absolute;top: 30%;left:10%; padding: 0;margin: 0;font-size: 26px;letter-spacing: 0px;color:#a38a78;line-height: 40px;font-weight: 400;}
	*/
	.curtain_anime{  position: relative;  width: 100%;  height: auto;  overflow: hidden;}
	.curtain_anime::before{    content: '';    width: 100%;    height: 100%;    position: absolute;    left: 0;    top: 0;    background:#a38a78;    z-index: 2;    transition: .5s;}
	.curtain_anime.scrollin::before{    transform: translateX(100%);}
	.curtain_anime img{    opacity: 0;    transition: .5s;}
	.curtain_anime.scrollin img{    opacity: 1;}
	
	#index_category{background:#f9f7f3;padding: 80px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#index_category h3{/*color: #a38a78;*/color:#d1bc9d;  font-size: 30px;  margin: 0 auto 50px auto;padding: 0;  font-weight: 400;text-align: center;letter-spacing: 2px;}
	#index_category .inner_ic{display: flex;justify-content: space-between;width:60%;max-width: 1200px;min-width:1000px;margin: 0 auto}
	#index_category .inner_ic .unit{width: 23%;/*max-width: 300px;*/}
	#index_category .inner_ic .unit a{display:block;text-align: center;text-decoration: none}
	#index_category .inner_ic .unit a .photo{width: 100%;aspect-ratio:1/1;overflow: hidden;}
	#index_category .inner_ic .unit a .photo img{width: 100%;height: 100%;object-fit: cover;transition:1s all;}
	#index_category .inner_ic .unit a .name{color: #a38a78;font-size:15px;letter-spacing: 1px;font-weight: 400;transition:1s all;}	
	#index_category .inner_ic .unit a:hover .photo img{transform: scale(1.2);}
	#index_category .inner_ic .unit a:hover .name{opacity:0.5;}
}

@media screen and (min-width:701px) and ( max-width:1050px)  {
	#brand_introduction{padding:0px 0 0px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#brand_introduction .inner_area01,
	#brand_introduction .inner_area02{position: relative;width:100%; margin: 0 auto 0px auto;}
	
	#brand_introduction .inner_area01::before,
	#brand_introduction .inner_area02::before{  content: "";  display: block;  padding-top:30%;}
	
	#brand_introduction .inner_area01 .figure_big{position: absolute;top: 0;left: 0; width: 50%;height: 100%; overflow: hidden;}
	#brand_introduction .inner_area01 .figure_big img{width:100%;height:auto;object-fit: cover}	
	#brand_introduction .inner_area01 .introduction_text{position:absolute;top:50%;right:0%;transform:translateY(-50%);width:50%;padding:0;margin:0;font-size:20px;letter-spacing:0;color:#a38a78;line-height:40px;font-weight:400;text-align:center;transition: color 0.5s;}
	
	#brand_introduction .inner_area01 .introduction_text .tiny_title{color: #a38a78;font-size:20px;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_text{color: #a38a78;font-size: 14px;line-height:1.7;width: 80%;margin: 0 auto 10px auto;font-weight:400;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_banner{color: #a38a78;font-size: 13px;width:60%;margin: 0 auto;border: 1px solid #a38a78;font-weight:400;transition: color 0.5s;}
	
	#brand_introduction .inner_area02 .figure_big{position: absolute;top: 0;right: 0; width: 50%; height: 100%; overflow: hidden;}
	#brand_introduction .inner_area02 .figure_big img{width: 100%;height:auto;object-fit: cover}
	#brand_introduction .inner_area02 .introduction_text{position:absolute;top:50%;transform:translateY(-50%);left:0%;width:50%;padding:0;margin:0;font-size:20px;letter-spacing:0;color:#a38a78;line-height:40px;font-weight:400;text-align: center;transition: color 0.5s;}
	
	#brand_introduction .inner_area01 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area01 a:hover .introduction_text,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_title,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_text{color: #ed9b61;}
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_banner{background: #ed9b61;color:white;border: 1px solid #ed9b61;}
	#brand_introduction .inner_area02 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area02 a:hover .introduction_text {color: #ed9b61;}
  
	.curtain_anime{  position: relative;  width: 100%;  height: auto;  overflow: hidden;}
	.curtain_anime::before{    content: '';    width: 100%;    height: 100%;    position: absolute;    left: 0;    top: 0;    background:#a38a78;    z-index: 2;    transition: .5s;}
	.curtain_anime.scrollin::before{    transform: translateX(100%);}
	.curtain_anime img{    opacity: 0;    transition: .5s;}
	.curtain_anime.scrollin img{    opacity: 1;}
	
	#index_category{background:#f9f7f3;padding: 50px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#index_category h3{color:#d1bc9d;  font-size:24px;  margin: 0 auto 30px auto;padding: 0;  font-weight: 400;text-align: center;letter-spacing: 1px;}
	#index_category .inner_ic{display: flex;justify-content: space-between;width:95%;margin: 0 auto}
	#index_category .inner_ic .unit{width: 24%;}
	#index_category .inner_ic .unit a{display:block;text-align: center;text-decoration: none}
	#index_category .inner_ic .unit a .photo{width: 100%;aspect-ratio:1/1;overflow: hidden;}
	#index_category .inner_ic .unit a .photo img{width: 100%;height: 100%;object-fit: cover;transition:1s all;}
	#index_category .inner_ic .unit a .name{color: #a38a78;font-size:13px;letter-spacing: 1px;font-weight: 400;transition:1s all;}	
	#index_category .inner_ic .unit a:hover .photo img{transform: scale(1.2);}
	#index_category .inner_ic .unit a:hover .name{opacity:0.5;}
}

@media (max-width: 700px) {
	#brand_introduction{padding:50px 0 30px 0;}
	#brand_introduction .inner_area01,
	#brand_introduction .inner_area02{/*position: relative;*/width:80%;/*max-width: 1200px;*//*height:300px;*/ margin: 0 auto 10px auto;}
	
	#brand_introduction .inner_area01 .figure_big{/*position: absolute;top: 0;left: 0;*/ width:100%;height:200px;margin: 0 auto 10px auto}
	#brand_introduction .inner_area01 .figure_big img{width: 100%;height:200px;object-fit: cover}
	#brand_introduction .inner_area01 .introduction_text{/*position: absolute;top:26%;right:0%;width:40%;*/padding: 0;margin: 0;font-size: 16px;letter-spacing: 0px;color: #a38a78;line-height:30px;font-weight: 400;transition: color 0.5s;}
	
	#brand_introduction .inner_area01 .introduction_text .tiny_title{color: #a38a78;font-size: 16px;padding: 0;margin: 0 auto 5px auto;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_text{color: #a38a78;font-size: 14px;line-height:1.7;padding: 0;margin: 0 auto 10px auto;font-weight:400;transition: color 0.5s;}
	#brand_introduction .inner_area01 .introduction_text .tiny_banner{color: #a38a78;font-size: 12px;width: 90%;margin: 0 auto 20px auto;padding:5px 0;border: 1px solid #a38a78;font-weight:400;text-align: center;transition: color 0.5s;}
	
	#brand_introduction .inner_area02 .figure_big{/*position: absolute;top: 0;right: 0;*/ width:100%;height: 200px;margin: 0 auto 10px auto}
	#brand_introduction .inner_area02 .figure_big img{width: 100%;height:200px;object-fit: cover}
	#brand_introduction .inner_area02 .introduction_text{/*position: absolute;top: 26%;left:10%;width:40%;*/ padding: 0;margin: 0;font-size: 16px;letter-spacing: 0px;color:#a38a78;line-height: 30px;font-weight: 400;transition: color 0.5s;}
	
	#brand_introduction .inner_area01 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area01 a:hover .introduction_text,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_title,
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_text{color: #ed9b61;}
	#brand_introduction .inner_area01 a:hover .introduction_text .tiny_banner{background: #ed9b61;color:white;border: 1px solid #ed9b61;}
	#brand_introduction .inner_area02 a:hover .figure_big img {transform: scale(1.2);}
	#brand_introduction .inner_area02 a:hover .introduction_text {color: #ed9b61;}
  
	.curtain_anime{  position: relative;  width: 100%;  height: auto;  overflow: hidden;}
	.curtain_anime::before{    content: '';    width: 100%;    height: 100%;    position: absolute;    left: 0;    top: 0;    background:#a38a78;    z-index: 2;    transition: .5s;}
	.curtain_anime.scrollin::before{    transform: translateX(100%);}
	.curtain_anime img{    opacity: 0;    transition: .5s;}
	.curtain_anime.scrollin img{    opacity: 1;}	
	
	#index_category{background:#f9f7f3;padding:30px 0;font-family: montserrat, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"}
	#index_category h3{color:#d1bc9d; font-size:20px;  margin: 0 auto 20px auto;padding: 0;  font-weight: 400;text-align: center;letter-spacing: 1px;}
	#index_category .inner_ic{width:70%;margin: 0 auto}
	#index_category .inner_ic .unit{width: 100%;margin: 0 auto 10px auto;}
	#index_category .inner_ic .unit a{display:block;text-align: center;text-decoration: none}
	#index_category .inner_ic .unit a .photo{width: 100%;aspect-ratio:1/1;overflow: hidden;}
	#index_category .inner_ic .unit a .photo img{width: 100%;height: 100%;object-fit: cover;transition:1s all;}
	#index_category .inner_ic .unit a .name{color: #a38a78;font-size:13px;letter-spacing: 0px;font-weight: 400;transition:1s all;}	
	#index_category .inner_ic .unit a:hover .photo img{transform: scale(1.2);}
	#index_category .inner_ic .unit a:hover .name{opacity:0.5;}
}