/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



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

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.875rem;
	color: #1e1e1e;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #0068c5;
}
a.opacity {
	transition: 0.25s opacity ease;
}
a.opacity:hover {
	opacity: 0.625;
}
h1 {
	font-size: 1.75rem;
	line-height: 2.5rem;
}
h2 {
	font-size: 1.5rem;
	line-height: 2.25rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
b {
	font-family: "Noto Sans JP", sans-serif;
}
span.required {
	color: #e6002d;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}
*.strong {
	font-weight: 500;
}



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

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #1e1e1e;
	border: none;
	background-color: #f5f5f5;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 80px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #170e85;
	border-radius: 40px;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #0068c5;
}
button {
	position: relative;
}
button i.icon-arrow {
	position: absolute;
	right: 25px;
	top: calc(50% - 15px);
	font-size: 1.875rem;
	font-weight: 400;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #f5f5f5;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [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: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #170e85;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #170e85;
	border-bottom: 2px solid #170e85;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #d9d9d9;
}
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.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-document::before {
	content: "\e901";
}
i.icon-free-dial::before {
	content: "\e902";
}
i.icon-youtube::before {
	content: "\e903";
}
i.icon-transportation-01::before {
	content: "\e904";
}
i.icon-transportation-02::before {
	content: "\e905";
}
i.icon-pdf::before {
	content: "\e906";
}
i.icon-download::before {
	content: "\e907";
}



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

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #d9d9d9;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
:where(span, i).no-large {
	display: none;
}



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

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 120px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
div.sns-privacy-policy {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	color: #170e85;
}
div.sns-privacy-policy div.sns {
	margin-right: 30px;
}
div.sns ul {
	display: flex;
	flex-wrap: wrap;
}
div.sns ul li {
	font-size: 1.625rem;
}
div.sns ul li:not(:last-child) {
	margin-right: 20px;
}
p.privacy-policy {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p.privacy-policy a::before {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1px solid #170e85;
	border-bottom: 1px solid #170e85;
	margin-right: 10px;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(-2px) rotate(-45deg);
}
p.privacy-policy a:hover::before {
	border-color: #0068c5;
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-weight: 500;
	line-height: 1.5rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 240px;
	height: 50px;
	overflow: hidden;
	color: #ffffff;
	background-color: #170e85;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
p.button-default > *:hover {
	background-color: #0068c5;
}
p.button-default i.icon-arrow {
	position: absolute;
	right: 10px;
	top: calc(50% - 15px);
	font-size: 1.875rem;
	font-weight: 400;
}
p.button-large {
	font-size: 1.125rem;
}
p.button-large a {
	width: 320px;
	height: 80px;
	border-radius: 40px;
}
p.button-large i.icon-arrow {
	right: 25px;
}
p.button-reverse > * {
	color: #170e85;
	border: 1px solid #170e85;
	background-color: #ffffff;
}
p.button-reverse > *:hover {
	color: #ffffff;
	background-color: #170e85;
}
p.button-orange > * {
	background: linear-gradient(135deg, #f5870a 0%, #f7a547 50%, #f7a547 100%);
}
p.button-red > * {
	background: linear-gradient(135deg, #e6002d 0%, #f5870a 50%, #f5870a 100%);
}
p:where(.button-orange, .button-red) > *::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
p.button-orange > *::before {
	background-color: #f5870a;
}
p.button-red > *::before {
	background-color: #e6002d;
}
p:where(.button-orange, .button-red) > *:hover::before {
	opacity: 1;
}
p.button-more {
	font-size: 0.875rem;
}
p.button-more a {
	justify-content: flex-start;
	width: 140px;
	height: 40px;
	padding: 0px 20px;
	border-radius: 20px;
}
p.button-more a::before {
	position: absolute;
	width: 8px;
	height: 8px;
	right: 18px;
	top: calc(50% - 4px);
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	content: "";
	transform: rotate(-45deg);
}
p:where(.diagram, .icon, .illust, .image) {
	overflow: hidden;
}
p:where(.diagram, .icon, .illust, .image) img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, p#button-menu, p.button-logout, p.button-flow, p.button-students, p.button-contact, p.button-free-trial, div#menu, nav#navi-alternate) {
	position: fixed;
}
header#header :where(*#logo, p#button-menu, p.button-contact) {
	height: 80px;
	top: 0px;
}
body.admin-bar header#header :where(*#logo, p#button-menu, p.button-contact) {
	top: 32px;
}
header#header :where(*#logo, nav#navi-alternate) {
	left: 0px;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	z-index: 20;
	padding-left: 20px;
	background: linear-gradient(135deg, #170e85 0%, #0068c5 75%, #0068c5 100%);
}
header#header *#logo img {
	width: 189px;
}
header#header :where(p#button-menu, p.button-logout, p.button-flow, p.button-students, p.button-contact, p.button-free-trial) {
	z-index: 40;
}
header#header p#button-menu {
	width: 80px;
	right: 0px;
	cursor: pointer;
}
header#header p#button-menu i {
	display: block;
	position: absolute;
	width: 32px;
	height: 0px;
	left: calc(50% - 16px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #ffffff;
	transition: 0.25s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-12px);
}
header#header p#button-menu i:nth-child(2) {
	transform: translateY(12px);
}
div.menu-header header#header p#button-menu i:nth-child(-n+3) {
	width: 0px;
	left: 50%;
	opacity: 0;
	transform: translateY(0px);
}
div.menu-header header#header p#button-menu i:nth-child(4) {
	transform: rotate(37.5deg);
}
div.menu-header header#header p#button-menu i:nth-child(5) {
	transform: rotate(-37.5deg);
}
header#header p:where(.button-logout, .button-flow, .button-students) {
	top: 25px;
	font-weight: 500;
	line-height: 1.5rem;
}
body.admin-bar header#header p:where(.button-logout, .button-flow, .button-students) {
	top: 57px;
}
header#header p:where(.button-logout, .button-flow, .button-students) a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 30px;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
header#header p:where(.button-logout, .button-flow, .button-students) a:hover {
	color: #0068c5;
	border-color: #ffffff;
	background-color: #ffffff;
}
header#header p.button-logout {
	right: 620px;
}
header#header p.button-flow {
	right: 490px;
}
header#header p.button-students {
	right: 360px;
}
header#header p.button-contact {
	width: 240px;
	right: 80px;
	font-weight: 500;
	line-height: 1.5rem;
}
header#header p.button-contact a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 100%;
	color: #ffffff;
	padding-left: 20px;
	background: linear-gradient(135deg, #f5870a 0%, #f7a547 50%, #f7a547 100%);
	transition: 0.25s background-color ease;
}
header#header p.button-contact a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #f5870a;
	content: "";
	opacity: 0;
	transition: 0.25s opacity ease;
}
header#header p.button-contact a:hover::before {
	opacity: 1;
}
header#header p.button-contact i {
	display: block;
	position: relative;
}
header#header p.button-contact i.icon {
	font-size: 1.625rem;
	margin-right: 10px;
	transform: translateY(-12px);
}
header#header p.button-free-trial {
	right: 90px;
	top: 10px;
}
body.admin-bar header#header p.button-free-trial {
	top: 42px;
}
header#header p.button-free-trial img {
	width: 100%;
	transition: 0.25s transform ease;
}
header#header p.button-free-trial a:hover img {
	transform: scale(1.0625);
}
header#header p.button-free-trial span {
	display: none;
}
header#header div#menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100% - 80px);
	right: 0px;
	top: 80px;
	overflow: auto;
	z-index: 10;
	background-color: #ffffff;
	transform: translateY(-100%);
	transition: 0.5s transform ease;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar header#header div#menu {
	height: calc(100% - 112px);
	top: 112px;
}
div.menu-header header#header div#menu {
	transform: translateY(0%);
}
header#header div#menu::-webkit-scrollbar {
	display: none;
}
header#header div#menu div.inner-menu {
	padding: 40px;
}
header#header div#menu div.list {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	margin-right: -20px;
}
header#header div#menu div.list div.row {
	width: calc(33.33% - 20px);
	margin: 0px 20px 40px 0px;
}
header#header div#menu div.list div.row-class {
	overflow: hidden;
	color: #ffffff;
	border-radius: 10px;
	padding: 0px;
}
header#header div#menu div.list div.row-class-01 {
	color: #54b2b3;
	background-color: #eaf5f5;
}
header#header div#menu div.list div.row-class-02 {
	color: #44b5ec;
	background-color: #e8f6fd;
}
header#header div#menu div.list div.row-class-03 {
	color: #6a79b7;
	background-color: #eceef6;
}
header#header div#menu div.list div.row-class p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #ffffff;
}
header#header div#menu div.list div.row-class-01 p.headline {
	background-color: #54b2b3;
}
header#header div#menu div.list div.row-class-02 p.headline {
	background-color: #44b5ec;
}
header#header div#menu div.list div.row-class-03 p.headline {
	background-color: #6a79b7;
}
header#header div#menu div.list div.row-class p.headline span {
	display: block;
	font-size: 2.25rem;
	transform: translateY(-2px);
}
header#header div#menu div.list div.row-class ul li {
	font-weight: 500;
}
header#header div#menu div.list div.row-class ul li a,
header#header div#menu div.list div.row-class ul li span.sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header div#menu div.list div.row-class ul li span.main {
	width: 80px;
}
header#header div#menu div.list div.row-class ul li span.sub {
	justify-content: center;
	width: 85px;
	height: 25px;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-right: 10px;
	background-color: #ffffff;
	border-radius: 12.5px;
}
header#header div#menu div.list div.row-class ul li a {
	padding: 0px 0px 0px 20px;
	opacity: 1;
	transition: 0.25s background-color ease;
}
header#header div#menu div.list div.row-class ul li:not(:last-child) a {
	border-bottom: 1px solid #ffffff;
}
header#header div#menu div.list div.row-class-01 ul li a {
	height: 40px;
}
header#header div#menu div.list div.row-class-01 ul li a:hover {
	background-color: #d4ecec;
}
header#header div#menu div.list div.row-class-01 ul li span.main {
	width: 175px;
}
header#header div#menu div.list div:where(.row-class-02, .row-class-03) ul li a {
	height: 80px;
}
header#header div#menu div.list div.row-class-02 ul li a:hover {
	background-color: #d0ecfa;
}
header#header div#menu div.list div.row-class-03 ul li a:hover {
	background-color: #dadded;
}
header#header div#menu div.list div.row-class ul li span {
	display: block;
}
header#header div#menu div.list div.row-button ul li {
	font-size: 1.25rem;
	font-weight: 500;
}
header#header div#menu div.list div.row-button ul li:not(:last-child) {
	margin-bottom: 20px;
}
header#header div#menu div.list div.row-button ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 80px;
	color: #ffffff;
	border-radius: 10px;
	transition: 0.25s background-color ease;
}
header#header div#menu div.list div.row-button ul li.lecture a {
	background-color: #514aa4;
}
header#header div#menu div.list div.row-button ul li.lecture a:hover {
	background-color: #170e85;
}
header#header div#menu div.list div.row-button ul li.pass-record a {
	background-color: #ec7da7;
}
header#header div#menu div.list div.row-button ul li.pass-record a:hover {
	background-color: #e5518a;
}
header#header div#menu div.list div.row-misc {
	padding: 0px 20px;
}
header#header div#menu div.list div.row-misc p.headline {
	line-height: 1.5rem;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 4px;
	padding: 5px 0px 1px 0px;
}
header#header div#menu div.list div.row-misc ul li {
	font-size: 1.125rem;
}
header#header div#menu div.list div.row-misc ul li a {
	display: inline-block;
	position: relative;
	padding: 2.5px 0px 2.5px 20px;
}
header#header div#menu div.list div.row-misc ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 15.5px;
	background-color: #1e1e1e;
	content: "";
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
header#header div#menu div.list div.row-misc ul li a:hover::before {
	background-color: #0068c5;
}
header#header nav#navi-alternate,
header#header nav#navi-alternate > ul > li div.nest {
	background-color: #ffffff;
}
header#header nav#navi-alternate {
	width: 100%;
	top: 80px;
}
body.admin-bar header#header nav#navi-alternate {
	top: 112px;
}
header#header nav#navi-alternate > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
header#header nav#navi-alternate > ul > li {
	position: relative;
	font-weight: 500;
	color: #170e85;
}
header#header nav#navi-alternate > ul > li:not(:last-child) {
	margin-right: 40px;
}
header#header nav#navi-alternate > ul > li > a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 40px;
}
header#header nav#navi-alternate > ul > li:has(div.nest) > a {
	padding-right: 15px;
}
header#header nav#navi-alternate > ul > li:has(div.nest) > a::before {
	position: absolute;
	width: 8px;
	height: 8px;
	right: 0px;
	top: calc(50% - 6px);
	border-right: 2px solid #170e85;
	border-bottom: 2px solid #170e85;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(45deg);
}
header#header nav#navi-alternate > ul > li div.nest {
	position: absolute;
	width: 200px;
	height: 0px;
	left: -20px;
	top: 40px;
	overflow: hidden;
	border-radius: 0px 0px 5px 5px;
	transition: 0.25s height ease;
}
header#header nav#navi-alternate > ul > li:first-child div.nest {
	width: 300px;
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(1)) {
	height: calc(calc(1.875rem * 1) + 20px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(2)) {
	height: calc(calc(1.875rem * 2) + 20px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(3)) {
	height: calc(calc(1.875rem * 3) + 20px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(4)) {
	height: calc(calc(1.875rem * 4) + 20px);
}
header#header nav#navi-alternate > ul > li:hover div.nest:has(li:nth-child(5)) {
	height: calc(calc(1.875rem * 5) + 20px);
}
header#header nav#navi-alternate > ul > li div.nest ul {
	padding: 10px 0px 10px 20px;
}
header#header nav#navi-alternate > ul > li div.nest ul li a,
header#header nav#navi-alternate > ul > li div.nest ul li span.sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header nav#navi-alternate > ul > li div.nest ul li span {
	display: block;
}
header#header nav#navi-alternate > ul > li div.nest ul li span.main {
	width: 80px;
}
header#header nav#navi-alternate > ul > li:first-child div.nest ul li span.main {
	width: 175px;
}
header#header nav#navi-alternate > ul > li div.nest ul li span.sub {
	justify-content: center;
	width: 85px;
	height: 25px;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-right: 10px;
	background-color: #e8f6fd;
	border-radius: 12.5px;
	transition: 0.25s border-color ease;
}
header#header nav#navi-alternate > ul > li div.nest ul li a:hover span.sub {
	border-color: #0068c5;
}



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

