
/******************************************************************************
** reset.css
** Accessibility / 200% Zoom Friendly
*******************************************************************************/

/* === html === */
html {
	/* ユーザーのブラウザ設定を尊重 */
	font-size: 100%;
	-webkit-tap-highlight-color: transparent;
	/* iOS文字拡大対策 */
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/* === Global Box Model === */
*,*::before,*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

/* === Base Body === */

body {
	min-height: 100vh;
	color: #262626;
	/* 16px */
	font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	/* 拡大時の可読性 */
	line-height: 1.6;
	/* 日本語改行改善 */
	line-break: strict;
	/* 長文折返し */
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

/* === Typography === */

h1,h2,h3,h4,h5,h6 {
	font-size: inherit;
	font-weight: inherit;
	/* 長い見出し対応 */
	overflow-wrap: break-word;
}

p,address {
	overflow-wrap: break-word;
}

p:empty {
	display: none;
}

address {
	font-style: normal;
}

/* === Lists === */

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

/* === Links === */

a {
	color: #196bc7;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	text-decoration-thickness: 0.08em;
}

/* === Media === */

img, picture, video, canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

svg {
	display: block;
	max-width: 100%;
}

/* === Forms === */

button,input,select,textarea {
	font: inherit;
	color: inherit;
	border: 0;
	line-height: inherit;
}

/*
padding:0 をresetしない
→ 200%時にクリック領域崩壊しやすい
*/

button, [role="button"] {
	cursor: pointer;
}

/* disabled */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

/* focus visible */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.7);
	outline-offset: 2px;
}

/* textarea */
textarea {
	resize: vertical;
}

/* search */
input[type="search"] {
	-webkit-appearance: textfield;
}

/* === Tables === */

table {
	border-collapse: collapse;
	/* 画面縮小時の崩れ軽減 */
	max-width: 100%;
}

th,td {
	padding: 0;
	text-align: left;
	vertical-align: top;
	overflow-wrap: break-word;
}

/* === Abbr === */

abbr[title] {
	border-bottom: 1px dotted currentColor;
	cursor: help;
	text-decoration: none;
}

/* === Hidden === */

[hidden] {
	display: none !important;
}