@charset "utf-8";



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	letter-spacing: 0.05em;
	color: #4c4948;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
	text-decoration: none;
	color: #4c4948;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4 {
	font-size: 1rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.75rem;
	line-height: 1.375rem;
}
span.required {
	color: #d70c18;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	box-sizing: border-box;
	max-width: 100%;
	vertical-align: top;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 2.5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select,
textarea {
	line-height: calc(40px - 2px);
	border: 1px solid #c8c9ca;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	height: 40px;
	padding: 0px 10px;
}
input[type=button],
input[type=submit],
button {
	text-align: center;
	line-height: 40px;
	color: #ffffff;
	cursor: pointer;
	padding: 0px 20px;
	background-color: #008cce;
	transition: 0.25s opacity ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	opacity: 0.75;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: 1px solid #c8c9ca;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 10px;
	height: 10px;
	background-color: #008cce;
}
input[type=radio]::after {
	transform: translate(4px, 4px);
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 2.5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 5px;
	height: 10px;
	border-right: 3px solid #008cce;
	border-bottom: 3px solid #008cce;
}
input[type=checkbox]::after {
	transform: translate(5px, 1px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@supports (-ms-ime-align:auto) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@media all and (-ms-high-contrast:none) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	vertical-align: middle;
}
label.alternate {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translate(0px, -1px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(4px, 4px) rotate(45deg);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(5px, 1px) rotate(45deg);
}
textarea {
	padding: 10px;
}
select {
	height: 40px;
	padding: 0px 40px 0px 10px;
	background: transparent url(../images/arrow-select.svg) no-repeat right 10px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #c8c9ca;
}
:-ms-input-placeholder {
	color: #c8c9ca;
}
::placeholder {
	color: #c8c9ca;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
  font-family: "icon";
  src: url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
i.icon {
  font-family: "icon";
  line-height: 1em;
}
i.icon-instagram:before {
  content: "\e900";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

img {
	display: block;
	max-width: 100%;
	height: auto;
}
img.small {
	display: none;
}
br.small {
	display: none;
}
br.large {
	display: inline;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #c8c9ca;
	margin: 20px 0px;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #c8c9ca;
	border-radius: 2.5px;
}
div.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
}
div.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
*.alignleft {
	display: inline;
	float: left;
	margin-right: 20px;
}
*.alignright {
	display: inline;
	float: right;
	margin-left: 20px;
}
*.aligncenter {
	clear: both;
	display: block;
	margin: auto;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
div#page header.header {
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0px;
	top: 0px;
	z-index: 20;
	background-color: #ffffff;
}
div#page header.header a {
	color: #888888;
}
div#page header.header h1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 240px;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #d70c18;
}
div#page header.header h1 img {
	width: auto;
	height: 35px;
}
div#page header.header nav.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: calc(100% - 240px);
	height: 100%;
	right: 0px;
	top: 0px;
}
div#page header.header nav.navi div.inner-navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#page header.header nav.navi ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-right: 20px;
}
div#page header.header nav.navi ul li {
	position: relative;
	width: 120px;
	text-align: center;
}
div#page header.header nav.navi ul li.contact,
div#page header.header nav.navi ul li.request,
div#page header.header nav.navi ul li.trial {
	display: none;
}
div#page header.header nav.navi ul li.home::after,
div#page header.header nav.navi ul li.news::after,
div#page header.header nav.navi ul li.policy::after,
div#page header.header nav.navi ul li.course::after,
div#page header.header nav.navi ul li.academy::after,
div#page header.header nav.navi ul li.voice::after {
	position: absolute;
	width: 0px;
	height: 16px;
	right: 0px;
	top: calc(50% - 8px);
	border-right: 2px solid #888888;
	content: "";
	transform: rotate(15deg);
}
div#page header.header nav.navi ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #d70c18;
}
div#page header.header nav.navi ul li span {
	display: block;
	transition: 0.375s opacity ease;
}
div#page header.header nav.navi ul li span.main {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
}
div#page header.header nav.navi ul li a:hover span.main {
	opacity: 0;
}
div#page header.header nav.navi ul li span.sub {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -1px;
	font-size: 1rem;
	font-weight: 700;
	opacity: 0;
}
div#page header.header nav.navi ul li a:hover span.sub {
	opacity: 1;
}
div#page header.header nav.navi p.instagram {
	font-size: 1.5rem;
	line-height: 1.5rem;
}
div#page header.header nav.navi p.instagram a {
	display: block;
	position: relative;
	width: 1.5rem;
	color: #d70c18;
}
div#page header.header nav.navi p.instagram i.icon {
	transition: 0.375s color ease;
}
div#page header.header nav.navi p.instagram a:hover i.icon {
	color: #ffffff;
}
div#page header.header nav.navi p.instagram img {
	position: absolute;
	width: 24px;
	height: 24px;
	left: 0px;
	top: 0px;
	z-index: 1;
	opacity: 0;
	transition: 0.375s opacity ease;
}
div#page header.header nav.navi p.instagram a:hover img {
	opacity: 1;
}
div#page *.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease;
}
div#page *.scroll.fade.active {
	opacity: 1;
}

/* home
-------------------------------------------------------------------------------- */

