/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	-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-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
}
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: 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-radius: 0;
	font: inherit;
}
select {
	font: inherit;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--fontEn: "Cormorant Infant", serif;
	--fontGothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	--fontMincho: "游明朝体", "Yu Mincho", YuMincho, serif;
	--r10: calc(1rem / 1.6);
	--r11: calc(1.1rem / 1.6);
	--r12: calc(1.2rem / 1.6);
	--r13: calc(1.3rem / 1.6);
	--r14: calc(1.4rem / 1.6);
	--r15: calc(1.5rem / 1.6);
	--r16: calc(1.6rem / 1.6);
	--r17: calc(1.7rem / 1.6);
	--r18: calc(1.8rem / 1.6);
	--r19: calc(1.9rem / 1.6);
	--r20: calc(2rem / 1.6);
	--black: #0d0d0d;
	--green: #124729;
	--bgGreen: #3a905f;
	--hoverGreen: #2e7a4f;
	--lightGreen: rgba(58,144,95,.4);
	--triGreen: #75b28f;
	--bgGrad: linear-gradient(120deg, #098846, #017859);
	--bgGradHover: linear-gradient(120deg, #176940, #0f5953);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: opacity .8s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: #0d0d0d;
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
}
.is-pc {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
}
.header .logo {
	padding: 12px 18px;
}
.header .logo img {
	width: 172px;
}
.header .is-sp {
	display: block;
}
.header .is-pc {
	display: none;
}
@media print, screen and (min-width: 1100px) {/* PC */
.header {
	background: #fff;
}
.header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.header .logo {
	padding: 22px 0 27px;
}
.header .logo img {
	width: 250px;
}
.header .is-pc {
	display: block;
}
.header .is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.nav_btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	color: #fff;
	background: var(--bgGrad);
	box-shadow: 0 0 15px #fff;
}
.nav_btn::before,
.nav_btn::after,
.nav_btn span::before {
	content: "";
	position: absolute;
	left: 15px;
	height: .5px;
	background: #fff;
}
.nav_btn::before {
	top: 10px;
	width: 29px;
}
.nav_btn::after {
	top: 19px;
	width: 24px;
}
.nav_btn span::before {
	top: 28px;
	width: 19px;
}
.nav_btn span::after {
	content: "MENU";
	position: absolute;
	left: 0;
	bottom: 12px;
	width: 100%;
	font-family: var(--fontEn);
	font-size: var(--r10);
	line-height: 1;
	letter-spacing: .1em;
}
.nav_btn[aria-expanded="true"]::before {
	top: 19px;
	left: 18px;
	width: 24px;
	transform: rotate(-45deg);
}
.nav_btn[aria-expanded="true"]::after {
	left: 18px;
	transform: rotate(45deg);
}
.nav_btn[aria-expanded="true"] span::before {
	display: none;
}
.nav_btn[aria-expanded="true"] span::after {
	content: "CLOSE";
}
.nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	max-height: 100svh;
	background: rgba(255,255,255,.95);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.nav.is-close {
	display: none;
}
.nav .utility {
	display: flex;
	flex-wrap: wrap;
	padding: 90px 18px 5px 24px;
}
.nav .utility li {
	width: 50%;
	margin-bottom: 17px;
	font-family: var(--fontGothic);
	font-size: var(--r13);
}
.nav .utility li a {
	display: inline-block;
	position: relative;
	padding-left: 22px;
}
.nav .utility li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 17px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% auto;
	filter: invert(45%) sepia(26%) saturate(914%) hue-rotate(93deg) brightness(100%) contrast(84%);
}
.nav .utility li:nth-child(1) a::before {
	background-image: url(../img/shared/icon_graduate.svg);
}
.nav .utility li:nth-child(2) a::before {
	background-image: url(../img/shared/icon_students.svg);
}
.nav .utility li:nth-child(3) a::before {
	width: 10px;
    left: 3.5px;
	top: 50%;
    transform: translateY(-50%);
	background-image: url(../img/shared/icon_access.svg);
}
.nav .utility li:nth-child(4) a::before {
	background-image: url(../img/shared/icon_mail.svg);
}
.nav .utility li:nth-child(5) a::before {
	background-image: url(../img/shared/icon_doc.svg);
}
.nav .inner {
	padding: 0 18px 25px;
}
.nav_sub.is-sp {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 5px 0 0 6px;
	border-bottom: 1px solid var(--lightGreen);
	font-size: var(--r16);
}
.nav_sub.is-sp::after {
	content: "";
	position: absolute;
	bottom: -4px;
	right: -5px;
	width: 4px;
	height: 8px;
	background: url(../img/shared/icon_arrow01.svg) no-repeat 50% / 100% auto;
	filter: invert(45%) sepia(26%) saturate(914%) hue-rotate(93deg) brightness(100%) contrast(84%);
}
.nav_sub.is-sp a {
	padding: 10px 0;
}
.nav_sub.is-sp button {
	width: 50px;
	padding: 10px 0;
}
.nav_sub.is-sp button::before,
.nav_sub.is-sp button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 1px;
	background: #0d0d0d;
}
.nav_sub.is-sp button::after {
	transform: rotate(90deg);
}
.nav_sub.is-sp button[aria-expanded="true"]::after {
	display: none;
}
.nav .panel.is-close {
	display: none;
}
.nav dd ul {
	padding: 10px 15px;
}
.nav dd li {
	padding: 9px 0;
	color: var(--green);
	font-family: var(--fontGothic);
	font-size: var(--r13);
}
.nav dd li a {
	display: inline-block;
	position: relative;
	padding-left: 14px;
}
.nav dd li a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 6px;
	height: 7px;
	background: var(--triGreen);
	clip-path: polygon(0 0,100% 50%,0 100%);
}
@media print, screen and (min-width: 1100px) {/* PC */
.nav {
	position: static;
	z-index: 1;
	width: auto;
	max-height: none;
	background: transparent;
	overflow-y: visible;
}
.nav.is-close {
	display: block;
}
.nav .utility {
	justify-content: end;
	padding: 12px 0;
}
.nav .utility li {
	width: auto;
	margin-bottom: 0;
	font-family: var(--fontMincho);
}
.nav .utility li + li {
	margin-left: 34px;
}
.nav .utility li:nth-child(3) a::before {
	left: 4px;
	width: 10px;
	height: 15px;
}
.nav .utility a:hover {
	color: var(--bgGreen);
}
.nav > .inner {
	padding: 0;
	border-top: 1px solid #f1efdf;
}
.nav > .inner > ul {
	display: flex;
}
.nav > .inner > ul > li + li {
	margin-left: 26px;
}
.nav .panel.is-close {
	display: block;
}
.nav > .inner > ul > li .panel {
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.nav > .inner > ul > li:hover .panel {
	opacity: 1;
	pointer-events: auto;
}
.nav > .inner > ul > li .panel.is-close.is-open {
	opacity: 0;
	pointer-events: none;
}
.nav_sub.is-sp {
	display: none;
}
.nav_sub_btn {
	position: relative;
	padding: 18px 20px 22px 6px;
	font-size: var(--r17);
	font-weight: 600;
	letter-spacing: .02em;
}
.nav_sub_btn::before {
	content: "";
	position: absolute;
	top: 25px;
	right: 4px;
	width: 7px;
	height: 11px;
	background: url(../img/shared/icon_arrow01.svg) no-repeat 50% / 100% auto;
	transform: rotate(90deg);
	filter: invert(45%) sepia(26%) saturate(914%) hue-rotate(93deg) brightness(100%) contrast(84%);
}
.nav > .inner > ul > li:hover .nav_sub_btn {
	color: var(--bgGreen);
}
.nav_sub_btn::after {
	display: none;
	content: "";
	position: absolute;
	top: auto;
	right: 0;
	bottom: 12px;
	width: 100%;
	height: 1px;
	background: var(--bgGreen);
	transform: rotate(0);
}
.nav > .inner > ul > li:hover .nav_sub_btn::after {
	display: block;
}
.nav_sub {
	display: none;
}
.nav .panel {
	position: absolute;
	top: 110px;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,.9);
}
.nav_close_btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	background: var(--bgGrad);
}
.nav_close_btn::before,
.nav_close_btn::after {
	content: "";
	position: absolute;
	top: 35px;
	left: 16px;
	width: 38px;
	height: 1px;
	background: rgba(225,225,225,.9);
}
.nav_close_btn::before {
	transform: rotate(-45deg);
}
.nav_close_btn::after {
	transform: rotate(45deg);
}
.nav_close_btn:hover {
	background: var(--bgGradHover);
}
.nav .set {
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 50px;
}
.nav .set img {
	width: 440px;
}
.nav .set dl {
	flex: 1;
	margin: 0 50px 0 60px;
}
.nav dt a {
	display: block;
	position: relative;
	padding: 13px;
	border-bottom: 1px solid var(--lightGreen);
	font-size: calc(2.8rem / 1.6);
}
.nav dt a::after {
	content: "";
	position: absolute;
	bottom: -6px;
	right: -8px;
	width: 7px;
	height: 11px;
	background: url(../img/shared/icon_arrow01.svg) no-repeat 50% / 100% auto;
	filter: invert(45%) sepia(26%) saturate(914%) hue-rotate(93deg) brightness(100%) contrast(84%);
}
.nav dt a:hover {
	border-bottom-color: var(--bgGreen);
}
.nav dd ul {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 13px;
}
.nav dd li {
	width: 50%;
	padding: 15px 0;
	font-size: var(--r17);
}
.nav dd li a::before {
	top: 8px;
}
.nav dd li a:hover {
	text-decoration: underline;
}
}/* @media */
@media print, screen and (max-width: 1099px) and (min-width: 768px) {/* TABLET */
.nav .utility li {
	width: auto;
	margin-right: 2em;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 60px;
}
@media print, screen and (min-width: 1100px) {/* PC */
.main {
	margin-top: 110px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .menu {
	padding: 18px 18px 30px;
	color: #fff;
	background: var(--bgGreen);
}
.footer dt {
	display: flex;
	position: relative;
	font-size: var(--r16);
}
.footer dt::after {
	content: "";
	position: absolute;
	bottom: -4px;
	right: -5px;
	width: 4px;
	height: 8px;
	background: url(../img/shared/icon_arrow01.svg) no-repeat 50% / 100% auto;
	filter: invert(100%) sepia(93%) saturate(17%) hue-rotate(248deg) brightness(104%) contrast(105%);
}
.footer dt a {
	flex: 1;
	padding: 18px 0 10px 3px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.footer dt button {
	position: relative;
	width: 50px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.footer dt button::before,
.footer dt button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 1px;
	background: #fff;
}
.footer dt button::after {
	transform: rotate(90deg);
}
.footer dt button[aria-expanded="true"]::after {
	display: none;
}
.footer dd.is-close {
	display: none;
}
.footer dd ul {
	padding: 10px 15px;
}
.footer dd li {
	padding: 9px 0;
	font-family: var(--fontGothic);
	font-size: var(--r13);
}
.footer dd li a {
	display: inline-block;
	position: relative;
	padding-left: 14px;
}
.footer dd li a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 6px;
	height: 7px;
	background: var(--triGreen);
	clip-path: polygon(0 0,100% 50%,0 100%);
}
.footer .sub {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 30px;
}
.footer .sub li {
	padding-left: 10px;
	font-family: var(--fontGothic);
	font-size: var(--r13);
	border-left: 1px solid rgba(255,255,255,.3);
}
.footer .address {
	padding: 30px 18px;
	background: #dde5dc;
	text-align: center;
}
.footer .address .logo {
	width: 200px;
	margin: 0 auto 20px;
}
.footer .address address {
	margin-bottom: 20px;
	font-family: var(--fontGothic);
	font-size: var(--r13);
	font-style: normal;
	line-height: calc(25 / 13);
}
.footer .sns {
	display: flex;
	justify-content: center;
}
.footer .sns li {
	width: 40px;
	margin: 0 8px;
}
.footer .copyright {
	padding: 20px 18px;
	color: #666666;
	font-family: var(--fontGothic);
	font-size: var(--r12);
	text-align: center;
}
.footer .pagetop {
	position: fixed;
	right: 18px;
	bottom: 40px;
	z-index: 5;
	width: 38px;
	height: 38px;
	background: #fff;
	border: 1px solid #90b8a1;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.footer .pagetop.is-page_scrolled {
	opacity: 1;
	pointer-events: auto;
}
.footer .pagetop::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 12px;
	height: 10px;
	background: var(--bgGreen);
	clip-path: polygon(50% 0,100% 100%,0 100%);
}
@media print, screen and (min-width: 768px) {/* PC */
.footer .menu {
	padding: 30px 20px 50px;
}
.footer .menu .inner {
	display: flex;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto 30px;
}
.footer dl {
	width: 100%;
}
.footer dt {
	font-size: var(--r20);
}
.footer dt::after {
	bottom: -5px;
	right: -7px;
	width: 7px;
	height: 11px;
}
.footer dt a {
	padding: 12px;
}
.footer dt a:hover {
	border-bottom-color: #fff;
}
.footer dd.is-close {
	display: block !important;
}
.footer dd ul {
	padding: 10px 0 10px 12px;
}
.footer dd li {
	font-size: var(--r14);
	line-height: calc(20 / 14);
}
.footer dd li a:hover {
	text-decoration: underline;
}
.footer .sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 26px;
	border-top: 1px solid rgba(255,255,255,.3);
}
.footer .sub li {
	line-height: 1;
}
.footer .sub li:last-child {
	padding-right: 10px;
	border-right: 1px solid rgba(255,255,255,.3);
}
.footer .sub li a:hover {
	text-decoration: underline;
}
.footer .address {
	padding: 30px 20px;
	text-align: left;
}
.footer .address .inner {
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
}
.footer .address .logo {
	width: 250px;
	margin: 5px 50px 0 0;
}
.footer .address address {
	flex: 1;
	margin-bottom: 0;
	font-size: var(--r14);
	line-height: calc(26 / 14);
}
.footer .sns {
	margin-top: 20px;
}
.footer .sns a:hover img {
	opacity: .8;
}
.footer .copyright {
	padding: 22px 20px;
	font-size: var(--r14);
}
.footer .pagetop {
	right: 26px;
	bottom: 26px;
	width: 58px;
	height: 58px;
}
.footer .pagetop::before {
	width: 18px;
	height: 15px;
}
.footer .pagetop:hover {
	background: var(--bgGreen);
}
.footer .pagetop:hover::before {
	background: #fff;
}
}/* @media */
@media print, screen and (max-width: 980px) and (min-width: 768px) {/* TABLET */
.footer .menu .inner {
	flex-wrap: wrap;
}
.footer dl {
	width: calc(1 / 3 * 100% - 40px);
}
}/* @media */