@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/*
	--main-black: #3D4041;
	--base-gray: #EEEEEE;
	--red: #DC000C;
	--blue: #0353A9;
	--sky-blue: #35AAD1;
*/

html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #3D4041;
	font-weight: 400;
	line-height: 1.7;
}
a img:hover {
	opacity: 0.8;
	transition: 0.5s;
}
a:hover {
	transition: 0.5s;
}

a {
	color: #0353A9;
}

.emph-color {
	color: #DC000C;
}

.emph-line {
	text-decoration: underline;
}

.emph-bold {
	font-weight: 700;
}

.br_pc {
	display: block;
}

.br_rp {
	display: none;
}

.to_member {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: rgba(220,0,12,0.8);
	color: #fff;
	text-align: center;
	z-index: 999;
	line-height: 1.5;
	font-size: 1.4rem;
}

.main {
	font-size: 1.7rem;
}

@media only screen and (max-width: 1460px) {
	.main {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 1024px) {
	.main {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 768px) {
	.main {
		font-size: 1.4rem;
	}
	.to_member {
		display: none;
	}
	.br_pc {
		display: none;
	}
	.br_rp {
		display: block;
	}
}

/*-----------
  header
-----------*/
.header {
	background: #fff;
}

.humb-menu {
	display: none;
}

.rp-logo {
	display: none;
}

/*-----------
  sidebar
-----------*/

.sidebar {
	font-size: 1.5rem;
	padding: 0;
	width: 260px;
	height: 100%;
	position: fixed;
	color: #fff;
	background: #3D4041;
	text-align: center;
	z-index: 999;
}

.brand-logo {
	background: #fff;
	height: 195px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-right: 1px solid #eeeeee;
}

.global-nav {
	padding: 0 2rem;
	display: flex;
	justify-content: center;
}

.global-nav ul {
	list-style: none;
	margin-left: 0;
	text-align: left;
	width: 100%;
}
.global-nav > ul > li {
	position: relative;
	border-bottom: 1px solid #fff;
	padding: 0rem 0;
}

.global-nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	-moz-transition: background-color .5s linear;
	-webkit-transition: background-color .5s linear;
	transition: background-color .5s linear;
	padding: 0.8rem 0;
}

.global-nav .sub-menu.is-active > a,
.global-nav a:hover {
	color: #fff;
	opacity: 0.5;
	/*background: #A1A2A2;*/
}

.global-nav .sub-menu-nav a,
.global-nav .sub-menu:hover .sub-menu-nav {
	width: 260px;
}

/* sub-menu icon */
.global-nav .sub-menu > a {
	position: relative;
}
.global-nav .sub-menu > a:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 4px;
	margin: auto;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* sub-menu */
.global-nav .sub-menu-nav {
	position: fixed;
	background: rgba(255,255,255,0.85);
	color: #fff;
	top: 0;
	padding-top: 90px;
	left: 260px;
	width: 0;
	height: 100%;
	overflow: hidden;

	-moz-transition: width .2s ease-out;
	-webkit-transition: width .2s ease-out;
	transition: width .2s ease-out;
}
.global-nav .sub-menu.is-active > a:after,
.global-nav .sub-menu > a:hover:after {
	border-color: #fff;
}
.global-nav .sub-menu-nav a {
	color: #3D4041;
	border-bottom: 1px solid #3D4041;
	padding: 0.8rem 1.6rem;
}
.global-nav .sub-menu-nav a:hover {
	opacity: 0.7;
	background: rgba(255,255,255,1);
}

.global-nav .head-menu {
	font-size: 1.7rem;
	font-weight: 700;
	margin-top: 2.8rem;
	padding-bottom: 0.8rem;
}

.head-menu::before {
	display: inline-block;
	content: "";
	background: url("../img/common/menu-deco.svg") no-repeat center center;
	background-size: contain;
	width: 12px;
	height: 12px;
	margin-right: 0.8rem;
}

.alone-menu > a::before {
	display: inline-block;
	content: "";
	background: url("../img/common/menu-deco.svg") no-repeat center center;
	background-size: contain;
	width: 12px;
	height: 12px;
	margin-right: 0.8rem;
}

.alone-menu > a {
	position: relative;
}
.alone-menu > a:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 4px;
	margin: auto;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.global-nav > ul > .alone-menu {
	border-bottom: none;
}

.alone_first {
	margin-top: 2.8rem;
}

@media only screen and (max-width: 1460px) { 
	.sidebar {
		font-size: 1.4rem;
		padding: 0;
		width: 230px;
	}
	.brand-logo {
		height: 172px;
	}
	.brand-logo img {
		width: 140px;
	}
	.global-nav a {
		padding: 0.6rem 0;
	}
	.global-nav .head-menu {
		padding: 0.6rem 0;
		margin-top: 1.6rem;
		font-size: 1.6rem;
	}
	/* sub-menu */
	.global-nav .sub-menu-nav {
		left: 230px;
	}
	
	.head-menu {
		margin-top: 2rem;
		font-size: 1.6rem;
	}
	.alone_first {
		margin-top: 2rem;
	}
}
 
@media only screen and (max-width: 1024px) {
	
}

@media only screen and (max-width: 768px) {
	.sidebar {
		display: none;
	}
	
	.header {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 1.6rem 0;
	}
	.rp-logo {
		display: block;
	}
	
	/*ハンバーガーメニュー*/
	.humb-menu {
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
	}
	
	.humb-menu a {
		color: #fff;
	}
	
	#gnav-btn {
    padding: 8px;
    position: fixed;
    top: 4px;
    right: 4px;
    z-index: 100;
    background: #3D4041;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		border: none;
  }
  #gnav-input:checked ~ #gnav-content {
    top: 0;
  }
  #gnav-content {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 10;
    transition: 0.3s;
    width: 100%;
	height: 100%;
	background: rgba(61,64,65,0.9);
	padding: 0 2rem 4rem;
	overflow-y: scroll; 
	-webkit-overflow-scrolling: touch;
  }
	.humb-logo {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 1.6rem 0;
	}
	.humb-headline {
		padding: 0.8rem 0;
		display: block;
		color: #fff;
		font-size: 1.6rem;
	}
	
	.humb-headline::before {
		display: inline-block;
		content: "";
		background: url("../img/common/menu-deco.svg") no-repeat center center;
		background-size: contain;
		width: 12px;
		height: 12px;
		margin-right: 0.8rem;
	}
	
	.humb-member {
		display: block;
		text-align: center;
		border: 1px solid #fff;
		color: #fff;
		width: 100%;
		padding: 0.8rem 0;
		margin: 0.8rem 0;
		position: relative;
	}
	
	.humb-member::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 16px;
		margin: auto;
		vertical-align: middle;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
  .humb-title {
    padding: 0.8rem 0;
		display: block;
		color: #fff;
	  border-top: 1px solid #fff;
  }
	
  .humb-menu label {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    cursor: pointer;
    border-top: 1px solid #fff;
		color: #fff;
  }
  .humb-menu input {
    display: none;
  }
  .humb-menu .accshow {
    height: 0;
    overflow: hidden;
		color: #fff;
  }
  .humb-menu .accshow a {
    padding: 0rem 1.2rem 1.2rem;
		display: block;
		color: #fff;
  }
  .humb-menu .aac:checked + .accshow {
    height: auto;
  }

	label.humb-semi-head {
		font-size: 1.6rem;
		padding: 1.2rem 0 0;
		border-top: none;
	}
	.humb-semi-head p:first-child::before {
		display: inline-block;
		content: "";
		background: url("../img/common/menu-deco.svg") no-repeat center center;
		background-size: contain;
		width: 12px;
		height: 12px;
		margin-right: 0.8rem;
	}
	.accshow .humb-sub:nth-child(1) {
		padding-top: 1.2rem;
	}
 
}
 
