@charset "utf-8";
@media screen and (min-width: 1000px) {
:root {
 	font: 62.5% / 1 sans-serif;
 	overflow-y: scroll;
 	box-sizing: border-box;
 	text-rendering: optimizeLegibility;
 	-ms-overflow-style: -ms-autohiding-scrollbar;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img, svg {
	max-width: 100%;
	height: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
}
}
body {
	font-family: 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.53846;
    color: #333;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: auto;
	-webkit-print-color-adjust: exact;
	max-width: 1500px;
    width: 100%;
    background: #d7d7d7;
    margin: auto;
}
li {
    list-style-type: none;
}
a {
	text-decoration: none;
}
/*---------ヘッダー---------*/
#header {
    background: #505d71;
	max-width: 1500px;
	width: 100%;
	height: 76px;
	position: fixed;
    top: 0;
    z-index: 1001;
}
#header .show-pc {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#header a {
	display: block;
	color: #fff;
	font-size: 1.6rem;
	transition: 0.2s;
}
#header a:hover {
	text-decoration: underline;
}
#header a.nodeko:hover {
	text-decoration: none;
}
#header a.logo {
	background: #fff;
    justify-content: center;
    align-items: center;
    height: 76px;
    display: flex;
	display: -webkit-flex;
}
#header a.logo img {
	width: 45%;
}
#g-navi_pc {
	display: flex;
	display: -webkit-flex;
}
#g-navi_pc li {
	border-left: 1px solid #fff;
    padding: 0 20px;
}
#g-navi_pc li:first-child {
	border-left: none;
}
nav,
#g-navi,
.link_area {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	margin-right: 10px;
}
#g-navi li a {
    margin-right: 30px;
}
.link_area img {
	width: 20px;
}
.link_area a {
	border-left: 1px solid #fff;
	padding: 0 20px;
}
/*---------フッター---------*/
footer {
	background: #505d71;
	font-size: 1.2rem;
	padding: 30px 0;
	text-align: center;
	color: #fff;
}
/*---------ページトップ---------*/
#page-top a {
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: end;
    padding-bottom: 13px;
	background: #505d71;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.0rem;
	transition: all 0.3s;
}
#page-top a:before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 0;
	left: 22px;
	width: 13px;
	height: 13px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 1000;
	opacity: 0;
	transform: translateY(100px);
}
/*上に上がる動き*/
#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*下に下がる動き*/
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(100px);
	}
}
/*----------------------------------------
タブレット・スマホ
----------------------------------------*/
@media screen and (max-width: 999px) {
:root {
	font: 62.5% / 1 sans-serif;
	overflow-y: scroll;
	box-sizing: border-box;
	text-rendering: optimizeLegibility;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.53846;
	overflow: hidden;
	color: #333;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: auto;
}
img, svg {
	max-width: 100%;
	height: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
}
/*---------ヘッダー---------*/
#header {
	display: block;
	height: 60px;
	max-width: inherit;
}
#header .show-pc {
	display: none;
}
#header a.logo {
	height: 60px;
	width: 19%;
}
nav {
	margin-right: 0;
}
.nav_flex {
	display: flex;
	display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
	-webkit-justify-content: space-between;
}
.link_area {
	margin-right: 50px;
}
.link_area a:first-child {
	border-left: none;
}
#header a.logo img {
    width: 50%;
}
#g-nav_sp {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: #505d71;
	transition: all 0.6s;
	display: none;
	text-align: center;
}
#g-nav_sp.panelactive {
	display: block;
	right: 0;
	background: #424c5b;
}
/*ボタン*/
.openbtn {
	position:fixed;
    z-index: 9999;
	top: 6px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
.openbtn span {
	display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*-----ハンバーガーメニュー中身-----*/
#header #g-navi_sp a.logo {
	width: 30%;
}
#header #g-navi_sp a.logo img {
	width: 40%;
}
#g-navi_sp ul {
	margin-top: 50px;
}
#g-navi_sp ul li {
	margin-bottom: 10px;
}
#header #g-navi_sp .nav_flex a {
	font-size: 1.6rem;
}
#header #g-navi_sp a {
	font-size: 2.0rem;
}
#g-navi_sp .link_area {
	margin-right: 60px;
}
#g-navi_sp .link_area a:first-child {
	border-left: none;
}
#g-navi_sp .bo_line {
	width: 350px;
    margin: 50px auto 0;
    text-align: left;
}
#g-navi_sp .bo_line li {
	border-bottom: 2px solid #fff;
	margin-bottom: 0;
}
#g-navi_sp .bo_line li a {
	position: relative;
	padding: 10px 0;
}
#g-navi_sp .bo_line li a:before {
	position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    padding: 0;
    right: 7px;
    top: 20px;
}
/*---------ページトップ---------*/
#page-top a {
	padding-bottom: 9px;
	width: 50px;
    height: 50px;
}
#page-top a:before {
	top: 15px;
    left: 18px;
    width: 11px;
    height: 11px;
}
}
@media screen and (max-width: 599px) {
/*-----ヘッダー-----*/
#header a {
	font-size: 1.4rem;
}
#header a.logo {
	width: 30%;
}
#header a.logo img {
	width: 65%;
}
.link_area a {
	padding: 0px 15px;
}
.link_area img {
	width: 18px;
}
.openbtn {
	right: 6px;
}
#header #g-navi_sp a.logo img {
	width: 65%;
}
#g-navi_sp .bo_line {
	width: 200px;
}
}