@charset "utf-8";

/* CSS Document */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*----------------
 common
-------------------- */
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: 'Noto Sans Japanese', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem;
  /* 16px */
  font-weight: 300;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;

}

@media only screen and (min-width: 481px) {
  body {
    font-size: 1.6rem;
  }
}

/*-----link----------*/
a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

.linkbox {
  position: relative;
}

.linkbox a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.linkbox a:hover {
  opacity: 0.4;
  background-color: #fff;
}

/*-----list ---------*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*-----images----------*/
img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

/*-----box layout----------*/
.container {
  width: 90%;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*----responsive---------*/
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media only screen and (min-width: 481px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

/*-------------------------
 header
--------------------------- */
header {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

header .logo {
  width: 120px;
  margin: 15px auto;
}

header p {
  margin-top: 40px;
}

.heroimage__slider {
  width: 100%;
}

.title__logo {
  width: 210px;
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  header {
    max-width: 1400px;
    width: 100%;
  }
  
  header .logo {
    width: 210px;
    margin: 30px auto;
  }
  
  header p {
    margin-top: 40px;
  }
  
  .heroimage__slider {
    width: 100%;
  }
  
  .title__logo {
    width: 400px;
    bottom: 100px;
  }
}
/*-------------------
 heroimage slider fadein
------------------------- */

/*-------------------
 navigation
------------------------- */
.navi__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.navi__topbox {
  padding-top: 95px;
}

.navi {
  margin: 0 auto;
}

.navi__title {
  max-width: 125px;
  width: 30%;
  margin: 0 auto;
}

.navi__footer {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 20px;
}

.navi__footer .footer__brandlogo {
  width: 150px;
  margin: 0 auto;
}

.navi__wrap .yokoku {
  margin-top: 30px;
}

.navi__wrap .navi__footer {
  margin-top:65px ;
}

@media only screen and (min-width: 481px) {
  .navi__topbox {
    padding-top: 100px;
  }

  .navi__title {
    max-width: 210px;
  }

  .navi__wrap .footer__archive {
    margin-top: 70px;
  }

  .navi__wrap .yokoku {
    margin-top: 0;
  }

}

/*-----------------------------
lead area
 -----------------------------*/
.lead {
  width: 90%;
  margin: 0 auto;
  letter-spacing: 2px;
  text-align: center;
}

.lead__title {
  margin: 40px auto 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
}

.lead__img {
  max-width:310px;
  width: 90%;;
  margin:40px auto 0;
}

.lead__sub {
  margin: 25px auto 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.5;
}

.lead__sub span {
  font-size: 1.2rem;
  color: #333333;
  font-weight: normal;
}

.lead p:last-child {
  text-align: left;
  margin-top: 20px;
}


@media only screen and (min-width: 481px) {
  .lead {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
  
  .lead__title {
    margin: 60px auto 0;
    font-size: 2rem;
  }
  
  .lead__img {
    max-width:620px;
    width: 100%;
    margin:70px auto 0;
  }
  
  .lead__sub {
    margin: 55px auto 0;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  
  .lead__sub span {
    font-size: 1.4rem;
  }
  
  .lead p:last-child {
    margin-top: 25px;
  }
}

/*-----------------------------
group
 -----------------------------*/
.styling {
  width: 100%;
  margin: 50px auto 0;
}

@media only screen and (min-width: 481px) {
    .styling {
      width: 90%;
      max-width: 750px;
      margin: 110px auto 0;
      }
}

/*-----------------------------
styling 
 -----------------------------*/
.styling01_img01 {
  max-width: 345px;
  width: 92%;
  margin: 0 auto;
}

.styling01_img02 {
  display: flex;
  flex-direction: column;
}

.styling01_img02 .top {
  max-width: 340px;
  width: 90%;
  margin: 20px 0 0 auto;
  position: relative;
}

.styling01_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.2rem;
  top: 35%;
  z-index: 20;
  line-height: 1.7;
}

.styling01_img02 .top .img {
  max-width: 280px;
  margin-left: auto;
}


.styling01_img02 .bottom {
  max-width: 290px;
  width: 100%;
  margin: 20px auto 0 0;
}

/*stylyng02*/
.styling02_img01 {
  max-width: 335px;
  width: 90%;
  margin: 40px auto 0 0;
  position: relative;
}

.styling02_img01 .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.2rem;
  top: 35%;
  right: 4%;
  z-index: 20;
  line-height: 1.7;
}

.styling02_img01 .img {
  max-width: 270px;
  margin-right: auto;
}

.styling02_img02 {
  display: flex;
  margin-top:20px;
  width: 100%;
}

.styling02_img02 > div {
  width: 50%;
}

/*stylyng03*/
.styling03_img01 {
    width: 96%;
    margin-left: auto;
    position: relative;
}

.styling03_img01 .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.2rem;
  top: 35%;
  z-index: 20;
  line-height: 1.7;
}

.styling03_img01 .img {
  max-width: 290px;
  width: 95%;
  margin-left: auto;
}

.styling03_img02 {
  max-width: 310px;
  width: 80%;
  margin: 20px auto 0;
}

/*stylyng04*/
.styling04_img01 {
  max-width: 345px;
  width: 92%;
  margin: 0 auto;
}

.styling04_img02 {
  display: flex;
  flex-direction: column;
}

.styling04_img02 .top {
  max-width: 340px;
  width: 90%;
  margin: 20px auto 0 0;
  position: relative;
}

.styling04_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.2rem;
  top: 35%;
  right: 0;
  z-index: 20;
  line-height: 1.7;
}

.styling04_img02 .top .img {
  max-width: 265px;
  margin-right: auto;
}


.styling04_img02 .bottom {
  max-width: 290px;
  width: 100%;
  margin: 20px 0 0 auto;
}


/*stylyng05*/
.styling05_img01 {
  max-width: 262px;
  width: 70%;
  margin: 0 auto;
}

.styling05_img02 {
  display: flex;
  flex-direction: column;
}

.styling05_img02 .top {
  max-width: 325px;
  width: 90%;
  margin: 20px 4% 0 8%;
  position: relative;
  z-index: 10;
}

.styling05_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.2rem;
  top: 35%;
  right: 0;
  z-index: 20;
  line-height: 1.7;
}

