@charset "utf-8";

/* ========================================
   ピュアライフクラブ 固有レスポンシブCSS
   ======================================== */

/* ====== モバイル (max-width:999px) ====== */
@media(max-width:999px){
  /* ヘッダー背景画像 */
  header{
    background-image: url(../topIMG/9_Z.jpg);
  }
  /* h1 上書き（8vw） */
  h1{
    font-size: 8vw;
  }
}

/* ====== スマホ (max-width:767px) ====== */
@media(max-width:767px){
/* メイン */
.item{
  padding-bottom: 40px;
}
.item:nth-of-type(1){
  padding-top: 80px;
}
.pamphlet{
  text-align: center;
  background-color: var(--color-light);
}
.pamphlet img{
  width: 90%;
  height: auto;          /* 比率を維持 */
  vertical-align: top;
}
.pamphlet p{
  width: 90%;
  margin: 0 auto 0 auto;
  color: var(--color-danger);
  background-color: var(--color-white);
  padding: 0 10px 20px 10px;
  text-align: left;
  line-height: 1.2;
}

/* お問い合わせ */
.contactOut{
  margin-top: 80px;
  padding-bottom: 50px;
  width: 100%;
}

/* モバイルではモーダル無効化（画像はそのまま閲覧可能） */
.modal-overlay{
  display: none !important;
}
/* モバイルではサムネイルのカーソルをデフォルトに */
.pamphlet img{
  cursor: default;
}
}
