@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: 16px;
	font-weight: 100;
	font-style: normal;
	color:#2A2A2A;
}
.pc_only{display: none !important}

#wrapper {
	overflow: hidden;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

h2 {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 44px;
}

h3 {
	font-size: 30px;
	letter-spacing: 0.2em;
}

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

@media (max-width: 400px) {
	h2 {
		font-size: 30px;
		line-height: 40px;
	}
}

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

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

.header_logo {
	width: 100px;
	margin-left: 20px;
}

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

.header_logo a:hover {
	opacity: 0.8;
}

.nav_box{
	position: fixed;
	z-index: 90;
	top: -100%;
	left: 0;
	width: 100%;
	padding:20px 0 30px 0;
	transform: translateY(0%);	 /*ナビを上に隠す*/
	transition: all 1s;
	background: rgba(255,255,255,1);
}
.nav_box.active{
	top: 0;
	margin-top:50px;
	transform: translateY(0%);	/*ナビを表示する*/
	transition: all 0.6s;
}
.nav_box ul{
	width: 90%;
	margin: 0 auto;
}
.nav_box ul li{
	text-align: center;
	padding: 5px 15px;
}
.nav_box ul li.area a{
	font-size:1em;
}
.nav_box ul li a{
	font-size:18px;
	color: #2A2A2A;
	font-weight: 500;
	text-decoration-line: none;
}

.nav_box ul li a br {
    display: none;
}

header .download_bth {
	display: none;
}

header .Toggle {
	position:absolute;
	right:10px;
	top:7px;
	display:block;
	width:42px;
	height:42px;
	cursor:pointer;
	z-index:101;
}
header .Toggle.active{
	position:fixed;
}
header .Toggle span {
	position:absolute;
	left:6px;
	display:block;
	width:30px;
	border-bottom:#2E67A3 1.67px solid;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	transition: .35s ease-in-out;			/*変化の速度を指定*/
}
.Toggle span:nth-child(1) { top: 9px; }
.Toggle span:nth-child(2) { top: 18px; }
.Toggle span:nth-child(3) { top: 27px; }

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



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

#footer_wrap .footer_logo {
    width: 150px;
    margin: 0 auto 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: #2A2A2A;
	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;
    margin-top: 10px;
    letter-spacing: 0.1em;
    font-weight: 400;
}


/*--　ページアップ　--*/
#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;
}        