/*
 Theme Name: Hintasu Blank Theme
 Theme URI: https://hintasu.com/
 Author: Hintasu
 Author URI: https://hintasu.com/
 Description: 超シンプルな1カラム・フルワイド用ブランクテーマ。レイアウトやデザインはプラグイン側で制御する前提です。
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: hintasu-blank
*/

html, body {
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #000000;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

/* 100%フルワイド。余計なmax-widthや背景は一切指定しない */
#page {
	margin: 0;
	padding: 0;
}

/* ブロックエディタから出力される要素に対しても、基本的な画像調整だけ */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* WordPress コアが吐き出す align クラスへの最低限の対応だけ */
.alignleft { float: left; margin-right: 1em; }
.alignright { float: right; margin-left: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
