@charset "utf-8";

/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

*, *:before, *:after {
  -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;
}

/*----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
--------------------------- */
.heroimage {
  width: 100%;
  height:100%;
  position: relative;
}

.heroimage .img {
  width: 100%;
  height: auto;
}

.heroimage .title__logo {
  max-width: 275px;
  width: 46%;
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.heroimage .brandlogo {
  max-width: 95px;
  width: 25%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media only screen and (min-width: 481px) {
  .heroimage {
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
  }
  
  .heroimage .title__logo {
    max-width: 280px;
    width: calc(280 / 1400 *100%);
    bottom: 18%;
    }
  
  .heroimage .brandlogo {
    max-width: 180px;
    width: calc(180 / 1400 *100%);
  }
}


/*-----------------------------
lead area
 -----------------------------*/
.lead {
  width: 92%;
  margin: 70px auto 0;
  letter-spacing: 2px;
  text-align: center;
}

.lead p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
}

@media only screen and (min-width: 481px) {
  .lead {
    max-width: 640px;
    width: calc(640 / 1060 *100%);
    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 40px;
    font-size: 1.4rem;
  }

}

/*-----------------------------
group
 -----------------------------*/
.group {
  width: 100%;
  margin: 80px auto 0;
}

.group .title__bag {
  margin: 0 auto 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 400;
}

.swiper-container,
.swiper-slide {
  width: calc(690 /750 *100%);
  max-width: 345px;
  height: 463px;
  margin: 0 auto;
}

.swiper-slide > img {
    object-fit: cover; /* IE: not support */
    width: 100%;
    height: auto;
}

.group .img__detail {
  width: calc(590 / 750 * 100%);
  max-width: 295px;
  margin:50px auto 0;
}

.group .detailTxt {
  margin:30px auto 0;
  width: 92%;
}

.group .detailTxt__midashi {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}


.innWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

.creditArea {
  width: 100%;
  margin: 20px auto 0;
}

@media only screen and (min-width: 414px) {  
  .swiper-container,
  .swiper-slide {
    width: calc(690 /750 *100%);
    max-width: 500px;
    height: 512px;
    margin: 0 auto;
  }
  }


@media only screen and (min-width: 481px) {  
  .group .img__detail {
    width: calc(620 / 1060 * 100%);
    max-width: 620px;
    margin:80px auto 0;
  }
  
  .group .detailTxt {
    margin: 30px auto 0;
    width: calc(620 / 1060 * 100%);
    max-width: 620px;
    font-size: 1.4rem;
}
  
  .group .detailTxt__midashi {
    font-size: 2.2rem;
  }
  
  .innWrap {
    justify-content: space-between;
    flex-direction: row;
    max-width: 1060px;
    width: 92%;
  }
  
  .imgArea {
    max-width: 600px;
    width: calc(600 / 1080 *100%);
  }
  
  .creditArea {
    max-width: 425px;
    width: calc(425 / 1080 *100%);
    padding-top: 200px;
    height: 600px;
    border-color: red;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: 0;
  }
  
  .imgArea li {
    margin-top: 5px;
  }
  

}

/*-----------------------------
brandInfo
 -----------------------------*/
.brandInfo {
  width: 100%;
  margin: 70px auto 0;
}

.brandInfo .img {
  width: 100%;
}

.brandInfo .title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-top: 25px;
  line-height: 1;
  font-weight: 400;
}

.brandInfo p {
  font-size: 1.2rem;
  margin: 15px auto 0;
  width: 92%;
}

@media only screen and (min-width: 481px) {
  .brandInfo {
    width: 100%;
    margin: 80px auto 0;
  }
  
  .brandInfo .img {
    max-width:270px ;
    width: calc(270 / 620 *100%);
    margin: 0 auto;
  }
  
  .brandInfo .title {
    font-size: 1.5rem;
    margin-top: 25px;
  }
  
  .brandInfo p {
    font-size: 1.4rem;
    margin: 15px auto 0;
    max-width: 620px;
  }
}

/*------------------------
 credit
--------------------------- */
.credit {
  width: 92%;
  margin: 25px 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;
  width: 45px;
  text-align: center;
}

.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: 100%;
    max-width: 620px;
    margin: 60px auto 0;
  }

  .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: calc(500 / 750 * 100%);
    margin: 65px auto 0;
    max-width: 250px;
}

@media only screen and (min-width: 481px) {
  .allitem {
    max-width: 516px;
    width: 70%;
    margin: 60px auto 0;
  } 
  }

/*----------------
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: 92%;
    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: 90px auto 0;
  color: #aaaaaa;
  font-size: 1.0rem;
}

@media only screen and (min-width: 481px) {
  .footer__brandlogo {
    margin: 95px 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: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}

#page-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

/* 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; } }