@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
fieldset,
form,
legend,
caption,
tbody,
tfoot,
thead,
table,
label,
tr,
th,
td,
p,
img,
figure,
ul,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

html {
	font-size: 16px;
}

body {
	position: relative;
	overflow-y: scroll;
	background: #efefef;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-weight: 400;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

a[href] {
	color: #0066cc;
	transition: color 0.3s;
}

a[href]:hover {
	color: #66a3e0;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

p {
	margin: 1em 0 0;
}

p:nth-child(1) {
	margin-top: 0;
}

[type=text],
[type=email],
[type=tel],
[type=password],
[type=date],
[type=month],
[type=week],
[type=time],
[type=datetime],
[type=datetime-local],
[type=url],
[type=search],
[type=number],
textarea {
	max-width: 100%;
	padding: 0.375rem;
	margin: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	font-family: inherit;
	font-size: 1rem;
	outline: none;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
}

[type=text]:focus,
[type=number]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=search]:focus,
textarea:focus {
	box-shadow: 0 0 5px #8ebaeb;
	transition: box-shadow 0.25s, border-color 0.25s ease-in-out;
}

[type=number]::-webkit-outer-spin-button,
[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

[type=number] {
	-moz-appearance: textfield;
}

textarea {
	width: 100%;
	min-height: 7.5rem;
	resize: vertical;
}

[type=submit],
[type=button],
[type=reset] {
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
}

::placeholder {
	opacity: 1;
	color: #999;
	font-size: 1em;
	font-weight: 400;
}

:disabled {
	opacity: 0.5;
}

[readonly] {
	cursor: default;
}

[readonly]:focus {
	box-shadow: none;
}

select {
	position: relative;
	max-width: 100%;
	padding: 0.2rem 1.375rem 0.2rem 0.375rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	background: #fff url("../img/ico/sort_2.svg") no-repeat right 0.35em center/auto 35%;
	outline: none;
	font-size: 1rem;
	font-family: inherit;
	line-height: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
}

select[multiple=multiple] {
	padding: 0.5rem;
}

.select_multiple_wrap .select_wrap::after {
	display: none;
}

label {
	display: inline-block;
}

[type=checkbox] {
	width: 1.25em;
	height: 1.25em;
	margin-top: -0.1em;
	font-size: inherit;
	vertical-align: middle;
}

.checkbox_wrap [type=checkbox] {
	display: none;
}

.checkbox_wrap {
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 1rem;
	height: 1rem;
	vertical-align: middle;
}

.checkbox_mark {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #ccc;
	border-radius: 2px;
	background: #fff;
}

[type=checkbox]:checked + .checkbox_mark {
	border-color: #0066cc;
	background: #0066cc url("../img/ico/check_wht.svg") no-repeat center/80% auto;
}

[type=radio] {
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	margin-top: -0.2em;
	font-size: inherit;
	vertical-align: middle;
}

.radio_wrap [type=radio] {
	display: none;
}

.radio_wrap {
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 1rem;
	height: 1rem;
	vertical-align: middle;
}

.radio_mark {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #ccc;
	border-radius: 100%;
	background: #fff;
}

[type=radio]:checked + .radio_mark {
	border-color: #0066cc;
	background-color: #0066cc;
}

[type=radio]:checked + .radio_mark::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 37.5%;
	height: 37.5%;
	border-radius: 100%;
	background: #fff;
}

#wrap {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#login_wrap {
	width: 100%;
	min-height: 100vh;
	padding-top: 8%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 50px;
	padding: 0 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .drawer_nav_btn {
	display: none;
	margin-left: 0.5rem;
}

.header_left {
	display: flex;
	align-items: center;
}

.header_logo {
	height: 40px;
}

.header_logo a {
	height: 100%;
	line-height: 0;
	vertical-align: top;
	display: inline-flex;
}

.header_logo img {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.header_role {
	display: inline-block;
	margin-left: 6px;
	padding: 0.1em 0.5em;
	background: #ddebf8;
	color: #0066cc;
	font-size: 14px;
	white-space: nowrap;
}

.drawer_nav_btn {
	display: block;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	background: #ccc;
	line-height: 1;
	cursor: pointer;
}

.drawer_nav_btn__mark {
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 45%;
}

.drawer_nav_btn__mark,
.drawer_nav_btn__mark::before,
.drawer_nav_btn__mark::after {
	height: 2px;
	border-radius: 1px;
	background-color: #333;
	transition: all 200ms;
}

.drawer_nav_btn__mark::before,
.drawer_nav_btn__mark::after {
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
}

.drawer_nav_btn__mark::before {
	top: -5px;
}

.drawer_nav_btn__mark::after {
	top: 5px;
}

.drawer_nav_btn.is_open .drawer_nav_btn__mark {
	background: transparent;
}

.drawer_nav_btn.is_open .drawer_nav_btn__mark::before,
.drawer_nav_btn.is_open .drawer_nav_btn__mark::after {
	top: 0;
}

.drawer_nav_btn.is_open .drawer_nav_btn__mark::before {
	transform: rotate(45deg);
}

.drawer_nav_btn.is_open .drawer_nav_btn__mark::after {
	transform: rotate(-45deg);
}

.header_nav {
	list-style: none;
	height: 100%;
	margin-left: 0.5rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.header_nav > li {
	margin-left: 0.5rem;
}

.header_nav > li > a {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.header_nav > li > a[href]:hover {
	background: #efefef;
	color: #333;
}

.header_nav > li > .is_current,
.header_nav > li > a.is_current {
	background: #ddebf8;
	color: #0066cc;
}

.header_nav > li > .is_current:hover,
.header_nav > li > .is_current[href]:hover,
.header_nav > li > a.is_current:hover,
.header_nav > li > a.is_current[href]:hover {
	background: #ddebf8;
}

.header_nav > li > .is_current:hover,
.header_nav > li > a.is_current:hover {
	background: none;
	color: #0066cc;
}

.header_right {
	position: relative;
	height: 100%;
	margin-left: 1rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_nav_2 {
	list-style: none;
	position: relative;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_nav_2 > li {
	position: relative;
	margin-left: 0.5rem;
}

.header_ico,
.header_ico--plus,
.header_ico--bell {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	background: #ccc;
	vertical-align: top;
	transition: all 0.3s;
}

.header_ico:hover,
.header_ico--plus:hover,
.header_ico--bell:hover {
	background: #efefef;
}

.header_ico::before,
.header_ico--plus::before,
.header_ico--bell::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 14px;
	height: 14px;
	background: no-repeat center/contain;
}

.header_ico--plus::before {
	background-image: url("../img/ico/plus.svg");
}

.header_ico--bell::before {
	height: 16px;
	background-image: url("../img/ico/bell.svg");
}

.header_ico .badge,
.header_ico .badge--s,
.header_ico--plus .badge,
.header_ico--plus .badge--s,
.header_ico--bell .badge,
.header_ico--bell .badge--s {
	position: absolute;
	top: -4px;
	right: -4px;
}

.header_account {
	display: inline-block;
	position: relative;
	max-width: calc(100vw - 2rem - 860px);
	min-width: 32px;
	padding: 1.25rem 26px 1.25rem 38px;
	overflow: hidden;
	border-radius: 0.5rem;
	color: #333;
	font-weight: 700;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
	transition: all 0.3s;
}

.header_account:hover {
	color: #333;
	background: #efefef;
}

.header_account::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: #333 url("../img/ico/avatar_wht.svg") no-repeat center/45.833% auto;
}

.header_account::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	border-top: 8px solid #333;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}

.header_dropdown {
	outline: none;
}

.header_dropdown__trigger {
	cursor: pointer;
	outline: none;
}

.header_dropdown__hover {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: -1rem;
	right: 50%;
	z-index: 2;
	transform: translate(50%, 100%);
	padding: 7px 18px;
	border-radius: 0.5rem;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	transition: 0.1s all;
}

.header_dropdown__trigger:hover ~ .header_dropdown__hover {
	opacity: 1;
	visibility: visible;
}

.header_dropdown__contents,
.header_dropdown__contents--add,
.header_dropdown__contents--notice,
.header_dropdown__contents--account {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 48px;
	right: 1rem;
	z-index: 1;
	width: 400px;
	max-width: calc(100vw - 2rem);
	max-height: calc(100vh - 50px - 1rem);
	overflow: auto;
	border-radius: 4px;
	background: #fff;
	filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
	transition: 0.1s all;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}

.header_dropdown__contents::-webkit-scrollbar,
.header_dropdown__contents--add::-webkit-scrollbar,
.header_dropdown__contents--notice::-webkit-scrollbar,
.header_dropdown__contents--account::-webkit-scrollbar {
	display: none;
}

.header_dropdown:focus .header_dropdown__contents,
.header_dropdown:focus .header_dropdown__contents--add,
.header_dropdown:focus .header_dropdown__contents--notice,
.header_dropdown:focus .header_dropdown__contents--account {
	opacity: 1;
	visibility: visible;
}

.header_dropdown__heading_area {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}

.header_dropdown__heading {
	font-size: 20px;
	font-weight: 700;
}

.header_dropdown__heading_link {
	color: #0066cc;
	cursor: pointer;
	transition: all 0.3s;
}

.header_dropdown__heading_link:hover {
	color: #66a3e0;
}

.header_nav_3 {
	list-style: none;
	padding: 1rem;
}

.header_nav_3 a,
.header_nav_3 a[href] {
	display: block;
	position: relative;
	min-height: 48px;
	padding: 0.75rem 9px 0.75rem 53px;
	border-radius: 0.5rem;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.header_nav_3 a:hover {
	color: #333;
	background: #efefef;
}

.header_nav_3 a[href]:hover {
	color: #333;
}

.header_nav_3 a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0.5rem;
	left: 9px;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	background: #ccc url("../img/ico/arrow.svg") no-repeat center/33% auto;
}

.header_nav_3 a.header_nav_3__course::before {
	background-image: url("../img/ico/blackboard.svg");
	background-size: 56.25% auto;
}

.header_nav_3 a.header_nav_3__teacher::before {
	background-image: url("../img/ico/chalk.svg");
	background-size: 62.5% auto;
}

.header_nav_3 a.header_nav_3__student::before {
	background-image: url("../img/ico/people.svg");
	background-size: 68.75% auto;
}

.header_nav_3 a.header_nav_3__profile::before {
	background-image: url("../img/ico/write.svg");
	background-size: 62.5% auto;
}

.header_nav_3 a.header_nav_3__logout::before {
	background-image: url("../img/ico/logout.svg");
	background-size: 65.625% auto;
}

.header_nav_4 {
	list-style: none;
}

.header_nav_4 > li {
	border-top: 1px solid #ccc;
}

.header_nav_4 > li:nth-child(1) {
	border-top: 0;
}

.header_nav_4 a,
.header_nav_4 a[href] {
	display: block;
	position: relative;
	min-height: 48px;
	padding: 0.75rem 50px 0.75rem 1.5rem;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.header_nav_4 a:hover {
	color: #333;
	background: #efefef;
}

.header_nav_4 a[href]:hover {
	color: #333;
}

.header_nav_4__date {
	font-size: 12px;
}

.header_nav_4 .badge--s {
	position: absolute;
	top: 19px;
	right: 24px;
}

#drawer_nav {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s;
}

#drawer_nav.is_open {
	opacity: 1;
	visibility: visible;
}

.drawer_nav__inner {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: auto;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	text-align: center;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.drawer_nav__inner::-webkit-scrollbar {
	display: none;
}

.drawer_nav__cont {
	position: relative;
	width: 100%;
	padding: 0;
	text-align: left;
}

.drawer_nav_cont_1 {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 50px);
	margin-top: 50px;
	padding-bottom: 50px;
}

.drawer_nav_menu {
	list-style: none;
	margin: 0;
	padding: 10px 1rem 0;
	font-size: 16px;
}

.drawer_nav_menu > li + li {
	border-top: 1px solid #ccc;
}

.drawer_nav_menu > li > a {
	display: block;
	position: relative;
	padding: 16px 0 16px 13px;
	color: #333;
	text-decoration: none;
}

.drawer_nav_menu > li > a::before {
	content: "";
	display: block;
	position: absolute;
	top: 27px;
	left: -2px;
	transform: rotate(45deg);
	width: 5.6px;
	height: 5.6px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
}

main {
	display: block;
	position: relative;
	z-index: 1;
}

header ~ main {
	margin-top: 50px;
}

header ~ #wrap main {
	margin-top: 50px;
}

.main_contents {
	margin-left: 240px;
}

.side--l ~ .main_contents {
	margin-left: 400px;
}

.side,
.side--l {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 4;
	width: 240px;
	height: 100%;
	max-height: 100%;
	padding: 50px 1rem 0;
	overflow: auto;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	background: #fff;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}

.side::-webkit-scrollbar,
.side--l::-webkit-scrollbar {
	display: none;
}

.side .ul_link,
.side--l .ul_link {
	position: relative;
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}

.side .ul_link::after,
.side--l .ul_link::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0.5rem;
	width: calc(100% - 1rem);
	height: 1px;
	background: #ccc;
}

.side .heading,
.side--l .heading {
	padding-bottom: 1em;
}

.side .heading::after,
.side--l .heading::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -1rem;
	width: calc(100% + 2rem);
	height: 1px;
	background: #ccc;
}

.side [type=text],
.side--l [type=text],
.side [type=email],
.side--l [type=email],
.side [type=tel],
.side--l [type=tel],
.side [type=password],
.side--l [type=password],
.side [type=url],
.side--l [type=url],
.side [type=search],
.side--l [type=search],
.side textarea,
.side--l textarea {
	width: 100%;
}

.side__btn_area {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 240px;
	height: 265px;
	padding: calc(1rem + 5px) 1rem 1rem 1rem;
	overflow: hidden;
	pointer-events: none;
}

.side__btn_area::before {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.side__btn_area::after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #fff;
}

.side__btn_area > * {
	pointer-events: auto;
}

.side__btn_area .btn,
.side__btn_area .btn--s,
.side__btn_area .btn--l,
.side__btn_area .btn--block,
.side__btn_area .btn_border,
.side__btn_area .btn_border--plus,
.side__btn_area .btn_border--download,
.side__btn_area .btn_box,
.side__btn_area .btn_box--ico,
.side__btn_area .btn_box--blank,
.side__btn_area .btn_box--wordpress,
.side__btn_area .btn_box--pdf,
.side__btn_area .btn_box--printer {
	width: 100%;
	height: 64px;
}

.side__btn_area .btn,
.side__btn_area .btn--s,
.side__btn_area .btn--l,
.side__btn_area .btn--block,
.side__btn_area .btn_border,
.side__btn_area .btn_border--plus,
.side__btn_area .btn_border--download {
	font-size: 20px;
	text-align: center;
}

.side__btn_area .btn_box,
.side__btn_area .btn_box--ico,
.side__btn_area .btn_box--blank,
.side__btn_area .btn_box--wordpress,
.side__btn_area .btn_box--pdf,
.side__btn_area .btn_box--printer {
	box-shadow: none;
	box-shadow: 0 0 1px black;
	text-align: left;
}

.side--l {
	width: 400px;
}

.side::after,
.side--l::after {
	content: "";
	display: block;
	height: 1rem;
}

.side--l::after {
	height: calc(260px + 3rem);
}

.side--l .side__btn_area {
	width: 400px;
	max-width: 100%;
}

.side_open_btn {
	display: none;
}

.layout_2column {
	position: relative;
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
}

.layout_2column__main {
	width: calc(100% - 300px - 2rem);
	height: 100%;
}

.layout_2column__side {
	position: sticky;
	top: calc(50px + 2rem);
	width: 300px;
	height: 100%;
}

.layout_chat {
	position: relative;
	height: calc(100vh - 50px);
	display: grid;
	display: -ms-grid;
	-ms-grid-columns: 100%;
	-ms-grid-rows: 1fr auto;
	grid-template-columns: 100%;
	grid-template-rows: 1fr auto;
}

.layout_chat__main {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	z-index: 1;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.layout_chat__main::-webkit-scrollbar {
	display: none;
}

.layout_chat .message_box:nth-last-child(1),
.layout_chat .message_box--myself:nth-last-child(1) {
	margin-bottom: 20px;
}

.layout_chat__send_area {
	position: relative;
	z-index: 2;
	padding: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background: #efefef;
	-ms-grid-column: 1;
	-ms-grid-row: 2;
}

.layout_chat__send_area_inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.layout_chat__tool {
	list-style: none;
}

.layout_chat__link,
.layout_chat__link[href] {
	display: inline-block;
	position: relative;
	cursor: pointer;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.layout_chat__link:hover,
.layout_chat__link[href]:hover {
	opacity: 0.6;
	color: #333;
}

.layout_chat__link::before {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 1em;
	height: 1em;
	margin-right: 0.25em;
	background: url("../img/ico/link.svg") no-repeat center/contain;
	vertical-align: middle;
}

.layout_chat__send_area_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.layout_chat__btn {
	padding-left: 1rem;
}

.layout_chat__send_area textarea {
	margin-top: 0.5rem;
}

.fixed_breadcrumb ~ .layout_chat {
	height: calc(100vh - 80px);
	margin-top: 30px;
}

.container > .layout_chat,
.container--full > .layout_chat {
	height: calc(100vh - 80px - 4rem);
}

.fixed_breadcrumb {
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 6;
	width: 100%;
	height: 30px;
	padding: 0 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background: #efefef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.container,
.container--full {
	width: 100%;
	max-width: calc(1140px + 4rem * 2);
	margin: 0 auto;
	padding-top: 2rem;
	padding-right: 4rem;
	padding-left: 4rem;
	max-width: none;
	padding-right: 2rem;
	padding-left: 2rem;
}

.container:nth-last-child(1),
.container--full:nth-last-child(1) {
	padding-bottom: 2rem;
}

.container--full {
	max-width: calc(100% + 4rem * 2);
	padding-right: 1rem;
	padding-left: 1rem;
}

.bg {
	background: #efefef;
}

.bg--wht {
	background: #fff;
}

.bg--gry {
	background: #ccc;
}

.bg--gry_100 {
	background: #f2f2f2;
}

.bg--blu_50 {
	background: #ddebf8;
}

main > .bg:nth-last-child(1) {
	padding-bottom: 30px;
}

.heading {
	position: relative;
	margin: 2rem 0 1.5rem;
	font-size: 24px;
	font-weight: 400;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.heading:nth-child(1) {
	margin-top: 0;
}

.heading:nth-last-child(1) {
	margin-bottom: 0;
}

.breadcrumb + .heading {
	margin-top: 0.25rem;
}

.heading_2,
.heading_2--no_border,
.heading_2--accordion {
	position: relative;
	margin: 2rem 0 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #ccc;
	font-size: 18px;
	font-weight: 700;
}

.heading_2:nth-child(1),
.heading_2--no_border:nth-child(1),
.heading_2--accordion:nth-child(1) {
	margin-top: 0;
}

.heading_2:nth-last-child(1),
.heading_2--no_border:nth-last-child(1),
.heading_2--accordion:nth-last-child(1) {
	margin-bottom: 0;
}

.heading_2--no_border {
	padding-bottom: 0;
	border-bottom: none;
}

.heading_2--accordion {
	cursor: pointer;
}

.heading_2--accordion::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.3em;
	right: 0;
	z-index: 1;
	width: 1rem;
	height: 1rem;
	border-radius: 2px;
	background: #0066cc;
	transition: all 0.3s;
}

.heading_2--accordion::after {
	content: "";
	display: block;
	position: absolute;
	top: 0.6em;
	right: 0.225rem;
	z-index: 2;
	border-top: 0.375rem solid #fff;
	border-right: 0.281rem solid transparent;
	border-left: 0.281rem solid transparent;
	transition: all 0.3s;
}

.heading_2--accordion.is_open::after {
	transform: rotate(180deg);
}

.heading_3 {
	margin: 1.5rem 0 1rem;
	padding: 0 0.25rem;
	background: #ddebf8;
	font-size: 16px;
	font-weight: 700;
}

.heading_3:nth-child(1) {
	margin-top: 0;
}

.btn,
.btn--s,
.btn--l,
.btn--block {
	display: inline-block;
	position: relative;
	padding: 0.35em 1em;
	border: none;
	border-radius: 0.25rem;
	background: #0066cc;
	color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: inherit;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s;
}

.btn[href],
[href].btn--s,
[href].btn--l,
[href].btn--block {
	color: #fff;
	transition: all 0.3s;
}

.btn:disabled,
.btn--s:disabled,
.btn--l:disabled,
.btn--block:disabled {
	cursor: auto;
}

.btn:hover,
.btn--s:hover,
.btn--l:hover,
.btn--block:hover,
.btn[href]:hover {
	background: #75ace3;
	color: #fff;
}

.btn::before,
.btn--s::before,
.btn--l::before,
.btn--block::before,
.btn::after,
.btn--s::after,
.btn--l::after,
.btn--block::after {
	content: "";
	transition: all 0.3s;
}

.btn--s[href]:hover,
.btn--l[href]:hover,
.btn--block[href]:hover {
	background: #75ace3;
	color: #fff;
}

.btn--s {
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.btn--l {
	padding: 0.5em 2.5em;
}

.btn--block {
	padding-top: 0.75em;
	padding-bottom: 0.75em;
	display: flex;
	justify-content: center;
}

input.btn--block {
	width: 100%;
	text-align: center;
}

.btn_border,
.btn_border--plus,
.btn_border--download {
	display: inline-block;
	position: relative;
	padding: 0.35em 1em;
	border: none;
	border: 1px solid #0066cc;
	border-radius: 0.25rem;
	background: #fff;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: inherit;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s;
}

.btn_border[href],
[href].btn_border--plus,
[href].btn_border--download {
	color: #333;
	transition: all 0.3s;
}

.btn_border:hover,
.btn_border--plus:hover,
.btn_border--download:hover,
.btn_border[href]:hover {
	background: #ddebf8;
	color: #333;
}

.btn_border::before,
.btn_border--plus::before,
.btn_border--download::before,
.btn_border::after,
.btn_border--plus::after,
.btn_border--download::after {
	content: "";
	transition: all 0.3s;
}

.btn_border--plus,
.btn_border--download {
	padding-left: 2.5em;
}

.btn_border--plus[href]:hover,
.btn_border--download[href]:hover {
	background: #ddebf8;
	color: #333;
}

.btn_border--plus::before,
.btn_border--download::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0.75em;
	transform: translateY(-50%);
	width: 1.25em;
	height: 1.25em;
	border-radius: 100%;
	background: #0066cc no-repeat center/44% auto;
}

.btn_border--plus::before {
	background-image: url(../img/ico/plus_wht.svg);
	background-size: 44% auto;
}

.btn_border--download::before {
	background-image: url(../img/ico/download_wht.svg);
	background-size: 60% auto;
}

.btn_box,
.btn_box--ico,
.btn_box--blank,
.btn_box--wordpress,
.btn_box--pdf,
.btn_box--printer {
	display: block;
	position: relative;
	margin-top: 2rem;
	padding: 1rem 2.5rem 1rem 0.75rem;
	border: 4px solid #fff;
	border-radius: 0.5rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	background: #fff;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: inherit;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
}

.btn_box[href],
[href].btn_box--ico,
[href].btn_box--blank,
[href].btn_box--wordpress,
[href].btn_box--pdf,
[href].btn_box--printer {
	color: #333;
	transition: all 0.3s;
}

.btn_box:hover,
.btn_box--ico:hover,
.btn_box--blank:hover,
.btn_box--wordpress:hover,
.btn_box--pdf:hover,
.btn_box--printer:hover,
.btn_box[href]:hover {
	background: #efefef;
	color: #333;
}

.btn_box:nth-child(1),
.btn_box--ico:nth-child(1),
.btn_box--blank:nth-child(1),
.btn_box--wordpress:nth-child(1),
.btn_box--pdf:nth-child(1),
.btn_box--printer:nth-child(1) {
	margin-top: 0;
}

.btn_box::before,
.btn_box--ico::before,
.btn_box--blank::before,
.btn_box--wordpress::before,
.btn_box--pdf::before,
.btn_box--printer::before {
	content: "";
	transition: all 0.3s;
}

.btn_box::after,
.btn_box--ico::after,
.btn_box--blank::after,
.btn_box--wordpress::after,
.btn_box--pdf::after,
.btn_box--printer::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	width: 0.625rem;
	height: 1.0625rem;
	background: url("../img/ico/arrow_2_blu.svg") no-repeat center/contain;
	transition: all 0.3s;
}

.btn_box--ico[href]:hover,
.btn_box--blank[href]:hover,
.btn_box--wordpress[href]:hover,
.btn_box--pdf[href]:hover,
.btn_box--printer[href]:hover {
	background: #efefef;
	color: #333;
}

.btn_box--blank::after {
	width: 1rem;
	height: 1rem;
	background-image: url("../img/ico/blank_blu.svg");
}

.btn_box--wordpress,
.btn_box--pdf,
.btn_box--printer {
	padding-left: 4.5rem;
}

.btn_box--wordpress::before,
.btn_box--pdf::before,
.btn_box--printer::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	background: no-repeat center/contain;
}

.btn_box--wordpress::before {
	background-image: url("../img/ico/wordpress.svg");
}

.btn_box--pdf::before,
.btn_box--printer::before {
	border-radius: 100%;
	background-color: #ddebf8;
}

.btn_box--pdf::before {
	background-image: url("../img/ico/pdf_blu.svg");
	background-size: 50% auto;
}

.btn_box--printer::before {
	background-image: url("../img/ico/printer_blu.svg");
	background-size: 55% auto;
}

.btn_box--pdf:hover::before,
.btn_box--pdf[href]:hover::before,
.btn_box--printer:hover::before,
.btn_box--printer[href]:hover::before {
	background-color: #fff;
}

.badge,
.badge--s {
	position: relative;
	display: inline-block;
	min-width: 1.8em;
	min-height: 1.8em;
	padding: 0 0.125em;
	border-radius: 1.8em;
	background: #d94848;
	color: #fff;
	font-size: 10px;
	text-align: center;
	line-height: 1.8;
	vertical-align: top;
}

.badge--s {
	font-size: 5.555px;
}

.box,
.box--s,
.box--ss {
	margin: 2rem 0 0;
	padding: 2rem;
	border-radius: 0.5rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	background: #fff;
}

.box:nth-child(1),
.box--s:nth-child(1),
.box--ss:nth-child(1) {
	margin-top: 0;
}

.box__heading {
	position: relative;
	left: -1.5rem;
	width: calc(100% + 3rem);
	margin-top: -1rem;
	padding: 0 0.5rem 0.75em;
	border-bottom: 1px solid #ccc;
	font-size: 1rem;
	font-weight: 700;
}

.box--s .box__heading {
	left: -0.5rem;
	width: calc(100% + 1rem);
	margin-top: 0;
}

.box--ss .box__heading {
	left: 0;
	width: auto;
	margin-top: 0.5rem;
}

.box--s {
	padding: 1rem;
}

.box--ss {
	padding: 0.5rem;
}

.ul_text_links + .box,
.ul_text_links + .box--s,
.ul_text_links + .box--ss {
	margin-top: 0.5rem;
}

.box_2,
.box_2--blu_50 {
	margin: 2rem 0 0;
	padding: 2rem;
	border-radius: 0.5rem;
	background: #fff;
}

.box_2:nth-child(1),
.box_2--blu_50:nth-child(1) {
	margin-top: 0;
}

.box_2--blu_50 {
	background: #ddebf8;
}

.table,
.table--th_175 {
	table-layout: fixed;
	position: relative;
	width: 100%;
	margin-top: 1rem;
	border-collapse: collapse;
}

.table:nth-child(1),
.table--th_175:nth-child(1) {
	margin-top: 0;
}

.table > tbody > tr > th,
.table--th_175 > tbody > tr > th,
.table > tbody > tr > td,
.table--th_175 > tbody > tr > td {
	padding: 0.5em 0;
	text-align: left;
	vertical-align: middle;
}

.table > tbody > tr > th,
.table--th_175 > tbody > tr > th,
.table > tbody > tr > td,
.table--th_175 > tbody > tr > td {
	padding-left: 1em;
}

.table > tbody > tr > th:nth-child(1),
.table--th_175 > tbody > tr > th:nth-child(1),
.table > tbody > tr > td:nth-child(1),
.table--th_175 > tbody > tr > td:nth-child(1) {
	padding-left: 0;
}

.table > tbody > tr > th,
.table--th_175 > tbody > tr > th {
	font-weight: 700;
}

.table td > [type=text],
.table--th_175 td > [type=text],
.table td > [type=email],
.table--th_175 td > [type=email],
.table td > [type=tel],
.table--th_175 td > [type=tel],
.table td > [type=password],
.table--th_175 td > [type=password],
.table td > [type=url],
.table--th_175 td > [type=url],
.table td > [type=search],
.table--th_175 td > [type=search],
.table td > textarea,
.table--th_175 td > textarea {
	width: 100%;
}

.table--th_175 > tbody > tr > th {
	width: 175px;
}

.sp_table--responsive > tbody > tr > td {
	padding-top: 0.5em;
}

.sp_table--responsive > tbody > tr > th,
.sp_table--responsive > tbody > tr > td {
	padding-left: 0;
}

.table_stripe {
	width: 100%;
	margin-top: 1rem;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-collapse: collapse;
	font-size: calc(1rem - 2px);
}

.table_stripe:nth-child(1) {
	margin-top: 0;
}

.table_stripe > thead > tr {
	border-bottom: 2px solid #ccc;
}

.table_stripe > thead > tr > th {
	white-space: nowrap;
}

.table_stripe > thead > tr > th,
.table_stripe > thead > tr > td {
	padding: 0.75em;
	font-weight: 700;
	text-align: left;
}

.table_stripe > tbody > tr > th,
.table_stripe > tbody > tr > td {
	padding: 0.75em;
	text-align: left;
	vertical-align: middle;
}

.table_stripe > tbody > tr:nth-child(2n+1) > th,
.table_stripe > tbody > tr:nth-child(2n+1) > td {
	background: #efefef;
}

.table_stripe > tbody > tr:nth-child(2n) > th,
.table_stripe > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_stripe > tbody > tr > th {
	font-weight: 700;
}

.table_stripe > tfoot > tr {
	border-top: 2px solid #ccc;
}

.table_stripe > tfoot > tr > th {
	white-space: nowrap;
}

.table_stripe > tfoot > tr > th,
.table_stripe > tfoot > tr > td {
	padding: 0.75em;
	font-weight: 700;
	text-align: left;
}

.table_stripe a {
	text-decoration: none;
}

.table_form {
	table-layout: fixed;
	position: relative;
	width: 100%;
	margin-top: 1rem;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-collapse: separate;
	border-spacing: 0 0.45rem;
}

.table_form:nth-child(1) {
	margin-top: 0;
}

.table_form > thead > tr {
	border-bottom: 2px solid #ccc;
}

.table_form > thead > tr > th,
.table_form > thead > tr > td {
	padding: 0.9em 0.75em;
	text-align: left;
	vertical-align: middle;
}

.table_form > tbody > tr > th,
.table_form > tbody > tr > td {
	padding: 0.9em 0.75em;
	text-align: left;
	vertical-align: middle;
}

.table_form > tbody > tr:nth-child(2n+1) > th,
.table_form > tbody > tr:nth-child(2n+1) > td {
	background: #efefef;
}

.table_form > tbody > tr:nth-child(2n) > th,
.table_form > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_form > tbody > tr > th {
	width: 176px;
	font-weight: 700;
}

.table_form td > [type=text],
.table_form td > [type=email],
.table_form td > [type=tel],
.table_form td > [type=password],
.table_form td > [type=url],
.table_form td > [type=search],
.table_form td > textarea {
	width: 100%;
}

.table_underline,
.table_underline--last_no_line {
	width: 100%;
	margin-top: 1rem;
	border-bottom: 1px solid #ccc;
	border-collapse: collapse;
}

.table_underline:nth-child(1),
.table_underline--last_no_line:nth-child(1) {
	margin-top: 0;
}

.table_underline > thead > tr,
.table_underline--last_no_line > thead > tr {
	border-bottom: 2px solid #ccc;
}

.table_underline > thead > tr > th,
.table_underline--last_no_line > thead > tr > th {
	white-space: nowrap;
}

.table_underline > thead > tr > th,
.table_underline--last_no_line > thead > tr > th,
.table_underline > thead > tr > td,
.table_underline--last_no_line > thead > tr > td,
.table_underline > tbody > tr > th,
.table_underline--last_no_line > tbody > tr > th,
.table_underline > tbody > tr > td,
.table_underline--last_no_line > tbody > tr > td,
.table_underline > tfoot > tr > th,
.table_underline--last_no_line > tfoot > tr > th,
.table_underline > tfoot > tr > td,
.table_underline--last_no_line > tfoot > tr > td {
	padding: 0.75em;
	border-top: 1px solid #ccc;
	text-align: left;
	vertical-align: top;
}

.table_underline > tbody > tr > th,
.table_underline--last_no_line > tbody > tr > th {
	color: #ed822f;
	font-weight: 400;
}

.table_underline > tbody > tr.is_current > th,
.table_underline--last_no_line > tbody > tr.is_current > th,
.table_underline > tbody > tr.is_current > td,
.table_underline--last_no_line > tbody > tr.is_current > td {
	background: #ddebf8;
}

.table_deposit {
	table-layout: fixed;
	min-width: 100%;
	margin-top: 1rem;
	border: 2px solid #ccc;
	border-top: none;
	border-collapse: collapse;
}

.table_deposit:nth-child(1) {
	margin-top: 0;
}

.table_deposit > thead > tr > th,
.table_deposit > thead > tr > td {
	vertical-align: middle;
}

.table_deposit > thead > tr > th,
.table_deposit > thead > tr > td {
	height: 100%;
	border: 1px solid #ccc;
	font-weight: 700;
	text-align: center;
}

.table_deposit > thead > tr:nth-child(1) th,
.table_deposit > thead > tr:nth-child(1) td {
	padding: 0.75rem 1rem;
	background: #ccc;
	border-top: none;
}

.table_deposit > thead > tr th.table_deposit__heading_students,
.table_deposit > thead > tr td.table_deposit__heading_students,
.table_deposit > thead > tr th.table_deposit__heading_bank,
.table_deposit > thead > tr td.table_deposit__heading_bank {
	width: 100%;
	min-width: 560px;
	color: #fff;
	white-space: nowrap;
}

.table_deposit > thead > tr th.table_deposit__heading_students,
.table_deposit > thead > tr td.table_deposit__heading_students {
	background: #2cba73;
}

.table_deposit > thead > tr th.table_deposit__heading_bank,
.table_deposit > thead > tr td.table_deposit__heading_bank {
	background: #0066cc;
}

.table_deposit > tbody {
	border-top: 2px solid #ccc;
}

.table_deposit > tbody > tr > th,
.table_deposit > tbody > tr > td {
	vertical-align: middle;
}

.table_deposit > tbody > tr:nth-child(2n+1) > th,
.table_deposit > tbody > tr:nth-child(2n+1) > td {
	background: #f2f2f2;
}

.table_deposit > tbody > tr:nth-child(2n) > th,
.table_deposit > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_deposit > thead > tr > th.table_deposit__check_cell,
.table_deposit > thead > tr > td.table_deposit__check_cell,
.table_deposit > tbody > tr > th.table_deposit__check_cell,
.table_deposit > tbody > tr > td.table_deposit__check_cell {
	width: 48px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-right: 2px solid #ccc;
	border-left: 2px solid #ccc;
	text-align: center;
}

.table_deposit > thead > tr:nth-child(1) th.table_deposit__check_cell,
.table_deposit > thead > tr:nth-child(1) td.table_deposit__check_cell {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
}

.table_deposit > thead > tr > th.table_deposit__new_balance_cell,
.table_deposit > thead > tr > td.table_deposit__new_balance_cell .table_deposit > tbody > tr > th.table_deposit__new_balance_cell,
.table_deposit > tbody > tr > td.table_deposit__new_balance_cell {
	width: 126px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-left: 2px solid #ccc;
}

.table_deposit__new_balance_cell input {
	width: 100px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.table_deposit__students,
.table_deposit__bank {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-top: 1px dotted #ccc;
	display: flex;
}

.table_deposit__students:nth-child(1),
.table_deposit__bank:nth-child(1) {
	border-top: none;
}

.table_deposit__students > div,
.table_deposit__bank > div {
	padding: 0.75rem 1rem;
	border-left: 1px solid #ccc;
	word-break: break-all;
}

.table_deposit__students > div:nth-child(1),
.table_deposit__bank > div:nth-child(1) {
	border-left: none;
}

.table_deposit__students > div:nth-child(1) {
	width: 18%;
}

.table_deposit__students > div:nth-child(2) {
	width: 36%;
}

.table_deposit__students > div:nth-child(3) {
	width: 26%;
}

.table_deposit__students > div:nth-child(4) {
	width: 20%;
}

.table_deposit__bank > div:nth-child(1) {
	width: 25%;
}

.table_deposit__bank > div:nth-child(2) {
	width: 27%;
}

.table_deposit__bank > div:nth-child(3) {
	width: 48%;
}

tbody .table_deposit__students > div:nth-child(1),
tbody .table_deposit__students > div:nth-child(4) {
	text-align: right;
}

tbody .table_deposit__students > div:nth-child(2),
tbody .table_deposit__students > div:nth-child(3) {
	text-align: center;
}

tbody .table_deposit__bank > div:nth-child(1),
tbody .table_deposit__bank > div:nth-child(3) {
	text-align: center;
}

tbody .table_deposit__bank > div:nth-child(2) {
	text-align: right;
}

.table_deposit > thead > tr > th.table_deposit__day_cell,
.table_deposit > thead > tr > td.table_deposit__day_cell .table_deposit > tbody > tr > th.table_deposit__day_cell,
.table_deposit > tbody > tr > td.table_deposit__day_cell {
	width: 205px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-left: 2px solid #ccc;
}

.table_deposit__day_cell input {
	width: 180px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.table_border,
.table_border--p0,
.table_border--p1,
.table_border--p2,
.table_border--p4,
.table_border--p5 {
	position: relative;
	width: 100%;
	border-collapse: collapse;
}

.table_border > thead > tr > th,
.table_border--p0 > thead > tr > th,
.table_border--p1 > thead > tr > th,
.table_border--p2 > thead > tr > th,
.table_border--p4 > thead > tr > th,
.table_border--p5 > thead > tr > th,
.table_border > thead > tr > td,
.table_border--p0 > thead > tr > td,
.table_border--p1 > thead > tr > td,
.table_border--p2 > thead > tr > td,
.table_border--p4 > thead > tr > td,
.table_border--p5 > thead > tr > td,
.table_border > tbody > tr > th,
.table_border--p0 > tbody > tr > th,
.table_border--p1 > tbody > tr > th,
.table_border--p2 > tbody > tr > th,
.table_border--p4 > tbody > tr > th,
.table_border--p5 > tbody > tr > th,
.table_border > tbody > tr > td,
.table_border--p0 > tbody > tr > td,
.table_border--p1 > tbody > tr > td,
.table_border--p2 > tbody > tr > td,
.table_border--p4 > tbody > tr > td,
.table_border--p5 > tbody > tr > td,
.table_border > tfoot > tr > th,
.table_border--p0 > tfoot > tr > th,
.table_border--p1 > tfoot > tr > th,
.table_border--p2 > tfoot > tr > th,
.table_border--p4 > tfoot > tr > th,
.table_border--p5 > tfoot > tr > th,
.table_border > tfoot > tr > td,
.table_border--p0 > tfoot > tr > td,
.table_border--p1 > tfoot > tr > td,
.table_border--p2 > tfoot > tr > td,
.table_border--p4 > tfoot > tr > td,
.table_border--p5 > tfoot > tr > td {
	padding: 3px;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #ccc;
}

.table_border > thead > tr > th,
.table_border--p0 > thead > tr > th,
.table_border--p1 > thead > tr > th,
.table_border--p2 > thead > tr > th,
.table_border--p4 > thead > tr > th,
.table_border--p5 > thead > tr > th,
.table_border > tbody > tr > th,
.table_border--p0 > tbody > tr > th,
.table_border--p1 > tbody > tr > th,
.table_border--p2 > tbody > tr > th,
.table_border--p4 > tbody > tr > th,
.table_border--p5 > tbody > tr > th,
.table_border > tfoot > tr > th,
.table_border--p0 > tfoot > tr > th,
.table_border--p1 > tfoot > tr > th,
.table_border--p2 > tfoot > tr > th,
.table_border--p4 > tfoot > tr > th,
.table_border--p5 > tfoot > tr > th {
	font-weight: 400;
	text-align: center;
}

.table_border--p0 > thead > tr > th,
.table_border--p0 > thead > tr > td,
.table_border--p0 > tbody > tr > th,
.table_border--p0 > tbody > tr > td,
.table_border--p0 > tfoot > tr > th,
.table_border--p0 > tfoot > tr > td {
	padding: 0;
}

.table_border--p1 > thead > tr > th,
.table_border--p1 > thead > tr > td,
.table_border--p1 > tbody > tr > th,
.table_border--p1 > tbody > tr > td,
.table_border--p1 > tfoot > tr > th,
.table_border--p1 > tfoot > tr > td {
	padding: 1px;
}

.table_border--p2 > thead > tr > th,
.table_border--p2 > thead > tr > td,
.table_border--p2 > tbody > tr > th,
.table_border--p2 > tbody > tr > td,
.table_border--p2 > tfoot > tr > th,
.table_border--p2 > tfoot > tr > td {
	padding: 2px;
}

.table_border--p4 > thead > tr > th,
.table_border--p4 > thead > tr > td,
.table_border--p4 > tbody > tr > th,
.table_border--p4 > tbody > tr > td,
.table_border--p4 > tfoot > tr > th,
.table_border--p4 > tfoot > tr > td {
	padding: 4px;
}

.table_border--p5 > thead > tr > th,
.table_border--p5 > thead > tr > td,
.table_border--p5 > tbody > tr > th,
.table_border--p5 > tbody > tr > td,
.table_border--p5 > tfoot > tr > th,
.table_border--p5 > tfoot > tr > td {
	padding: 5px;
}

.table_sticky {
	width: 100%;
	border-collapse: collapse;
}

.table_sticky:nth-child(1) {
	margin-top: 0;
}

.table_sticky > thead > tr > th {
	white-space: nowrap;
}

.table_sticky > thead > tr > th,
.table_sticky > thead > tr > td {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 0.75em;
	background: #fff;
	font-weight: 700;
	text-align: left;
}

.table_sticky > thead > tr:nth-child(1) > th,
.table_sticky > thead > tr:nth-child(1) > td {
	height: 143px;
}

.table_sticky > thead > tr:nth-child(2) > th,
.table_sticky > thead > tr:nth-child(2) > td {
	top: 143px;
}

.table_sticky > tbody {
	position: relative;
	z-index: 1;
}

.table_sticky > tbody > tr > th,
.table_sticky > tbody > tr > td {
	padding: 0.75em;
	text-align: left;
	vertical-align: middle;
}

.table_sticky > tbody > tr:nth-child(2n+1) > th,
.table_sticky > tbody > tr:nth-child(2n+1) > td {
	background: #efefef;
}

.table_sticky > tbody > tr:nth-child(2n) > th,
.table_sticky > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_sticky > tbody > tr > th {
	font-weight: 700;
}

.table_sticky > tfoot > tr > th {
	white-space: nowrap;
}

.table_sticky > tfoot > tr > th,
.table_sticky > tfoot > tr > td {
	padding: 0.75em;
	font-weight: 700;
	text-align: left;
}

.table_sticky a {
	text-decoration: none;
}

.table_hokuyobank {
	table-layout: fixed;
	min-width: 100%;
	margin-top: 1rem;
	border: 2px solid #ccc;
	border-top: none;
	border-collapse: collapse;
	font-size: 14px;
}

.table_hokuyobank:nth-child(1) {
	margin-top: 0;
}

.table_hokuyobank > thead > tr > th,
.table_hokuyobank > thead > tr > td,
.table_hokuyobank > tbody > tr > th,
.table_hokuyobank > tbody > tr > td {
	padding: 0.75rem 0.5rem;
	border-right: 1px solid #ccc;
}

.table_hokuyobank > thead > tr > th,
.table_hokuyobank > thead > tr > td {
	vertical-align: middle;
}

.table_hokuyobank > thead > tr > th,
.table_hokuyobank > thead > tr > td {
	height: 100%;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.table_hokuyobank > thead > tr:nth-child(1) th,
.table_hokuyobank > thead > tr:nth-child(1) td {
	background: #ccc;
	border-top: none;
}

.table_hokuyobank > thead > tr th.table_hokuyobank__heading_students,
.table_hokuyobank > thead > tr td.table_hokuyobank__heading_students,
.table_hokuyobank > thead > tr th.table_hokuyobank__heading_bank,
.table_hokuyobank > thead > tr td.table_hokuyobank__heading_bank {
	color: #fff;
	white-space: nowrap;
}

.table_hokuyobank > thead > tr th.table_hokuyobank__heading_students,
.table_hokuyobank > thead > tr td.table_hokuyobank__heading_students {
	background: #2cba73;
}

.table_hokuyobank > thead > tr th.table_hokuyobank__heading_bank,
.table_hokuyobank > thead > tr td.table_hokuyobank__heading_bank {
	background: #0066cc;
}

.table_hokuyobank > tbody {
	border-top: 2px solid #ccc;
}

.table_hokuyobank > tbody > tr > th,
.table_hokuyobank > tbody > tr > td {
	text-align: center;
	vertical-align: middle;
}

.table_hokuyobank > tbody > tr:nth-child(2n+1) > th,
.table_hokuyobank > tbody > tr:nth-child(2n+1) > td {
	background: #f2f2f2;
}

.table_hokuyobank > tbody > tr:nth-child(2n) > th,
.table_hokuyobank > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_hokuyobank > thead > tr > th.table_hokuyobank__check_cell,
.table_hokuyobank > thead > tr > td.table_hokuyobank__check_cell,
.table_hokuyobank > tbody > tr > th.table_hokuyobank__check_cell,
.table_hokuyobank > tbody > tr > td.table_hokuyobank__check_cell {
	width: 48px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-right: 2px solid #ccc;
	border-left: 2px solid #ccc;
	text-align: center;
}

.table_hokuyobank > thead > tr > th.table_hokuyobank__new_balance_cell,
.table_hokuyobank > thead > tr > td.table_hokuyobank__new_balance_cell,
.table_hokuyobank > tbody > tr > th.table_hokuyobank__new_balance_cell,
.table_hokuyobank > tbody > tr > td.table_hokuyobank__new_balance_cell {
	border-left: 2px solid #ccc;
}

.table_hokuyobank > thead > tr:nth-child(1) th.table_hokuyobank__check_cell,
.table_hokuyobank > thead > tr:nth-child(1) td.table_hokuyobank__check_cell {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
}

.table_hokuyobank > thead > tr:nth-child(1) th.table_hokuyobank__new_balance_cell,
.table_hokuyobank > thead > tr:nth-child(1) td.table_hokuyobank__new_balance_cell {
	border-left: 2px solid #fff;
}

.table_hokuyobank > thead > tr > th.table_hokuyobank__new_balance_cell,
.table_hokuyobank > thead > tr > td.table_hokuyobank__new_balance_cell .table_hokuyobank > tbody > tr > th.table_hokuyobank__new_balance_cell,
.table_hokuyobank > tbody > tr > td.table_hokuyobank__new_balance_cell {
	width: 135px;
	border-left: 2px solid #ccc;
}

.table_hokuyobank__new_balance_cell input {
	width: 100%;
	min-width: 109px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	text-align: right;
}

.table_hokuyobank__students,
.table_hokuyobank__bank {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-top: 1px dotted #ccc;
	display: flex;
}

.table_hokuyobank__students:nth-child(1),
.table_hokuyobank__bank:nth-child(1) {
	border-top: none;
}

.table_hokuyobank > thead > tr > th.table_hokuyobank__day_cell,
.table_hokuyobank > thead > tr > td.table_hokuyobank__day_cell .table_hokuyobank > tbody > tr > th.table_hokuyobank__day_cell,
.table_hokuyobank > tbody > tr > td.table_hokuyobank__day_cell {
	width: 175px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-left: 2px solid #ccc;
}

.table_hokuyobank__day_cell input {
	width: 150px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.table_hokuyobank .hr {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	background: none;
	border-bottom: 1px dotted #ccc;
}

p + .table_hokuyobank {
	margin-top: 0.5rem;
}

.table_hokuyobank2 {
	width: calc(100% - 4px);
	margin-top: 1rem;
	border-collapse: collapse;
	font-size: 14px;
}

.table_hokuyobank2:nth-child(1) {
	margin-top: 0;
}

.table_hokuyobank2 > thead > tr > th,
.table_hokuyobank2 > thead > tr > td,
.table_hokuyobank2 > tbody > tr > th,
.table_hokuyobank2 > tbody > tr > td {
	padding: 0.75rem 0.25rem;
	border: 1px solid #ccc;
}

.table_hokuyobank2 > thead > tr > th:nth-child(1),
.table_hokuyobank2 > thead > tr > td:nth-child(1),
.table_hokuyobank2 > tbody > tr > th:nth-child(1),
.table_hokuyobank2 > tbody > tr > td:nth-child(1) {
	border-left: 4px solid #ccc;
}

.table_hokuyobank2 > thead > tr > th:nth-last-child(1),
.table_hokuyobank2 > thead > tr > td:nth-last-child(1),
.table_hokuyobank2 > tbody > tr > th:nth-last-child(1),
.table_hokuyobank2 > tbody > tr > td:nth-last-child(1) {
	border-right: 2px solid #ccc;
}

.table_hokuyobank2 > thead > tr > th,
.table_hokuyobank2 > thead > tr > td {
	vertical-align: middle;
}

.table_hokuyobank2 > thead > tr > th,
.table_hokuyobank2 > thead > tr > td {
	height: 100%;
	font-weight: 700;
	text-align: center;
}

.table_hokuyobank2 > thead > tr:nth-child(1) th,
.table_hokuyobank2 > thead > tr:nth-child(1) td {
	border-top: none;
}

.table_hokuyobank2 > thead > tr th.table_hokuyobank2__heading_students,
.table_hokuyobank2 > thead > tr td.table_hokuyobank2__heading_students,
.table_hokuyobank2 > thead > tr th.table_hokuyobank2__heading_bank,
.table_hokuyobank2 > thead > tr td.table_hokuyobank2__heading_bank {
	color: #fff;
	white-space: nowrap;
}

.table_hokuyobank2 > thead > tr th.table_hokuyobank2__heading_students,
.table_hokuyobank2 > thead > tr td.table_hokuyobank2__heading_students {
	background: #2cba73;
}

.table_hokuyobank2 > thead > tr th.table_hokuyobank2__heading_bank,
.table_hokuyobank2 > thead > tr td.table_hokuyobank2__heading_bank {
	background: #0066cc;
}

.table_hokuyobank2 > tbody {
	border-top: 2px solid #ccc;
}

.table_hokuyobank2 > tbody > tr > th,
.table_hokuyobank2 > tbody > tr > td {
	text-align: center;
	vertical-align: middle;
}

.table_hokuyobank2 > tbody > tr:nth-child(2n+1) > th,
.table_hokuyobank2 > tbody > tr:nth-child(2n+1) > td {
	background: #f2f2f2;
}

.table_hokuyobank2 > tbody > tr:nth-child(2n) > th,
.table_hokuyobank2 > tbody > tr:nth-child(2n) > td {
	background: #fff;
}

.table_hokuyobank2 > tbody > tr:nth-last-child(1) > th,
.table_hokuyobank2 > tbody > tr:nth-last-child(1) > td {
	border-bottom: 2px solid #ccc;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__check_cell,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__check_cell,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__check_cell,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__check_cell {
	width: 48px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-right: 2px solid #ccc;
	border-left: 2px solid #ccc;
	text-align: center;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__new_balance_cell,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__new_balance_cell,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__new_balance_cell,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__new_balance_cell {
	border-left: 2px solid #ccc;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__check_cell.bg--gry,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__check_cell.bg--gry {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__new_balance_cell.bg--gry,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__new_balance_cell.bg--gry {
	border-left: 2px solid #fff;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__new_balance_cell,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__new_balance_cell .table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__new_balance_cell,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__new_balance_cell {
	width: 135px;
	padding-right: 0.5rem;
	padding-left: 0.5rem;
	border-left: 2px solid #ccc;
}

.table_hokuyobank2__new_balance_cell input {
	width: 100%;
	min-width: 80px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	text-align: right;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__cell_red,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__cell_red,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__cell_red,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__cell_red {
	padding-left: 0;
	padding-right: 0;
	border: none;
	font-size: 1rem;
	text-align: left;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__cell_grn,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__cell_grn {
	color: #30c97c;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__cell_red,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__cell_red,
.table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__cell_red,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__cell_red {
	color: #d94848;
}

.table_hokuyobank2__students,
.table_hokuyobank2__bank {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-top: 1px dotted #ccc;
	display: flex;
}

.table_hokuyobank2__students:nth-child(1),
.table_hokuyobank2__bank:nth-child(1) {
	border-top: none;
}

.table_hokuyobank2 > thead > tr > th.table_hokuyobank2__day_cell,
.table_hokuyobank2 > thead > tr > td.table_hokuyobank2__day_cell .table_hokuyobank2 > tbody > tr > th.table_hokuyobank2__day_cell,
.table_hokuyobank2 > tbody > tr > td.table_hokuyobank2__day_cell {
	width: 175px;
	padding-right: 1rem;
	padding-left: 1rem;
	border-left: 2px solid #ccc;
}

.table_hokuyobank2__day_cell input {
	width: 150px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.table_hokuyobank2 .hr {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	background: none;
	border-bottom: 1px dotted #ccc;
}

p + .table_hokuyobank2 {
	margin-top: 0.5rem;
}

.report_table,
.report_table--p0,
.report_table--p1,
.report_table--p2,
.report_table--p4,
.report_table--p5 {
	position: relative;
	width: 100%;
	border-collapse: collapse;
}

.report_table > thead > tr > th,
.report_table--p0 > thead > tr > th,
.report_table--p1 > thead > tr > th,
.report_table--p2 > thead > tr > th,
.report_table--p4 > thead > tr > th,
.report_table--p5 > thead > tr > th,
.report_table > thead > tr > td,
.report_table--p0 > thead > tr > td,
.report_table--p1 > thead > tr > td,
.report_table--p2 > thead > tr > td,
.report_table--p4 > thead > tr > td,
.report_table--p5 > thead > tr > td,
.report_table > tbody > tr > th,
.report_table--p0 > tbody > tr > th,
.report_table--p1 > tbody > tr > th,
.report_table--p2 > tbody > tr > th,
.report_table--p4 > tbody > tr > th,
.report_table--p5 > tbody > tr > th,
.report_table > tbody > tr > td,
.report_table--p0 > tbody > tr > td,
.report_table--p1 > tbody > tr > td,
.report_table--p2 > tbody > tr > td,
.report_table--p4 > tbody > tr > td,
.report_table--p5 > tbody > tr > td,
.report_table > tfoot > tr > th,
.report_table--p0 > tfoot > tr > th,
.report_table--p1 > tfoot > tr > th,
.report_table--p2 > tfoot > tr > th,
.report_table--p4 > tfoot > tr > th,
.report_table--p5 > tfoot > tr > th,
.report_table > tfoot > tr > td,
.report_table--p0 > tfoot > tr > td,
.report_table--p1 > tfoot > tr > td,
.report_table--p2 > tfoot > tr > td,
.report_table--p4 > tfoot > tr > td,
.report_table--p5 > tfoot > tr > td {
	padding: 3px;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #ccc;
}

.report_table > thead > tr > th,
.report_table--p0 > thead > tr > th,
.report_table--p1 > thead > tr > th,
.report_table--p2 > thead > tr > th,
.report_table--p4 > thead > tr > th,
.report_table--p5 > thead > tr > th,
.report_table > tbody > tr > th,
.report_table--p0 > tbody > tr > th,
.report_table--p1 > tbody > tr > th,
.report_table--p2 > tbody > tr > th,
.report_table--p4 > tbody > tr > th,
.report_table--p5 > tbody > tr > th,
.report_table > tfoot > tr > th,
.report_table--p0 > tfoot > tr > th,
.report_table--p1 > tfoot > tr > th,
.report_table--p2 > tfoot > tr > th,
.report_table--p4 > tfoot > tr > th,
.report_table--p5 > tfoot > tr > th {
	text-align: center;
}

.report_table--p0 > thead > tr > th,
.report_table--p0 > thead > tr > td,
.report_table--p0 > tbody > tr > th,
.report_table--p0 > tbody > tr > td,
.report_table--p0 > tfoot > tr > th,
.report_table--p0 > tfoot > tr > td {
	padding: 0;
}

.report_table--p1 > thead > tr > th,
.report_table--p1 > thead > tr > td,
.report_table--p1 > tbody > tr > th,
.report_table--p1 > tbody > tr > td,
.report_table--p1 > tfoot > tr > th,
.report_table--p1 > tfoot > tr > td {
	padding: 1px;
}

.report_table--p2 > thead > tr > th,
.report_table--p2 > thead > tr > td,
.report_table--p2 > tbody > tr > th,
.report_table--p2 > tbody > tr > td,
.report_table--p2 > tfoot > tr > th,
.report_table--p2 > tfoot > tr > td {
	padding: 2px;
}

.report_table--p4 > thead > tr > th,
.report_table--p4 > thead > tr > td,
.report_table--p4 > tbody > tr > th,
.report_table--p4 > tbody > tr > td,
.report_table--p4 > tfoot > tr > th,
.report_table--p4 > tfoot > tr > td {
	padding: 4px;
}

.report_table--p5 > thead > tr > th,
.report_table--p5 > thead > tr > td,
.report_table--p5 > tbody > tr > th,
.report_table--p5 > tbody > tr > td,
.report_table--p5 > tfoot > tr > th,
.report_table--p5 > tfoot > tr > td {
	padding: 5px;
}

.scroll_area {
	max-width: 100%;
	margin-top: 1rem;
	overflow: auto;
}

.scroll_area:nth-child(1) {
	margin-top: 0;
}

.ul {
	margin: 1em 0 0;
	padding-left: 1em;
}

.ul:nth-child(1) {
	margin-top: 0;
}

.ul_archive {
	margin-top: 1rem;
	list-style: none;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.ul_archive:nth-child(1) {
	margin-top: 0;
}

.ul_archive a,
.ul_archive a[href] {
	display: block;
	position: relative;
	padding: 1rem 1rem 1rem 2.125rem;
	background: #f2f2f2;
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	transition: all 0.3s;
}

.ul_archive > li:nth-child(2n) a {
	background: #fff;
}

.ul_archive a:hover,
.ul_archive a[href]:hover,
.ul_archive > li:nth-child(2n) a:hover {
	background: #e3e3e3;
	color: #333;
}

.ul_archive .badge--s {
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.ul_archive__date {
	display: inline-block;
	width: 180px;
}

.ul_archive__status,
.ul_archive__status--student,
.ul_archive__status--teacher,
.ul_archive__status-1,
.ul_archive__status-2,
.ul_archive__status-3,
.ul_archive__status-4 {
	display: inline-block;
	position: relative;
	width: 80px;
	margin-left: 1rem;
	padding: 0.3em 0.5em;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ul_archive__status-1,
.ul_archive__status-2,
.ul_archive__status-3,
.ul_archive__status-4 {
	width: auto;
	min-width: 80px;
}

/*.ul_archive__status-2 {
	width: 200px;
}*/

.ul_archive__status--student {
	color: #ea5c91;
}

.ul_archive__status--teacher {
	color: #ed822f;
}

.ul_archive__status-1 {
	color: #1877f0;
}

.ul_archive__status-2 {
	color: #4cb818;
}

.ul_archive__status-3 {
	color: #9d1175;
}

.ul_archive__status-4 {
	color: #b08046;
}

.ul_archive__title {
	display: block;
	width: calc(100% - 95px - 1.25rem);
	margin-left: 1.25rem;
	color: #333;
}

.ul_archive__status ~ .ul_archive__title,
.ul_archive__status--student ~ .ul_archive__title,
.ul_archive__status--teacher ~ .ul_archive__title,
.ul_archive__status-1 ~ .ul_archive__title,
.ul_archive__status-2 ~ .ul_archive__title,
.ul_archive__status-3 ~ .ul_archive__title,
.ul_archive__status-4 ~ .ul_archive__title {
	width: calc(100% - 95px - 180px - 1rem - 1.25rem);
}

.ul_archive__status-2 ~ .ul_archive__title {
	width: calc(100% - 200px - 180px - 1rem - 1.25rem);
}

.ul_archive__no_date {
	padding: 1rem;
	background: #f2f2f2;
}

.ul_archive_2 {
	margin-top: 1rem;
	list-style: none;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.ul_archive_2:nth-child(1) {
	margin-top: 0;
}

.ul_archive_2 a,
.ul_archive_2 a[href] {
	display: block;
	position: relative;
	padding: 1rem 1rem 1rem 2.125rem;
	background: #f2f2f2;
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	transition: all 0.3s;
}

.ul_archive_2 > li:nth-child(2n) a {
	background: #fff;
}

.ul_archive_2 a:hover,
.ul_archive_2 a[href]:hover,
.ul_archive_2 > li:nth-child(2n) a:hover {
	background: #e3e3e3;
	color: #333;
}

.ul_archive_2 .badge--s {
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.ul_archive_2__title {
	display: block;
	width: calc(100% - 160px - 1.25rem);
	margin-right: 1.25rem;
	color: #333;
}

.ul_archive_2__date {
	display: inline-block;
	width: 160px;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	justify-content: flex-end;
}

.ul_archive_2__status ~ .ul_archive_2__title {
	width: calc(100% - 95px - 70px - 1rem - 1.25rem);
}

.ul_archive_2__no_date {
	padding: 1rem;
	background: #f2f2f2;
}

.ul_link {
	list-style: none;
	margin: 1rem 0 0;
	padding-bottom: 1rem;
}

.ul_link:nth-child(1) {
	margin-top: 0;
}

.ul_link > li {
	margin-top: 4px;
}

.ul_link a,
.ul_link a[href] {
	display: block;
	position: relative;
	padding: 0.25em 0.5em 0.25em 2em;
	border-radius: 0.25rem;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.ul_link a:hover,
.ul_link a[href]:hover {
	background: #efefef;
	color: #333;
}

.ul_link a.is_current,
.ul_link a[href].is_current:hover {
	background: #ddebf8;
	color: #0066cc;
}

.ul_link a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.48em;
	left: 0.5rem;
	width: 1em;
	height: 1em;
	border-radius: 100%;
	background: #ccc url("../img/ico/arrow.svg") no-repeat 58% center/35% auto;
}

.ul_link a.is_current::before {
	background-color: #0066cc;
	background-image: url("../img/ico/arrow_wht.svg");
}

.ul_text_links {
	list-style: none;
	margin: 1.75em 0 0;
	display: flex;
	flex-wrap: wrap;
}

.ul_text_links:nth-child(1) {
	margin-top: 0;
}

.ul_text_links > li {
	position: relative;
	margin: 0.25em 0;
	padding: 0 1em;
}

.ul_text_links > li::before {
	content: "";
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 1px;
	height: 1em;
	background: #333;
}

.ul_text_links > li:nth-last-child(1)::after {
	content: "";
	position: absolute;
	top: 0.25em;
	right: 0;
	width: 1px;
	height: 1em;
	background: #333;
}

.ul_text_links a {
	text-decoration: none;
}

.ul_text_links a.is_hide,
.ul_text_links a[href].is_hide {
	color: #0066cc;
	cursor: pointer;
	transition: all 0.3s;
}

.ul_text_links a.is_hide:hover {
	color: #66a3e0;
}

.hr {
	height: 1px;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: none;
	background: #ccc;
}

.ico_sort {
	display: inline-block;
	width: 0.75em;
	height: 1.375em;
	background: url("../img/ico/sort_gry_500.svg") no-repeat center/contain;
	vertical-align: middle;
}

.ico_copy {
	display: inline-block;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	background: #ccc url("../img/ico/copy.svg") no-repeat center/53.125% auto;
	vertical-align: middle;
}

a.ico_copy {
	transition: all 0.3s;
	cursor: pointer;
}

a.ico_copy:hover {
	background-color: #e3e3e3;
}

.ico_minus {
	display: inline-block;
	position: relative;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	background: #333;
	vertical-align: middle;
}

.ico_minus::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 40%;
	height: 2px;
	background: #fff;
}

a.ico_minus {
	transition: all 0.3s;
	cursor: pointer;
}

a.ico_minus:hover {
	background-color: #e3e3e3;
}

.ico_close {
	display: inline-block;
	position: relative;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	background: #333;
	vertical-align: middle;
}

.ico_close::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) rotate(45deg);
	width: 40%;
	height: 2px;
	background: #fff;
}

.ico_close::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) rotate(45deg);
	width: 2px;
	height: 40%;
	background: #fff;
}

a.ico_close {
	transition: all 0.3s;
	cursor: pointer;
}

a.ico_close:hover {
	background-color: #e3e3e3;
}

.ico_circle,
.ico_circle--red,
.ico_circle--blu,
.ico_circle--grn {
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../img/ico/circle.svg") no-repeat center/contain;
	vertical-align: middle;
}

.ico_circle--red {
	background-image: url("../img/ico/circle_red.svg");
}

.ico_circle--blu {
	background-image: url("../img/ico/circle_blu.svg");
}

.ico_circle--grn {
	background-image: url("../img/ico/circle_grn.svg");
}

.ico_cross,
.ico_cross--red,
.ico_cross--blu,
.ico_cross--grn {
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../img/ico/cross.svg") no-repeat center/contain;
	vertical-align: middle;
}

.ico_cross--red {
	background-image: url("../img/ico/cross_red.svg");
}

.ico_cross--blu {
	background-image: url("../img/ico/cross_blu.svg");
}

.ico_cross--grn {
	background-image: url("../img/ico/cross_grn.svg");
}

.sort_txt {
	position: relative;
	padding-right: 1rem;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s;
}

.sort_txt:hover {
	color: #666;
}

.sort_txt::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 0.5rem;
	height: 0.625rem;
	background: url("../img/ico/sort_2_blu.svg") no-repeat center/contain;
	transition: all 0.3s;
}

.sort_txt:hover::after {
	opacity: 0.6;
}

.sort_up {
	position: relative;
	padding-right: 1rem;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s;
}

.sort_up:hover {
	color: #666;
}

.sort_up::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border-bottom: 5px solid #0066cc;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	transition: opacity 0.3s;
}

.sort_up:hover::after {
	opacity: 0.6;
}

.sort_down {
	position: relative;
	padding-right: 1rem;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s;
}

.sort_down:hover {
	color: #666;
}

.sort_down::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border-top: 5px solid #0066cc;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	transition: opacity 0.3s;
}

.sort_down:hover::after {
	opacity: 0.6;
}

.required {
	display: inline-block;
	position: relative;
	top: -0.25rem;
	margin-left: 2px;
	color: #d94848;
	font-size: 0.75rem;
	vertical-align: middle;
}

.required::before {
	content: "＊";
}

.delete_link {
	display: inline-block;
	position: relative;
	color: #d94848;
	font-weight: 700;
	text-decoration: underline;
	transition: all 0.3s;
}

.delete_link::before {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 0.8125em;
	height: 1em;
	margin-right: 0.25em;
	background: url("../img/ico/trash_red.svg") no-repeat center/contain;
	vertical-align: middle;
	transition: all 0.3s;
}

.delete_link:hover::before {
	opacity: 0.6;
}

a.delete_link[href] {
	color: #d94848;
}

.delete_link:hover,
a.delete_link[href]:hover {
	color: #e89191;
}

.form_txt {
	margin-top: 0.5em;
	color: #666;
	font-size: 14px;
}

.error {
	color: #d94848;
	font-size: 14px;
}

.border_area,
.border_area--transparent,
.border_area--lr_none {
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid #ccc;
	background: #fff;
}

.border_area:nth-child(1),
.border_area--transparent:nth-child(1),
.border_area--lr_none:nth-child(1) {
	margin-top: 0;
}

.border_area--transparent {
	background-color: transparent;
}

.border_area--lr_none {
	border-right: none;
	border-left: none;
}

.sort_blocks {
	margin-top: 2rem;
}

.sort_blocks:nth-child(1) {
	margin-top: 0;
}

.sort_blocks__item {
	margin-top: 0.5rem;
	padding: 1rem;
	border: 1px solid #ccc;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sort_blocks__item:nth-child(1) {
	margin-top: 0;
}

.sort_blocks__left {
	width: calc(100% - 5.25rem);
}

.sort_blocks__right {
	width: 5.25rem;
	padding-left: 1rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.sort_blocks .ico_minus {
	cursor: pointer;
}

.sort_blocks .ico_sort {
	cursor: move;
}

.toggle_btn {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.toggle_btn::before,
.toggle_btn::after {
	font-size: calc(1em - 6px);
}

.toggle_btn::before {
	content: "OFF";
	margin-right: 1em;
}

.toggle_btn::after {
	content: "ON";
	margin-left: 1em;
}

.toggle_btn .radio_wrap,
.toggle_btn .checkbox_wrap {
	top: auto;
	width: auto;
	height: auto;
}

.toggle_btn .radio_mark,
.toggle_btn .checkbox_mark {
	width: 60px;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 60px;
	cursor: pointer;
}

.toggle_btn [type=radio]:checked + .radio_mark,
.toggle_btn [type=checkbox]:checked + .checkbox_mark {
	border-color: #30c97c;
	background-color: #fff;
}

.toggle_btn [type=radio] + .radio_mark::before,
.toggle_btn [type=checkbox] + .checkbox_mark::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	border-radius: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background: #fff;
	transition: all 200ms;
}

.toggle_btn [type=radio]:checked + .radio_mark::before,
.toggle_btn [type=checkbox]:checked + .checkbox_mark::before {
	transform: translateX(100%);
	background: #30c97c;
}

.file_upload_label {
	display: inline-block;
	position: relative;
	padding: 0.35em 1em;
	border: none;
	border-radius: 0.25rem;
	background: #0066cc;
	color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: inherit;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s;
}

.file_upload_label:hover,
.file_upload_label[href]:hover {
	background: #75ace3;
	color: #fff;
}

.file_upload_label .file_upload {
	display: none;
}

.file_delete {
	display: inline-block;
	position: relative;
	color: #d94848;
	font-weight: 700;
	text-decoration: underline;
	transition: all 0.3s;
}

.file_delete::before {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 0.8125em;
	height: 1em;
	margin-right: 0.25em;
	background: url("../img/ico/trash_red.svg") no-repeat center/contain;
	vertical-align: middle;
}

.file_delete:hover {
	opacity: 0.6;
}

.side_heading {
	margin: 0 -1rem;
	padding: 1.75rem 1rem;
	font-size: 20px;
	border-bottom: 1px solid #ccc;
}

.side_heading_2 {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 18px;
	font-weight: 700;
}

.side_heading_3 {
	margin-top: 2rem;
	margin-bottom: 0.5em;
	color: #0066cc;
	font-size: 1rem;
	font-weight: 700;
}

.side_heading_3:nth-child(1) {
	margin-top: 0;
}

.password_wrap {
	position: relative;
}

.password_wrap > [type=text],
.password_wrap > [type=email],
.password_wrap > [type=tel],
.password_wrap > [type=password],
.password_wrap > [type=url],
.password_wrap > [type=search],
.password_wrap > textarea {
	width: 100%;
	padding-right: 2.75rem;
}

.password_wrap__ico {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0.75rem;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
	background: url("../img/ico/eye.svg") no-repeat center/contain;
	cursor: pointer;
}

.password_wrap__ico.is_off {
	background-image: url("../img/ico/eye_off.svg");
}

.unread {
	position: relative;
	margin-top: 1rem;
	padding-top: 10px;
	padding-bottom: 10px;
	background: #f7d8d8;
	font-size: calc(1rem - 2px);
	font-weight: 700;
	color: #d94848;
	text-align: center;
}

.unread:nth-child(1) {
	margin-top: 0;
}

.unread + .message_box,
.unread + .message_box--myself {
	padding-top: 60px;
	margin-top: -40px;
	border-top: none;
}

.dropdown {
	position: relative;
}

.dropdown__more::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 0.25em);
	right: 0;
	border-top: 0.5em solid #333;
	border-right: 0.375em solid transparent;
	border-left: 0.375em solid transparent;
	transition: all 0.3s;
}

.dropdown:hover .dropdown__more::after,
.dropdown.is_open .dropdown__more::after {
	transform: rotate(180deg);
}

.dropdown__content {
	opacity: 0;
	visibility: hidden;
	list-style: none;
	position: absolute;
	padding: 0.25em 0;
	background: #000;
	transition: all 0.3s;
}

.dropdown:hover .dropdown__content,
.dropdown.is_open .dropdown__content {
	opacity: 1;
	visibility: visible;
}

.dropdown a {
	display: block;
	padding: 0.25em 0.5em;
	color: #fff;
	text-decoration: none;
}

.dropdown__more,
.header_nav > li > a.dropdown__more {
	padding-right: 1.25em;
}

.header_nav > li > a.dropdown__more::after {
	right: 0.15em;
}

.input_text_red {
	color: #d94848;
	border-color: #d94848;
	background: #f7d8d8;
}

.input_text_blu {
	color: #0066cc;
	border-color: #0066cc;
	background: #ddebf8;
}

.area_underline {
	border-bottom: 1px solid #ccc;
}

.column,
.column--2 {
	margin: 0 -1rem 0;
	display: flex;
	flex-wrap: wrap;
}

.column:nth-child(1),
.column--2:nth-child(1) {
	margin-top: -2rem;
}

.column__item {
	position: relative;
	width: calc(100% / 1 - 2rem - 0.1px);
	margin: 2rem 1rem 0;
}

.column--2 .column__item {
	width: calc(100% / 2 - 2rem - 0.1px);
}

.heading_2 + .column,
.heading_2--no_border + .column,
.heading_2--accordion + .column,
.heading_2 + .column--2,
.heading_2--no_border + .column--2,
.heading_2--accordion + .column--2 {
	margin-top: -2rem;
}

.btn_group,
.btn_group--2 {
	margin: 1rem -0.5rem 0;
	display: flex;
	flex-wrap: wrap;
}

.btn_group:nth-child(1),
.btn_group--2:nth-child(1) {
	margin-top: -1rem;
}

.btn_group__item {
	width: calc(100% / 1 - 1rem - 0.1px);
	margin: 1rem 0.5rem 0;
}

.btn_group--2 .btn_group__item {
	width: calc(100% / 2 - 1rem - 0.1px);
}

.btn_group .btn,
.btn_group--2 .btn,
.btn_group .btn--s,
.btn_group--2 .btn--s,
.btn_group .btn--l,
.btn_group--2 .btn--l,
.btn_group .btn--block,
.btn_group--2 .btn--block,
.btn_group .btn_border,
.btn_group--2 .btn_border,
.btn_group .btn_border--plus,
.btn_group--2 .btn_border--plus,
.btn_group .btn_border--download,
.btn_group--2 .btn_border--download {
	width: 100%;
	display: flex;
	justify-content: center;
}

.btn_group_2 {
	margin: 0.5rem -0.25rem 0;
	display: flex;
	flex-wrap: wrap;
}

.btn_group_2:nth-child(1) {
	margin-top: -0.5rem;
}

.btn_group_2__item {
	position: relative;
	margin: 0.5rem 0.25rem 0;
}

.btn_group_3 {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.btn_group_3:nth-child(1) {
	margin-top: 0;
}

.btn_group_3::after {
	content: "";
	width: 3.5em;
}

.btn_group_3__delete {
	width: 3.5em;
}

.tab {
	margin-top: 2rem;
}

.tab:nth-child(1) {
	margin-top: 0;
}

.tab__label {
	float: left;
	position: relative;
	min-width: 96px;
	min-height: 40px;
	margin: 4px 2px 0;
	padding: 5px;
	border: 1px solid #999;
	border-top-right-radius: 0.5rem;
	border-top-left-radius: 0.5rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.tab__label[for=tab_student] {
	color: #ea5c91;
}

.tab__label[for=tab_teacher] {
	color: #ed822f;
}

.tab__label:hover {
	background: #efefef;
}

.tab__label::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	transition: all 0.3s;
}

.tab__contents {
	display: none;
	padding-top: 15px;
	clear: both;
	overflow: hidden;
}

.tab__border {
	clear: both;
	float: left;
	width: 100%;
	height: 1px;
	margin: -1px 0 0;
	border: none;
	background: #999;
}

.tab .ul_archive {
	border-top: none;
}

input[name=tab__label] {
	display: none;
}

#tab_all:checked ~ #tab_all_contents,
#tab_student:checked ~ #tab_student_contents,
#tab_teacher:checked ~ #tab_teacher_contents,
#tab_unread:checked ~ #tab_unread_contents {
	display: block;
}

.tab input:checked + .tab__label::after {
	background: #fff;
}

.accordion {
	margin-top: 2rem;
}

.accordion:nth-child(1) {
	margin-top: 0;
}

.accordion__heading {
	position: relative;
	padding-left: 1.5em;
	color: #0066cc;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
}

.accordion__heading::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.2em;
	left: 0;
	z-index: 1;
	width: 1em;
	height: 1em;
	border-radius: 2px;
	background: #0066cc;
	transition: all 0.3s;
}

.accordion__heading::after {
	content: "";
	display: block;
	position: absolute;
	top: 45%;
	left: 0.225em;
	transform: translateY(-50%);
	z-index: 2;
	border-top: 0.375em solid #fff;
	border-right: 0.281em solid transparent;
	border-left: 0.281em solid transparent;
	transition: all 0.3s;
}

.accordion__heading.is_open::after {
	transform: translateY(-50%) rotate(180deg);
}

.accordion__contents {
	display: none;
}

.accordion__heading.is_open ~ .accordion__contents,
.heading_2--accordion.is_open ~ .accordion__contents {
	display: block;
	padding-top: 1rem;
}

.heading_2--accordion.is_open ~ .accordion__contents {
	padding-top: 0;
}

.accordion__balloon {
	position: relative;
	padding: 1.75rem;
	border-radius: 0.25rem;
	background: #f2f2f2;
}

.accordion__balloon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1.5rem;
	transform: translateY(-100%);
	border-right: 0.5rem solid transparent;
	border-bottom: 0.625rem solid #f2f2f2;
	border-left: 0.5rem solid transparent;
}

.breadcrumb {
	list-style: none;
	margin-top: 1rem;
	color: #666;
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb:nth-child(1) {
	margin-top: 0;
}

.breadcrumb > li::before {
	content: "＞";
	margin: 0 0.25em;
}

.breadcrumb > li:nth-child(1)::before {
	display: none;
}

.breadcrumb a,
.breadcrumb a[href] {
	color: inherit;
	text-decoration: none;
}

.breadcrumb a[href]:hover {
	color: #a3a3a3;
	text-decoration: underline;
}

.container > .breadcrumb:nth-child(1),
.container--full > .breadcrumb:nth-child(1) {
	margin-top: -1.35rem;
}

.side > .breadcrumb:nth-child(1),
.side--l > .breadcrumb:nth-child(1) {
	margin-top: 1rem;
}

.flex,
.flex--ma_1rem,
.flex--ma_2rem,
.flex--ma_3rem {
	margin-top: 1rem;
	max-width: 5000px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.flex--ma_1rem {
	margin: 0 -0.5rem 0;
}

.flex--ma_1rem:nth-child(1) {
	margin-top: -1rem;
}

.flex--ma_1rem .flex__item {
	margin: 1rem 0.5rem 0;
}

.flex--ma_2rem {
	margin: -1rem -1rem 0;
}

.flex--ma_2rem:nth-child(1) {
	margin-top: -2rem;
}

.flex--ma_2rem .flex__item {
	margin: 2rem 1rem 0;
}

.flex--ma_3rem {
	margin: -2rem -1.5rem 0;
}

.flex--ma_3rem:nth-child(1) {
	margin-top: -3rem;
}

.flex--ma_3rem .flex__item {
	margin: 3rem 1.5rem 0;
}

.flex_center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.search_box,
.search_box--3 {
	margin: -2rem -1rem 0;
	display: flex;
	flex-wrap: wrap;
}

.search_box__item,
.search_box__item--btn_area,
.search_box__item--l,
.search_box__item--heading_l {
	position: relative;
	width: calc(100% / 2 - 2rem - 0.1px);
	margin: 2rem 1rem 0;
}

.search_box__item--btn_area {
	margin-top: 2rem;
}

.search_box__item--l {
	width: calc(100% - 2rem - 0.1px);
}

.search_box__item--heading_l {
	width: calc(100% - 2rem - 0.1px);
	padding-top: 2rem;
	border-top: 1px solid #ccc;
	font-weight: 700;
}

.search_box input[type=text],
.search_box--3 input[type=text] {
	width: 100%;
	margin-top: 5px;
}

.search_box .select_wrap,
.search_box--3 .select_wrap {
	margin-top: 5px;
}

.search_box label,
.search_box--3 label {
	margin-top: 5px;
}

.search_box--3 .search_box__item,
.search_box--3 .search_box__item--btn_area,
.search_box--3 .search_box__item--l,
.search_box--3 .search_box__item--heading_l {
	width: calc(100% / 3 - 2rem - 0.1px);
}

.search_box__item--btn_area,
.search_box--3 .search_box__item--btn_area {
	width: calc(100% / 1 - 2rem - 0.1px);
}

.search_box2 {
	font-size: calc(1rem - 2px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.search_box2__detail {
	width: calc(100% - 100px);
	margin: -1rem -0.5rem 0;
	align-self: center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.search_box2__detail > div {
	margin: 1rem 0.5rem 0;
	max-width: 100%;
}

.search_box2 [type=text],
.search_box2 [type=email],
.search_box2 [type=tel],
.search_box2 [type=password],
.search_box2 [type=date],
.search_box2 [type=month],
.search_box2 [type=week],
.search_box2 [type=time],
.search_box2 [type=datetime],
.search_box2 [type=datetime-local],
.search_box2 [type=url],
.search_box2 [type=search],
.search_box2 [type=number] {
	height: 2.5rem;
	width: 220px;
	margin: 2px;
}

.search_box2 select {
	height: 2.5rem;
	margin: 2px;
}

.search_box2 .btn,
.search_box2 .btn--s,
.search_box2 .btn--l,
.search_box2 .btn--block {
	width: 100px;
	min-height: 2.5rem;
	align-self: flex-end;
}

.list_nav {
	margin: -1rem -0.5rem 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list_nav__left {
	margin: 1rem 0.5rem 0;
}

.list_nav__right {
	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.list_nav__right_item {
	margin: 1rem 0.5rem 0;
}

.pagination {
	list-style: none;
	margin: calc(1rem - 2px) -2px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.pagination:nth-child(1) {
	margin-top: -2px;
}

.pagination > li {
	margin: 2px;
}

.pagination a,
.pagination a[href] {
	display: inline-block;
	min-width: 2rem;
	padding: 0.2rem 0.45rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	color: #333;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
}

.pagination a:hover,
.pagination a[href]:hover {
	background: #efefef;
	color: #333;
}

.pagination a.is_current,
.pagination a.is_current:hover {
	border-color: #75ace3;
	background: #ddebf8;
	color: #0066cc;
}

.teacher_info_contents {
	margin-top: 2rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-end;
}

.teacher_info_contents:nth-child(1) {
	margin-top: 0;
}

.multiple_contents {
	margin-top: 0.5rem;
	display: flex;
	justify-content: space-between;
}

.multiple_contents:nth-child(1) {
	margin-top: 0;
}

.multiple_contents__item {
	position: relative;
	width: calc((100% - 3rem) / 2);
	text-align: center;
}

.multiple_contents__item:nth-child(2)::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -2.5rem;
	transform: translateY(-100%);
	width: 2rem;
	height: 1.375rem;
	background: url("../img/ico/arrow_3_leftward_gry_500.svg") no-repeat center/contain;
}

.multiple_contents select[multiple=multiple] {
	width: 100%;
	height: 27rem;
}

.multiple_contents .select_wrap {
	width: 100%;
}

.upload_img {
	position: relative;
	width: 100%;
	max-width: 340px;
	margin-top: 1rem;
	padding-right: 40px;
}

.upload_img:nth-child(1) {
	margin-top: 0;
}

.upload_img img {
	width: 100%;
	max-width: 300px;
}

.upload_img__close {
	position: absolute;
	top: 0;
	right: 0;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
	overflow: hidden;
}

.modaal-accessible-hide {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
}

.modaal-wrapper {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: auto;
	opacity: 1;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
	border: none;
	background: transparent;
	padding: 0;
	-webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}

.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}

.modaal-inner-wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
	padding: 0;
	display: block;
	vertical-align: top;
}

.modaal-container {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: auto;
	text-align: left;
	color: #000;
	max-width: 1000px;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: auto;
}

.modaal-container.is_loading {
	height: 100px;
	width: 100px;
	overflow: hidden;
}

.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}

.modaal-close {
	position: fixed;
	right: 20px;
	top: 20px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}

.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
	display: block;
	content: " ";
	position: absolute;
	top: 14px;
	left: 23px;
	width: 4px;
	height: 22px;
	border-radius: 4px;
	background: #fff;
	transition: background 0.2s ease-in-out;
}

.modaal-close:before {
	transform: rotate(-45deg);
}

.modaal-close:after {
	transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
	background: #afb7bc;
	right: 10px;
	top: 10px;
}

.modaal-content-container {
	padding: 15px;
}

.modaal-confirm-wrap {
	padding: 30px 0 0;
	text-align: center;
	font-size: 0;
}

.modaal-confirm-btn {
	font-size: 14px;
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	background: transparent;
}

.modaal-confirm-btn.modaal-ok {
	padding: 10px 15px;
	color: #fff;
	background: #555;
	border-radius: 3px;
	transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
	background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
	text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
	text-decoration: none;
	color: #2f2f2f;
}

.modaal-instagram .modaal-container {
	width: auto;
	background: transparent;
	box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
	padding: 0;
	background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.modaal-instagram iframe {
	opacity: 0;
	margin: -6px !important;
	border-radius: 0 !important;
	width: 1000px !important;
	max-width: 800px !important;
	box-shadow: none !important;
	animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
	padding-left: 140px;
	padding-right: 140px;
}

.modaal-image .modaal-container {
	width: auto;
	max-width: 100%;
}

.modaal-gallery-wrap {
	position: relative;
	color: #fff;
}

.modaal-gallery-item {
	display: none;
}

.modaal-gallery-item img {
	display: block;
}

.modaal-gallery-item.is_active {
	display: block;
}

.modaal-gallery-label {
	position: absolute;
	left: 0;
	width: 100%;
	margin: 20px 0 0;
	font-size: 18px;
	text-align: center;
	color: #fff;
}

.modaal-gallery-label:focus {
	outline: none;
}

.modaal-gallery-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	cursor: pointer;
	color: #fff;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 100%;
	transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
	opacity: 0;
	cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
	outline: none;
	background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
	background: #afb7bc;
}

.modaal-gallery-control span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
	display: block;
	content: " ";
	position: absolute;
	top: 16px;
	left: 25px;
	width: 4px;
	height: 18px;
	border-radius: 4px;
	background: #fff;
	transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
	margin: -5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-control:after {
	margin: 5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-next-inner {
	left: 100%;
	margin-left: 40px;
}

.modaal-gallery-next-outer {
	right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
	left: 22px;
}

.modaal-gallery-prev:before {
	margin: 5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
	margin: -5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
	right: 100%;
	margin-right: 40px;
}

.modaal-gallery-prev-outer {
	left: 45px;
}

.modaal-video-wrap {
	margin: auto 50px;
	position: relative;
}

.modaal-video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	background: #000;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modaal-iframe .modaal-content {
	width: 100%;
	height: 100%;
}

.modaal-iframe-elem {
	width: 100%;
	height: 100%;
	display: block;
}

.modaal-loading-spinner {
	background: none;
	position: absolute;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	transform: scale(0.25);
}

.modaal-loading-spinner > div {
	width: 24px;
	height: 24px;
	margin-left: 4px;
	margin-top: 4px;
	position: absolute;
}

.modaal-loading-spinner > div > div {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
	-ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.12s;
	-moz-animation-delay: 0.12s;
	-webkit-animation-delay: 0.12s;
	-o-animation-delay: 0.12s;
	animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
	-ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.25s;
	-moz-animation-delay: 0.25s;
	-webkit-animation-delay: 0.25s;
	-o-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
	-ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.37s;
	-moz-animation-delay: 0.37s;
	-webkit-animation-delay: 0.37s;
	-o-animation-delay: 0.37s;
	animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
	-ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
	-ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.62s;
	-moz-animation-delay: 0.62s;
	-webkit-animation-delay: 0.62s;
	-o-animation-delay: 0.62s;
	animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
	-ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.75s;
	-moz-animation-delay: 0.75s;
	-webkit-animation-delay: 0.75s;
	-o-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
	-ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
	animation: modaal-loading-spinner 1s linear infinite;
	-ms-animation-delay: 0.87s;
	-moz-animation-delay: 0.87s;
	-webkit-animation-delay: 0.87s;
	-o-animation-delay: 0.87s;
	animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
	-ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	-o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
	transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

.modal_heading {
	margin-bottom: 1rem;
	font-weight: bold;
	font-size: calc(1rem + 2px);
	text-align: center;
}

.modal_item_heading {
	margin-top: 1rem;
}

.modal_item_contents {
	margin-top: 0.5rem;
}

.modal_requir {
	position: relative;
	top: 0.1em;
	color: #d94848;
	font-size: 60%;
	vertical-align: top;
}

.menu_btns {
	margin: 0 -1rem 0;
	display: flex;
	flex-wrap: wrap;
}

.menu_btns:nth-child(1) {
	margin-top: -2rem;
}

.menu_btns__item {
	width: calc(100% / 4 - 2rem - 0.1px);
	margin: 2rem 1rem 0;
}

.menu_btns a,
.menu_btns a[href] {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 2.8rem 1rem 2.8rem;
	border-radius: 0.5rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	background: #fff;
	color: #333;
	font-size: calc(1rem + 4px);
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.menu_btns a[href] {
	color: #333;
}

.menu_btns a:hover,
.menu_btns a[href]:hover {
	color: #333;
}

.menu_btns__ico,
.menu_btns__ico--avatar,
.menu_btns__ico--mail,
.menu_btns__ico--roster {
	display: inline-block;
	width: 49%;
	background: #ddebf8 url("../img/ico/document_blu.svg") no-repeat center/41% auto;
	border-radius: 100%;
	transition: all 0.3s;
}

.menu_btns__ico::after,
.menu_btns__ico--avatar::after,
.menu_btns__ico--mail::after,
.menu_btns__ico--roster::after {
	content: "";
	display: block;
	padding-top: 100%;
}

a:hover .menu_btns__ico,
a:hover .menu_btns__ico--avatar,
a:hover .menu_btns__ico--mail,
a:hover .menu_btns__ico--roster {
	opacity: 0.6;
}

.menu_btns__ico--avatar {
	background-image: url("../img/ico/avatar_blu.svg");
	background-size: 38% auto;
}

.menu_btns__ico--mail {
	background-image: url("../img/ico/mail_blu.svg");
	background-size: 54% auto;
}

.menu_btns__ico--roster {
	background-image: url("../img/ico/roster_blu.svg");
	background-size: 48% auto;
}

.menu_btns__heading {
	margin-top: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.menu_btns__heading:nth-child(1) {
	margin-top: 0;
}

.menu_btns__heading::after {
	content: "";
	display: inline-block;
	width: 0.4em;
	height: 0.65em;
	margin-left: 0.5em;
	background: url("../img/ico/arrow_2_blu.svg") no-repeat center/contain;
}

a:hover .menu_btns__heading {
	opacity: 0.6;
}

.preview_area {
	height: calc(100vh - 250px);
	overflow: scroll;
	background: #f5efde;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}

.preview_area::-webkit-scrollbar {
	display: none;
}

.preview_area .page_title {
	background: #fff;
}

.preview_area .page_title__inner {
	width: 100%;
	max-width: calc(1140px + 4rem * 2);
	margin: 0 auto;
	padding: 2rem 1rem;
}

.preview_area .page_title h1 {
	font-size: 1.5rem;
	font-weight: 400;
}

.preview_area .container,
.preview_area .container--full {
	padding-right: 1rem;
	padding-left: 1rem;
}

.preview_area .accordion_2 {
	margin-top: 1rem;
}

.preview_area .accordion_2:nth-child(1) {
	margin-top: 0;
}

.preview_area .accordion_2__btn_area {
	text-align: center;
}

.preview_area .accordion_2__btn {
	position: relative;
	display: inline-block;
	padding: 0.25em 2em 0.25em 1em;
	border-radius: 3px;
	background: #db940f;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

.preview_area .accordion_2__btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.7em;
	transform: translateY(-50%);
	border-top: 0.5em solid #fff;
	border-right: 0.4em solid transparent;
	border-left: 0.4em solid transparent;
	transition: all 0.3s;
}

.preview_area .accordion_2__contents {
	position: relative;
	margin-top: 1rem;
}

.preview_area .box,
.preview_area .box--s,
.preview_area .box--ss {
	padding: 1.5rem;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
}

.preview_area .heading_2,
.preview_area .heading_2--no_border,
.preview_area .heading_2--accordion {
	margin: 60px 0 1em;
	padding-bottom: 0;
	border-bottom: none;
	color: #8c6a2f;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
}

.preview_area .heading_2:nth-child(1),
.preview_area .heading_2--no_border:nth-child(1),
.preview_area .heading_2--accordion:nth-child(1) {
	margin-top: 0;
}

.preview_area .heading_2:nth-last-child(1),
.preview_area .heading_2--no_border:nth-last-child(1),
.preview_area .heading_2--accordion:nth-last-child(1) {
	margin-bottom: 0;
}

.preview_area .heading_2::before,
.preview_area .heading_2--no_border::before,
.preview_area .heading_2--accordion::before {
	content: "❲";
	padding-right: 0.75em;
}

.preview_area .heading_2::after,
.preview_area .heading_2--no_border::after,
.preview_area .heading_2--accordion::after {
	content: "❳";
	padding-left: 0.75em;
}

.preview_area .table,
.preview_area .table--th_175 {
	margin-top: 1rem;
	border-collapse: collapse;
	line-height: 1.5;
}

.preview_area .table:nth-child(1),
.preview_area .table--th_175:nth-child(1) {
	margin-top: 0;
}

.preview_area .table > thead > tr > th,
.preview_area .table--th_175 > thead > tr > th,
.preview_area .table > thead > tr > td,
.preview_area .table--th_175 > thead > tr > td,
.preview_area .table > tbody > tr > th,
.preview_area .table--th_175 > tbody > tr > th,
.preview_area .table > tbody > tr > td,
.preview_area .table--th_175 > tbody > tr > td,
.preview_area .table > tfoot > tr > th,
.preview_area .table--th_175 > tfoot > tr > th,
.preview_area .table > tfoot > tr > td,
.preview_area .table--th_175 > tfoot > tr > td {
	padding-top: 1em;
	text-align: left;
	vertical-align: top;
}

.preview_area .table > tbody > tr > th,
.preview_area .table--th_175 > tbody > tr > th {
	font-weight: 700;
}

.preview_area .table > tbody > tr:nth-child(1) > th,
.preview_area .table--th_175 > tbody > tr:nth-child(1) > th,
.preview_area .table > tbody > tr:nth-child(1) > td,
.preview_area .table--th_175 > tbody > tr:nth-child(1) > td {
	padding-top: 0;
}

.preview_area .table > tbody > tr > th + td,
.preview_area .table--th_175 > tbody > tr > th + td,
.preview_area .table > tbody > tr > td + td,
.preview_area .table--th_175 > tbody > tr > td + td {
	padding-left: 0.75em;
}

.preview_area .badge,
.preview_area .badge--s {
	position: relative;
	display: inline-block;
	min-width: 1.8em;
	min-height: 1.8em;
	padding: 0 0.75em;
	border-radius: 0;
	background: #8c6a2f;
	color: #fff;
	font-size: calc(1em - 2px);
	text-align: center;
	line-height: 1.8;
	vertical-align: top;
}

.preview_area .course_detail_column {
	margin: 0 -16px;
	display: flex;
	flex-wrap: wrap;
}

.preview_area .course_detail_column:nth-child(1) {
	margin-top: -32px;
}

.preview_area .course_detail_column__item {
	width: calc(100% / 2 - 32px - 0.1px);
	margin: 32px 16px 0;
}

.preview_area .course_detail_column .table_underline,
.preview_area .course_detail_column .table_underline--last_no_line {
	width: 100%;
	border-bottom: none;
}

.preview_area .course_detail_column__item:nth-last-child(1) .table_underline,
.preview_area .course_detail_column__item:nth-last-child(1) .table_underline--last_no_line {
	border-bottom: 1px solid #858586;
}

.preview_area .course_detail_column .table_underline > tbody > tr > th,
.preview_area .course_detail_column .table_underline--last_no_line > tbody > tr > th {
	width: 110px;
}

.preview_area .table_underline,
.preview_area .table_underline--last_no_line {
	margin-top: 1rem;
	border-bottom: 1px solid #858586;
	border-collapse: collapse;
	line-height: 1.5;
}

.preview_area .table_underline:nth-child(1),
.preview_area .table_underline--last_no_line:nth-child(1) {
	margin-top: 0;
}

.preview_area .table_underline > thead > tr > th,
.preview_area .table_underline--last_no_line > thead > tr > th,
.preview_area .table_underline > thead > tr > td,
.preview_area .table_underline--last_no_line > thead > tr > td,
.preview_area .table_underline > tbody > tr > th,
.preview_area .table_underline--last_no_line > tbody > tr > th,
.preview_area .table_underline > tbody > tr > td,
.preview_area .table_underline--last_no_line > tbody > tr > td,
.preview_area .table_underline > tfoot > tr > th,
.preview_area .table_underline--last_no_line > tfoot > tr > th,
.preview_area .table_underline > tfoot > tr > td,
.preview_area .table_underline--last_no_line > tfoot > tr > td {
	padding-top: 1em;
	padding-bottom: 1em;
	border-top: 1px solid #858586;
	text-align: left;
	vertical-align: top;
}

.preview_area .table_underline > tbody > tr > th,
.preview_area .table_underline--last_no_line > tbody > tr > th {
	color: #db940f;
	font-weight: 400;
}

.preview_area .table_underline > tbody > tr > th + td,
.preview_area .table_underline--last_no_line > tbody > tr > th + td,
.preview_area .table_underline > tbody > tr > td + td,
.preview_area .table_underline--last_no_line > tbody > tr > td + td {
	padding-left: 0.75em;
}

.selects {
	margin-top: 1rem;
}

.selects:nth-child(1) {
	margin-top: 0;
}

.selects__item {
	margin-top: 0.5rem;
}

.selects__item:nth-child(1) {
	margin-top: 0;
}

.message_box,
.message_box--myself {
	padding: 1.25rem 1rem 0 1rem;
	display: flex;
}

.message_box:nth-child(1),
.message_box--myself:nth-child(1) {
	border-top: none;
}

.message_box__avatar {
	position: relative;
	width: 32px;
	min-width: 32px;
	height: 32px;
	overflow: hidden;
	border: 1px solid #ccc;
	border-radius: 100%;
	background: #fff;
}

.message_box__avatar img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.message_box__main {
	position: relative;
	max-width: 900px;
	margin-left: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.message_box__name {
	align-self: flex-start;
	font-weight: 700;
}

.message_box__stamp {
	margin-top: 0.25rem;
	color: #666;
	font-size: calc(1rem - 4px);
	align-self: flex-end;
}

.message_box__stamp:nth-child(1) {
	margin-top: 0;
}

.message_box__txt {
	margin-top: 0.5rem;
}

.message_box pre,
.message_box--myself pre {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.message_box__tool {
	visibility: hidden;
	opacity: 0;
	list-style: none;
	position: absolute;
	top: -1rem;
	left: -0.5rem;
	z-index: 3;
	padding: 0 0.5em;
	border-radius: 3px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	background: #ddebf8;
	font-size: calc(1rem - 2px);
	display: flex;
	transition: all 0.3s;
	white-space: nowrap;
}

.message_box:hover .message_box__tool,
.message_box--myself:hover .message_box__tool {
	opacity: 1;
	visibility: visible;
}

.message_box__tool li {
	margin: 0.25em 0.5em;
}

.message_box__edit,
.message_box__edit[href],
.message_box__delete,
.message_box__delete[href] {
	display: inline-block;
	position: relative;
	cursor: pointer;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.message_box__edit:hover,
.message_box__edit[href]:hover,
.message_box__delete:hover,
.message_box__delete[href]:hover {
	opacity: 0.6;
	color: #333;
}

.message_box__edit::before,
.message_box__delete::before {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.1em;
	margin-right: 0.25em;
	background: no-repeat center/contain;
	vertical-align: middle;
}

.message_box__edit::before {
	width: 1em;
	height: 1em;
	background-image: url("../img/ico/pen.svg");
}

.message_box__delete::before {
	width: 0.8125em;
	height: 1em;
	background-image: url("../img/ico/trash.svg");
}

.message_box__balloon {
	display: inline-block;
	position: relative;
	padding: 1.5rem 2rem;
	margin-top: 0.5rem;
	border-radius: 5px;
	background: #fff;
}

.message_box__balloon:nth-child(1) {
	margin-top: 0;
}

.message_box__balloon::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 7px;
	transform: translateX(-100%) rotate(40deg);
	border-right: 25px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

.message_box--myself {
	flex-direction: row-reverse;
}

.message_box--myself .message_box__avatar {
	display: none;
}

.message_box--myself .message_box__main {
	min-width: 150px;
	margin-left: 0;
}

.message_box--myself .message_box__name {
	align-self: flex-end;
}

.message_box--myself .message_box__balloon {
	background: #cadff4;
	align-self: flex-end;
}

.message_box--myself .message_box__balloon::before {
	top: 16px;
	left: auto;
	right: 0;
	transform: translateX(100%);
	border-right: none;
	border-left: 8px solid #cadff4;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

.heading_box {
	margin-top: 2rem;
	padding: 1rem;
	background: #ddebf8;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.heading_box:nth-child(1) {
	margin-top: 0;
}

.heading_box__main {
	margin-right: auto;
	padding: 1rem;
	font-size: calc(1rem + 2px);
	font-weight: 700;
}

.heading_box__sub {
	margin-left: auto;
	padding: 1rem;
	align-self: flex-end;
}

.heading_box__info_wrap {
	text-align: right;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
}

.heading_box__info_2 {
	margin-left: 3rem;
}

.scroll_area > .heading_box:nth-child(1) {
	margin-top: 2rem;
}

.price_block {
	margin-top: 1rem;
}

.price_block:nth-child(1) {
	margin-top: 0;
}

.price_block__item {
	margin-top: 0.75em;
	padding-top: 0.75em;
	border-top: 1px dotted #ccc;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.price_block__item:nth-child(1) {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.price_block__price {
	margin-left: 1em;
	text-align: right;
	white-space: nowrap;
}

.price_block__total {
	margin-top: 0.75em;
	padding-top: 0.75em;
	border-top: 1px solid #ccc;
	text-align: right;
}

.block_file_up {
	display: flex;
	justify-content: space-between;
}

.block_file_up:nth-child(1) {
	margin-top: 0;
}

.block_file_up__select_area {
	width: calc(100% - 300px - 1rem);
	padding: 0.75rem 1rem;
	border: 1px solid #ccc;
}

.block_file_up__btn_area {
	width: 300px;
	align-self: flex-end;
}

.block_file_up__btn_area .btn,
.block_file_up__btn_area .btn--s,
.block_file_up__btn_area .btn--l,
.block_file_up__btn_area .btn--block {
	width: 100%;
}

.display_none {
	display: none !important;
}

.w_100\% {
	width: 100% !important;
}

.w_50\% {
	width: 50% !important;
}

.w_75 {
	width: 75px !important;
}

.w_80 {
	width: 80px !important;
}

.w_100 {
	width: 100px !important;
}

.w_150 {
	width: 150px !important;
}

.w_300 {
	width: 300px !important;
}

.w_450 {
	width: 450px !important;
}

.w_560 {
	width: 560px !important;
}

.w_3rem {
	width: 3rem !important;
}

.w_4rem {
	width: 4rem !important;
}

.w_5rem {
	width: 5rem !important;
}

.w_6rem {
	width: 6rem !important;
}

.w_7rem {
	width: 7rem !important;
}

.w_8rem {
	width: 8rem !important;
}

.w_9rem {
	width: 9rem !important;
}

.w_10rem {
	width: 10rem !important;
}

.w_11rem {
	width: 11rem !important;
}

.w_12rem {
	width: 12rem !important;
}

.w_13rem {
	width: 13rem !important;
}

.w_14rem {
	width: 14rem !important;
}

.w_15rem {
	width: 15rem !important;
}

.w_20rem {
	width: 20rem !important;
}

.w_auto {
	width: auto !important;
}

.mw_100\% {
	max-width: 100% !important;
}

.mw_300 {
	max-width: 300px !important;
}

.mw_400 {
	max-width: 400px !important;
}

.mw_450 {
	max-width: 450px !important;
}

.mw_600 {
	max-width: 600px !important;
}

.min_w_100 {
	min-width: 100px !important;
}

.min_w_105 {
	min-width: 105px !important;
}

.min_w_110 {
	min-width: 110px !important;
}

.min_w_115 {
	min-width: 115px !important;
}

.min_w_150 {
	min-width: 150px !important;
}

.h_100\% {
	height: 100% !important;
}

.h_10rem {
	height: 10rem !important;
}

.h_15rem {
	height: 15rem !important;
}

.h_20rem {
	height: 20rem !important;
}

.m_0 {
	margin: 0 !important;
}

.mt_0 {
	margin-top: 0 !important;
}

.mt_5 {
	margin-top: 5px !important;
}

.mt_60 {
	margin-top: 60px !important;
}

.mt_-0\.25rem {
	margin-top: -0.25rem !important;
}

.mt_-1rem {
	margin-top: -1rem !important;
}

.mt_-0\.5rem {
	margin-top: -0.5rem !important;
}

.mt_0\.5rem {
	margin-top: 0.5rem !important;
}

.mt_1rem {
	margin-top: 1rem !important;
}

.mt_1\.5rem {
	margin-top: 1.5rem !important;
}

.mt_2rem {
	margin-top: 2rem !important;
}

.mt_17rem {
	margin-top: 17rem !important;
}

.mr_0 {
	margin-right: 0 !important;
}

.mr_0\.5rem {
	margin-right: 0.5rem !important;
}

.mr_1rem {
	margin-right: 1rem !important;
}

.mb_0 {
	margin-bottom: 0 !important;
}

.mb_0\.5rem {
	margin-bottom: 0.5rem !important;
}

.mb_1rem {
	margin-bottom: 1rem !important;
}

.mb_1\.5rem {
	margin-bottom: 1.5rem !important;
}

.mb_2rem {
	margin-bottom: 2rem !important;
}

.ml_0 {
	margin-left: 0 !important;
}

.ml_10 {
	margin-left: 10px !important;
}

.ml_20 {
	margin-left: 20px !important;
}

.ml_1rem {
	margin-left: 1rem !important;
}

.m_auto {
	margin-right: auto !important;
	margin-left: auto !important;
}

.mr_auto {
	margin-right: auto !important;
}

.ml_auto {
	margin-left: auto !important;
}

.p_0 {
	padding: 0 !important;
}

.p_1rem {
	padding: 1rem !important;
}

.p_0\.5rem {
	padding: 0.5rem !important;
}

.pt_0 {
	padding-top: 0 !important;
}

.pr_0 {
	padding-right: 0 !important;
}

.pl_0 {
	padding-left: 0 !important;
}

.border_none {
	border: none !important;
}

.c_wht {
	color: #fff !important;
}

.c_red {
	color: #d94848 !important;
}

.c_blu {
	color: #0066cc !important;
}

.c_grn {
	color: #30c97c !important;
}

.c_org {
	color: #ed822f !important;
}

.c_gry {
	color: #999 !important;
}

.c_font {
	color: #333 !important;
}

.fs_10 {
	font-size: 10px !important;
}

.fs_11 {
	font-size: 11px !important;
}

.fs_12 {
	font-size: 12px !important;
}

.fs_13 {
	font-size: 13px !important;
}

.fs_14 {
	font-size: 14px !important;
}

.fs_15 {
	font-size: 15px !important;
}

.fs_16 {
	font-size: 16px !important;
}

.fs_18 {
	font-size: 18px !important;
}

.fs_20 {
	font-size: 20px !important;
}

.fs_22 {
	font-size: 22px !important;
}

.fs_24 {
	font-size: 24px !important;
}

.fs_1rem {
	font-size: 1rem !important;
}

.fs_150\% {
	font-size: 150% !important;
}

.fw_normal {
	font-weight: 400 !important;
}

.fw_bold {
	font-weight: 700 !important;
}

.ta_left {
	text-align: left !important;
}

.ta_center {
	text-align: center !important;
}

.ta_right {
	text-align: right !important;
}

.va_top {
	vertical-align: top !important;
}

.ws_nowrap {
	white-space: nowrap !important;
}

.ws_normal {
	white-space: normal !important;
}

.as_flex_start {
	align-self: flex-start !important;
}

.as_center {
	align-self: center !important;
}

.as_flex_end {
	align-self: flex-end !important;
}

.as_stretch {
	align-self: stretch !important;
}

@media only screen and (min-width: 768px) {
	main > .bg:nth-last-child(1) {
		padding-bottom: 80px;
	}

	.modaal-content-container {
		padding: 30px;
	}

	.preview_area .course_detail_column .table_underline,
.preview_area .course_detail_column .table_underline--last_no_line {
		border-bottom: 1px solid #858586;
	}

	.preview_area .course_detail_column .table_underline > tbody > tr > th,
.preview_area .course_detail_column .table_underline--last_no_line > tbody > tr > th {
		width: auto;
		white-space: nowrap;
	}
}
@media only screen and (min-width: 1025px) {
	.pc_none {
		display: none !important;
	}
}
@media only screen and (min-width: 1400px) {
	.modaal-video-container {
		padding-bottom: 0;
		height: 731px;
	}
}
@media only screen and (max-width: 1140px) {
	.modaal-image .modaal-inner-wrapper {
		padding-left: 25px;
		padding-right: 25px;
	}

	.modaal-gallery-control {
		top: auto;
		bottom: 20px;
		transform: none;
		background: rgba(0, 0, 0, 0.7);
	}

	.modaal-gallery-control:before,
.modaal-gallery-control:after {
		background: #fff;
	}

	.modaal-gallery-next {
		left: auto;
		right: 20px;
	}

	.modaal-gallery-prev {
		left: 20px;
		right: auto;
	}
}
@media only screen and (max-width: 1024px) {
	.header .drawer_nav_btn {
		display: block;
	}

	.header_nav {
		display: none;
	}

	.header_right {
		margin-left: 0;
	}

	.header_account {
		width: 32px;
		height: 32px;
		padding: 0;
		text-indent: -999999px;
	}

	.header_account::before {
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #ccc;
		background-image: url("../img/ico/avatar.svg");
	}

	.header_account::after {
		display: none;
	}

	.main_contents {
		margin-left: 0;
	}

	.side--l ~ .main_contents {
		margin-left: 0;
		padding-bottom: 260px;
	}

	.side,
.side--l {
		display: none;
		position: static;
		padding-top: 0;
		width: 100%;
		max-height: none;
	}

	.side--l {
		display: block;
	}

	.side--l::after {
		height: 2rem;
	}

	.side--l .side__btn_area {
		width: 100%;
	}

	.side_open_btn.is_open ~ .side,
.side_open_btn.is_open ~ .side--l {
		display: block;
	}

	.side_open_btn {
		display: block;
		position: relative;
		z-index: 5;
		padding: 0.75rem 3rem 0.75rem 1rem;
		border-bottom: 1px solid #ccc;
		background: #fff;
	}

	.side_open_btn::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		z-index: 1;
		width: 1rem;
		height: 1rem;
		border-radius: 2px;
		background: #0066cc;
		transition: all 0.3s;
	}

	.side_open_btn::after {
		content: "";
		display: block;
		position: absolute;
		top: 45%;
		right: 1.225rem;
		z-index: 2;
		border-top: 0.375rem solid #fff;
		border-right: 0.281rem solid transparent;
		border-left: 0.281rem solid transparent;
		transition: all 0.3s;
	}

	.side_open_btn.is_open::after {
		transform: rotate(180deg);
	}

	.layout_2column {
		display: block;
	}

	.layout_2column__main {
		width: auto;
	}

	.layout_2column__side {
		position: static;
		width: auto;
		margin-top: 2rem;
	}

	.container,
.container--full {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.container,
.container--full {
		max-width: none;
	}

	.box,
.box--s,
.box--ss {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.box__heading {
		left: -0.5rem;
		width: auto;
	}

	.box--ss {
		padding: 0.5rem;
	}

	.box_2,
.box_2--blu_50 {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.sp_table--responsive {
		display: block;
	}

	.sp_table--responsive > thead,
.sp_table--responsive > thead > tr,
.sp_table--responsive > thead > tr > th,
.sp_table--responsive > thead > tr > td,
.sp_table--responsive > tbody,
.sp_table--responsive > tbody > tr,
.sp_table--responsive > tbody > tr > th,
.sp_table--responsive > tbody > tr > td,
.sp_table--responsive > tfoot,
.sp_table--responsive > tfoot > tr,
.sp_table--responsive > tfoot > tr > th,
.sp_table--responsive > tfoot > tr > td {
		display: block;
	}

	.sp_table--responsive > tbody > tr > th {
		width: auto;
		padding-bottom: 0;
	}

	.sp_table_stripe--responsive {
		display: block;
	}

	.sp_table_stripe--responsive > thead,
.sp_table_stripe--responsive > thead > tr,
.sp_table_stripe--responsive > thead > tr > th,
.sp_table_stripe--responsive > thead > tr > td,
.sp_table_stripe--responsive > tbody,
.sp_table_stripe--responsive > tbody > tr,
.sp_table_stripe--responsive > tbody > tr > th,
.sp_table_stripe--responsive > tbody > tr > td,
.sp_table_stripe--responsive > tfoot,
.sp_table_stripe--responsive > tfoot > tr,
.sp_table_stripe--responsive > tfoot > tr > th,
.sp_table_stripe--responsive > tfoot > tr > td {
		display: block;
	}

	.sp_table_stripe--responsive > tbody > tr > th {
		padding-bottom: 0;
	}

	.sp_table_stripe--responsive > tbody > tr > td {
		padding-top: 0.75em;
	}

	.sp_table_stripe--responsive > tbody > tr > td + td {
		padding-top: 0;
	}

	.table_form {
		display: block;
		padding-top: 0.45rem;
		padding-bottom: 0.45rem;
	}

	.table_form > thead,
.table_form > thead > tr,
.table_form > thead > tr > th,
.table_form > thead > tr > td,
.table_form > tbody,
.table_form > tbody > tr,
.table_form > tbody > tr > th,
.table_form > tbody > tr > td,
.table_form > tfoot,
.table_form > tfoot > tr,
.table_form > tfoot > tr > th,
.table_form > tfoot > tr > td {
		display: block;
	}

	.table_form > thead > tr {
		display: none;
	}

	.table_form > tbody > tr > th {
		padding-bottom: 0;
	}

	.table_form > tbody > tr > td {
		padding-top: 0.5em;
	}

	.table_form > tbody > tr > th {
		width: auto;
	}

	.ul_archive a,
.ul_archive a[href] {
		display: block;
	}

	.ul_archive__status,
.ul_archive__status--student,
.ul_archive__status--teacher,
.ul_archive__status-1,
.ul_archive__status-2,
.ul_archive__status-3,
.ul_archive__status-4 {
		margin-top: 0.5rem;
		margin-left: 0;
	}

	.ul_archive__title {
		width: 100%;
		margin-top: 0.5rem;
		margin-left: 0;
	}

	.ul_archive__status ~ .ul_archive__title,
.ul_archive__status--student ~ .ul_archive__title,
.ul_archive__status--teacher ~ .ul_archive__title,
.ul_archive__status-1 ~ .ul_archive__title,
.ul_archive__status-2 ~ .ul_archive__title,
.ul_archive__status-3 ~ .ul_archive__title,
.ul_archive__status-4 ~ .ul_archive__title {
		width: 100%;
	}

	.ul_archive_2__title {
		width: 100%;
		margin-top: 0.5rem;
		margin-left: 0;
	}

	.ul_archive_2__date {
		width: 100%;
	}

	.ul_archive_2__status ~ .ul_archive_2__title {
		width: 100%;
	}

	.sp_column--1 .column__item {
		width: calc(100% / 1 - 2rem - 0.1px);
	}

	.accordion__balloon {
		padding: 1.25rem 1rem;
	}

	.search_box,
.search_box--3 {
		margin-top: -1rem;
	}

	.search_box__item,
.search_box__item--btn_area,
.search_box__item--l,
.search_box__item--heading_l {
		width: calc(100% / 1 - 2rem - 0.1px);
		margin: 1rem 1rem 0;
	}

	.search_box__item--btn_area {
		margin-top: 1rem;
	}

	.search_box__item--heading_l {
		padding-top: 1rem;
	}

	.search_box--3 .search_box__item,
.search_box--3 .search_box__item--btn_area,
.search_box--3 .search_box__item--l,
.search_box--3 .search_box__item--heading_l {
		width: calc(100% / 1 - 2rem - 0.1px);
	}

	.search_box2__detail {
		width: 100%;
	}

	.search_box2 .btn,
.search_box2 .btn--s,
.search_box2 .btn--l,
.search_box2 .btn--block {
		margin-top: 1rem;
		margin-left: auto;
	}

	.teacher_info_contents {
		display: block;
	}

	.teacher_info_contents__item:nth-child(2) {
		margin-top: 0.5rem;
	}

	.multiple_contents {
		flex-direction: column-reverse;
	}

	.multiple_contents__item {
		width: auto;
	}

	.multiple_contents__item:nth-child(1) {
		margin-top: 3.5rem;
	}

	.multiple_contents__item:nth-child(2)::before {
		top: auto;
		right: 50%;
		bottom: -2.5rem;
		left: auto;
		transform: translateX(50%) rotate(270deg);
	}

	.multiple_contents select[multiple=multiple] {
		height: 13rem;
	}

	.menu_btns {
		margin: 1rem -0.5rem 0;
	}

	.menu_btns:nth-child(1) {
		margin-top: -1rem;
	}

	.menu_btns__item {
		width: calc(100% / 2 - 1rem - 0.1px);
		margin: 1rem 0.5rem 0;
	}

	.menu_btns a,
.menu_btns a[href] {
		padding: 1rem;
	}

	.menu_btns__heading {
		margin-top: 0.25em;
	}

	.preview_area .box,
.preview_area .box--s,
.preview_area .box--ss {
		padding: 1rem;
	}

	.heading_box {
		padding: 0.5rem;
	}

	.heading_box__main {
		padding: 0.5rem;
	}

	.heading_box__sub {
		padding: 0.5rem;
	}

	.block_file_up {
		display: block;
	}

	.block_file_up__select_area {
		width: 100%;
	}

	.block_file_up__btn_area {
		margin: 1rem auto 0;
	}

	.sp_none {
		display: none !important;
	}
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
	.menu_btns a,
.menu_btns a[href] {
		font-size: calc(1rem + 2px);
	}
}
@media screen and (max-width: 900px) {
	.modaal-instagram iframe {
		width: 500px !important;
	}
}
@media only screen and (max-width: 600px) {
	.modaal-instagram iframe {
		width: 280px !important;
	}
}
@media screen and (max-height: 1100px) {
	.modaal-instagram iframe {
		width: 700px !important;
	}
}
@media screen and (max-height: 1000px) {
	.modaal-inner-wrapper {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.modaal-instagram iframe {
		width: 600px !important;
	}
}
@media screen and (max-height: 900px) {
	.modaal-instagram iframe {
		width: 500px !important;
	}

	.modaal-video-container {
		max-width: 900px;
		max-height: 510px;
	}
}
@media only screen and (max-height: 820px) {
	.modaal-gallery-label {
		display: none;
	}
}
@keyframes instaReveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-o-keyframes instaReveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes instaReveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes instaReveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-ms-keyframes instaReveal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-ms-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	100% {
		opacity: 0.1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@-moz-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	100% {
		opacity: 0.1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	100% {
		opacity: 0.1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@-o-keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	100% {
		opacity: 0.1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes modaal-loading-spinner {
	0% {
		opacity: 1;
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	100% {
		opacity: 0.1;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}