/*----------------------------------------*/
/* :root */
/*----------------------------------------*/

:root {
	--ja: "Zen Kaku Gothic New", sans-serif;
	--en: "Montserrat", sans-serif;
	--sys: helvetica, arial, 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
	--basic: #393939;
	--blue: #0066FF;
	--lightblue: #A7D6FF;
	--yellow: #FED502;
}

/*----------------------------------------*/
/* 基本 */
/*----------------------------------------*/

body {
	font-family: var(--ja);
	color: var(--basic);
	min-width: 320px;
}
a {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: var(--basic);
	text-decoration: none;
}
img {
	max-width: 100%;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
	font-weight: 700;
}
dl, dt, dd {
	margin: 0;
}
ul.none,
ol.none {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.br-sp-only {
  display: none;
}
@media (min-width: 768px) {
	.container {
		max-width: 1125px;
		padding-left: 50px;
		padding-right: 50px;
	}
}
@media (max-width: 767px) {
	.container {
		max-width: 575px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 575px) {
  .br-sp-only {
    display: block;
  }
}

/*----------------------------------------*/
/* .header */
/*----------------------------------------*/

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 1000;
}
.header .inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-left: 40px;
}
.header .site-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.04em;
	margin: 0;
	padding-top: 5px;
	transition: 0.3s;
}
.header .site-title img {
	width: 267.8px;
	transition: width 0.3s;
}
.header .site-title div {
	margin: 0.25em 0 0 -0.2em;
}
.header .btn-wrap {
	display: flex;
	align-items: center;
}
.header .btn-wrap .toa {
	display: block;
	line-height: 1;
}
.header .btn-wrap a {
	transition: opacity 0.3s ease; /* ここだけに限定 */
	will-change: opacity;
}
.header .btn-wrap ul {
	display: flex;
	margin-left: 25px;
}
.header .btn-wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 205px;
	height: 90px;
	background-color: #4B4B4B;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	opacity: 1;
}
.header .btn-wrap ul li:nth-child(2) a {
	background-color: var(--blue);
}
.header .btn-wrap ul li a img {
	margin-right: 10px;
}

@media (min-width: 768px) {
	.header .site-title a:hover,
	.header .btn-wrap a:hover {
		opacity: 0.7;
	}
}

/*----------------------------------------*/
/* .hamburger */
/*----------------------------------------*/

.hamburger {
	position: relative;
	width: 63px;
	height: 60px;
	background-color: var(--blue);
}
.hamburger .navbar-toggler-icon {
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 0;
	background-color: #ffffff;
	position: absolute;
	transition: 0.5s;
	transform: translate(-50%,-50%) rotate(0);
	top: 50%;
	left: 50%;
}
.hamburger .navbar-toggler-icon::before,
.hamburger .navbar-toggler-icon::after {
	position: absolute;
	content: "";
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 0;
	background-color: #ffffff;
	transform-origin: center;
	transition: 0.3s;
}
.hamburger .navbar-toggler-icon::before {
	transform: translate(0,-8px) rotate(0deg);
}
.hamburger .navbar-toggler-icon::after {
	transform: translate(0,8px) rotate(0deg);
}
/*オープン*/
.hamburger.open .navbar-toggler-icon {
	transform: translate(-50%,-50%) rotate(40deg);
}
.hamburger.open .navbar-toggler-icon::before {
	transform: translate(0,0) rotate(100deg);
}
.hamburger.open .navbar-toggler-icon::after {
	transform: translate(0,0) rotate(100deg);
	opacity: 0;
}

/* .sp-btn-wrap */
.header .sp-btn-wrap ul {
	display: flex;
}
.header .sp-btn-wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 63px;
	height: 60px;
	background-color: #4B4B4B;
	color: #ffffff;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
}
.header .sp-btn-wrap ul li a dl dd {
	padding-left: 0.3em;
	margin-top: 0.2em;
}
@media (min-width: 992px) {
	.header .sp-btn-wrap {
		display: none;
	}
}
@media (min-width: 1300px) {
	.header .inner {
		justify-content: flex-end;
	}
	.header .site-title {
		position: absolute;
		right: calc(50% + 330px);
		top: 50%;
		transform: translateY(-50%);
	}
}
@media (max-width: 1199px) {
	.header .btn-wrap .toa {
		display: none;
	}
}
@media (max-width: 991px) {
	.header .inner {
		padding-left: 20px;
	}
	.header .site-title {
		font-size: 10px;
		padding-top: 5px;
	}
	.header .site-title img {
		width: 180px;
	}
	.header .btn-wrap {
		display: none;
	}
}