body.home div#page {
	padding-top: 0px;
}
body.home div#page header#header {
	background-color: transparent;
	transition: 0.375s background-color ease;
}
body.home div#page header#header.scroll {
	background-color: #ffffff;
}
body.home div#page header#header a {
	color: #ffffff;
	transition: 0.375s color ease;
}
body.home div#page header#header.scroll a {
	color: #d70c18;
}
body.home div#page header#header h1 {
	background-color: transparent;
	transition: 0.375s background-color ease;
}
body.home div#page header#header.scroll h1 {
	background-color: #d70c18;
}
body.home div#page header#header nav.navi ul li.home::after,
body.home div#page header#header nav.navi ul li.news::after,
body.home div#page header#header nav.navi ul li.policy::after,
body.home div#page header#header nav.navi ul li.course::after,
body.home div#page header#header nav.navi ul li.academy::after,
body.home div#page header#header nav.navi ul li.voice::after {
	border-right-color: #ffffff;
	transition: 0.375s border-right-color ease;
}
body.home div#page header#header.scroll nav.navi ul li.home::after,
body.home div#page header#header.scroll nav.navi ul li.news::after,
body.home div#page header#header.scroll nav.navi ul li.policy::after,
body.home div#page header#header.scroll nav.navi ul li.course::after,
body.home div#page header#header.scroll nav.navi ul li.academy::after,
body.home div#page header#header.scroll nav.navi ul li.voice::after {
	border-right-color: #888888;
}
body.home div#page header#header p.instagram a {
	transition: 0.375s opacity ease;
}
body.home div#page header#header.scroll p.instagram a {
	color: #d70c18;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	height: 100vh;
}
div#cover div.list {
	position: relative;
	height: 100%;
}
div#cover div.list div.row,
div#cover div.list div.row p.image,
div#cover div.list div.row div.text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
}
div#cover div.list div.row {
	height: 0px;
}
div#cover div.list div.row.active {
	height: 100%;
}
div#cover div.list div.row p.image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div#cover.active div.list div.row p.image {
	opacity: 1;
}
div#cover div.list div.row-01 p.image {
	background-image: url(../images/cover-image-01.jpg);
}
div#cover div.list div.row-02 p.image {
	background-image: url(../images/cover-image-02.jpg);
}
div#cover div.list div.row-03 p.image {
	background-image: url(../images/cover-image-03.jpg);
}
div#cover div.list div.row-04 p.image {
	background-image: url(../images/cover-image-04.jpg);
}
div#cover div.list div.row div.text h2 {
	position: absolute;
	width: 70px;
	height: 456px;
	left: calc(50% - 35px);
	/* top: calc(50% - 250px); */
	top: calc(50% - 228px);
	opacity: 0;
	transition: 1.375s opacity 0.875s ease-in-out, 1.375s transform 0.875s ease;
	transform: scale(1.075);
}
div#cover.active div.list div.row div.text h2 {
	opacity: 1;
	transform: scale(1);
}
div#cover div.list div.row div.text h2 img {
	width: 100%;
	height: auto;
}
div#cover div.list div.row div.text ul {
	/* display: flex; */
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 60px;
	opacity: 0;
	transition: 1.75s opacity 1.75s ease;
}
div#cover.active div.list div.row div.text ul {
	opacity: 1;
}
div#cover div.list div.row div.text ul li {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2.875rem;
	line-height: 2.875rem;
	font-weight: 700;
}
div#cover div.list div.row div.text ul li:not(:last-child) {
	margin-right: 40px;
}
div#cover div.list div.row div.text ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 160px;
	height: 60px;
	color: #ffffff;
	border: 2px solid #ffffff;
	transition: 0.375s color ease;
}
div#cover div.list div.row div.text ul li a:hover {
	color: #4c4948;
}
div#cover div.list div.row div.text ul li a::before {
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	transition: 0.375s width ease;
}
div#cover div.list div.row div.text ul li a:hover::before {
	width: 100%;
}
div#cover div.list div.row div.text ul li span {
	position: relative;
}
div#cover p.scroll {
	position: absolute;
	width: 20px;
	height: 100px;
	right: 30px;
	bottom: 30px;
}
div#cover p.scroll span {
	display: block;
}
div#cover p.scroll span.text {
	width: 100px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.75rem;
	color: #ffffff;
	transform-origin: left top;
	transform: translate(25px, 10px) rotate(90deg);
}
div#cover p.scroll span.line {
	position: absolute;
	width: 0px;
	height: 60px;
	left: 50%;
	bottom: 0px;
}
div#cover p.scroll span.line i {
	position: absolute;
	width: 16px;
	height: 16px;
	left: calc(50% - 8px);
	top: 5px;
	animation: scroll-down 2.25s ease-out infinite;
	will-change: transform;
}
div#cover p.scroll span.line i b {
	display: block;
	width: 100%;
	height: 100%;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
}
@keyframes scroll-down {
	0% { transform: translateY(0px) rotateY(0deg); opacity: 1; }
	75% { transform: translateY(40px) rotateY(360deg); opacity: 1; }
	92.5% { transform: translateY(40px) rotateY(360deg); opacity: 0; }
	100% { transform: translateY(40px) rotateY(360deg); opacity: 0; }
}



/* --------------------------------------------------------------------------------
content
-------------------------------------------------------------------------------- */

