:root {
	--col-b1: #000011;
	--col-b2: #000023;
	--col-bl: #232346;
	--col-rd: #990000;
	--col-pk: #963264;
	--col-yw: #969632;
	--col-lb: #6496c8;
}
header {
	position: relative;
}
header .logo {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10000;
	width: 70px;
	height: auto;
	filter: drop-shadow(0 0 5px rgba(255,255,255,1));
}

.menu-toggle{
	padding:0.5rem;
	position:fixed;
	top:0;
	right:0;
	z-index: 10001;
	display: none;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 36px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--col-bl);
  border-radius: 4px;
	box-shadow: 0 0 6px 1px rgba(255,255,255,0.5);
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 16px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(16px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-16px) rotate(45deg);
}
.menu-trigger.active span {
  background-color: #fff;
	box-shadow: none;
}

header .g_nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10000;
	width: 480px;
}
.g_nav ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.g_nav ul li {
	flex: 0 0 120px;
	background: var(--col-b1);
	color: white;
	text-align: center;
	line-height: 50px;
}
.g_nav ul li a {
	display: block;
	transition: 0.3s ease all;
}
.g_nav ul li a:hover {
	background: var(--col-rd);
	transition: 0.8s ease all;
}
article {
	color: #333;
}
footer {
	background: var(--col-bl);
	padding-bottom: 10px;
}
.footer_con{
	display: flex;
	justify-content: center;
	align-items: center;
  max-width: 1300px;
	margin: 0 auto;
	padding: 2rem 0;
	color: #ffffff;
}
.footer_logo img{
	width: 50%;
	max-width: 100px;
}
.footer_logo{
	width: 20%;
	text-align: center;
}
.footer_map{
	width: 20%;
}
footer .f_com{
	width: 40%;
}
.sp_only_f{
	display: none;
}
.f_com {
	text-align: center;
	color: white;
	padding: 50px 0;
}
.f_com h2 {
	font-size: 28px;
	letter-spacing: 0.2rem;
	line-height: 2;
}
.f_com p {
	font-size: 18px;
	line-height: 1.8;
}
.g_nav .f_com{
		background: var(--col-bl);
}
.sitemap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	color: white;
	padding: 50px 0 30px;
	justify-content: center;
}
.sitemap > div {
	margin-left: 2rem;
	margin-right: 2rem;
}
.f_com .sm_title,
.footer_map .sm_title{
	font-size: 20px;
	line-height: 2;
	margin-right: 1rem;
}
.sm_title a{
	display: block;
}
.sm_title.to_con {
	text-align: center;
	border: 0.8px solid white;
}
.sm_title.to_con a{
	display: block;
	padding-left: 1rem;
	padding-right: 1rem;
}
.sm_title.to_con a:hover {
    background: white;
		color: var(--col-bl); 
    transition: 0.8s ease all;
}
.sitemap p {
	line-height: 1.5;
}
.copyright {
	color: white;
	text-align: center;
}
.copyright small{
	font-size: 0.8rem;
}
.sp_only {
    display: none;
}

/*タブレット＿900px以下*/
@media(max-width:900px){
	.menu-toggle{
		display: block !important;
	}
	header .g_nav{
		display: none;
	}
	.g_nav ul {
    display: block;
	}
	header .g_nav {
		width: 100%;
	}
	.f_com.sp_only{
		display: block;
	}
	.g_nav ul li a{
		font-size: 18px;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	.pc_only_br{
		display: none;
	}
	.sp_only_br{
		display: inline;
	}

}
/*スマホ＿479px以下*/
@media(max-width:479px){
}

/*PC_901px以上*/
@media(min-width:901px){
	header .g_nav{
		display: block !important;
	}
	.pc_only_br{
		display: inline;
	}
	.sp_only_br{
		display: none;
	}
}
/*footer用ブレイクポイント1080px*/
@media(max-width:1079px){
	.pc_only_f{
		display: none;
	}
	.sp_only_f{
		display: block;
	}
	.f_com .sm_title {
		display: inline-block;
	}
	.pc_only_f .sm_title{
		display: none;
	}
}
@media(min-width:1080px){
	.f_com .sm_title {
		display: none;
	}
	.pc_only_f .sm_title{
		display: inline-block;
	}
}
@media(max-width:900px){
	.footer_con{
		flex-direction: column;
	}
	footer .f_com{
		width: 100%;
		padding: 20px 0;
	}
	.footer_logo img {
    width: 55px;
	}
}