/*----------------------------------------*/
/* .sp-nav */
/*----------------------------------------*/

.sp-nav {
	background-color: #ffffff;
	position: fixed;
	top: 60px;
	right: -310px;
	width: 310px;
	max-height: calc(100% - 60px);
	overflow: auto;
	z-index: 1000;
	padding-left: 15px;
	font-weight: 500;
	transition: 0.3s;
}
.sp-nav.open {
	right: 0;
}
.sp-nav ul {
	padding-top: 10px;
}
.sp-nav ul li + li {
	border-top: 1px solid #ffffff;
}
.sp-nav ul li > * {
	background-color: var(--yellow);
	color: var(--basic);
	font-size: 16px;
}
.sp-nav ul + ul li > * {
	background-color: var(--lightblue);
}
.sp-nav ul li strong {
	display: block;
	font-size: 17px;
	font-weight: 700;
	border-radius: 20px 0 0 0;
	padding: 8px 0 8px 23px;
}
.sp-nav ul li a {
	position: relative;
	display: block;
	padding: 13px 0 13px 23px;
}
.sp-nav ul li a::after {
	position: absolute;
	right: 25px;
	top: 50%;
	content: url("/img/yellow/sp-nav-arrow.svg");
	transform: translateY(-50%);
	transition: 0.3s;
}
.sp-nav ul + ul li a::after {
	content: url("/img/lightblue/sp-nav-arrow.svg");
}
.sp-nav ul li:nth-child(4) a {
	background-image: url("/img/yellow/nav-dl-02.svg");
	background-repeat: no-repeat;
	background-position: right 20px bottom 13px;
}
.sp-nav ul li:nth-child(4) a::after {
	right: 20px;
	content: url("/img/yellow/nav-dl-01.svg");
	transform: translateY(-70%);
}
.sp-nav ul + ul li:nth-child(4) a {
	background-image: url("/img/lightblue/nav-dl-02.svg");
}
.sp-nav ul + ul li:nth-child(4) a::after {
	content: url("/img/lightblue/nav-dl-01.svg");
}
.sp-nav .btn-wrap {
	padding: 20px 0 25px 0;
}
.sp-nav .btn-wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 55px;
	background-color: var(--blue);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	margin: 0 auto;
}
.sp-nav .btn-wrap a img {
	margin-right: 7px;
}
@media (min-width: 768px) {
	.sp-nav ul li a:hover::after {
		right: 20px;
	}
	.sp-nav ul li:nth-child(4) a:hover::after {
		right: 20px;
		transform: translateY(-50%);
	}
	.sp-nav .btn-wrap a:hover {
		opacity: 0.7;
	}
}
@media (min-width: 992px) {
	.sp-nav {
		display: none !important;
	}
}
@media (max-width: 991px) {
	body.fixed {
		position: relative;
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
}

/*----------------------------------------*/
/* .bnr-section */
/*----------------------------------------*/

.bnr-section {
	padding: 0 0 150px 0;
}
.bnr-section ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.5px;
}
.bnr-section ul li {
	width: 33.33%;
	padding: 0 1.5px;
}
.bnr-section ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	min-height: 160px;
	background-color: var(--blue);
	color: #ffffff;
	font-size: 13px;
	line-height: 1.4;
	padding: 35px 0 20px 0;
}
.bnr-section ul li a dl {
	padding: 0 10px;
}
.bnr-section ul li a dl dt {
	font-weight: 500;
	margin-bottom: 20px;
}
.bnr-section ul li a dl dd:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
}
.bnr-section ul li a dl dd:nth-child(2) img {
	margin-right: 10px;
}
.bnr-section ul li:nth-child(3) a dl dd:nth-child(2) {
	font-size: 30px;
	letter-spacing: 0.06em;
	margin-top: -5px;
}
.bnr-section ul li a dl dd:nth-child(3) {
	font-size: 12px;
	margin-top: 10px;
}
.bnr-section ul li:nth-child(3) a dl dd img {
	margin-bottom: -0.15em;
}
.bnr-section ul li a::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 0%;
	height: 100%;
	background-color: #ffffff;
	opacity: 0;
	transition: width 0.3s ease-out, opacity 0.3s ease-out;
}
@media (min-width: 768px) {
	.bnr-section .container {
		max-width: 1060px;
	}
	.bnr-section ul li a:hover::after {
		width: 100%;
		opacity: 0.3;
		transition: width 0.3s ease-out, opacity 0.3s ease-out;
	}
	.bnr-section ul li:nth-child(2) a dl dd img {
		margin-bottom: -0.1em;
	}
}
@media (max-width: 991px) {
	.bnr-section {
		padding: 0 0 70px 0;
	}
	.bnr-section ul li a dl dd:nth-child(2) {
		font-size: 18px;
	}
	.bnr-section ul li:nth-child(3) a dl dd:nth-child(2) {
		font-size: 22px;
	}
	.bnr-section ul li a dl dd:nth-child(3) {
		font-size: 11px;
	}
}
@media (max-width: 767px) {
	.bnr-section ul li {
		width: 100%;
	}
	.bnr-section ul li + li {
		margin-top: 4px;
	}
	.bnr-section ul li a {
		align-items: center;
		min-height: 80px;
		padding: 5px 0;
	}
	.bnr-section ul li a dl dt {
		margin-bottom: 3px;
	}
	.bnr-section ul li:nth-child(3) a {
		padding: 10px 0 5px 0;
	}
	.bnr-section ul li a dl dd:nth-child(3) {
		margin-top: 3px;
	}
}

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