div#cover {
	position: relative;
	width: 1200px;
	margin: 0px auto;
}
div#cover div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
div#cover div.image p.row {
	aspect-ratio: 1200 / 665;
	width: 1200px;
}
div#cover div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 20px;
	z-index: 10;
	pointer-events: none;
}
div#cover div.navi p.button {
	width: 10px;
	height: 10px;
	pointer-events: auto;
	cursor: pointer;
	background-color: #ffffff;
	opacity: 0.625;
	border-radius: 50%;
	transition: 0.25s opacity ease;
}
div#cover div.navi p.button:not(:last-child) {
	margin-right: 10px;
}
div#cover div.navi p.button:where(:hover, p.active) {
	opacity: 1;
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	height: 200px;
	z-index: 1;
}
div#title:not(:has(.background)) {
	height: 125px;
}
div#title:not(.class) {
	padding-top: 60px;
}
div#title.class {
	align-items: flex-start;
	height: 400px;
	padding-top: 40px;
}
div#title div.background,
div#title div.background::before,
div#title div.background::after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#title div.background::before,
div#title div.background::after {
	content: "";
}
div#title div.background::before {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
body.class-01-01 div#title div.background::before {
	background-image: url(../images/title-background-class-01-01.jpg);
}
body.class-01-02 div#title div.background::before {
	background-image: url(../images/title-background-class-01-02.jpg);
}
body.class-01-03 div#title div.background::before {
	background-image: url(../images/title-background-class-01-03.jpg);
}
body.class-02-01 div#title div.background::before {
	background-image: url(../images/title-background-class-02-01.jpg);
}
body.class-02-02 div#title div.background::before {
	background-image: url(../images/title-background-class-02-02.jpg);
}
body.class-03-01 div#title div.background::before {
	background-image: url(../images/title-background-class-03-01.jpg);
}
body.class-03-02 div#title div.background::before {
	background-image: url(../images/title-background-class-03-02.jpg);
}
body.lecture div#title div.background::before {
	background-image: url(../images/title-background-lecture.jpg);
}
body.pass-record div#title div.background::before {
	background-image: url(../images/title-background-pass-record.jpg);
}
body.students div#title div.background::before {
	background-image: url(../images/title-background-students.jpg);
}
body.contact div#title div.background::before {
	background-image: url(../images/title-background-contact.jpg);
}
body.free-trial div#title div.background::before {
	background-image: url(../images/title-background-free-trial.jpg);
}
div#title div.background::after {
	mix-blend-mode: multiply;
}
body:where(.class-01-01, .class-01-02, .class-01-03) div#title div.background::after {
	background: linear-gradient(45deg, #54b2b3 0%, #eaf5f5 125%);
}
body.class-02-01 div#title div.background::after {
	background: linear-gradient(45deg, #44b5ec 0%, #e8f6fd 125%);
}
body.class-02-02 div#title div.background::after {
	background: linear-gradient(45deg, #e5518a 0%, #fce9f0 125%);
	opacity: 0.75;
}
body.class-03-01 div#title div.background::after {
	background: linear-gradient(45deg, #6a79b7 0%, #eceef6 125%);
}
body.class-03-02 div#title div.background::after {
	background: linear-gradient(45deg, #0068c5 0%, #dfecf8 125%);
}
body.students div#title div.background::after {
	background: linear-gradient(45deg, #8f9bc9 0%, #73c8f1 125%);
}
body.contact div#title div.background::after {
	background: linear-gradient(45deg, #7fc5c6 0%, #73c8f1 125%);
}
body.free-trial div#title div.background::after {
	background: linear-gradient(45deg, #f7a547 0%, #ec7da7 125%);
}
div#title div.text {
	position: relative;
	z-index: 1;
	text-align: center;
}
div#title:not(.class) div.text {
	color: #170e85;
}
div#title.white div.text {
	color: #ffffff;
}
div#title div.text :where(p.headline, h1) {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-weight: 500;
}
div#title div.text h1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-indent: 0.05em;
	letter-spacing: 0.05em;
}
div#title:not(.class) div.text h1 {
	position: relative;
	font-size: 2.25rem;
	line-height: 2.75rem;
	padding-bottom: 20px;
}
div#title:not(.class) div.text h1::before,
div#title:not(.class) div.text h1::after {
	position: absolute;
	width: 40px;
	height: 0px;
	bottom: 0px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	content: "";
}
div#title:not(.class) div.text h1::before {
	right: calc(50% + 1px);
	border-color: #0068c5;
}
div#title.white div.text h1::before {
	border-color: #ffffff9f;
}
div#title:not(.class) div.text h1::after {
	left: calc(50% + 1px);
	border-color: #170e85;
}
div#title.white div.text h1::after {
	border-color: #ffffff;
}
div#title div.text h1 span {
	display: block;
}
div#title div.text h1 span:not(:last-child) {
	margin-right: 20px;
}
div#title div.text h1 span.icon img {
	width: 100%;
}
div#title div.text h1 span.sub {
	font-size: 2.75rem;
	transform: translateY(2px);
}
div#title div.text h1 span.main {
	font-size: 4.75rem;
}
div#title.class div.text h1 {
	height: 140px;
	line-height: 4.75rem;
	margin-bottom: 40px;
}
body.class-01-01 div#title div.text h1 span.icon {
	width: 145px;
}
body.class-01-02 div#title div.text h1 span.icon {
	width: 125px;
}
div#title.class div.text p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 60px;
	text-indent: 0.15em;
	font-size: 2.25rem;
	color: #170e85;
	letter-spacing: 0.15em;
	margin: 0px auto;
	padding-bottom: 2px;
	background-color: #ffffff;
	border-radius: 10px;
}
div#title.class div.text ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
div#title.class div.text ul li {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5rem;
}
div#title.class div.text ul li:not(:last-child) {
	margin-right: 20px;
}
div#title.class div.text ul li a {
	display: block;
	position: relative;
	width: 240px;
	height: 60px;
}
div#title.class div.text ul:not(:has(li:nth-child(2))) li a {
	pointer-events: none;
}
body.class-01-03 div#title.class div.text ul li a {
	width: 400px;
}
div#title.class div.text ul li a::before,
div#title.class div.text ul li span {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
div#title.class div.text ul li a::before {
	position: absolute;
	left: 2px;
	top: 2px;
	background-color: #ffffff;
	content: "";
}
div#title.class div.text ul li span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #ffffff;
	background-color: #170e85;
	transition: 0.25s background-color ease;
}
div#title.class div.text ul li span:hover {
	background-color: #0068c5;
}
div#title.class div.text ul li span::before {
	position: absolute;
	width: 12px;
	height: 12px;
	right: 20px;
	top: calc(50% - 6px);
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	content: "";
	transform: rotate(-45deg);
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main section div.background {
	position: absolute;
	width: 100%;
	height: calc(100% + 360px);
	left: 0px;
	bottom: 120px;
	content: "";
}
main section div.inner-section {
	width: 800px;
	margin: 0px auto;
	padding: 120px 0px;
}
main div.block:not(:last-child) {
	margin-bottom: 120px;
}
main h3.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	padding-right: 10px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 100%;
}
main h3:where(.headline-01, .headline-01-wide) {
	color: #170e85;
}
main h3.headline-01 {
	background-image: url(../images/background-headline-01.svg);
}
main h3.headline-01-wide {
	width: 400px;
	background-image: url(../images/background-headline-01-wide.svg);
}
main h3:where(.headline-02, .headline-03, .headline-04, .headline-05, .headline-06) {
	color: #ffffff;
}
main h3.headline-02 {
	background-image: url(../images/background-headline-02.svg);
}
main h3.headline-03 {
	background-image: url(../images/background-headline-03.svg);
}
main h3.headline-04 {
	background-image: url(../images/background-headline-04.svg);
}
main h3.headline-05 {
	background-image: url(../images/background-headline-05.svg);
}
main h3.headline-06 {
	background-image: url(../images/background-headline-06.svg);
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-pass-record, #banner-qa) a {
	display: block;
	position: relative;
	margin: 0px calc(50% - 50vw);
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-qa) a {
	background: linear-gradient(135deg, #a9d8d9 -25%, #a1daf5 25%, #b4bcdb 75%, #f2a8c4 125%);
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-pass-record, #banner-qa) :where(h3, p.button-default) {
	position: absolute;
	width: 100%;
	left: 0px;
	z-index: 1;
}
main div#banner-reason a {
	height: 340px;
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-pass-record, #banner-qa) h3 {
	top: 40px;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 4rem;
	color: #170e85;
}
main div:where(#banner-reason, #banner-pass-record, #banner-qa) h3 {
	text-align: center;
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-qa) h3 span {
	display: inline-block;
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-qa) h3 span.sub {
	font-size: 2.25rem;
	transform: translateY(-10px);
}
main div:where(#banner-reason, #banner-reason-alternate, #banner-pass-record, #banner-qa) p.button-default {
	bottom: 40px;
}
main div#banner-reason p.button-default span {
	border: 1px solid #ffffff;
}
main div:where(#banner-reason, #banner-reason-alternate) p.image,
main div#banner-pass-record p.illust,
main div:where(#banner-qa) p:where(.icon-01, .icon-02) {
	position: absolute;
	bottom: 0px;
}
main div#banner-reason p.image {
	width: 900px;
	left: calc(50% - 450px);
}
main div:where(#banner-reason-alternate, #banner-pass-record, #banner-qa) a {
	height: 240px;
}
main div#banner-reason-alternate h3 {
	width: 400px;
	left: calc(50% - 260px);
	top: 20px;
}
main div#banner-reason-alternate h3 span:not(:first-child) {
	transform: translateY(-30px);
}
main div#banner-reason-alternate h3 span.main {
	transform: translateY(-20px);
}
main div#banner-reason-alternate p.image {
	left: calc(50% + 60px);
	width: 335px;
}
main div#banner-pass-record a {
	background: url(../images/background-banner-pass-record.jpg) no-repeat center;
	background-size: cover;
}
main div#banner-pass-record p.illust {
	width: 255px;
	right: calc(50% + 160px);
}
main div#banner-qa h3 span.sub {
	font-size: 2.25rem;
	margin-right: 20px;
	transform: translateY(-10px);
}
main div#banner-qa h3 span.main {
	font-size: 3.25rem;
}
main div#banner-qa h3 span.main i {
	font-size: 4.5rem;
}
main div#banner-qa p:where(.icon-01, .icon-02) {
	width: 120px;
}
main div#banner-qa p.icon-01 {
	right: calc(50% + 180px);
}
main div#banner-qa p.icon-02 {
	left: calc(50% + 180px);
}
main div#banner-misc div.list,
main div#banner-misc div.list div.row a,
main div#banner-misc div.list div.row div.text,
main div#banner-misc div.list div.row div.text h3 {
	display: flex;
	flex-wrap: wrap;
}
main div#banner-misc div.list {
	justify-content: space-between;
	position: relative;
	color: #ffffff;
	margin: 0px calc(50% - 50vw);
	background: linear-gradient(135deg, #170e85 0%, #0068c5 75%, #0068c5 100%);
}
main div#banner-misc div.list::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 40px);
	left: calc(50% - 0.5px);
	top: 20px;
	border-right: 1px solid #ffffff;
	content: "";
}
main div#banner-misc div.list div.row {
	width: calc(50% - 20px);
}
main div#banner-misc div.list div.row a {
	align-items: center;
}
main div#banner-misc div.list div.row:nth-child(2n+1) a {
	flex-direction: row-reverse;
}
main div#banner-misc div.list div.row div.text {
	justify-content: center;
	width: 240px;
}
main div#banner-misc div.list div.row div.text h3 {
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 30px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
	border: 1px solid #ffffff;
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div#banner-misc div.list div.row a:hover div.text h3 {
	color: #0068c5;
	background-color: #ffffff;
}
main div#banner-misc div.list div.row p.image {
	width: calc(100% - 240px);
	height: 140px;
}
main div#banner-misc div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div#banner-free-trial {
	overflow: hidden;
	border-radius: 10px;
}
main div#banner-free-trial:not(:last-child) {
	margin-bottom: 80px;
}
main div#banner-free-trial a {
	display: flex;
	flex-wrap: wrap;
	background-color: #170e85;
}
main div#banner-free-trial p:where(.headline, .image) {
	width: 50%;
	height: 240px;
}
main div#banner-free-trial p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main div#banner-free-trial p.headline img {
	width: 284px;
}
main div#banner-free-trial p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main p.arrow {
	width: 40px;
	height: 40px;
	margin: 0px auto;
	background-color: #170e85;
	clip-path: polygon(25% 12.5%, 75% 12.5%, 75% 50%, 100% 50%, 50% 100%, 0% 50%, 25% 50%);
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #1e1e1e;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #d9d9d9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f5f5f5;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #1e1e1e;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #666666;
}
main :where(div#pager, nav#navi-article) {
	margin-top: 80px;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -10px;
}
main div#pager :where(span.current, a) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	font-weight: 500;
	color: #170e85;
	margin: 0px 5px 10px 5px;
	border-radius: 50%;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div#pager :where(span.current, a:hover) {
	color: #ffffff;
	background-color: #170e85;
}
main div#pager a:where(.prev, .next) {
	position: relative;
}
main div#pager a:where(.prev, .next)::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: calc(50% - 9px);
	top: calc(50% - 6px);
	border-right: 2px solid #170e85;
	border-bottom: 2px solid #170e85;
	content: "";
	transform: rotate(-45deg);
}
main div#pager a.prev {
	transform: scaleX(-1);
}

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

main section:where(#home-class, #home-news-event, #home-banner) div.inner-section {
	padding-bottom: 0px;
}
main section:where(#home-class, #home-banner) div.inner-section {
	width: 1000px;
}
main section#home-class div.inner-section {
	padding-top: 80px;
}
main section#home-class div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
main section#home-class div.list div.row {
	width: calc(33.33% - 20px);
	overflow: hidden;
	margin-right: 20px;
	border-radius: 10px;
}
main section#home-class div.list div.row p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 85px;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #ffffff;
	padding-bottom: 10px;
}
main section#home-class div.list div.row-01 p.headline {
	background: linear-gradient(135deg, #54b2b3 0%, #54b2b3 50%, #a9d8d9 100%);
}
main section#home-class div.list div.row-02 p.headline {
	background: linear-gradient(135deg, #44b5ec 0%, #44b5ec 50%, #a1daf5 100%);
}
main section#home-class div.list div.row-03 p.headline {
	background: linear-gradient(135deg, #6a79b7 0%, #6a79b7 50%, #b4bcdb 100%);
}
main section#home-class div.list div.row p.headline span {
	display: block;
	font-size: 2.25rem;
	transform: translateY(-2px);
}
main section#home-class div.list div.row p.headline i,
main section#home-class div.list div.row p.headline i::before {
	position: absolute;
}
main section#home-class div.list div.row p.headline i {
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: 15px;
}
main section#home-class div.list div.row p.headline i::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: 0px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	content: "";
	transform: rotate(45deg);
}
main section#home-class div.list div.row div.body {
	overflow: hidden;
}
main section#home-class div.list div.row-01 div.body {
	color: #54b2b3;
	background-color: #eaf5f5;
}
main section#home-class div.list div.row-02 div.body {
	color: #44b5ec;
	background-color: #e8f6fd;
}
main section#home-class div.list div.row-03 div.body {
	color: #6a79b7;
	background-color: #eceef6;
}
main section#home-class div.list div.row div.body ul li {
	font-weight: 500;
}
main section#home-class div.list div.row div.body ul li a,
main section#home-class div.list div.row div.body ul li span.sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#home-class div.list div.row div.body ul li a {
	padding: 0px 20px;
	transition: 0.25s background-color ease;
}
main section#home-class div.list div.row div.body ul li:not(:last-child) a {
	border-bottom: 1px solid #ffffff;
}
main section#home-class div.list div.row-01 div.body ul li a {
	height: 40px;
}
main section#home-class div.list div.row-01 div.body ul li a:hover {
	background-color: #d4ecec;
}
main section#home-class div.list div:where(.row-02, .row-03) div.body ul li a {
	height: 80px;
}
main section#home-class div.list div.row-02 div.body ul li a:hover {
	background-color: #d0ecfa;
}
main section#home-class div.list div.row-03 div.body ul li a:hover {
	background-color: #dadded;
}
main section#home-class div.list div.row div.body ul li span {
	display: block;
}
main section#home-class div.list div.row div.body ul li span.main {
	width: 80px;
}
main section#home-class div.list div.row-01 div.body ul li span.main {
	width: 175px;
}
main section#home-class div.list div.row div.body ul li span.sub {
	justify-content: center;
	width: 85px;
	height: 25px;
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-right: 10px;
	background-color: #ffffff;
	border-radius: 12.5px;
}
main section#home-news-event div.inner-section {
	padding: 80px 0px 0px 0px;
}
main section#home-news-event header {
	margin-bottom: 20px;
}
main section#home-news-event header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	color: #170e85;
}
main section#home-news-event div.list-news-event {
	height: 345px;
	overflow: scroll;
	border-bottom: 1px solid #d9d9d9;
}
main section#home-news-event div.list-news-event div.row:last-child a {
	border-bottom: none;
}
main section#home-news-event p.button-more {
	position: absolute;
	right: 0px;
	top: 80px;
}
main section#home-banner div.inner-section {
	padding-top: 80px;
}
main section#home-banner div.slide {
	display: none;
}

