@font-face {
    font-family: 'SmartFontUI';
    src: url('<?php echo get_template_directory_uri(); ?>/fonts/SmartFontUI.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'Mamelon-3-Hi-Regular';
	src: url('<?php echo get_template_directory_uri(); ?>/fonts/Mamelon-3-Hi-Regular.otf') format('opentype');
	font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'Mamelon-4-Hi-Regular';
	src: url('<?php echo get_template_directory_uri(); ?>/fonts/Mamelon-4-Hi-Regular.otf') format('opentype');
	font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'Montserrat-Regular';
	src: url('<?php echo get_template_directory_uri(); ?>/fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
    font-style: normal;
}

/* ヘッダーのスタイル */
header {
	position: absolute;
    background-color: rgba(0, 0, 0, 0);
	display: flex; /* ロゴとnavを横並べ */
	width: 100%;
	height: 100px;
	padding: 0 2%;
	align-items: center;
	justify-content: space-between;
	z-index: 99;
}


.web-title a {
	height: 80px;
	text-decoration: none;
	display: flex;
}


header nav {
	display: flex;
	align-items: center;
}


.header_navigation {
	margin: 0 0 0 auto;
}

nav a:hover {
	text-decoration: none;
}

nav ul {
	list-style-type: none;
	display: flex;
}

nav li {
	font-family: 'SmartFontUI';
	margin-left: 30px;
}

nav li a {
	text-decoration: none;
	color: snow;
	transition : all 0.3s;
}

nav li a:hover {
	color: #A9D18E;
	transition : all 0.3s;
}

.online-button {
	justify-content: space-between;
	align-items: center;
	display: flex;
}

.online-button a {
	margin-left: 30px;
	width: 150px;
	height: 80px;
}

.online_button_img {
	transition: 0.3s;
}

.online_button_img:hover {
	opacity: 0.6;
	filter: brightness(110%);
	transition: 0.3s;
}
