@charset "utf-8";
/* CSS Document */


/**********************************************************/
/* PC */
/**********************************************************/


/* general */
html{
  font-size: 62.5%; /*16px × 62.5% = 10px*/
  width: 100%;
}
body{
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #000;
  font-feature-settings: "palt"; /* 自動カーニング */
  letter-spacing:0.15em;
  line-height: 1;
  min-width: 1140px;
}
img{
  max-width: 100%;
  vertical-align:bottom;
  image-rendering: -webkit-optimize-contrast;
}
a{
  color: #4B4B4B;
  text-decoration: none;
}
a:hover{
  opacity: 0.7;
  transition: 0.3s;
}
/* ◎ここから */
* {
  box-sizing: border-box;
}
/* flex */
.flex{
  display: flex;
}
/*右から左へ横並び*/
.reverse{
  flex-direction: row-reverse;
}
.wrap{
  flex-wrap: wrap;
}
.flex-start{
  align-items: flex-start;
}
.pc{
  display: block;
}
.sp{
  display: none;
}


/* font-family */
/* 游明朝体 */
.yumincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.gothic{
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.oswald{
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}
.raleway{
  font-family: 'Raleway', sans-serif;
}
.bold{
  font-weight: bold;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}
.inner04,
.inner05 {
  margin-inline: auto;
  width: min(1200px, 90%);
}
.notoserif {
  font-family: 'Noto Serif Jp', 'serif';
}

/**********************************
 その場でふわっ
**********************************/

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

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/**********************************
 下からふわっ
**********************************/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:4s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger{
  opacity: 0;
}


/**********************************
 順番にアニメーション
**********************************/

.delay-time02{
animation-delay: 0.2s;
}
.delay-time04{
animation-delay: 0.4s;
}
.delay-time06{
  animation-delay: 0.6s;
}
.delay-time08{
  animation-delay: 0.8s;
}
.delay-time10{
  animation-delay: 1s;
}
.delay-time12{
  animation-delay: 1.2s;
}
.delay-time14{
  animation-delay: 1.4s;
}
.box001{
	opacity: 0;
}



/**********************************
header
**********************************/
header {
  position: sticky;
  z-index: 100;
}
header::before{
  position: absolute;
  content: "";
  top:10px;
  left:10px;
  background: #A16F4E;
  width: 45px;
  height: 2px;
  border-radius: 5px;
}
header::after{
  position: absolute;
  content: "";
  top:10px;
  left:10px;
  background: #A16F4E;
  width: 2px;
  height: 194px;
  border-radius: 5px;
}
h1{
  width: 85px;
  position: absolute;
  top:50px;
  left:70px;
}
h1 img{
  width: 100%;
}
header nav{
  position: fixed;
  top:42px;
  right:25px;
}
header nav li{
  margin-bottom: 5px;
}
header nav li:last-of-type{
  margin-bottom: 0;
}

header nav a{
  font-size: 1.4rem;
  position: relative;
  display:inline-block;
  letter-spacing: 0;
  border: 1px solid #A16F4E;
  width: 125px;
  height: 34px;
  color: #000;
  background: #fff;
  border-radius: 26px;
  box-shadow:  1px 3px 5px 1px rgba(0,0,0,.5);
  text-align: center;
  padding-top: 9px;
}
header nav .member a{  
  color: #fff;
  background: #A16F4E;
  border: 1px solid #fff;
}

/**********************************
header（下層共通）
**********************************/
.under-header{
  background-image:url("../images/common/under-pages.png");
  background-position: top 0 left 0;
  background-repeat: no-repeat;
  background-size: 480px;
  height: 312px;
}
header.under-header::before{
  background: #fff;
}
header.under-header::after{
  background: #fff;
}
header nav .member a{
  color: #fff;
  background: #A16F4E;
  border: 1px solid #fff;
}
header nav .cart a{  
  color: #000;
  background: #FAE14C;
  border: solid 1px #fff;
}
header nav .return a{
  background: #fff;
  color: #000;
}

/**********************************
ハンバーガー
**********************************/
/*hoverした際の背景色の設定*/
.btnripple2:hover{
	background:#A16F4E;	
  cursor:pointer;
}

/*波形を2つ設定*/
.btnripple2::after,
.btnripple2::before {
  content: '';
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  opacity: 1;
  animation:1s circleanime linear infinite;
}
.btnripple2::before {
  border: 1px solid #A16F4E;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
.btnripple2::before {
    animation-delay:.5s; 
}

/*波形のアニメーション*/
@keyframes circleanime{
	0%{
	  transform: scale(0.68);
	}
	100%{
		transform: scale(1.2);
		opacity: 0;
	}
}
.openbtn{
	position: fixed;
  bottom: 25px;
  right: 25px;
	background:#A16F4E;
  width: 84px;
  height:84px;
	border-radius: 50%;
  z-index: 999;/*ボタンを最前面に*/
}
/*ボタン内側*/
.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: #fff;
  width: 62%;
  left: 10px;
}
.openbtn span:nth-of-type(1) {
  opacity: 0;
  top: 18px;
  left: 18px;
}
.openbtn span:nth-of-type(2) {
  top: 32px;
  left: 17px;
  font-size: 2.0rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.openbtn span:nth-of-type(3) {
	opacity: 0;
  top: 30px;
  left: 18px;
}
.openbtn span:nth-of-type(4) {
  border-radius: 50%;
  border: solid 1px #fff;
  width: 78px;
  height: 78px;
  top: 3px;
  left: 3px;
}
.openbtn.active {
  top: 25px;
  right: 25px;
  background: #fff;
  width: 50px;
  height: 50px;
}
.openbtn.active span:nth-of-type(1) {
  top: 19px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
  opacity: 1;
	background:#A16F4E;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 31px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
  opacity: 1;
  background:#A16F4E;
}
.openbtn.active span:nth-of-type(4) {
  display: none;
}


/**********************************
　ハンバーガー内メニュー
**********************************/
#g-nav{
  position:fixed;
  z-index: 998;
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;
  background:rgba(0,0,0,.5);
  transition: all 0.6s;
}
#g-nav.panelactive{
  right: 0;
}
#g-nav.panelactive #g-nav-list{
  position: fixed;
  z-index: 998; 
  width:50%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFFFFF;
  right: 0;  transition: all 0.6s;
}
#g-nav .page-link {
  position: absolute;
  z-index: 998;
  top:50%;
  left:65%;
  transform: translate(-65%,-50%);
}
#g-nav-list img.nav-img{
  position: absolute;
  z-index: 998;
  top:50%;
  left:20%;
  transform: translate(-20%,-50%);
  width: 15.5%;
}
#g-nav-list .nav-border{
  position: absolute;
  z-index: 998;
  top:50%;
  left:3%;
  transform: translate(-3%,-50%);
  content: "";
  width: 1px;
  height: 70vh;
  background: #A16F4E;
}
#g-nav li {
  text-align: center;
  margin: 20px;
}
#g-nav li a{
  color: #000;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.2rem;
  text-align: left;
}
#g-nav li a::before{
  position: absolute;
  content: "";
  width: 28px;
  height: 1px;
  background: #000;
  top: 16px;
  left: -38px;
}
#g-nav li a:hover::before{
  width: 10px;
  background: #A16F4E;
  transition: 0.3s;
  left: -20px;
}
#g-nav li a:hover {
    opacity: 1;
    transition: 0.3s;
    color: #A16F4E;
}
#under-nav-list{
  position: absolute;
  z-index: 998;
  bottom:45px;
  right:26px;
  transform: translateY(-10%);
  font-size: 1.0rem;
}
#under-nav-list li{
  margin: 0px;
}
#under-nav-list li a{
  color: #A16F4E;
}
#under-nav-list li a::before{
  background: #A16F4E;
}
/**********************************
section共通
**********************************/
.top-ttl{
  min-width: 569px;
  width: 39.51%;
  height: 329px;
  background: #EDEDED;
  position: relative;
  z-index: -1;
}
.top-ttl h2{
  font-size: 2.6rem;
  font-weight: normal;
  color: #A16F4E;
  position: relative;
  padding: 140px 0;
  left:120px;
  height: 329px;
}
.top-ttl h2::after{
  position: absolute;
  content: "";
  width: 78px;
  height: 2px;
  background: #A16F4E;
  top:117px;
  left:0;
}
.more-btn {
  margin: 30px 0 0 auto;
  width: 100%;
  text-align: right;
}
.more-btn a {
  color: #000;
  font-size: 2rem;
  width: 130px;
  position: relative;
  display: inline-block;
  padding: 0 10px 0 0;
  text-decoration: none;
  outline: none;
}
.more-btn a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 4%;
  width: 126px;
  height: 1px;
  background: #333;
  transition: all .3s;
}
.more-btn a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -2px;
  width: 10px;
  height: 1px;
  background: #333;
  transform: rotate(40deg);
  transition: all .3s;
}
.more-btn a:hover::before{
  left:20%;
}
.more-btn a:hover::after{
  right:-23px;
}





/**********************************
footer
**********************************/
footer{
  position: relative;
  /* height: 248px; */
}
footer::after{
  content:"";
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 120px;
  width: calc(100% - 120px);
  height: 224px;
  clip-path: polygon(0 48%, 100% 0, 100% 100%, 0% 100%);
  background: #A16F4E;
  z-index: -1;
}
footer div.flex{
  justify-content: space-between;
  padding-top: 211px;
  align-items: flex-end;
}
footer nav {
  width: 600px;
  margin-right: 161px;
  justify-content: space-between;
  line-height: 2.2;
  margin-bottom: 8px;
}
footer nav a{
  color: #fff;
}
footer img{
  width: 63px;
  margin-left: 67px;
  margin-bottom: 25px;
}
.copyright{
  line-height: 3;
  font-size: 1rem;
  text-align: center;
}

.br_nonePc {
  display: none;
}