@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');

/* CSS Document */

/*====================================

	root

====================================*/

:root {
	--main-color: #b19050;
	--sub-color: #2a3c1f;
	--text-color: #fff;
}

/*====================================

	body

====================================*/

body {
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
/* ローディング中(aria-busy="true")はスクロール禁止 */
html:has(body[aria-busy="true"]) {
    overflow: hidden;
}

/*====================================

    .sr_only

====================================*/

.sr_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

