@media all and (min-width: 480px) and (max-width: 768px) { }
 
@media all and (max-width: 480px) { }

/*-----------
  main
-----------*/
.main {
	width: calc(100% - 26rem);
	margin: 0 0 0 26rem;
	display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.inner {
	max-width: 1080px;
	width: 100%;
	display: block;
}

@media only screen and (max-width: 1460px) {
	.main {
		width: calc(100% - 23rem);
		margin: 0 0 0 23rem;
	}
	.inner {
		max-width: 1000px;
	}
}

@media only screen and (max-width: 768px) {
	.main {
		width: 100%;
		margin: 0;
	}
}

/*-----------
  footer
-----------*/
.footer {
	font-size: 1.2rem;
	color: #fff;
	background: #838585;
	margin-top: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 3.6rem 0;
}

.foot-address {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2rem;
}

.foot-logo {
	padding-right: 2rem;
}

.foot-note {
	text-align: center;
}

/*back-to-top*/
.back-to-top {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgba(61,64,65,0.7);
}

.back-to-top a {
    position: relative;
    display: flex;
	justify-content: center;
	align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.back-to-top a::before {
		content: "";
    margin-top: 0.6rem;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
	.footer {
		font-size: 1rem;
		padding: 2.4rem 1.6rem;
	}

	.foot-address {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 0 0rem 0.8rem;
	}
	
	.foot-address a {
		color: #fff;
	}
	
	.foot-logo {
		display: block;
		width: 80px;
		margin: 0 auto 0.8rem;
	}

	
	/*back-to-top*/
	.back-to-top {
			width: 40px;
			height: 40px;
			position: fixed;
			right: 4px;
			bottom: 4px;
	}

	.back-to-top a {
			width: 40px;
			height: 40px;
	}

	.back-to-top a::before {
			content: "";
			margin-top: 0.4rem;
			width: 8px;
			height: 8px;
			border-top: 1px solid #fff;
			border-right: 1px solid #fff;
			-moz-transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
	}
}

