/* -----------------------------------------------
= 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: 500; */
}
ol, ul {
	list-style-type: "";
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	text-align: left;
	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 {
	text-align: left;
	cursor: pointer;
	letter-spacing: .02em;
}
input {
	border: none;
	border-radius: 0;
	font: inherit;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: inherit;
	cursor: pointer;
	font: inherit;
}
iframe {
	border: none;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--black: #0d0d0d;
	--blue: #4693dd;
	--blue-hover: #2376c5;
	--green: #009e96;
	--orange: #eb6100;
	--jp: "Noto Sans JP", sans-serif;
	--en: "Roboto Condensed", sans-serif;
	--header-h: 0px;
	--top-space: 30px;
	--anchor-offset: calc(var(--header-h) + var(--top-space));
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: .8s opacity .4s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: var(--black);
	font-family: var(--jp);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
}
.is-pc {
	display: none;
}
[id] {
	scroll-margin-top: var(--anchor-offset);
}
@media (min-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%;
	min-height: 60px;
	transition: background .3s;
}
.header.is-scroll {
	background: #fff;
}
.header .site-name {
	position: relative;
	z-index: 1;
	margin: 4px 0 0 14px;
	white-space: nowrap;
	line-height: 1;
}
.header .site-name span {
	display: inline-block;
	letter-spacing: 0;
}
.header .site-name span:first-child {
	margin-bottom: 7px;
	font-size: calc(.9rem / 1.6);
}
.header .site-name span:last-child {
	font-size: calc(1.9rem / 1.6);
	font-weight: 700;
}
.header-info.is-pc {
	display: none;
}
.header .for {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 14px;
	padding: 24px 18px 28px;
}
.header .for a {
	display: block;
	padding: 10px 10px 12px;
	background: var(--black);
	border-radius: 3em;
	font-size: calc(1.3rem / 1.6);
	line-height: 1;
	text-align: center;
}
.header .utility {
	display: grid;
	grid-template-columns: 1fr 1fr 34px;
	gap: 0 14px;
	padding: 0 18px 28px;
}
.header .utility .access a,
.header .utility .contact a {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 41px;
	min-height: 34px;
	color: var(--black);
	font-size: calc(1.5rem / 1.6);
}
.header .utility .access a::before,
.header .utility .contact a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
	background: var(--black);
	border-radius: 50%;
}
.header .utility .access a::after,
.header .utility .contact a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
}
.header .utility .access a::after {
	background: url(../img/shared/icon-access.svg) no-repeat 50% / 15px auto;
}
.header .utility .contact a::after {
	background: url(../img/shared/icon-contact.svg) no-repeat 50% / 19px auto;
}
.header .utility .x img {
	width: 34px;
}
@media (min-width: 960px) {/* PC */
.header {
	min-height: 90px;
}
.header-inner {
	display: flex;
	align-items: center;
	min-height: 90px;
	margin-inline: auto;
	padding-inline: 100px;
}
.header .site-name {
	flex: 1;
	margin: 0;
}
.header .site-name span:first-child {
	margin-bottom: 10px;
	font-size: calc(1.3rem / 1.6);
}
.header .site-name span:last-child {
	font-size: calc(2.8rem / 1.6);
}
.header-info.is-pc {
	display: flex;
	align-items: center;
	gap: 0 20px;
	position: relative;
	z-index: 1;
	color: #fff;
}
.header .for {
	gap: 0 10px;
	padding: 0;
}
.header .for a {
	padding: 7px 16px 9px;
	font-size: calc(1.4rem / 1.6);
}
.header .utility {
	padding: 0;
}
.header .utility .access a,
.header .utility .contact a {
	padding-left: 38px;
	min-height: 30px;
	font-size: calc(1.4rem / 1.6);
}
.header .utility .access a::before,
.header .utility .contact a::before {
	width: 30px;
	height: 30px;
}
.header .utility .access a::after,
.header .utility .contact a::after {
	width: 30px;
	height: 30px;
}
.header .utility .x img {
	width: 30px;
}
}/* @media */
@media (max-width: 1100px) and (min-width: 960px) {/* TABLET */
.header-inner {
	padding-left: 18px;
}
}/* @media */
@media (hover: hover) {
.header .for a {
	transition: background .3s;
}
.header .for a:hover {
	background: var(--blue-hover);
}
.header .utility .access a,
.header .utility .contact a {
	transition: color .3s;
}
.header .utility .access a:hover,
.header .utility .contact a:hover {
	color: var(--blue-hover);
}
.header.is-menu-open .utility .access a:hover,
.header.is-menu-open .utility .contact a:hover {
	color: #fff;
}
.header .utility .access a::before,
.header .utility .contact a::before {
	transition: background .3s;
}
.header .utility .access a:hover::before,
.header .utility .contact a:hover::before {
	background: var(--blue-hover);
}
.header .utility .x a img {
	transition: opacity .3s;
}
.header .utility .x a:hover img {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.btn-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 20;
	width: 60px;
	height: 60px;
	background: var(--black);
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	content: "";
	position: absolute;
	right: 16px;
	width: 28px;
	height: 1px;
	background: #fff;
	transition: transform .3s;
}
.btn-nav::before {
	top: 12px;
}
.btn-nav::after {
	top: 21px;
}
.btn-nav span::before {
	top: 29px;
}
.btn-nav span::after {
	content: "MENU";
	position: absolute;
	right: 0;
	bottom: 12px;
	width: 100%;
	font-size: calc(.95rem / 1.6);
	line-height: 1;
	text-align: center;
	color: #fff;
}
.btn-nav[aria-expanded="true"]::before {
	top: 21px;
	transform: rotate(-45deg);
	animation: none;
}
.btn-nav[aria-expanded="true"]::after {
	display: none;
}
.btn-nav[aria-expanded="true"] span::before {
	top: 21px;
	transform: rotate(45deg);
}
.btn-nav[aria-expanded="true"] span::after {
	content: "CLOSE";
}
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: var(--blue);
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.nav[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
}
.nav-inner {
	max-height: calc(100svh - 120px);
	margin-top: 60px;
	padding-bottom: 60px;
	overflow-y: auto;
	overscroll-behavior: contain;
}
@media (min-width: 960px) {/* PC */
.btn-nav {
	width: 90px;
	height: 90px;
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	right: 23px;
	width: 42px;
	height: 2px;
}
.btn-nav::before {
	top: 18px;
}
.btn-nav::after {
	top: 31px;
}
.btn-nav span::before {
	top: 44px;
}
.btn-nav span::after {
	bottom: 20px;
	font-size: calc(1.4rem / 1.6);
}
.btn-nav[aria-expanded="true"]::before {
	top: 31px;
}
.btn-nav[aria-expanded="true"] span::before {
	top: 31px;
}
.nav {
	height: auto;
}
.nav-inner {
	max-height: calc(100vh - 110px);
	margin-top: 90px;
	padding-block: 20px 0;
}
}/* @media */
@media (hover: hover) {
.btn-nav {
	transition: background .3s;
}
.btn-nav:hover {
	background: var(--blue-hover);
}
}/* @media */
/* -----------------------------------------------
= menu
----------------------------------------------- */
.menu {
	padding-inline: 18px;
	color: #fff;
}
.menu p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	border-bottom: 0.5px solid #fff;
}
.menu p a {
	margin-left: 3px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}
