@charset "UTF-8";

/* =========================================================
   Reset / Normalize（modern）
========================================================= */

/* box-sizing を全体に適用 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* マージン・パディング初期化 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dt,
dd,
ol,
ul,
li,
figure,
figcaption,
form,
fieldset,
legend,
table,
th,
td {
	margin: 0;
	padding: 0;
}

/* リスト初期化 */
ul,
ol {
	list-style: none;
}

/* テーブル */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 画像・メディア */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* フォーム系のリセット */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	margin: 0;
}

/* ボタンのOS依存スタイル除去 */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

/* textarea 横リサイズ事故防止 */
textarea {
	resize: vertical;
}

/* aタグ */
a {
	color: inherit;
	text-decoration: none;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* フォーカス可視性（キーボード操作用） */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* Fonts
------------------------------------------------------------*/
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 300;
	src: url('/assets/font/NotoSansJP-Light.woff2') format('woff2'),
		url('./assets/font/NotoSansJP-Light.woff') format('woff'),
		url('./assets/font/NotoSansJP-Light.otf') format('otf');
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 400;
	src: url('/assets/font/NotoSansJP-Regular.woff2') format('woff2'),
		url('/assets/font/NotoSansJP-Regular.woff') format('woff'),
		url('/assets/font/NotoSansJP-Regular.otf') format('otf');
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 500;
	src: url('/assets/font/NotoSansJP-Medium.woff2') format('woff2'),
		url('/assets/font/NotoSansJP-Medium.woff') format('woff'),
		url('/assets/font/NotoSansJP-Medium.otf') format('otf');
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 700;
	src: url('/assets/font/NotoSansJP-Bold.woff2') format('woff2'),
		url('/assets/font/NotoSansJP-Bold.woff') format('woff'),
		url('/assets/font/NotoSansJP-Bold.otf') format('otf');
	font-display: swap;
}

body {
	font-size: 75%;
	/* IE */
	font-weight: 400;
	font-family: 'YakuHanJP', 'Noto Sans JP', 'qMmpS Pro W3', 'Hiragino Kaku Gothic Pro', 'CI', 'Meiryo', verdana, 'Osaka', 'lr oSVbN', 'MS PGothic', Sans-Serif;
}

/* 見出しは後段でデザインする前提で正規化 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	line-height: 1.3;
}

/* 長文でのレイアウト破壊防止 */
p,
li,
dd,
dt,
th,
td {
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* =========================================================
   Utility / Accessibility
========================================================= */

/* スムーススクロール（必要なければ削除可） */
html:focus-within {
	scroll-behavior: smooth;
}

/* タップ時のハイライト除去 */
a,
button {
	-webkit-tap-highlight-color: transparent;
}

/* モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}