div#content {
	position: relative;
	padding-bottom: 160px;
	background-color: #ebecef;
}
div#content a {
	transition: 0.375s color ease;
}
div#content a:hover {
	color: #888888;
}
div#content p.image img {
	width: 100%;
	height: auto;
	transition: 0.375s opacity ease;
}
div#content p.image a:hover img {
	opacity: 0.75;
}
div#content section div.inner-section {
	position: relative;
}
div#content section.frame {
	position: relative;
	width: 980px;
	margin: auto;
	background-color: #ffffff;
	border-radius: 20px;
}
div#content section.frame div.inner-section {
	padding: 120px 160px;
}
div#content h1.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 200px;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2.25rem;
	color: #c8c9ca;
	margin: auto;
}
body.news div#content h1.headline {
	background-color: #9f9623;
}
body.policy div#content h1.headline {
	background-color: #2760a8;
}
body.course div#content h1.headline {
	background-color: #78952e;
}
body.academy div#content h1.headline {
	background-color: #e85382;
}
body.voice div#content h1.headline {
	background-color: #a586bc;
}
body.recruit div#content h1.headline {
	background-color: #ef8200;
}
body.contact div#content h1.headline,
body.request div#content h1.headline,
body.trial div#content h1.headline {
	background-color: #d70c18;
}
div#content div#title {
	position: relative;
	height: 500px;
	margin-bottom: 160px;
}
div#content div#title p.image {
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div.active div#content div#title p.image {
	opacity: 1;
}
body.course.detail-01 div#content div#title p.image {
	background-image: url(../images/course-detail-01-image-01.jpg);
}
body.course.detail-02 div#content div#title p.image {
	background-image: url(../images/course-detail-02-image-01.jpg);
}
body.course.detail-03 div#content div#title p.image {
	background-image: url(../images/course-detail-03-image-01.jpg);
}
body.course.detail-04 div#content div#title p.image {
	background-image: url(../images/course-detail-04-image-01.jpg);
}
body.voice div#content div#title p.image {
	background-image: url(../images/voice-image-01.jpg);
}
body.recruit div#content div#title p.image {
	background-image: url(../images/recruit-image-01.jpg);
}
body.contact div#content div#title p.image {
	background-image: url(../images/contact-image-01.jpg);
}
body.request div#content div#title p.image {
	background-image: url(../images/request-image-01.jpg);
}
div#content div#title h1.headline {
	position: absolute;
	left: calc(50% - 100px);
	bottom: -100px;
}
div#content div#title h1.headline-course-detail span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}
div#content div#title h1.headline-course-detail span.main {
	height: calc(100% - 40px);
	color: #ffffff;
}
div#content div#title h1.headline-course-detail span.main i {
	display: block;
}
div#content div#title h1.headline-course-detail span.main i:nth-child(1) {
	text-indent: 0.3em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.25rem;
	letter-spacing: 0.3em;
	margin-bottom: 10px;
}
div#content div#title h1.headline-course-detail span.main i:nth-child(2) {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.9375rem;
	line-height: 1rem;
}
div#content div#title h1.headline-course-detail span.sub {
	height: 40px;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1rem;
	color: #78952e;
	background-color: #ffffff;
}
div#content div#title p.tmp {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	bottom: -135px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	color: #78952e;
}
div#content div.mw_wp_form_preview div#title {
	height: 160px;
}
div#content div.mw_wp_form_preview div#title p.image {
	display: none;
}
body.trial div#content div.container-title {
	margin-bottom: 160px;
	background-color: #d5d8d6;
}
body.trial div#content div#title {
	height: auto;
	margin-bottom: 60px;
	padding-top: 60px;
}
body.trial div#content div#title h1.headline {
	position: relative;
	left: auto;
	bottom: auto;
	margin: auto;
}
div#content div#title-bottom {
	margin-bottom: 100px;
}
div#content div#title-bottom h2 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 3.25rem;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	transform: translateX(0.375em);
}
body.course div#content div#title-bottom h2 {
	color: #78952e;
}
body.voice div#content div#title-bottom h2 {
	color: #a586bc;
}
body.recruit div#content div#title-bottom h2 {
	color: #ef8200;
}
body.contact div#content div#title-bottom h2,
body.request div#content div#title-bottom h2,
body.trial div#content div#title-bottom h2 {
	color: #d70c18;
}
div#content div#title-bottom p.description {
	width: 640px;
	margin: auto;
}
div#content div#title-bottom p.tel,
div#content div#title-bottom p.time-close {
	text-align: center;
}
div#content div#title-bottom p.tel {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 3.5rem;
	padding-top: 20px;
}
div#content div#title-bottom p.tel span {
	display: inline-block;
	transform: translateY(-3px);
}
div#content div#title-bottom p.tel a::before {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #4c4948 url(../images/icon-tel.svg) no-repeat center;
	background-size: auto 28px;
	margin-right: 5px;
	content: "";
	border-radius: 5px;
}
div#content div#title-bottom p.time-close {
	font-size: 0.8125rem;
}
body.trial div#content div#title-bottom {
	margin-bottom: 0px;
}
body.trial div#content div#title-bottom p.description {
	margin-bottom: 60px;
}
body.trial div#content div#title-bottom p.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	padding-top: 120px;
	background: url(../images/trial-background.svg) no-repeat center top;
	background-size: auto 177px;
}
body.trial div#content div#title-bottom p.image img {
	width: auto;
	height: 600px;
}
div#content div#pager {
	position: relative;
	width: 140px;
	height: 50px;
	margin: auto;
	margin-top: 120px;
}
div#content div#pager *.page-numbers {
	display: none;
}
div#content div#pager a {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0px;
	text-indent: -9999px;
	background-color: #4c4948;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 33px;
	border-radius: 5px;
	transition: 0.375s background-color ease;
}
div#content div#pager a.prev,
div#content div#pager a.next,
div#content div#pager a[rel=next],
div#content div#pager a[rel=prev] {
	display: block;
}
div#content div#pager a.prev,
div#content div#pager a[rel=next] {
	left: 0px;
	background-image: url(../images/arrow-pager-prev.svg);
}
div#content div#pager a.next,
div#content div#pager a[rel=prev] {
	right: 0px;
	background-image: url(../images/arrow-pager-next.svg);
}
div#content div#pager a:hover {
	background-color: #888888;
}
div#content div.image-headline {
	margin-bottom: 60px;
}
div#content div.image-headline p.image img {
	width: 100%;
	height: auto;
}
div#content div.image-headline h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 160px;
	height: 160px;
	z-index: 5;
	text-indent: 0.3em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.3em;
	margin: -80px auto 0px auto;
}
body.academy div#content div.image-headline h3 {
	background-color: #e85382;
}
body.academy div#content div.image-headline h3 i {
	text-align: center;
	display: block;
}
body.academy div#content div.image-headline h3 i.sub {
	text-indent: 0.2em;
	font-size: 1.375rem;
	letter-spacing: 0.2em;
}
body.academy div#content div.image-headline h3 i.main {
	text-indent: 0.5em;
	font-size: 2.5rem;
	line-height: 2.75rem;
	letter-spacing: 0.5em;
}
body.voice div#content div.image-headline h3 {
	background-color: #a586bc;
}
body.voice div#content div.image-headline h3 span,
body.voice div#content div.image-headline h3 span i {
	display: block;
	width: 100%;
}
body.voice div#content div.image-headline h3 span {
	text-align: center;
}
body.voice div#content div.image-headline h3 span i:nth-child(1) {
	text-indent: 0.625em;
	font-size: 2.25rem;
	letter-spacing: 0.625em;
	margin-bottom: 10px;
}
body.recruit div#content div.image-headline h3 {
	background-color: #ef8200;
}
div#content div.image-headline h3.narrow {
	text-indent: 0.1em;
	letter-spacing: 0.1em;
}

/* home
-------------------------------------------------------------------------------- */

