html {
	font-size: 62.5%;
}

html,
body {
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}

html.menu-open,
body.menu-open {
	overflow-y: hidden;
}

body {
	background: #fff;
	color: #1b1b1b;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	height: auto !important;
	line-height: 1.4;
	padding-top: 157px;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

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

video {
	height: auto;
	max-width: 100%;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid #eee;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

form {
	margin: 0;
	padding: 0;
}

form button {
	-webkit-appearance: none;
	background-color: #2DB786;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

form button:hover,
form button:focus {
	outline: none;
}

form button:hover {
	opacity: 0.6;
}

form button ::-moz-focus-inner {
	border: none;
	padding: 0;
}

textarea {
	-webkit-appearance: none;
	background-image: none;
	border: 1px solid #bdbdbd;
	border-radius: 0;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 8px;
	width: 100%;
}

textarea:hover,
textarea:focus {
	outline: none;
}

textarea:focus {
	box-shadow: none;
	outline: none;
}

textarea ::-moz-focus-inner {
	border: none;
	padding: 0;
}

a[href^="tel:"] {
	color: inherit;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 28px;
	font-size: 2.8rem;
}

h3 {
	font-size: 22px;
	font-size: 2.2rem;
}

h4 {
	font-size: 18px;
	font-size: 1.8rem;
}

h5 {
	font-size: 16px;
	font-size: 1.6rem;
}

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

ul[class],
ol[class] {
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

ul[class],
ol[class] {
	list-style: none;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

img {
	display: block;
	max-width: 100%;
}

article > * + * {
	margin-top: 1em;
}

input,
button,
textarea,
select {
	font: inherit;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/* Slider */

.slick-loading .slick-list {
	background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */

/* Arrows */

.slick-prev,
.slick-next {
	background: transparent;
	border: none;
	color: transparent;
	cursor: pointer;
	display: block;
	font-size: 0px;
	height: 45px;
	line-height: 0px;
	outline: none;
	padding: 0;
	position: absolute;
	top: 70px;
	width: 45px;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	display: none !important;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	opacity: 0.6;
	outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: white;
	content: none;
	font-family: "slick";
	font-size: 20px;
	line-height: 1;
	opacity: 0.75;
}

.slick-prev {
	background: url(../img/arrow_prev.png) no-repeat center/contain;
	height: 45px;
	left: -40px;
	width: 45px;
}

[dir="rtl"] .slick-prev {
	left: auto;
	right: 25px;
}

[dir="rtl"] .slick-prev:before {
	content: "→";
}

.slider__num {
	font-size: 24px;
}

.slick-next {
	background: url(../img/arrow_next.png) no-repeat center/contain;
	height: 45px;
	right: -40px;
	width: 45px;
}

[dir="rtl"] .slick-next {
	left: 25px;
	right: auto;
}

[dir="rtl"] .slick-next:before {
	content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	bottom: -25px;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.slick-dots li {
	cursor: pointer;
	display: inline-block;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	position: relative;
	width: 20px;
}

.slick-dots li button {
	background: transparent;
	border: 0;
	color: transparent;
	cursor: pointer;
	display: block;
	font-size: 0px;
	height: 20px;
	line-height: 0px;
	outline: none;
	padding: 5px;
	width: 20px;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: black;
	content: "•";
	font-family: "slick";
	font-size: 6px;
	height: 20px;
	left: 0;
	line-height: 20px;
	opacity: 0.25;
	position: absolute;
	text-align: center;
	top: 0;
	width: 20px;
}

.slick-dots li.slick-active button:before {
	color: black;
	opacity: 0.75;
}

/* Slider */

.slick-slider {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
	display: block;
	position: relative;
	touch-action: pan-y;
	user-select: none;
}

.slick-list {
	display: block;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	display: block;
	left: 0;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 0;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	border: 1px solid transparent;
	display: block;
	height: auto;
}

.slick-arrow.slick-hidden {
	display: none;
}

.l-container {
	margin: 0 auto;
	max-width: 100%;
	padding: 20px 0;
	position: relative;
	width: 930px;
}

.l-container::after {
	clear: both;
	content: "";
	display: table;
}

#footer {
	background: #F5F3F0;
	color: #1b1b1b;
	position: relative;
}

.l-footer__wrapper {
	margin: 0 auto;
	padding: 60px 30px 10px;
}

.l-footer-tel {
	align-items: center;
	background: #fff;
	border: 2px solid #2DB786;
	border-radius: 10px;
	color: #2DB786;
	display: flex;
	justify-content: center;
	margin: 0 auto 50px;
	max-width: 100%;
	padding: 20px;
	width: 650px;
}

.l-footer-tel__left {
	font-size: 30px;
	font-weight: 500;
	margin-right: 30px;
}

.l-footer-tel__right {
	font-size: 16px;
	line-height: 1.2;
}

.l-footer__copy {
	font-size: 12px;
	padding: 1em .3em;
	text-align: center;
}

#header {
	align-items: center;
	background: #fff;
	box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.4);
	color: #1b1b1b;
	display: flex;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}

.l-header__wrapper {
	margin: 0 auto;
	max-width: 100%;
	padding: 20px 0;
	width: 930px;
}

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

.l-header__logo {
	display: block;
	left: 30px;
	position: absolute;
	top: 10px;
	transition: all 0.3s ease 0s;
}

.l-header__logo:hover {
	opacity: 0.6;
}

.l-header__logo--2 {
	padding-left: 30px;
	position: initial;
}

.custom-logo-link img {
	height: auto;
	max-height: 68px;
	max-width: 300px;
	width: auto;
}

.custom-logo-link {
	display: inline-block;
}

.c-breadcrumbs {
	font-size: 12px;
	margin: auto;
	max-width: 100%;
	padding: 0 15px;
	width: 1000px;
}

.c-breadcrumbs a {
	color: #1b1b1b;
	text-decoration: none;
}

.c-breadcrumbs span {
	margin: 0 10px;
}

.c-breadcrumbs span:first-child {
	margin-left: 0;
}

.c-btn {
	-webkit-appearance: none;
	background-color: #2DB786;
	background-image: none;
	border: 1px solid #2DB786;
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	height: 44px;
	letter-spacing: 0.1em;
	line-height: 44px;
	margin: 0;
	max-width: 100%;
	position: relative;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	transition: .3s;
	vertical-align: middle;
	width: 255px;
}

.c-btn:hover {
	opacity: 0.6;
}

.c-btn:not(:disabled) {
	cursor: pointer;
}

.c-btn:hover,
.c-btn:focus {
	outline: none;
}

.c-btn::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.c-cta {
	background: #b9e5d1;
	padding: 60px 30px;
}

.c-cta__wrap {
	margin: auto;
	max-width: 100%;
	width: 900px;
}

.c-cta__left {
	width: 100%;
}

.c-cta__right {
	width: 100%;
}

.c-cta__h2 {
	color: #2DB786;
	font-size: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.c-cta__h2 > span {
	padding-bottom: 5px;
	position: relative;
}

.c-cta__h2 > span::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.c-cta__text {
	line-height: 1.88;
	margin-bottom: 30px;
}

.c-cta__btn-text {
	color: #2DB786;
	letter-spacing: 0.8px;
	margin-bottom: 25px;
	text-align: center;
}

.c-cta__btn {
	text-align: center;
}

.c-cta__btn a {
	display: inline-block;
	transition: .3s;
}

.c-cta__btn a:hover {
	opacity: 0.6;
}

.c-float-menu {
	bottom: 0px;
	position: fixed;
	right: 0;
	z-index: 100;
}

.c-float-menu__btn1 {
	margin-bottom: 5px;
}

.c-float-menu a {
	transition: .3s;
}

.c-float-menu a:hover {
	opacity: 0.6;
}

.c-fnav {
	margin: 0 auto 50px;
	max-width: 100%;
	width: 650px;
}

.c-fnav ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: auto;
	max-width: 100%;
	padding: 0;
	width: 620px;
}

.c-fnav li {
	margin-bottom: 10px;
	width: 33%;
}

.c-fnav li:not(:nth-of-type(3n-2)) {
	padding-left: 60px;
}

.c-fnav a {
	color: #1b1b1b;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
}

.c-fnav a:hover {
	opacity: 0.6;
}

.c-fnav__wrapper li {
	display: inline;
	margin-right: 46px;
}

.c-fnav__wrapper li:last-child {
	margin-right: 0;
}

.c-fnav__wrapper a {
	color: #1b1b1b;
	display: inline-block;
	padding: 0.3em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.c-fnav__wrapper a:hover {
	text-decoration: underline;
}

.c-gnav {
	background-color: #fff;
	margin-left: auto;
	padding: 26px 15px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.c-gnav ul {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-gnav ul + ul {
	margin-top: 20px;
}

.c-gnav ul + ul li {
	margin-right: 20px;
}

.c-gnav ul + ul li a {
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	font-size: 15px;
	font-weight: 500;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 200px;
}

.c-gnav ul + ul li:nth-of-type(1) a {
	background: #5ABAAF;
}

.c-gnav ul + ul li:nth-of-type(2) a {
	background: #4F9DD5;
}

.c-gnav ul + ul li:nth-of-type(3) a {
	background: #D6AE3C;
}

.c-gnav ul + ul li:nth-of-type(4) a {
	background: #EF9859;
}

.c-gnav ul li {
	margin-right: 35px;
}

.c-gnav ul li:last-child {
	margin-right: 0;
}

.c-gnav ul li a {
	color: #2DB786;
	display: block;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.c-gnav ul li a:hover {
	opacity: 0.6;
}

.c-gnav__icon {
	display: none;
}

/*  12 COLUMN : RESPONSIVE GRID SYSTEM
  DEVELOPER : DENIS LEBLANC
  URL : http://responsive.gs
  VERSION : 3.0
  LICENSE : GPL & MIT */

* {
	box-sizing: border-box;
}

.container {
	margin: 0 auto;
	max-width: 800px;
}

.clr:after,
.col:after,
.container:after,
.group:after,
.row:after {
	clear: both;
	content: "";
	display: table;
}

.row {
	padding-bottom: 0;
}

.col {
	display: block;
	float: left;
	width: 100%;
}

/* 12 COLUMN : RESPONSIVE GRID SYSTEM Fix Ver. 1.2.1 */

.container {
	padding: 0 1%;
}

.container img {
	max-width: 100%;
}

* + .container {
	margin-top: 2em;
}

.row:not(:last-child) {
	margin-bottom: 4%;
}

.col {
	float: none;
}

.col:not(:last-child) {
	margin-bottom: 3%;
}

.c-h2 {
	margin-bottom: 30px;
}

.c-h2 img {
	margin: auto;
}

/* ローディング画面 */

#loading {
	background-color: #fff;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: all 1s;
	width: 100vw;
	z-index: 100;
}

#loading.is-loaded {
	opacity: 0;
	visibility: hidden;
}

.c-loading__anime {
	-webkit-animation: load4 1.3s infinite linear;
	animation: load4 1.3s infinite linear;
	border-radius: 50%;
	color: #808080;
	font-size: 20px;
	height: 1em;
	left: 50%;
	margin: 100px auto;
	position: fixed;
	text-indent: -9999em;
	top: calc(50% - 100px);
	transform: translateZ(0);
	transform: translate(-50%, -50%);
	width: 1em;
}

.c-mv {
	height: 550px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.c-mv .slick-list,
.c-mv .slick-track {
	height: 100%;
}

.c-mv__item {
	height: 100%;
	width: 100%;
}

.c-mv__item--1 {
	background: #D2EAD4;
}

.c-mv__item--1.is-fadein::before {
	opacity: 1;
}

.c-mv__item--1.is-fadein .c-mv__text1 {
	opacity: 1;
}

.c-mv__item--1.is-fadein .c-mv__text2 {
	opacity: 1;
}

.c-mv__text1 {
	margin-bottom: 30px !important;
	opacity: 0;
	transition: opacity 1s 1.5s;
}

.c-mv__text2 {
	opacity: 0;
	transition: opacity 1s 3.5s;
}

.c-mv--2::before {
	width: calc(50vw - 400px);
}

.c-mv__inner2 {
	bottom: 10%;
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	left: 50px;
	letter-spacing: 0.1em;
	position: absolute;
	position: absolute;
}

.c-mv__inner2 > span {
	background: #2DB786;
	color: #fff;
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 20px;
}

.c-mv__img {
	height: 100%;
	position: relative;
}

.c-mv__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: -300%;
	margin: auto;
	max-width: none;
	object-fit: cover;
	object-position: center;
	position: absolute;
	right: -300%;
	top: 0;
	width: 100%;
}

.c-mv__inner {
	color: #fff;
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: 700;
	left: 0;
	margin: auto;
	opacity: 1;
	padding: 0 80px;
	position: absolute;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: 2s 0.5s;
	width: 100%;
}

.c-mv__inner img {
	margin: auto;
}

.c-mv__inner.is-fadein {
	opacity: 1;
	transform: translateY(-50%);
}

.c-mv__inner--2 {
	margin: auto;
	max-width: 100%;
	width: 1200px;
}

.c-mv--2 {
	background: #D2EAD4;
	height: 350px;
	position: relative;
	width: 100%;
}

.c-mv--2::before {
	background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 3px, transparent 0, transparent 6px);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: calc(50vw - 400px);
}

.c-mv__text {
	background: #fff;
	color: #2DB786;
	display: inline-block;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1;
	padding: 10px 14px;
}

.c-pagenation {
	margin-top: 1em;
	text-align: center;
}

.c-pagenation .page-numbers {
	color: #1b1b1b;
	color: #939393;
	font-size: 18px;
	font-weight: 500;
	padding: 0.5em;
	text-decoration: none;
}

.c-pagenation .page-numbers.current {
	color: #2DB786;
}

.c-pagenation .page-numbers:not(.current) {
	transition: 0.3s ease;
}

.c-pagenation .page-numbers:not(.current):hover {
	opacity: .6;
}

.c-pagenation .page-numbers + .page-numbers {
	margin-left: 0.3em;
}

.c-pagenation .next,
.c-pagenation .prev {
	position: relative;
}

.c-pagenation .next::before,
.c-pagenation .prev::before {
	border-right: 2px solid #939393;
	border-top: 2px solid #939393;
	content: "";
	height: 9px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 9px;
}

.c-pagenation .next::before {
	right: 0;
	transform: translateY(-50%) rotate(45deg);
}

.c-pagenation .prev::before {
	left: 0;
	transform: translateY(-50%) rotate(-135deg);
}

.c-scroll-top {
	bottom: 5%;
	opacity: 0;
	position: fixed;
	right: 5%;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	z-index: 2;
}

[data-scroll="true"] .c-scroll-top {
	opacity: 0.9;
	visibility: visible;
}

.c-scroll-top a {
	background: #2DB786;
	border: 1px solid #fff;
	border-radius: 50%;
	display: inline-block;
	height: 70px;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-indent: 100%;
	white-space: nowrap;
	width: 70px;
}

.c-scroll-top a::after {
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	display: block;
	height: 10px;
	left: 50%;
	margin: auto;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -20%) rotate(45deg);
	transition: .2s;
	width: 10px;
}

#footer.high .c-scroll-top {
	bottom: auto;
	margin: 0;
	position: absolute;
	right: 5%;
	top: 0;
	transform: translateY(-50%);
}

.p-access {
	background: #f5f3f0;
	padding: 40px 0 90px;
}

.p-access__h2 {
	margin: 100px 0 50px;
}

.p-access__wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

.p-access__content {
	width: 56%;
}

.p-access__content dl {
	display: flex;
	font-size: 20px;
	margin-bottom: 20px;
}

.p-access__content dt {
	color: #2DB786;
	display: flex;
	flex-shrink: 0;
	font-weight: bold;
	justify-content: space-between;
	margin-right: 20px;
	width: 88px;
}

.p-access__content dd {
	font-weight: 500;
}

.p-access__img {
	width: 42%;
}

.p-access__map {
	height: 0;
	padding-top: 50%;
	position: relative;
	width: 100%;
}

.p-access__map iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-blog-archive {
	background: #F5F3F0;
	padding: 50px 20px 80px;
}

.p-blog-archive__container {
	margin: auto;
	max-width: 100%;
	padding: 100px 0 100px;
	width: 900px;
}

.p-blog-archive__h2 {
	margin-bottom: 30px;
}

.p-blog-archive__lead {
	font-weight: 500;
	line-height: calc(30/16);
	margin-bottom: 70px;
	text-align: center;
}

.p-blog-archive__wrap {
	display: flex;
	flex-wrap: wrap;
}

.p-blog-archive__item {
	color: inherit;
	margin-bottom: 80px;
	text-decoration: none;
	transition: .3s;
	width: 30%;
}

.p-blog-archive__item:hover {
	opacity: .6;
}

.p-blog-archive__item:not(:nth-of-type(3n)) {
	margin-right: 5%;
}

.p-blog-archive__img {
	margin-bottom: 10px;
}

.p-blog-archive__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.p-blog-archive__text {
	font-weight: 500;
	line-height: calc(30/16);
	margin-bottom: 5px;
}

.p-blog-archive__date {
	color: #f17d22;
	text-align: right;
}

.p-blog-single {
	padding: 50px 20px 80px;
}

.p-blog-single__container {
	margin: 80px auto 0;
	max-width: 100%;
	width: 900px;
}

.p-blog-single__title {
	font-size: 30px;
	margin-bottom: 20px;
}

.p-blog-single__meta {
	align-items: center;
	display: flex;
	margin-bottom: 15px;
}

.p-blog-single__cat {
	margin-right: 10px;
}

.p-blog-single__cat > span {
	background: #f17d22;
	border-radius: 12px;
	color: #fff;
	display: inline-block;
	font-family: "Zen Maru Gothic", serif;
	font-size: 12px;
	padding: 3px 10px;
}

.p-blog-single__date {
	color: #f17d22;
	font-size: 15px;
}

.p-blog-single__img {
	margin-bottom: 30px;
}

.p-blog-single__content {
	font-size: 15px;
	font-weight: 500;
	line-height: calc(29/15);
	margin-bottom: 100px;
}

.p-blog-single__content p {
	margin-bottom: 1em;
}

.p-blog-single__btn {
	text-align: center;
}

.p-blog-single__btn a {
	display: inline-block;
	transition: .3s;
}

.p-blog-single__btn a:hover {
	opacity: .6;
}

.p-coaching1 {
	background: #f5f3f0;
	padding: 40px 0 90px;
}

.p-coaching1__lead {
	display: flex;
	justify-content: space-between;
	padding: 80px 0 70px;
}

.p-coaching1__content {
	width: 55%;
}

.p-coaching1__headline {
	color: #2DB786;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-coaching1__text {
	font-weight: 500;
}

.p-coaching1__img {
	width: 42%;
}

.p-coaching1__img img {
	margin-left: auto;
}

.p-coaching1-point__headline {
	color: #F17D22;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: .05em;
	margin-bottom: 50px;
	padding-bottom: 15px;
	position: relative;
	text-align: center;
}

.p-coaching1-point__headline::before {
	border-bottom: 1px dotted #F17D22;
	bottom: 0;
	content: "";
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 310px;
}

.p-coaching1-point__headline::after {
	background: #f5f3f0;
	border-bottom: 1px dotted #F17D22;
	border-right: 1px dotted #F17D22;
	bottom: 0;
	content: "";
	height: 17px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	transform: translateY(50%) rotate(45deg);
	width: 17px;
}

.p-coaching1-point__wrap {
	display: flex;
	justify-content: space-between;
}

.p-coaching1-point__item {
	background: #F17D22;
	color: #fff;
	font-weight: bold;
	padding: 25px 10px;
	text-align: center;
	width: 29%;
}

.p-coaching1-point__text1 {
	font-size: 18px;
	margin-bottom: 5px;
}

.p-coaching1-point__text2 {
	font-size: 25px;
}

.p-coaching2 {
	padding: 50px 0 50px;
	position: relative;
}

.p-coaching2__wave {
	background: #f5f3f0;
	height: 73px;
	left: 0;
	padding-top: 115px;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-coaching2__wave::before,
.p-coaching2__wave::after {
	border-radius: 50% 100%;
	content: "";
	display: block;
	position: absolute;
}

.p-coaching2__wave::before {
	background-color: #f5f3f0;
	height: 100%;
	right: -1.5%;
	top: 40%;
	width: 55%;
}

.p-coaching2__wave::after {
	background-color: #fff;
	height: 109%;
	left: -1.5%;
	top: 60%;
	width: 55%;
}

.p-coaching2__h2 {
	margin-bottom: 50px;
	position: relative;
}

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

.p-coaching2__img {
	width: 38%;
}

.p-coaching2__img img {
	margin: auto;
}

.p-coaching2__content {
	width: 54%;
}

.p-coaching2__h3 {
	color: #2DB786;
	font-size: 25px;
	margin-bottom: 10px;
}

.p-coaching2__h3 > span {
	display: inline-block;
	margin-bottom: 5px;
	padding-bottom: 5px;
	position: relative;
}

.p-coaching2__h3 > span::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-coaching2__text {
	line-height: 1.8;
}

.p-coaching3 {
	background: #B9E5D1;
	padding: 50px 0;
	position: relative;
}

.p-coaching3::before {
	border-color: transparent transparent #B9E5D1 transparent;
	border-style: solid;
	border-width: 0 15px 26.0px 15px;
	bottom: 100%;
	content: "";
	height: 0;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 0;
}

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

.p-coaching3__wrap--2 {
	margin-top: 50px;
}

.p-coaching3__content {
	width: 58%;
}

.p-coaching3__head {
	align-items: center;
	display: flex;
	margin-bottom: 20px;
}

.p-coaching3__point {
	background: #2DB786;
	border-radius: 26px;
	color: #fff;
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	line-height: 1;
	margin-right: 15px;
	padding: 13px 23px;
}

.p-coaching3__h3 {
	color: #2DB786;
	font-size: 20px;
}

.p-coaching3__text {
	color: #2DB786;
	font-weight: 500;
	line-height: 1.8;
}

.p-coaching3__img {
	width: 38%;
}

.p-coaching4 {
	background: #f5f3f0;
	padding: 100px 0 50px;
	position: relative;
}

.p-coaching4__h2 {
	margin-bottom: 50px;
	position: relative;
}

.p-coaching4__item:not(:last-child) {
	margin-bottom: 50px;
}

.p-coaching4__num {
	margin-bottom: 20px;
}

.p-coaching4__num img {
	margin: auto;
}

.p-coaching4__h3 {
	color: #2DB786;
	font-size: 25px;
	margin-bottom: 20px;
	text-align: center;
}

.p-coaching4__h3 > span {
	display: inline-block;
	padding-bottom: 5px;
	position: relative;
}

.p-coaching4__h3 > span::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-coaching4__tag {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.p-coaching4__tag > p {
	background: #F17D22;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	margin: 0 5px;
	padding: 5px 22px;
	text-align: center;
}

.p-coaching4__text {
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: center;
}

.p-coaching4__img img {
	margin: auto;
}

.p-contact1 {
	background: #f5f3f0;
	padding: 40px 0 90px;
}

.p-contact1__h2 {
	margin: 100px 0 50px;
}

.p-contact1__lead {
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.p-contact1__lead2 {
	color: #e12300;
	font-size: 20px;
	font-weight: 500;
	font-weight: bold;
	margin-bottom: 30px;
}

.p-contact1-form__item {
	margin-bottom: 30px;
}

.p-contact1-form__caption {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.p-contact1-form__caption > span {
	color: #2DB786;
}

.p-contact1-form input {
	border: 2px solid #2DB786;
	border-radius: 10px;
	font-size: 20px;
	outline: none;
	padding: 18px 15px;
}

.p-contact1-form__wrap {
	display: flex;
	justify-content: space-between;
}

.p-contact1-form__input {
	width: 49%;
}

.p-contact1-form__input input {
	width: 100%;
}

.p-contact1-form__row {
	display: flex;
	justify-content: space-between;
}

.p-contact1-form__column {
	width: 49%;
}

.p-contact1-form .mwform-radio-field-text {
	font-size: 20px;
}

.p-contact1-form .horizontal-item + .horizontal-item {
	margin-left: 20px !important;
}

.p-contact1-form__wide input[type="email"],
.p-contact1-form__wide input[type="text"] {
	width: 100%;
}

.p-contact1-form__select {
	align-items: center;
	display: inline-flex;
	position: relative;
	width: 100%;
}

.p-contact1-form__select::after {
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: #2DB786;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: "";
	height: 9px;
	pointer-events: none;
	position: absolute;
	right: 15px;
	width: 10px;
}

.p-contact1-form__select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #2db786;
	border-radius: 10px;
	color: #333333;
	cursor: pointer;
	font-size: 20px;
	outline: none;
	padding: 18px 15px;
	width: 100%;
}

.p-contact1-form__send {
	margin-top: 80px;
	text-align: center;
}

.p-contact1-form button {
	background: none;
	margin: auto;
	max-width: 100%;
	padding: 0;
	text-align: center;
	width: 428px;
}

.p-contact2 {
	padding: 40px 0 60px;
}

.p-contact2__h3 {
	color: #2DB786;
	font-size: 30px;
	margin-bottom: 30px;
}

.p-contact2__text {
	font-weight: 500;
	margin-bottom: 30px;
}

.p-request__h2 {
	margin: 100px 0 50px;
}

.p-course__headline {
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	font-size: 30px;
	letter-spacing: 0.15em;
	margin-bottom: 40px;
	padding: 2px 0;
	text-align: center;
}

.p-course__headline--1 {
	background: #5abaaf;
}

.p-course__headline--2 {
	background: #ef9859;
}

.p-course__headline--3 {
	background: #4f9dd5;
}

.p-course__headline--6 {
	background: #d6ae3c;
}

.p-course__headline--1 {
	background: #5abaaf;
}

.p-course__h3 {
	font-family: "Zen Maru Gothic", serif;
	font-size: 30px;
	line-height: 1.1;
	margin-bottom: 30px;
	padding-left: 25px;
	position: relative;
}

.p-course__h3::before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 10px;
}

.p-course__h3--1 {
	color: #5ABAAF;
}

.p-course__h3--1::before {
	background: #5ABAAF;
}

.p-course__h3--2 {
	color: #EF9859;
}

.p-course__h3--2::before {
	background: #EF9859;
}

.p-course__h3--3 {
	color: #985a9f;
}

.p-course__h3--3::before {
	background: #985a9f;
}

.p-course__h3--4 {
	color: #4F9DD5;
}

.p-course__h3--4 > span {
	color: #d5474a;
}

.p-course__h3--4::before {
	background: #4F9DD5;
}

.p-course__h3--5 {
	color: #d6ae3c;
}

.p-course__h3--5::before {
	background: #d6ae3c;
}

.p-course__h3--6 {
	color: #8ac454;
}

.p-course__h3--6::before {
	background: #8ac454;
}

.p-course__h3--7 {
	color: #d5474a;
}

.p-course__h3--7::before {
	background: #d5474a;
}

.p-course__h3--8 {
	color: #69CBDE;
}

.p-course__h3--8::before {
	background: #69CBDE;
}

.p-course__h3-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-course__h3-no1 {
	color: #d5474a;
	font-family: "Zen Maru Gothic", serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.p-course__h3-no1 > span {
	background: #d5474a;
	border-radius: 17px;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	padding: 3px 14px;
}

.p-course__circle {
	background: #5ABAAF;
	border-radius: 50%;
	color: #fff;
	display: grid;
	font-weight: 500;
	height: 104px;
	place-items: center;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 104px;
}

.p-course__target {
	align-items: center;
	display: flex;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}

.p-course__target > span {
	border-radius: 26px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	margin-right: 10px;
	padding: 4px 21px;
}

.p-course__target--1 {
	color: #5ABAAF;
}

.p-course__target--1 > span {
	background: #5ABAAF;
}

.p-course__target--2 {
	color: #EF9859;
}

.p-course__target--2 > span {
	background: #EF9859;
}

.p-course__target--3 {
	color: #985a9f;
}

.p-course__target--3 > span {
	background: #985a9f;
}

.p-course__target--4 {
	color: #4F9DD5;
}

.p-course__target--4 > span {
	background: #4F9DD5;
}

.p-course__target--5 {
	color: #d6ae3c;
}

.p-course__target--5 > span {
	background: #d6ae3c;
}

.p-course__target--6 {
	color: #8ac454;
}

.p-course__target--6 > span {
	background: #8ac454;
}

.p-course__target--7 {
	color: #d5474a;
}

.p-course__target--7 > span {
	background: #d5474a;
}

.p-course__h4 {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 20px;
	margin-top: 30px;
	padding-left: 18px;
	position: relative;
}

.p-course__h4::before {
	border-radius: 50%;
	content: "";
	height: 13px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
}

.p-course__h4--1 {
	color: #5ABAAF;
}

.p-course__h4--1::before {
	background: #5ABAAF;
}

.p-course__h4--2 {
	color: #EF9859;
}

.p-course__h4--2::before {
	background: #EF9859;
}

.p-course__h4--3 {
	color: #985a9f;
}

.p-course__h4--3::before {
	background: #985a9f;
}

.p-course__h4--4 {
	color: #4F9DD5;
}

.p-course__h4--4::before {
	background: #4F9DD5;
}

.p-course__h4--4-2 {
	color: #69cbde;
}

.p-course__h4--4-2::before {
	background: #69cbde;
}

.p-course__h4--5 {
	color: #d6ae3c;
}

.p-course__h4--5::before {
	background: #d6ae3c;
}

.p-course__h4--6 {
	color: #8ac454;
}

.p-course__h4--6::before {
	background: #8ac454;
}

.p-course__h4--7 {
	color: #d5474a;
}

.p-course__h4--7::before {
	background: #d5474a;
}

.p-course__text {
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 30px;
}

.p-course__text > span {
	color: #8ac454;
	font-size: 20px;
}

.p-course__table2 {
	font-family: "Zen Maru Gothic", serif;
	margin-bottom: 50px;
}

.p-course__table2 table {
	border: 0;
}

.p-course__table2 tr {
	border: 0;
}

.p-course__table2 tr:not(:last-child) th {
	border-bottom: 1px solid #fff;
}

.p-course__table2 tr:not(:last-child) td {
	border-bottom: 1px solid #5ABAAF;
}

.p-course__table2 td,
.p-course__table2 th {
	border: 0;
}

.p-course__table2 th {
	background: #5ABAAF;
	color: #fff;
	font-size: 18px;
	text-align: center;
	vertical-align: middle;
	width: 130px;
}

.p-course__table2 td {
	background: #fff;
	font-weight: 500;
	padding: 4px 20px;
}

.p-course__table2--2 th {
	background: #EF9859;
}

.p-course__table2--2 tr:not(:last-child) td {
	border-bottom: 1px solid #EF9859;
}

.p-course__table2--4 th {
	background: #69cbde;
}

.p-course__table2--4 tr:not(:last-child) td {
	border-bottom: 1px solid #69cbde;
}

.p-course__table2--5 th {
	background: #985a9f;
}

.p-course__table2--5 tr:not(:last-child) td {
	border-bottom: 1px solid #985a9f;
}

.p-course__table2--6 th {
	background: #d6ae3c;
}

.p-course__table2--6 tr:not(:last-child) td {
	border-bottom: 1px solid #d6ae3c;
}

.p-course__table2--8 th {
	background: #69CBDE;
}

.p-course__table2--8 tr:not(:last-child) td {
	border-bottom: 1px solid #69CBDE;
}

.p-course__table {
	margin-bottom: 50px;
}

.p-course__table .tal {
	padding-left: 30px;
	padding-right: 30px;
	text-align: left;
}

.p-course__table th {
	color: #fff;
	font-weight: 500;
	padding: 10px 10px;
	text-align: center;
}

.p-course__table td {
	font-weight: 500;
	padding: 38px 10px;
	text-align: center;
	vertical-align: middle;
}

.p-course__table td small {
	font-size: 12px;
}

.p-course__table td span {
	font-size: 13px;
}

.p-course__table .small {
	padding-bottom: 10px !important;
	padding-top: 10px !important;
}

.p-course__table--1 .bb {
	border-bottom: 1px solid #5abaaf;
}

.p-course__table--1 .bl {
	border-left: 1px solid #5abaaf;
}

.p-course__table--1 th {
	background: #5abaaf;
}

.p-course__table--1 td {
	background: rgba(90, 186, 175, 0.2);
}

.p-course__table--1 td:not(:last-child) {
	border-right: 1px solid #5abaaf;
}

.p-course__table--2 tr:nth-of-type(2) td {
	background: rgba(239, 152, 89, 0.4);
	padding-bottom: 20px;
	padding-top: 20px;
}

.p-course__table--2 tr:not(:last-child) td {
	border-bottom: 1px solid #EF9859;
}

.p-course__table--2 th {
	background: #EF9859;
}

.p-course__table--2 td {
	background: rgba(239, 152, 89, 0.2);
}

.p-course__table--2 td:not(:last-child) {
	border-right: 1px solid #EF9859;
}

.p-course__table--3 tr:nth-of-type(5) td {
	background: rgba(152, 90, 159, 0.4);
	padding-bottom: 30px;
	padding-top: 30px;
}

.p-course__table--3 tr:nth-of-type(4) td {
	padding-bottom: 20px;
	padding-top: 20px;
}

.p-course__table--3 tr:not(:last-child) td {
	border-bottom: 1px solid #985a9f;
}

.p-course__table--3 th {
	background: #985a9f;
}

.p-course__table--3 td {
	background: rgba(152, 90, 159, 0.2);
}

.p-course__table--3 td:not(:last-child) {
	border-right: 1px solid #985a9f;
}

.p-course__table--4 .bl {
	border-left: 1px solid #4F9DD5;
}

.p-course__table--4 tr:first-child td:nth-of-type(2) {
	font-size: 13px;
}

.p-course__table--4 tr:first-child td:nth-of-type(2) small {
	font-size: 11px;
}

.p-course__table--4 tr:nth-of-type(3) td:nth-of-type(2) {
	font-size: 13px;
}

.p-course__table--4 tr:nth-of-type(3) td:nth-of-type(2) small {
	font-size: 11px;
}

.p-course__table--4 tr:last-child td {
	padding-bottom: 30px;
	padding-top: 30px;
}

.p-course__table--4 tr:nth-of-type(4) td {
	background: rgba(79, 157, 213, 0.4);
	padding-bottom: 20px;
	padding-top: 20px;
}

.p-course__table--4 tr:not(:last-child) td {
	border-bottom: 1px solid #4F9DD5;
}

.p-course__table--4 th {
	background: #4F9DD5;
}

.p-course__table--4 td {
	background: rgba(79, 157, 213, 0.2);
}

.p-course__table--4 td > span {
	color: #4F9DD5;
}

.p-course__table--4 td:not(:last-child) {
	border-right: 1px solid #4F9DD5;
}

.p-course__table--4-2 .bl {
	border-left: 1px solid #69cbde;
}

.p-course__table--4-2 tr:nth-of-type(5) td {
	background: rgba(105, 203, 222, 0.4);
	padding-bottom: 30px;
	padding-top: 30px;
}

.p-course__table--4-2 tr:not(:last-child) td {
	border-bottom: 1px solid #69cbde;
}

.p-course__table--4-2 th {
	background: #69cbde;
}

.p-course__table--4-2 td {
	background: rgba(105, 203, 222, 0.2);
}

.p-course__table--4-2 td > span {
	color: #69cbde;
}

.p-course__table--4-2 td:not(:last-child) {
	border-right: 1px solid #69cbde;
}

.p-course__table--5 .bl {
	border-left: 1px solid #d6ae3c;
}

.p-course__table--5 tr:nth-of-type(4) td {
	background: rgba(214, 174, 60, 0.4);
	padding-bottom: 30px;
	padding-top: 30px;
}

.p-course__table--5 tr:not(:last-child) td {
	border-bottom: 1px solid #d6ae3c;
}

.p-course__table--5 th {
	background: #d6ae3c;
}

.p-course__table--5 td {
	background: rgba(214, 174, 60, 0.2);
}

.p-course__table--5 td:not(:last-child) {
	border-right: 1px solid #d6ae3c;
}

.p-course__table--6 .bl {
	border-left: 1px solid #8AC454;
}

.p-course__table--6 tr:nth-of-type(3) td {
	background: rgba(138, 196, 84, 0.4);
	padding-bottom: 30px;
	padding-top: 30px;
}

.p-course__table--6 tr:not(:last-child) td {
	border-bottom: 1px solid #8AC454;
}

.p-course__table--6 th {
	background: #8AC454;
}

.p-course__table--6 td {
	background: rgba(138, 196, 84, 0.2);
}

.p-course__table--6 td:not(:last-child) {
	border-right: 1px solid #8AC454;
}

.p-course__note {
	font-size: 12px;
	margin-bottom: 50px;
}

.p-course__btn {
	transition: .3s;
}

.p-course__btn:hover {
	opacity: .6;
}

.p-course__btn img {
	margin: auto;
}

.p-course-feature {
	color: #fff;
	margin-bottom: 30px;
	padding: 30px 0;
	position: relative;
}

.p-course-feature::before {
	border-style: solid;
	border-width: 0 15px 26px 15px;
	bottom: 100%;
	content: "";
	height: 0;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 0;
}

.p-course-feature__head {
	align-items: center;
	display: flex;
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-course-feature__head > span {
	background: #fff;
	border-radius: 26px;
	display: inline-block;
	font-size: 22px;
	line-height: 1;
	margin-right: 10px;
	padding: 15px 15px;
}

.p-course-feature__head--3 > span {
	color: #985a9f;
}

.p-course-feature__head--4 > span {
	color: #4F9DD5;
}

.p-course-feature__head--5 > span {
	color: #d6ae3c;
}

.p-course-feature--3 {
	background: #985a9f;
}

.p-course-feature--3::before {
	border-color: transparent transparent #985a9f transparent;
}

.p-course-feature--4 {
	background: #4F9DD5;
}

.p-course-feature--4::before {
	border-color: transparent transparent #4F9DD5 transparent;
}

.p-course-feature--5 {
	background: #d6ae3c;
}

.p-course-feature--5::before {
	border-color: transparent transparent #d6ae3c transparent;
}

.p-course-feature__list {
	font-weight: 500;
}

.p-course-feature__list:not(:last-child) {
	margin-bottom: 30px;
}

.p-course-feature__list li {
	margin-bottom: 5px;
	padding-left: 15px;
	position: relative;
}

.p-course-feature__list li::before {
	content: "・";
	left: 0;
	position: absolute;
	top: 0px;
}

.p-course-feature__frame {
	background: #fff;
	color: #4F9DD5;
	display: inline-block;
	font-weight: bold;
	margin-top: 5px;
	padding: 10px 20px;
}

.p-course-feature__headline {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.p-course-feature__headline > span {
	display: inline-block;
	padding-bottom: 3px;
	position: relative;
}

.p-course-feature__headline > span::after {
	background: #fff;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-course__bg {
	background: #5ABAAF;
	padding: 40px 20px;
}

.p-course__bg--2 {
	background: #ef9859;
}

.p-course__bg--3 {
	background: #4f9dd5;
}

.p-course__bg--4 {
	background: #69cbde;
}

.p-course__bg--5 {
	background: #985a9f;
}

.p-course__bg--6 {
	background: #d6ae3c;
}

.p-course-frame {
	background: #fff;
	margin: auto;
	max-width: 100%;
	padding: 15px 30px;
	width: 930px;
}

.p-course-frame--sp {
	margin-bottom: 30px;
}

.p-course-frame__headline {
	color: #5ABAAF;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-course-frame__headline > span {
	border-bottom: 1px solid #5ABAAF;
	border-left: 1px solid #5ABAAF;
	display: inline-block;
	padding: 0 0 5px 5px;
	position: relative;
}

.p-course-frame__headline--2 {
	color: #f17d22;
}

.p-course-frame__headline--2 > span {
	border-bottom: 1px solid #f17d22;
	border-left: 1px solid #f17d22;
}

.p-course-frame__headline--3 {
	color: #4F9DD5;
}

.p-course-frame__headline--3 > span {
	border-bottom: 1px solid #4F9DD5;
	border-left: 1px solid #4F9DD5;
}

.p-course-frame__headline--4 {
	color: #69CBDE;
}

.p-course-frame__headline--4 > span {
	border-bottom: 1px solid #69CBDE;
	border-left: 1px solid #69CBDE;
}

.p-course-frame__headline--5 {
	color: #985A9F;
}

.p-course-frame__headline--5 > span {
	border-bottom: 1px solid #985A9F;
	border-left: 1px solid #985A9F;
}

.p-course-frame__headline--6 {
	color: #D6AE3C;
}

.p-course-frame__headline--6 > span {
	border-bottom: 1px solid #D6AE3C;
	border-left: 1px solid #D6AE3C;
}

.p-course-frame__headline--7 {
	color: #8AC454;
}

.p-course-frame__headline--7 > span {
	border-bottom: 1px solid #8AC454;
	border-left: 1px solid #8AC454;
}

.p-course-frame__text {
	color: #5ABAAF;
	font-weight: 500;
	line-height: calc(30 / 16);
}

.p-course-frame__text > span {
	font-size: 18px;
	font-weight: bold;
}

.p-course-frame__text:not(:last-child) {
	margin-bottom: 30px;
}

.p-course-frame__text--2 {
	color: #f17d22;
}

.p-course-frame__text--3 {
	color: #4F9DD5;
}

.p-course-frame__text--4 {
	color: #69CBDE;
}

.p-course-frame__text--5 {
	color: #985A9F;
}

.p-course-frame__text--6 {
	color: #D6AE3C;
}

.p-course-frame__text--7 {
	color: #8AC454;
}

.p-course-frame__text--7 > span {
	font-size: 16px;
	font-weight: 500;
}

.p-course-frame__text2 {
	font-weight: 500;
	line-height: calc(30 / 16);
}

.p-course-frame__text3 {
	font-size: 14px;
	font-weight: 500;
	margin: 10px auto 50px;
	max-width: 100%;
	width: 670px;
}

.p-course-frame__text3 > span {
	color: #8AC454;
}

.p-course-frame__feature {
	background: #5ABAAF;
	border-radius: 26px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.1;
	margin-bottom: 10px;
	padding: 12px 30px;
}

.p-course-frame-wrap {
	display: flex;
	margin: 15px 0;
}

.p-course-frame-wrap__head {
	background: #4F9DD5;
	color: #fff;
	display: grid;
	flex-shrink: 0;
	font-weight: bold;
	margin-right: 10px;
	padding: 2px 10px;
	place-items: center;
	text-align: center;
	width: 105px;
}

.p-course-frame-wrap__content {
	font-weight: 500;
	line-height: calc(30/16);
}

.p-course-frame-wrap__content > span {
	color: #4F9DD5;
	display: inline-block;
	margin-right: 10px;
}

.p-course-frame-wrap__content dl {
	display: flex;
}

.p-course-frame-wrap__content dl dt {
	color: #4F9DD5;
	margin-right: 15px;
	width: 160px;
}

.p-course-frame-wrap__content dl dd > span {
	display: inline-block;
	margin-left: 30px;
}

.p-course-frame-wrap--2 .p-course-frame-wrap__head {
	background: #8AC454;
	padding: 0px 10px;
	width: 180px;
}

.p-course-frame-wrap--3 .p-course-frame-wrap__head {
	background: #8AC454;
	padding: 0px 10px;
	width: 70px;
}

.p-course-frame-wrap--4 .p-course-frame-wrap__head {
	background: #8AC454;
	padding: 0px 10px;
	width: 70px;
}

.p-course-frame__bnr {
	margin-bottom: 40px;
	margin-top: 20px;
}

.p-course-frame__bnr a {
	display: inline-block;
	transition: .3s;
}

.p-course-frame__bnr a:hover {
	opacity: .6;
}

.p-course-frame__headline2 {
	background: #4F9DD5;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	padding: 5px 10px;
	text-align: center;
}

.p-course-frame__headline3 {
	color: #4F9DD5;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
}

.p-course-frame__headline3::before {
	background: #4F9DD5;
	content: "";
	height: 11px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 11px;
}

.p-course-frame__headline3--6 {
	color: #D6AE3C;
}

.p-course-frame__headline3--6::before {
	background: #D6AE3C;
}

.p-course-frame__headline3--7 {
	color: #8AC454;
	padding-left: 50px;
}

.p-course-frame__headline3--7::before {
	background: url(../img/icon_gym.png) no-repeat center/contain;
	height: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.p-course-frame__headline4 {
	color: #4F9DD5;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 30px;
}

.p-course-frame__img {
	margin: 30px 0;
}

.p-course-frame__img img {
	margin: auto;
}

.p-course-frame__frame {
	background: #EDF5FB;
	margin: 15px 0;
	padding: 15px 15px;
}

.p-course-frame__frame2 {
	background: #fff;
	border: 2px solid #4F9DD5;
	margin: 15px 0;
	padding: 15px 15px;
}

.p-course-frame__frame2 span {
	color: #4F9DD5;
	font-weight: bold;
}

.p-course-frame__arrow {
	height: 27px;
	margin: 10px 0;
	position: relative;
}

.p-course-frame__arrow::before {
	background: url(../img/course_arrow@2x.png) no-repeat center/contain;
	content: "";
	height: 27px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 9px;
}

.p-course1 {
	background: #f5f3f0;
	padding: 40px 0 0px;
}

.p-course1__h2 {
	margin: 100px 0 50px;
}

.p-course1__lead {
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.p-course1__wrap {
	display: flex;
	flex-wrap: wrap;
}

.p-course1__item {
	box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: grid;
	font-weight: 500;
	height: 100px;
	margin-bottom: 30px;
	place-items: center;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
	width: 23%;
}

.p-course1__item:hover {
	opacity: 0.6;
}

.p-course1__item:not(.p-course1__item:nth-of-type(4n)) {
	margin-right: 2.6%;
}

.p-course1__item:nth-of-type(1) {
	background: #5abaaf;
}

.p-course1__item:nth-of-type(2) {
	background: #EF9859;
}

.p-course1__item:nth-of-type(3) {
	background: #985a9f;
}

.p-course1__item:nth-of-type(4) {
	background: #4F9DD5;
}

.p-course1__item:nth-of-type(5) {
	background: #d6ae3c;
}

.p-course1__item:nth-of-type(6) {
	background: #8ac454;
}

.p-course1__item:nth-of-type(7) {
	background: #d5474a;
}

.p-course2 {
	background: #eef8f7;
	padding: 200px 0 80px;
	position: relative;
}

.p-course2__wave {
	background: #f5f3f0;
	height: 73px;
	left: 0;
	padding-top: 115px;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-course2__wave::before,
.p-course2__wave::after {
	border-radius: 50% 100%;
	content: "";
	display: block;
	position: absolute;
}

.p-course2__wave::before {
	background-color: #f5f3f0;
	height: 100%;
	right: -1.5%;
	top: 40%;
	width: 55%;
}

.p-course2__wave::after {
	background-color: #eef8f7;
	height: 109%;
	left: -1.5%;
	top: 60%;
	width: 55%;
}

.p-course2__h3 {
	color: #5abaaf;
}

.p-course2__h3::before {
	background: #5abaaf;
}

.p-course3 {
	background: #fef5e9;
	padding: 80px 0 80px;
	position: relative;
}

.p-course3__h3 {
	color: #EF9859;
}

.p-course3__h3::before {
	background: #EF9859;
}

.p-course3__achievement {
	align-items: center;
	display: flex;
	font-weight: 500;
	margin-bottom: 10px;
}

.p-course3__achievement + .p-course3__achievement {
	margin-bottom: 50px;
}

.p-course3__achievement > span {
	background: #c8c9ca;
	display: inline-block;
	line-height: 1;
	margin-right: 10px;
	padding: 7px 11px;
}

.p-course4 {
	background: #f5eef5;
	padding: 80px 0 80px;
	position: relative;
}

.p-course4__h3 {
	color: #985a9f;
}

.p-course4__h3::before {
	background: #985a9f;
}

.p-course5 {
	background: #eaf3f9;
	padding: 80px 0 80px;
	position: relative;
}

.p-course5__h3 {
	color: #4F9DD5;
}

.p-course5__h3::before {
	background: #4F9DD5;
}

.p-course5__table1 {
	font-family: "Zen Maru Gothic", serif;
	margin-bottom: 50px;
	margin-top: 30px;
}

.p-course5__table1 .tal {
	padding-left: 30px;
	padding-right: 30px;
	text-align: left;
}

.p-course5__table1 .blank {
	background: transparent;
	border: 0 !important;
}

.p-course5__table1 table {
	table-layout: auto;
}

.p-course5__table1 thead td {
	border-bottom: 1px solid #4F9DD5;
	font-size: 18px;
}

.p-course5__table1 thead td > span {
	font-size: 14px;
}

.p-course5__table1 tbody td {
	font-size: 14px;
	padding: 10px 15px;
	text-align: left;
}

.p-course5__table1 tbody td.bb0 {
	border-bottom: 0 !important;
}

.p-course5__table1 th,
.p-course5__table1 td {
	vertical-align: middle;
}

.p-course5__table1 th {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;
	text-align: center;
}

.p-course5__table1 td {
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
}

.p-course5__table1 td a {
	color: #4F9DD5;
	text-decoration: underline;
}

.p-course5__table1 td small {
	font-size: 12px;
}

.p-course5__table1 td span {
	font-size: 13px;
}

.p-course5__table1 th {
	background: #4F9DD5;
}

.p-course5__table1 td {
	background: #fff;
}

.p-course5__table1 td:not(:last-child) {
	border-right: 1px solid #4F9DD5;
}

.p-course5__table1 tr:not(:last-child) td {
	border-bottom: 1px solid #4F9DD5;
}

.p-course5__table2 {
	font-family: "Zen Maru Gothic", serif;
	margin-bottom: 50px;
	margin-top: 30px;
}

.p-course5__table2 .tal {
	padding-left: 30px;
	padding-right: 30px;
	text-align: left;
}

.p-course5__table2 .blank {
	background: transparent;
	border: 0 !important;
}

.p-course5__table2 table {
	table-layout: auto;
}

.p-course5__table2 thead td {
	border-bottom: 1px solid #4F9DD5;
	font-size: 18px;
}

.p-course5__table2 thead td > span {
	font-size: 14px;
}

.p-course5__table2 tbody td {
	font-size: 18px;
	padding: 10px 15px;
	text-align: left;
}

.p-course5__table2 tbody td.bb0 {
	border-bottom: 0 !important;
}

.p-course5__table2 th,
.p-course5__table2 td {
	vertical-align: middle;
}

.p-course5__table2 th {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;
	text-align: center;
}

.p-course5__table2 td {
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
}

.p-course5__table2 td a {
	color: #4F9DD5;
	text-decoration: underline;
}

.p-course5__table2 td small {
	font-size: 12px;
}

.p-course5__table2 th {
	background: #4F9DD5;
}

.p-course5__table2 td {
	background: #fff;
}

.p-course5__table2 td:not(:last-child) {
	border-right: 1px solid #4F9DD5;
}

.p-course5__table2 tr:not(:last-child) td {
	border-bottom: 1px solid #4F9DD5;
}

.p-course5__headline {
	color: #4F9DD5;
	font-family: "Zen Maru Gothic", serif;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-course6 {
	background: #fcf8ee;
	padding: 80px 0 80px;
	position: relative;
}

.p-course6__h3 {
	color: #d6ae3c;
}

.p-course6__h3::before {
	background: #d6ae3c;
}

.p-course7 {
	background: #f5faf0;
	padding: 80px 0 80px;
	position: relative;
}

.p-course7-frame {
	background: #fff;
	border: 2px solid #8ac454;
	margin-top: 60px;
	padding: 30px 40px;
}

.p-course7-frame__head {
	color: #8ac454;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
	padding-left: 17px;
	position: relative;
}

.p-course7-frame__head::before {
	background: #8ac454;
	border-radius: 50%;
	content: "";
	height: 13px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
}

.p-course7-frame__text {
	font-weight: 500;
}

.p-course7-frame__text:not(:last-child) {
	margin-bottom: 30px;
}

.p-course8 {
	background: #fcefef;
	padding: 80px 0 80px;
	position: relative;
}

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

.p-course8__text {
	font-weight: 500;
	line-height: 1.8;
	width: 53%;
}

.p-course8__img {
	width: 42%;
}

.p-course9 {
	background: rgba(105, 203, 222, 0.1);
	padding: 80px 0 80px;
	position: relative;
}

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

.p-course9__text {
	font-weight: 500;
	line-height: 1.8;
	width: 53%;
}

.p-course9__img {
	width: 42%;
}

.p-faq {
	background: #f5f3f0;
	padding: 40px 0 90px;
}

.p-faq__h2 {
	margin: 100px 0 50px;
}

.p-faq__lead {
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.p-faq__item {
	margin-bottom: 50px;
	padding-left: 60px;
	position: relative;
}

.p-faq__item::after {
	background: url(../img/faq_close@2x.png) no-repeat center/contain;
	content: "";
	height: 10px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 11px;
}

.p-faq__item.is-open::after {
	background: #2DB786;
	height: 4px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 18px;
}

.p-faq__q {
	color: #2DB786;
	cursor: pointer;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 5px;
	position: relative;
}

.p-faq__q::before {
	background: url(../img/faq_q@2x.png) no-repeat center/contain;
	content: "";
	height: 44px;
	left: -60px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 43px;
}

.p-faq__q::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	width: 100%;
}

.p-faq__a {
	display: none;
}

.p-faq__head {
	color: #F17D22;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
}

.p-faq__head::before {
	background: url(../img/faq_a@2x.png) no-repeat center/contain;
	content: "";
	height: 44px;
	left: -60px;
	position: absolute;
	top: -5px;
	width: 42px;
}

.p-faq__text {
	font-weight: 500;
	line-height: 1.8;
}

.p-flow {
	background: #f5f3f0;
	padding: 40px 0 60px;
}

.p-flow__notice {
	border: 1px solid #D5474A;
	color: #D5474A;
	font-size: 11px;
	font-weight: 500;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 130px;
	width: 195px;
}

.p-flow__h2 {
	margin: 100px 0 30px;
	position: relative;
}

.p-flow__lead {
	font-weight: 500;
	margin-bottom: 80px;
	text-align: center;
}

.p-flow__item {
	background: #fff;
	border: 2px solid #2DB786;
	border-radius: 10px;
	padding: 50px 40px 30px 220px;
	position: relative;
}

.p-flow__item::before {
	content: "";
	height: 130px;
	left: 30px;
	position: absolute;
	top: 28px;
	width: 170px;
}

.p-flow__item:nth-of-type(1)::before {
	background: url(../img/flow_step01@2x.png) no-repeat center/contain;
}

.p-flow__item:nth-of-type(2)::before {
	background: url(../img/flow_step02@2x.png) no-repeat center/contain;
}

.p-flow__item:nth-of-type(3)::before {
	background: url(../img/flow_step03@2x.png) no-repeat center/contain;
}

.p-flow__item:nth-of-type(4)::before {
	background: url(../img/flow_step04@2x.png) no-repeat center/contain;
}

.p-flow__item:nth-of-type(5)::before {
	background: url(../img/flow_step05@2x.png) no-repeat center/contain;
}

.p-flow__item:not(:last-child) {
	margin-bottom: 60px;
}

.p-flow__item:not(:last-child)::after {
	background: url(../img/flow_arrow2.png) no-repeat center/contain;
	bottom: -45px;
	content: "";
	height: 24px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 28px;
}

.p-flow__h3 {
	color: #2DB786;
	font-size: 30px;
	margin-bottom: 20px;
}

.p-flow__h4 {
	background: #2DB786;
	border-radius: 17px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
	padding: 8px 17px;
}

.p-flow__h4-2 {
	color: #2DB786;
	font-size: 20px;
	margin-bottom: 10px;
}

.p-flow__text {
	font-weight: 500;
	line-height: 1.8;
}

.p-flow__text > span {
	color: #2DB786;
}

.p-flow__text:not(:last-child) {
	margin-bottom: 30px;
}

.p-flow__text > a {
	color: #f17d22;
	font-size: 25px;
	font-weight: bold;
	text-decoration: none;
}

.p-movies-archive {
	background: #F5F3F0;
	padding: 50px 20px 80px;
}

.p-movies-archive__container {
	margin: auto;
	max-width: 100%;
	padding: 100px 0 100px;
	width: 900px;
}

.p-movies-archive__h2 {
	margin-bottom: 30px;
}

.p-movies-archive__lead {
	font-weight: 500;
	line-height: calc(30/16);
	margin-bottom: 70px;
	text-align: center;
}

.p-movies-archive__wrap {
	display: flex;
	flex-wrap: wrap;
}

.p-movies-archive__item {
	margin-bottom: 80px;
	width: 44%;
}

.p-movies-archive__item:nth-of-type(odd) {
	margin-right: 12%;
}

.p-movies-archive__youtube {
	aspect-ratio: 16 / 9;
	margin-bottom: 0px;
	width: 100%;
}

.p-movies-archive__youtube iframe {
	height: 100%;
	width: 100%;
}

.p-movies-archive__meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.p-movies-archive__cat span {
	background: #2d9875;
	color: #fff;
	display: inline-block;
	font-family: "Zen Maru Gothic", serif;
	font-size: 12px;
	padding: 3px 10px;
}

.p-movies-archive__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-movies-archive__text {
	font-weight: 500;
	line-height: calc(30/16);
}

.p-new-single {
	padding: 50px 20px 80px;
}

.p-new-single__container {
	margin: 80px auto 0;
	max-width: 100%;
	width: 900px;
}

.p-new-single__title {
	font-size: 30px;
	margin-bottom: 20px;
}

.p-new-single__meta {
	align-items: center;
	display: flex;
	margin-bottom: 15px;
}

.p-new-single__cat {
	margin-right: 10px;
}

.p-new-single__cat > span {
	background: #f17d22;
	border-radius: 12px;
	color: #fff;
	display: inline-block;
	font-family: "Zen Maru Gothic", serif;
	font-size: 12px;
	padding: 3px 10px;
}

.p-new-single__date {
	color: #f17d22;
	font-size: 15px;
}

.p-new-single__img {
	margin-bottom: 30px;
}

.p-new-single__content {
	font-size: 15px;
	font-weight: 500;
	line-height: calc(29/15);
	margin-bottom: 100px;
}

.p-new-single__content p {
	margin-bottom: 1em;
}

.p-new-single__btn {
	text-align: center;
}

.p-new-single__btn a {
	display: inline-block;
	transition: .3s;
}

.p-new-single__btn a:hover {
	opacity: .6;
}

.p-new-archive {
	background: #F5F3F0;
	padding: 50px 20px 80px;
}

.p-new-archive__h2 {
	margin-bottom: 80px;
}

.p-photo-archive {
	background: #F5F3F0;
	padding: 50px 20px 80px;
}

.p-photo-archive__container {
	margin: auto;
	max-width: 100%;
	padding: 100px 0 100px;
	width: 900px;
}

.p-photo-archive__h2 {
	margin-bottom: 30px;
}

.p-photo-archive__lead {
	font-weight: 500;
	line-height: calc(30/16);
	margin-bottom: 70px;
	text-align: center;
}

.p-photo-archive__wrap {
	display: flex;
	flex-wrap: wrap;
}

.p-photo-archive__item {
	margin-bottom: 80px;
	width: 30%;
}

.p-photo-archive__item:not(:nth-of-type(3n)) {
	margin-right: 5%;
}

.p-photo-archive__meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.p-photo-archive__img {
	margin-bottom: 10px;
}

.p-photo-archive__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-photo-archive__text {
	font-weight: 500;
	line-height: calc(30/16);
}

.p-policy {
	padding: 40px 0 60px;
}

.p-policy__h2 {
	margin: 100px 0 50px;
}

.p-policy__item:not(:last-child) {
	margin-bottom: 100px;
}

.p-policy__h3 {
	color: #2DB786;
	font-size: 30px;
	margin-bottom: 30px;
}

.p-policy__text {
	font-weight: 500;
	margin-bottom: 30px;
}

.p-policy__text a {
	color: #2db786;
	text-decoration: none;
	transition: 0.3s;
}

.p-policy__text a:hover {
	opacity: 0.6;
}

.p-policy__list {
	font-weight: 500;
}

.p-policy__list ol {
	list-style-type: decimal;
	padding-left: 23px;
}

.p-policy__list li:not(:last-child) {
	margin-bottom: 20px;
}

.p-seminer {
	background: #f5f3f0;
	padding: 40px 0 60px;
}

.p-seminer__h2 {
	margin: 100px 0 50px;
}

.p-seminer__h3 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.p-seminer__h3 > span {
	display: inline-block;
	padding-bottom: 5px;
	position: relative;
}

.p-seminer__h3 > span::after {
	background: #1b1b1b;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-seminer__wrap {
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
	width: 700px;
}

.p-seminer__btn a {
	transition: .3s;
}

.p-seminer__btn a:hover {
	opacity: 0.6;
}

.p-system1 {
	background: #F5F3F0;
	padding: 30px 0 100px;
}

.p-system1__h2 {
	background: #1D6A51;
	color: #fff;
	font-size: 45px;
	letter-spacing: .1em;
	margin: 150px 0 50px;
	padding: 72px 15px;
	text-align: center;
}

.p-system1__container {
	background: #fff;
	border: 1px solid #2DB786;
	margin: auto;
	max-width: 100%;
	padding: 45px 35px;
	width: 1020px;
}

.p-system1__item {
	padding: 0 50px;
}

.p-system1__item:not(:last-child) {
	margin-bottom: 100px;
}

.p-system1__h3 {
	background: #2DB786;
	color: #fff;
	display: grid;
	font-size: 40px;
	font-weight: 500;
	height: 200px;
	letter-spacing: .075em;
	margin-bottom: 45px;
	place-items: center;
	text-align: center;
}

.p-system1__img img {
	margin: 0 auto 40px;
}

.p-system1-frame {
	background: #DFF3EA;
	margin-bottom: 10px;
	padding: 15px 25px;
}

.p-system1-frame--orange {
	background: rgba(241, 125, 34, 0.22);
}

.p-system1-frame__headline {
	color: #2DB786;
	font-size: 18px;
	margin-bottom: 10px;
}

.p-system1-frame__headline > span {
	border-bottom: 1px solid #2DB786;
	border-left: 1px solid #2DB786;
	display: inline-block;
	padding: 0 0 5px 5px;
	position: relative;
}

.p-system1-frame__headline--orange {
	color: #F17D22;
}

.p-system1-frame__headline--orange > span {
	border-bottom: 1px solid #F17D22;
	border-left: 1px solid #F17D22;
}

.p-system1-frame dl {
	display: flex;
	font-weight: 500;
}

.p-system1-frame dl dt {
	margin-right: 20px;
	max-width: 100%;
	width: 435px;
}

.p-system1-frame__text {
	font-weight: 500;
	line-height: calc(30/16);
}

.p-system1-frame__text strong {
	color: #1D6A51;
}

.p-system1__text {
	font-weight: 500;
	line-height: calc(30/16);
	margin-bottom: 20px;
}

.p-system1__text--orange {
	color: #F17D22;
}

.p-system1__text + .p-system1__text {
	margin-top: 40px;
}

.p-system1__bnr {
	margin-top: 30px;
}

.p-system1__bnr a {
	transition: .3s;
}

.p-system1__bnr a:hover {
	opacity: .6;
}

.p-system1__bnr img {
	margin: auto;
}

.p-teachers {
	background: #f5f3f0;
	padding: 40px 0 60px;
}

.p-teachers__h2 {
	margin: 100px 0 30px;
}

.p-teachers__lead {
	font-weight: 500;
	margin-bottom: 80px;
	text-align: center;
}

.p-teachers-wrap1 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.p-teachers-wrap1__item {
	width: 50%;
}

.p-teachers-wrap1__wrap {
	display: flex;
}

.p-teachers-wrap1__img {
	flex-shrink: 0;
	margin-right: 20px;
}

.p-teachers-wrap1__name {
	color: #2DB786;
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-teachers-wrap1__text {
	font-weight: 500;
	line-height: 1.8;
}

.p-teachers__h3 {
	color: #2DB786;
	font-size: 30px;
	line-height: 1.1;
	margin-bottom: 30px;
	padding-left: 20px;
	position: relative;
}

.p-teachers__h3::after {
	background: #2DB786;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 10px;
}

.p-teachers-wrap2 {
	display: flex;
	flex-wrap: wrap;
}

.p-teachers-wrap2__item {
	margin-bottom: 80px;
	width: 21%;
}

.p-teachers-wrap2__item:not(:nth-of-type(4n)) {
	margin-right: 4%;
}

.p-teachers-wrap2__img {
	margin-bottom: 10px;
}

.p-teachers-wrap2__university {
	color: #2DB786;
	font-size: 12px;
	font-weight: bold;
}

.p-teachers-wrap2__name {
	color: #2DB786;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 5px;
	position: relative;
}

.p-teachers-wrap2__name > span {
	font-size: 17px;
}

.p-teachers-wrap2__name::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-teachers-wrap2__block:not(:last-child) {
	border-bottom: 1px dotted #2DB786;
	margin-bottom: 10px;
}

.p-teachers-wrap2__headline {
	color: #f17d22;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-teachers-wrap2__headline2 {
	background: #f17d22;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 5px;
	padding: 5px 22px;
}

.p-teachers-wrap2__text {
	font-weight: 500;
	margin-bottom: 15px;
}

.p-top-topics {
	background-color: #f5f3f0;
	padding: 70px 0;
}

.p-top-topics__lead {
	color: #2d9875;
	font-size: 25px;
	font-weight: bold;
	line-height: calc(45 / 25);
	margin-bottom: 90px;
	text-align: center;
}

.p-top-topics__wrap {
	margin: 60px auto 100px;
	max-width: 100%;
	width: 900px;
}

.p-top-topics__item {
	display: flex;
	justify-content: space-between;
}

.p-top-topics__item:not(:last-child) {
	margin-bottom: 200px;
}

.p-top-topics__item:nth-of-type(even) {
	flex-direction: row-reverse;
}

.p-top-topics__content {
	width: calc(100% - 410px);
}

.p-top-topics__img {
	flex-shrink: 0;
}

.p-top-topics__item2 {
	display: flex;
	justify-content: space-between;
}

.p-top-topics__item2:not(:last-child) {
	margin-bottom: 200px;
}

.p-top-topics__content2 {
	width: 48%;
}

.p-top-topics__content2 h3 {
	color: #2db786;
	font-size: 30px;
	font-weight: 500;
	line-height: calc(40 / 30);
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.p-top-topics__content2 p {
	font-weight: 500;
	line-height: calc(30 / 16);
}

.p-top-topics__content2 p:not(:last-child) {
	margin-bottom: 30px;
}

.p-top-topics__headline {
	color: #2db786;
	font-size: 30px;
	font-weight: 500;
	line-height: calc(40 / 30);
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.p-top-topics__headline::before {
	content: "";
	left: 0;
	position: absolute;
	top: -30px;
	z-index: -1;
}

.p-top-topics__headline--01::before {
	background: url(../img/01.png) no-repeat center/contain;
	height: 65px;
	width: 87px;
}

.p-top-topics__headline--02::before {
	background: url(../img/02.png) no-repeat center/contain;
	height: 65px;
	width: 88px;
}

.p-top-topics__headline--03::before {
	background: url(../img/03.png) no-repeat center/contain;
	height: 65px;
	width: 87px;
}

.p-top-topics__headline--04::before {
	background: url(../img/04.png) no-repeat center/contain;
	height: 65px;
	width: 89px;
}

.p-top-topics__text1 {
	font-weight: 500;
	line-height: calc(30 / 16);
	margin-bottom: 30px;
}

.p-top-topics__text2 {
	font-size: 18px;
	font-weight: bold;
}

.p-top-topics__btn a {
	transition: 0.3s;
}

.p-top-topics__btn a:hover {
	opacity: 0.6;
}

.p-top-topics__bnr img {
	margin: auto;
}

.p-top-features {
	background-color: #f5f3f0;
	padding: 130px 0;
}

.p-top-features__lead img {
	margin: auto;
}

.p-top-features__wrap {
	padding: 140px 0 40px;
}

.p-top-features__item {
	background: #fff;
	margin: auto;
	max-width: 100%;
	padding: 0 0 80px 80px;
	position: relative;
	width: 900px;
}

.p-top-features__item::after {
	background: #fff;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	width: 50vw;
}

.p-top-features__item:nth-of-type(-n + 2) {
	margin-bottom: 150px;
}

.p-top-features__content {
	padding: 50px 20px 50px 260px;
	position: relative;
	z-index: 1;
}

.p-top-features__content::before {
	content: "";
	left: -100px;
	position: absolute;
	top: 50px;
}

.p-top-features__content--1 {
	padding-left: 260px;
}

.p-top-features__content--1::before {
	background: url(../img/01.png) no-repeat center/contain;
	height: 215px;
	width: 302px;
}

.p-top-features__content--2 {
	margin-bottom: -45px;
	padding-left: 260px;
}

.p-top-features__content--2::before {
	background: url(../img/02.png) no-repeat center/contain;
	height: 215px;
	width: 306px;
}

.p-top-features__content--3 {
	margin-bottom: -45px;
	padding-left: 260px;
}

.p-top-features__content--3::before {
	background: url(../img/03.png) no-repeat center/contain;
	height: 215px;
	width: 304px;
}

.p-top-features__h3 {
	color: #2DB786;
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 30px;
}

.p-top-features__h3 > span {
	font-size: 70px;
	font-weight: bold;
}

.p-top-features__list {
	margin-bottom: 30px !important;
}

.p-top-features__list li {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.7;
	margin-bottom: 15px;
	padding-left: 35px;
	position: relative;
}

.p-top-features__list li::before {
	background: url(../img/icon_check.png) no-repeat center/contain;
	content: "";
	height: 28px;
	left: 0;
	position: absolute;
	top: 4px;
	width: 28px;
}

.p-top-features__text {
	font-weight: 500;
	line-height: 1.9;
}

.p-top-features__text > span {
	color: #2DB786;
}

.p-top-features__text:not(:last-of-type) {
	margin-bottom: 20px;
}

.p-top-features__text1 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-top-features__bottom {
	position: relative;
	z-index: 1;
}

.p-top-features__btn {
	margin-bottom: 150px;
	text-align: center;
}

.p-top-features__btn a {
	transition: 0.3s;
}

.p-top-features__btn a:hover {
	opacity: 0.6;
}

.p-top-features__btn img {
	margin: 15px auto 0;
}

.p-top-features__btn-text {
	color: #2DB786;
	font-size: 20px;
	font-weight: bold;
}

.p-top-features__h3-2 {
	color: #2DB786;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 50px;
	text-align: center;
}

.p-top-features__h3-2 > span {
	padding-bottom: 10px;
	position: relative;
}

.p-top-features__h3-2 > span::after {
	border-bottom: 3px dotted #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-features__text2 {
	line-height: 1.9;
	margin: 0 auto 40px;
	max-width: 100%;
	width: 560px;
}

.p-top-features__btn2 a {
	transition: 0.3s;
}

.p-top-features__btn2 a:hover {
	opacity: 0.6;
}

.p-top-features__btn2 img {
	margin: auto;
}

.p-top-cta {
	background: #b9e5d1;
	padding: 60px 30px;
}

.p-top-cta__wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
	width: 900px;
}

.p-top-cta__left {
	width: 47%;
}

.p-top-cta__right {
	width: 48%;
}

.p-top-cta__h2 {
	color: #2DB786;
	font-size: 40px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	position: relative;
	text-align: center;
}

.p-top-cta__h2::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-cta__text {
	line-height: 1.88;
}

.p-top-cta__btn-text {
	color: #2DB786;
	letter-spacing: 0.8px;
	margin-bottom: 25px;
	text-align: center;
}

.p-top-blog {
	padding: 130px 20px;
}

.p-top-blog__container {
	margin: auto;
	max-width: 100%;
	width: 880px;
}

.p-top-blog__h2 {
	margin-bottom: 50px;
}

.p-top-blog__h3 {
	color: #2DB786;
	font-size: 30px;
	margin-bottom: 40px;
	padding-bottom: 5px;
	position: relative;
}

.p-top-blog__h3::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-blog__h3--100 span {
	display: inline-block;
	width: 100%;
}

.p-top-blog__slider {
	margin: 0 auto 50px;
	max-width: calc(100% - 120px);
	width: 960px;
}

.p-top-blog__item {
	color: #1b1b1b;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	text-decoration: none;
	transition: 0.3s;
	width: 100%;
}

.p-top-blog__item:hover {
	opacity: 0.6;
}

.p-top-blog__img {
	flex-shrink: 0;
	height: 180px;
	margin-right: 30px;
	width: 255px;
}

.p-top-blog__img img {
	-o-object-fit: cover;
	height: 180px;
	object-fit: cover;
	width: 100%;
}

.p-top-blog__content {
	width: 100%;
}

.p-top-blog__title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-top-blog__text {
	font-weight: 500;
	margin-bottom: 10px;
}

.p-top-blog__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-top-blog__meta--mb {
	margin-bottom: 40px;
}

.p-top-blog__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.p-top-blog__item2 {
	color: inherit;
	display: flex;
	padding: 20px 0;
	text-decoration: none;
	transition: 0.3s;
	width: 47%;
}

.p-top-blog__item2:nth-last-of-type(n+3) {
	border-bottom: 1px dotted #2d2d2d;
}

.p-top-blog__item2:hover {
	opacity: 0.6;
}

.p-top-blog__img2 {
	flex-shrink: 0;
	margin-right: 20px;
	width: 155px;
}

.p-top-blog__cat {
	background: #f17d22;
	border-radius: 12px;
	color: #fff;
	display: inline-block;
	font-family: "Zen Maru Gothic", serif;
	font-size: 12px;
	margin-bottom: 5px;
	padding: 3px 16px;
}

.p-top-blog__date {
	color: #f17d22;
	text-align: right;
}

.p-top-blog__title2 {
	font-weight: 500;
}

.p-top-blog__btn {
	margin-bottom: 90px;
	text-align: center;
}

.p-top-blog__btn a {
	display: inline-block;
	transition: 0.3s;
}

.p-top-blog__btn a:hover {
	opacity: 0.6;
}

.p-top-blog__row {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: calc(100%);
	width: 900px;
}

.p-top-blog__col {
	width: 29%;
}

.p-top-movies {
	background-color: #f5f3f0;
	overflow-x: hidden;
	padding: 80px 20px;
	position: relative;
}

.p-top-movies__wave {
	background: #f5f3f0;
	height: 73px;
	left: 0;
	padding-top: 115px;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-top-movies__wave::before,
.p-top-movies__wave::after {
	border-radius: 50% 100%;
	content: "";
	display: block;
	position: absolute;
}

.p-top-movies__wave::before {
	background-color: #f5f3f0;
	height: 100%;
	right: -1.5%;
	top: 40%;
	width: 55%;
}

.p-top-movies__wave::after {
	background-color: #fff;
	height: 109%;
	left: -1.5%;
	top: 60%;
	width: 55%;
}

.p-top-movies__h2 {
	position: relative;
}

.p-top-movies__lead {
	margin: 0 auto 60px;
	max-width: 100%;
	width: 650px;
}

.p-top-movies__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-top-movies__meta--mb {
	margin-bottom: 40px;
}

.p-top-movies__caption {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.p-top-movies__img {
	aspect-ratio: 16 / 9;
	margin-bottom: 10px;
	width: 100%;
}

.p-top-movies__img iframe {
	height: 100%;
	width: 100%;
}

.p-top-movies__cat {
	background: #2DB786;
	color: #fff;
	font-size: 12px;
	padding: 3px 10px;
}

.p-top-movies__slider {
	margin: 0 auto 50px;
	max-width: calc(100% - 120px);
	width: 960px;
}

.p-top-movies__item {
	margin: 0 22px 0;
	width: 255px;
}

.p-top-movies__btn {
	text-align: center;
}

.p-top-movies__btn a {
	transition: 0.3s;
}

.p-top-movies__btn a:hover {
	opacity: 0.6;
}

.p-top-movies__btn img {
	margin: auto;
}

.p-top-movies__wrap {
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
	width: 880px;
}

.p-top-movies__bnr {
	background: #2DB786;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	display: block;
	display: grid;
	height: 125px;
	place-items: center;
	text-decoration: none;
	transition: .3s;
	width: 32%;
}

.p-top-movies__bnr > span {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	height: 45px;
	line-height: 45px;
	text-align: center;
	width: 210px;
}

.p-top-movies__bnr:hover {
	opacity: .6;
}

.p-top-today {
	background-color: #f5f3f0;
	padding: 20px 20px 80px;
	position: relative;
}

.p-top-today__wrap {
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
	width: 880px;
}

.p-top-today__bnr {
	background: #2DB786;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	display: block;
	display: grid;
	height: 125px;
	place-items: center;
	text-decoration: none;
	transition: .3s;
	width: 48%;
}

.p-top-today__bnr > span {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	height: 45px;
	line-height: 45px;
	text-align: center;
	width: 210px;
}

.p-top-today__bnr:hover {
	opacity: .6;
}

.p-top-album {
	background-color: #f5f3f0;
	padding: 80px 30px;
}

.p-top-album__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	max-width: 100%;
	width: 900px;
}

.p-top-album__item {
	aspect-ratio: 1/1;
	margin-bottom: 10px;
	width: 24%;
}

.p-top-album__item > img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-top-album__btn {
	margin-top: 50px;
	text-align: center;
}

.p-top-album__btn a {
	display: inline-block;
	transition: .3s;
}

.p-top-album__btn a:hover {
	opacity: .6;
}

.p-top-flow {
	padding: 130px 0;
}

.p-top-flow__container {
	margin: auto;
	max-width: 100%;
	position: relative;
	width: 950px;
}

.p-top-flow__h2 {
	margin-bottom: 50px;
}

.p-top-flow__notice {
	border: 1px solid #D5474A;
	color: #D5474A;
	font-size: 11px;
	font-weight: 500;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 10px;
	width: 195px;
}

.p-top-flow__wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 50px;
}

.p-top-flow__item {
	width: 18%;
}

.p-top-flow__item:nth-of-type(n + 2) {
	position: relative;
}

.p-top-flow__item:nth-of-type(n + 2)::before {
	background: url(../img/flow_arrow.png) no-repeat center/contain;
	content: "";
	height: 19px;
	left: -14%;
	position: absolute;
	top: 49px;
	width: 23px;
}

.p-top-flow__img {
	margin-bottom: 20px;
}

.p-top-flow__img img {
	margin: auto;
}

.p-top-flow__title {
	color: #2DB786;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
	text-align: center;
}

.p-top-flow__title > span {
	display: inline-block;
	padding-bottom: 3px;
	position: relative;
}

.p-top-flow__title > span::after {
	border-bottom: 1px dotted #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-flow__text {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}

.p-top-flow__btn a {
	transition: 0.3s;
}

.p-top-flow__btn a:hover {
	opacity: 0.6;
}

.p-top-flow__btn img {
	margin: auto;
}

.p-top-information {
	background-color: #f5f3f0;
	overflow-x: hidden;
	padding: 80px 0;
	position: relative;
}

.p-top-information__wave {
	background: #f5f3f0;
	height: 73px;
	left: 0;
	padding-top: 115px;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-top-information__wave::before,
.p-top-information__wave::after {
	border-radius: 50% 100%;
	content: "";
	display: block;
	position: absolute;
}

.p-top-information__wave::before {
	background-color: #f5f3f0;
	height: 100%;
	right: -1.5%;
	top: 40%;
	width: 55%;
}

.p-top-information__wave::after {
	background-color: #fff;
	height: 109%;
	left: -1.5%;
	top: 60%;
	width: 55%;
}

.p-top-information__h2 {
	margin-bottom: 50px;
	position: relative;
}

.p-top-information__wrap2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 0px;
	max-width: 100%;
	width: 720px;
}

.p-top-information__item2 {
	transition: 0.3s;
	width: 50%;
}

.p-top-information__item2:hover {
	opacity: 0.6;
}

.p-top-information__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 0px;
	max-width: 100%;
	width: 600px;
}

.p-top-information__item {
	background: #2DB786;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: grid;
	font-size: 18px;
	font-weight: 500;
	height: 70px;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	place-content: center;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
	width: 32%;
}

.p-top-information__item:hover {
	opacity: 0.6;
}

.p-top-information__item--7,
.p-top-information__item--8 {
	width: 49%;
}

.p-top-information__item > span {
	position: relative;
}

.p-top-information__item > span::before {
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-top-information__item--1 > span {
	padding-left: 40px;
}

.p-top-information__item--1 > span::before {
	background: url(../img/information_icon01.png) no-repeat center/contain;
	height: 30px;
	width: 30px;
}

.p-top-information__item--2 > span {
	padding-left: 35px;
}

.p-top-information__item--2 > span::before {
	background: url(../img/information_icon02.png) no-repeat center/contain;
	height: 30px;
	width: 23px;
}

.p-top-information__item--3 > span {
	padding-left: 45px;
}

.p-top-information__item--3 > span::before {
	background: url(../img/information_icon03.png) no-repeat center/contain;
	height: 26px;
	width: 35px;
}

.p-top-information__item--4 > span {
	padding-left: 50px;
}

.p-top-information__item--4 > span::before {
	background: url(../img/information_icon04.png) no-repeat center/contain;
	height: 27px;
	width: 35px;
}

.p-top-information__item--5 > span {
	padding-left: 35px;
}

.p-top-information__item--5 > span::before {
	background: url(../img/information_icon05.png) no-repeat center/contain;
	height: 30px;
	width: 23px;
}

.p-top-information__item--6 > span {
	padding-left: 30px;
}

.p-top-information__item--6 > span::before {
	background: url(../img/information_icon06.png) no-repeat center/contain;
	height: 35px;
	width: 18px;
}

.p-top-information__item--7 > span {
	padding-left: 50px;
}

.p-top-information__item--7 > span::before {
	background: url(../img/information_icon07.png) no-repeat center/contain;
	height: 31px;
	width: 38px;
}

.p-top-information__item--8 > span {
	padding-left: 35px;
}

.p-top-information__item--8 > span::before {
	background: url(../img/information_icon08.png) no-repeat center/contain;
	height: 30px;
	width: 22px;
}

.p-top-information__bnr {
	margin: 0 auto 30px;
	max-width: 100%;
	width: 720px;
}

.p-top-information__bnr a {
	transition: 0.3s;
}

.p-top-information__bnr a:hover {
	opacity: 0.6;
}

.js-fadein,
.js-fadein-up,
.js-fadein-down {
	opacity: 0;
	transition: 1s .5s;
}

.js-fadein.is-fadein,
.is-fadein.js-fadein-up,
.is-fadein.js-fadein-down {
	opacity: 1;
	transform: translate(0);
}

.js-fadein-up {
	transform: translateY(-30px);
}

.js-fadein-down {
	transform: translateY(30px);
}

.u-fit-aspect,
.u-fit-aspect--bottom,
.u-fit-aspect--50,
.u-fit-aspect--100 {
	padding: 66.6% 0 0;
	position: relative;
	width: 100%;
}

.u-fit-aspect > img,
.u-fit-aspect--bottom > img,
.u-fit-aspect--50 > img,
.u-fit-aspect--100 > img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.u-fit-aspect--bottom > img {
	-o-object-position: bottom;
	object-position: bottom;
}

.u-fit-aspect--50 {
	padding: 50% 0 0;
}

.u-fit-aspect--100 {
	padding: 100% 0 0;
}

.u-mbl {
	margin-bottom: 5em !important;
}

.u-mbm {
	margin-bottom: 3em !important;
}

.u-mbs {
	margin-bottom: 1em !important;
}

.u-mb0 {
	margin-bottom: 0 !important;
}

.u-mt0 {
	margin-top: 0 !important;
}

.u-tac {
	text-align: center;
}

.u-tar {
	text-align: right;
}

@media (prefers-reduced-motion: reduce) {

* {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media (min-width: 768px) {

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

#sidebar {
	float: right;
	margin-left: 2%;
	width: 23.5%;
}

.gutters .col {
	margin-left: 2%;
}

.span_1 {
	width: 8.33333333333%;
}

.span_2 {
	width: 16.6666666667%;
}

.span_3 {
	width: 25%;
}

.span_4 {
	width: 33.3333333333%;
}

.span_5 {
	width: 41.6666666667%;
}

.span_6 {
	width: 50%;
}

.span_7 {
	width: 58.3333333333%;
}

.span_8 {
	width: 66.6666666667%;
}

.span_9 {
	width: 75%;
}

.span_10 {
	width: 83.3333333333%;
}

.span_11 {
	width: 91.6666666667%;
}

.span_12 {
	width: 100%;
}

.gutters .span_1 {
	width: 6.5%;
}

.gutters .span_2 {
	width: 15%;
}

.gutters .span_3 {
	width: 23.5%;
}

.gutters .span_4 {
	width: 32%;
}

.gutters .span_5 {
	width: 40.5%;
}

.gutters .span_6 {
	width: 49%;
}

.gutters .span_7 {
	width: 57.5%;
}

.gutters .span_8 {
	width: 66%;
}

.gutters .span_9 {
	width: 74.5%;
}

.gutters .span_10 {
	width: 83%;
}

.gutters .span_11 {
	width: 91.5%;
}

.gutters .span_12 {
	width: 100%;
}

.container {
	margin: auto;
	max-width: 1000px;
	padding: 0 10px;
}

* + .container {
	margin-top: 40px;
}

.col {
	float: left;
}

.reverse > .col {
	float: right;
}

.col:not(:last-child) {
	margin-bottom: 0;
}

.reverse > .col:last-child,
:not(.reverse) > .col:first-child {
	margin-left: 0;
}

.col.offset_1 {
	margin-left: 8.33333333333%;
}

.gutters .col.offset_1 {
	margin-left: 10.5%;
}

.gutters .col.offset_1:first-child {
	margin-left: 8.5%;
}

.col.offset_2 {
	margin-left: 16.6666666667%;
}

.gutters .col.offset_2 {
	margin-left: 19%;
}

.gutters .col.offset_2:first-child {
	margin-left: 17%;
}

.col.offset_3 {
	margin-left: 25%;
}

.gutters .col.offset_3 {
	margin-left: 27.5%;
}

.gutters .col.offset_3:first-child {
	margin-left: 25.5%;
}

.col.offset_4 {
	margin-left: 33.3333333333%;
}

.gutters .col.offset_4 {
	margin-left: 36%;
}

.gutters .col.offset_4:first-child {
	margin-left: 34%;
}

.col.offset_5 {
	margin-left: 41.6666666667%;
}

.gutters .col.offset_5 {
	margin-left: 44.5%;
}

.gutters .col.offset_5:first-child {
	margin-left: 42.5%;
}

.col.offset_6 {
	margin-left: 50%;
}

.gutters .col.offset_6 {
	margin-left: 53%;
}

.gutters .col.offset_6:first-child {
	margin-left: 51%;
}

.col.offset_7 {
	margin-left: 58.3333333333%;
}

.gutters .col.offset_7 {
	margin-left: 61.5%;
}

.gutters .col.offset_7:first-child {
	margin-left: 59.5%;
}

.col.offset_8 {
	margin-left: 66.6666666667%;
}

.gutters .col.offset_8 {
	margin-left: 70%;
}

.gutters .col.offset_8:first-child {
	margin-left: 68%;
}

.col.offset_9 {
	margin-left: 75%;
}

.gutters .col.offset_9 {
	margin-left: 78.5%;
}

.gutters .col.offset_9:first-child {
	margin-left: 76.5%;
}

.col.offset_10 {
	margin-left: 83.3333333333%;
}

.gutters .col.offset_10 {
	margin-left: 87%;
}

.gutters .col.offset_10:first-child {
	margin-left: 85%;
}

.col.offset_11 {
	margin-left: 91.6666666667%;
}

.gutters .col.offset_11 {
	margin-left: 95.5%;
}

.gutters .col.offset_11:first-child {
	margin-left: 93.5%;
}

.col.offset_12 {
	margin-left: 100%;
}

:not(.reverse) > .col.break + .col {
	clear: left;
	margin-left: 0;
}

.reverse > .col.break {
	margin-left: 0;
}

.reverse > .col.break + .col {
	clear: right;
	margin-right: 0;
}

.col.break ~ .col {
	margin-top: 2%;
}

.u-sp-only {
	display: none !important;
}

}

@media (min-width: 1024px) {

.container {
	padding: 0;
}

}

@media (min-width: 1500px) {

.c-mv {
	height: 550px;
}

}

@media (max-width: 1150px) {

.c-gnav {
	padding-left: 160px;
}

.c-gnav ul li {
	margin-right: 10px;
}

.c-gnav ul li a {
	font-size: 14px;
}

.c-gnav ul + ul li {
	margin-right: 15px;
}

.c-gnav ul + ul li a {
	font-size: 15px;
	height: 40px;
	line-height: 40px;
	width: 140px;
}

}

@media (max-width: 929px) {

.l-container {
	padding-left: 20px;
	padding-right: 20px;
}

.l-header__wrapper {
	padding-left: 20px;
	padding-right: 20px;
}

}

@media (max-width: 767px) {

body {
	padding-top: 72px;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 28px;
	font-size: 2.8rem;
}

h3 {
	font-size: 22px;
	font-size: 2.2rem;
}

h4 {
	font-size: 18px;
	font-size: 1.8rem;
}

h5 {
	font-size: 16px;
	font-size: 1.6rem;
}

.slick-prev {
	height: 35px;
	width: 35px;
}

.slider__num {
	font-size: 14px;
}

.slick-next {
	height: 35px;
	width: 35px;
}

.l-container {
	padding-left: 15px;
	padding-right: 15px;
}

.l-footer__wrapper {
	padding-bottom: 80px;
}

.l-footer-tel {
	border-radius: 10px;
	flex-direction: column;
	margin: 0 auto 40px;
	padding: 15px;
	text-align: center;
}

.l-footer-tel__left {
	font-size: 28px;
	margin-bottom: 10px;
	margin-right: 0px;
}

.l-footer-tel__right {
	font-size: 14px;
}

.l-header__wrapper {
	padding-left: 15px;
	padding-right: 15px;
}

.l-header__logo {
	left: 15px;
	top: 3px;
}

.l-header__logo img {
	width: 62px;
}

.l-header__logo--2 {
	padding-left: 10px;
}

.custom-logo-link img {
	max-height: 44px;
	max-width: 230px;
}

.c-cta {
	padding: 40px 30px 50px;
}

.c-cta__wrap {
	flex-direction: column;
}

.c-cta__left {
	margin-bottom: 40px;
	width: 100%;
}

.c-cta__right {
	width: 100%;
}

.c-cta__h2 {
	font-size: 29px;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.c-cta__text {
	font-size: 14px;
}

.c-cta__btn-text {
	font-size: 13px;
	letter-spacing: 0.6px;
	margin-bottom: 20px;
}

.c-float-menu {
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	margin: auto;
	top: auto;
}

.c-float-menu__btn1 {
	flex-grow: 1;
	margin-bottom: 0px;
	margin-right: 3px;
}

.c-float-menu__btn1 > a {
	background: #0D4D81;
	display: block;
	display: grid;
	height: 100%;
	place-items: center;
	width: 100%;
}

.c-float-menu__btn1 > a:hover {
	opacity: .7;
}

.c-float-menu__btn2 {
	width: 69px;
}

.c-float-menu a {
	transition: .3s;
}

.c-float-menu a:hover {
	opacity: 0.6;
}

.c-fnav {
	margin: 0 auto 30px;
}

.c-fnav li {
	margin-bottom: 10px;
	padding-left: 0px;
	width: 50%;
}

.c-fnav li:not(:nth-of-type(3n-2)) {
	padding-left: 0px;
}

.c-fnav a {
	font-size: 13px;
}

.c-fnav__wrapper li {
	margin: 0;
}

.c-gnav {
	padding: 36px 15px;
}

.c-gnav__icon {
	display: block;
}

body.menu-open {
	overflow: hidden;
}

.c-gnav__tel img {
	margin: auto;
}

.c-gnav__wrapper {
	background: #fff;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow: auto;
	padding: 80px 35px;
	position: fixed;
	text-align: left;
	top: 0;
	transform: rotateX(90deg);
	transform-origin: center top;
	transition: opacity 0.3s;
	width: 100vw;
	z-index: 40;
}

.c-gnav__wrapper.is-open {
	opacity: 1;
	transform: rotate(0deg);
}

.c-gnav__wrapper ul {
	border-bottom: 2px solid #2DB786;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.c-gnav__wrapper ul li {
	margin: 0 0 20px;
	width: 48%;
}

.c-gnav__wrapper ul li a {
	color: #2DB786;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.c-gnav__icon {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

.c-gnav__icon::after {
	color: #2DB786;
	content: "MENU";
	display: none;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 4px;
	text-align: center;
}

.c-gnav__icon.is-open::after {
	content: "CLOSE";
}

.c-gnav__icon a {
	display: block;
	height: 24px;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: transform 0.3s;
	width: 30px;
}

.c-gnav__icon a:after,
.c-gnav__icon a:before {
	background: #2DB786;
	content: "";
	display: block;
	height: 3px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	transition: transform 0.5s;
	width: 100%;
}

.c-gnav__icon a:before {
	top: 0;
}

.c-gnav__icon a:after {
	bottom: 0;
}

.c-gnav__icon a span {
	background: #2DB786;
	height: 3px;
	left: 0;
	margin: auto;
	overflow: hidden;
	position: absolute;
	right: 0;
	text-indent: 100%;
	top: 50%;
	transform: translate(0, -50%);
	transition: transform 0.5s;
	white-space: nowrap;
	width: 100%;
}

.c-gnav__icon a.is-open:not(.fix) {
	background: none;
	margin: auto;
}

.c-gnav__icon a.is-open:not(.fix):before {
	background: #2DB786;
	top: 50%;
	transform: translate(0, -50%) rotate(45deg);
	width: 88%;
}

.c-gnav__icon a.is-open:not(.fix):after {
	background: #2DB786;
	bottom: 50%;
	transform: translate(0, 50%) rotate(-45deg);
	width: 88%;
}

.c-gnav__icon a.is-open:not(.fix) span {
	transform: translate(100%, -50%);
}

.c-mv {
	height: 480px;
}

.c-mv__text1 {
	margin: auto;
	margin-bottom: 15px !important;
	width: 211px;
}

.c-mv--2::before {
	width: 30%;
}

.c-mv__inner2 {
	bottom: 20px;
	font-size: 20px;
	left: 15px;
	letter-spacing: 0;
}

.c-mv__inner2 > span {
	margin-bottom: 5px;
	padding: 4px 10px;
}

.c-mv__img img {
	height: 100%;
}

.c-mv__inner {
	font-size: 28px;
	font-size: 2.8rem;
	padding: 0 0px;
}

.c-mv--2 {
	height: 200px;
}

.c-mv--2::before {
	width: 30%;
}

.c-mv__text {
	font-size: 20px;
	padding: 7px 10px;
}

.p-access__h2 {
	margin: 30px 0 30px;
}

.p-access__h2 img {
	width: 200px;
}

.p-access__wrap {
	flex-direction: column;
	margin-bottom: 50px;
}

.p-access__content {
	margin-bottom: 30px;
	width: 100%;
}

.p-access__content dl {
	font-size: 14px;
	margin-bottom: 10px;
}

.p-access__content dt {
	width: 50px;
}

.p-access__img {
	width: 100%;
}

.p-access__map {
	padding-top: 100%;
}

.p-blog-archive {
	padding: 30px 15px 20px;
}

.p-blog-archive__container {
	margin: 0px auto 0;
	padding: 70px 0 70px;
}

.p-blog-archive__h2 img {
	width: 200px;
}

.p-blog-archive__lead {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-blog-archive__wrap {
	flex-direction: column;
}

.p-blog-archive__item {
	margin-bottom: 50px;
	width: 100%;
}

.p-blog-archive__item:not(:nth-of-type(3n)) {
	margin-right: 0%;
}

.p-blog-archive__img {
	margin-bottom: 10px;
}

.p-blog-archive__title {
	font-size: 18px;
	margin-bottom: 10px;
}

.p-blog-archive__text {
	font-size: 14px;
}

.p-blog-single {
	padding: 30px 15px 50px;
}

.p-blog-single__container {
	margin: 50px auto 0;
}

.p-blog-single__title {
	font-size: 24px;
	margin-bottom: 15px;
}

.p-blog-single__meta {
	margin-bottom: 10px;
}

.p-blog-single__cat {
	margin-right: 10px;
}

.p-blog-single__cat > span {
	border-radius: 12px;
	font-size: 12px;
	padding: 3px 10px;
}

.p-blog-single__date {
	font-size: 14px;
}

.p-blog-single__img {
	margin-bottom: 20px;
}

.p-blog-single__content {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-coaching1 {
	padding: 20px 0 0px;
}

.p-coaching1__lead {
	flex-direction: column-reverse;
	padding: 50px 0 40px;
}

.p-coaching1__content {
	width: 100%;
}

.p-coaching1__headline {
	font-size: 22px;
	margin-bottom: 10px;
}

.p-coaching1__text {
	font-size: 14px;
}

.p-coaching1__img {
	margin-bottom: 20px;
	width: 100%;
}

.p-coaching1__img img {
	margin: auto;
}

.p-coaching1-point__headline {
	font-size: 22px;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.p-coaching1-point__headline::before {
	width: 300px;
}

.p-coaching1-point__headline::after {
	content: "";
	height: 14px;
	width: 14px;
}

.p-coaching1-point__wrap {
	align-items: center;
	flex-direction: column;
}

.p-coaching1-point__item {
	margin-bottom: 20px;
	padding: 25px 10px;
	width: 80%;
}

.p-coaching1-point__text1 {
	font-size: 16px;
	margin-bottom: 5px;
}

.p-coaching1-point__text2 {
	font-size: 20px;
}

.p-coaching2 {
	padding: 0px 0 50px;
}

.p-coaching2__wave {
	height: 30px;
	padding-top: 40px;
}

.p-coaching2__h2 {
	margin-bottom: 30px;
}

.p-coaching2__h2 img {
	width: 200px;
}

.p-coaching2__wrap {
	flex-direction: column;
}

.p-coaching2__img {
	margin-bottom: 20px;
	width: 100%;
}

.p-coaching2__img img {
	max-width: 80%;
}

.p-coaching2__content {
	width: 100%;
}

.p-coaching2__h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.p-coaching2__h3 > span {
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.p-coaching2__h3 > span::after {
	height: 2px;
}

.p-coaching2__text {
	font-size: 14px;
}

.p-coaching3 {
	padding: 20px 0;
}

.p-coaching3::before {
	border-width: 0 15px 26.0px 15px;
}

.p-coaching3__wrap {
	flex-direction: column;
}

.p-coaching3__wrap--2 {
	margin-top: 30px;
}

.p-coaching3__content {
	margin-bottom: 20px;
	width: 100%;
}

.p-coaching3__head {
	margin-bottom: 15px;
}

.p-coaching3__point {
	border-radius: 26px;
	font-size: 16px;
	margin-right: 10px;
	padding: 8px 15px;
}

.p-coaching3__h3 {
	font-size: 15px;
}

.p-coaching3__text {
	font-size: 14px;
}

.p-coaching3__img {
	width: 100%;
}

.p-coaching3__img img {
	margin: auto;
}

.p-coaching4 {
	padding: 40px 0 40px;
}

.p-coaching4__h2 {
	margin-bottom: 50px;
}

.p-coaching4__h2 img {
	width: 250px;
}

.p-coaching4__num {
	margin-bottom: 20px;
}

.p-coaching4__num img {
	width: 50px;
}

.p-coaching4__h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.p-coaching4__h3 > span {
	padding-bottom: 5px;
}

.p-coaching4__tag {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.p-coaching4__tag > p {
	font-size: 12px;
	margin: 0 5px;
	padding: 5px 22px;
}

.p-coaching4__text {
	font-size: 14px;
	margin-bottom: 30px;
	text-align: left;
}

.p-coaching4__text br {
	display: none;
}

.p-coaching4__img img {
	margin: auto;
}

.p-contact1 {
	padding: 20px 0 50px;
}

.p-contact1__h2 {
	margin: 30px 0 30px;
}

.p-contact1__h2 img {
	width: 200px;
}

.p-contact1__lead {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-contact1__lead2 {
	font-size: 16px;
	margin-bottom: 20px;
}

.p-contact1-form__item {
	margin-bottom: 20px;
}

.p-contact1-form__caption {
	font-size: 16px;
}

.p-contact1-form input {
	font-size: 16px;
	outline: none;
	padding: 10px 10px;
}

.p-contact1-form__input {
	width: 49%;
}

.p-contact1-form__input input {
	width: 100%;
}

.p-contact1-form__select select {
	font-size: 16px;
	padding: 10px 10px;
}

.p-contact1-form .mwform-radio-field-text {
	font-size: 16px;
}

.p-contact1-form .horizontal-item + .horizontal-item {
	margin-left: 20px !important;
}

.p-contact1-form__wide input[type="email"],
.p-contact1-form__wide input[type="text"] {
	width: 100%;
}

.p-contact1-form__send {
	margin-top: 30px;
	text-align: center;
}

.p-contact1-form button {
	background: none;
	margin: auto;
	max-width: 100%;
	padding: 0;
	text-align: center;
	width: 428px;
}

.p-contact2 {
	padding: 30px 0 30px;
}

.p-contact2__h3 {
	color: #2DB786;
	font-size: 24px;
	margin-bottom: 30px;
}

.p-contact2__text {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-request__h2 {
	margin: 30px 0 30px;
}

.p-request__h2 img {
	width: 250px;
}

.p-course__table2 span {
	font-size: 9px;
}

.p-course__headline {
	font-size: 22px;
	margin-bottom: 30px;
	padding: 2px 0;
}

.p-course__h3 {
	font-size: 20px;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 80px;
}

.p-course__h3 > span {
	font-feature-settings: "palt";
}

.p-course__h3-no1 {
	font-size: 14px;
}

.p-course__h3-no1 > span {
	border-radius: 17px;
	margin-right: 10px;
	padding: 3px 14px;
}

.p-course__circle {
	font-size: 13px;
	height: 70px;
	right: 15px;
	width: 70px;
}

.p-course__target {
	font-size: 16px;
	margin-bottom: 20px;
}

.p-course__target > span {
	border-radius: 20px;
	font-size: 16px;
	margin-right: 10px;
	padding: 2px 16px;
}

.p-course__h4 {
	font-size: 16px;
	margin-bottom: 10px;
	padding-left: 15px;
}

.p-course__h4::before {
	height: 10px;
	width: 10px;
}

.p-course__text {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-course__text > span {
	font-size: 16px;
}

.p-course__table2 {
	margin-bottom: 20px;
}

.p-course__table2 th {
	font-size: 13px;
	width: 100px;
}

.p-course__table2 td {
	font-size: 13px;
	padding: 4px 15px;
}

.p-course__table {
	font-size: 14px;
	margin-bottom: 30px;
	overflow-x: scroll;
}

.p-course__table table {
	min-width: 700px;
	width: 100%;
}

.p-course__table th {
	padding: 10px 10px;
}

.p-course__table td {
	padding: 30px 10px;
	text-align: center;
	vertical-align: middle;
}

.p-course__table--1 .bb {
	border-bottom: 1px solid #5abaaf;
}

.p-course__table--1 .bl {
	border-left: 1px solid #5abaaf;
}

.p-course__table--1 th {
	background: #5abaaf;
}

.p-course__table--1 td {
	background: rgba(90, 186, 175, 0.2);
}

.p-course__table--1 td:not(:last-child) {
	border-right: 1px solid #5abaaf;
}

.p-course__table--1 tr:not(:last-child) {
	border-bottom: 1px solid #5abaaf;
}

.p-course__note {
	font-size: 12px;
}

.p-course-feature {
	margin-bottom: 20px;
	padding: 20px 0;
}

.p-course-feature::before {
	border-width: 0 10px 17.3px 10px;
}

.p-course-feature__head {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.p-course-feature__head > span {
	border-radius: 20px;
	font-size: 18px;
	margin-right: 10px;
	padding: 10px 10px;
}

.p-course-feature__list:not(:last-child) {
	margin-bottom: 20px;
}

.p-course-feature__list li {
	font-size: 14px;
	margin-bottom: 5px;
	padding-left: 15px;
}

.p-course-feature__frame {
	font-size: 13px;
	margin-top: 5px;
	padding: 10px 15px;
}

.p-course-feature__headline {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.p-course-feature__headline > span {
	display: inline-block;
	padding-bottom: 3px;
	position: relative;
}

.p-course-feature__headline > span::after {
	background: #fff;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-course__bg {
	background: transparent;
	padding: 0px 20px;
}

.p-course-frame {
	background: initial;
	padding: 15px 15px;
	padding: 0;
}

.p-course-frame--sp {
	background: #fff;
	margin-bottom: 20px;
	max-width: 100%;
	padding: 15px 15px;
}

.p-course-frame__text {
	color: #1b1b1b;
	font-weight: 500;
}

.p-course-frame__text--2 span {
	color: #f17d22;
}

.p-course-frame__text:not(:last-child) {
	margin-bottom: 20px;
}

.p-course-frame__feature {
	font-size: 14px;
	margin-bottom: 10px;
	padding: 8px 24px;
}

.p-course-frame__frame {
	background: #fff;
	border: 2px solid #4F9DD5;
}

.p-course-frame-wrap {
	flex-direction: column;
	margin: 15px 0;
}

.p-course-frame-wrap__head {
	margin-right: 0px;
	padding: 2px 10px;
	width: 100%;
}

.p-course-frame-wrap__content {
	font-weight: 500;
	line-height: calc(30/16);
}

.p-course-frame-wrap__content > span {
	color: #4F9DD5;
	display: inline-block;
	margin-right: 10px;
}

.p-course-frame-wrap--2 .p-course-frame-wrap__head {
	padding: 3px 10px;
	width: 100%;
}

.p-course-frame-wrap--3 .p-course-frame-wrap__head {
	padding: 3px 10px;
	width: 100%;
}

.p-course-frame-wrap--4 .p-course-frame-wrap__head {
	padding: 3px 10px;
	width: 100%;
}

.p-course1 {
	padding: 30px 0 0px;
}

.p-course1__h2 {
	margin: 30px 0 30px;
}

.p-course1__h2 img {
	width: 200px;
}

.p-course1__lead {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-course1__item {
	box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.16);
	font-size: 13px;
	height: 60px;
	margin-bottom: 15px;
	width: 47%;
}

.p-course1__item:not(.p-course1__item:nth-of-type(4n)) {
	margin-right: 0%;
}

.p-course1__item:not(.p-course1__item:nth-of-type(2n)) {
	margin-right: 6%;
}

.p-course2 {
	padding: 80px 0 50px;
}

.p-course2__wave {
	height: 30px;
	padding-top: 40px;
}

.p-course3 {
	padding: 40px 0 50px;
}

.p-course3__achievement {
	align-items: baseline;
	flex-direction: column;
	font-size: 14px;
	margin-bottom: 10px;
}

.p-course3__achievement + .p-course3__achievement {
	margin-bottom: 30px;
}

.p-course3__achievement > span {
	margin-bottom: 5px;
}

.p-course4 {
	padding: 40px 0 50px;
}

.p-course5 {
	padding: 40px 0 50px;
}

.p-course5__table1 {
	margin-bottom: 30px;
}

.p-course5__table1 .tac {
	text-align: center;
}

.p-course5__table1 thead td {
	font-size: 13px;
}

.p-course5__table1 thead td > span {
	font-size: 9px;
}

.p-course5__table1 tbody td {
	font-size: 13px;
	padding: 5px 10px;
}

.p-course5__table1 tbody td > span {
	font-size: 9px;
}

.p-course5__table1 th {
	font-size: 13px;
	padding: 10px 10px;
}

.p-course5__table1 td span {
	font-size: 9px;
}

.p-course5__table2 {
	margin-bottom: 30px;
	margin-top: 0;
}

.p-course5__table2 .tac {
	text-align: center;
}

.p-course5__table2 thead th,
.p-course5__table2 thead td {
	font-size: 13px;
}

.p-course5__table2 thead th > span,
.p-course5__table2 thead td > span {
	font-size: 9px;
}

.p-course5__table2 tbody th {
	width: 30%;
}

.p-course5__table2 tbody td {
	font-size: 13px;
	padding: 5px 10px;
}

.p-course5__table2 tbody td > span {
	font-size: 9px;
}

.p-course5__table2 th {
	font-size: 13px;
	padding: 10px 10px;
}

.p-course5__table2 td span {
	font-size: 9px;
}

.p-course5__headline {
	font-size: 22px;
	margin-bottom: 20px;
}

.p-course6 {
	padding: 40px 0 50px;
}

.p-course7 {
	padding: 40px 0 50px;
}

.p-course7-frame {
	margin-top: 30px;
	padding: 15px 20px;
}

.p-course7-frame__head {
	font-size: 16px;
	margin-bottom: 5px;
	padding-left: 14px;
}

.p-course7-frame__head::before {
	height: 10px;
	top: 9px;
	transform: translateY(0);
	width: 10px;
}

.p-course7-frame__text {
	font-size: 14px;
}

.p-course7-frame__text:not(:last-child) {
	margin-bottom: 20px;
}

.p-course8 {
	padding: 40px 0 50px;
}

.p-course8__wrap {
	flex-direction: column;
}

.p-course8__text {
	font-size: 14px;
	margin-bottom: 20px;
	width: 100%;
}

.p-course8__img {
	width: 100%;
}

.p-course9 {
	padding: 40px 0 50px;
}

.p-course9__wrap {
	flex-direction: column;
}

.p-course9__text {
	font-size: 14px;
	margin-bottom: 20px;
	width: 100%;
}

.p-course9__img {
	width: 100%;
}

.p-faq {
	padding: 30px 0 30px;
}

.p-faq__h2 {
	margin: 30px 0 30px;
}

.p-faq__h2 img {
	width: 120px;
}

.p-faq__lead {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-faq__item {
	margin-bottom: 30px;
	padding-left: 40px;
}

.p-faq__item::after {
	background: url(../img/faq_close@2x.png) no-repeat center/contain;
	content: "";
	height: 10px;
	position: absolute;
	right: 5px;
	top: 10px;
	width: 11px;
}

.p-faq__item.is-open::after {
	background: #2DB786;
	height: 3px;
	position: absolute;
	right: 5px;
	top: 10px;
	width: 12px;
}

.p-faq__q {
	font-size: 15px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	padding-right: 20px;
}

.p-faq__q::before {
	height: 31px;
	left: -40px;
	width: 30px;
}

.p-faq__head {
	font-size: 15px;
	margin-bottom: 15px;
}

.p-faq__head::before {
	height: 31px;
	left: -40px;
	top: 0px;
	width: 30px;
}

.p-faq__text {
	font-size: 14px;
}

.p-flow {
	padding: 30px 0 30px;
}

.p-flow__notice {
	position: initial;
	width: 100%;
}

.p-flow__h2 {
	margin: 30px 0 30px;
}

.p-flow__h2 img {
	width: 153px;
}

.p-flow__lead {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-flow__item {
	border-radius: 10px;
	padding: 150px 20px 20px 20px;
}

.p-flow__item::before {
	height: 130px;
	left: 20px;
	top: 20px;
	width: 170px;
}

.p-flow__item:not(:last-child) {
	margin-bottom: 45px;
}

.p-flow__item:not(:last-child)::after {
	bottom: -35px;
	height: 22px;
	width: 24px;
}

.p-flow__h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.p-flow__h4 {
	border-radius: 17px;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 5px;
	padding: 8px 17px;
}

.p-flow__h4-2 {
	color: #2DB786;
	font-size: 16px;
	margin-bottom: 10px;
}

.p-flow__text {
	font-size: 14px;
}

.p-flow__text:not(:last-child) {
	margin-bottom: 20px;
}

.p-flow__text > a {
	font-size: 22px;
}

.p-movies-archive {
	padding: 30px 15px 20px;
}

.p-movies-archive__container {
	margin: 0px auto 0;
	padding: 70px 0 70px;
}

.p-movies-archive__h2 img {
	width: 200px;
}

.p-movies-archive__lead {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-movies-archive__wrap {
	flex-direction: column;
}

.p-movies-archive__item {
	margin-bottom: 50px;
	width: 100%;
}

.p-movies-archive__item:nth-of-type(odd) {
	margin-right: 0%;
}

.p-movies-archive__meta {
	margin-bottom: 10px;
}

.p-movies-archive__cat span {
	font-size: 12px;
	padding: 3px 10px;
}

.p-movies-archive__title {
	font-size: 18px;
	margin-bottom: 10px;
}

.p-movies-archive__text {
	font-size: 14px;
}

.p-new-single {
	padding: 30px 15px 50px;
}

.p-new-single__container {
	margin: 50px auto 0;
}

.p-new-single__title {
	font-size: 24px;
	margin-bottom: 15px;
}

.p-new-single__meta {
	margin-bottom: 10px;
}

.p-new-single__cat {
	margin-right: 10px;
}

.p-new-single__cat > span {
	border-radius: 12px;
	font-size: 12px;
	padding: 3px 10px;
}

.p-new-single__date {
	font-size: 14px;
}

.p-new-single__img {
	margin-bottom: 20px;
}

.p-new-single__content {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-new-archive {
	padding: 30px 15px 50px;
}

.p-new-archive__container {
	margin: 50px auto 0;
}

.p-new-archive__h2 {
	margin-bottom: 50px;
}

.p-photo-archive {
	padding: 30px 15px 20px;
}

.p-photo-archive__container {
	margin: 0px auto 0;
	padding: 70px 0 70px;
}

.p-photo-archive__h2 img {
	width: 200px;
}

.p-photo-archive__lead {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-photo-archive__wrap {
	flex-direction: column;
}

.p-photo-archive__item {
	margin-bottom: 50px;
	width: 100%;
}

.p-photo-archive__item:not(:nth-of-type(3n)) {
	margin-right: 0%;
}

.p-photo-archive__img {
	margin-bottom: 10px;
}

.p-photo-archive__title {
	font-size: 18px;
	margin-bottom: 10px;
}

.p-photo-archive__text {
	font-size: 14px;
}

.p-policy {
	padding: 30px 0 30px;
}

.p-policy__h2 {
	margin: 30px 0 30px;
}

.p-policy__h2 img {
	width: 200px;
}

.p-policy__item:not(:last-child) {
	margin-bottom: 50px;
}

.p-policy__h3 {
	color: #2DB786;
	font-size: 20px;
	margin-bottom: 20px;
}

.p-policy__text {
	font-size: 14px;
	margin-bottom: 30px;
}

.p-policy__list {
	font-size: 14px;
}

.p-policy__list ol {
	padding-left: 23px;
}

.p-policy__list li:not(:last-child) {
	margin-bottom: 15px;
}

.p-seminer {
	padding: 30px 0 30px;
}

.p-seminer__h2 {
	margin: 30px 0 30px;
}

.p-seminer__h2 img {
	width: 230px;
}

.p-seminer__h3 {
	font-size: 22px;
	margin-bottom: 30px;
}

.p-seminer__wrap {
	flex-direction: column;
}

.p-seminer__tel {
	margin-bottom: 20px;
}

.p-seminer__tel img {
	margin: auto;
}

.p-seminer__btn img {
	margin: auto;
}

.p-system1 {
	padding: 30px 0 50px;
}

.p-system1__h2 {
	font-size: 25px;
	margin: 50px 0 50px;
	padding: 30px 15px;
}

.p-system1__wrapper {
	padding: 0 20px;
}

.p-system1__container {
	padding: 10px 10px;
}

.p-system1__item {
	padding: 0 0px;
}

.p-system1__item:not(:last-child) {
	margin-bottom: 20px;
}

.p-system1__h3 {
	font-size: 20px;
	height: 100px;
	margin-bottom: 20px;
}

.p-system1__img img {
	margin: 0 auto 20px;
}

.p-system1-frame {
	margin-bottom: 10px;
	padding: 10px 15px;
}

.p-system1-frame__headline {
	font-size: 18px;
	margin-bottom: 10px;
}

.p-system1-frame__headline > span {
	padding: 0 0 5px 5px;
}

.p-system1-frame dl {
	flex-direction: column;
}

.p-system1-frame dl dt {
	color: #1D6A51;
	margin-right: 0px;
	padding-left: 3em;
	text-indent: -3em;
}

.p-system1-frame dl dd {
	margin-left: 60px;
}

.p-system1__text {
	margin-bottom: 20px;
}

.p-system1__text + .p-system1__text {
	margin-top: 40px;
}

.p-system1__bnr {
	margin-top: 30px;
}

.p-system1__bnr a {
	transition: .3s;
}

.p-system1__bnr a:hover {
	opacity: .6;
}

.p-system1__bnr img {
	margin: auto;
}

.p-teachers {
	padding: 30px 0 30px;
}

.p-teachers__h2 {
	margin: 30px 0 30px;
}

.p-teachers__h2 img {
	width: 270px;
}

.p-teachers__lead {
	font-size: 14px;
	margin-bottom: 50px;
}

.p-teachers-wrap1 {
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.p-teachers-wrap1__item {
	margin-bottom: 50px;
	width: 100%;
}

.p-teachers-wrap1__wrap {
	display: flex;
}

.p-teachers-wrap1__img {
	margin-right: 15px;
}

.p-teachers-wrap1__name {
	font-size: 22px;
	margin-bottom: 5px;
}

.p-teachers-wrap1__text {
	font-size: 14px;
}

.p-teachers__h3 {
	font-size: 22px;
	margin-bottom: 20px;
	padding-left: 15px;
}

.p-teachers__h3::after {
	width: 8px;
}

.p-teachers-wrap2 {
	display: flex;
	flex-wrap: wrap;
}

.p-teachers-wrap2__item {
	margin-bottom: 80px;
	width: 47%;
}

.p-teachers-wrap2__item:not(:nth-of-type(4n)) {
	margin-right: 0%;
}

.p-teachers-wrap2__item:not(:nth-of-type(2n)) {
	margin-right: 6%;
}

.p-teachers-wrap2__img {
	margin-bottom: 10px;
}

.p-teachers-wrap2__university {
	font-size: 11px;
}

.p-teachers-wrap2__name {
	font-size: 18px;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

.p-teachers-wrap2__name > span {
	font-size: 15px;
}

.p-teachers-wrap2__block:not(:last-child) {
	margin-bottom: 10px;
}

.p-teachers-wrap2__headline {
	font-size: 17px;
	margin-bottom: 10px;
}

.p-teachers-wrap2__headline2 {
	background: #f17d22;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	margin-bottom: 5px;
	padding: 5px 18px;
}

.p-teachers-wrap2__text {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
}

.p-top-topics {
	padding: 40px 15px;
}

.p-top-topics__lead {
	font-size: 20px;
	margin-bottom: 60px;
}

.p-top-topics__h2 img {
	width: 190px;
}

.p-top-topics__wrap {
	margin: 0px auto 40px;
}

.p-top-topics__item {
	flex-direction: row-reverse;
}

.p-top-topics__item:not(:last-child) {
	margin-bottom: 30px;
}

.p-top-topics__item:nth-of-type(even) {
	flex-direction: row;
}

.p-top-topics__content {
	width: 49%;
}

.p-top-topics__img {
	width: 47%;
}

.p-top-topics__item2:not(:last-child) {
	margin-bottom: 30px;
}

.p-top-topics__content2 {
	font-size: 8px;
	width: 48%;
}

.p-top-topics__content2 h3 {
	font-size: 13px;
	margin-bottom: 5px;
}

.p-top-topics__content2 p {
	font-size: 8px;
}

.p-top-topics__content2 p:not(:last-child) {
	margin-bottom: 10px;
}

.p-top-topics__headline {
	font-size: 13px;
	margin-bottom: 5px;
}

.p-top-topics__headline::before {
	content: none;
}

.p-top-topics__text1 {
	font-size: 8px;
	margin-bottom: 10px;
}

.p-top-topics__text2 {
	font-size: 9px;
}

.p-top-topics__btn {
	width: 100px;
}

.p-top-topics__bnr img {
	margin: auto;
}

.p-top-features {
	padding: 90px 0;
}

.p-top-features__h2 img {
	width: 257px;
}

.p-top-features__wrap {
	padding: 190px 0 40px;
}

.p-top-features__item {
	padding: 20px 30px;
}

.p-top-features__item::after {
	content: none;
}

.p-top-features__item:nth-of-type(-n + 2) {
	margin-bottom: 150px;
}

.p-top-features__content {
	padding-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
	top: 0px;
}

.p-top-features__content::before {
	left: auto;
	top: -67px;
}

.p-top-features__content--1 {
	padding-left: 0px;
}

.p-top-features__content--1::before {
	height: 96px;
	width: 136px;
}

.p-top-features__content--2 {
	margin-bottom: 0px;
	padding-right: 0px;
}

.p-top-features__content--2::before {
	height: 96px;
	width: 137px;
}

.p-top-features__content--3 {
	margin-bottom: 0px;
	padding-left: 0px;
}

.p-top-features__content--3::before {
	height: 96px;
	width: 136px;
}

.p-top-features__h3 {
	font-size: 28px;
	margin-bottom: 30px;
}

.p-top-features__h3 > span {
	font-size: 60px;
}

.p-top-features__list {
	margin-bottom: 25px !important;
}

.p-top-features__list li {
	font-size: 15px;
	margin-bottom: 13px;
	padding-left: 30px;
}

.p-top-features__list li::before {
	height: 20px;
	top: 5px;
	width: 20px;
}

.p-top-features__text {
	font-size: 14px;
}

.p-top-features__text:not(:last-of-type) {
	margin-bottom: 20px;
}

.p-top-features__text1 {
	font-size: 16px;
	margin-bottom: 20px;
}

.p-top-features__bottom {
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

.p-top-features__btn {
	margin-bottom: 90px;
	padding: 0 30px;
}

.p-top-features__btn img {
	margin: 15px auto 0;
}

.p-top-features__h3-2 {
	font-size: 35px;
	margin-bottom: 35px;
}

.p-top-features__text2 {
	margin: 0 auto 40px;
	padding: 0 30px;
}

.p-top-features__btn2 img {
	margin: auto;
}

.p-top-cta {
	padding: 40px 30px 50px;
}

.p-top-cta__wrap {
	flex-direction: column;
}

.p-top-cta__left {
	margin-bottom: 40px;
	width: 100%;
}

.p-top-cta__right {
	width: 100%;
}

.p-top-cta__h2 {
	font-size: 29px;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.p-top-cta__text {
	font-size: 14px;
}

.p-top-cta__btn-text {
	font-size: 13px;
	letter-spacing: 0.6px;
	margin-bottom: 20px;
}

.p-top-blog {
	padding: 90px 0 0px;
}

.p-top-blog__h2 {
	margin-bottom: 30px;
}

.p-top-blog__h2 img {
	width: 145px;
}

.p-top-blog__h3 {
	color: #2DB786;
	margin-bottom: 30px;
	text-align: center;
}

.p-top-blog__h3 > span {
	padding-bottom: 5px;
	position: relative;
}

.p-top-blog__h3 > span::after {
	background: #2DB786;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-blog__slider {
	margin: 0 auto 30px;
	max-width: calc(100% - 100px);
	width: 900px;
}

.p-top-blog__item {
	margin: 0 10px 0;
}

.p-top-blog__title {
	margin-bottom: 5px;
}

.p-top-blog__text {
	font-size: 14px;
}

.p-top-blog__wrap {
	flex-direction: column;
	margin-bottom: 30px;
}

.p-top-blog__item2 {
	color: inherit;
	display: flex;
	padding: 20px 0;
	text-decoration: none;
	width: 100%;
}

.p-top-blog__item2:nth-last-of-type(n+2) {
	border-bottom: 1px dotted #2d2d2d;
}

.p-top-blog__img2 {
	margin-right: 15px;
	width: 150px;
}

.p-top-blog__cat {
	padding: 1px 10px;
}

.p-top-blog__title2 {
	font-size: 14px;
}

.p-top-blog__meta--mb {
	margin-bottom: 30px;
}

.p-top-blog__date {
	color: #f17d22;
	font-size: 12px;
}

.p-top-blog__btn {
	margin-bottom: 80px;
}

.p-top-blog__row {
	flex-direction: column;
	max-width: calc(100% - 100px);
}

.p-top-blog__col {
	width: 100%;
}

.p-top-movies {
	padding: 20px 30px;
}

.p-top-movies__wave {
	height: 30px;
	padding-top: 40px;
}

.p-top-movies__h2 img {
	width: 200px;
}

.p-top-movies__lead {
	margin: 0 auto 70px;
}

.p-top-movies__cat {
	background: #2DB786;
	color: #fff;
	font-size: 12px;
	padding: 3px 10px;
}

.p-top-movies__slider {
	margin: 0 auto 30px;
	max-width: calc(100% - 40px);
}

.p-top-movies__item {
	margin: 0 10px 0;
}

.p-top-album {
	padding: 20px 30px 50px;
}

.p-top-album__h2 img {
	width: 187px;
}

.p-top-album__item {
	margin-bottom: 5px;
	width: 49%;
}

.p-top-album__item:nth-of-type(n + 5) {
	display: none;
}

.p-top-flow {
	background-color: #f5f3f0;
	padding: 90px 30px;
}

.p-top-flow__h2 {
	margin-bottom: 30px;
}

.p-top-flow__h2 img {
	width: 153px;
}

.p-top-flow__wrap {
	flex-direction: column;
	margin: 0 auto 50px;
}

.p-top-flow__item {
	width: 100%;
}

.p-top-flow__item:nth-of-type(n + 2) {
	margin-top: 50px;
}

.p-top-flow__item:nth-of-type(n + 2)::before {
	left: 0;
	margin: auto;
	right: 0;
	top: -40px;
	transform: rotate(90deg);
}

.p-top-flow__img {
	margin-bottom: 15px;
}

.p-top-flow__img img {
	width: 115px;
}

.p-top-flow__text {
	font-size: 14px;
	text-align: center;
}

.p-top-flow__btn img {
	margin: auto;
}

.p-top-information {
	padding: 30px 0;
}

.p-top-information__wave {
	height: 30px;
	left: 0;
	padding-top: 40px;
	top: 0;
	width: 100%;
}

.p-top-information__wave::before,
.p-top-information__wave::after {
	border-radius: 50% 100%;
	content: "";
	display: block;
	position: absolute;
}

.p-top-information__wave::before {
	height: 100%;
	right: -1.5%;
	top: 40%;
	width: 55%;
}

.p-top-information__wave::after {
	height: 109%;
	left: -1.5%;
	top: 60%;
	width: 55%;
}

.p-top-information__h2 {
	margin-bottom: 30px;
	padding: 0 20px;
}

.p-top-information__wrap2 img {
	margin: auto;
}

.p-top-information__item2 {
	width: 100%;
}

.p-top-information__wrap {
	margin: 0 auto 20px;
	padding: 0 35px;
}

.p-top-information__item {
	font-size: 10px;
	height: 55px;
	margin-bottom: 10px;
	width: 48.5%;
}

.p-top-information__item--7,
.p-top-information__item--8 {
	width: 100%;
}

.p-top-information__item--1 > span {
	padding-left: 25px;
}

.p-top-information__item--1 > span::before {
	height: 16px;
	width: 16px;
}

.p-top-information__item--2 > span {
	padding-left: 20px;
}

.p-top-information__item--2 > span::before {
	height: 16px;
	width: 12px;
}

.p-top-information__item--3 > span {
	padding-left: 30px;
}

.p-top-information__item--3 > span::before {
	height: 14px;
	width: 18px;
}

.p-top-information__item--4 > span {
	padding-left: 30px;
}

.p-top-information__item--4 > span::before {
	height: 14px;
	width: 18px;
}

.p-top-information__item--5 > span {
	padding-left: 20px;
}

.p-top-information__item--5 > span::before {
	height: 16px;
	width: 12px;
}

.p-top-information__item--6 > span {
	padding-left: 20px;
}

.p-top-information__item--6 > span::before {
	height: 18px;
	width: 10px;
}

.p-top-information__item--7 > span {
	padding-left: 35px;
}

.p-top-information__item--7 > span::before {
	height: 22px;
	width: 27px;
}

.p-top-information__item--8 > span {
	padding-left: 25px;
}

.p-top-information__item--8 > span::before {
	height: 21px;
	width: 16px;
}

.p-top-information__bnr {
	margin: 0 auto 0px;
	padding: 0 0px;
}

.u-pc-only {
	display: none !important;
}

}

@-webkit-keyframes load4 {

0%,100% {
	box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
}

12.5% {
	box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
}

25% {
	box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
}

37.5% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
}

50% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
}

62.5% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
}

75% {
	box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
}

87.5% {
	box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
}

}

@keyframes load4 {

0%,100% {
	box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
}

12.5% {
	box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
}

25% {
	box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
}

37.5% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
}

50% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
}

62.5% {
	box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
}

75% {
	box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
}

87.5% {
	box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
}

}

