@charset "utf-8";
/*
 index.css
*/
/* -----------------------------------------------
= reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
input {
	border-radius: 0;
	font: inherit;
}
button {
	cursor: pointer;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	min-height: 100vh;
	color: #fff;
	background: #292929;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: inherit;
	text-decoration: none;
}
/* -----------------------------------------------
= common
----------------------------------------------- */
html {
	font-size: 62.5%;
}
.is-pc {
	display: none;
}
.is-pc_inline {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
html {
	font-size: calc(100vw / 128);
}
.is-pc {
	display: block;
}
.is-pc_inline {
	display: inline;
}
.is-sp {
	display: none;
}
}/* @media */
@media print, screen and (min-width: 1280px) {/* widePC */
html {
	font-size: 62.5%;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	color: #000;
	background: #F5F5F5;
}
.header .logo {
	display: flex;
	align-items: center;
	width: calc(100% - 1.2rem);
	margin: 0 .6rem;
	padding: 1.2rem 0;
	background: #fff;
	border-radius: .4rem;
}
.header .logo img {
	display: block;
	width: 15rem;
	padding: 0 2.2rem 0 1.8rem;
}
.header .logo span {
	display: block;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.4rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.header .logo {
	width: 100%;
	margin: 0;
	padding: 2.2rem 0;
	border-radius: 0;
}
.header .logo img {
	width: 21.6rem;
	padding: 0 4.2rem 0 4.2rem;
}
.header .logo span {
	font-size: 1.3rem;
	line-height: 2rem;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	padding: 1.5rem .9rem;
	color: #000;
	background: #F5F5F5;
	overflow: hidden;
}
.menu a {
	display: block;
	position: relative;
	color: #fff;
}
.menu a > img {
	border-radius: 1rem;
}
.menu .title {
	position: absolute;
	left: 1.5rem;
	bottom: 1.4rem;
	letter-spacing: .02em;
}
.menu .title .en {
	display: block;
	margin-bottom: 1rem;
	font-family: "Lato", sans-serif;
	font-size: 1.2rem;
}
.menu .title .jp {
	display: inline-block;
	position: relative;
	padding-right: 3.4rem;
	font-size: 1.8rem;
}
.menu .title .jp::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 2.4rem;
	height: 2.4rem;
	background: url(../img/index/icon_arrow.svg) no-repeat 50% / cover;
}
.menu.new_graduation {
	margin-bottom: 1.2rem;
}
.menu.new_graduation .catch {
	position: absolute;
	left: 0;
	top: calc(50% - calc(24 / 390 * 100vw));
	width: 100%;
	text-align: center;
}
.menu.new_graduation .catch img {
	width: calc(297 / 390 * 100vw);
}
.menu.new_graduation .title {
	left: 2.3rem;
	bottom: 1.6rem;
}
.menu.career {
	float: left;
	width: calc(50% - .4rem);
	margin: 0 .4rem 0 0;
}
.menu.handicap {
	float: left;
	width: calc(50% - .4rem);
	margin: 0 0 0 .4rem;
}
.menu.career img,
.menu.handicap img {
	height: 17rem;
	object-fit: cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.main {
	display: grid;
	grid-gap: 1.6rem;
	padding: 2.3rem 2.7rem;
}
.menu {
	width: calc(397 / 1280 * 100vw);
}
.menu a {
	transition: opacity .3s;
}
.menu a:hover {
	opacity: .8;
}
.menu .title {
	left: 4rem;
	bottom: 3.1rem;
}
.menu .title .en {
	margin-bottom: 1.4rem;
	font-size: 1.3rem;
}
.menu .title .jp {
	padding-right: 4.6rem;
	font-size: 2.4rem;
}
.menu .title .jp::after {
	width: 3rem;
	height: 3rem;
}
.menu.new_graduation {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	width: calc(813 / 1280 * 100vw);
	margin-bottom: 0;
}
.menu.new_graduation .catch {
	top: calc(50% - calc(42  / 1280 * 100vw));
}
.menu.new_graduation .catch img {
	width: calc(530 / 1280 * 100vw);
}
.menu.new_graduation .title {
	left: 3.9rem;
	bottom: 3.1rem;
}
.menu.career {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	float: none;
	width: auto;
	margin: 0;
}
.menu.handicap {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	float: none;
	width: auto;
	margin: 0;
}
.menu.career img,
.menu.handicap img {
	height: calc(243 / 1280 * 100vw);
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
	padding: 2.5rem 0;
	line-height: 1.3;
	text-align: center;
	letter-spacing: .02em;
}
.footer ul {
	margin-bottom: 2.4rem;
}
.footer li {
	display: inline-block;
	margin: 0 .5em 1rem;
	font-size: 1.3rem;
}
.footer .copyright {
	font-size: 1rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.footer {
	padding: 2rem;
}
.footer ul {
	margin-bottom: 1.6rem;
}
.footer li {
	margin: 0 1.5em;
}
.footer li a:hover {
	opacity: .8;
}
.footer .copyright {
	font-size: 1.1rem;
}
}/* @media */
/* -----------------------------------------------
= print
----------------------------------------------- */
@media print {
body {
	min-width: 100rem;
}
}/* media */
