@charset "utf-8";

@media screen and (max-width:1000px) {

/* ============================================================
entire
============================================================ */

html {
	scrollbar-width: none;
}
body::-webkit-scrollbar {
	display: none;
}

/* ============================================================
header
============================================================ */

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 14;
	width: 100%;
	max-width: 100%;
	height: 60px;
	background: var(--green);
}
header .nav1 p {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 202px;
	height: 30px;
}
header .nav2 a.btn {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: url(../images/common/btn_menu_sp.svg);
	background-size: cover;
	transition: background .1s ease-in;
}
header .nav2 a.btn.on {
	background: url(../images/common/btn_close_sp.svg);
}
header .nav2 > ul {
	position: fixed;
	top: 60px;
	right: 0;
	width: 100%;
	background: rgba(7,19,51,0.85);
	visibility: hidden;
	opacity: 0;
	transition: all .1s ease-in;
}
header .nav2 > ul.show {
	visibility: visible;
	opacity: 1;
}
header .nav2 > ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 46px;
	margin: 0 30px;
	border-bottom: solid 1px #fff;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	transition: color .1s ease-in;
}
header .nav2 > ul > li:last-child a {
	border-bottom: none;
}
header .nav2 dt a {
	position: relative;
}
header .nav2 dt a::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 0;
	width: 22px;
	height: 14px;
	background: url(../images/common/arrow_down.svg);
	background-size: 22px 14px !important;
}
header .nav2 dt a.on::after {
	background: url(../images/common/arrow_up.svg);
}
header .nav2 dd {
	display: none;
}
header .nav2 dd a {
	font-size: 1.6rem;
}

/* ============================================================
common
============================================================ */

/* ============================================================
main
============================================================ */

main {

}

/* ============================================================
footer
============================================================ */

/* footer
-------------------------------------------------------------*/

footer nav.nav1 {
	width: 100%;
	max-width: 100%;
	padding: 60px 0 50px;
	background-color: var(--green);
	background-image: url(../images/common/bg_1_up.png),url(../images/common/bg_1_down_alt.png);
	background-size: 16px;
	background-repeat: repeat-x;
	background-position: left top,left bottom;
}
footer nav.nav1 > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
}
footer nav.nav1 > ul > li {
	margin-bottom: 16px;
}
footer nav.nav1 > ul > li:nth-child(2) {
	margin-bottom: 6px;
}
footer nav.nav1 > ul > li:nth-child(4) {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
footer nav.nav1 > ul > li:nth-child(1) {order:1;}
footer nav.nav1 > ul > li:nth-child(2) {order:2;}
footer nav.nav1 > ul > li:nth-child(3) {order:4;}
footer nav.nav1 > ul > li:nth-child(4) {order:3;}

footer nav.nav1 > ul > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20em;
	height: 3em;
	margin-bottom: 5px;
	border-radius: 35px;
	border: 1px solid #707070;
	background: #fff url(../images/common/arrow_alt.svg) no-repeat center right 9%;
	background-size: 12px 19px;
}
footer nav.nav1 > ul > li:nth-child(1) > a {
	width: 19em;
	font-size: 1.8rem;
}

footer nav.nav2 {
	margin: 0 6vw;
	padding: 40px 0 20px;
	font-size: 1.4rem;
	color: #707070;
}
footer nav.nav2 ul {
	margin-bottom: 30px;
}
footer nav.nav2 li {
	margin-bottom: 10px;
	margin-right: 27px;
}
footer nav.nav2 ul a {
	display: inline-block;
	position: relative;
	padding-left: 1.1em;
}
footer nav.nav2 ul a::before {
	content: '▲';
	position: absolute;
	top: 0.2em;
	left: 0;
	transform: rotate(90deg);
	font-size: 1.2rem;
}
footer nav.nav2 p {
	text-align: center;
	font-size: 1.1rem;
}

/* div.btn_gotop
-------------------------------------------------------------*/

div.btn_gotop {
	position: fixed;
	bottom: 4vw;
	right: calc(6vw - 26px);
	right: 1vw;
	z-index: 9;
	width: 53px;
	height: 60px;
	opacity: 0.8;
}
/* 
div.btn_gotop.bottom {
	position: absolute;
	bottom: 185px;
}
 */
div.btn_gotop a {
	display: block;
	width: 40px;
	height: 40px;
	background: url(../images/common/pagetop.svg) no-repeat;
	background-size: 40px;
}

}/* end @media */



