body.home div#content {
	padding-top: 160px;
}
div#content section#home-news {
	margin-bottom: 160px;
}
div#content section#home-news div.slide {
	position: relative;
}
div#content section#home-news div.slide div.container {
	overflow: hidden;
	opacity: 0;
	transition: 1s opacity 0.375s ease;
}
div#content section#home-news div.slide.active div.container {
	opacity: 1;
}
div#content section#home-news div.slide div.inner-container {
	display: flex;
	flex-wrap: wrap;
	width: 99999px;
}
div#content section#home-news div.slide article {
	width: 280px;
	text-align: center;
	margin-right: 60px;
}
div#content section#home-news div.slide div.container article p.image {
	margin-bottom: 10px;
}
div#content section#home-news div.slide div.container article p.created,
div#content section#home-news div.slide div.container article h2 {
	line-height: 1.625rem;
}
div#content section#home-news div.slide div.container article h2 {
	font-size: 1.125rem;
	font-weight: 500;
}
div#content section#home-news div.slide div.pager {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
}
div#content section#home-news div.slide div.pager p.button {
	position: absolute;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background-color: transparent;
}
div#content section#home-news div.slide div.pager p.button-prev {
	left: 25px;
}
div#content section#home-news div.slide div.pager p.button-next {
	right: 25px;
}
div#content section#home-news div.slide div.pager p.button::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	content: "";
}
div#content section#home-news div.slide div.pager p.button-prev::before {
	right: -10px;
	transform: rotate(45deg);
}
div#content section#home-news div.slide div.pager p.button-next::before {
	left: -10px;
	transform: rotate(-135deg);
}
div#content section#home-menu {
	width: 980px;
	margin: auto;
}
div#content section#home-menu div.list div.row {
	position: relative;
}
div#content section#home-menu div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
div#content section#home-menu div.list div.row p.image {
	width: 750px;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: 1.25s all 0.375s ease;
}
div#content section#home-menu div.list div.row:nth-child(2n+1) p.image {
	margin: 0px 0px 0px auto;
	transform: translateX(100px);
}
div#content section#home-menu div.list div.row:nth-child(2n) p.image {
	margin: 0px auto 0px 0px;
	transform: translateX(-100px);
}
div#content section#home-menu div.list div.row.active p.image {
	opacity: 1;
	transform: translateX(0px);
}
div#content section#home-menu div.list div.row-policy p.image {
	background-image: url(../images/home-image-01.jpg);
}
div#content section#home-menu div.list div.row-course p.image {
	background-image: url(../images/home-image-02.jpg);
}
div#content section#home-menu div.list div.row-academy p.image {
	background-image: url(../images/home-image-03.jpg);
}
div#content section#home-menu div.list div.row-voice p.image {
	background-image: url(../images/home-image-04.jpg);
}
div#content section#home-menu div.list div.row-recruit p.image {
	background-image: url(../images/home-image-05.jpg);
}
div#content section#home-menu div.list div.row div.text {
	position: absolute;
	width: 350px;
	top: calc(50% - 175px);
	opacity: 0;
	transition: 1.25s opacity 0.75s ease-in-out;
}
div#content section#home-menu div.list div.row:nth-child(2n+1) div.text {
	left: 0px;
}
div#content section#home-menu div.list div.row:nth-child(2n) div.text {
	right: 0px;
}
div#content section#home-menu div.list div.row.active div.text {
	opacity: 1;
}
div#content section#home-menu div.list div.row div.text p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #c8c9ca;
}
div#content section#home-menu div.list div.row-policy div.text p.label {
	background-color: #2760a8;
}
div#content section#home-menu div.list div.row-course div.text p.label {
	background-color: #78952e;
}
div#content section#home-menu div.list div.row-academy div.text p.label {
	background-color: #e85382;
}
div#content section#home-menu div.list div.row-voice div.text p.label {
	background-color: #a586bc
}
div#content section#home-menu div.list div.row-recruit div.text p.label {
	background-color: #ef8200;
}
div#content section#home-menu div.list div.row div.text div.body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 310px;
	background-color: #ffffff;
}
div#content section#home-menu div.list div.row div.text div.body div.inner-body {
	width: 230px;
}
div#content section#home-menu div.list div.row div.text div.body h3 {
	text-align: center;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 20px;
}
div#content section#home-menu div.list div.row div.text div.body p.description {
	margin-bottom: 40px;
}
div#content section#home-menu div.list div.row div.text div.body p.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
}
div#content section#home-menu div.list div.row div.text div.body p.button a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 40px;
	color: #ffffff;
	background-color: #4c4948;
	border-radius: 5px;
	transition: 0.375s background-color ease;
}
div#content section#home-menu div.list div.row div.text div.body p.button a:hover {
	background-color: #888888;
}

/* news
-------------------------------------------------------------------------------- */

body.news div#content {
	padding-top: 160px;
}
div#content section#news div.inner-section {
	padding-top: 0px;
}
div#content section#news header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 100px;
	margin-bottom: 120px;
}
div#content section#news header h1.headline {
	position: absolute;
	left: calc(50% - 100px);
	bottom: 0px;
}
div#content section#news div.list article.news:not(:last-child) {
	margin-bottom: 120px;
}
div#content section#news article.news header {
	display: block;
	height: auto;
	margin-bottom: 40px;
}
div#content section#news article.news header p.created {
	line-height: 1.125rem;
	margin-bottom: 10px;
}
div#content section#news article.news header *.title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 100px;
	font-size: 1.125rem;
	font-weight: 500;
	padding: 0px 160px 0px 20px;
	background-color: #ebecef;
}
div#content section#news article.news header *.title::before {
	position: absolute;
	width: 160px;
	height: 130px;
	right: -5px;
	bottom: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	content: "";
}
div#content section#news article.news.staff-01 header *.title::before {
	background-image: url(../images/staff-image-01.png);
}
div#content section#news article.news.staff-02 header *.title::before {
	background-image: url(../images/staff-image-02.png);
}
div#content section#news article.news.staff-03 header *.title::before {
	background-image: url(../images/staff-image-03.png);
}
div#content section#news article.news.staff-04 header *.title::before {
	background-image: url(../images/staff-image-04.png);
}
div#content section#news article.news.staff-05 header *.title::before {
	background-image: url(../images/staff-image-05.png);
}
div#content section#news article.news.staff-06 header *.title::before {
	background-image: url(../images/staff-image-06.png);
}
div#content section#news article.news.staff-07 header *.title::before {
	background-image: url(../images/staff-image-07.png);
}
div#content section#news article.news.staff-08 header *.title::before {
	background-image: url(../images/staff-image-08.png);
}
div#content section#news article.news.staff-09 header *.title::before {
	background-image: url(../images/staff-image-09.png);
}
div#content section#news article.news div.body h1,
div#content section#news article.news div.body h2,
div#content section#news article.news div.body h3,
div#content section#news article.news div.body h4,
div#content section#news article.news div.body h5,
div#content section#news article.news div.body h6 {
	font-weight: 700;
}

div#content section#news article.news div.body strong {
	font-weight: 700;
}

/* policy
-------------------------------------------------------------------------------- */

body.policy div#content {
	padding-bottom: 0px;
}
div#content section#policy-summary {
	background-color: #ebecef;
}
div#content section#policy-summary div.inner-section {
	padding: 60px 0px 160px 0px;
}
div#content section#policy-summary header {
	margin-bottom: 60px;
}
div#content section#policy-summary div.profile-body {
	position: relative;
	width: 520px;
	margin: auto;
}
div#content section#policy-summary div.profile-body div.profile {
	position: absolute;
	width: 250px;
	left: 580px;
	top: 10px;
	text-align: center;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}
