@charset "UTF-8";

/* --------------------------
reset
-------------------------- */
article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
	display: block;
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
}

th,
strong,
em {
	font-weight: normal;
}

ul {
	list-style-type: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
	font-size: inherit;
}

caption,
th {
	text-align: left;
}

fieldset,
a img {
	border: none;
}

a,
button,
input,
textarea,
select {
	outline: none;
	/* focusは除外 */
}

b {
	font-weight: bold;
}

address,
caption,
code,
em,
th {
	font-weight: normal;
	font-style: normal;
}

sup,
sub {
	font-size: 63%;
}

sup {
	vertical-align: top;
}

sub {
	vertical-align: baseline;
}

input,
textarea,
button {
	margin: 0;
	font-size: inherit;
	font-family: inherit;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea {
	padding: 5px;
}

input[type="submit"],
button {
	appearance: none;
	-webkit-appearance: none;
}

button {
	overflow: visible;
	vertical-align: top;
	color: inherit;
	border: none;
	background: none;
}

button,
label {
	cursor: pointer;
}

textarea {
	resize: vertical;
	/* 下方のみリサイズ可 */
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* --------------------------
共通スタイル
-------------------------- */
html,
body {
	width: 100%;
	min-height: 100%;
}

html {
	overflow-y: scroll;
	/* スクロールバー */
	-webkit-text-size-adjust: 100%;
	/* iOS 8+ */

	font-size: 62.5%;
	/* 16px x 0.625 = 10px(=1rem) */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

body {
	background: #fff;
	color: #000;
	font-size: 1.6rem;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	/*font-feature-settings: "palt";*/
}

img {
	display: inline-block;
	height: auto;
	vertical-align: top;
}

/* history年表の画像は除く */
img:not(.history_card figure img){
	width: 100%;
}

/* リンク
-------------------------- */
a {
	text-decoration: none;
	display: inline-block;
	color: inherit;
	transition: .5s;
}

a img {
	border: 0;
}

a:hover {
	transition: .6s;
}

a:hover img {
	filter: brightness(1.1);
}

a:focus-visible {
	outline: #999 solid;
	transition: unset;
}