@charset "UTF-8";

.sp_only {
	display: none !important;
}

nav#header_top_nav.spOnly {
	display: none;
}

body {
	font-family: "Noto Sans JP", sans-serif;
}

body#top {
	margin: 0;
}

main {
	margin: auto;
	overflow: hidden;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	color: #333;
}

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/

header#top_header {
	width: 100%;
}

#header_content {
	position: fixed;
	width: 100%;
	height: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	z-index: 20;
}

#header_content .header_wrap {
	display: flex;
	align-items: center;
	width: calc(100% - 20px);
	max-width: 1200px;
	margin: 0 auto;
}

#header_content div#logo {
	position: relative;
	width: 200px;
	height: 100%;
	margin: auto auto auto 0;
}

#header_content div#logo a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 1s;
}

#header_content div#logo a:hover {
	opacity: 0.8;
}

#header_content div#logo a img {
	width: 100%;
}

#header_content .header_wrap ul {
	display: flex;
    width: calc(100% - 400px);
    height: 100%;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
}

#header_content .header_wrap ul li{
	text-align: center;
	margin-right: 30px;
}

#header_content .header_wrap ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	color: #333333;
	letter-spacing: 0.02em;
}

#header_content .header_wrap ul li a:hover{
	color: #6baa3d;
}
#header_content .header_wrap ul li a::after {
	position: absolute;
	content: '';
	width: calc(100% + 20px);
	height: 1px;
	bottom: 0;
	left: -10px;
	background: #999999;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
#header_content .header_wrap ul li a:hover::after {
	transform: scale(1, 1);
}

#header_content .button_wrap {
	position: relative;
	width: 200px;
	margin: auto 0 auto auto;
}

header#top_header .button_wrap div {
	width: 100%;
	height: 40px;
}

header#top_header .button_wrap .download {
	margin-bottom: 3px;
}

header#top_header .button_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.1em;
	border-radius: 20px;
	background: #6baa3d;
	transition: 0.3s;
}

@media all and (-ms-high-contrast: none) {
	header#top_header .button_wrap a {
		padding-top: 0px;
	}
}

header#top_header .button_wrap .new a {
	background: #fa4b4c;
}

header#top_header .button_wrap a:hover {
	opacity: 0.8;
}

header#top_header .h_icon_box {
	display: none;
}

@media (max-width: 1000px) {
	header#top_header {
	}
	
	#header_content {
		height: 6vw;
	}
	
	#header_content .header_wrap {
		width: calc(100% - 2vw);
	}
	
	#header_content div#logo {
		width: 20vw;
	}
	
	#header_content .header_wrap ul {
		width: calc(100% - 40vw);
	}
	
	#header_content .header_wrap ul li{
		margin-right: 3vw;
	}
	
	#header_content .header_wrap ul li a {
		font-size: 1.4vw;
		color: #333333;
	}
	
	#header_content .header_wrap ul li a::after {
		width: calc(100% + 2vw);
		left: -1vw;
	}
	
	#header_content .button_wrap {
		width: 20vw;
	}
	
	header#top_header .button_wrap div {
		height: 4vw;
	}
	
	header#top_header .button_wrap .download {
		margin-bottom: 0.3vw;
	}
	
	header#top_header .button_wrap a {
		font-size: 1.4vw;
	}
}



/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/
#footer_wrap {
    background: rgb(29 29 29 / 80%);
    padding: 50px 0;
    margin: 0 auto;
}
#footer_wrap .footer_logo {
    width: 200px;
    margin: 0 auto;
}
#footer_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

#footer_wrap ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
	font-size: 14px;
	letter-spacing: 0.02em;
    margin: 0 20px;
}
#footer_wrap ul li a::after {
    position: absolute;
    content: '';
    width: calc(100% + 20px);
    height: 1px;
    bottom: 0;
    left: -10px;
    background: #999999;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

#footer_wrap ul li a:hover::after {
    transform: scale(1, 1);
}

#footer_wrap p {
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.1em;
}


/*--　ページアップ　--*/
#pageup {
	pointer-events: none;
	opacity: 0;
	transition: 0.5s;
}

#pageup.active {
	pointer-events: auto;
	opacity: 1;
}

.page_top {
	position: fixed;
	bottom: 75px;
	right: 20px;
	opacity: 0.8;
	z-index: 1000;
	transition: 0.5s;
}

.page_top.show {
	opacity: 1;
	pointer-events: auto;
}

.page_top a {
	position: relative;
	display: block;
	width: 90px;
	height: 70px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	transition: 0.3s;
}

.page_top a:hover {
	opacity: 0.8;
}

span.page_up {
	position: absolute;
	width: 100%;
	height: 16px;
	top: 32px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	z-index: 99999;
	pointer-events: none;
}

span.page_up::after {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	top: -11px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	box-sizing: border-box;
}