/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body, h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li,
figure, figcaption {
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: normal;
}
ol, ul {
	list-style-type: "";
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
a {
	color: inherit;
	text-decoration: none;
}
a img {
	border: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
button {
	cursor: pointer;
}
input {
	border: none;
	border-radius: 0;
	font: inherit;
}
select {
	font: inherit;
}
iframe {
	border: none;
}
/* -----------------------------------------------
= font
----------------------------------------------- */
@font-face {
	font-family: "dinregular";
	src: url("../font/dinbold-webfont.woff2") format("woff2"),
		url("../font/dinbold-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--yu-min: "游明朝体", "Yu Mincho", YuMincho, serif;
	--din: "dinregular", sans-serif;
	--blue: #084fac;
	--light-blue: #6a96d3;
	--dark-blue: #0b308e;
	--hover-blue: #234aae;
	--grad-blue: linear-gradient(90deg,#083eaa,#085baf);
	--red: #bc0d52;
	--light-red: #d76e97;
	--grad-red: linear-gradient(90deg,#890039,#bc0d52);
	--filter-blue: invert(12%) sepia(54%) saturate(7480%) hue-rotate(207deg) brightness(98%) contrast(94%);
	--filter-dark-blue: invert(21%) sepia(75%) saturate(2008%) hue-rotate(209deg) brightness(73%) contrast(106%);
	--filter-light-blue: invert(83%) sepia(4%) saturate(2541%) hue-rotate(190deg) brightness(95%) contrast(95%);
	--filter-light-red: invert(68%) sepia(32%) saturate(2613%) hue-rotate(296deg) brightness(91%) contrast(83%);
	--filter-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: .8s .4s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: #0d0d0d;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
}
.is-pc {
	display: none;
}
@media print, screen and (width >= 768px) {/* PC */
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
}
.header .inner {
	background: #fff;
}
.header .logo {
	width: 45px;
	margin-inline: auto;
	padding: 8px 0;
}
@media print, screen and (width >= 768px) {/* PC */
.header .inner {
	position: relative;
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: min(30px, calc(30 / 1300 * 100vw));
	border-radius: 0 0 30px 30px;
}
.header .logo {
	width: 64px;
	margin: 0;
	padding-block: 30px 12px;
}
.header .logo a {
	display: block;
	position: relative;
	z-index: 6;
}
.is-scrolled .header .inner {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.is-scrolled .header .logo {
	padding-block: 7px 5px;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.btn-nav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
	width: 70px;
	height: 60px;
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	content: "";
	position: absolute;
	left: 21px;
	height: 1px;
	background: linear-gradient(90deg,#0648bc,#0384db);
}
.btn-nav::before {
	top: 13px;
	width: 30px;
}
.btn-nav::after {
	top: 21px;
	width: 25px;
}
.btn-nav span::before {
	top: 30px;
	width: 20px;
}
.btn-nav span::after {
	content: "MENU";
	position: absolute;
	left: 18px;
	top: 40px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
	line-height: 1;
}
.btn-nav[aria-expanded="true"]::before {
	top: 21px;
	left: 25px;
	width: 25px;
	transform: rotate(-45deg);
}
.btn-nav[aria-expanded="true"]::after {
	top: 21px;
	left: 25px;
	transform: rotate(45deg);
}
.btn-nav[aria-expanded="true"] span::before {
	display: none;
}
.btn-nav[aria-expanded="true"] span::after {
	content: "CLOSE";
}
.nav {
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	z-index: 5;
	width: 100%;
	max-height: calc(100svh - 60px);
	color: #fff;
	background: var(--grad-blue);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.nav.is-open {
	display: block;
}
.nav .utility {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding: 20px 18px 20px;
}
.nav .utility li {
	width: calc(50% - 7px);
}
.nav .utility li a {
	display: block;
	position: relative;
	padding: 10px 0 10px 10px;
	color: var(--blue);
	background: #fff;
	border-radius: 3px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.nav .utility li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 3em);
	height: 100%;
	filter: var(--filter-blue);
}
.nav .utility li.access a::before {
	width: 11px;
	background: url(../img/shared/icon_access.svg) no-repeat 50% / 100% auto;
}
.nav .utility li.document a::before {
	width: 10px;
	background: url(../img/shared/icon_document.svg) no-repeat 50% / 100% auto;
}
.nav .utility-for {
	display: none;
}
.nav .menu {
	padding: 0 18px 30px;
}
.nav .for {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 14px;
	margin-bottom: 30px;
	padding: 0 18px;
}
.nav .for li {
	width: calc(50% - 7px);
	border-bottom: 1px solid var(--light-blue);
}
.nav .for li a {
	display: inline-block;
	padding: 0 3px 8px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
}
.nav .search {
	padding: 0 18px 30px;
}
.nav .search-input {
	position: relative;
}
.nav .search-input::before {
	content: "";
	position: absolute;
	top: 0;
	left: 13px;
	width: 14px;
	height: 100%;
	background: url(../img/shared/icon_search.svg) no-repeat 50% / 100% auto;
	filter: var(--filter-dark-blue);
}
.nav .search-input input {
	width: 100%;
	padding: 10px 10px 10px 30px;
	border-radius: 5px;
	font-size: calc(1.6rem / 1.6);
}
@media print, screen and (width >= 768px) {/* PC */
.btn-nav {
	display: none;
}
.nav {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	max-height: calc(100vh - 110px);
	color: #0d0d0d;
	background: transparent;
	overflow: visible;
}
.nav .utility {
	order: 3;
	flex-wrap: nowrap;
	gap: 10px;
	padding: 54px min(30px, calc(30 / 1300 * 100vw)) 0 0;
}
.is-scrolled .nav .utility {
	padding-top: 17px;
}
.nav .utility li {
	width: 110px;
}
.nav .utility li a {
	padding: 5px 0 5px 10px;
	color: #fff;
	background: var(--dark-blue);
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
}
.nav .utility li a::before {
	filter: var(--filter-white);
}
.nav .utility li.document a::before {
	width: 12px;
}
.nav .utility-for {
	display: block;
	position: relative;
}
.nav .utility-for button {
	position: relative;
	width: 100%;
	padding: 5px 0 5px 10px;
	color: #fff;
	background: #0d0d0d;
	border-radius: 5px;
	font-size: 14px;
}
.nav .utility-for button::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 3em);
	width: 11px;
	height: 100%;
	filter: var(--filter-white);
	background: url(../img/shared/icon_user.svg) no-repeat 50% / 100% auto;
}
.nav .utility-for ul {
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 2;
	width: 170px;
	padding: 10px 20px;
	color: #fff;
	background: #404040;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.nav .utility-for:hover ul,
.nav .utility-for:focus-within ul {
	opacity: 1;
	pointer-events: auto;
}
.nav .utility-for li {
	width: auto;
	margin: 10px 0;
}
.nav .utility-for li a {
	display: inline;
	background: transparent;
	padding: 0;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
}
.nav .menu {
	order: 1;
	padding: 30px 10px 0 100px;
}
.is-scrolled .nav .menu {
	padding-top: 0;
}
.nav .menu {
	display: flex;
}
.nav .menu .btn-second a {
	display: block;
	margin: 0 17px;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 74px;
	white-space: nowrap;
}
.nav .menu .second {
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.nav .menu > li:hover .second,
.nav .menu > li:focus-within .second {
	opacity: 1;
	pointer-events: auto;
}
.nav .menu .second {
	position: absolute;
	top: 100%;
	left: 0;
	width: 320px;
	padding: 15px 25px;
	color: #fff;
	background: var(--blue);
	font-size: 14px;
}
.nav .for {
	gap: 0;
	position: absolute;
	top: 16px;
	right: min(30px, calc(30 / 1300 * 100vw));
	margin: 0;
	padding: 0;
	border-right: 1px solid #bcc8e7;
}
.is-scrolled .nav .for {
	display: none;
}
.nav .for li {
	width: auto;
	padding-inline: min(20px, calc(20 / 1300 * 100vw));
	border-bottom: none;
	border-left: 1px solid #bcc8e7;
	line-height: 1;
}
.nav .for li a {
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}
.nav .search {
	order: 2;
	padding: 54px min(30px, calc(30 / 1300 * 100vw)) 0 0;
}
.is-scrolled .nav .search {
	padding-top: 17px;
}
.nav .search-input {
	border-bottom: 1px dashed #bcc8e7;
}
.nav .search-input::before {
	left: 3px;
	width: 18px;
}
.nav .search-input input {
	width: 150px;
	padding: 3px 0 3px 27px;
	border-radius: 0;
	font-size: 16px;
}
}/* @media */
@media (hover:hover) {
.nav .menu .btn-second a:hover {
	color: var(--dark-blue);
}
.nav .utility > li > a:hover {
	background: var(--hover-blue);
}
.nav .utility-for button:hover {
	background: #404040;
}
.nav .utility-for li a:hover {
	text-decoration: underline;
}
.nav .for li a:hover {
	color: var(--dark-blue);
	text-decoration: underline;
}
}/* @media */
@media print, screen and (1200px > width >= 768px) {/* TABLET */
.nav .utility {
	position: absolute;
	top: 8px;
	right: min(30px, calc(30 / 1300 * 100vw));
	padding: 0;
}
.nav .for {
	right: 400px;
}
}/* @media */
@media print, screen and (1200px > width > 1000px) {/* TABLET */
.is-scrolled .nav .search {
	display: none;
}
}/* @media */
@media print, screen and (1000px >= width >= 768px) {/* TABLET */
.is-scrolled .nav .utility {
	display: none;
}
}/* @media */
@media print, screen and (910px > width >= 768px) {/* TABLET */
.nav .utility li {
	width: auto;
}
.nav .utility li a {
	display: block;
	padding: 5px 5px 5px 20px;
	font-size: 13px;
}
.nav .utility li a::before {
	left: 5px;
}
.nav .utility-for button {
	padding: 5px 5px 5px 20px;
	font-size: 13px;
}
.nav .utility li button::before {
	left: 5px;
}
.nav .menu .btn-second a {
	margin: 0 13px;
}
.nav .for {
	right: 300px;
}
}/* @media */

/* -----------------------------------------------
= menu
----------------------------------------------- */
.menu {
	font-size: calc(1.3rem / 1.6);
}
.menu .btn-second {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--light-blue);
}
.menu .btn-second a {
	display: inline-block;
	padding: 10px 3px 6px;
	font-weight: 700;
}
.menu .btn-second button {
	width: 40px;
	height: 40px;
}
.menu .btn-second button img {
	width: 8px;
	transform: rotate(90deg) translateX(5px);
	filter: var(--filter-light-blue);
}
.menu .btn-second button[aria-expanded="true"] img {
	transform: rotate(-90deg) translateX(-5px);
}
.menu .second {
	display: none;
	padding: 0 0 15px 18px;
}
.menu .second.is-open {
	display: block;
}
.menu .second li {
	padding-block: 7px;
}
.menu .third {
	margin-left: 15px;
}
.menu .third a {
	display: inline-block;
	position: relative;
	padding-left: 13px;
}
.menu .third a::before {
	content: "";
	position: absolute;
	top: .3em;
	left: 0;
	width: 8px;
	height: 9px;
	background: var(--light-blue);
	clip-path: polygon(0 0,100% 50%, 0 100%);
}
@media print, screen and (width >= 768px) {/* PC */
.menu .btn-second {
	display: block;
	margin-bottom: 0;
	border-bottom: none;
}
.menu .btn-second button {
	display: none;
}
.menu > li {
	position: relative;
}
.menu .second {
	display: block;
}
.menu .second li {
	padding-block: 8px;
}
.menu .third {
	margin-left: 15px;
}
.menu .third li {
	padding-block: 5px;
}
.menu .third a {
	display: inline-block;
	position: relative;
	padding-left: 13px;
}
.menu .third a::before {
	content: "";
	position: absolute;
	top: .3em;
	left: 0;
	width: 8px;
	height: 9px;
	background: var(--light-blue);
	clip-path: polygon(0 0,100% 50%, 0 100%);
}
}/* @media */
@media (hover:hover) {
.menu .second a:hover {
	text-decoration: underline;
}
}
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 60px;
}
@media print, screen and (width >= 768px) {/* PC */
.main {
	margin-top: 80px;
}
.admin-bar .main{
  margin-top: 50px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
	color: #fff;
	background: var(--grad-blue);
	font-size: calc(1.3rem / 1.6);
}
.footer .inner {
	padding: 40px 18px 20px;
}
.footer .logo {
	max-width: 320px;
	margin-bottom: 20px;
}
.footer .address {
	margin-bottom: 10px;
	line-height: 1.8;
}
.footer .access {
	margin-bottom: 15px;
}
.footer .access li {
	margin-left: 1em;
	margin-bottom: 5px;
	text-indent: -1em;
}
.footer .access span {
	margin-right: calc(.2rem / 1.6);
	color: var(--light-blue);
	font-size: calc(1rem / 1.6);
}
.footer .utility {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-bottom: 40px;
}
.footer .utility li:last-child {
	border-right: 1px solid var(--light-blue);
}
.footer .utility li {
	padding: 0 1.5em;
	border-left: 1px solid var(--light-blue);
	line-height: 1;
	text-align: center;
}
.footer .other {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 30px;
}
.footer .other li {
	width: calc(50% - 7px);
}
.footer .other li a {
	display: block;
	padding: 10px 0;
	color: var(--blue);
	background: #fff;
	border-radius: 3px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0;
}
.footer .for {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 14px;
	margin-bottom: 30px;
}
.footer .for li {
	width: calc(50% - 7px);
	border-bottom: 1px solid var(--light-blue);
}
.footer .for li a {
	display: inline-block;
	padding: 0 3px 8px;
	font-weight: 700;
}
.footer .copyright {
	padding: 10px 10px 70px;
	color: #8c8c8c;
	background: #fff;
}
.footer .copyright p {
	font-size: calc(1.2rem / 1.6);
	text-align: center;
}
@media print, screen and (width >= 768px) {/* PC */
.footer {
	position: relative;
	z-index: 2;
}
.footer .inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 48px;
	justify-items: center;
	max-width: 1100px;
	margin-inline: auto;
	padding: 40px 20px 20px;
}
.footer .logo {
	max-width: 466px;
	margin-bottom: 40px;
}
.footer .block {
	font-size: calc(1.6rem / 1.6);
}
.footer .access span {
	font-size: calc(1.4rem / 1.6);
}
.footer .utility li {
	padding: 0 .5em;
}
.footer .link {
	display: flex;
	gap: 0 48px;
}
.footer .other {
	display: block;
	margin-bottom: 0;
}
.footer .other li {
	width: auto;
}
.footer .other li + li {
	margin-top: 20px;
}
.footer .other li a {
	padding: 16px;
	border-radius: 5px;
	font-size: calc(1.8rem / 1.6);
}
.footer .for {
	display: block;
	margin-bottom: 0;
}
.footer .for li {
	width: auto;
}
.footer .for li + li {
	margin-top: 25px;
}
.footer .for li a {
	display: block;
	padding: 0 20px 10px 8px;
	font-size: calc(1.6rem / 1.6);
}
.footer .menu {
	display: grid;
	gap: 0 45px;
}
.footer .menu > li:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.footer .menu > li:nth-child(2) {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
}
.footer .menu > li:nth-child(3) {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.footer .menu > li:nth-child(4) {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.footer .menu > li:nth-child(5) {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
}
.footer .menu .btn-second a {
	display: block;
	padding: 0 0 6px 10px;
	font-size: calc(1.6rem / 1.6);
	border-bottom: 1px solid var(--light-blue);
}
.footer .menu .second {
	padding: 10px 0 20px 10px;
}
.footer .menu .second li {
	padding-block: 4px;
	font-size: calc(1.4rem / 1.6);
}
.footer .menu .third {
	margin-top: 5px;
}
.footer .copyright {
	padding: 25px 20px 70px;
	font-size: calc(1.2rem / 1.6);
	text-align: left;
}
.footer .copyright p {
	max-width: 1100px;
	margin-inline: auto;
	font-size: calc(1.4rem / 1.6);
	text-align: left;
}
}/* @media */
@media (hover:hover) {
.footer .utility li a:hover {
	text-decoration: underline;
}
.footer .other li a:hover {
	color: #fff;
	background: var(--dark-blue);
}
.footer .for li:hover {
	border-bottom-color: #fff;
}
}/* @media */