div#content section#policy-summary div.profile-body div.profile p.image {
	margin-bottom: 20px;
}
div#content section#policy-summary div.profile-body div.profile p.name {
	font-size: 1.375rem;
}
div#content section#policy-summary div.profile-body div.body h2 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 3.25rem;
	letter-spacing: 0.15em;
	color: #2760a8;
	margin: 0px -20px 30px -20px;
	transform: translateX(0.375em);
}
div#content section#policy-detail div.content {
	position: relative;
	height: 800vh;
}
div#content section#policy-detail div.container-background,
div#content section#policy-detail div.container-text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content section#policy-detail div.background,
div#content section#policy-detail div.text {
	box-sizing: border-box;
	position: relative;
	height: 25%;
}
div#content section#policy-detail div.background p.image {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
div#content section#policy-detail div#background-01 p.image {
	background-image: url(../images/policy-background-01.jpg);
}
div#content section#policy-detail div#background-02 p.image {
	background-image: url(../images/policy-background-02.jpg);
}
div#content section#policy-detail div#background-03 p.image {
	background-image: url(../images/policy-background-03.jpg);
}
div#content section#policy-detail div#background-04 p.image {
	background-image: url(../images/policy-background-04.jpg);
}
div#content section#policy-detail.background-01 div#background-01 p.image,
div#content section#policy-detail.background-02 div#background-02 p.image,
div#content section#policy-detail.background-03 div#background-03 p.image,
div#content section#policy-detail.background-04 div#background-04 p.image {
	position: fixed;
}
div#content section#policy-detail.background-02 div#background-01 p.image,
div#content section#policy-detail.background-03 div#background-02 p.image,
div#content section#policy-detail.background-04 div#background-03 p.image {
	opacity: 0;
}
div#content section#policy-detail.footer div#background-04 p.image {
	position: absolute;
	top: auto;
	bottom: 0px;
}
div#content section#policy-detail div.background p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.6);
	content: "";
	opacity: 0;
	transition: 1s opacity ease;
}
div#content section#policy-detail.background-01 div#background-01 p.image::before,
div#content section#policy-detail.background-02 div#background-02 p.image::before,
div#content section#policy-detail.background-03 div#background-03 p.image::before,
div#content section#policy-detail.background-04 div#background-04 p.image::before {
	opacity: 1;
}
div#content section#policy-detail div.text {
	color: #ffffff;
	padding-top: 72.5vh;
}
div#content section#policy-detail div.text div.inner-text {
	box-sizing: border-box;
	position: relative;
	width: 640px;
	border: 1px solid #ffffff;
	border-top: none;
	margin: auto;
	padding: 80px;
}
div#content section#policy-detail div.text div.inner-text::before,
div#content section#policy-detail div.text div.inner-text::after {
	position: absolute;
	width: calc(50% - 70px);
	top: 0px;
	border-bottom: 1px solid #ffffff;
	content: "";
}
div#content section#policy-detail div.text div.inner-text::before {
	left: 0px;
}
div#content section#policy-detail div.text div.inner-text::after {
	right: 0px;
}
div#content section#policy-detail div.text p.label {
	position: absolute;
	width: 120px;
	left: calc(50% - 60px);
	top: -20px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2.25rem;
	line-height: 40px;
	text-align: center;
}
div#content section#policy-detail div.text h4 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	line-height: 3.25rem;
	letter-spacing: 0.15em;
	margin-bottom: 40px;
}

/* course
-------------------------------------------------------------------------------- */

body.course div#content {
	padding: 60px 0px 0px 0px;
}
div#content section#course header {
	margin-bottom: 80px;
}
div#content section#course div.menu {
	position: relative;
	max-width: 1366px;
	margin: auto;
	padding-bottom: 760px;
	background: url(../images/course-image-01.jpg) no-repeat center bottom;
	background-size: auto 720px;
}
div#content section#course.detail div.menu {
	padding-top: 60px;
	padding-bottom: 0px;
	background-image: none;
}
div#content section#course div.menu div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 980px;
	margin: auto;
}
div#content section#course div.menu div.list div.row {
	position: relative;
	width: 215px;
	text-align: center;
}
div#content section#course div.menu div.list div.row a {
	display: block;
	box-sizing: border-box;
	height: 100px;
	color: #78952e;
	padding-top: 20px;
	background-color: #ffffff;
	transition: 0.375s all ease;
}
div#content section#course div.menu div.list div.row a:hover,
div#content section#course div.menu div.list div.row-active a {
	color: #ffffff;
	background-color: #78952e;
}
div#content section#course div.menu div.list div.row h2 {
	text-indent: 0.3em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.25rem;
	letter-spacing: 0.3em;
}
div#content section#course div.menu div.list div.row p.label {
	font-family: "Roboto Condensed", sans-serif;
}
div#content section#course div.menu div.list div.row p.tmp {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	bottom: -35px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	color: #78952e;
}

/* course-detail
-------------------------------------------------------------------------------- */

