/* po-ui.css
   スマホ専用（PCへ一切影響させない）
-------------------------------------------------- */
@media only screen and (max-width: 812px){

  /* ヘッダーの高さ固定があると崩れるので、スマホ時だけ解除 */
  #header{
    height: auto !important;
    overflow: visible !important;
  }

  .po-top__statement{
    margin-top: 30px;
  }

  .po-top__statementMain{
    font-size: 15px;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 0 rgba(0,0,0,0.35);
  }

  .po-footerSns__link{
    z-index: 1 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.06) !important;
    text-decoration: none !important;
    color: #fff;
  }

  .po-footerSns__icon{
    width: 18px;
    height: 18px;
    fill: #fff;
  }

  .po-archive__intro{
    margin: 30px 0 18px;
    padding: 16px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(0,0,0,0.14);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  }

  /*--------------------------------------------------------------
    ここからヘッダー以外（＝ヘッダー周りのスマホ調整）
  --------------------------------------------------------------*/

  /* 1段目：ロゴ + キャッチを横並び */
  #header #logo_box{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* PIXEL.ORDER（a.blog_title） */
  #header #logo_box .blog_title{
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    padding-left: 20px;
    width: 147px;
    font-size: 15px;
  }

  /* 猫と植物と制作と（p） */
  #header #logo_box > p{
    margin: 0;
    flex: 1 1 auto;
    width: 50px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-size: 14px;
  }

  /* 2段目：SNS（Instagram / Follow / 時計） */
  #header #sns{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px;
    margin: 0;
  }

  #header #insta,
  #header #follow{
    margin: 0;
    padding: 0;
  }

  #header #insta img{
    width: 15px;
    height: auto;
    display: block;
  }

  /* Follow と 時計：枠なし */
  #header #follow a{
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    text-decoration: none;
    line-height: 1;
    color: #fff;
  }

  #header .po-clock{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    line-height: 1;
    white-space: nowrap;
  }

  /* メニュー：横スクロール */
  #header .po-subnav{
    padding: 7px 22px 12px;
  }

  #header .po-subnav__list{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #header .po-subnav__list li{
    list-style: none;
    flex: 0 0 auto;
  }

  #header .po-subnav__list a{
    display: block;
    white-space: nowrap;
    color: #fff;
  }

  .blog_title::before{
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 5px;
    margin-top: -3px;
    margin-left: -3px;
    vertical-align: middle;
    background: url("https://pixel-order.com/wp-content/uploads/2024/06/pixelorder.png") no-repeat center / contain;
  }

  /* po-search：ダーク（黒背景×白文字） */
  .po-search{
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding-right: 20px;
    padding-top: 10px;
	  padding-left:43px;
    float: left;
  }

  .po-search input[type="search"]{
    width: 298px;      /* 25pxは小さすぎるので、実用値に */
    /*max-width: 60vw;*/
    box-sizing: border-box;
    background: #0f0f0f;
    color: #ffffff;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
  }

  .po-search input[type="search"]::placeholder{
    color: #9a9a9a;
  }

  .po-search input[type="search"]:focus{
    border-color: #7a7a7a;
    outline: none;
  }

  .po-search button{
    background: #1a1a1a;
    color: #b5b5b5;
	  width:25px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
  }

  .po-search button:hover{
    background: #222;
    border-color: #7a7a7a;
  }

	.po-leadline{
    position: relative;
    padding-left: 10px;
  }
  .po-leadline::before{ top: 6px;
    content:"";
    position:absolute;
    left:0;
    height:1.0em;
    width:3px;
    background: rgba(255,153,51,0.95);
    border-radius:999px;
  }
	
	.po-top__statement p{
  margin-top: 10px !important;
}
	.po-top__statementSub{
  line-height: 1.5 !important;
  margin-top: 4px !important;
}
.po-top__statement p + p{
  margin-top: 4px !important;
}

	
	
	
}
