/*
Theme Name: ps-auction
Theme URI: https://hajimete.org/
Author: ende_bataro
Author URI: https://hajimete.org/
Description: PSオークション独自テーマ。ベースのリセットとWPコア機能を定義。
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: ps-auction
*/

/*--------------------------------------------------------------
# Generic & Reset
--------------------------------------------------------------*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #fff;
  color: #404040;
  font-family: sans-serif; /* 詳細はcommonで指定 */
  line-height: 1.5;
}

/* Blocks */
article, aside, footer, header, nav, section, main { display: block; }

/* Media & Embeds */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

embed, iframe, object { max-width: 100%; }

/*--------------------------------------------------------------
# WordPress Core Support (最低限必要なクラス)
--------------------------------------------------------------*/

/* 1. スクリーンリーダー用（アクセシビリティ的に必須） */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  padding: 15px;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* 2. 画像の配置ルール（エディタで「左寄せ」「中央寄せ」を使った時に必要） */
.alignleft { float: left; margin: 0.5em 1.5em 1.5em 0; }
.alignright { float: right; margin: 0.5em 0 1.5em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5em; }

/* 3. キャプション・ギャラリーの基礎 */
.wp-caption { margin-bottom: 1.5em; max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.8em; }

.gallery { display: grid; grid-gap: 1.5em; margin-bottom: 1.5em; }
.gallery-item { text-align: center; }

/* 4. クリアフィックス（古いWP構成への配慮） */
.site-main::after,
.entry-content::after {
  content: "";
  display: table;
  clear: both;
}