@charset "utf-8";

/* base
-------------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	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;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/* --------------------------------------------------------
	フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	color: #000;
	font-size: 1.6em;
	font-weight: 500;
	background: #fff;
	letter-spacing: 0.05em;
	line-height: 1.6;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
#en body {
	word-wrap: break-word;
}
.serif { font-family: '游明朝','Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif; }
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
.c_bg01 { background: #e5ecf4; }
@media screen and (max-width: 768px) {
}


/* --------------------------------------------------------
	リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover {
	opacity: 0.5;
}
.underline {
	text-decoration: underline;
}
.underline:hover {
	text-decoration: none;
	opacity: 1;
}
::-moz-selection {
	color: #fff;
	background: #f3a000;
}
::selection {
	color: #fff;
	background: #f3a000;
}


/* --------------------------------------------------------
	module
-------------------------------------------------------- */
.inner {
	max-width: 1200px;
	width: 94%;
	margin: auto;
}
.inner.mw1000 {
	max-width: 1000px;
}
.inner.mw1200 {
	max-width: 1200px;
}
.inner.mw1480 {
	max-width: 1480px;
}
.page_content {
	padding: 100px 0;
}
.page_txt01 {
	font-size: 2.4rem;
}
.c_section {
	padding: 0 0 152px;
}

.cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
}
.iframe {
	position: relative;
}
.iframe.youtube {
	padding-top: 56.25%;
}
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1024px) {
.inner.is_wide {
	width: 100%;
}
.page_content {
	padding: 60px 0;
}
.page_txt01 {
	font-size: 1.8rem;
}
.c_section {
	padding: 0 0 60px;
}
}


/* flex系 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.ai_fs {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}


/* --------------------------------------------------------
	レイアウト
-------------------------------------------------------- */
.column2_layout .main {
	width: 66.666%;
}
.column2_layout .side {
	width: 27.5%;
}
.column2_layout .side ul li:not(:last-child) {
	margin: 0 0 16px;
}
.column2_layout .side ul li a {
	display: block;
	padding-left: 16px;
	position: relative;
}
.column2_layout .side ul li a::before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0
}
@media screen and (max-width: 768px) {
.column2_layout .main,
.column2_layout .side {
	width: 100%;
}
	.column2_layout .main {
		margin: 0 0 40px;
	}
}


/* --------------------------------------------------------
	title
-------------------------------------------------------- */
.line_title01 {
	color: #00479d;
	font-size: 1.8rem;
	font-weight: 700;
	border-bottom: solid 2px #00479d;
	padding: 0 0 10px;
	margin: 0 0 24px;
}
.c_title01 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 48px;
}
.c_title01 .line {
	font-size: 0;
	margin: 8px 0 0;
	display: block;
}
.c_title01 .line::after {
	content: "";
	width: 100px;
	height: 3px;
	background: #00479d;
	display: inline-block;
}
.page_head {
	height: 250px;
	background-position: right 45% center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.page_head.is_news { background-image: url("../../img//gakunai/main/news.jpg"); }
.page_head.is_device { background-image: url("../../img//gakunai/main/device.jpg"); }
.page_head.is_staff { background-image: url("../../img//gakunai/main/staff.jpg"); }
.page_head .page_title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.4;
	padding-left: 16px;
	position: relative;
}
.page_head .page_title::before {
	content: "";
	width: 4px;
	height: 100%;
	background: #00479d;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
.c_title01 {
	font-size: 2.4rem;
}
.page_head {
	height: 175px;
}
.page_head.is_news { background-image: url("../../img//gakunai/main/news_sp.jpg"); }
.page_head.is_device { background-image: url("../../img//gakunai/main/device_sp.jpg"); }
.page_head.is_staff { background-image: url("../../img//gakunai/main/staff_sp.jpg"); }

.page_head .page_title {
	font-size: 2rem;
}
}
@media screen and (max-width: 480px) {
.page_head .page_title {
	min-width: inherit;
}
}