.menu .btn-menu {
	position: relative;
	width: 40px;
	height: 40px;
}
.menu .btn-menu::before {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 13.5px;
	width: 13px;
	height: 11px;
	background: #82baef;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.menu .btn-menu[aria-expanded="true"]::before {
	transform: rotate(180deg);
}
.menu .menu-sub {
	overflow: hidden;
	height: 0;
}
.menu .menu-sub li {
	margin: 14px 8px;
	font-size: calc(1.3rem / 1.6);
}
.menu .menu-sub li:first-child {
	padding-top: 2px;
}
.menu .menu-sub li:last-child {
	padding-bottom: 4px;
}
.menu .menu-sub li a {
	position: relative;
	padding-left: 11px;
}
.menu .menu-sub li a::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 7px;
	height: 7px;
	background: #82baef;
	border-radius: 50%;
}
.menu .other {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	padding-block: 25px 40px;
}
.menu .other li {
	border-bottom: 0.5px solid #98c1e8;
	font-size: calc(1.3rem / 1.6);
}
.menu .other li a {
	display: inline-block;
	padding: 3px 10px 10px 10px;
}
@media (min-width: 960px) {/* PC */
.menu {
	padding-inline: 100px;
}
.menu-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 38px;
	max-width: 1100px;
	margin-inline: auto;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.5);
}
.menu p {
	display: block;
	padding-block: 0 10px;
	border-bottom-width: 2px;
}
.menu p a {
	margin-left: 4px;
	font-size: calc(1.8rem / 1.6);
}
.menu .btn-menu {
	display: none;
}
.menu .menu-sub {
	overflow: visible;
	height: auto;
}
.menu .menu-sub li {
	margin: 7px 6px;
	font-size: calc(1.4rem / 1.6);
}
.menu .menu-sub li:first-child {
	padding-top: 6px;
}
.menu .menu-sub li a {
	padding-left: 13px;
}
.menu .menu-sub li a::before {
	top: .5em;
}
.menu .other {
	display: flex;
	justify-content: center;
	gap: 0 10px;
	max-width: 900px;
	margin-inline: auto;
	padding-block: 30px;
}
.menu .other li {
	border-bottom: none;
	font-size: calc(1.4rem / 1.6);
	line-height: 1;
}
.menu .other li + li {
	border-left: 1px solid #98c1e8;
}
.menu .other li a {
	padding: 0 20px;
}
}/* @media */
@media (max-width: 1100px) and (min-width: 960px) {/* TABLET */
.menu {
	padding-inline: 18px;
}
}/* @media */
@media (hover: hover) {
.menu a:hover {
	text-decoration: underline;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	scroll-margin-top: 60px;
}
@media (min-width: 960px) {/* PC */
.main {
	scroll-margin-top: 90px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .anniversary .set {
	padding: 40px;
	background: #e5f9ff;
	text-align: center;
}
.footer .anniversary .en {
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-family: var(--en);
	font-size: calc(3rem / 1.6);
	font-weight: 700;
}
.footer .anniversary .en::after {
	content: "";
	position: absolute;
	left: calc(50% - 15px);
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--black);
}
.footer .anniversary .jp {
	margin-bottom: 30px;
	font-size: calc(1.3rem / 1.6);
}
.footer .anniversary a {
	display: block;
	position: relative;
	max-width: 248px;
	margin-inline: auto;
	padding-block: 13px;
	background: #fff;
	border: 1px solid #737373;
	border-radius: 3em;
	box-shadow: 0 2px 0 rgba(0,0,0,.1);
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
}
.footer .anniversary a::after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 17px;
	width: 8px;
	height: 8px;
	background: var(--black);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer-inner {
	background: var(--blue);
}
.footer .address {
	padding: 0 18px 35px;
}
.footer .site-name {
	display: table;
	margin: 0 auto 20px;
}
.footer .site-name span {
	display: inline-block;
	line-height: 1;
	letter-spacing: 0;
}
.footer .site-name span:first-child {
	margin-bottom: 7px;
	font-size: calc(.9rem / 1.6);
}
.footer .site-name span:last-child {
	font-size: calc(1.9rem / 1.6);
	font-weight: 700;
}
.footer .detail {
	display: table;
	margin-inline: auto;
}
.footer .detail p {
	display: table-cell;
	vertical-align: middle;
	font-size: calc(1.25rem / 1.6);
	line-height: calc(20 / 12.5);
}
.footer .detail p + p {
	width: 35px;
	padding-left: 10px;
}
.footer .copyright {
	padding: 12px 10px;
	color: var(--blue);
	font-family: var(--en);
	font-size: calc(1.2rem / 1.6);
	text-align: center;
	text-transform: uppercase;
}
.footer .page-top {
	position: fixed;
	right: 15px;
	bottom: 40px;
	z-index: 5;
	opacity: 0;
	transition: opacity .5s;
}
.footer .page-top.is-show {
	opacity: 1;
}
.footer .page-top a {
	display: block;
	width: 39px;
	height: 39px;
	background: var(--black);
	border-radius: 50%;
}
.footer .page-top a::after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	left: calc(50% - 6px);
	width: 12px;
	height: 11px;
	background: #fff;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media (min-width: 960px) {/* PC */
.footer .anniversary {
	display: flex;
}
.footer .anniversary .set {
	padding: 45px 18px;
	flex: 1;
	position: relative;
}
.footer .anniversary .set::after {
	content: "";
	position: absolute;
	top: 0;
	right: -149px;
	width: 150px;
	height: calc(100% + 1px);
	background: #e5f9ff;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}
.footer .anniversary img {
	width: min(780px, calc(780 / 1300 * 100vw));
}
.footer .anniversary .en {
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-size: calc(5rem / 1.6);
	line-height: 1;
}
.footer .anniversary .en::after {
	left: calc(50% - 20px);
	width: 40px;
}
.footer .anniversary .jp {
	margin-bottom: 30px;
	font-size: calc(1.6rem / 1.6);
}
.footer .anniversary a {
	max-width: 238px;
	padding-block: 14px;
	font-size: calc(2rem / 1.6);
}
.footer .anniversary a::after {
	top: calc(50% - 5.5px);
	right: 20px;
	width: 11px;
	height: 11px;
}
.footer-inner {
	padding-top: 40px;
}
.footer .address {
	display: flex;
	justify-content: center;
	gap: 0 30px;
	padding: 5px 18px 45px;
}
.footer .site-name {
	display: block;
	margin: 0;
}
.footer .site-name span:first-child {
	margin-bottom: 10px;
	font-size: calc(1.3rem / 1.6);
}
.footer .site-name span:last-child {
	font-size: calc(2.8rem / 1.6);
}
.footer .detail {
	display: flex;
	align-items: center;
	margin: 12px 0 0;
}
.footer .detail p {
	display: block;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(23 / 14);
}
.footer .detail p + p {
	width: 30px;
	padding-left: 20px;
}
.footer .copyright {
	padding: 20px 18px;
	font-size: calc(1.4rem / 1.6);
}
.footer .page-top {
	right: 30px;
	bottom: 30px;
}
.footer .page-top a {
	width: 60px;
	height: 60px;
}
.footer .page-top a::after {
	top: calc(50% - 10px);
	left: calc(50% - 9px);
	width: 18px;
	height: 16px;
}
}/* @media */
@media (hover: hover) {
.footer .anniversary a {
	transition: .3s;
}
.footer .anniversary a:hover {
	color: #fff;
	background: var(--blue-hover);
	border-color: transparent;
}
.footer .anniversary a::after {
	transition: background .3s;
}
.footer .anniversary a:hover::after {
	background: #fff;
}
.footer .page-top a {
	transition: background .3s;
}
.footer .page-top a:hover {
	background: var(--blue-hover);
}
.footer .detail a img {
	transition: opacity .3s;
}
.footer .detail a:hover img {
	opacity: .8;
}
}/* @media */