body.course.detail div#content {
	padding: 0px 0px 160px 0px;
}
div#content section#course-detail {
	background-color: transparent;
}
div#content section#course-detail::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 240px);
	left: 0px;
	bottom: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 20px;
}
div#content section#course-detail div.inner-section {
	padding-top: 0px;
}
div#content section#course-detail div.point {
	margin-bottom: 80px;
}
div#content section#course-detail div.point div.header h2 {
	position: relative;
	width: 240px;
	text-align: center;
	color: #78952e;
	margin: auto;
}
div#content section#course-detail div.point div.header h2::before,
div#content section#course-detail div.point div.header h2::after {
	position: absolute;
	width: 0px;
	height: 100px;
	top: 0px;
	border-right: 2px solid #78952e;
	content: "";
}
div#content section#course-detail div.point div.header h2::before {
	left: 0px;
	transform: rotate(-15deg);
}
div#content section#course-detail div.point div.header h2::after {
	right: 0px;
	transform: rotate(15deg);
}
div#content section#course-detail div.point div.header h2 span.main {
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	font-weight: 700;
}
div#content section#course-detail div.point div.header h2 span.sub {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 4.375rem;
	line-height: 4.5rem;
}
div#content section#course-detail div.point div.header p.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content section#course-detail div.point div.header p.image img {
	width: auto;
	height: 275px;
}
div#content section#course-detail div.point ul li {
	position: relative;
	text-align: center;
	padding: 10px;
}
div#content section#course-detail div.point ul li:nth-child(2n+1) {
	background-color: #ecf1c5;
}
div#content section#course-detail div.point ul li span.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 10px;
	top: 11px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.375rem;
	color: #ffffff;
	background-color: #78952e;
}
div#content section#course-detail div.point ul li span.headline {
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	font-weight: 700;
}
div#content section#course-detail div.point ul li span.headline i {
	font-size: 1rem;
}
div#content section#course-detail div.feature:not(:last-child) {
	margin-bottom: 80px;
}
div#content section#course-detail div.feature div.image {
	position: relative;
	padding-bottom: 66.59%;
}
div#content section#course-detail div.feature div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content section#course-detail div.feature div.image p.row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content section#course-detail div.feature h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 160px;
	height: 160px;
	z-index: 5;
	text-align: center;
	text-indent: 0.3em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2.25rem;
	color: #ffffff;
	letter-spacing: 0.3em;
	margin: -80px auto 40px auto;
	background-color: #78952e;
}
div#content section#course-detail div.feature h3.narrow {
	text-indent: 0.1em;
	letter-spacing: 0.1em;
}
div#content section#course-detail div.feature h4 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #78952e;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
div#content section#course-detail div.feature div.description-subject {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content section#course-detail div.feature div.description-subject p.description {
	box-sizing: border-box;
	width: calc(66.66% - 40px);
	border-right: 1px solid #c8c9ca;
	margin-bottom: 0px;
	padding-right: 40px;
}
div#content section#course-detail div.feature div.description-subject div.subject {
	width: 33.33%;
}
div#content section#course-detail div.feature div.description-subject div.subject div.list {
	display: block;
}
div#content section#course-detail div.feature div.description-subject div.subject div.list div.row {
	width: auto;
}
div#content section#course-detail div.feature p.description {
	margin-bottom: 40px;
}
div#content section#course-detail div.feature div.subject div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#content section#course-detail div.feature div.subject div.list div.row {
	box-sizing: border-box;
	width: 33.33%;
	text-align: center;
	padding: 10px 0px;
}
div#content section#course-detail div.feature div.subject div.list div.row:not(:last-child) {
	border-right: 1px solid #c8c9ca;
}
div#content section#course-detail div.feature div.subject div.list div.row h5 {
	text-indent: 0.25em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 3rem;
	letter-spacing: 0.25em;
	margin-bottom: 10px;
}
div#content section#course-detail div.feature div.subject div.list div.row p.sub {
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin-bottom: 10px;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px 40px 0px 40px;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day-one li {
	width: 100%;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day-two li {
	width: 50%;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day-three li {
	width: 33.33%;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li.wednesday {
	background-color: #5dc1cf;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li.thursday {
	background-color: #ea6da4;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li.friday {
	background-color: #f29600;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li.saturday {
	background-color: #00aeeb;
}
div#content section#course-detail div.feature div.subject div.list div.row ul.day li.sunday {
	background-color: #e95550;
}
div#content section#course-detail div.feature div.subject div.list div.row p.time {
	line-height: 1.5rem;
}
div#content section#course-detail div.feature div.flow div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -50px;
}
div#content section#course-detail div.feature div.flow div.list div.row {
	position: relative;
	width: calc(33.33% - 50px);
	text-align: center;
	margin-right: 50px;
}
div#content section#course-detail div.feature div.flow div.list div.row:not(:last-child)::before {
	position: absolute;
	width: 50px;
	height: 50px;
	right: -50px;
	top: calc(50% - 25px);
	background: url(../images/arrow-flow.svg) no-repeat center;
	background-size: auto 19px;
	content: "";
}
div#content section#course-detail div.feature div.flow div.list div.row div.inner-row {
	position: relative;
	padding-bottom: 100%;
	background-color: #ecf1c5;
	border-radius: 50%;
}
div#content section#course-detail div.feature div.flow div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#content section#course-detail div.feature div.flow div.list div.row div.text h5 {
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.5rem;
	font-weight: 700;
}

/* academy
-------------------------------------------------------------------------------- */

div#content section#academy-summary {
	margin-bottom: 100px;
	background-color: #ebecef;
}
div#content section#academy-summary div.inner-section {
	padding-top: 60px;
}
div#content section#academy-summary header {
	margin-bottom: 60px;
}
div#content section#academy-summary div.content,
div#content section#academy-summary div.text {
	position: relative;
}
div#content section#academy-summary h2 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 3.25rem;
	color: #e85382;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	transform: translateX(0.375em);
}
div#content section#academy-summary p.description {
	width: 640px;
	margin: 0px auto;
}
div#content section#academy-detail div.oath {
	margin-bottom: 120px;
}
div#content section#academy-detail div.oath div.header {
	text-align: center;
	margin-bottom: 40px;
}
div#content section#academy-detail div.oath div.header p.logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 40px;
	margin: 0px auto 10px auto;
	background-color: #d70c18;
}
div#content section#academy-detail div.oath div.header p.logo img {
	width: auto;
	height: 25px;
}
div#content section#academy-detail div.oath div.header h4 {
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 2.5rem;
	color: #d70c18;
	letter-spacing: 0.15em;
}
div#content section#academy-detail div.oath ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}
div#content section#academy-detail div.oath ul li {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	box-sizing: border-box;
	width: 20%;
	writing-mode: vertical-rl;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 2.5rem;
	-ms-writing-mode: tb-rl;
}
div#content section#academy-detail div.oath ul li:not(:last-child) {
	border-left: 1px solid #c8c9ca;
}
div#content section#academy-detail div.oath ul li span {
	display: block;
	width: 80px;
	margin: 0px auto;
}
div#content section#academy-detail div.oath ul li i {
	display: inline-block;
	font-feature-settings: normal;
	font-family: "Noto Serif JP", "Yu Mincho", YuMincho, serif;
}
div#content section#academy-detail div.oath ul li i.start {
	margin-top: -0.5em;
}
div#content section#academy-detail div.oath ul li i.end {
	margin-bottom: -0.5em;
}
div#content table.academy {
	width: 100%;
}
div#content section#academy-detail table.academy {
	margin-bottom: 60px;
}
div#content table.academy th,
div#content table.academy td {
	box-sizing: border-box;
	padding: 15px 0px;
}
div#content table.academy tr:nth-child(2n+1) th,
div#content table.academy tr:nth-child(2n+1) td {
	background-color: #ebecef;
}
div#content table.academy th {
	width: 200px;
	text-align: center;
}
div#content table.academy th span {
	display: inline-block;
}
div#content table.academy th span.two {
	text-indent: 2em;
	letter-spacing: 2em;
}
div#content table.academy th span.three {
	text-indent: 0.5em;
	letter-spacing: 0.5em;
}
div#content table.academy td {
	padding-left: 40px;
}
div#content section#academy-detail div.outline p.map img,
div#content section#academy-detail div.outline p.diagram img {
	width: 100%;
	height: auto;
}
div#content section#academy-detail div.outline p.map,
div#content section#academy-detail div.outline p.note {
	margin-bottom: 40px;
}
div#content section#academy-detail div.outline p.description span {
	display: inline-block;
	margin-left: 20px;
}
div#content section#academy-detail div.outline p.description a {
	color: #0091d7;
}
div#content section#academy-detail div.outline p.description a:hover {
	text-decoration: underline;
}

