@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;
}

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;
  font-weight: 400;
  line-height: 1.8;
}

/* -----text----- */
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;
}

/* -----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: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

/* -----img -----*/
img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

/* -----list -----*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* -----motion -----*/
.fade-in {
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}

/* -----box layout-----*/
main {
  max-width: 100%;
  margin: 0 auto 60px;
}

.stylingbox {
  margin-bottom: 80px;
}

.styling--center {
  width: 100%;
  margin: 0 auto 80px;
}

.styling02 {
  display: flex;
  flex-direction: column;
}

.styling02__left {
  width: 100%;
  margin: 0 auto 30px;
}

.styling02__right {
  width: 80%;
  margin: 0 auto;
}

.styling03 {
  width: 100%;
  margin: 0 auto 80px;
}

.styling04 {
  width: 100%;
  margin: 0 auto 80px;
}

.styling05 {
  display: flex;
  flex-direction: column;
}

.styling05__left {
  width: 100%;
  margin: 0 auto 30px;
}

.styling05__right {
  width: 80%;
  margin: 0 auto;
}

@media (min-width:481px) and (max-width:1024px) {
  .styling02 {
    max-width: 650px;
    margin: 0 auto;
  }

  .styling05 {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (min-width:481px) {
  main {
    max-width: 860px;
    margin: 0 auto 100px;
  }

  .stylingbox {
    margin-bottom: 100px;
  }

  .styling--center {
    max-width: 600px;
    margin: 0 auto 100px;
  }

  .styling02 {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }

  .styling02__left {
    width: 60%;
    margin: 0;
  }

  .styling02__right {
    width: 35%;
    margin: 0;
  }

  .styling03 {
    width: 60%;
    margin: 0 50px 100px auto;
  }

  .styling04 {
    width: 60%;
    margin: 0 auto 100px 50px;
  }

  .styling05 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .styling05__left {
    width: 60%;
    margin: 0;
  }

  .styling05__right {
    width: 35%;
    margin: 0;
  }
}

/*-----------------------
 heroimage area
 -------------------------*/
.heroimage {
  min-width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  margin: 0 auto 80px;
}

.heroimage__image {
  background-image: url(../images/heroimage_sp.jpg);
  background-origin: border-box;
  background-size: 120%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
}

.heroimage__titlearea {
  max-width: 360px;
      width: 80%;
      margin: 0 auto;
      height: auto;
      position: absolute;
      right: 2px;
      left: 0;
      bottom: 7%;
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      background-color: rgba(255, 255, 255, 0.6);
    }

.heroimage__text {
  margin-bottom: 20px;
}

.heroimage__logo {
  width: 50%;
  margin: 0 auto;
}

@-webkit-keyframes Zoom-Out {
  0% {
    opacity: 0.5;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes Zoom-Out {
  0% {
    opacity: 0.5;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.Zoom-Out {
  -webkit-animation-name: Zoom-Out;
  animation-name: Zoom-Out;
}

@media (min-width:481px) and (max-width:1024px) {
  .heroimage {
    height: 80vh;
  }

  .heroimage__image {
    background-image: url(../images/heroimage_sp.jpg);
    background-position: 50% 7%;
    height: 80vh;
  }

  .heroimage__titlearea {
    max-width: 400px;
    width: 100%;
    bottom: 40px;
  }

  .heroimage__logo {
      width: 35%;
      margin: 0 auto;
  }
}

@media (min-width:1025px) {
  .heroimage {
    min-width: 1060px;
    width: 1060px;
    height: 90vh;
    margin: 30px auto 100px;
  }

  .heroimage__image {
    background-image: url(../images/heroimage_pc.jpg);
    background-position: 45% 0;
    width: 70%;
    height: 90vh;
  }

  .heroimage__titlearea {
    max-width: 400px;
    height: 400px;
    top: 40%;
    left: 5%;
    bottom: 0;
    padding-bottom: 100px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0);
  }

  .heroimage__logo {
    width: 40%;
    margin: 0 auto;
  }
}

/*-----------------------
   title
   -------------------------*/
.title__theme {
  width: 240px;
  margin: 0 auto 20px;
}

@media (min-width:481px) {
  .title__theme {
    width: 300px;
    margin: 0 auto 30px;

  }
}

/*---------------------------------------------------------------
 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;
}

/*-----------------------------
 midashi
 -----------------------------*/
.title {
  color: #1a1b1f;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 3px;
  line-height: 3rem;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
}

.title__number {
  font-family: 'Libre Caslon Text', serif;
  font-size: 4rem;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.title__japanese {
  font-size: 1.4rem;
  line-height: 2.2rem;
  display: block;
  margin-top: 10px;
}

@media (min-width:481px) {
  .title {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-bottom: 50px;
  }

  .title__number {
    font-family: 'Libre Caslon Text', serif;
    font-size: 5rem;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .title__japanese {
    font-size: 1.4rem;
    line-height: 2rem;
    display: block;
    margin-top: 10px;
  }
}

/*-------------------------------
 credit
---------------------------- */
.credit {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px auto 0;
  width: 90%;
}

.credit--left {
  justify-content: flex-start;
}

.credit--center {
  justify-content: flex-start;
}

.credit--right {
  justify-content: flex-start;
}

.credit li {
  display: inline-block;
  line-height: 150%;
  margin: 0 5px 5px 0;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
}

.credit li a {
  text-decoration: underline;
}

.credit li:not(:last-child)::after {
  content: " / ";
}

.credit__tax {
  font-size: 1.0rem;
}

.credit__buy {
  background-color: #000;
  color: #fff;
  padding: 0 10px;
  margin-left: 15px;
  display: inline-block;
  font-size: 1.1rem;
}

@media (min-width:481px) {
  .credit {
    margin: 20px auto 0;
    width: 100%;
    max-width: 650px;
  }

  .credit--center {
    justify-content: center;
  }

  .credit--right {
    justify-content: flex-end;
  }
}

/*-------------------------------
 staff
---------------------------- */
.staff {
  margin: 100px auto 0;
}

.staff li {
  font-size: 12px;
  text-align: center;
  margin-bottom: 5px;
}

/*-----------------------------
 brandinfo
-----------------------------*/
.brandinfo {
  margin: 120px auto 0;
  background-image: url("../images/brandinfo.jpg");
  background-size: cover;
  background-position: 50% 50%;
  height: auto;
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: color;
}

.brandinfo__innwrap {
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  padding: 50px 30px;
  margin: 0 auto;
}

@media (min-width:481px) {
  .brandinfo {
    padding: 70px;
  }
}

/*----------------------------
 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:481px) {
  .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 {
  width: 90%;
  max-width: 360px;
  margin: 20px auto;
}

#allitem a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#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:481px) {
  #allitem {
    max-width: 400px;
  }

  /*
  #allitem a {
    width: 310px;
    margin: 0 auto 20px auto;
    padding: 20px;
    color: #333;
    font-size: 1.3rem;
    border: solid 1px #333;
    display: block;
    text-decoration: none;
    text-align: center;
  }
  */
}

/*----------------
buttun
-------------------*/
.button {
  display: block;
  width: 100%;
  height: 46px;
  text-align: center;
  text-decoration: none;
  line-height: 46px;
  outline: none;
  margin: 50px auto 0;
  border: solid 1px #1b1c20;
}

.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 {
  background-color: #1b1c20;
  color: #fff;
}

.button:hover {
  background-color: #fff;
  border-color: #1b1c20;
  color: #1b1c20;
}

@media (min-width:481px) {
  .button {
    max-width: 400px;
  }
}

/*-------------------------------
 footer
-------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 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;
}

.copyright {
  background-color: #1b1c20;
  padding: 5px 0;
  color: #fff;
}

/*--------------------
 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: 1.0;
}

/*----responsive 対応 ----------*/
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media only screen and (min-width: 481px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

/*--------------------
  page top icon
   ---------------------*/
#page-top {
  position: fixed;
  bottom: 30px;
  right: 2.5%;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}

@media (min-width:481px) {
  #page-top {
    bottom: 50px;
  }
}

/*--------------------
 animation mask
 ---------------------*/
.mask {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.mask .maskInner {
  width: inherit;
  height: inherit;
  opacity: 0;
  background-color: #fff;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /*
  background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );
*/
  background-color: #fff;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}