.styling05_img02 .top .img {
  max-width: 228px;
  margin-right: auto;
  z-index: 20;
}


.styling05_img02 .bottom {
  max-width: 276px;
  width: 100%;
  margin: -30px 0 0 auto;
}



@media only screen and (min-width: 481px) {
.styling01_img01 {
  max-width: 690px;
  width: 92%;
}

.styling01_img02 {
  display: flex;
  flex-direction: column;
}

.styling01_img02 .top {
  max-width: 675px;
  width: 90%;
  margin: 40px 0 0 auto;
  position: relative;
}

.styling01_img02 .top .title {
  font-size: 2.4rem;
}

.styling01_img02 .top .img {
  max-width: 560px;
  margin-left: auto;
}


.styling01_img02 .bottom {
  max-width: 580px;
  width: 77%;
  margin: 40px auto 0 0;
}

/*stylyng02*/
.styling02_img01 {
  max-width: 750px;
  width: 100%;
  margin: 40px auto 0 0;
}

.styling02_img01 .img {
  max-width: 570px;
  width: 76%;
  margin-right: auto;
}

.styling02_img01 .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 2.4rem;
  top: 35%;
  right: 12%;
  z-index: 20;
  line-height: 1.7;
}

.styling02_img02 {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}

.styling02_img02 > div {
  width: 50%;;
}

/*stylyng03*/
.styling03_img01 {
  width: 100%;
  max-width: 750px;
}

.styling03_img01 .title {
  font-size: 2.4rem;
  left: 8%;
}

.styling03_img01 .img {
  max-width: 560px;
  width: 76%;
}

.styling03_img02 {
  margin:40px auto 0;
  width: 76%;
  max-width: 570px;
}


/*stylyng04*/
.styling04_img01 {
  max-width: 690px;
  width: 92%;
  margin: 0 auto;
}

.styling04_img02 {
  display: flex;
  flex-direction: column;
}

.styling04_img02 .top {
  max-width: 750px;
  width: 100%;
  margin: 40px auto 0 0;
}

.styling04_img02 .top .title {
  font-size: 2.4rem;
  right: 16%;
}

.styling04_img02 .top .img {
  max-width: 510px;
}


.styling04_img02 .bottom {
  max-width: 570px;
  width: 760%;
  margin: 40px 0 0 auto;
}


/*stylyng05*/
.styling05_img01 {
  max-width: 510px;
  width: 68%;
}

.styling05_img02 .top {
  max-width: 650px;
  width: 84%;
  margin: 40px 4% 0 8%;
}

.styling05_img02 .top .title {
  font-size: 2.4rem;
  top: 35%;
  right: 8%;
}

.styling05_img02 .top .img {
  max-width: 480px;
  width: 64%;
}


.styling05_img02 .bottom {
  max-width: 570px;
  width: 76%;
  margin: -60px 0 0 auto;
}
}

/*-----------------------------
lineup
 -----------------------------*/
.lineup {
  margin: 60px auto 0;
  width: 90%;;
}

.lineup__title {
  font-family: 'Noto Serif JP';
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.5;
}

.lineup__title span {
  font-size:1.7rem;
  display: block;;
}

