@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: 769px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

/*-------------------------
 header
--------------------------- */
header {
  width: 100%;
  margin: 0 auto;
}

header .logo {
  width: 120px;
  margin: 15px auto;
}

.heroinage {
  width: 100%;
  height: auto;
  position: relative;
}

header p {
  margin-top: 40px;
}


.title__logo {
  width: 205px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  border:solid 2px #fff;
  padding: 45px 35px;
}

@media only screen and (min-width: 481px) {
  header {
    max-width: 1400px;
    width: 100%;
  }
  
  header .logo {
    width: 210px;
    margin: 30px auto 20px;
  }

  .heroinage {
    max-width: 1400px;
    width: 100%;
    height: auto;
    position: relative;
  }
  
  header p {
    margin-top: 40px;
  }
    .title__logo {
    width: 335px;
    padding: 70px 50px;
  }
}

/*-------------------
 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: scroll;
}

.navi__topbox {
  padding-top: 30%;
}

.navi {
  margin: 0 auto;
}

.navi__title {
  max-width: 140px;
  width: 40%;
  margin: 0 auto;
}

.navi__footer {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 20px;
}

.navi__footer .footer__brandlogo {
  width: 150px;
  margin:70px auto 0;
}

.navi__topbox .themeinfo span {
  font-weight: bold;
}

@media only screen and (min-width: 481px) {
  .navi__topbox {
    padding-top: 130px;
  }

  .navi__title {
    max-width: 210px;
  }

  .navi__topbox .themeinfo {
    max-width: 460px;
    margin: 90px auto 0;
  }

  .navi__topbox .themeinfo__title {
    margin: 10px auto 0;
    }

    .navi__wrap .footer__archive {
      margin-top: 70px;
    }

    .navi__topbox .yokoku {
      margin: 60px auto 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: 80%;;
  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: 40px;
}


@media only screen and (min-width: 481px) {
  .lead {
    max-width: 620px;
    width: 90%;
    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: 70px auto 0;
}

@media only screen and (min-width: 481px) {
    .styling {
      width: 90%;
      max-width: 750px;
      margin: 140px auto 0;
      }
}

/*-----------------------------
styling 
 -----------------------------*/
.styling01_img01 {
  max-width:260px;
  width: 70%;
  margin:0 auto;
}

.styling01_img02 {
  display: flex;
  flex-direction: column;
}

.styling01_img02 .top {
  max-width: 315px;
  width: 87%;
  margin: 20px 5% 0 auto;
  position: relative;
  z-index: 20;
}

.styling01_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.4rem;
  top: 35%;
  line-height: 1.7;
  right: 0;
}

.styling01_img02 .top .img {
  max-width: 225px;
  margin-right: auto;
}


.styling01_img02 .bottom {
  max-width: 270px;
  width: 90%;
  margin: -30px 0 0 auto;
}

/*stylyng02*/
.styling02_img01 {
  max-width:275px;
  width: 70%;
  margin:0 auto;
}

.styling02_img02 {
  display: flex;
  flex-direction: column;
}

.styling02_img02 .top {
  max-width: 340px;
  width: 90%;
  margin: 20px 0 0 0 auto;
  position: relative;
  z-index: 20;
}

.styling02_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.4rem;
  top: 35%;
  right: 0;
  line-height: 1.7;
}

.styling02_img02 .top .img {
  max-width: 270px;
  margin-left: auto;
}


.styling02_img02 .bottom {
  max-width: 290px;
  width: 90%;
  margin: 20px 0 0 auto;
}

/*stylyng03*/
.styling03_img01 {
  width: 90%;
  margin-left:auto;
  position: relative;
}

.styling03_img01 .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.4rem;
  top: 35%;
  z-index: 20;
  line-height: 1.7;
}

.styling03_img01 .img {
  max-width: 265px;
  width: 70%;
  margin-left: auto;
}

.styling03_img02 {
  display: flex;
  margin-top:20px;
  width: 100%;
}

.styling03_img02 > div {
  width: 50%;
}

.styling03_img03 {
  max-width:240px;
  margin:20px auto 0 0;
  width:65%;
}

/* styling04 */
.styling04_img01 {
  max-width:345px;
  width: 90%;
  margin:0 auto;
}

.styling04_img02 {
  display: flex;
  flex-direction: column;
}

.styling04_img02 .top {
  max-width: 340px;
  width: 90%;
  margin: 20px 10% 0 auto;
  position: relative;
  z-index: 20;
}

.styling04_img02 .top .title {
  font-family: 'Noto Serif JP';
  font-weight: 400;
  position: absolute;
  font-size: 1.4rem;
  top: 35%;
  line-height: 1.7;
  right: 0;
  z-index: 10;
}

.styling04_img02 .top .img {
  max-width: 265px;
  margin-right: auto;
}


.styling04_img02 .bottom {
  max-width: 285px;
  width: 70%;
  margin: 20px 0 0 auto;
}


