/* アニメーション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 */
.pi_main a {
  display: block;
}

.pi_main img {
  vertical-align: middle;
}

.pi_main li {
  list-style: none;
}

.pi_flex {
  display: flex;
}


/* font */
.pi_main,.pi_main h2,.pi_main h4 {
  color: #202020;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Helvetica, Arial, sans-serif;
  /* font-feature-settings: "palt"; */
  text-align: center;
}

.pi_font {
	font-family: josefin-sans, sans-serif;
  font-style: normal;
  letter-spacing: 0.1em;
}

/* btn */
a.pi_btn {
  background-color: #D83F3F;
	border-radius: 3px;
  color: #fff;
  text-align: center;
	margin: 0 auto;
}

.pi_btn_large {
	font-size: 1.3rem;
	padding: 15px 0;
	width: 73%;
	position: relative;
}

/* ボタンの矢印 */
.pi_svg {
  transform: rotate(180deg);
  height: 10px;
  position: absolute;
  top: 40%;
  right: 15px;
}

.pi_svg use {
  fill: #fff;
}

.pi_btn_small {
	font-size: 1.2rem;
	padding: 4px 0;
	width: 27%;
}


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

.pi_lead {
	font-size: 1.3rem;
	margin: 30px;
}

/* section */
.pi_sec:first-of-type {
	margin-top: 40px;
}

.pi_sec {
	background-color: #f8e4e9;
	padding: 34px 0 40px;
}

.pi_sec:nth-child(even) {
	background-color: #f2d8ba;
}

.pi_cate {
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}

.pi_sec h2 {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.pi_price {
	font-size: 1.2rem;
	align-items: center;
	justify-content: center;
	gap: 0 8px;
	margin-bottom: 15px;
}

.pi_price_origin {
	text-decoration: line-through;
}

.pi_price_sp {
	color: #d83f3f;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.pi_item_img {
	display: block;
	margin: 24px auto 22px;
	width: 80%;
}

.pi_comment {
	line-height: 1.7;
	margin-bottom: 30px;
}










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

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

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

}