.lineup__itemWrap {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.lineup__itemWrap .box {
  width:47.5%;
}

.lineup__itemWrap .box:nth-child(n+3) {
  width:47.5%;
  margin-top:40px;
}

.lineup__itemWrap .box > p {
  font-family: 'Noto Serif JP';
  font-size:1.2rem;
  margin-top:10px;
}

/* color */
.color__list {
  margin-top: 5px;
}

.colorIcon {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  border: solid 1px #dedede;
  margin-right: 1px;
}

.brown {
  background-color: #9e8572;
}

.white {
  background-color: #f8f8ed;
}

.pink {
  background-color: #f1b5a7;
}

.gray {
  background-color: #c9c9c9;
}

.green {
  background-color: #8ac3bc;
}

.yellow {
  background-color: #efc66c;
}

.brown2 {
  background-color: #936121;
}

.brown3 {
  background-color: #bca88e;
}


@media only screen and (min-width: 481px) {
  .lineup {
    margin: 120px auto 0;
    max-width: 790px;
    width: 90%;
  }
  
  .lineup__title {
    font-size: 2.6rem;
  }
  
  .lineup__title span {
    font-size:1.9rem;
  }
  
  .lineup__itemWrap {
    margin-top: 60px;
  }
  
  .lineup__itemWrap .box {
    width: 31%;
    max-width: 245px;
  }
  
  .lineup__itemWrap .box:nth-child(n+3) {
    width: 31%;
    max-width: 245px;
    margin-top: 0;
  }
  
  
  .lineup__itemWrap .box:nth-child(n+4) {
    margin-top: 70px;
  }

  .lineup__itemWrap .box > p {
    font-size:1.4rem;
    margin-top:20px;
  }
/* color */
.color__list {
  margin-top: 0;
}
  }


/*------------------------
 credit
--------------------------- */
.credit {
  width: 90%;
  margin: 35px auto 0;
  font-size: 1.2rem;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  color: #999;
}

.credit__lineup {
  margin: 10px auto 0;
  width: 100%;
}


.group01__othre p {
  width: 90%;
  margin: 30px auto 0;
}

.decoration__border {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
}

.decoration__border:after {
  border-top: 1px solid #dddddd;
  content: "";
  margin: 1rem;
  width: 100%;
  height: 1px;
}

.group01__othre .credit {
  width: 90%;
  margin: 35px auto 0;
}

.credit li.last {
  padding: 0;
}

.credit li {
  display: flex;
  justify-content: space-between;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 22px;

}

.credit li:last-child {
  margin-bottom: 0;
}

.credit__buy {
  background-color: #000;
  color: #fff;
  padding: 0 3px;
  margin-left: 10px;
  display: inline-block;
  line-height: 1.5;
  height: 20px;
}

.credit__buy--color {
  background-color: #000;
  color: #fff;
  padding: 0 3px;
  margin-left: 0;
  display: inline-block;
  line-height: 1.5;
  height: 20px;
}

.credit__note {
  font-family: 'Prata';
  color: #aaaaaa;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 5px;
}


.linkWrap {
  position: relative;
  z-index: 1;
  color: #333;
}

.linkWrap a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
}

.linkWrap:hover {
  filter: alpha(opacity=70);
  /* IE 6,7*/
  -ms-filter: "alpha(opacity=70)";
  /* IE 8,9 */
  -moz-opacity: 0.7;
  /* FF , Netscape */
  -khtml-opacity: 0.7;
  /* Safari 1.x */
  opacity: 0.7;
  zoom: 1;
  /*IE*/
}



@media only screen and (min-width: 481px) {
  .credit {
    font-size: 1.4rem;
    width: 590px;
    margin: 40px auto 0 5%;
  }

  .credit__lineup {
    margin: 10px auto 0;
    width: 100%;
  }
  

  .group01__othre .credit {
    width: 600px;
    margin: 55px auto 0 0;
  }

  .credit li,
  .credit li a {
    font-size: 1.4rem;
  }

  .group01__othre p {
    width: 100%;
    margin: 40px auto 0;
  }

}

/*-----------------------------
 brandinfo
-----------------------------*/
.brandInfo {
  margin: 115px auto 0;
  width: 90%;
}

.brandInfo .logo {
  width: 100px;
  margin: 0 auto;
}

.brandInfo .images {
  width: 215px;
  margin: 20px auto 0;
}

.brandInfo p {
  font-size: 1.2rem;
  line-height: 2.5;
}

