/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	scroll-behavior: smooth;
	-webkit-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: none;
}
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: bottom;
}
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 {
	--blue: #004f99;
	--black: #0d0d0d;
	--light-blue: #edf5fc;
	--hover-blue: #0b62b3;
	--font-din: "dinregular", sans-serif;
	--filter-blue: invert(15%) sepia(97%) saturate(2879%) hue-rotate(196deg) brightness(97%) contrast(101%);
	--filter-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: opacity .8s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
html {
	scroll-padding-top: var(--header, 40px) !important;
}
body {
	color: var(--black);
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .04em;
}
.main {
	overflow: hidden;
}
.is-pc {
	display: none;
}
@media print, screen and (width >= 768px) {/* PC */
html {
	scroll-padding-top: var(--header, 140px) !important;
}
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header .logo {
	width: 170px;
	padding: 7px 0 5px 16px;
}
.header .logo a {
	display: block;
	position: relative;
	z-index: 6;
}
.header .logo img {
	width: 100%;
}
@media print, screen and (width >= 1140px) {/* PC */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	background: rgba(255,255,255,.9);
}
.header .inner {
	display: flex;
	justify-content: space-between;
	max-width: 1300px;
	margin: 0 auto;
}
.header .logo {
	width: 290px;
	padding: 10px 0 0 20px;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.btn-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 60px;
	height: 60px;
	color: #fff;
	background: var(--blue);
	border-radius: 0 0 0 10px;
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	content: "";
	position: absolute;
	left: 16px;
	width: 28px;
	height: 2px;
	background: #fff;
}
.btn-nav::before {
	top: 11px;
}
.btn-nav::after {
	top: 19px;
}
.btn-nav span::before {
	top: 27px;
}
.btn-nav span::after {
	content: "MENU";
	position: absolute;
	left: 0;
	bottom: 14px;
	width: 100%;
	font-family: var(--font-din);
	font-size: calc(1rem / 1.6);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}
.btn-nav[aria-expanded="true"]::before {
	top: 19px;
	transform: rotate(-45deg);
}
.btn-nav[aria-expanded="true"]::after {
	transform: rotate(45deg);
}
.btn-nav[aria-expanded="true"] span::before {
	display: none;
}
.btn-nav[aria-expanded="true"] span::after {
	content: "CLOSE";
}
.nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	max-height: 100svh;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.nav[aria-hidden="true"] {
	display: none;
}
.nav.is-open {
	display: block;
}
.nav > ul {
	padding: 78px 18px 10px;
}
.nav > ul > li {
	border-bottom: 1px dashed rgba(0,79,153,.5);
}
.nav > ul > li:first-child {
	border-top: 1px dashed rgba(0,79,153,.5);
}
.nav > ul > li > a {
	display: inline-block;
	position: relative;
	padding: 8px 0;
	font-weight: 700;
}
.nav > ul > li.no_link > a {
	pointer-events: none;
}
.nav > ul > li .en {
	margin-right: .6em;
	color: var(--blue);
	font-family: var(--font-din);
	font-size: calc(2rem / 1.6);
	letter-spacing: 0;
}
.nav > ul > li .jp {
	font-size: calc(1.3rem / 1.6);
}
.nav > ul > li.icon_home {
	position: relative;
}
.nav > ul > li.icon_home > a {
	padding-left: 36px;
}
.nav > ul > li.icon_home::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../img/shared/icon_home.svg) no-repeat center/100%;
	top: calc(50% - 9px);
	left: 4px;
	width: 20px;
	height: 19px;
}
.nav > ul > li > ul {
	margin-bottom: 20px;
	padding: 10px 20px;
	color: var(--blue);
	background: var(--light-blue);
	border-radius: 5px;
}
.nav > ul > li > ul > li {
	padding: 2px 0;
	font-size: calc(1.3rem / 1.6);
}
.nav > ul > li > ul > li > a {
	display: inline-block;
	position: relative;
	padding-left: 14px;
}
.nav > ul > li > ul > li > a::before {
	content: "";
	position: absolute;
	top: calc(1rem / 1.6);
	left: 0;
	width: 6px;
	height: 6px;
	background: #cce0f2;
	border-radius: 50%;
}
.nav .btn-close {
	margin-bottom: 15px;
	text-align: center;
}
.nav .btn-close button {
	color: var(--blue);
	font-family: var(--font-din);
	font-weight: 700;
	font-size: calc(1.5rem / 1.6);
	line-height: 1;
	letter-spacing: 0;
}
.nav .btn-close button::before {
	content: "×";
	margin-right: 5px;
	font-size: calc(3rem / 1.6);
	vertical-align: middle;
}
@media print, screen and (width >= 1140px) {/* PC */
.btn-nav,
.nav .btn-close {
	display: none;
}
.nav {
	position: static;
	width: auto;
	max-height: none;
	background: transparent;
	box-shadow: none;
	overflow-y: visible;
}
.nav > ul {
	display: flex;
	width: min(900px, calc(900 / 1300 * 100vw));
	margin: 20px 0 0;
	padding: 0;
}
.nav > ul > li {
	width: 100%;
	border-bottom: none;
}
.nav > ul > li:first-child {
	border-top: none;
}
.nav > ul > li > a {
	display: block;
	min-height: 60px;
	box-sizing: border-box;
	padding: 5px 5px 26px;
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
}
.nav > ul > li > a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: calc(100% - 20px);
	border-left: 1px dashed rgba(0,79,153,.5);
}
.nav > ul > li > a::after {
	content: "";
	position: absolute;
	left: 15px;
	bottom: 0;
	width: calc(100% - 30px);
	height: 5px;
	background: #4e95d7;
	border-radius: 3px 3px 0 0;
	opacity: 0;
}
.nav > ul > li.icon_home > a::after {
	background: #ff8298;
}
.nav > ul > li .en {
	display: block;
	margin-right: 0;
	font-size: calc(1.9rem / 1.6);
}
.nav > ul > li .jp {
	font-size: calc(1.4rem / 1.6);
}
.nav > ul > li.icon_home > a {
	padding: 32px 0 26px;
}
.nav > ul > li.icon_home::before {
	top: 4px;
	left: calc(50% - 10px);
	width: 22px;
	height: 21px;
}
.nav > ul > li > ul {
	position: absolute;
	top: 100%;
	min-width: 220px;
	margin-bottom: 0;
	padding: 0;
	color: #fff;
	background: var(--blue);
	border-radius: 0 0 10px 10px;
	opacity: 0;
	pointer-events: none;
}
.nav > ul > li > ul > li {
	padding: 0;
	font-size: calc(1.5rem / 1.6);
}
.nav > ul > li > ul > li + li {
	border-top: 1px solid rgba(255,255,255,.2);
}
.nav > ul > li > ul > li > a {
	display: block;
	padding: 12px 15px 12px 36px;
}
.nav > ul > li > ul > li > a::before {
	top: calc(2.2rem / 1.6);
	left: 20px;
	width: 7px;
	height: 7px;
	background: #6695c2;
}

}/* @media */
@media (hover: hover) {
.nav > ul > li > a:hover::after {
	opacity: 1;
}
.nav > ul > li.no_link:hover > a::after {
	opacity: 1;
}
.nav > ul > li:hover > ul {
	opacity: 1;
	pointer-events: auto;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
@media print, screen and (width >= 1140px) {/* PC */
.main {
	margin-top: 100px;
}
}/* @media */
/* -----------------------------------------------
= pagetop
----------------------------------------------- */
.pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	width: 40px;
	height: 40px;
	background: #dae8f5;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.pagetop.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.pagetop::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 12px;
	height: 10px;
	background: var(--blue);
	clip-path: polygon(50% 0,100% 100%,0 100%);
}
@media print, screen and (width >= 768px) {/* PC */
.pagetop {
	right: 20px;
	bottom: 37px;
	width: 60px;
	height: 60px;
}
.pagetop::after {
	width: 16px;
	height: 14px;
}
}/* @media */
@media (hover: hover) {
.pagetop:hover {
	background: var(--blue);
}
.pagetop:hover::after {
	background: #fff;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
	color: #fff;
	background: linear-gradient(90deg,#19a08f,#03518b);
}
.footer .set {
	padding: 25px 18px 0;
}
.footer .logo {
	width: 290px;
	margin-bottom: 20px;
}
.footer .logo a {
	display: block;
}
.footer .logo img {
	width: 100%;
}
.footer .address {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(23 / 13);
}
.footer .menu {
	margin: 0 18px;
	line-height: 1.5;
}
.footer .menu > ul {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed rgba(255,255,255,.3);
}
.footer .menu li + li {
	margin-top: 10px;
}
.footer .menu li a {
	display: inline-block;
	position: relative;
	padding-left: 10px;
	font-size: calc(1.3rem / 1.6);
}
.footer .menu li a::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 6px;
	height: 6px;
	background: rgba(255,255,255,.4);
	border-radius: 50%;
}
/* .footer .menu li a[target="_blank"] {
	padding-right: 20px;
} */
.footer .menu li a[target="_blank"]::after {
	content: "";
	display: inline-block;
	position: relative;
	bottom:  0;
	right: 0;
	width: 11px;
	height: 11px;
	margin-left: 8px;
	background: url(../img/shared/icon_external.svg) no-repeat 50% / cover;
	filter: invert(86%) sepia(24%) saturate(582%) hue-rotate(118deg) brightness(82%) contrast(89%);
}
.footer .menu li ul {
	margin: 4px 0 10px 2em;
}
.footer .menu li ul a::before {
	top: 8px;
	width: 2px;
	height: 2px;
	background: #fff;
}
.footer .menu li.donation a {
	display: block;
	margin: 25px 0 30px;
	padding: 13px;
	color: var(--blue);
	background: #fff;
	box-shadow: 0 2px 0 rgba(0,0,0,.2);
	border-radius: 3em;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.footer .menu li.donation a::before {
	display: none;
}
.footer .menu li.donation a[target="_blank"]::after {
	display: inline-block;
	position: relative;
    bottom: 3px;
    margin-left: 10px;
    vertical-align: middle;
}
.footer .copyright {
	padding: 7px;
	color: #999;
	background: #fff;
	font-size: calc(1.3rem / 1.6);
	text-align: center;
}
@media print, screen and (width >= 768px) {/* PC */
.footer .inner {
	display: flex;
	max-width: 1140px;
	margin: 0 auto;
	padding: 45px 20px 33px;
}
.footer .set {
	flex: 1;
	padding: 0 28px 0 0;
}
.footer .logo {
	width: 420px;
	margin-bottom: 30px;
}
.footer .address {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(30 / 16);
}
.footer .menu {
	display: flex;
	margin: 0;
}
.footer .menu > ul {
	margin-top: 0;
	padding: 0 28px 15px;
	border-top: none;
	border-left: 1px dashed rgba(255,255,255,.3);
}
.footer .menu > ul + ul {
	padding-right: 0;
}
.footer .menu li + li {
	margin-top: 16px;
}
.footer .menu li a {
	padding-left: 18px;
	font-size: calc(1.5rem / 1.6);
}
.footer .menu li a::before {
	width: 7px;
	height: 7px;
}
/* .footer .menu li a[target="_blank"] {
	padding-right: 22px;
} */
.footer .menu li a[target="_blank"]::after {
	bottom:  -1px;
	width: 14px;
	height: 14px;
}
.footer .menu li ul {
	margin: 5px 0 10px 2em;
}
.footer .menu li ul li + li {
	margin-top: 5px;
}
.footer .menu li ul a {
	padding-left: 10px;
}
.footer .menu li ul a::before {
	top: 9px;
	width: 2px;
	height: 2px;
}
.footer .menu li ul li {
	line-height: 1.5;
}
.footer .menu li.donation a {
	margin: 30px 0 0;
	padding: 12px;
	box-shadow: 0 4px 0 rgba(0,0,0,.2);
	font-size: calc(1.8rem / 1.6);
}
.footer .menu li.donation a[target="_blank"]::after {
	bottom: 2px;
	margin-left: 8px;
}
.footer .copyright {
	padding: 20px 0;
	font-size: calc(1.5rem / 1.6);
}
}/* @media */
@media print, screen and (1000px > width >= 768px) {/* TABLET */
.footer .inner {
	display: block;
	max-width: 680px;
}
.footer .set {
	margin-bottom: 30px;
}
}/* @media */
@media (hover: hover) {
.footer a:hover {
	text-decoration: underline;
}
.footer .menu li.donation a:hover {
	color: #fff;
	background: var(--hover-blue);
	text-decoration: none;
}
}/* @media */
