@charset "utf-8";
/*--------------------------------------------------------------
   RESET
--------------------------------------------------------------*/
html{color:#424141;background:#fff}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}
ol,ul{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-size:inherit;font-weight:inherit;}
legend{color:#000}
*{zoom: 1;}
img{vertical-align: top;}
:focus{outline:none;}
/*--------------------------------------------------------------
   BASIC
--------------------------------------------------------------*/
*{
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width:100%;
  min-height: 100vh;
  line-height: 1;
  /* 明朝体 */
  /*font-family: 'Noto Serif CJK JP','Noto Serif JP','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',serif;*/
  /* ゴシック体 */
  font-family: 'Noto Sans CJK JP','Noto Sans JP','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
button, input, select, textarea {
  line-height: 1;
  /* 明朝体 */
  /*font-family: 'Noto Serif CJK JP','Noto Serif JP','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',serif;*/
  /* ゴシック体 */
  font-family: 'Noto Sans CJK JP','Noto Sans JP','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
a{
  text-decoration: none;
  display: inline-block;
  color: #424141;
}
a:hover {
  color: #9e9e9e;
}
a.btn{
  display: block;
}
img{
  width:100%;
  max-width:100%;
  height:auto;
}
@media screen and (min-width: 768px){
  body {
    font-size: 1.4rem;
  }
  img{
    width:auto;
    max-width:100%;
    height:auto;
  }
}
/*--------------------------------------------------------------
   HOVER EFFECT
--------------------------------------------------------------*/
@media screen and (min-width: 768px){
  .op a:hover {
    opacity: 0.5;
  }
  .tr__op a {
    transition: 0.3s;
  }
  .tr__op:hover a {
    opacity: 0.7;
  }
  .zoom {
    /*はみ出し回避のため個別にサイズ指定必須*/
    overflow: hidden;
    vertical-align: top;
  }
  .zoom a {
    transition-duration: .3s;
  }
  .zoom:hover a{
    transition-duration: .3s;
    transform: scale(1.2);
  }
}
/*--------------------------------------------------------------
   動き(修正禁止)
--------------------------------------------------------------*/
.mo,
.start{
  opacity: 0;
  transform: translate(0,30px);
  -webkit-transform: translate(0,30px);
}
.mo.ve,
.start.ve{
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s,-webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s,-webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s,transform 1s ease 0s;
  transition: opacity 1s ease 0s,transform 1s ease 0s,-webkit-transform 1s ease 0s;
  -webkit-transform: translate(0,0);
          transform: translate(0,0);
}

/*--------------------------------------------------------------
   SMALL PARTS
--------------------------------------------------------------*/
.pc{
  display: none;
}
.sp{
  display: block;
}
.en{ /* 英字フォント指定 */
  font-family: 'Montserrat', serif;
}
.serif{ /* 明朝体フォント指定 */
  font-family: 'Noto Serif CJK JP','Noto Serif JP', serif;
}
.sansserif{ /* ゴシック体フォント指定 */
  font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
}
.bg__img{
  background-size: cover;
  background-position: center;
}
.cf {
  display: block;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.cf:before {
  content: "";
  display: block;
  clear: both;
}
.ta__c{
  text-align: center;
}
.ta__r{
  text-align: right;
  display: block;
}
.before::before,
.after::after{
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
}
.fw__b{
  font-weight: bold;
}
.lh__narrow{
  line-height: 1.6;
}
.lh__normal{
  line-height: 1.8;
}
.lh__wide{
  line-height: 2.4;
}
.arrow__bk{
  background-image: url(../img/renewal/common/icon__arrow__bk.png);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  background-size: 6px;
  padding-right: 10px;
}
.arrow__wh{
  background-image: url(../img/renewal/common/icon__arrow__wh.png);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  background-size: 6px;
  padding-right: 10px;
}
.arrow__gd{
  background-image: url(../img/renewal/common/icon__arrow__gd.png);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  background-size: 6px;
  padding-right: 10px;
}
@media screen and (min-width: 768px){
  .pc{
    display: block;
  }
  .sp{
    display: none;
  }
}

/*--------------------------------------------------------------
   WIDTH
--------------------------------------------------------------*/
.w__narrow,
.w__base,
.w__base__sp{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px){
  .w__narrow {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .w__base__sp{
    width: auto;
  }
  .w__base,
  .w__base__pc{
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .w__middle{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .w__wide{
    width: 100%;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
  }
  .w__full{
    width: 100%;
  }
}

/*--------------------------------------------------------------
   COLOR
--------------------------------------------------------------*/
.fC__white{
  color: #fff;
}
.fC__gray{
  color: #7d7d7d;
}
.fC__darkGray{
  color: #666;
}
.fC__gold{
  color: #b39f66;
}
.bG__white{
  background-color: #fff;
}
.bG__gold{
  background-color: #dfdcd4;
}
.bG__gray{
  background-color: #efefef;
}
.bG__darkGray{
  background-color: #444;
}
.bG__black{
  background-color: #231815;
}
.bG__geenBlue{
  background-color: #30b2e5;
}
.bG__marble{
  background-image: url(../img/renewal/common/bg__marble.jpg);
  background-repeat: repeat;
}
.fill__white{
  fill: #fff;
}

/*--------------------------------------------------------------
   PARTS
--------------------------------------------------------------*/
.base__btn__wrap { 
  width: 100%;
  margin-top: 20px;
}
.base__btn a {
  position: relative;
  display: inline-block;
  border: 1px solid #b39f66;
  color: #b39f66;
  text-decoration: none;
  width: 80vw;
  height: 13vw;
  background-image: url(../img/renewal/common/icon__arrow__gd.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 6px;
}
.base__btn  a span{
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.base__btn__wh__wrap { 
  width: 100%;
  margin-top: 20px;
}
.base__btn__wh a {
  position: relative;
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  width: 80vw;
  height: 13vw;
  background-image: url(../img/renewal/common/icon__arrow__wh.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 6px;
}
.base__btn__wh  a span{
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 768px){
  .base__btn__wrap {
    margin-top: 40px;
  }
  .base__btn a {
    width: 334px;
    height: 66px;
    transition: 0.3s;
  }
  .base__btn a:hover {
    border: 1px solid #a29369;
    color: #ffffff;
    background-color: #a29369;
    background-image: url(../img/renewal/common/icon__arrow__wh.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 6px;
  }
  .base__btn__wh__wrap {
    margin-top: 40px;
  }
  .base__btn__wh a {
    width: 334px;
    height: 66px;
    transition: 0.3s;
  }
  .base__btn__wh a:hover {
    border: 1px solid #a29369;
    color: #ffffff;
    background-color: #a29369;
  }
}

/*--------------------------------------------------------------
   TITLE
--------------------------------------------------------------*/
.title__box__h2{
  text-align: center;
  padding-bottom: 30px;
}
.title__box__h2 h2{
  font-size: 27px;
  font-size: 27px;
}
.title__box__h2 span{
  display: block;
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (min-width: 768px){
  .box__h2 h2{
    font-size: 32px;
  }
  .box__h2 span{
    font-size: 20px;
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
   ハンバーガー
--------------------------------------------------------------*/
#wrapper nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background:#333;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2
}
#wrapper nav ul li {
    display:block;
    padding: 20px 28px
}
#wrapper nav ul li a {
    text-decoration: none;
    color: #ddd
}
#wrapper .btn-gnavi {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
#wrapper .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
#wrapper .btn-gnavi span:nth-child(1) {
    top: 0
}
#wrapper .btn-gnavi span:nth-child(2) {
    top: 10px
}
#wrapper .btn-gnavi span:nth-child(3) {
    top: 20px
}
#wrapper .btn-gnavi.open span {
    background: #fff
}
#wrapper .btn-gnavi.open span {
    width: 24px;
}
#wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
}
#wrapper .contents section:nth-child(odd) p {
    left: 10%
}
#wrapper .contents section:nth-child(even) p {
    right: 10%
}

/*--------------------------------------------------------------
   フローティングバナー
--------------------------------------------------------------*/
.coupon__link{
  position: fixed;
  width: 100px;
  height: 100px;
  right: 15px;
  bottom: 80px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 495;
  background : -moz-linear-gradient(50% 0% -90deg,rgba(219, 192, 118, 1) 10.96%,rgba(219, 192, 118, 1) 14.13%,rgba(179, 159, 102, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(219, 192, 118, 1) 10.96%, rgba(219, 192, 118, 1) 14.13%, rgba(179, 159, 102, 1) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0.1096,rgba(219, 192, 118, 1) ),color-stop(0.1413,rgba(219, 192, 118, 1) ),color-stop(1,rgba(179, 159, 102, 1) ));
  background : -o-linear-gradient(-90deg, rgba(219, 192, 118, 1) 10.96%, rgba(219, 192, 118, 1) 14.13%, rgba(179, 159, 102, 1) 100%);
  background : -ms-linear-gradient(-90deg, rgba(219, 192, 118, 1) 10.96%, rgba(219, 192, 118, 1) 14.13%, rgba(179, 159, 102, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#DBC076', endColorstr='#B39F66' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(219, 192, 118, 1) 10.96%, rgba(219, 192, 118, 1) 14.13%, rgba(179, 159, 102, 1) 100%);
  box-shadow : 0px 0px 10px rgba(0, 0, 0, 0.15);
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=0, 
  Color='#000000') progid:DXImageTransform.Microsoft.gradient(startColorstr='#DBC076',endColorstr='#B39F66' , GradientType=0);
}
.coupon__link a{
  color: #fff;
  text-decoration: none;
  display: inline-table;
  width: 100px;
  height: 100px;
  vertical-align: middle;
  text-align: center;
}
.coupon__link p{
  font-size : 15px;
  letter-spacing : 1.3px;
  margin-top: 36px;
}
.coupon__link span {
  font-size : 10px;
  letter-spacing : 0.17px;
  text-align: center;
}
.coupon__link span:after{
  content: "";
  display: inline-block;
  background-image: url(/img/renewal/common/icon__arrow__wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 8px;
  height: 8px;
  padding-left: 2px;
}
@media screen and (min-width: 768px){
  .coupon__link{
    width: 220px;
    height: 220px;
    right: 50px;
    bottom: 60px;
    transition: 0.2s;
  }
  .coupon__link:hover{
    transform: scale(1.05, 1.05);
    background : -moz-linear-gradient(50% 0% -90deg,rgba(235, 203, 115, 1) 10.96%,rgba(232, 199, 109, 1) 14.13%,rgba(176, 151, 81, 1) 100%);
    background : -webkit-linear-gradient(-90deg, rgba(235, 203, 115, 1) 10.96%, rgba(232, 199, 109, 1) 14.13%, rgba(176, 151, 81, 1) 100%);
    background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0.1096,rgba(235, 203, 115, 1) ),color-stop(0.1413,rgba(232, 199, 109, 1) ),color-stop(1,rgba(176, 151, 81, 1) ));
    background : -o-linear-gradient(-90deg, rgba(235, 203, 115, 1) 10.96%, rgba(232, 199, 109, 1) 14.13%, rgba(176, 151, 81, 1) 100%);
    background : -ms-linear-gradient(-90deg, rgba(235, 203, 115, 1) 10.96%, rgba(232, 199, 109, 1) 14.13%, rgba(176, 151, 81, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#EBCB73', endColorstr='#B09751' ,GradientType=0)";
    background : linear-gradient(180deg, rgba(235, 203, 115, 1) 10.96%, rgba(232, 199, 109, 1) 14.13%, rgba(176, 151, 81, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EBCB73',endColorstr='#B09751' , GradientType=0);
  }
  .coupon__link a{
    width: 220px;
    height: 220px;
  }
  .coupon__link p{
    font-size : 30px;
    letter-spacing : 1.5px;
    margin-top: 80px;
  }
  .coupon__link span {
    font-size : 17px;
    line-height : 32px;
    letter-spacing : 0.17px;
    text-align: center;
  }
  .coupon__link span:after{
    width: 12px;
    height: 12px;
    padding-left: 5px;
  }
}
.sp__floating {
  position: fixed;
  background: #dad7cd;
  width: 100%;
  right: 0;
  bottom: 0;
  font-size: 14px;
  letter-spacing: -1px;
  text-align: center;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
}
.sp__floating li {
  display: inline-table;
  text-align: center;
  width: 33%;
}
.sp__floating li a {
  display: block;
  padding: 25px 0;
  color: #444;
}
.sp__floating li a span {
  display: block;
  border-right: 1px solid #444;
}
.sp__floating li:last-child span {
  border-right: none;
}


/*--------------------------------------------------------------
   slickカスタマイズ
--------------------------------------------------------------*/
.slick-next:before, .slick-prev:before {
  font-size: 24px;
}
.slick-prev:before {
  content: ''!important;
  display: inline-block;
  width: 15px;
  height: 24px;
  background-image: url(../img/common/arrow__prev.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.slick-next:before {
  content: ''!important;
  display: inline-block;
  width: 15px;
  height: 24px;
  background-image: url(../img/common/arrow__next.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