/* voice
-------------------------------------------------------------------------------- */

div#content section#voice h3.headline {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 3.25rem;
	color: #a586bc;
	letter-spacing: 0.15em;
	margin-bottom: 60px;
}
div#content section#voice div.list div.row:not(:last-child) {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 60px;
	padding-bottom: 60px;
}
div#content section#voice div.list div.row div.segment {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
div#content section#voice div.list div.row div.segment:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#voice div.list div.row div.segment div.profile {
	width: 120px;
	text-align: center;
	line-height: 1.5rem;
}
div#content section#voice div.list div.row div.segment div.profile p.image {
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid #efefef;
	margin-bottom: 10px;
	border-radius: 50%;
}
div#content section#voice div.list div.row div.segment div.profile p.school,
div#content section#voice div.list div.row div.segment div.profile p.name {
	font-size: 1.125rem;
}
div#content section#voice div.list div.row div.segment div.profile p.name:not(:last-child) {
	margin-bottom: 10px;
}
div#content section#voice div.list div.row div.segment div.profile p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#content section#voice div.list div.row div.segment p.body {
	box-sizing: border-box;
	position: relative;
	width: calc(100% - 180px);
	padding: 30px 40px;
	border-radius: 10px;
}
div#content section#voice div.list div.row div.segment-student p.body,
div#content section#voice div.list div.row div.segment-student p.body::before {
	background-color: #d3edfb;
}
div#content section#voice div.list div.row div.segment-teacher p.body,
div#content section#voice div.list div.row div.segment-teacher p.body::before {
	background-color: #efefef;
}
div#content section#voice div.list div.row div.segment p.body::before {
	position: absolute;
	width: 30px;
	height: 60px;
	left: -30px;
	top: 30px;
	content: "";
	clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

/* recruit
-------------------------------------------------------------------------------- */

div#content section#recruit div.outline,
div#content section#recruit div.application {
	margin-bottom: 60px;
}
div#content table.recruit {
	width: 100%;
}
div#content table.recruit th,
div#content table.recruit td {
	box-sizing: border-box;
	vertical-align: middle;
	padding: 15px 0px;
}
div#content table.recruit tr:not(:last-child) th,
div#content table.recruit tr:not(:last-child) td {
	border-bottom: 1px solid #c8c9ca;
}
div#content table.recruit th {
	width: 200px;
	text-align: center;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #ef8200;
}
div#content table.recruit th span {
	display: inline-block;
}
div#content table.recruit th span.two {
	text-indent: 2em;
	letter-spacing: 2em;
}
div#content table.recruit th span.three {
	text-indent: 0.5em;
	letter-spacing: 0.5em;
}
div#content table.recruit td {
	width: calc(100% - 200px);
	padding-left: 40px;
}
div#content section#recruit div.application p.description {
	margin-bottom: 40px;
}
div#content section#recruit div.application h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#content section#recruit div.application h4 img {
	width: auto;
	height: 43px;
}
div#content section#recruit div.application p.sub,
div#content section#recruit div.application p.address {
	text-align: center;
}
div#content section#recruit div.application p.sub {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}

/* contact, request, trial
-------------------------------------------------------------------------------- */