.footer {
	font-family: var(--sys);
	font-size: 12px;
	line-height: 1.8;
	background-color: #efefef;
	color: #1E1E1E;
	padding: 45px 0 25px 0;
}
.footer .nav-wrap ul.menu {
	display: flex;
	margin: 0 -1em 20px -1em;
	line-height: 1;
}
.footer .nav-wrap ul.menu li {
	position: relative;
	padding: 0 1em;
}
.footer .nav-wrap ul.menu li::after {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #1E1E1E;
}
.footer .nav-wrap ul.menu li:last-child::after {
	content: none;
}
.footer .nav-wrap ul.menu li a {
	letter-spacing: -0.05em;
}
.footer .nav-wrap ul.button {
	display: flex;
	margin: 0 -3px;
}
.footer .nav-wrap ul.button li {
	padding: 0 3px;
}
.footer .nav-wrap ul.button li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 45px;
	background-color: #0356A2;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
}
/* Firefox */
@-moz-document url-prefix() {
	.footer .nav-wrap ul.button li a {
	  padding-top: 4px;
	}
}
.footer .nav-wrap ul.button li:nth-child(2) a {
	background-color: #ffffff;
	color: #0356A2;
}
.footer .copyright {
	color: #59616B;
}
@media (min-width: 768px) {
	.footer .inner {
		position: relative;
		padding-top: 70px;
	}
	.footer .txt-wrap {
		position: absolute;
		left: 0;
		top: 0;
	}
	.footer .nav-wrap {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.footer .nav-wrap ul.menu {
		justify-content: flex-end;
		margin-bottom: 40px;
	}
	.footer .nav-wrap ul.button {
		justify-content: flex-end;
	}
	.footer .copyright {
		margin-top: 70px;
	}
	.footer a.toa:hover,
	.footer .nav-wrap ul.button li a:hover {
		opacity: 0.7;
	}
	.footer .nav-wrap ul.menu li a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 767px) {
	.footer .txt-wrap {
		margin: 20px 0 40px 0;
	}
	.footer .nav-wrap ul.menu,
	.footer .nav-wrap ul.button {
		justify-content: center;
	}
	.footer .nav-wrap ul.button li {
		width: 50%;
	}
	.footer .nav-wrap ul.button li a {
		width: 100%;
	}
	.footer .copyright {
		text-align: center;
		margin-top: 30px;
	}
}

/*----------------------------------------*/
/* .totop */
/*----------------------------------------*/

.footer .container {
	position: relative;
}
.totop {
	position: absolute;
	right: 50px;
	top: -130px;
}
.totop a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 62px;
	height: 62px;
	background-color: #59616B;
	border-radius: 50%;
}
@media (min-width: 768px) {
	.totop a:hover {
		opacity: 0.7;
	}
}
@media (max-width: 991px) {
	.totop {
		top: -109px;
	}
	.totop a {
		width: 58px;
		height: 58px;
	}
}
@media (max-width: 767px) {
	.totop {
		right: 20px;
	}
}