@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;
  word-break: break-all;
}

@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;
}

/*----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 h1 {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1;
  margin-top: 120px;
}

header h1 span {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  display: block;
  letter-spacing: 1px;
  margin-top: 10px;
}

@media only screen and (min-width: 481px) {
  header h1 {
    font-size: 50px;
    margin-top: 160px;
  }
  
  header h1 span {
    font-size: 1.9rem;
    margin-top: 20px;
  }
}


/*-----------------------------
lead area
 -----------------------------*/
.lead {
  width: 92%;
  margin: 0 auto;
  letter-spacing: 2px;
  text-align: center;
}

.lead__title {
  margin: 50px auto 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
}

.lead strong {
  display: block;
  text-align: center;
}

.lead p {
  width: 100%;
  margin: 20px auto 70px;
  font-size: 1.2rem;
}

.lead__keyword {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 50px;
}

.lead__keyword  span {
  display: block;
  margin-top: 20px;
}

@media only screen and (min-width: 481px) {
  .lead {
    max-width: 940px;
    width: 90%;
    margin: 0 auto;
  }
  
  .lead__title {
    margin: 60px auto 0;
    font-size: 2rem;
  }
  
  .lead strong {
    margin-bottom:15px;
  }

  .lead p {
    width: 100%;
    max-width: 840px;
    margin: 70px auto 100px;
    font-size: 1.4rem;
  }

}


/*-----------------------------
nav
 -----------------------------*/
nav ul {
  display: flex;
  justify-content: space-between;
  width: 92%;
      margin: 35px auto 30px;
  letter-spacing: 0;
}

nav ul li {
  width: 22%;
  font-size: 1.1rem;
  text-align: center;
  line-height: 2;
  background-color: #fff;
}

nav ul li a{
  display: block;
  border: solid 1px #000;
}

@media only screen and (min-width: 481px) {
  nav ul {
    max-width: 640px;
    margin: 70px auto;
  }
  
  nav ul li {
    width: 22%;
    font-size: 1.4rem;
    line-height: 2.3;
  }
  
}


/*-----------------------------
category
 -----------------------------*/
 .category_title {
   width: 100%;
   margin:0 auto 40px;
 }

 .category .itemList{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   width: 92%;
   margin: 0 auto;
 }

.category .item {
  width: 48%;
  margin-bottom: 30px;
}

.category .item .last{
  width: 48%;
  margin: 0 auto 30px;
}

.category .itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto;
}

.category .item.pc3col {
 width: 48%;
 margin-bottom: 30px;
}

.category .itemList.pc3col .last{
 width: 48%;
 margin: 0 auto 30px;
}

.category .item.pc4col {
  width: 48%;
  margin-bottom: 30px;
 }
 
 .category .itemList.pc4col .last{
  width: 48%;
  margin: 0 auto 30px;
 }
 

@media only screen and (min-width: 481px) {
  .category_title {
    width: 100%;
    margin:0 auto 80px;
    background-color: #797b7d;
  }

  .category_title img{
    max-width: 1060px;
    margin:0 auto;
  }
 
  .category .itemList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 92%;
    max-width: 1060px;
    margin: 0 auto;
  }

  .category .itemList::before{
    content:"";
    display: block;
    width:23%;
    order:1;
  }

  
  .category .itemList::after{
    content:"";
    display: block;
    width:23%;
  }


 
 .category .item {
   width: 23%;
   margin-bottom: 45px;
 }
 
 .category .item .last {
   width: 23%;
   margin: 0 auto 45px;
 }


 .category .itemList.pc2col{
  justify-content: center;
  width: 60%;
  max-width: 550px;
}

.category .itemList.pc2col .item {
  width: 48%;
  max-width: 250px;
 margin:0 25px 45px 0;
}

 .category .itemList.pc3col{
  justify-content: center;
  width: 80%;
  max-width: 800px;
}