div#content section.form div.component,
div#content section.form div.action {
	width: 440px;
	margin: auto;
}
div#content section.form p.attention {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.125rem;
	margin-bottom: 40px;
}
div#content section.form p.attention span {
	display: block;
	box-sizing: border-box;
	width: 440px;
	text-align: center;
	font-weight: 700;
	color: #ffffff;
	padding: 2.5px 15px;
	background-color: #d70c18;
}
div#content section.form div.component {
	position: relative;
	margin-bottom: 30px;
}
div#content section.form div.component p.label {
	margin-bottom: 5px;
}
div#content section.form div.component div.group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#content section.form div.component div.group-name-furigana input[type=text] {
	width: calc(50% - 10px);
}
div#content section.form div.component div.group-postal-code input[type=text] {
	width: calc(100% - 110px);
}
div#content section.form div.component div.group-postal-code p.button-auto {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 40px;
	color: #ffffff;
	cursor: pointer;
	background-color: #008cce;
	border-radius: 2.5px;
}
div#content div.mw_wp_form_preview section.form div.component div.group-postal-code p.button-auto {
	display: none;
}
div#content section.form div.component select {
	width: 100%;
}
div#content section.form div.component div.container-checkbox {
	display: flex;
	flex-wrap: wrap;
}
div#content section.form div.component div.container-checkbox span.mwform-checkbox-field {
	display: block;
	box-sizing: border-box;
	width: 50%;
	margin: 0px;
	padding: 0px;
}
div#content section.form div.component span.error {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #ffffff;
	margin-top: 8px;
	padding: 0px 5px;
	background-color: #c00018;
	border-radius: 2.5px;
}
div#content section.form div.component div.group span.error ~ span.error {
	display: none;
}
div#content section.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 40px;
}
div#content section.form div.action input[type=submit] {
	width: calc(50% - 10px);
	text-indent: 1em;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 1em;
}
div#content section.form div.action input[type=submit]:not(:last-child) {
	margin-right: 20px;
}
body.trial div#content div.mw_wp_form_preview div.container-title {
	margin-bottom: 0px;
	background-color: transparent
}
div#content div.mw_wp_form_preview div#title-bottom {
	display: none;
}
div#content div.mw_wp_form_preview section#trial div.inner-section {
	padding-top: 120px;
}
div#content div.mw_wp_form_preview section#trial div.detail,
div#content div.mw_wp_form_preview section#trial div.header {
	display: none;
}
div#content div.mw_wp_form_preview section.form div.component p.label {
	border-bottom: 1px solid #c8c9ca;
}
div#content div.mw_wp_form_complete {
	padding-top: 160px;
}
div#content div.mw_wp_form_complete p.description {
	text-align: center;
}
div#content section#trial div.inner-section {
	padding-top: 0px;
}
div#content section#trial h2.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 160px;
	height: 160px;
	z-index: 5;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.15em;
	margin: 0px auto -40px auto;
	background-color: #d70c18;
	transform: translateY(-80px);
}
div#content section#trial div.detail {
	margin-bottom: 100px;
}
div#content section#trial div.menu {
	margin-bottom: 20px;
}
div#content section#trial div.menu div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	margin: auto;
}
div#content section#trial div.menu div.list div.row {
	box-sizing: border-box;
	position: relative;
	width: 80px;
	height: 300px;
	color:  #4C4948;
	cursor: pointer;
	background-color: #ebecef;
	transition: 0.375s background-color ease;
}
div#content section#trial div.menu div.list div.row:hover,
div#content section#trial div.menu div.list div.row.active {
	color: #ffffff;
	background-color: #d70c18;
}
div#content section#trial div.menu div.list div.row::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	bottom: -10px;
	background-color: #ebecef;
	content: "";
	transition: 0.375s all ease;
	transform: translateY(-30px) rotate(45deg);
}
div#content section#trial div.menu div.list div.row:hover::before,
div#content section#trial div.menu div.list div.row.active::before {
	background-color: #d70c18;
	transform: translateY(0px) rotate(45deg);
}
div#content section#trial div.menu div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	writing-mode: vertical-rl;
	height: calc(100% - 40px);
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-weight: 700;
	font-size: 1.875rem;
	margin: auto 25px;
	-ms-writing-mode: tb-rl;
}
div#content section#trial div.menu div.list div.row p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.25rem;
	color: #ffffff;
	background-color: #d7d8de;
	transition: 0.375s color ease;
}
div#content section#trial div.menu div.list div.row:hover p.label,
div#content section#trial div.menu div.list div.row.active p.label {
	color: #d70c18;
}
div#content section#trial div.slide {
	position: relative;
	padding-bottom: calc(66.59% + 60px);
}
div#content section#trial div.slide div.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
}
div#content section#trial div.slide div.row p.description {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	text-align: center;
}
div#content section#trial div.slide div.row p.image {
	position: relative;
	padding-bottom: 66.59%;
}
div#content section#trial div.slide div.row p.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
div#content section#trial div.header {
	text-align: center;
	/* margin-bottom: 60px; */
}
div#content section#trial div.header h2 {
	text-align: center;
	text-indent: 0.15em;
	font-family: YakuHanMPs_Noto, "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 3.25rem;
	color: #d70c18;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
div#content section#trial div.header p.description {
	width: 640px;
	margin: auto;
}
div#content section#trial div.header p.tel,
div#content section#trial div.header p.time-close {
	text-align: center;
}
div#content section#trial div.header p.tel {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 3.5rem;
	padding-top: 20px;
}
div#content section#trial div.header p.tel span {
	display: inline-block;
	transform: translateY(-3px);
}
div#content section#trial div.header p.tel a::before {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #4c4948 url(../images/icon-tel.svg) no-repeat center;
	background-size: auto 28px;
	margin-right: 5px;
	content: "";
	border-radius: 5px;
}
div#content section#trial div.header p.time-close {
	font-size: 0.8125rem;
}
div#content div.privacy-policy {
	width: 640px;
	font-size: 0.8125rem;
	line-height: 1.75rem;
	margin: auto;
	padding-top: 80px;
}
div#content div.privacy-policy h4 {
	font-size: 0.8125rem;
	font-weight: 500;
}
div#content section#trial form {
	padding-top: 100px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	padding: 160px 0px 40px 0px;
}
footer#footer div.action {
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0px;
	bottom: 0px;
	z-index: 10;
	background-color: #d70c18;
	transition: 0.375s transform ease;
	transform: translateY(110px);
}
footer#footer div.action.active {
	transform: translateY(0px);
}
footer#footer.visible div.action {
	position: absolute;
	top: 0px;
	bottom: auto;
}
footer#footer div.action div.list {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.action div.list div.row {
	position: relative;
	box-sizing: border-box;
	width: 33.33%;
}
footer#footer div.action div.list div.row::before {
	position: absolute;
	width: 100px;
	height: 30px;
	left: 0px;
	top: -30px;
	background-color: #d70c18;
	content: "";
	border-radius: 20px 20px 0px 0px;
}
footer#footer div.action div.list div.row:not(:last-child) {
	border-right: 2px solid #ffffff;
}
footer#footer div.action div.list div.row-tel {
	display: none;
}
footer#footer div.action div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding-left: 100px;
	padding-right: 20px;
}
footer#footer div.action div.list div.row p.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 60px;
	height: 60px;
	left: 20px;
	top: -10px;
	background-color: #2760a8;
	border-radius: 10px;
}
footer#footer div.action div.list div.row p.icon img {
	width: auto;
	height: 44px;
}
footer#footer div.action div.list div.row p.sub {
	position: absolute;
	width: 60px;
	left: 20px;
	top: 50px;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.5rem;
	color: #2760a8;
}
footer#footer div.action div.list div.row p.main {
	text-indent: 0.2em;
	font-size: 1.375rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.2em;
}
footer#footer div.action div.list div.row p.main-small {
	display: none;
}
footer#footer div.action p#button-page-top {
	display: none;
}
footer#footer div.information {
	text-align: center;
	margin-bottom: 60px;
}
footer#footer div.information h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
footer#footer div.information h3 img {
	width: auto;
	height: 81px;
}
footer#footer div.information p.address {
	line-height: 1.5rem;
	margin-bottom: 10px;
}
footer#footer div.information p.tel {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 3.5rem;
}
footer#footer div.information p.tel span {
	display: inline-block;
	transform: translateY(-3px);
}
footer#footer div.information p.tel a::before {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #4c4948 url(../images/icon-tel.svg) no-repeat center;
	background-size: auto 28px;
	margin-right: 5px;
	content: "";
	border-radius: 5px;
}
footer#footer div.information p.time-close {
	font-size: 0.8125rem;
}
footer#footer p.copyright {
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: #888888;
}