/* class
-------------------------------------------------------------------------------- */

body:where(.class-01-01, .class-01-02, .class-01-03) main section#summary {
	background: linear-gradient(135deg, #eaf5f5 0%, #d4ecec 100%);
}
body.class-02-01 main section#summary {
	background: linear-gradient(135deg, #e8f6fd 0%, #d0ecfa 100%);
}
body.class-02-02 main section#summary {
	background: linear-gradient(135deg, #ffffff 0%, #fce9f0 37.5%, #f8d3e2 137.5%);
}
body.class-03-01 main section#summary {
	background: linear-gradient(135deg, #eceef6 0%, #dadded 100%);
}
body.class-03-02 main section#summary {
	background: linear-gradient(135deg, #dfecf8 0%, #bfd9f0 100%);
}
main section#summary div.inner-section {
	width: 1000px;
	padding-top: 80px;
}
main section#summary header {
	margin-bottom: 120px;
	padding: 0px 100px;
}
main section#summary header :where(h2, p.description) {
	font-weight: 500;
}
main section#summary header h2 {
	font-size: 1.75rem;
	line-height: 3rem;
	color: #170e85;
	margin-bottom: 20px;
}
main section#summary div.block {
	padding: 60px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#summary div.block h3.headline {
	transform: translate(-20px, -80px);
	margin-bottom: -40px;
}
main section#summary div.block-content div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
body.class-01-03 main section#summary div.block-content div.diagram-text {
	flex-direction: row-reverse;
}
body.class-01-01 main section#summary div.block-content div.diagram-text div.text {
	width: calc(100% - 495px);
}
body.class-01-03 main section#summary div.block-content div.diagram-text div.text {
	width: calc(100% - 502px);
}
main section#summary div.block-content div.diagram-text div.text h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	color: #54b2b3;
	margin: 0px -20px 10px 0px;
}
main section#summary div.block-content div.diagram-text div.text p.description:not(:last-child) {
	margin-bottom: 20px;
}
body:where(.class-01-01, .class-01-03) main section#summary div.block-content div.diagram-text div.text p.illust {
	margin: 0px auto;
}
body.class-01-01 main section#summary div.block-content div.diagram-text div.text p.illust {
	width: 244px;
}
body.class-01-03 main section#summary div.block-content div.diagram-text div.text p.illust {
	width: 196px;
}
body.class-01-01 main section#summary div.block-content div.diagram-text p.diagram {
	max-width: 435px;
}
body.class-01-03 main section#summary div.block-content div.diagram-text p.diagram {
	max-width: 442px;
}
main section#summary div.block-point div.list:not(:last-child) {
	margin-bottom: 40px;
}
main section#summary div.block-point div.list div.row:not(:last-child) {
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row:not(:last-child) {
	border-color: #a9d8d9;
}
body.class-02-02 main section#summary div.block-point div.list div.row:not(:last-child) {
	border-color: #f2a8c4;
}
body.class-03-02 main section#summary div.block-point div.list div.row:not(:last-child) {
	border-color: #7fb3e2;
}
main section#summary div.block-point div.list div.row:has(p:where(.illust, .image)) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row:has(p.image) div.text {
	width: calc(100% - 340px);
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div.row-01 div.text {
	width: calc(100% - 340px);
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div:where(.row-02, .row-03) div.text {
	width: calc(100% - 260px);
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div.row-04 div.text {
	width: calc(100% - 485px);
}
main section#summary div.block-point div.list div.row div.text h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
main section#summary div.block-point div.list div.row div.text h4 span.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 60px;
	height: 60px;
	font-size: 2.5rem;
	color: #ffffff;
	border-radius: 5px;
}
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row div.text h4 span.number {
	background: linear-gradient(135deg, #54b2b3 0%, #a9d8d9 100%);
}
body.class-02-02 main section#summary div.block-point div.list div.row div.text h4 span.number {
	background: linear-gradient(135deg, #e5518a 0%, #f2a8c4 100%);
}
body.class-03-02 main section#summary div.block-point div.list div.row div.text h4 span.number {
	background: linear-gradient(135deg, #0068c5 0%, #7fb3e2 100%);
}
main section#summary div.block-point div.list div.row h4 span.number::before {
	position: absolute;
	width: 100%;
	left: 0px;
	top: -25px;
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 500;
	content: "Point";
}
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row div.text h4 span.number::before,
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row div.text h4 span.main {
	color: #54b2b3;
}
body.class-02-02 main section#summary div.block-point div.list div.row div.text h4 span.number::before,
body.class-02-02 main section#summary div.block-point div.list div.row div.text h4 span.main {
	color: #e5518a;
}
body.class-03-02 main section#summary div.block-point div.list div.row div.text h4 span.number::before,
body.class-03-02 main section#summary div.block-point div.list div.row div.text h4 span.main {
	color: #0068c5;
}
main section#summary div.block-point div.list div.row div.text h4 span.main {
	display: block;
	width: calc(100% - 80px);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2rem;
	color: #54b2b3;
}
main section#summary div.block-point div.list div.row div.text :where(p.description, ul):not(:last-child) {
	margin-bottom: 20px;
}
main section#summary div.block-point div.list div.row div.text ul {
	display: flex;
	flex-wrap: wrap;
}
main section#summary div.block-point div.list div.row div.text ul li {
	position: relative;
	width: 50%;
	font-size: 1.25rem;
	font-weight: 500;
	padding-left: 20px;
}
body.class-02-02 main section#summary div.block-point div.list div.row div.text ul li {
	color: #e5518a;
}
body.class-03-02 main section#summary div.block-point div.list div.row div.text ul li {
	color: #0068c5;
}
main section#summary div.block-point div.list div.row div.text ul li::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0px;
	top: 10px;
	content: "";
	border-radius: 50%;
}
body.class-02-02 main section#summary div.block-point div.list div.row div.text ul li::before {
	background-color: #e5518a;
}
body.class-03-02 main section#summary div.block-point div.list div.row div.text ul li::before {
	background-color: #0068c5;
}
body:where(.class-01-01, .class-01-02) main section#summary div.block-point div.list div.row p.image {
	width: 280px;
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div.row-01 p.image {
	width: 280px;
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div:where(.row-02, .row-03) p.image {
	width: 200px;
	border: 1px solid #d9d9d9;
}
body:where(.class-02-02, .class-03-02) main section#summary div.block-point div.list div.row-04 p.illust {
	width: 425px;
}
main section#summary div.block-point p.goal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	padding: 20px;
	background-color: #7fc5c6;
	border-radius: 5px;
}
main section#summary div.block-point p.goal span {
	display: block;
}
main section#summary div.block-point p.goal span.sub {
	font-size: 1.25rem;
}
main section#summary div.block-point p.goal span.main {
	font-size: 1.75rem;
	color: #fff5e0;
	margin: 0px 10px;
}
main section#summary div.block-flow div.list div.row {
	position: relative;
}
main section#summary div.block-flow div.list div.row:not(:last-child)::before,
main section#summary div.block-flow div.list div.row:not(:last-child)::after {
	position: absolute;
	width: calc(50% - 40px);
	bottom: 20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	content: "";
}
main section#summary div.block-flow div.list div.row:not(:last-child)::before {
	left: 0px;
}
main section#summary div.block-flow div.list div.row:not(:last-child)::after {
	right: 0px;
}
body.class-02-01 main section#summary div.block-flow div.list div.row:not(:last-child)::before,
body.class-02-01 main section#summary div.block-flow div.list div.row:not(:last-child)::after {
	border-color: #a1daf5;
}
body.class-03-01 main section#summary div.block-flow div.list div.row:not(:last-child)::before,
body.class-03-01 main section#summary div.block-flow div.list div.row:not(:last-child)::after {
	border-color: #b4bcdb;
}
main section#summary div.block-flow div.list div.row div.illust-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
body.class-02-01 main section#summary div.block-flow div.list div.row div.text {
	width: calc(100% - 390px);
}
body.class-03-01 main section#summary div.block-flow div.list div.row div.text {
	width: calc(100% - 420px);
}
main section#summary div.block-flow div.list div.row div.text p.grade {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px;
	border-radius: 5px;
}
body.class-02-01 main section#summary div.block-flow div.list div.row div.text p.grade {
	background-color: #73c8f1;
}
body.class-03-01 main section#summary div.block-flow div.list div.row div.text p.grade {
	background-color: #8f9bc9;
}
main section#summary div.block-flow div.list div.row div.text h4 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 10px;
}
body.class-02-01 main section#summary div.block-flow div.list div.row p.illust {
	width: 330px;
}
body.class-03-01 main section#summary div.block-flow div.list div.row p.illust {
	width: 360px;
}
main section#summary div.block-flow div.list div.row p.arrow {
	margin: 20px auto;
}
body.class-02-01 main section#summary div.block-flow div.list div.row p.arrow {
	background-color: #a1daf5;
}
body.class-03-01 main section#summary div.block-flow div.list div.row p.arrow {
	background-color: #b4bcdb;
}
main section#summary div.block-feature ul li {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	padding-left: 20px;
}
main section#summary div.block-feature ul li:not(:last-child) {
	border-bottom: 2px dotted #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section#summary div.block-feature ul li::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0px;
	top: 10px;
	background-color: #170e85;
	content: "";
	border-radius: 50%;
}
main section#summary div.block-individual div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
main section#summary div.block-individual div.diagram-text div.text {
	width: calc(100% - 540px);
}
main section#summary div.block-individual div.diagram-text div.text h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
body.class-02-02 main section#summary div.block-individual div.diagram-text div.text h4 {
	color: #e5518a;
}
body.class-03-02 main section#summary div.block-individual div.diagram-text div.text h4 {
	color: #0068c5;
}
main section#summary div.block-individual div.diagram-text div.text p.description {
	margin-bottom: 20px;
}
main section#summary div.block-individual div.diagram-text div.text p.balloon {
	position: relative;
	font-weight: 500;
	line-height: 1.625rem;
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 10px;
}
body.class-02-02 main section#summary div.block-individual div.diagram-text div.text p.balloon,
body.class-02-02 main section#summary div.block-individual div.diagram-text div.text p.balloon::before {
	background-color: #fce9f0;
}
body.class-02-02 main section#summary div.block-individual div.diagram-text div.text p.balloon {
	color: #e5518a;
}
body.class-03-02 main section#summary div.block-individual div.diagram-text div.text p.balloon,
body.class-03-02 main section#summary div.block-individual div.diagram-text div.text p.balloon::before {
	background-color: #dfecf8;
}
body.class-03-02 main section#summary div.block-individual div.diagram-text div.text p.balloon {
	color: #0068c5;
}
main section#summary div.block-individual div.diagram-text div.text p.balloon::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	bottom: -20px;
	content: "";
	clip-path: polygon(0% 0%, 75% 0%, 100% 100%);
}
main section#summary div.block-individual div.diagram-text div.text p.illust {
	width: 190px;
	margin: 0px 20px 0px auto;
}
main section#summary div.block-individual div.diagram-text p.diagram {
	max-width: 480px;
}
main section#summary div.block-individual div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#summary div.block-individual div.list div.row:not(:last-child) {
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
body.class-02-02 main section#summary div.block-individual div.list div.row:not(:last-child) {
	border-color: #f2a8c4;
}
body.class-03-02 main section#summary div.block-individual div.list div.row:not(:last-child) {
	border-color: #7fb3e2;
}
main section#summary div.block-individual div.list div.row p.illust {
	width: 155px;
}
main section#summary div.block-individual div.list div.row div.text {
	width: calc(100% - 195px);
}
main section#summary div.block-individual div.list div.row div.text h4,
main section#summary div.block-individual div.list div.row div.text h4 span.sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#summary div.block-individual div.list div.row div.text h4 {
	justify-content: space-between;
	margin-bottom: 10px;
}
main section#summary div.block-individual div.list div.row div.text h4 span {
	font-weight: 500;
}
main section#summary div.block-individual div.list div.row div.text h4 span.sub {
	justify-content: center;
	width: 100px;
	height: 30px;
	font-size: 1.125rem;
	color: #ffffff;
	border-radius: 15px;
}
main section#summary div.block-individual div.list div.row-01 div.text h4 span.sub {
	background-color: #ec7da7;
}
main section#summary div.block-individual div.list div.row-02 div.text h4 span.sub {
	background-color: #8f9bc9;
}
main section#summary div.block-individual div.list div.row-03 div.text h4 span.sub {
	background-color: #7fc5c6;
}
main section#summary div.block-individual div.list div.row div.text h4 span.main {
	display: block;
	width: calc(100% - 120px);
	font-size: 1.5rem;
}
main section#summary div.block-flow-alternate div.list div.row {
	position: relative;
}
main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::before,
main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::after {
	position: absolute;
	width: calc(50% - 40px);
	bottom: 20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	content: "";
}
main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::before {
	left: 0px;
}
main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::after {
	right: 0px;
}
body.class-02-02 main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::before,
body.class-02-02 main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::after {
	border-color: #f2a8c4;
}
body.class-03-02 main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::before,
body.class-03-02 main section#summary div.block-flow-alternate div.list div.row:not(:last-child)::after {
	border-color: #7fb3e2;
}
main section#summary div.block-flow-alternate div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#summary div.block-flow-alternate div.list div.row h4 span {
	display: block;
}
main section#summary div.block-flow-alternate div.list div.row h4 span.sub {
	font-size: 1.25rem;
	color: #170e85;
	margin-right: 20px;
}
main section#summary div.block-flow-alternate div.list div.row h4 span.main {
	font-size: 1.5rem;
}
body.class-02-02 main section#summary div.block-flow-alternate div.list div.row h4 span.main {
	color: #e5518a;
}
body.class-03-02 main section#summary div.block-flow-alternate div.list div.row h4 span.main {
	color: #0068c5;
}
main section#summary div.block-flow-alternate div.list div.row p.arrow {
	margin: 20px auto;
}
body.class-02-02 main section#summary div.block-flow-alternate div.list div.row p.arrow {
	background-color: #f2a8c4;
}
body.class-03-02 main section#summary div.block-flow-alternate div.list div.row p.arrow {
	background-color: #7fb3e2;
}
main section.grade div.inner-section:has(header) {
	padding-top: 0px;
}
main section.grade header {
	position: relative;
	height: 300px;
	margin: 0px calc(50% - 50vw) 80px calc(50% - 50vw);
}
main section.grade header::before {
	position: absolute;
	width: 60%;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
}
body.class-01-03 main section.grade header::before {
	background: linear-gradient(90deg, #7fc5c6 0%, #d4ecec 100%);
}
body.class-02-01 main section.grade header::before {
	background: linear-gradient(90deg, #73c8f1 0%, #d0ecfa 100%);
}
body.class-02-02 main section.grade header::before {
	background: linear-gradient(90deg, #ec7da7 0%, #f8d3e2 100%);
}
body.class-03-01 main section.grade header::before {
	background: linear-gradient(90deg, #8f9bc9 0%, #dadded 100%);
}
body.class-03-02 main section.grade header::before {
	background: linear-gradient(90deg, #408ed4 0%, #bfd9f0 100%);
}
main section.grade header p.image {
	position: absolute;
	width: 40%;
	height: 100%;
	right: 0px;
	top: 0px;
}
main section.grade header p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	content: "";
}
body.class-01-03 main section.grade header p.image::before {
	background: linear-gradient(90deg, #d4ecec 0%, #d4ecec00 100%);
}
body.class-02-01 main section.grade header p.image::before {
	background: linear-gradient(90deg, #d0ecfa 0%, #d0ecfa00 100%);
}
body.class-02-02 main section.grade header p.image::before {
	background: linear-gradient(90deg, #f8d3e2 0%, #f8d3e200 100%);
}
body.class-03-01 main section.grade header p.image::before {
	background: linear-gradient(90deg, #dadded 0%, #dadded00 100%);
}
body.class-03-02 main section.grade header p.image::before {
	background: linear-gradient(90deg, #bfd9f0 0%, #bfd9f000 100%);
}
main section.grade header p.image img {
	object-fit: cover;
	object-position: left 12.5%;
	width: 100%;
	height: 100%;
	opacity: 0.875;
}
main section.grade header div.text {
	position: relative;
	width: 800px;
	z-index: 1;
	color: #170e85;
	margin: 0px auto;
	padding-top: 40px;
}
main section.grade header div.text div:where(.headline-subject, .grade-description) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section.grade header div.text div.headline-subject {
	min-height: 80px;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-weight: 500;
	margin: 0px calc(50% - 50vw) 40px 0px;
}
main section.grade header div.text div.headline-subject h2 {
	font-size: 3.25rem;
	line-height: 4.25rem;
}
main section.grade header div.text div.headline-subject h2:not(:last-child) {
	margin-right: 20px;
}
main section.grade header div.text div.headline-subject div.subject ul,
main section.grade header div.text div.headline-subject div.subject ul li {
	display: flex;
	flex-wrap: wrap;
}
main section.grade header div.text div.headline-subject div.subject ul li {
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	font-size: 1.5rem;
	font-weight: 500;
	background-color: #ffffffdf;
	border-radius: 50%;
}
main section.grade header div.text div.headline-subject div.subject ul li:not(:last-child) {
	margin-right: 10px;
}
main section.grade header div.text div.grade-description p.grade {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 80px;
	font-size: 1.5rem;
	font-weight: 500;
	margin-right: 30px;
	border-radius: 40px;
	background-color: #ffffff;
}
body.class-01-03 main section.grade header div.text div.grade-description p.grade {
	color: #54b2b3;
}
main section.grade header div.text div.grade-description p.grade span {
	display: inline-block;
	font-size: 2.25rem;
	margin: 0px 5px;
	transform: translateY(-2px);
}
main section.grade header div.text div.grade-description p.description {
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
}
main section.grade div:where(.block-summary, .block-schedule, .block-class, .block-pattern, .block-flow, .block-voice) h3.headline {
	margin-bottom: 40px;
}
main section.grade div.block-summary div:where(.subject, .timetable) {
	margin-bottom: 80px;
}
main section.grade div.block-summary div.subject ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -15px 40px 0px;
}
main section.grade div.block-summary div.subject ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	font-weight: 500;
	color: #ffffff;
	margin-right: 15px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
main section.grade div.block-summary div:where(.subject-01, .subject-02, .subject-03) ul li {
	font-size: 1.75rem;
}
main section.grade div.block-summary div.subject-01 ul li {
	width: calc(25% - 15px);
	background-image: url(../images/background-subject-01.svg);
}
main section.grade div.block-summary div.subject-02 ul li {
	width: calc(20% - 15px);
	background-image: url(../images/background-subject-01.svg);
}
main section.grade div.block-summary div.subject-03 ul li {
	width: calc(16.66% - 15px);
	background-image: url(../images/background-subject-03.svg);
}
main section.grade div.block-summary div.subject div.time {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section.grade div.block-summary div.subject div.time h4 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 500;
	color: #170e85;
	border-left: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
	margin-right: 40px;
	padding: 10px 20px;
}
main section.grade div.block-summary div.subject div.time h4 span {
	display: block;
}
main section.grade div.block-summary div.subject div.time h4 span:not(:last-child) {
	margin-right: 10px;
}
main section.grade div.block-summary div.subject div.time h4 span:where(.prefix, .suffix) {
	font-size: 1.25rem;
}
main section.grade div.block-summary div.subject div.time h4 span.main {
	font-size: 2.25rem;
	transform: translateY(-2px);
}
main section.grade div.block-summary div.timetable h4 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 20px;
}
main section.grade div.block-summary div.timetable h4 span {
	font-size: 1rem;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list:not(:last-child) {
	margin-bottom: 40px;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list:not(:last-child) + p.note {
	margin-top: -20px;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #170e85;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.25rem;
	padding: 20px 0px;
	border-radius: 10px;
}
main section.grade div.block-summary div.timetable div.list div.row p.label {
	background-color: #e6e6e6;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row div.body-wrapper {
	width: calc(100% - 240px);
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row p.body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5rem;
	border-bottom: 1px solid #d9d9d9;
	padding: 20px;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row p.body-emphasis {
	background-color: #f0f0f7;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row:not(:has(p.body:nth-child(2))) p.body {
	height: 100%;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row p.body:first-child {
	border-top: 1px solid #d9d9d9;
}
main section.grade div.block-summary div:where(.timetable, .price) div.list div.row p.body span {
	display: block;
}
main section.grade div.block-summary div.timetable div.list div.row p.body span:where(.class, .day-height-double, .day-blank) {
	width: calc(100% - 320px);
}
main section.grade div.block-summary div.timetable div.list div.row p.body span.day-height-double {
	padding-left: 20px;
	background-color: #ffffff;
	transform: translate(-20px, calc(50% + 20px));
}
main section.grade div.block-summary div.timetable div.list div.row p.body span:where(.day, .prefix) {
	width: 100px;
}
main section.grade div.block-summary div.timetable div.list div.row p.body:has(span.class:empty) span.day {
	order: -1;
}
main section.grade div.block-summary div.timetable div.list div.row p.body span.time {
	width: 220px;
	text-align: right;
	font-size: 1.5rem;
}
main section.grade div.block-summary div.price div.list div.row-alternate {
	color: #ffffff;
	background-color: #ec7da7;
	border-radius: 10px;
}
main section.grade div.block-summary div.price div.list div.row p.label {
	width: 240px;
	color: #ffffff;
	background-color: #ec7da7;
	border-radius: 38px;
}
main section.grade div.block-summary div.price div.list div.row div.body-wrapper {
	width: calc(100% - 280px);
}
main section.grade div.block-summary div.price div.list div.row p.body {
	border-top: none;
}
main section.grade div.block-summary div.price div.list:not(:has(p.body:nth-child(2))) div.row p.body {
	border-bottom: none;
}
main section.grade div.block-summary div.price div.list div.row p.body span.prefix {
	text-align: right;
}
main section.grade div.block-summary div.price div.list div.row-alternate div.body-wrapper  {
	padding-right: 20px;
}
main section.grade div.block-summary div.price div.list div.row-alternate p.body  {
	border-color: transparent;
}
main section.grade div.block-summary div.price div.list div.row-alternate p.body:not(:last-child)  {
	border-bottom-color: #ffffff80;
}
main section.grade div.block-summary div.price div.list div.row p.body span:where(.grade, .subject, .time) {
	width: calc(100% - 320px);
}
main section.grade div.block-summary div.price div.list div.row p.body span:where(.plus, .prefix) {
	width: 180px;
}
main section.grade div.block-summary div.price div.list div.row p.body span:where(.plus, .number) {
	font-weight: 500;
	text-align: right;
}
main section.grade div.block-summary div.price div.list div.row p.body span.plus {
	transform: translateX(35px);
}
main section.grade div.block-summary div.price div.list div.row p.body span.number {
	width: 140px;
	font-size: 1.75rem;
}
main section.grade div.block-summary div.price div.list div.row p.body span.number i {
	font-size: 1.25rem;
}
main section.grade div.block-schedule div.list div.row {
	padding: 40px;
	background-color: #eaf5f5;
	border-radius: 10px;
}
main section.grade div.block-schedule div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section.grade div.block-schedule div.list div.row div.header {
	display: flex;
	flex-wrap: wrap;
	color: #170e85;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
main section.grade div.block-schedule div.list div.row div.header :where(h4, p.time) {
	width: 50%;
}
main section.grade div.block-schedule div.list div.row div.header h4 {
	font-size: 1.5rem;
	font-weight: 500;
}
main section.grade div.block-schedule div.list div.row div.header p.time {
	text-align: right;
}
main section.grade div.block-schedule div.list div.row div.header p.time span {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0px 5px;
	transform: translateY(1px);
}
main section.grade div.block-schedule div.list div.row p.description {
	margin-bottom: 20px;
}
main section.grade div.block-schedule div.list div.row div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
main section.grade div.block-schedule div.list div.row div.diagram-text p.diagram {
	max-width: 508px;
}
main section.grade div.block-schedule div.list div.row div.diagram-text div.text {
	width: calc(100% - 528px);
	text-align: center;
}
main section.grade div.block-schedule div.list div.row div.diagram-text div.text p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 10px;
	background-color: #ec7da7;
	border-radius: 20px;
}
main section.grade div.block-schedule div.list div.row div.diagram-text div.text p.time {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin-bottom: 5px;
}
main section.grade div.block-schedule div.list div.row div.diagram-text div.text p.price {
	font-size: 2.25rem;
	font-weight: 500;
	color: #e5518a;
}
main section.grade div.block-schedule div.list div.row div.diagram-text div.text p.price i {
	display: inline-block;
	font-size: 1.5rem;
	transform: translateY(-1px);
}
main section.grade div:where(.block-content, .block-textbook, .block-point) h3.headline {
	position: relative;
	z-index: 1;
}
main section.grade div:where(.block-content, .block-textbook, .block-point) div.list {
	margin-top: -20px;
	padding: 40px;
	border-radius: 10px;
}
body.class-01-03 main section.grade div.block-content div.list {
	background: linear-gradient(135deg, #a9d8d9 0%, #d4ecec 100%);
}
body.class-02-01 main section.grade div.block-content div.list {
	background: linear-gradient(135deg, #a1daf5 0%, #d0ecfa 100%);
}
body.class-03-01 main section.grade div.block-content div.list {
	background: linear-gradient(135deg, #b4bcdb 0%, #dadded 100%);
}
main section.grade div:where(.block-content, .block-textbook) div.list div.row,
main section.grade div.block-point div.list div.inner-list {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section.grade div.block-content div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section.grade div:where(.block-content, .block-textbook) div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section.grade div.block-content div.list div.row p.subject {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 160px;
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	padding: 20px 0px;
	background-color: #e6e6e6;
	border-radius: 10px;
}
main section.grade div.block-content div.list div.row div.body {
	width: calc(100% - 180px);
}
main section.grade div.block-content div.list div.row div.body :where(h4, p.description, ul):not(:last-child) {
	margin-bottom: 10px;
}
main section.grade div.block-content div.list div.row div.body h4 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
}
main section.grade div.block-content div.list div.row div.body p.description + h4 {
	border-top: 2px dotted #d9d9d9;
	margin-top: 20px;
	padding-top: 20px;
}
main section.grade div:where(.block-textbook, .block-point) div.list {
	background: linear-gradient(135deg, #fff5e0 0%, #fffaef 100%);
}
main section.grade div.block-textbook div.list div.row h4 {
	font-size: 1.5rem;
	color: #54b2b3;
	margin-bottom: 10px;
}
main section.grade div.block-textbook div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section.grade div.block-textbook div.list div.row div.image-text p.image {
	width: 300px;
}
main section.grade div.block-textbook div.list div.row div.image-text div.text {
	width: calc(100% - 340px);
}
main section.grade div.block-textbook div.list div.row div.image-text div.text dl dt {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
	padding-left: 20px;
}
main section.grade div.block-textbook div.list div.row div.image-text div.text dl dt::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0px;
	top: 10px;
	background-color: #170e85;
	content: "";
	border-radius: 50%;
}
main section.grade div.block-textbook div.list div.row div.image-text div.text dl dd:not(:last-child) {
	border-bottom: 2px dotted #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section.grade div.block-class h4 {
	font-size: 1.5rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section.grade div.block-class table {
	width: 100%;
}
main section.grade div.block-class table:not(:last-child) {
	margin-bottom: 40px;
}
main section.grade div.block-class table thead th {
	color: #ffffff;
	padding: 5px 0px;
	background-color: #170e85;
}
main section.grade div.block-class table thead th:not(:last-child) {
	border-right: 1px solid #e2e1f0;
}
main section.grade div.block-class table tbody :where(th, td) {
	font-size: 1.125rem;
	color: #170e85;
	border-bottom: 1px solid #170e85;
	padding: 20px 0px;
}
main section.grade div.block-class table tbody :where(th, td):not(:last-child) {
	border-right: 1px solid #170e85;
}
main section.grade div.block-class table tbody th {
	background-color: #e2e1f0;
}
main section.grade div.block-class table.class-01 :where(th, td) {
	text-align: center;
}
main section.grade div.block-class table.class-01 thead th:nth-child(1) {
	width: 25%;
}
main section.grade div.block-class table.class-01 thead tr:has(th:nth-child(3)) th:not(th:nth-child(1)) {
	width: 37.5%;
}
main section.grade div.block-class table.class-01 thead tr:has(th:nth-child(4)) th:not(th:nth-child(1)) {
	width: 25%;
}
main section.grade div.block-class table.class-01 tbody :where(th, td) {
	font-weight: 500;
}
main section.grade div.block-class table.class-01 tbody td span {
	display: inline-block;
	font-size: 1.5rem;
	transform: translateY(1px);
}
main section.grade div.block-class table.class-02 th {
	text-align: center;
}
main section.grade div.block-class table.class-02 thead th:nth-child(1) {
	width: 25%;
}
main section.grade div.block-class table.class-02 tbody th {
	font-weight: 500;
}
main section.grade div.block-class table.class-02 tbody tr:nth-child(2n) th {
	background-color: #f3f3f9;
}
main section.grade div.block-class table.class-02 tbody td {
	padding-left: 20px;
	padding-right: 20px;
}
main section.grade div.block-class table.class-02 tbody td ul li,
main section.grade div.block-class table.class-02 tbody td ul li span.label {
	display: flex;
	flex-wrap: wrap;
}
main section.grade div.block-class table.class-02 tbody td ul li {
	justify-content: space-between;
	font-size: 1rem;
}
main section.grade div.block-class table.class-02 tbody td ul li:not(:last-child) {
	border-bottom: 2px dotted #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section.grade div.block-class table.class-02 tbody td ul li span {
	display: block;
}
main section.grade div.block-class table.class-02 tbody td ul li span.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 30px;
	background-color: #e2e1f0;
	border-radius: 5px;
}
main section.grade div.block-class table.class-02 tbody tr:nth-child(2n) td ul li span.label {
	background-color: #f3f3f9;
}
main section.grade div.block-class table.class-02 tbody td ul li span.main {
	width: calc(100% - 80px);
}
main section.grade div.block-class table.class-02 tbody td ul li span.main i:where(.emphasis-01, .emphasis-02) {
	font-size: 1.25rem;
	font-weight: 500;
}
main section.grade div.block-class table.class-02 tbody td ul li span.main i:where(.emphasis-01, .emphasis-02):not(:first-child) {
	margin-left: 10px;
}
main section.grade div.block-class table.class-02 tbody td ul li span.main i:where(.emphasis-01, .emphasis-02):not(:last-child) {
	margin-right: 10px;
}
main section.grade div.block-class table.class-02 tbody td ul li span.main i.emphasis-01 {
	color: #e5518a;
}
main section.grade div.block-class table.class-02 tbody td ul li span.main i.emphasis-02 {
	color: #0068c5;
}
main section.grade div.block-pattern div.pattern div.segment {
	padding: 20px;
	border-radius: 10px;
}
main section.grade div.block-pattern div.pattern div.segment:not(:last-child) {
	margin-bottom: 40px;
}
body.class-02-02 main section.grade div.block-pattern div.pattern div.segment {
	background: linear-gradient(135deg, #a1daf5 0%, #d0ecfa 100%);
}
body.class-03-02 main section.grade div.block-pattern div.pattern div.segment {
	background: linear-gradient(135deg, #b4bcdb 0%, #dadded 100%);
}
main section.grade div.block-pattern div.pattern div.segment div.headline,
main section.grade div.block-pattern div.pattern div.segment div.headline h4 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section.grade div.block-pattern div.pattern div.segment div.headline {
	margin-bottom: 10px;
}
main section.grade div.block-pattern div.pattern div.segment div.headline p.icon {
	aspect-ratio: 1;
	width: 60px;
	overflow: hidden;
	margin-right: 20px;
	background-color: #ffffff;
	border-radius: 50%;
}
main section.grade div.block-pattern div.pattern div.segment div.headline h4 {
	width: calc(100% - 80px);
	font-weight: 500;
	color: #170e85;
}
main section.grade div.block-pattern div.pattern div.segment div.headline h4 span {
	display: block;
}
main section.grade div.block-pattern div.pattern div.segment div.headline h4 span.main {
	font-size: 1.75rem;
	margin-right: 10px;
}
main section.grade div.block-pattern div.pattern div.segment div.headline h4 span.sub {
	font-size: 1.25rem;
	transform: translateY(2px);
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row,
main section.grade div.block-pattern div.pattern div.segment div.list div.row p.label {
	display: flex;
	flex-wrap: wrap;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row p.label {
	justify-content: center;
	align-items: center;
	width: 40px;
	font-weight: 500;
	line-height: 1rem;
	padding: 10px 0px;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-01 p.label {
	background-color: #ffffff;
}
main section.grade div.block-pattern div.pattern div.segment div.list div:where(.row-02, .row-03) p.label {
	color: #ffffff;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-02 p.label {
	background-color: #170e85;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-03 p.label {
	background-color: #e5518a;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row p.label span {
	display: block;
	width: 1rem;
	writing-mode: vertical-rl;
	white-space: pre;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row p.body {
	width: calc(100% - 40px);
	padding: 20px;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-01 p.body {
	background-color: #ffffff80;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-02 p.body {
	background-color: #ffffffbf;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row-03 p.body {
	background-color: #ffffff;
}
main section.grade div.block-pattern div.pattern div.segment div.list div.row p.arrow {
	width: 30px;
	height: 30px;
	margin: 5px;
}
main section.grade div.block-point div.list div.row:has(p.image) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section.grade div.block-point div.list div.row:not(:last-child) {
	border-bottom: 2px dotted #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section.grade div.block-point div.list div.row:has(p.image) div.text {
	width: calc(100% - 270px);
}
body.class-02-01 main section.grade div.block-point div.list div.row-01 div.text {
	width: calc(100% - 290px);
}
body.class-02-01 main section.grade div.block-point div.list div.row-02 div.text {
	width: calc(100% - 330px);
}
body.class-02-01 main section.grade div.block-point div.list div.row-03 div.text {
	width: calc(100% - 305px);
}
body.class-03-01 main section.grade div.block-point div.list div.row-01 div.text {
	width: calc(100% - 350px);
}
body.class-03-01 main section.grade div.block-point div.list div.row-02 div.text {
	width: calc(100% - 290px);
}
main section.grade div.block-point div.list div.row div.text h4 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section.grade div.block-point div.list div.row p.image {
	width: 230px;
}
body.class-02-01 main section.grade div.block-point div.list div.row-01 p.image {
	width: 250px;
}
body.class-02-01 main section.grade div.block-point div.list div.row-02 p.image {
	width: 290px;
}
body.class-02-01 main section.grade div.block-point div.list div.row-03 p.image {
	width: 265px;
}
body.class-03-01 main section.grade div.block-point div.list div.row-01 p.image {
	width: 310px;
}
body.class-03-01 main section.grade div.block-point div.list div.row-02 p.image {
	width: 250px;
}
main section.grade div.block-flow div.flow {
	position: relative;
}
main section.grade div.block-flow div.flow div.segment {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section.grade div.block-flow div.flow div.segment:not(.segment-last) {
	margin-bottom: 2px;
}
main section.grade div.block-flow div.flow div.segment p.month {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 80px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment p.month {
	background-color: #7fc5c6;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment p.month {
	background-color: #73c8f1;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment p.month {
	background-color: #8f9bc9;
}
main section.grade div.block-flow div.flow div.segment p.month span {
	display: block;
}
main section.grade div.block-flow div.flow div.segment p.month span i {
	display: inline-block;
	font-size: 1.5rem;
}
main section.grade div.block-flow div.flow div.segment div.list {
	width: calc(100% - 82px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row {
	position: relative;
	height: 40px;
	background-color: #f5f5f5;
}
main section.grade div.block-flow div.flow div.segment div.list div.row:not(:last-child) {
	margin-bottom: 2px;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	z-index: 1;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event:not(.event-05) {
	padding: 8px 0px 0px 60px;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-02 {
	color: #170e85;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-03 {
	color: #0068c5;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 {
	color: #54b2b3;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 {
	color: #44b5ec;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 {
	color: #6a79b7;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	color: #ffffff;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 {
	background-color: #408ed4;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 {
	background-color: #6a79b7;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 {
	background-color: #e5518a;
}
main section.grade div.block-flow div.flow:has(div.period) div.segment div.list div.row p.event-05 {
	width: calc(100% - 200px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event.width-half {
	width: 50%;
}
main section.grade div.block-flow div.flow:has(div.period) div.segment div.list div.row p.event.width-half {
	width: calc(50% - 100px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event.width-half:nth-child(2) {
	left: 50%;
}
main section.grade div.block-flow div.flow:has(div.period) div.segment div.list div.row p.event.width-half:nth-child(2) {
	left: calc(50% - 100px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05.height-double {
	height: calc(200% + 2px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05.height-triple {
	height: calc(300% + 4px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event.slide-half {
	transform: translateY(20px);
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event:not(.event-05)::before,
main section.grade div.block-flow div.flow div.segment div.list div.row p.event:not(.event-05)::after {
	position: absolute;
	content: "";
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event:not(.event-05)::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 20px;
	top: 15px;
	content: "";
	border-radius: 50%;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-01::before {
	background-color: #1e1e1e;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-02::before {
	background-color: #170e85;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-03::before {
	background-color: #0068c5;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::before {
	background-color: #54b2b3;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::before {
	background-color: #44b5ec;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::before {
	background-color: #6a79b7;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event:not(.event-05)::after {
	width: 20px;
	height: 0px;
	left: 37px;
	top: 20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-01::after {
	border-color: #1e1e1e;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-02::after {
	border-color: #170e85;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-03::after {
	border-color: #0068c5;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::after {
	border-color: #54b2b3;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::after {
	border-color: #44b5ec;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04::after {
	border-color: #6a79b7;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event span {
	display: block;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event span:not(:last-child) {
	margin-right: 10px;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event span.grade {
	font-size: 0.875rem;
	color: #ffffff;
	padding: 0px 10px;
	border-radius: 5px;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-01 span.grade {
	background-color: #1e1e1e;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-02 span.grade {
	background-color: #170e85;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-03 span.grade {
	background-color: #0068c5;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 span.grade {
	background-color: #54b2b3;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 span.grade {
	background-color: #44b5ec;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-04 span.grade {
	background-color: #6a79b7;
}
main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 span.grade {
	background-color: #ffffff;
}
body.class-01-03 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 span.grade {
	color: #408ed4;
}
body.class-02-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 span.grade {
	color: #6a79b7;
}
body.class-03-01 main section.grade div.block-flow div.flow div.segment div.list div.row p.event-05 span.grade {
	color: #e5518a;
}
main section.grade div.block-flow div.flow div.period {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 160px;
	z-index: 1;
}
main section.grade div.block-flow div.flow div.period div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	padding-top: 30px;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-01,
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-01::before {
	background-color: #a1daf5;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-02,
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-02::before {
	background-color: #73c8f1;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-03,
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-03::before {
	background-color: #44b5ec;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-01,
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-01::before {
	background-color: #dadded;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-02,
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-02::before {
	background-color: #b4bcdb;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-03,
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-03::before {
	background-color: #8f9bc9;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-04,
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-04::before {
	background-color: #6a79b7;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-01 {
	height: calc(42px * 11);
	z-index: 2;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-02 {
	height: calc(42px * 13);
	z-index: 1;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row-03 {
	height: calc(42px * 7.25);
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-01 {
	height: calc(42px * 3);
	z-index: 3;
	color: #6a79b7;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-02 {
	height: calc(42px * 5);
	z-index: 2;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-03 {
	height: calc(42px * 2.25);
	z-index: 1;
	padding-top: 50px;
}
body.class-03-01 main section.grade div.block-flow div.flow div.period div.list div.row-04 {
	height: calc(42px * 4.75);
}
main section.grade div.block-flow div.flow div.period div.list div.row::before {
	position: absolute;
	width: 100%;
	height: 35.5px;
	left: 0px;
	bottom: -35px;
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 100% 25%, 50% 100%, 0% 25%);
}
main section.grade div.block-flow div.flow div.period div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 140px;
	font-size: 1.125rem;
	line-height: 1.5rem;
	margin-bottom: 10px;
	padding: 8px 10px;
	background-color: #ffffff;
	border-radius: 20px;
}
body.class-02-01 main section.grade div.block-flow div.flow div.period div.list div.row h4 {
	color: #44b5ec;
}
main section.grade div.block-flow div.flow div.period div.list div.row p.main {
	font-size: 1.125rem;
	line-height: 1.5rem;
}
main section.grade div.block-writing div.writing {
	padding: 40px;
	border-radius: 10px;
}
main section.grade div.block-writing div.writing:not(:last-child) {
	margin-bottom: 20px;
}
body.class-01-03 main section.grade div.block-writing div.writing {
	background-color: #eaf5f5;
}
body.class-03-01 main section.grade div.block-writing div.writing {
	background-color: #eceef6;
}
main section.grade div.block-writing div.writing p.headline,
main section.grade div.block-writing div.writing p.headline span {
	display: flex;
	flex-wrap: wrap;
}
main section.grade div.block-writing div.writing p.headline {
	width: 280px;
	height: 40px;
	overflow: hidden;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: -20px;
	border-radius: 20px;
	transform: translateY(-60px);
}
main section.grade div.block-writing div.writing p.headline span {
	justify-content: center;
	align-items: center;
}
main section.grade div.block-writing div.writing p.headline span.grade {
	width: 130px;
	color: #ffffff;
}
body.class-01-03 main section.grade div.block-writing div.writing p.headline span.grade {
	background-color: #7fc5c6;
}
body.class-03-01 main section.grade div.block-writing div.writing p.headline span.grade {
	background-color: #8f9bc9;
}
main section.grade div.block-writing div.writing p.headline span.period {
	width: 150px;
}
body.class-01-03 main section.grade div.block-writing div.writing p.headline span.period {
	background-color: #d4ecec;
}
body.class-03-01 main section.grade div.block-writing div.writing p.headline span.period {
	background-color: #dadded;
}
main section.grade div.block-writing div.writing h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
main section.grade div.block-writing div.writing h3 span {
	display: block;
	font-weight: 500;
}
main section.grade div.block-writing div.writing h3 span.sub {
	font-size: 1.25rem;
	margin-right: 20px;
}
main section.grade div.block-writing div.writing h3 span.main {
	font-size: 2.25rem;
	line-height: 2.75rem;
}
body.class-01-03 main section.grade div.block-writing div.writing h3 span.main,
body.class-01-03 main section.grade div.block-writing div.writing div.image-text div.text h4 {
	color: #54b2b3;
}
body.class-03-01 main section.grade div.block-writing div.writing h3 span.main,
body.class-03-01 main section.grade div.block-writing div.writing div.image-text div.text h4 {
	color: #0068c5;
}
main section.grade div.block-writing div.writing div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section.grade div.block-writing div.writing div.image-text div.text {
	width: calc(100% - 360px);
}
main section.grade div.block-writing div.writing div.image-text div.text h4 {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.25rem;
	margin-bottom: 10px;
}
main section.grade div.block-writing div.writing div.image-text :where(div.image, p.image) {
	width: 320px;
}
main section.grade div.block-voice h3 {
	position: relative;
	z-index: 1;
	margin-bottom: -20px;
}
main section.grade div.block-voice div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
main section.grade div.block-voice div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
main section.grade div.block-voice div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section.grade div.block-voice div.list div.row div.balloon,
main section.grade div.block-voice div.list div.row div.balloon::before {
	background-color: #ec7da7;
}
main section.grade div.block-voice div.list div.row div.balloon {
	position: relative;
	width: calc(100% - 180px);
	color: #ffffff;
	padding: 40px;
	border-radius: 10px;
}
main section.grade div.block-voice div.list div.row div.balloon::before {
	position: absolute;
	width: 30px;
	height: 30px;
	bottom: 80px;
	content: "";
	clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
main section.grade div.block-voice div.list div.row:nth-child(2n+1) div.balloon::before {
	right: -29px;
}
main section.grade div.block-voice div.list div.row:nth-child(2n) div.balloon::before {
	left: -29px;
	transform: scaleX(-1);
}
main section.grade div.block-voice div.list div.row div.balloon h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin-bottom: 10px;
}
main section.grade div.block-voice div.list div.row div.student {
	width: 140px;
	padding-bottom: 20px;
}
main section.grade div.block-voice div.list div.row div.student p.icon {
	aspect-ratio: 1;
	width: 120px;
	overflow: hidden;
	margin: 0px auto 10px auto;
	background-color: #e8f6fd;
	border-radius: 50%;
}
main section.grade div.block-voice div.list div.row div.student p.icon img {
	width: 100%;
}
main section.grade div.block-voice div.list div.row div.student p.name {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
}

/* message
-------------------------------------------------------------------------------- */

main section#message div.background {
	background: linear-gradient(135deg, #f8d3e2 0%, #bfd9f0 40%, #d0ecfa 60%, #d4ecec 100%);
	/* background: linear-gradient(135deg, #f8d3e2 0%, #dadded 33.33%, #d0ecfa 66.66%, #d4ecec 100%); */
}
main section#message div.inner-section {
	padding-top: 60px;
}
main section#message header {
	position: relative;
	height: calc(100svh - 320px);
	min-height: 600px;
	margin: 0px calc(50% - 50vw) 120px calc(50% - 50vw);
}
body.admin-bar main section#message header {
	height: calc(100svh - 352px);
}
main section#message header h2 {
	text-align: center;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 3.25rem;
	font-weight: 500;
	line-height: 5.5rem;
	color: #170e85;
}
main section#message header p.image-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
}
main section#message header p.image-main img {
	width: 100%;
	max-width: 1600px;
}
main section#message p.name {
	display: flex;
	flex-wrap: wrap;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-weight: 500;
	margin-bottom: 40px;
}
main section#message p.name span {
	display: block;
}
main section#message p.name span:not(:last-child) {
	margin-right: 20px;
}
main section#message p.name span.sub {
	font-size: 1.125rem;
	transform: translateY(1px);
}
main section#message p.name span.main {
	font-size: 1.5rem;
}
main section#message div.description {
	margin-bottom: 120px;
}
main section#message div.description p.row {
	line-height: 2.5rem;
}
main section#message div.description p.row:not(:last-child) {
	margin-bottom: 2.5rem;
}

/* reason
-------------------------------------------------------------------------------- */

main section#reason div.block,
main section#reason div.block div.inner-block {
	position: relative;
}
main section#reason div.block {
	margin-bottom: 0px;
}
main section#reason div:where(.block-02, .block-04, .block-06)::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background: linear-gradient(135deg, #f8d3e2 0%, #bfd9f0 40%, #d0ecfa 60%, #d4ecec 100%);
	/* background: linear-gradient(135deg, #f8d3e2 0%, #dadded 33.33%, #d0ecfa 66.66%, #d4ecec 100%); */
	content: "";
}
main section#reason div.block:not(:last-child) div.inner-block {
	padding-bottom: 120px;
}
main section#reason div.block div.header {
	margin: 0px -100px 40px -100px;
}
main section#reason div.block div.header :where(p.number, h2) {
	position: relative;
}
main section#reason div.block div.header p.number {
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 7.5rem;
	line-height: 7.5rem;
	color: #ffffff;
	margin: -170px 0px 10px 0px;
	-webkit-text-stroke: 3px #170e85;
  paint-order: stroke;
}
main section#reason div.block div.header h2 {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 500;
	color: #170e85;
}
main section#reason div.block div.header h2 span,
main section#reason div.block div.header h2 span i {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#reason div.block div.header h2 span:not(:last-child) {
	margin-bottom: 10px;
}
main section#reason div.block div.header h2 span i {
	align-items: center;
	height: 80px;
	margin: 0px auto;
	padding: 0px 40px;
	border-radius: 40px;
}
main section#reason div.block:where(.block-01, .block-03, .block-05) div.header h2 span i {
	background: linear-gradient(135deg, #f8d3e2 0%, #bfd9f0 40%, #d0ecfa 60%, #d4ecec 100%);
	/* background: linear-gradient(135deg, #f8d3e2 0%, #dadded 33.33%, #d0ecfa 66.66%, #d4ecec 100%); */
}
main section#reason div.block:where(.block-02, .block-04, .block-06) div.header h2 span i {
	background-color: #ffffff;
}
main section#reason div.block div.list:not(:last-child) {
	margin-bottom: 40px;
}
main section#reason div.block div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#reason div.block div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#reason div.block div.list div.row div.text {
	width: calc(100% - 320px);
}
main section#reason div.block-02 div.list div.row div.text {
	width: calc(100% - 370px);
}
main section#reason div.block-03 div.list div.row div.text {
	width: calc(100% - 410px);
}
main section#reason div.block div.list div.row div.text h3,
main section#reason div.block div.lecturer h3 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section#reason div.block div.list div.row p.image {
	width: 280px;
}
main section#reason div.block-02 div.list div.row p.image {
	width: 335px;
}
main section#reason div.block-03 div.list div.row p.image {
	width: 370px;
}
main section#reason div.block-04 div.list div.row:nth-child(2) p.image,
main section#reason div.block-06 div.list div.row p.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: relative;
}
main section#reason div.block-04 div.list div.row:nth-child(2) p.image img {
	width: 170px;
}
main section#reason div.block-04 div.list div.row:nth-child(2) p.image span,
main section#reason div.block-06 div.list div.row p.image span {
	position: absolute;
	left: 0px;
	top: 20px;
	font-weight: 500;
	line-height: 1.5rem;
	color: #ffffff;
	padding: 15px 20px;
	background-color: #170e8580;
	border-radius: 10px;
}
main section#reason div.block-04 div.list div.row:nth-child(2) p.image span::before,
main section#reason div.block-06 div.list div.row p.image span::before {
	position: absolute;
	width: 15px;
	height: 15px;
	right: -15px;
	top: calc(50% - 7.5px);
	background-color: #170e8580;
	content: "";
	clip-path: polygon(0% 12.5%, 100% 0%, 0% 100%);
}
main section#reason div.block-06 div.list div.row p.image img {
	width: 90px;
}
main section#reason div.block div.lecturer {
	margin: 0px -100px;
	padding: 0px 100px 40px 100px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#reason div.block div.lecturer p.image {
	margin-bottom: 40px;
}
main section#reason div#banner-pass-record {
	margin-bottom: 120px;
}

/* qa
-------------------------------------------------------------------------------- */

main section#qa div.background {
	background-color: #e8f6fd;
}
main section#qa div.inner-section {
	padding-bottom: 240px;
}
main section#qa div.block h2 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #170e85;
	margin-bottom: 40px;
}
main section#qa div.block div.list div.row {
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#qa div.block div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#qa div.block div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 100px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	padding: 20px;
}
main section#qa div.block-01 div.list div.row h3 {
	background-color: #408ed4;
}
main section#qa div.block-02 div.list div.row h3 {
	background-color: #7fc5c6;
}
main section#qa div.block-03 div.list div.row h3 {
	background-color: #8f9bc9;
}
main section#qa div.block div.list div.row h3 span.icon {
	position: absolute;
	width: 100px;
	height: 100px;
	left: 10px;
	bottom: 0px;
}
main section#qa div.block div.list div.row h3 i {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 20px;
	top: calc(50% - 10px);
}
main section#qa div.block div.list div.row h3 i::before,
main section#qa div.block div.list div.row h3 i::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #ffffff;
	content: "";
	transition: 0.25s opacity ease, 0.25s transform ease;
}
main section#qa div.block div.list div.row h3 i::after {
	transform: rotate(90deg);
}
main section#qa div.block div.list div.row.open h3 i::before {
	opacity: 0;
	transform: rotate(90deg);
}
main section#qa div.block div.list div.row.open h3 i::after {
	transform: rotate(180deg);
}
main section#qa div.block div.list div.row div.body {
	height: 0px;
	overflow: hidden;
}
main section#qa div.block div.list div.row div.body div.inner-body {
	padding: 20px;
}
main section#qa div.block div.list div.row div.body span.emphasis {
	font-weight: 500;
	color: #170e85;
}

