/* アニメーションjs用記述 ここから */
/* ------------------
フェードイン設定
--------------------- */
@keyframes fadeInUpsmall {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 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
}
/* アニメーションjs用記述 ここまで */


/* common */

/* font */
.pi_main {
  color: #3e2d23;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  margin: auto;
  /*---▼文字間の設定 */
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.pi_main li {
  list-style: none;
}

.pi_main img {
  vertical-align: middle;
}

.pi_main a {
  display: block;
}

/* font2 */
.pi_futura-pt{
  /*Futura PT Light*/
font-family: "futura-pt", "sans-serif";
font-weight: 300;
font-style: normal;
}
/* font3 */
.pi_font_diot_lt {
  /*Didot LT Pro Bold*/
  font-family: "linotype-didot", "serif";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.05em;
}


/* SP
----------------------------------*/

/* Buy btn */
.pi_btn a {
  width: 64%;
  display: block;
  background: #3e2d23;
  padding: 10px 0 12px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 20px auto 0;
}

.pi_lead {
  background-color: #ebe2dc;
}

.pi_lead h2 {
  font-size: 1.6rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  padding: 60px 0 40px;
}


/* contents */
.bg_f6f6f6 {
  background-color: #f6f6f6;
}

.pi_styling {
  padding: 70px 0;
}

.pi_item_ttl {
  font-size: 11rem;
  line-height: 1;
  text-align: left;
  margin: 0 3%;
}

.pi_item_ttl span {
  display: block;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 5px;
}

.pi_credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 4% 0;
}

.pi_item_name {
  font-size: 1.4rem;
  text-align: left;
}

.pi_credit .pi_btn {
  width: 32.7%;
}

.pi_credit .pi_btn a {
  font-size: 1.8rem;
  padding: 8px 0 10px;
  margin: 0 auto;
  width: 100%;
}

.pi_code {
  margin: 75px 4% 0;
  width: 81%;
}

.pi_left {
  position: relative;
}

.pi_decoration_tx {
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  top: 10px;
  right: -35px;
}

.pi_right {
  margin-left: auto;
  margin-right: 4%;
}

.pi_code .pi_btn a {
  font-size: 1.8rem;
  padding: 8px 0 10px;
  width: 69%;
}

.pi_other_color {
  margin-bottom: 70px;
}

/* profile */
.pi_prof {
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  padding: 10% 0;
  margin: 75px auto;
  width: 90%;
}

.pi_prof img {
  width: 61.2%;
}



/* PC
----------------------------------*/
@media screen and (min-width: 768px){

  .pc_bgcolor {
    background-color: #eee; /* PC表示の際の全体に背景色をつけたいときはここを変更する */
  }

  .pc_width {
    margin: 0 auto;
    width: 500px; /* PC表示の幅を変えたいときはここを変更する */
  }

}
