@charset "UTF-8";
/* CSS Document */
/* Fonts Settings */
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-navy: #1c2a52;
	--color-gold: #cfaf59;
	--color-gray: #b5b5b5;
	--color-red: #7b223c;
	--color-green: #7ac3ac;
}
html {
	height: 100%;
	font-size: 100%;
	line-height: 1.8;
	scroll-behavior: smooth;
}
body {
	width: 100%;
	height:100%;
	font-size: 16px;
	line-height: 1.8;
	font-family: biz-udgothic, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--color-black);
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
/* 横スクロール防止 - コンテンツラッパー */
/* headerは除外（position: fixedの子要素に影響するため） */
main,
footer {
	overflow-x: hidden;
	max-width: 100vw;
}
*.en {
	font-family: montserrat, sans-serif;
	font-weight: 700;
	font-style: normal;
}
a {
	text-decoration: none;
	color: var(--color-black);
}
::selection {
	background: var(--color-navy);
	color: var(--color-white);
}
::-moz-selection {
	background: var(--color-navy);
	color: var(--color-white);
}
/* flex */
.flex {
	display: flex;
	width: 100%;
}