/* gallery
-------------------------------------------------------------------------------- */

main section#gallery div.block div.header {
	margin-bottom: 60px;
}
main section#gallery div.block div.header div.image-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 590px;
	margin: 0px -100px;
	background: url(../images/gallery-background.png) no-repeat center;
	background-size: contain;
}
main section#gallery div.block div.header p.image {
	width: 700px;
}
main section#gallery div.block div.header h2 {
	font-size: 2.25rem;
	font-weight: 500;
	color: #170e85;
}
main section#gallery div.block div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#gallery div.block div.list div.row div.image {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -20px 0px;
}
main section#gallery div.block div.list div.row div.image p.row {
	width: calc(50% - 40px);
	margin: 0px 40px 40px 0px;
}
main section#gallery div.block div.list div.row h3 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}

/* cm
-------------------------------------------------------------------------------- */

main section#cm header {
	margin-bottom: 80px;
}
main section#cm header p.image {
	margin: 0px -100px 80px -100px;
}
main section#cm div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 120px;
}
main section#cm div.image-text div.text h2 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section#cm div.image-text div.text {
	width: calc(100% - 380px);
}
main section#cm div.image-text div.text ul li:not(:last-child) {
	margin-bottom: 10px;
}
main section#cm div.image-text div.text ul li::before {
	background-color: #170e85;
}
main section#cm div.image-text p.image {
	width: 320px;
}
main section#cm h2 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #170e85;
	margin-bottom: 40px;
}
main section#cm div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -140px -40px -100px;
}
main section#cm div.list div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
}
main section#cm div.list div.row p.image {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 10px;
	border-radius: 10px;
}
main section#cm div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#cm div.list div.row p.image span {
	position: absolute;
	width: 60px;
	height: 60px;
	left: calc(50% - 30px);
	top: calc(50% - 30px);
	border: 1px solid #ffffff;
	border-radius: 50%;
	opacity: 0.625;
	transition: 0.25s opacity ease;
}
main section#cm div.list div.row a:hover p.image span {
	opacity: 1;
}
main section#cm div.list div.row p.image span::before {
	position: absolute;
	width: 26px;
	height: 30px;
	left: calc(50% - 9px);
	top: calc(50% - 15px);
	background-color: #ffffff;
	content: "";
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
main section#cm div.list div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: #170e85;
}
main section#cm div.list div.row p.time {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

