/*///////// ALL /////////*/

@charset "UTF-8";

/*----------------PC--------------*/

/*---- default ----*/

ul,ol{
  list-style-type: none;
  padding:0;
  margin:0;
}
h1,h2,h3,h4,h5,h6{
  margin:0;
  padding:0;
  line-height:1.4;
}
p{
  margin:0;
  line-height:2;
  font-size:16px;
}
a{
  color:#d00;
  text-decoration: none;
}
button{
  border:none;
  padding:0;
}

/*---- default lib----*/

#cboxOverlay {
  background: #000!important;
  opacity: 0.7!important;
}

/* swiper */
.swiper-scrollbar{
}
.swiper-scrollbar-drag{
}
.swiper-button-prev:after,.swiper-button-next:after{
  display:none;
}

/* colorbox */
.cbox{
  position:relative;
  display:block;
  background:#000;
}
.cbox img{
  display:block;
  transition: all 0.5s;
}
.cbox:after{
  position:absolute;
  content:'';
  display:block;
  width:40px;
  height:40px;
  background-image:url(../img/common/icon_zoom.png);
  right:8px;
  bottom:8px;
  border-radius:50%;
  background-size:100%;
  overflow:hidden;
  box-shadow:0px 0px 3px rgba(0,0,0,0.5);
  transition:all 0.5s;
  z-index:1;
}
.cbox:hover img{
  opacity:0.6;
}

/* ---- btn default style ---- */
.btn-defaultstyle{
  position:relative;
  overflow:hidden;
  display:inline-block;
  padding:10px 40px;
  color:#333;
  border:1px solid #333;
  margin:0.5em 0;
}
.btn-defaultstyle:after{
  content:'';
  display: block;
  position:absolute;
  top:0;
  left:0;
  transform: translate(-100%,0);
  width: 100%;
  height: 100%;
  background-color:#000;
  transition:all 0.5s;
  z-index:0;
}
.btn-defaultstyle-text{
  position:relative;
  z-index:1;
}
.btn-defaultstyle:hover{
  color:#ddd;
}
.btn-defaultstyle:hover:after{
  transform: translate(0%,0);
}

/*---- base ----*/
.wrapper{
  position:relative;
  background:#ece6e0;
  overflow: hidden;
  min-width: 1200px;
}
.content-inner{
  max-width:1200px;
  margin:0 auto;
}

/*---- loader ----*/

.loader-wrap{
  position:fixed;
  width:100vw;
  height:100vh;
  z-index:100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-icon{
  position:relative;
  color:#fff;
  z-index:10;
}
.loader-base{
  position:absolute;
  width:100%;
  height:100%;
  display: block;
  background:#ece6e0;
  z-index:0;
}


/*---- footer ----*/

.footer-wrap {
  position:relative;
  background:#000 url(../img/common/footer_bg.jpg);
  background-size:100%;
  color:#ddd;
  padding:5% 0;
}
.footer-inner{
  max-width:1100px;
  padding:0 40px;
  text-align:center;
  margin:0 auto;
}
.footer-snslink {
  padding-bottom:20px;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
}
.footer-snslink__item{
  padding-bottom:20px;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  margin:0 5px;
}
.footer-textlink {
  padding-bottom:20px;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
}
.footer-textlink__item{
  padding:0 10px;
  border-left:1px solid #ddd;
}
.footer-textlink__item:first-of-type{
  border-left:0px solid #ddd;
}
.footer-textlink__item a{
  color:#fff;
}
.footer-logo{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:20px 0 ;
}
.footer-logo__item{
  height:50px;
  margin:0 10px;
}
.footer-rights{
  font-size:12px;
  text-align:center;
}
.footer-rights__logo-image{
  height:12px;
}

/*----------------SP--------------*/

@media screen and (max-width:768px){

  /*---- default ----*/
  p{
    font-size:14px;
  }

  /* ---- btn default style ---- */
  .btn-defaultstyle:hover{
    color:#000;
  }
  .btn-defaultstyle:after{
    display:none;
  }

  /*---- base ----*/
  .wrapper{
    min-width: auto;
  }
  .content-inner{
    max-width:auto;
  }


  /*---- footer ----*/

.footer-wrap {
  position:relative;
  background-color:#000;
  color:#ddd;
  padding:5% 0 10%;
}
.footer-inner{
  max-width:1120px;
  padding:4%;
  text-align:center;
  margin:0 auto;
}
.footer-textlink {
  padding-bottom:20px;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
}
.footer-textlink__item{
  margin:0 5px 10px;
  border:none;
}
.footer-logo{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:20px 0 ;
}
.footer-logo__item{
  height:30px;
  margin:0 10px;
}
.footer-rights{
  font-size:10px;
  text-align:center;
}
.footer-rights__logo-image{
  height:10px;
}


}