@charset "utf-8";

/* アニメーションjs用記述 ここから */
/* ------------------
フェードイン設定
--------------------- */
@keyframes fadeInUpsmall {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInUpsmall {
  animation-name: fadeInUpsmall
}

@keyframes fadeInDownsmall {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInDownsmall {
  animation-name: fadeInDownsmall
}

@keyframes fadeInRightsmall {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInRightsmall {
  animation-name: fadeInRightsmall
}

@keyframes fadeInLeftsmall {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInLeftsmall {
  animation-name: fadeInLeftsmall
}



/* ------------------------------------------------------------------
common
------------------------------------------------------------------ */
#pi_contents {
  width: 100% !important;
  margin: 0 auto 50px !important;
  padding: 0 !important;
  line-height: 1.7em;

  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;

  color: #565656;
  font-size: 62.5%;
  /* font-sizeは16pxの62.5%の10px */
  -webkit-text-size-adjust: 100%;
  /*---▼文字間の設定 */
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}

#pi_contents div,
#pi_contents h1,
#pi_contents h2,
#pi_contents p,
#pi_contents ul,
#pi_contents li,
#pi_contents span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

#pi_contents img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  width: 100%;
}

#pi_contents a {
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  text-decoration: none;
  color: #565656;
  display: block;
}

#pi_contents a:hover {
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  opacity: 0.5;
  text-decoration: none;
}


/* --------------------------------------
pi_contents
----------------------------------------- */

/* -----------------------
main banner
-------------------------- */

#pi_contents h1.pi_main_banner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* -----------------------
lead
-------------------------- */
.pi_lead {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin: 50px 0;
  /*---▼文字間の設定 */
  font-feature-settings: "palt";
}




/* -----------------------
anchor
-------------------------- */

#anchor-1,
#anchor-2,
#anchor-3,
#anchor-4,
#anchor-5,
#anchor-6,
#anchor-7 {
  padding-bottom: 60px !important;
}


/* -----------------------
main
-------------------------- */
.pi_main {
  width: 100%;
  text-align: center;
}



/*--------------------------商品タイトル*/
.pi_item_number {
  font-family: "linotype-didot", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.3rem;
  margin: 0 0 8px 0;
}

h2.pi_item_name {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #b19d89;
  margin: 0 0 25px 0;
}


/*--------------------------写真&テキスト*/
.pi_ph01 {
  width: 90%;
  margin: 0 5% 25px;
}

.pi_detail {
  margin: 0 auto 25px;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.2rem;
}

.pi_item_btn a {
  display: block;
  font-family: "linotype-didot", serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  width: 60%;
  padding: 12px 0 10px 0;
  font-size: 1.7rem;
  line-height: 1;
  color: #fff !important;
  margin: 0 auto 0;
  background: #d6ccc2;
}



/*画像を横から徐々に表示する*/
.anim {
  overflow: hidden;
  position: relative;
}

.anim img {
  display: block;
  height: auto;
  width: 100%;
}

.anim-animation {
  animation: anim-img 2s cubic-bezier(.4, 0, .2, 1);
}

.anim-animation:before {
  animation: anim-before 2s 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 anim-img {
  0% {
    opacity: 0;
  }
}

@keyframes anim-before {
  100% {
    transform: translateX(100%);
  }
}











/* PC
----------------------------------*/
@media screen and (min-width: 768px) {
  #pi_contents {
    margin: 0 auto;
    width: 500px !important;
    /* PC表示の幅を変えたいときはここを変更する */
  }
}