@charset "UTF-8";

/*===============================
  header
================================*/
header{
  max-width: 465px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 98%;
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}
header.under_banner{
  top: 61px;
}
header .headerLogo{
  width: 70px;
  height: auto;
}
header .navList .purchaseButton{
  padding: 10px 25px 12px 25px;
  font-size: 1.1rem;
  background: #fff;
  color: #010101;
  position: relative;
  cursor: pointer;
  border-radius: 25px;
  letter-spacing: 0.1em;
}

header .navList{
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
}
header .navList>li{
  margin-right: 15px;
}
header .navList>li:last-child{
  margin-right: 0px;
}
header .navList>li a{
    color: #fff;
}
header .navList .purchaseButton{
  padding: 9px 25px 9px 25px;
  font-size: 1.3rem;
  background: #fff;
  color: #010101;
  position: relative;
  cursor: pointer;
  border-radius: 25px;
  letter-spacing: 0.1em;
  /*border: solid 1px #fff;*/
  background: linear-gradient(to right, #EB6E6E, #A60ACB);
  color: #fff;
  text-align: center;
  line-height: 1;
}
header .navList .purchaseButton>.on{
  font-size: 0.9em;
  padding-bottom: 2px;
  display: inline-block;
}

/*===============================
  naviBlk
================================*/
#naviBlk{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
#naviBlk.active{
  z-index: 100;
  opacity: 1;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
#naviBlk .navList{
  width: 100%;
  max-width: 465px;
  height: 80vh;
  padding: 90px 20px 20px;
  background-color: #484869;
  margin: auto;
  overflow: auto;
}
#naviBlk .navList>li{
  border-bottom: solid 1px #fff;
}
#naviBlk .navList>li a,
#naviBlk .navList>li.form{
  display: block;
  padding: 1em;
  font-size: 16px;
  color: #fff;
}
#naviBlk .navList>li.form{
  border-bottom: none;
}
#naviBlk .navList>li.form>form {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
#naviBlk .navList>li.form input {

}
#naviBlk .navList>li.form input[type="text"] {
  width: calc(100% - 32px - 8px);
  padding: 4px;
  line-height: 24px;
  border: none;
}
#naviBlk .navList>li.form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  cursor: pointer;
  background: url(../img/ico-search.png) no-repeat center center #fff;
  background-size: auto 80%;
  border: none;
  padding: 0;
}
#naviBlk .navList>li.iconList{
  display: flex;
}
#naviBlk .navList>li.iconList a{
  display: block;
  padding: 0.8em 1em;
  font-size: 16px;
}
#naviBlk .navList>li.iconList a>img{
  width: auto;
  height: 32px;
  vertical-align: middle;
}
/* nav-btn
================================*/
.nav-btn{
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  padding: 10px;
  z-index: 9999;
  cursor: pointer;
  transition: all .2s;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  box-sizing: content-box;
}
.nav-btn i {
    left: 50%;
    margin: -5px 0 0 -15px;
    transition: 300ms;
}
.nav-btn i, .nav-btn i:before, .nav-btn i:after {
    display: block;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #fff;
}
.nav-btn i:before, .nav-btn i:after {
    content: "";
    transition: 300ms;
}
.nav-btn i:before {
    margin-top: -8px;
}
.nav-btn i:after {
    margin-top: 6px;
}
.nav-btn span {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 10px;
}
/*======== active ========*/
.nav-btn.active i {
    background: transparent;
}
.nav-btn.active i:before, .nav-btn.active i:after {
    margin-top: 0;
}
.nav-btn.active i:before {
    transform: rotate(-45deg);
}
.nav-btn.active i:after {
    transform: rotate(-135deg);
}
/*===============================
  footer
================================*/
footer{
  padding: 100px 0 50px;
  text-align: center;
  font-weight: bold;
  /*background: #0d0d0d;*/
}
footer .list{
  margin-bottom: 20px;
}
footer .list>li{
  text-align: left;
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
footer .list>li a{
  padding-right: 1.5em;
  display: inline-block;
  color: #fff;
  position: relative;
}
footer .list>li a::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
footer .list>li a .ja{
  font-size: 0.8em;
}

footer .underList{
/*  display: flex;
  justify-content: space-between;
  align-items: center;*/
}
footer .underList .left{
  width: 100%;
}
footer .underList .left>ul{
  margin-bottom: 10px;
/*  display: flex;
  justify-content: flex-start;
  align-items: center;*/
}
footer .underList .left>ul>li{
  width: 100%;
  margin-bottom: 5px;
}
footer .underList .left a{
  color: #fff;
  font-size: 1.2rem;
  display: block;
}

footer .underList .left .discTxt{
  color: #fff;
  font-size: 1.3rem;
  display: block;
  margin-top: 20px;
  padding-right: 3em;
  margin-bottom: 50px;
}
footer .underList .left .discTxt>span{
  font-size: 1.1rem;
  padding: 2px 0.2em 0 0;
  display: block;
  letter-spacing: 0.1em;
  font-weight: normal;
}


footer .underList .right{
  width: 100%;
  text-align: right;
  
}
footer .underList .right li{
  display: inline-block;
  margin-right: 10px;
}
footer .underList .right img{
  width: 35px;
  height: auto;
}