/* --------------------------------------------------------
	btn
-------------------------------------------------------- */
.btn01 {
	color: #00479d;
	font-size: 1.8rem;
	font-weight: 700;
	max-width: 340px;
	width: 100%;
	height: 67px;
	background: #fff;
	border: solid 1px #00479d;
	border-radius: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.btn01::before {
	content: "";
	width: 8px;
	height: 14px;
	background: url("../../img//gakunai/cmn/arrow01_bl.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}
.btn01.is_bl {
	color: #fff;
	background: #00479d;
}

.btn01.is_bl::before {
	background: url("../../img//gakunai/cmn/arrow01_wh.svg") no-repeat;
}

.btn02 {
	color: #fff;
	max-width: 200px;
	width: 100%;
	background: #00479d;
	border-radius: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 24px;
	padding-right: 48px;
	position: relative;
}
.btn02::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
}
.btn02.is_blank::before {
	width: 15px;
	height: 16px;
	background-image: url("../../img//gakunai/cmn/icon_blank_wh.svg");
	top: calc(50% - 8px);
	right: 20px;
}
.btn02.is_arrow::before {
	width: 6px;
	height: 10px;
	background-image: url("../../img//gakunai/cmn/arrow01_wh.svg");
	top: calc(50% - 5px);
	right: 24px;
}
@media screen and (max-width: 768px) {
.btn01 {
	font-size: 1.6rem;
	height: 56px;
}
}


/* --------------------------------------------------------
	list
-------------------------------------------------------- */
.list01 li {
	width: 48%;
	margin-right: 4%;
}
.list01 li:nth-child(2n) {
	margin-right: 0;
}
.list01 li a {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	padding: 100px 24px;
}
.list01 .title {
	color: #00479d;
	font-size: 2.4rem;
	font-weight: bold;
	box-shadow: 0px 0px 16px 4px rgba(0, 0, 1, 0.1);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	padding: 16px 24px;
	position: relative;
}
.list01 .title::after {
	content: "";
	width: 8px;
	height: 14px;
	background: url("../../img//gakunai/cmn/arrow01_bl.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}

.news_list li {
	border-bottom: solid 1px #dcdcdc;
}
.news_list li a,
.news_meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.news_list li a {
	padding: 12px 5%;
}
.news_meta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 14px 0 0;
}
.news_meta .news_date {
	font-weight: 700;
	margin: 0 12px 0 0;
}
.news_meta .news_category {
	color: #fff;
	font-size: 1.4rem;
	min-width: 80px;
	background: #00479d;
	line-height: 1.2;
	text-align: center;
	padding: 4px;
}
.news_list .news_title {
	text-decoration: underline;
}
.news_list li a:hover .news_title {
	text-decoration: none;
}
@media screen and (max-width: 1024px) {
.list01 .title {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
.list01 li {
	width: 100%;
	margin-right: 0;
}
.list01 li:not(:last-child) {
	margin: 0 0 16px;
}
.list01 .title {
	font-size: 1.6rem;
}
.news_list li a {
	display: block;
	padding: 12px 0;
}
.news_meta {
	margin: 0  0 8px;
}
}

/* --------------------------------------------------------
	dl
-------------------------------------------------------- */
.dl01 > div:not(:last-child) {
	margin: 0 0 10px;
}
.dl01 dt {
	color: #00479d;
	font-size: 2.4rem;
	font-weight: 700;
	background: #e5ecf4;
	border: solid 1px #00479d;
	padding: 16px 24px;
}
.dl01 dd {
	border: solid 1px #00479d;
	border-top: none;
	padding: 24px;
	position: relative;
}
.dl01 .is_img_set dd,
.dl01 .is_btn_set dd {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.dl01 dd .txt_wrap p:not(:last-child) {
	margin: 0 0 24px;
}
.dl01 .is_btn_set dd .txt_wrap {
	width: 62%;
}
.dl01 .is_img_set dd .txt_wrap {
	width: 60%;
}
.dl01 .is_img_set dd figure {
	width: 35%;
	text-align: center;
}
.dl01 dd .btn_wrap {
	width: 200px;
	position: absolute;
	top: 24px;
	right: 24px;
}
.dl02 dt {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 4px;
}
.dl02 dt {
	font-size: 1.8rem;
}
.dl02 dd:not(:last-of-type) {
	margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
.dl01 dt {
	font-size: 2rem;
	padding: 10px 16px;
}
.dl01 dd {
	padding: 16px;
}
.dl01 .is_img_set dd,
.dl01 .is_btn_set dd {
	display: block;
}
.dl01 .is_img_set dd .txt_wrap,
.dl01 .is_img_set dd figure,
.dl01 .is_btn_set dd .txt_wrap,
.dl01 .is_btn_set dd .btn_wrap {
	width: 100%;
}
	.dl01 .is_img_set dd figure {
		margin: 0 0 24px;
	}

.dl01 dd .btn_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 8px 0 0;
	position: static;
}
.dl02 dt {
	font-size: 1.8rem;
}
.dl02 dt {
	font-size: 1.6rem;
}
.dl02 dd:not(:last-of-type) {
	margin: 0 0 24px;
}
}

/* --------------------------------------------------------
	tbl
-------------------------------------------------------- */

.tbl01 th,
.tbl01 td,
.tbl02 th,
.tbl02 td {
	border: solid 1px #d2d2d2;
	padding: 10px;
}
.tbl02 th,
.tbl02 td {
	padding: 16px;
}
.tbl01 th,
.tbl02 th {
	font-weight: 700;
	background: #e5ecf4;
}
.tbl01 th {
	color: #00479d;
}
.tbl01 td,
.tbl02 td {
	word-break: break-all;
}
.tbl01 td {
	vertical-align: top;
}
.tbl02 th {
	width: 200px;
	text-align: center;
}
@media screen and (max-width: 768px) {
.scroll_tbl {
	overflow-x: auto;
}
.scroll_tbl table {
	white-space: nowrap;
}
.scroll_tbl table th,
.scroll_tbl table td {
	padding: 10px 24px;
}
.tbl02 th,
.tbl02 td {
	width: 100%;
	display: block;
}
.tbl02 th,
	.tbl02 tr:not(:last-child) td {
		border-bottom: none;
	}
}

/* --------------------------------------------------------
	余白
-------------------------------------------------------- */
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.mb40 { margin-bottom: 40px; }
.mb48 { margin-bottom: 48px; }
.mb56 { margin-bottom: 56px; }


/* --------------------------------------------------------
	パンくず
-------------------------------------------------------- */
#breadcrumb {
	font-size: 1.4rem;
	padding: 10px 0 0;
}
#breadcrumb ul,
#breadcrumb ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#breadcrumb ul li:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
}
#breadcrumb ul li a {
	text-decoration: underline;
}
#breadcrumb ul li a:hover {
	text-decoration: none;
}


