@charset "UTF-8";

.pc_only {
	display: none !important;
}
/* 
nav#header_top_nav.spOnly {
	display: none;
} */
body {
	font-family: "Noto Sans JP", sans-serif;
}

body#top {
	margin: 0;
}

main {
	font-family: "Noto Sans JP", sans-serif;
	margin: auto;
	overflow: hidden;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	color: #333;
}

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/

header#top_header {
	width: 100%;
	height: 50px;
}

#header_content {
	position: fixed;
	width: 100%;
	height: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: rgb(255 255 255 / 87%);
	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% - 10px);
	height: 50px;
	margin: 0 auto;
}

#header_content #logo {
	position: relative;
	width: 100px;
	height: 100%;
}

#header_content #logo a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 1s;
}

#header_content #logo a:hover {
	opacity: 0.8;
}

#header_content #logo a img {
	width: 100%;
}

#header_content .button_wrap {
	position: relative;
	width: 120px;
	margin: 0 20px 0 auto;
}

header#top_header .button_wrap div {
	width: 100%;
	height: 32px;
}

header#top_header .button_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-align: center;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 32px;
	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 a:hover {
	opacity: 0.8;
}


header#top_header .h_icon_box {
	display: flex;
	align-items: center;
	width: 36px;
	height: 100%;
	margin: 0 0 0 0
}

header#top_header .h_icon_box .h_icon {
	position: relative;
	width: 100%;
	height: 26px;
	cursor: pointer;
}

header#top_header .h_icon_box .h_icon span {
	position: absolute;
	width: 100%;
	height: 2px;
	margin: auto 0;
	background: #999;
	transition: 0.5s;
}

header#top_header .h_icon_box .h_icon span:nth-child(1) {
	top: 0;
}

header#top_header .h_icon_box .h_icon span:nth-child(2) {
	top: calc(50% - 1px);
	margin: auto 0;
}

header#top_header .h_icon_box .h_icon span:nth-child(3) {
	top: calc(100% - 2px);
}

header#top_header .h_icon_box.is-open .h_icon span {
	top: calc(50% - 1px);
}

header#top_header .h_icon_box.is-open .h_icon span:nth-child(1) {
	transform: rotate(135deg);
}

header#top_header .h_icon_box.is-open .h_icon span:nth-child(2) {
	opacity: 0;
}

header#top_header .h_icon_box.is-open .h_icon span:nth-child(3) {
	transform: rotate(225deg);
}

nav {
	position: fixed;
	display: block;
	width: 100%;
	top: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: rgb(0 0 0 / 90%);
	box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
	z-index: 11;
	opacity: 0;
	pointer-events: none;
	transition: 0.5s;
}

nav.is-open {
	opacity: 1;
	pointer-events: auto;
}

nav ul {
	padding: 30px 0;
}

nav ul li {
	text-align: center;
	margin-bottom: 20px;
}

nav ul li:last-child {
	margin-bottom: 0px;
}

nav ul li a {
	display: inline-block;
	position: relative;
	color: #ffffff;
}

nav ul li a:hover {
	color: #0c5e9b;
}

nav 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;
}

nav ul li a:hover::after {
	transform: scale(1, 1);
}


/* ハンバーガーアイコン版メニュー */

@media (max-width: 1049px) {
	#header_content ul li a {
		font-size: 13px;
	}
}

@media (max-width: 999px) {
	#header_content ul li a {
		font-size: 12px;
	}
}



/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/
#footer_wrap {
    background: rgb(29 29 29 / 80%);
    padding: 20px 0;
    margin: 0 auto;
}
#footer_wrap .footer_logo {
    width: 120px;
    margin: 0 auto;
}

#footer_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
    padding: 30px 0;
}

#footer_wrap ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
	font-size: 10px;
	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: 12px;
    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: 0;
	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: 50px;
	height: 40px;
	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: 16px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	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: 10px;
	height: 10px;
	top: -9px;
	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;
}