
/* 子PAGE全体の装飾 */
.page-header{
  width: 100vw;
  background-image: url('../img/TOP_background.jpg');
  background-repeat: no-repeat;
  background-size: contain; /* 全体表示で見切れ防止 */
  background-position: top center;
  aspect-ratio: 1920 / 342; /* 画像の比率に合わせる */
  position: relative;
  background-color: black!important;
}


/* ページヘッダー文字装飾 */
.page-header h1, .page-header-title{
  font-weight: 500!important;
  font-size: 1.25rem!important;
  letter-spacing: 0.2rem;
  text-shadow: 1px 0 0.1rem rgb(255, 255, 255);
}

.page-header-inner::before{
  font-size: 1.675rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .page-header{
      width: 100vw;
  background-image: url('../img/TOP背景（スマホ）.png');
  background-repeat: no-repeat;
  background-size: cover;       /* 見切れ防止 */
  background-position: center;
  }

  .page-header h1, .page-header-title{
    font-size: 1rem!important;
  }
  .page-header-inner::before{
  font-size: 1.2rem;
  }
}



.single-product .entry-meta-item-updated, .single-product .entry-meta-item-author {
  display: none; 
}

/* レシポンブ対応余白調整  */
@media screen and (max-width: 767px) {
  /* ぱっでぃんぐで幅調整 */
  /* .post-type-archive site-body{
    padding: 12px 15px!important;
  } */
  /* マージンで幅調整 */
  .margin-adjust{
    margin: 0 20px!important;
  }
}

/* ページタイトルアニメーション設定 */
.page-header-inner {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

 @-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}