/* --------------------------------------------------------
	PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}


/* --------------------------------------------------------
	header
-------------------------------------------------------- */
header {
	height: 120px;
	background: #fff;
	border-top: solid 2px #00479d;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 3.5% 0 1%;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10;
}
.hd_logo {
	max-width: 520px;
	width: 40%;
}
.hd_wrap {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	flex: 1 1 auto;
	padding-left: 2%;
}
.hd_btn,
.hd_nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.hd_btn {
	max-width: 410px;
	width: 100%;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.hd_btn li {
	width: 49%;
}
#en .hd_btn {
	max-width: 200px;
}
#en .hd_btn li {
	width: 100%;
}
.hd_btn li a {
	border-radius: 100px;
	text-align: center;
	display: block;
	padding: 8px 4px;
}
.hd_btn li.gakugai a {
	color: #00479d;
	border: solid 1px #00479d;
}
.hd_btn li.ocs a {
	color: #fff;
	background: #00479d;
}
.hd_nav {
	margin: 0 24px 0 0;
}
.hd_nav li a {
	white-space: nowrap;
	font-weight: 700;
	display: block;
	padding: 10px 14px;
	position: relative;
}
.hd_nav li a::after {
	content: "";
	width: 14px;
	height: 8px;
	background: url("../../img//gakunai/cmn/arrow02_bl.svg") no-repeat;
	background-size: contain;
	display: block;
	margin: 8px auto 0;
}
.hd_nav li a:hover {
	opacity: 1;
}
.hd_nav li a:hover::after {
	opacity: 1;
}
.hd_lang,
.humb { display: none; }
#menu {
	max-width: 450px;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: #1c1f80;
	cursor: pointer;
	overflow: auto;
	padding: 120px 0;
	position: fixed;
	top: 0;
	right: -450px;
	transition: .5s;
	z-index: 5;
}
.menu_btn {
	background: #1c1f80;
	padding: 16px;
}
.menu_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.menu_btn li {
	flex: 1 1 auto;
}
.menu_btn li:not(:last-child) {
	margin: 0 10px 0 0;
}
.menu_btn li a {
	font-size: 1.4rem;
	border-radius: 10px;
	display: block;
	text-align: center;
	padding: 8px 24px;
}
.menu_btn li.gakunai a {
	color: #fff;
	background: #00479d;
}
.menu_btn li.iac a {
	color: #00479d;
	background: #e5ecf4;
	border: solid 1px #00479d;
}
.menu_nav {
	color: #fff;
	background: #00479d;
}
.menu_nav li {
	border-bottom: solid 1px #fff;
}
.menu_nav li a {
	display: block;
	padding: 16px 24px;
	position: relative;
}
.menu_nav li a::after {
	content: "";
	width: 8px;
	height: 14px;
	background: url("../../img//gakunai/cmn/arrow01_wh.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}
.menu_info {
	padding: 24px 16px 0;
}
.menu_logo {
	margin: 0 0 24px;
}
.menu_info ul li:not(:last-child) {
	margin: 0 0 10px;
}
.menu_info ul li a {
	max-width: none;
}
.menu_info ul li img {
	width: 65%;
}
@media screen and (max-width: 1155px) {
.hd_btn,
.hd_nav { display: none; }
header {
	height: 70px;
	padding-right: 80px;
}
.hd_logo {
	max-width: 350px;
	width: 100%;
	flex: 1 1 auto;
}
.hd_wrap {
	flex: 0;
	padding-left: 4%;
}
.hd_lang {
	color: #00479d;
	font-size: 1.2rem;
	font-weight: 700;
	border: solid 1px #00479d;
	display: block;
	line-height: 1;
	padding: 4px;
}
.hd_lang {
	color: #00479d;
	font-size: 1.2rem;
	display: block;
}
.humb {
	width: 70px;
	height: 70px;
	background: #00479d;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
}
.humb .icon {
	width: 33px;
	height: 26px;
	position: relative;
}
.humb .icon span {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: .5s;
}
.humb .icon span:nth-child(1) {
	top: 4px;
}
.humb .icon span:nth-child(2) {
	top: 50%;
}
.humb .icon span:nth-child(3) {
	bottom: 4px;
}
.is_menu_open {
	height: 100%;
	overflow: hidden;
}
.is_menu_open .humb .icon span:nth-child(1),
.is_menu_open .humb .icon span:nth-child(3) {
	top: 12px;
}
.is_menu_open .humb .icon span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.is_menu_open .humb .icon span:nth-child(2) {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.is_menu_open .humb .icon span:nth-child(3) {
	bottom: inherit;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.is_menu_open .humb .txt::before {
	content: "CLOSE";
}
#menu {
	padding: 70px 0 120px;
}
.is_menu_open #menu {
	right: 0;
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
/* --------------------------------------------------------
	footer
-------------------------------------------------------- */
.ft_wrap {
	background: #00479d;
	padding: 40px 0;
}
.ft_wrap .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.ft_logo {
	max-width: 460px;
	width: 100%;
}
#copyright {
	color: #fff;
	font-size: 1.4rem;
	background: #313131;
	text-align: center;
	padding: 16px 8px;
}
@media screen and (max-width: 768px) {
#copyright {
	font-size: 1.1rem;
}
}


/* --------------------------------------------------------
	home
-------------------------------------------------------- */
/* mv
-------------------------------------------------------- */
#mv img {
	width: 100%;
}

/* intro
-------------------------------------------------------- */
#home_intro {
	padding: 100px 0;
}
#home_intro .list01 li:nth-child(1) {
	background-image: url("../../img//gakunai/home/device.jpg");
}
#home_intro .list01 li:nth-child(2) {
	background-image: url("../../img//gakunai/home/staff.jpg");
}
@media screen and (max-width: 768px) {
#home_intro {
	padding: 40px 0;
}
}