/* pass-record
-------------------------------------------------------------------------------- */

main section#pass-record div.background {
	background: linear-gradient(45deg, #fce9f0 0%, #f8d3e2 50%, #fce9f0 100%);
}
main section#pass-record div.inner-section {
	padding-bottom: 240px;
}
main section#pass-record div.block p.year {
	text-align: center;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 500;
	color: #e5518a;
	margin-bottom: 10px;
}
main section#pass-record div.block h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
main section#pass-record div.block h2 span.main {
	display: block;
	font-size: 3.25rem;
	font-weight: 500;
	line-height: 4.5rem;
	color: #e5518a;
	margin-right: 20px;
}
main section#pass-record div.block h2 span.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 500;
	color: #ffffff;
	padding: 0px 15px 2px 15px;
	background-color: #e5518a;
	border-radius: 5px;
}
main section#pass-record div.block div.list-school-large {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -100px 60px -100px;
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row,
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.name,
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#pass-record div.block div.list-school-large div.row,
main section#pass-record div.block div.list-school-large div.row p.name,
main section#pass-record div.block div.list-school-large div.row p.number {
	justify-content: center;
}
main section#pass-record div.block div.list-school-large div.row {
	aspect-ratio: 1;
	width: 220px;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin: 0px 10px 20px 10px;
	background: url(../images/background-pass-record.svg) no-repeat center;
	background-size: 100% auto;
	transform: scale(0.375);
}
main section#pass-record div.block div.list-school-large.active div.row {
	transform: scale(1);
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.name {
	font-weight: 500;
	color: #170e85;
}
main section#pass-record div.block div.list-school-large div.row p.name {
	width: calc(1.5rem * 6);
	height: 3.5rem;
	font-size: 1.5rem;
	line-height: 1.75rem;
	margin: 0px auto 10px auto;
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.number {
	color: #e5518a;
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.number span {
	display: block;
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.number span.main {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-weight: 700;
}
main section#pass-record div.block div.list-school-large div.row p.number span.main {
	font-size: 3.25rem;
}
main section#pass-record div.block div:where(.list-school-large, .list-school) div.row p.number span.sub {
	font-weight: 500;
}
main section#pass-record div.block div.list-school-large div.row p.number span.sub {
	font-size: 1.5rem;
	transform: translateY(12px);
}
main section#pass-record div.block div.list-school {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px 80px 0px;
}
main section#pass-record div.block div.list-school div.row {
	width: calc(33.33% - 20px);
	height: 60px;
	border-bottom: 1px solid #170e85;
	margin-right: 20px;
}
main section#pass-record div.block div.list-school div.row:where(:nth-child(1), :nth-child(2), :nth-child(3)) {
	border-top: 1px solid #170e85;
}
main section#pass-record div.block div.list-school div.row p.name {
	width: calc(100% - 80px);
	font-size: 1.25rem;
	line-height: 1.5rem;
}
main section#pass-record div.block div.list-school div.row p.number {
	justify-content: flex-end;
	width: 80px;
}
main section#pass-record div.block div.list-school div.row p.number span.main {
	font-size: 2.5rem;
}
main section#pass-record div.block div.list-school div.row p.number span.sub {
	font-size: 1.25rem;
	transform: translateY(8px);
}
main section#pass-record div.block div.list-voice div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	border: 4px dotted #f2a8c4;
	padding: 40px;
	background: #ffffff url(../images/background-voice.jpg) no-repeat center top;
	background-size: cover;
	border-radius: 10px;
}
main section#pass-record div.block div.list-voice div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#pass-record div.block div.list-voice div.row p.badge {
	position: absolute;
	width: 115px;
	left: 42.5px;
	top: 20px;
}
main section#pass-record div.block div.list-voice div.row p.badge img {
	width: 100%;
}
main section#pass-record div.block div.list-voice div.row div.student {
	width: 120px;
	text-align: center;
	padding-top: 120px;
}
main section#pass-record div.block div.list-voice div.row div.student p.icon {
	width: 90px;
	margin: 0px auto;
}
main section#pass-record div.block div.list-voice div.row div.student p.school {
	font-weight: 500;
	line-height: 1.25rem;
	color: #ffffff;
	margin-bottom: 5px;
	padding: 5px 10px;
	background-color: #170e85;
	border-radius: 15px;
}
main section#pass-record div.block div.list-voice div.row div.student p.name {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
}
main section#pass-record div.block div.list-voice div.row div.body {
	width: calc(100% - 160px);
}
main section#pass-record div.block div.list-voice div.row div.body h3 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
	color: #170e85;
	margin-bottom: 10px;
}

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

