/* 
 description: 共通スタイル
*/

/* ===== Reset & Base ===== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	color: #333;
	background: #fff;
	line-height: 1.8;
}

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

a:hover {
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

/* ===== Font ===== */
.font-zen-old-mincho {
	font-family: "Zen Old Mincho", serif;
}

.font-vollkorn {
	font-family: "Vollkorn", serif;
}

.font-minion-pro {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
}

/* ===== Layout ===== */
.site-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}

.site-main {
flex: 1;
}