/* news
-------------------------------------------------------- */
#home_news {
	padding: 56px 0;
}
#home_news .inner {
	background: #fff;
	padding: 50px;
}
#home_news .head {
	width: 31%;
}
#home_news .head .c_title01 {
	margin: 0 0 32px;
}
#home_news .news_content {
	width: 64%;
}
#home_news .news_content .news_list {
	border-top: solid 1px #dcdcdc;
}
#home_news .news_content .btn_wrap { display: none; }
@media screen and (max-width: 1024px) {
#home_news .head,
#home_news .news_content {
	width: 100%;
}
#home_news .head .btn_wrap {
	display: none;
}
#home_news .news_content .btn_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 24px 0 0;
}
}
@media screen and (max-width: 768px) {
#home_news .inner {
	padding: 24px 16px 32px;
}
}

/* other
-------------------------------------------------------- */
#home_other {
	padding: 56px 0;
}
@media screen and (max-width: 768px) {
#home_news {
	padding: 40px 0;
}
}


/* --------------------------------------------------------
	お知らせ
-------------------------------------------------------- */
.wp-pagenavi {
	color: #00479d;
	font-size: 1.8rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 32px 0 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 2px;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
	color: #fff;
	font-weight: 700;
	background: #00479d;
	border: #00479d;
	opacity: 1;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	width: 30px;
	height: 30px;
	border: none;
	overflow: hidden;
	text-align: center;
	position: relative;
}
#article_news .article_head {
	border-bottom: solid 1px #dcdcdc;
	margin: 0 0 24px;
	padding: 0 0 8px;
}
#article_news .news_meta {
	margin: 0 0 8px;
}
#article_news .news_title {
	font-size: 2.4rem;
	font-weight: 700;
}
#article_news .article_body {
	border-bottom: solid 1px #dcdcdc;
	margin: 0 0 40px;
	padding: 0 0 48px;
}
#article_news .article_body a {
	color: #fff;
	background: #00479d;
	border-radius: 10px;
	display: inline-block;
	padding: 8px 24px;
	padding-right: 32px;
	position: relative;
}
#article_news .article_body a::after {
	content: "";
	width: 8px;
	height: 14px;
	background: url("../../img//gakunai/cmn/arrow01_wh.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
}
#article_news .article_body b,
#article_news .article_body strong {
	font-weight: 700;
}
.single_pager {
	color: #00479d;
	font-size: 1.4rem;
	font-weight: 700;
	position: relative;
}
.single_pager .back {
	text-decoration: underline;
}
.single_pager .back:hover {
	text-decoration: none;
}
.single_pager .prev,
.single_pager .next {
	border: solid 1px #00479d;
	display: inline-block;
	padding: 8px;
	position: absolute;
	top: -10px;
}
.single_pager .prev {
	left: 0;
}
.single_pager .next {
	right: 0;
}
@media screen and (max-width: 768px) {
#article_news .news_title {
	font-size: 2rem;
}
.wp-pagenavi {
	font-size: 1.6rem;
	margin: 24px 0 0;
}
#article_news .article_body {
	margin: 0 0 32px;
}
	.single_pager {
		margin: 0 0 16px;
	}
}

/* --------------------------------------------------------
	装置一覧
-------------------------------------------------------- */
#article_device {
	margin: 0 0 40px;
}
#article_device .link_list {
	margin-top: -4px;
	margin-right: -16px;
}
#article_device .link_list a {
	margin-top: 4px;
	margin-right: 16px;
}
#article_device .address_list li:not(:last-child) {
	margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
#article_device {
	margin: 0 0 32px;
}
}



/* --------------------------------------------------------
	スタッフ紹介
-------------------------------------------------------- */
.staff_list dt {
	font-size: 2.6rem;
	font-weight: 700;
	margin: 0 0 10px;
}
.staff_list dd:not(:last-of-type) {
	margin: 0 0 80px;
}
.staff_list .link_list li:not(:last-child) {
	margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
.staff_list dt {
	font-size: 2rem;
}
.staff_list dd:not(:last-of-type) {
	margin: 0 0 40px;
}
}


