@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;
}

/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/*---------------------------------------------------------------
 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.6rem;
  /* 16px */
  font-weight: 400;
  line-height: 1.8;
}

#container {
  width: 100%;
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  width: 100%;
  -webkit-backface-visibility: hidden;
}

.fade-in {
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}

a {
  -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all  0.5s ease;
}

a:hover {
  opacity:0.6;
}

b {
  font-weight: bold;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block;
}

.sp {
  display: none !important;
}

a span.buy {
    display: inline-block;
    border: 1px solid #505050;
    letter-spacing: 1px;
    box-sizing: border-box;
    padding: 0px 5px;
    line-height: 1.4;
    color: #fff;
    background-color: #505050;
    font-size: 12px;
    margin-left:10px;
  }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/*-----------------------
 mainImg
 -------------------------*/
.mainImg {
  background-image: url(../images/main_sp.jpg);
  background-size: contain;
  background-position: 50% 50%;
  width: 100%;
  position: relative;
  margin-bottom: 80px;
  padding-top: 100%;
}

.mainImg__title {
  width: 50%;
      height: 15%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
  }


    .mainImg__logo{
    stroke:#fff;
    fill:none;
    stroke-width:2;
    stroke-dasharray: 3000;
    stroke-dashoffset:3000;
    animation: DASH 3.5s ease-in alternate forwards;
    -webkit-animation:DASH 3.5s ease-in 0s forwards;
    -o-animation:DASH 3.5s ease-in 0s forwards;
    animation:DASH 3.5s ease-in 0s forwards;
    }

@-webkit-keyframes DASH {
0% {
stroke-dashoffset: 3000;
fill:transparent; /*透過*/
}
80% {
fill:transparent; /*透過*/
}
100% {
stroke-dashoffset: 0;
fill:#fff;
}
}
@keyframes DASH {
0% {
stroke-dashoffset: 3000;
fill:transparent; /*透過*/
}
80% {
fill:transparent; /*透過*/
}
100% {
stroke-dashoffset: 0;
fill:#fff;
}
}
    /*
    @keyframes DASH{
    0%{stroke-dashoffset:3000;}
  75%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.5}
  90%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.8}
    100%{stroke-dashoffset:0;fill:#fff;fill-opacity: 1}
    }
    @-moz-keyframes DASH{
    0%{stroke-dashoffset:3000;}
    75%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.5}
    90%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.8}
      100%{stroke-dashoffset:0;fill:#fff;fill-opacity: 1}
    }
    @-webkit-keyframes DASH{
    0%{stroke-dashoffset:3000;}
    75%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.5}
    90%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.8}
      100%{stroke-dashoffset:0;fill:#fff;fill-opacity: 1}
    }
    @-o-keyframes DASH{
    0%{stroke-dashoffset:3000;}
    75%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.5}
    90%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.8}
      100%{stroke-dashoffset:0;fill:#fff;fill-opacity: 1}
    }
    @-ms-keyframes DASHf{
    0%{stroke-dashoffset:3000;}
    75%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.5}
    90%{stroke-dashoffset:0;fill:#fff;fill-opacity: 0.8}
      100%{stroke-dashoffset:0;fill:#fff;fill-opacity: 1}
    }
    */


@media (min-width:769px) {
  .mainImg {
    background-size: cover;
    height: 100vh;
    background-image: url(../images/main.jpg);
    position: relative;
    background-position: 65% 50%;
    margin-bottom: 120px;
    padding-top: 0;
  }

  .mainImg__title {
    width: 250px;
    height: 100px;
    position: absolute;
  }

/*
  .mainImg__logo{
      text-align: center;
      position: relative;
      padding: 50px;
      width: 540px;
      margin: 0 auto;
  }
*/

}
/*---------------------------------------------------------------
 header
-------------------------------------------------------------- */
header {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-bottom: solid 1px #e6e6e6;
}

header a {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
  padding: 0;
  display: block;
}

header img {
  width: 50%;
  max-width: 280px;
  margin: 0 auto;
  padding: 0;
  display: block;
}

/*-----------------------------
lead
 -----------------------------*/
 .lead{
 }

 .lead__title {
   text-align: center;
   font-size: 1.2rem;
   font-weight: 500;
 }

.code__title {
  text-align:center;
  font-size:1.4rem;
  margin: 150px auto 60px;
}