@media only screen and (min-width: 481px) {
.styling01_img01 {
  max-width: 640px;
  width: 80%;
}

.styling01_img02 {
  display: flex;
  flex-direction: column;
}

.styling01_img02 .top {
  max-width: 690px;
  margin: 40px auto 0;
}

.styling01_img02 .top .title {
  font-size: 2.4rem;
}

.styling01_img02 .top .img {
  max-width: 490px;
}

.styling01_img02 .bottom {
  max-width: 530px;
  width: 80%;
  margin: -60px 0 0 auto;
}

/*stylyng02*/
.styling02_img01 {
  max-width:690px;
}

.styling02_img02 {
  display: flex;
  flex-direction: column;
}

.styling02_img02 .top {
  max-width: 680px;
  width: 80%;
  margin: 40px auto 0 0;
}

.styling02_img02 .top .title {
  font-size: 2.4rem;
}

.styling02_img02 .top .img {
  max-width: 530px;
}


.styling02_img02 .bottom {
  max-width: 560px;
  width: 100%;
  margin: 40px 0 0 auto;
}

/*stylyng03*/
.styling03_img01 {
  width: 90%;
  max-width: 690px;
}

.styling03_img01 .title {
  font-size: 2.4rem;
}

.styling03_img01 .img {
  max-width: 530px;
  width: 100%;
}

.styling03_img02 {
  margin:40px auto 0;
  max-width: 750px;
  width: 100%;
}

.styling03_img02 > div {
  width: 50%;
}


.styling03_img03 {
  max-width: 480px;
  width: 70%;
}
/* styling04 */
.styling04_img01 {
  max-width:675px;
}

.styling04_img02 {
  display: flex;
  flex-direction: column;
}

.styling04_img02 .top {
  max-width: 630px;
  margin: 40px auto 0 0;
}

.styling04_img02 .top .title {
  font-size: 2.4rem;
}

.styling04_img02 .top .img {
  max-width: 580px;
  width: 80%;
  margin: 40px auto 0 0;
}


.styling04_img02 .bottom {
  max-width: 560px;
  width: 80%;
  margin: 40px 0 0 auto;
}
}

/*------------------------
 credit
--------------------------- */
.credit {
  width: 90%;
  margin: 35px auto 0;
  font-size: 1.2rem;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  color: #999;
}

.brandInfo .credit {
  font-size: 1.4rem;
  width: 100%;
  margin: 40px 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;
}

.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%;
  }


  .brandInfo .credit {
    font-size: 1.4rem;
    max-width: 580px;
    width: 100%;
    margin: 40px auto 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__img {
  position: relative;
  width: 100%;
  height: auto;
}

.brandInfo__img .img {
  width: 265px;
  margin: 0 auto;
}

.brandInfo p {
  margin-top: 45px;
}

@media only screen and (min-width: 481px) {
  .brandInfo {
    margin: 140px auto 0;
    width: 75%;
    max-width: 750px;
  }
  .brandInfo__img {
    max-width: 640px;
    margin: 0 auto;
  }
  
  .brandInfo__img .img {
    width: 525px;
  }

  
  .brandInfo p {
    width: 580px;
    margin: 40px auto 0;
  }

}




/*----------------------------
 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;
  }
}


/*-------------------
 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;
  }

}

/*-------------------
 allitem
-------------------- */
.allitem {
  width: 180px;
  margin: 70px auto 0;
}

.allitem.footer {
  width: 305px;
  margin: 70px auto 0;
}


.allitem__navi {
  width: 305px;
  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: 80px;
  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: 100px;
   }
  
   .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 {
  max-width:230px;
  width:60%;
  margin: 70px auto 0;
  text-align: center;
}

.themeinfo p {
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.themeinfo p span {
  font-weight: bold;
}

.themeinfo__title {
  width: 100%;
  margin: 15px auto 0;
}

@media only screen and (min-width: 481px) {
  .themeinfo {
    max-width: 460px;
    margin: 100px auto 125px;
  }

  .themeinfo__title {
    width: 100%;
    max-width: 460px;
    margin: 20px auto 0;
  }

  .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;
  }
}

/*--------------------
 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 {
  opacity: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.fadein.scrollin {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(35px);
  transition: 1s;
}

/* slide in */
.img-wrap {
  overflow: hidden;
  position: relative;
}

@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;
}

/* gray */
.bk--gray {
  width: 200px;
  top:20px;
  position: absolute;
}
  
.bk--gray .img-animation {
  animation: img-opacity 1.5s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  position: relative;
}

.bk--gray .img-animation:before {
  animation: img-animation 1.5s 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%);
  }
}

@media only screen and (min-width: 481px) { 
  .bk--gray {
    width: 420px;
    position: absolute;
  }
  
}
  

/*--------------------
  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: 200;
}

/* #loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 175px;
  height: 175px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 9;
} */

#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 50%;
  width: 175px;
  height: 50px;
  color: #fff;
  z-index: 9;
  margin-left: -80px;
}

#loading_barWrap {
  width: 100%;
  height: 15px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

#loading_bar {
  width: 0;
  height: 5px;
  background: #000;
  transition-duration: 1s;
}

.loadingNone {
  animation: loadingAnime 2s forwards;
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}