main div.list-category {
	margin-bottom: 80px;
}
main div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -10px -10px 0px;
}
main div.list-category ul li {
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-weight: 500;
	margin: 0px 10px 10px 0px;
}
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 30px;
	color: #170e85;
	padding: 0px 15px;
	border-radius: 15px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	color: #ffffff;
	background-color: #170e85;
}
main div.created-category,
main div.created-category div.category ul,
main div.created-category div.category ul li {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category {
	align-items: center;
}
main div.created-category p.created {
	width: 110px;
	font-family: "Montserrat", sans-serif;
}
main div.created-category div.category {
	width: calc(100% - 110px);
}
main div.created-category div.category ul {
	margin: 0px -10px -10px 0px;
}
main div.created-category div.category ul li {
	justify-content: center;
	align-items: center;
	height: 25px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: #170e85;
	border: 1px solid #170e85;
	margin: 0px 10px 10px 0px;
	padding: 0px 12.5px;
	background-color: #ffffff;
	border-radius: 12.5px;
}
main div.list-news-event div.row a {
	display: block;
	border-bottom: 1px solid #d9d9d9;
	padding: 25px 20px;
	transition: 0.25s background-color ease;
}
main div.list-news-event div.row:first-child a {
	border-top: 1px solid #d9d9d9;
}
main div.list-news-event div.row a:hover {
	background-color: #f5f5f5;
}
main div.list-news-event div.row div.created-category {
	margin-bottom: 10px;
}
main div.list-news-event div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #170e85;
	transition: 0.25s color ease;
}
main div.list-news-event div.row a:hover h3 {
	color: #0068c5;
}
main article.news_event:not(:last-child) {
	margin-bottom: 80px;
}
main article.news_event header {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 60px;
	padding-bottom: 20px;
}
main article.news_event header h1 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.5rem;
}
main article.news_event header div.created-category {
	margin-bottom: 10px;
}

/* banner
-------------------------------------------------------------------------------- */