.category .itemList.pc3col .item {
  width: 31%;
  max-width: 250px;
 margin:0 25px 45px 0;
}

.category .itemList.pc3col .item:nth-child(3n+3) {
  width: 31%;
  max-width: 250px;
  margin:0 0 45px 0;
 }

 
 .category .itemList.pc4col{
  justify-content: center;
  width: 92%;
  max-width: 1060px;
}

.category .itemList.pc4col .item {
  width: 23%;
  max-width: 250px;
 margin:0 25px 45px 0;
}

.category .itemList.pc4col .item:nth-child(4) {
  width: 23%;
  max-width: 250px;
  margin:0 0 45px 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;
  align-items: center;
  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 4px;
  margin-left: 0;
  display: inline-block;
  text-align: center;
  width: 50px;
}

.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: 30px 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;
  }

}

/*-------------------
 allitem
-------------------- */
.allitem {
  width: 300px;
  margin: 10px auto 0;
}

.allitem:last-child {
  width: 300px;
  margin: 15px auto 60px;
}

@media only screen and (min-width: 481px) {
  .allitem {
    max-width: 720px;
    width: 70%;
    margin: 10px auto 0;
  } 
  
  .allitem:last-child {
    max-width: 720px;
    width: 70%;
    margin: 30px auto 100px;
  } 
}

/*----------------
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: 54px;
    line-height: 54px;
    font-size: 1.4rem;
  }
}

/*-------------------
 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;
  }
}


/*-----------------------------
reamrk
 -----------------------------*/
 .remark {
  width: 92%;
  height: 100%;
  max-width: 940px;
  margin: 0 auto;
  letter-spacing: 2px;
  text-align: left;
 }

.remark p {
  background-color: #f5f5f5;
  width: 100%;
  padding: 20px 15px;
  margin: 40px auto 0;
  font-size: 1.2rem;
}

.remark p span {
  font-size: 1.0rem;
  line-height: 2.3;
  display: block;
}


@media only screen and (min-width: 481px) {
  .lead {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
  }
  
  .remark p {
    width: 100%;
    padding: 40px 50px;
    margin: 60px auto 40px;
    font-size: 1.4rem;
  }

  .remark span {
    font-size: 1.2rem;
  }
}

/*-------------------
 footer
------------------------- */
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10px;
  background-color: #fff;
}

.footer__brandlogo {
  width: 150px;
  margin: 90px 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: 120px 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;
}

/* fadeinUP */
.fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: 1s;
}

/*--------------------
  page top icon
---------------------*/
#page-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}

/* scroll  navi */
.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.nav-sticky .flow-navi {
  margin: 20px auto 35px;
}

.flow-navi ul{
  margin: 20px auto 35px;
}

/* scroll animation*/
.line.bar_repeat::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #000;
  animation: bar-scale 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite, bar-transform-origin 1.5s steps(1) infinite; }

@keyframes scroll-line {
  0% {
    transform: translate3d(0, 0, 0); }
  40% {
    transform: translate3d(0, 185px, 0); }
  75% {
    transform: translate3d(0, 175px, 0); }
  100% {
    transform: translate3d(0, 280px, 0); } }

@keyframes triangle-bounce {
  0% {
    transform: translate3d(0, -5px, 0); }
  50% {
    transform: translate3d(0, 5px, 0); }
  100% {
    transform: translate3d(0, -5px, 0); } }

@keyframes triangle-first {
  0%, 20% {
    transform: translate3d(-40px, 0, 0); }
  30%, 80% {
    transform: translate3d(10px, 0, 0); }
  100%, 85% {
    transform: translate3d(30px, 0, 0); } }

@keyframes triangle-right {
  0%,
  25% {
    transform: rotate(-163deg) translate3d(0, 40px, 0); }
  40%,
  84% {
    transform: rotate(-163deg) translate3d(0, 0, 0); }
  100%,
  90% {
    transform: rotate(-163deg) translate3d(0, -37px, 0); } }