.brandInfo span {
  display: block;
  margin: 35px auto 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

@media only screen and (min-width: 481px) {
  .brandInfo {
    margin: 130px auto 0;
    width: 75%;
    max-width: 750px;
  }

  .brandInfo .logo {
    width: 160px;
    margin: 0 auto;
  }

  .brandInfo .images {
    width: 435px;
    margin: 30px auto 0;
  }

  .brandInfo p {
    font-size: 1.4rem;
    line-height: 2.5;
  }

  .brandInfo span {
    display: block;
    margin: 35px auto 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
  }


}

/*----------------------------
 archive
 ----------------------------*/
.archive {
  margin: 30px auto 0;
  width: 90%;
}

.archive_title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.archive__list {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.archive__list li {
  width: 100%;
  margin-bottom: 10px;
}

@media only screen and (min-width: 481px) {
  .archive__list {
    max-width: 600px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .archive__list li {
    width: 48%;
    margin-bottom: 10px;
  }

  .archive {
    margin: 30px auto 0;
  }
}

/*-------------------
 allitem
-------------------- */
.allitem {
  width: 180px;
  margin: 70px auto 0;
}

.allitem.footer {
  width: 300px;
  margin: 70px auto 0;
}


.allitem__navi {
  width: 300px;
  margin: 25px auto 60px;
}

@media only screen and (min-width: 481px) {
  .allitem {
    width: 400px;
    margin: 80px auto;
  }

  .allitem.footer {
    width: 520px;
    margin: 110px auto 0;
  }

  .allitem__navi {
    width: 520px;
    margin: 50px auto 0;
  }
}

/*----------------------------
yokoku
 ----------------------------*/
 .yokoku {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 50px;
  line-height: 1.5;
 }

 .yokoku span {
   display: block;
   color:#aaaaaa;
   font-weight: normal;
   font-size: 1.2rem;;
 }

 @media only screen and (min-width: 481px) {
  .yokoku {
    font-size: 1.6rem;
    margin-top: 70px;
   }
  
   .yokoku span {
     font-size: 1.4rem;;
   }
  
 }

/*----------------
buttun
-------------------*/
.button {
  font-family: 'Roboto', sans-serif;
  display: block;
  width: 100%;
  height: 46px;
  text-align: center;
  text-decoration: none;
  line-height: 46px;
  outline: none;
  border: solid 1px #000;
  font-size: 1.2rem;
  background-color: #fff;
  font-weight: 400;
}

.button a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button:hover {
  background-color: #fff;
  border-color: #1b1c20;
  color: #1b1c20;
  opacity: 0.6;
}

@media only screen and (min-width: 481px) {
  .button {
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
  }
}

/*-------------------
 thme info footer
------------------------- */
.themeinfo {
  width: 90%;
  margin: 80px auto 0;
}

.themeinfo p {
  margin-top: 25px;
  font-size: 1.2rem;
}

.themeinfo__title {
  width: 230px;
  margin: 0 auto;
}

@media only screen and (min-width: 481px) {
  .themeinfo {
    width: 460px;
    margin: 100px auto 0;
  }

  .themeinfo__title {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .themeinfo {
    margin-bottom: 125px;
  }

  .themeinfo p {
    font-size: 1.4rem;
  }
}

/*-------------------
 footer
------------------------- */
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10px;
  background-color: #fff;
}

.footer__brandlogo {
  width: 150px;
  margin: 70px auto 10px;
}

small {
  display: block;
  margin: 60px auto 15px;
  color: #aaaaaa;
  font-size: 1.0rem;
}

@media only screen and (min-width: 481px) {
  .footer__brandlogo {
    margin: 80px auto 0;
  }
}

/*-------------------
 footer info
------------------------- */

.footer__archive {
  margin-top: 65px;
}

.footer__archive p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.7;
  background-color: #fff;
  margin-bottom: 10px;
}

.footer__archive p span {
  display: block;
  font-weight: bold;

}

.footer__slider {
  /* width: 330px; */
  width: 350px;
  margin:10px auto 0;
}


@media (min-width:481px) {
  .footer__slider {
    width: 560px;
  }

  .footer__slider.nav {
    margin:80px auto 0;
  }

  .footer__archive {
    margin-top: 110px;
  }

}

/*--------------------
 animation
 ---------------------*/
.invisible {
  transition: opacity 0.2s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 0.2s ease;
  opacity: 1.0;
}

.inviewfadeIn {
  opacity: 0;
  transition: .6s;
}

/* fadein */
.fadein {
  opacity: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.fadein.scrollin {
  opacity: 1;
}

/* slide in */
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap:before {
  animation: img-wrap 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

.img-animation {
  animation: img-opacity 1s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  position: relative;
}

.img-animation:before {
  animation: img-animation 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  0% {
    opacity: 0;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

/*--------------------
  page top icon
---------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}

@media only screen and (min-width: 481px) {
  #page-top {
    bottom: 20px;
  }
}

/*--------------------
  loading
---------------------*/
#is-loading {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 150;
 }

 #loading {
  display: none;
  position: absolute;
  max-width: 230px;
  width: 40%;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10;
 }

 @media only screen and (min-width: 481px) {
  #loading {
    max-width: 230px;
    width: 32%;
    height:100%;
   }
 }