main div.list-banner {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -20px -40px 0px;
}
main div.list-banner div.row {
	width: calc(33.33% - 20px);
	color: #170e85;
	margin: 0px 20px 40px 0px;
}
main div.list-banner div.row p.image {
	margin-bottom: 10px;
	border-radius: 10px;
}
main div.list-banner div.row h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
}

/* access
-------------------------------------------------------------------------------- */

main section#access div.background {
	background-color: #e8f6fd;
}
main section#access div.inner-section {
	padding-top: 0px;
}
main section#access div.block,
main section#access div.block div.inner-block {
	position: relative;
}
main section#access div.block {
	padding-top: 120px;
}
main section#access div.block-parking::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #ffffff;
	content: "";
}
main section#access div.block-access div.information-transportation {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
main section#access div.block-access div.information-transportation div.information p.logo {
	margin-bottom: 20px;
}
main section#access div.block-access div.information-transportation div.information p.logo img {
	width: calc(189px * 1.5);
}
main section#access div.block-access div.information-transportation div.information p.tel {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
main section#access div.block-access div.information-transportation div.information p.tel span {
	display: block;
}
main section#access div.block-access div.information-transportation div.information p.tel span:not(:last-child) {
	margin-right: 20px;
}
main section#access div.block-access div.information-transportation div.information div.contact p:where(.label, .number) {
	font-weight: 500;
	color: #170e85;
}
main section#access div.block-access div.information-transportation div.information div.contact p.label {
	font-size: 1.125rem;
}
main section#access div.block-access div.information-transportation div.information div.contact p.number {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	line-height: 2.75rem;
}
main section#access div.block-access div.information-transportation div.information div.contact p.number i.icon {
	display: inline-block;
	font-size: 1.875rem;
	font-weight: 400;
	margin-right: 5px;
	transform: translateY(1px);
}
main section#access div.block-access div.information-transportation div.information div.contact p.time {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#access div.block-access div.information-transportation div.transportation {
	width: calc(100% - 480px);
}
main section#access div.block-access div.information-transportation div.transportation div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#access div.block-access div.information-transportation div.transportation div.list div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 5px;
}
main section#access div.block-access div.information-transportation div.transportation div.list div.row h3 i.icon {
	display: inline-block;
	font-size: 1.625rem;
	font-weight: 400;
	margin-right: 10px;
	transform: translateY(4px);
}
main section#access div.block-access div.map {
	margin: 0px -100px;
}
main section#access div.block-access div.map iframe {
	width: 100%;
	height: 560px;
}
main section#access div.block-parking h2 {
	font-size: 1.5rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section#access div.block-parking :where(p.description, p.map) {
	margin-bottom: 40px;
}
main section#access div.block-parking p.map img {
	width: 100%;
}
main section#access div.block-parking div.notice {
	padding: 40px;
	background-color: #f0f0f7;
	border-radius: 10px;
}
main section#access div.block-parking div.notice h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}
main section#access div.block-parking div.notice h3 i {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	color: #ffffff;
	margin-right: 5px;
	background-color: #f7a547;
	border-radius: 50%;
}
main section#access div.block-parking div.notice ul {
	margin-bottom: 20px;
}
main section#access div.block-parking div.notice p.explanation i.icon {
	display: inline-block;
	font-size: 1.625rem;
	color: #170e85;
	margin-right: 10px;
	transform: translateY(4px);
}

/* flow
-------------------------------------------------------------------------------- */

main section#flow div.background {
	background-color: #e8f6fd;
}
main section#flow::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 120px);
	left: 0px;
	top: 0px;
	background-color: #e8f6fd;
	content: "";
}
main section#flow div.block-summary p.illust {
	position: absolute;
	width: 80px;
	right: 20px;
	top: 80px;
}
main section#flow div.block-flow div.list div.row {
	position: relative;
}
main section#flow div.block-flow div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#flow div.block-flow div.list div.row:not(:last-child)::before,
main section#flow div.block-flow div.list div.row:not(:last-child)::after {
	position: absolute;
	width: 40px;
	height: 0px;
	bottom: -50px;
	border-bottom: 4px dotted #44b5ec;
	content: "";
}
main section#flow div.block-flow div.list div.row:not(:last-child)::before {
	right: calc(50% - 1px);
	transform-origin: right bottom;
	transform: rotate(22.5deg);
}
main section#flow div.block-flow div.list div.row:not(:last-child)::after {
	left: calc(50% - 1px);
	transform-origin: left bottom;
	transform: rotate(-22.5deg);
}
main section#flow div.block-flow div.list div.row p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#flow div.block-flow div.list div.row p.headline span {
	display: block;
}
main section#flow div.block-flow div.list div.row p.headline span.sub {
	font-size: 1.25rem;
	color: #170e85;
	margin-right: 10px;
}
main section#flow div.block-flow div.list div.row p.headline span.main {
	font-size: 4.5rem;
	line-height: 4.5rem;
	color: #ffffff;
	-webkit-text-stroke: 3px #170e85;
  paint-order: stroke;
}
main section#flow div.block-flow div.list div.row h3 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 2.25rem;
	color: #170e85;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#flow div.block-flow div.list div.row div.icon-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#flow div.block-flow div.list div.row div.icon-text:not(:last-child),
main section#flow div.block-flow div.list div.row div.icon-text div.text p.description:not(:last-child) {
	margin-bottom: 40px;
}
main section#flow div.block-flow div.list div.row div.icon-text p.icon {
	aspect-ratio: 1;
	width: 100px;
	border: 2px solid #38b8ef;
	background-color: #ffffff;
	border-radius: 50%;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text {
	width: calc(100% - 140px);
}
main section#flow div.block-flow div.list div.row div.icon-text div.text ul,
main section#flow div.block-flow div.list div.row div.icon-text div.text ul li {
	display: flex;
	flex-wrap: wrap;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text ul {
	margin: 0px -10px -10px 0px;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text ul li {
	justify-content: center;
	align-items: center;
	width: calc(50% - 10px);
	height: 40px;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	margin: 0px 10px 10px 0px;
	background-color: #44b5ec;
	border-radius: 5px;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #170e85;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact p:where(.label, .number) {
	font-weight: 500;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact p.label {
	font-size: 1.125rem;
	margin-right: 20px;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact p.number {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	line-height: 2.75rem;
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact p.number i.icon {
	display: inline-block;
	font-size: 1.875rem;
	font-weight: 400;
	margin-right: 5px;
	transform: translateY(1px);
}
main section#flow div.block-flow div.list div.row div.icon-text div.text div.contact p.time {
	width: 100%;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#flow div.block-flow div.list div.row div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#flow div.block-flow div.list div.row div.button-wrapper p.button-default:not(:last-child) {
	margin-right: 20px;
}

/* students
-------------------------------------------------------------------------------- */

main div.list-document div.row a {
	display: block;
	position: relative;
	border-bottom: 1px solid #d9d9d9;
	padding: 25px 100px 25px 20px;
	background-color: #ffffff;
	transition: 0.25s background-color ease;
}
main div.list-document div.row:first-child a {
	border-top: 1px solid #d9d9d9;
}
main div.list-document div.row a:hover {
	background-color: #f5f5f5;
}
main div.list-document div.row p.created {
	font-family: "Montserrat", sans-serif;
	margin-bottom: 5px;
}
main div.list-document div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #170e85;
	transition: 0.25s color ease;
}
main div.list-document div.row a:hover h3 {
	color: #0068c5;
}
main div.list-document div.row i.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 80px;
	height: calc(100% - 10px);
	right: 5px;
	top: 5px;
	font-size: 1.875rem;
	color: #170e85;
	background-color: #f0f0f7;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div.list-document div.row a:hover i.icon {
	color: #ffffff;
	background-color: #0068c5;
}
main section#students div.block,
main section#students div.block div.inner-block {
	position: relative;
}
main section#students div.block div.header {
	text-align: center;
	margin-bottom: 40px;
}
main section#students div.block div.header h2 {
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #170e85;
}
main section#students div.block div.header h2:not(:last-child) {
	margin-bottom: 20px;
}
main section#students div.block-calendar p.button-default {
	text-align: left;
	margin-bottom: 40px;
}
main section#students div.block-calendar p.button-default a {
	justify-content: flex-start;
	padding-left: 70px;
}
main section#students div.block-calendar p.button-default i.icon {
	position: absolute;
	left: 25px;
	top: calc(50% - 15px);
	font-size: 1.875rem;
	font-weight: 400;
}
main section#students div.block-calendar p.button-default span,
main section#students div.block-calendar p.button-default span i {
	display: block;
}
main section#students div.block-calendar p.button-default span i.date {
	font-size: 1rem;
	font-weight: 400;
}
main section#students div.block-calendar div.calendar {
	overflow: hidden;
	margin: 0px -100px;
	border-radius: 10px;
}
main section#students div.block-calendar div.calendar iframe {
	width: 100%;
	min-height: 640px;
}
main section#students div.block-document::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background-color: #e8f6fd;
	content: "";
}
main section#students div.block-document div.inner-block {
	padding: 120px 0px;
}
main section#students div.block-document div.login {
	width: 320px;
	margin: 0px auto;
}
main section#students div.block-document div.login div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
main section#students div.block-document div.login div.component p.label {
	width: 100px;
	font-weight: 500;
}
main section#students div.block-document div.login div.component div.body {
	width: calc(100% - 100px);
}
main section#students div.block-document div.login div.component div.body input[type=password] {
	width: 100%;
	background-color: #ffffff;
}
main section#students div.block-document div.login div.action button {
	width: 100%;
	height: 50px;
	border-radius: 25px;
}
main section#students div.block-document div.login div.action button i.icon {
	right: 10px;
}
main section#students div.block-document div.login p.fail {
	text-align: center;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #e6002d;
	padding-top: 10px;
}

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

main section.form header {
	margin-bottom: 40px;
}
main section.form header h2 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
}
main section.form div.header {
	text-align: center;
	margin-bottom: 80px;
}
main section.form div.header p.privacy-policy {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #170e85;
	padding-top: 20px;
}
main section.form div.header p.privacy-policy a {
	display: block;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	border-bottom: 1px solid #d9d9d9;
	padding: 40px 0px;
}
main section.form div.form div.component:first-child {
	border-top: 1px solid #d9d9d9;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 260px;
	height: 50px;
	font-weight: 500;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component p.label span.require {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 40px;
	height: 20px;
	right: 20px;
	top: calc(50% - 10px);
	font-size: 0.75rem;
	line-height: 1rem;
	color: #ffffff;
	background-color: #e6002d;
	border-radius: 5px;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component div.body {
	position: relative;
	width: calc(100% - 260px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -10px;
}
main section.form div.mw_wp_form_preview div.form div.component-radio-checkbox div.body {
	margin-bottom: 0px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body p.note {
	width: 100%;
	margin-top: 10px;
}
main section.form div.form div.component div.body:has(span.error) p.note {
	margin-top: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component div.body p.note {
	display: none;
}
main section.form div.form div.component-school div.body p.note {
	text-align: right;
}
main section.form div.form div.component div.body div.row {
	position: relative;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body p:where(.separate, .suffix) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 50px;
}
main section.form div.mw_wp_form_preview div.form div.component div.body p:where(.separate, .suffix) {
	display: block;
	width: auto;
	height: auto;
}
main section.form div.form div.component div.body p.separate {
	justify-content: center;
	width: 35px;
}
main section.form div.form div.component div.body p.suffix {
	justify-content: flex-end;
	width: 45px;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 10px 0px;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component-postal-code div.body div.row {
	width: 120px;
}
main section.form div.mw_wp_form_preview div.form div.component-postal-code div.body div.row:where(:nth-child(1), :nth-child(3)) {
	width: auto;
}
main section.form div.form div.component-postal-code div.body div.row:nth-child(3) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component-postal-code div.body div.row:nth-child(3) {
	margin-right: 0px;
}
main section.form div.form div.component-postal-code div.body p#button-auto {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 50px;
	text-align: center;
	font-weight: 500;
	line-height: 1.25rem;
	color: #ffffff;
	cursor: pointer;
	background-color: #170e85;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main section.form div.form div.component-postal-code div.body p#button-auto:hover {
	background-color: #0068c5;
}
main section.form div.mw_wp_form_preview div.form div.component-postal-code div.body p#button-auto {
	display: none;
}
main section.form div.form div.component-tel div.body div.row {
	width: 120px;
}
main section.form div.mw_wp_form_preview div.form div.component-tel div.body div.row {
	width: auto;
}
main section.form div.form div.component-school div.body div.row {
	position: relative;
}
main section.form div.form div.component-school div.body div.row:nth-child(1) {
	width: calc(100% - 300px);
}
main section.form div.form div.component-school div.body div.row:where(:nth-child(1), :nth-child(2)) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component-school div.body div.row:where(:nth-child(1), :nth-child(2), :nth-child(3)) {
	width: auto;
}
main section.form div.form div.component-school div.body div.row:nth-child(2) {
	width: 120px;
}
main section.form div.form div.component-school div.body div.row:nth-child(3) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80px;
}
main section.form div.form div.component-subject div.course {
	width: 100%;
	height: 0px;
	overflow: hidden;
}
main section.form div.mw_wp_form_preview div.form div.component-subject div.course {
	height: auto;
}
main section.form div.form div.component-subject div.course :where(p.headline, ul) {
	margin-bottom: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component-subject div.course :where(p.headline, ul) {
	display: none;
}
main section.form div.form div.component-subject div.course div.inner-course {
	padding-top: 20px;
}
main section.form div.mw_wp_form_preview div.form div.component-subject div.course div.inner-course {
	padding-top: 0px;
}
main section.form  div.formdiv.component-subject div.course p.headline {
	font-weight: 500;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 10px;
}
main section.form div.form div.component-subject div.course div.body-detail {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
main section.form div.mw_wp_form_preview div.form div.component-subject div.course div.body-detail {
	margin-bottom: 0px;
}
main section.form div.form div.component-course div.detail {
	width: 100%;
	height: 0px;
	overflow: hidden;
}
main section.form div.form div.component-course div.detail div.inner-detail {
	padding-top: 20px;
}
main section.form div.form div.component-course div.detail div.list div.row:not(:last-child),
main section.form div.form div.component-course div.detail div.list div.row-grade div.group:not(:last-child) {
	margin-bottom: 20px;
	padding-bottom: 20px;
}
main section.form div.form div.component-course div.detail div.list div.row:not(:last-child) {
	border-bottom: 1px solid #d9d9d9;
}
main section.form div.form div.component-course div.detail div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
}
main section.form div.form div.component-course div.detail div.list div.row h3 span {
	display: block;
}
main section.form div.form div.component-course div.detail div.list div.row h3 span:not(:last-child) {
	margin-right: 10px;
}
main section.form div.form div.component-course div.detail div.list div.row h3 span.main {
	font-size: 1rem;
	font-weight: 500;
}
main section.form div.form div.component-course div.detail div.list div.row h3 span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section.form div.form div.component-course div.detail div.list div.row div.group:has(p.label-detail) {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component-course div.detail div.list div.row div.group p.label-detail {
	width: 80px;
	font-weight: 500;
}
main section.form div.form div.component-course div.detail div.list div.row div.group div.body-detail {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
main section.form div.form div.component-course div.detail div.list div.row div.group:has(p.label-detail) div.body-detail {
	width: calc(100% - 80px);
}
main section.form div.form div.component-course div.detail div.list div.row div.group div.body-detail span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 10px 0px;
}
main section.form div.form div.component-course div.detail div.list div.row div.group div.body-detail span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component-course div.detail div.list div.row-grade div.group:not(:last-child) {
	border-bottom: 1px dotted #d9d9d9;
}
main section.form div.form div.component-course div.detail div.list div.row-style div.group:not(:last-child) {
	margin-bottom: 20px;
}
main section.form div.form div.component-course div.detail-alternate {
	display: none;
}
main section.form div.mw_wp_form_preview div.form div.component-course div.detail-alternate {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.mw_wp_form_preview div.form div.component-course div.detail-alternate div.row:not(:last-child) {
	margin-right: 20px;
}
main section.form div.form div.component div.body span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -1.25rem;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #e6002d;
}
main section.form div.form div.component-radio-checkbox div.body span.error {
	bottom: calc(-1.25rem + 10px);
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}

/* free-trial
-------------------------------------------------------------------------------- */

main section#free-trial {
	background: linear-gradient(135deg, #fce1c1 0%, #f8d3e2 100%);
}
main section#free-trial h2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	color: #170e85;
	margin-bottom: 60px;
}
main section#free-trial h2 span {
	display: block;
}
main section#free-trial h2 span.line {
	width: 0px;
	height: 50px;
	border-right: 4px solid #170e85;
}
main section#free-trial h2 span.line-left {
	transform: rotate(-30deg);
}
main section#free-trial h2 span.line-right {
	transform: rotate(30deg);
}
main section#free-trial h2 span.text {
	margin: 0px 30px;
}
main section#free-trial div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 280px;
	padding: 40px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#free-trial div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#free-trial div.list div.row p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 40px;
	top: -35px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