@keyframes triangle-left {
  0%,
  33% {
    transform: rotate(163deg) translate3d(0, -34px, 0); }
  50%,
  88% {
    transform: rotate(163deg) translate3d(0, 0, 0); }
  100%,
  95% {
    transform: rotate(163deg) translate3d(0, 38px, 0); } }

@keyframes triangle-last {
  0%,
  87.5% {
    transform: translate3d(-120px, 0, 0); }
  91% {
    transform: translate3d(-80px, 0, 0); }
  100% {
    transform: translate3d(45px, 0, 0); } }

.animation-start .c-scroll-icon {
  opacity: 1;
  transition: all 1.5s 1.2s;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 60%;
  bottom: 0;
  left: 45%;
  right: 0;
  margin: auto; }

@media screen and (max-width: 768px) {
  .animation-start .c-scroll-icon {
    left: 0;
    right: -5%;
    transform: translate(-50%, 0%) scale(0.7); } }

.c-scroll-icon {
  width: 21px;
  height: 100px;
  opacity: 0;
  transform: translate3d(0, -50px, 0); }

.c-scroll-icon-line-mask {
  position: relative;
  overflow: hidden;
  width: 20px;
  height: 100px;
  margin: 0 auto; }

.c-scroll-icon-line {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 150px;
  border-left: 1px solid #a0a0a0;
  top: -150px;
  left: 10px;
  animation: scroll-line 3s infinite;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  @media screen and (max-width: 768px) {
    .c-scroll-icon-line {
      border-left: 2px solid #fff; } }

.c-scroll-icon-triangle {
  position: relative;
  width: 20px;
  height: 30px;
  margin: -10px auto 0;
  -webkit-animation: triangle-bounce 3s infinite;
  animation: triangle-bounce 3s infinite; }

.c-scroll-icon-triangle-mask.first {
  width: 40px;
  height: 5px;
  right: 0;
  overflow: hidden; }

.c-scroll-icon-triangle-mask {
  position: absolute; }

.c-scroll-icon-triangle-line.first {
  border-bottom: 1px solid #a0a0a0;
  width: 30px;
  right: 0;
  animation: triangle-first 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  @media screen and (max-width: 768px) {
    .c-scroll-icon-triangle-line.first {
      border-bottom: 1px solid #fff; } }

.c-scroll-icon-triangle-line {
  position: absolute; }

.c-scroll-icon-triangle-mask.right {
  width: 10px;
  height: 30px;
  overflow: hidden;
  right: 0; }

.c-scroll-icon-triangle-line.right {
  border-left: 1px solid #a0a0a0;
  height: 44px;
  transform: rotate(-163deg);
  right: 5px;
  top: -6px;
  animation: triangle-right 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  @media screen and (max-width: 768px) {
    .c-scroll-icon-triangle-line.right {
      border-left: 1px solid #fff; } }

.c-scroll-icon-triangle-mask.left {
  width: 10px;
  height: 30px;
  overflow: hidden;
  left: 1; }

.c-scroll-icon-triangle-line.left {
  border-left: 1px solid #a0a0a0;
  height: 40px;
  transform: rotate(163deg);
  left: 5px;
  top: -3px;
  animation: triangle-left 3s infinite;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  backface-visibility: hidden; }
  @media screen and (max-width: 768px) {
    .c-scroll-icon-triangle-line.left {
      border-left: 1px solid #fff; } }

.c-scroll-icon-triangle-mask.last {
  width: 40px;
  height: 5px;
  overflow: hidden; }

.c-scroll-icon-triangle-line.last {
  border-bottom: 1px solid #a0a0a0;
  width: 120px;
  left: 0;
  animation: triangle-last 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  @media screen and (max-width: 768px) {
    .c-scroll-icon-triangle-line.last {
      border-bottom: 1px solid #fff; } }