@charset "UTF-8";

/*--------------------------------------------------
**************************************************
基本
**************************************************
--------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	font-family: "noto-sans-cjk-jp", sans-serif;
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 14px;
	font-weight: 100;
	font-style: normal;
	color: #2A2A2A;
}

.sp_only{display: none !important;}

#wrapper {
	overflow: hidden;
}

img {
	vertical-align: bottom;
	width: 100%;
}

.contents_inner {
	max-width: 1200px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}

h2 {
	font-size: 42px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 50px
}

h3 {
	font-size: 35px;
	letter-spacing: 0.1em;
}

h4 {
	font-size: 25px;
	letter-spacing: 0.1em;
}


/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/
header {
	position: fixed;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 100;
}

.header_wrap {
	display: flex;
	max-width: 1200px;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.header_logo {
	width: 140px;
	margin-left: 35px;
}

.header_logo a {
	display: block;
	width: 100%;
	height: 100%;
	transition: opacity 03s;
	cursor: pointer;
}

.header_logo a:hover {
	opacity: 0.8;
}

header .nav_box {
	display: flex;
	width: calc(100% - 200px);
	align-items: center;
	justify-content: flex-end;
}

header .header_wrap ul {
	display: flex;
	width: calc(100% - 200px);
	height: 100%;
	list-style: none;
	align-items: center;
	justify-content: flex-end;
}

header .header_wrap ul li {
	text-align: center;
	margin-right: 30px;
}

header .header_wrap ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	color: #333333;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration-line: none;
}

header .header_wrap ul li a:hover {
	color: #2E67A3;
}

header .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 .header_wrap ul li a:hover::after {
	transform: scale(1, 1);
}

header .download_bth {
	position: relative;
	width: 160px;
	height: 32px;
}

header .download_bth .download {
	margin-bottom: 3px;
}

header .download_bth a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	background: #2E67A3;
	text-decoration-line: none;
	transition: 0.3s;
}




/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/
#footer_wrap {
	position: relative;
    padding: 110px 0 0px 0;
    margin: 0 auto;
}
#footer_wrap::before{
	position: absolute;
    content: "";
    width: 100%;
    height: 50vw;
    left: 0px;
    right: 0;
    bottom: 0;
    background: url(../imgs/common/path_07.svg) bottom center no-repeat;
    background-size: 100% auto;
    z-index: -1;
}

#footer_wrap .footer_logo {
    width: 200px;
    margin: 0 auto 30px 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: #2A2A2A;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.02em;
    margin: 0 20px;
}

#footer_wrap ul li a::before{
	position: absolute;
	content: "";
	width: 1px;
	height: auto;
	top: 0;
	right: -18px;
	bottom: 0;
	background: #2A2A2A;
}

#footer_wrap ul li:last-child a::before{
	background: none;
}

#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: #2A2A2A;
    font-size: 15px;
    text-align: center;
    padding-top: 20px;
	font-weight: 500;
    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;
}