.code__title--underline {
  border-bottom:solid 1px #000;
  display: inline-block;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.lead__midashi {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.lead__midashi p a{
  display: inline-block;
  border-bottom:solid 1px #000;
  margin:0 20px;
  font-size: 2.2rem;
  text-decoration: none;
  color:#000;

}


@media (min-width:481px) {
  .lead__title {
    font-size: 1.4rem;
  }

  .code__title {
    text-align:center;
    font-size:1.4rem;
    margin: 200px auto 60px;
  }

}

/*-----------------------------
layout
 -----------------------------*/
.block {
  width:100%;
  margin:0 auto 70px;
}

.block__s {
  width:80%;
  margin:0 auto 70px;
}

.block__ss {
  width:65%;
  margin:0 auto 70px;
}

.block__sss {
  width:50%;
  margin:0 auto 70px;
}

@media (min-width:769px) {
  .block {
    max-width:800px;
    margin:0 auto 150px;
  }

  .block__s {
    max-width:700px;
    margin:0 auto 150px;
  }

  .block__ss {
    max-width:540px;
    margin:0 auto 150px;
  }

  .block__sss {
    max-width:400px;
    margin:0 auto 150px;
  }

}

/*-----------------------------
look
 -----------------------------*/
.look {
  width:95%;
  margin:0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}



.look > section {
  width:49%;
  margin-bottom: 30px;
}

@media (min-width:769px) {
  .look {
    max-width:1000px;
  }

  .look::before{
    content:"";
    display: block;
    width:23%;
    order:1;
  }
  .look::after{
    content:"";
    display: block;
    width:23%;
  }

  .look > section {
    width:23%;
    margin-bottom: 70px;
  }
}

/*---------------------------------------------------------------
 styling
-------------------------------------------------------------- */
.credit li {
  font-size: 1.2rem;
  text-align: center;
  line-height: 130%;
  margin: 8px 0px 0px;
  }

.credit li a {
  font-size: 1.2rem;
  color: rgb(51, 51, 51);
  display: block;
  line-height: 130%;
  margin: 8px 0px 0px;
  text-align: center;
  text-decoration: underline;
  }

.credit__buy {
  background-color: #000;
  padding:0 5px;
  font-size: 10px;
  color: #fff;
  margin-left:10px;
}

.credit__tax {
  font-size:1.0rem;
}

.credit__wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.credit__wrap ul {
  margin: 0 20px 30px;
}

@media (min-width:481px) {
  .credit__wrap {
    flex-direction: row;
  }

  .credit__wrap ul {
    margin: 0 20px;
  }

}

/*----------------------------
 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: flex;
  flex-direction: column;
}

.archive__list li {
  width:100%;
  margin-bottom:10px;
}

@media (min-width:769px) {
  .archive__list {
    max-width:600px;
    flex-direction: row;
    justify-content: space-between;
  }

  .archive__list li {
    width:48%;
    margin-bottom:10px;
  }

  .archive {
      margin: 30px auto 0;
   }
}

/*---------------------------------------------------------------
 allitem
-------------------------------------------------------------- */
#allitem {
  margin: 30px auto;
}

#allitem a:hover {
  opacity: 0.7;
}

#allitem a {
  width: 60%;
  margin: 0 auto 20px auto;
  padding: 20px;
  color: #333;
  font-size: 1.3rem;
  border: solid 2px #333;
  display: block;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: 'Noto Serif', serif;
}

#allitem a:hover {
  color: #fff;
  background: #333;
}

#allitem a span {
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #allitem {
    margin: 70px auto;
  }

  #allitem a {
    width: 400px;
    font-size: 1.6rem;
    border: solid 1px #333;
  }
}

/*---------------------------------------------------------------
 footer
-------------------------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 30px 0;
  text-align: center;
  font-size: 1.1rem;
}

.footer__logo {
  width: 150px;
  margin: 0 auto 30px;
}

.fotter__staff {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Serif', serif;
}

/*--------------------
 animation
 ---------------------*/
.invisible {
  transition: opacity 0.2s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 0.2s ease;
  opacity: 1.0;
}

/*--------------------
pagetop
 ---------------------*/
#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
}
#page-top a {
  width: 50px;
  display: block;
}
#page-top a:hover {
  opacity: 0.7;
}
@media (min-width:769px) {
  #page-top {
      bottom: 20px;
      right: 20px;
  }

}