main section#free-trial div.list div.row p.headline span {
	display: block;
}
main section#free-trial div.list div.row p.headline span.sub {
	font-size: 1.25rem;
	color: #170e85;
	margin-right: 10px;
}
main section#free-trial div.list div.row p.headline span.main {
	font-size: 4.5rem;
	line-height: 4.5rem;
	color: #ffffff;
	-webkit-text-stroke: 3px #170e85;
  paint-order: stroke;
}
main section#free-trial div.list div.row h3 {
	position: relative;
	z-index: 1;
	font-size: 1.75rem;
	font-weight: 500;
	color: #170e85;
}
main section#free-trial div.list div.row h3 span,
main section#free-trial div.list div.row h3 span i {
	display: flex;
	flex-wrap: wrap;
}
main section#free-trial div.list div.row h3 span:not(:last-child) {
	margin-bottom: 10px;
}
main section#free-trial div.list div.row h3 span i {
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	border-radius: 30px;
}
main section#free-trial div.list div.row h3 span i {
	background: linear-gradient(135deg, #f8d3e2 0%, #bfd9f0 40%, #d0ecfa 60%, #d4ecec 100%);
	/* background: linear-gradient(135deg, #f8d3e2 0%, #dadded 33.33%, #d0ecfa 66.66%, #d4ecec 100%); */
}
main section#free-trial div.list div.row p.image {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 380px;
	height: calc(100% - 10px);
	border-radius: 0px 5px 5px 0px;
}
main section#free-trial div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

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

main section#recruit div.inner-section {
	padding-top: 60px;
}
main section#recruit header {
	position: relative;
	height: calc(100svh - 320px);
	min-height: 600px;
	margin: 0px calc(50% - 50vw) 120px calc(50% - 50vw);
}
body.admin-bar main section#recruit header {
	height: calc(100svh - 352px);
}
main section#recruit header h2 {
	position: relative;
	z-index: 1;
	text-align: center;
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 3.25rem;
	font-weight: 500;
	line-height: 5.5rem;
	color: #ffffff;
}
main section#recruit header p.image-main {
	position: absolute;
	width: 100%;
	height: calc(100% + 240px);
	left: 0px;
	bottom: 0px;
}
main section#recruit header p.image-main img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#recruit div.block,
main section#recruit div.block div.inner-block {
	position: relative;
}
main section#recruit div:where(.block-summary, .block-message) h3 {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #170e85;
	margin-bottom: 20px;
}
main section#recruit div.block-summary h3 {
	text-align: center;
}
main section#recruit div.block-summary p.description {
	line-height: 2.5rem;
	margin-bottom: 40px;
}
main section#recruit div:where(.block-schedule, .block-guideline)::before {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: calc(50% - 50vw);
	top: 0px;
	background: linear-gradient(135deg, #d0ecfa 0%, #d4ecec 100%);
	content: "";
}
main section#recruit div:where(.block-schedule, .block-guideline) div.inner-block {
	padding: 120px 0px;
}
main section#recruit div:where(.block-schedule, .block-company, .block-guideline) h3 {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 3rem;
	color: #170e85;
	margin-bottom: 40px;
}
main section#recruit div.block-schedule div.segment-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#recruit div.block-schedule div.segment {
	width: calc(50% - 20px);
}
main section#recruit div.block-schedule div.segment div.list {
	position: relative;
	padding-bottom: 20px;
}
main section#recruit div.block-schedule div.segment div.list::before,
main section#recruit div.block-schedule div.segment div.list::after {
	position: absolute;
	background-color: #ffffff80;
	content: "";
	opacity: 0;
	transition: 1.25s opacity 0.5s ease;
}
main section#recruit div.block-schedule div.segment div.list.active::before,
main section#recruit div.block-schedule div.segment div.list.active::after {
	opacity: 1;
}
main section#recruit div.block-schedule div.segment div.list::before {
	width: 20px;
	height: 100%;
	left: calc(50% - 10px);
	top: 0px;
}
main section#recruit div.block-schedule div.segment div.list::after {
	width: 60px;
	height: 30px;
	left: calc(50% - 30px);
	bottom: -30px;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
main section#recruit div.block-schedule div.segment div.list div.row {
	position: relative;
}
main section#recruit div.block-schedule div.segment div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#recruit div.block-schedule div.segment-01 div.list div.row-03:not(:last-child) {
	margin-bottom: 200px;
}
main section#recruit div.block-schedule div.segment-02 div.list div.row-01:not(:last-child) {
	margin-bottom: 160px;
}
main section#recruit div.block-schedule div.segment div.list div.row :where(h4, div.time-description, p.point) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section#recruit div.block-schedule div.segment div.list div.row h4 {
	height: 40px;
	font-size: 1.5rem;
	font-weight: 500;
	color: #ffffff;
	background-color: #170e85;
	border-radius: 20px;
}
main section#recruit div.block-schedule div.segment div.list div.row :where(div.time-description, p.point) {
	height: 80px;
	font-size: 1.125rem;
	font-weight: 500;
	border-radius: 40px;
}
main section#recruit div.block-schedule div.segment div.list div.row div.time-description {
	position: relative;
	height: 80px;
	line-height: 1.625rem;
	color: #170e85;
	border: 1px solid #170e85;
	padding: 0px 30px;
	background-color: #ffffff;
	border-radius: 40px;
}
main section#recruit div.block-schedule div.segment div.list div.row div.time-description::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 20px);
	left: 110px;
	top: 10px;
	border-right: 1px solid #170e85;
	content: "";
}
main section#recruit div.block-schedule div.segment div.list div.row div.time-description p.time {
	width: 100px;
}
main section#recruit div.block-schedule div.segment div.list div.row div.time-description p.description {
	width: calc(100% - 100px);
}
main section#recruit div.block-schedule div.segment div.list div.row p.point,
main section#recruit div.block-schedule div.segment div.list div.row p.point span {
	position: relative;
}
main section#recruit div.block-schedule div.segment div.list div.row p.point {
	overflow: hidden;
	color: #ffffff;
	background-color: #7fb3e2;
}
main section#recruit div.block-schedule div.segment div.list div.row p.point::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: url(../images/background-stripe.svg) repeat left top;
	background-size: 60px auto;
	content: "";
	opacity: 0.125;
}
main section#recruit div.block-schedule div.segment div.list div.row p.image {
	width: calc(100% - 80px);
	margin: 0px auto;
}
main section#recruit div.block-message {
	margin-left: -100px;
	margin-right: -100px;
	padding: 60px 100px;
	background: linear-gradient(135deg, #d0ecfa 0%, #d4ecec 100%);
	border-radius: 10px;
}
main section#recruit div.block-message p.label,
main section#recruit div.block-message p.label span {
	display: flex;
	flex-wrap: wrap;
}
main section#recruit div.block-message p.label {
	margin-bottom: 10px;
}
main section#recruit div.block-message p.label span {
	justify-content: center;
	align-items: center;
	height: 30px;
	font-weight: 500;
	line-height: 1.5rem;
	color: #170e85;
	padding: 0px 15px;
	background-color: #ffffff;
	border-radius: 15px;
}
main section#recruit div.block-message div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#recruit div.block-message div.text {
	width: calc(100% - 340px);
}
main section#recruit div.block-message h4 {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
	padding-left: 20px;
}
main section#recruit div.block-message h4::before {
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0px;
	top: 10px;
	background-color: #170e85;
	content: "";
	border-radius: 50%;
}
main section#recruit div.block-message p.image {
	width: 300px;
}
main section#recruit div:where(.block-company, .block-guideline) div.list div.row {
	display: flex;
	flex-wrap: wrap;
	padding: 25px 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
main section#recruit div:where(.block-company, .block-guideline) div.list div.row:first-child {
	border-top-width: 1px;
	border-top-style: solid;
}
main section#recruit div.block-company div.list div.row {
	border-color: #d9d9d9;
}
main section#recruit div:where(.block-company, .block-guideline) div.list div.row p.label {
	width: 120px;
	font-weight: 500;
	color: #170e85;
}
main section#recruit div:where(.block-company, .block-guideline) div.list div.row p.body {
	width: calc(100% - 120px);
}
main section#recruit div.block-guideline div.list div.row {
	border-color: #ffffff;
}

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

main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.25rem;
	font-weight: 500;
	color: #170e85;
	margin-bottom: 10px;
}



/* --------------------------------------------------------------------------------
modal
-------------------------------------------------------------------------------- */

div#modal {
	position: fixed;
	width: 100%;
	height: 0%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#modal.active {
	height: 100%;
	pointer-events: auto;
}
div#modal.fade {
	opacity: 1;
}
div#modal::before,
div#modal div.inner-modal {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#modal::before {
	background-color: #000000df;
	content: "";
}
div#modal div.inner-modal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#modal div.inner-modal p.button-close {
	position: absolute;
	width: 80px;
	height: 80px;
	right: 0px;
	top: 0px;
	z-index: 10;
	cursor: pointer;
}
body.admin-bar div#modal div.inner-modal p.button-close {
	top: 32px;
}
div#modal div.inner-modal p.button-close::before,
div#modal div.inner-modal p.button-close::after {
	position: absolute;
	width: 32px;
	height: 0px;
	left: calc(50% - 16px);
	top: calc(50% - 1px);
	border-bottom: 2px solid #ffffff;
	content: "";
}
div#modal div.inner-modal p.button-close::before {
	transform: rotate(37.5deg);
}
div#modal div.inner-modal p.button-close::after {
	transform: rotate(-37.5deg);
}
div#modal div.video {
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 1200px;
}
div#modal div.video iframe {
	width: 100%;
	height: 100%;
}



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

footer#footer div.contact {
	color: #170e85;
}
footer#footer div.contact h3 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 20px;
}
footer#footer div.contact div.tel,
footer#footer div.contact div.tel a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer#footer div.contact div.tel a {
	padding: 10px 0px;
}
footer#footer div.contact div.tel p.icon {
	margin-right: 20px;
}
footer#footer div.contact div.tel p.icon img {
	width: 73px;
}
footer#footer div.contact div.tel div.text {
	text-align: center;
}
footer#footer div.contact div.tel div.text p.number {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
}
footer#footer div.contact div.tel div.text p.number i.icon {
	display: inline-block;
	font-size: 1.875rem;
	font-weight: 400;
	margin-right: 5px;
	transform: translateY(1px);
}
footer#footer div.contact div.tel div.text p.time {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer div.contact div.list,
footer#footer div.contact div.list div.row a {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.contact div.list {
	justify-content: center;
	position: relative;
	color: #ffffff;
	background: linear-gradient(135deg, #f5870a 0%, #f69629 50%, #f69629 100%);
}
footer#footer div.contact div.list::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 40px);
	left: calc(50% - 0.5px);
	top: 20px;
	border-right: 1px solid #ffffff;
	content: "";
}
footer#footer div.contact div.list div.row {
	width: 320px;
}
footer#footer div.contact div.list div.row:not(:last-child) {
	margin-right: 80px;
}
footer#footer div.contact div.list div.row a {
	justify-content: space-between;
	align-items: center;
	height: 90px;
	transition: 0.25s color ease;
}
footer#footer div.contact div.list div.row a:hover {
	color: #ffffff9f;
}
footer#footer div.contact div.list div.row p.icon {
	width: 80px;
}
footer#footer div.contact div.list div.row div.text {
	width: calc(100% - 100px);
}
footer#footer div.contact div.list div.row div.text h4 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-right: -20px;
}
footer#footer div.contact div.list div.row div.text p.description {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
footer#footer nav#navi-footer {
	width: 1000px;
	margin: 0px auto;
	padding: 40px 0px;
}
footer#footer nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -40px 0px;
}
footer#footer nav#navi-footer div.list div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 40px 0px;
}
footer#footer nav#navi-footer div.list div.row div.segment:not(:last-child) {
	margin-bottom: 20px;
}
footer#footer nav#navi-footer div.list div.row p.headline {
	font-weight: 500;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
}
footer#footer nav#navi-footer div.list div.row ul li a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}
footer#footer nav#navi-footer div.list div.row ul li a::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #1e1e1e;
	content: "";
	border-radius: 50%;
}
footer#footer nav#navi-footer div.list div.row ul li a:hover::before {
	background-color: #0068c5;
}
footer#footer nav#navi-footer div.list div.row ul li span {
	display: inline-block;
}
footer#footer nav#navi-footer div.list div.row:nth-child(1) ul li span.main {
	width: 175px;
}
footer#footer nav#navi-footer div.list div.row:nth-child(2) ul li span.main {
	width: 80px;
}
footer#footer nav#navi-footer div.sns-privacy-policy {
	margin-top: -70px;
}
footer#footer div.information {
	text-align: center;
	color: #ffffff;
	padding: 60px 0px 40px 0px;
	background: linear-gradient(135deg, #170e85 0%, #0068c5 75%, #0068c5 100%);
}
footer#footer div.information h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 5px;
}
footer#footer div.information h3 img {
	width: calc(189px * 1.5);
}
footer#footer div.information :where(p.sub, div.links) {
	margin-bottom: 40px;
}
footer#footer div.information p.sub {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
footer#footer div.information div.links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer#footer div.information div.links ul li {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
	border: 1px solid #ffffff;
}
footer#footer div.information div.links ul li:first-child {
	border-radius: 5px 0px 0px 5px;
}
footer#footer div.information div.links ul li:last-child {
	border-radius: 0px 5px 5px 0px;
}
footer#footer div.information div.links ul li:not(:last-child) {
	border-right: none;
}
footer#footer div.information div.links ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 40px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
footer#footer div.information div.links ul li a:hover {
	color: #0068c5;
	background-color: #ffffff;
}
footer#footer div.information div.links ul li a::after {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	margin-left: 10px;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(-45deg);
}
footer#footer div.information div.links ul li a:hover::after {
	border-color: #0068c5;
}
footer#footer div.information div.map {
	width: 1000px;
	overflow: hidden;
	margin: 0px auto 20px auto;
	border-radius: 10px;
}
footer#footer div.information div.map iframe {
	width: 100%;
	height: 360px;
}
footer#footer div.information p:where(.address, .tel) {
	font-weight: 500;
}
