/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 30px;
}

p {
	font-size: 18px;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #6E7580;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 45px;
	text-align: center;
}

.section-title p {
	padding: 0px 20px;
	margin: 0 30;
}

.section-title.normal-title {
	margin-bottom: 50px;
}

.section-title.normal-title h2 {
	margin-bottom: 20px;
	margin-top: 0;
}

.section-title.normal-title p {
	margin-bottom: 0;
	color: #9B9EA3;
}

.section-title h2 {
	font-size: 44px;
	color: #263246;
	margin-top: 34px;
	margin-bottom: 5px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 16px 36px 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #5768AD;
	border-radius: 2px;
	letter-spacing: 2px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 50px;
	background: #5768AD;
	border: none;
	letter-spacing: 2px;
	border-radius: 2px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #FFF;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header__logo {
	padding: 40px 0 25px;
}

.header__top__widget {
	text-align: right;
	padding: 28px 0 24px;
}

.header__top__widget ul {
	display: inline-block;
	margin-right: 65px;
}

.header__top__widget ul li {
	font-size: 12px;
	color: #263246;
	text-transform: uppercase;
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

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

.header__top__widget ul li:last-child:after {
	display: none;
}

.header__top__widget ul li:after {
	position: absolute;
	right: -5px;
	top: 8px;
	height: 2px;
	width: 2px;
	background: #5768AD;
	content: "";
	border-radius: 50%;
}

.header__top__widget .primary-btn {
	display: inline-block;
}

.header__nav {
	position: relative;
	z-index: 9;
	padding-top: 15px;
	text-align: center;
}

.header__menu {
	display: inline-block;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 55px;
	position: relative;
}

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

.header__menu ul li:hover .dropdown {
	opacity: 1;
	top: 34px;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a:after {
	display: none;
}

.header__menu ul li:hover a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li.active a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	width: 180px;
	background: #ffffff;
	text-align: left;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
	padding: 5px 0;
	z-index: 9;
}

.header__menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .dropdown li a {
	padding: 6px 15px;
	font-weight: 400;
	font-size: 15px;
	color: #222222;
	text-transform: capitalize;
	font-weight: 500;
}

.header__menu ul li a {
	font-size: 18px;
	color: #004D94;
	font-weight: 700;
	padding: 5px 0;
	display: block;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 5px;
	width: 15%;
	background: #004D94;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__social {
	text-align: right;
}

.header__social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	margin-right: 25px;
}

.header__social a:last-child {
	margin-right: 0;
}

.canvas__open {
	display: none;
}

.offcanvas-menu {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	margin-top: 0px;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text span {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active h2 {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text .primary-btn {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	color: #ffffff;
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	position: absolute;
	left: 40px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.hero__sliders.owl-carousel .owl-nav button:hover {
	color: #111111;
	background: #ffffff;
}

.hero__sliders.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 40px;
}

.hero__items {
	height: 873px;
	display: flex;
	align-items: center;
}

.hero__text h2 {
	font-family: "Osaka-mono", "MS Gothic", "monospace";
	font-size: 50px;
	font-weight: 900;
	color: azure;
	text-shadow: 2px 2px 5px #000;
}

.hero__text h3 {
	font-family: "Osaka-mono", "MS Gothic", "monospace";
	font-size: 24px;
	font-weight: 500;
	color: azure;
	text-shadow: 1px 1px 3px #000;
}

.hero__text .primary-btn {
	position: relative;
	top: 0;
	opacity: 0;
	-webkit-transition: all, 0.8s;
	-moz-transition: all, 0.8s;
	-ms-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

/*---------------------
  Services
-----------------------*/

.services {
	padding-top: 80px;
	padding-bottom: 70px;
}

.services__item {
	text-align: center;
	padding: 40px 15px 60px;
	border-radius: 10px;
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	margin-bottom: 30px;
	background: #ffffff;
}

.services__item h5 {
	font-size: 20px;
	color: #263246;
	margin-top: 35px;
	margin-bottom: 12px;
}

.services__item p {
	color: #6E7580;
	margin-bottom: 0;
}


@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #FFF;
    width: 100%;
  }

}
/*---------------------
  Chooseus
-----------------------*/

.chooseus {
	background: #f5f6fa;
	padding-bottom: 20px;
}

.chooseus__text {
	margin-bottom: 70px;
}

.chooseus__text h2 {
	font-size: 44px;
	color: #263246;
	margin-bottom: 6px;
}

.chooseus__text p {
	margin-bottom: 0;
}

.chooseus__item {
	width: 50%;
	float: left;
	margin-bottom: 80px;
}

.chooseus__item__icon {
	float: left;
	margin-right: 30px;
}

.chooseus__item__text {
	overflow: hidden;
}

.chooseus__item__text h2 {
	font-size: 48px;
	color: #263246;
	line-height: 45px;
	margin-bottom: 5px;
}

.chooseus__item__text p {
	font-size: 18px;
	margin-bottom: 0;
	color: #9B9EA3;
}

.chooseus__pic img {
	min-width: 100%;
}

/*---------------------
  Gallery
-----------------------*/

.gallery__pic img {
	min-width: 100%;
}

/*---------------------
  Instructor
-----------------------*/

.instructor {
	padding-top: 80px;
	padding-bottom: 70px;
}

.instructor__item {
	margin-bottom: 30px;
}

.instructor__item__pic {
	margin-bottom: 20px;
}

.instructor__item__pic img {
	min-width: 100%;
}

.instructor__item__text {
	text-align: center;
}

.instructor__item__text h5 {
	clear: #001943;
	margin-bottom: 5px;
}

.instructor__item__text span {
	font-size: 14px;
	color: #9B9EA3;
}

/*---------------------
  Appoinment
-----------------------*/

.appointment {
	position: relative;
	z-index: 9;
}

.appointment .section-title h2 {
	color: #ffffff;
}

.appointment__text {
	background: #5768AD;
	padding: 60px 100px;
}

.appointment__form input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #ffffff;
	padding-left: 28px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	margin-bottom: 20px;
}

.appointment__form input::placeholder {
	color: #ffffff;
}

.appointment__form textarea {
	width: 100%;
	height: 100px;
	font-size: 16px;
	color: #ffffff;
	padding-left: 28px;
	padding-top: 15px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	margin-bottom: 34px;
}

.appointment__form textarea::placeholder {
	color: #ffffff;
}

.appointment__form .nice-select {
	width: 100%;
	height: 50px;
	padding-left: 28px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	line-height: 50px;
	border: none;
	margin-bottom: 20px;
}

.appointment__form .nice-select:after {
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	height: 10px;
	width: 10px;
	right: 20px;
	top: 44%;
}

.appointment__form .nice-select .list {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
}

.appointment__form .nice-select span {
	font-size: 16px;
	color: #ffffff;
}

.appointment__form button {
	font-size: 14px;
	color: #5768AD;
	text-transform: uppercase;
	display: inline-block;
	background: #ffffff;
	padding: 14px 35px 12px;
	border-radius: 2px;
	border: none;
	font-weight: 700;
	letter-spacing: 2px;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
	background: #f5f6fa;
	padding-top: 415px;
	margin-top: -315px;
}

.testimonial__slider.owl-carousel .owl-item img {
	width: auto;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 36px;
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 9px;
	width: 9px;
	background: #8a8e9e;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.testimonial__slider.owl-carousel .owl-dots button:after {
	position: absolute;
	left: -7px;
	top: -7px;
	height: 23px;
	width: 23px;
	border: 2px solid #8a8e9e;
	border-radius: 50%;
	content: "";
	opacity: 0;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #5768AD;
}

.testimonial__slider.owl-carousel .owl-dots button.active:after {
	opacity: 1;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.testimonial__text {
	text-align: center;
	position: relative;
	padding-top: 70px;
}

.testimonial__text:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	content: '"';
	color: #5768AD;
	font-size: 160px;
	line-height: 119px;
	margin: 0 auto;
}

.testimonial__text p {
	font-size: 36px;
	color: #263246;
	line-height: 48px;
	margin-bottom: 35px;
}

.testimonial__text img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	margin: 0 auto;
}

.testimonial__text h5 {
	font-size: 20px;
	color: #263246;
	font-weight: 700;
	margin-top: 15px;
}

.testimonial__text h5 span {
	font-size: 18px;
	color: #9B9EA3;
	font-weight: 400;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	background: #7EE1FD;
	padding-top: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about ul {
	margin-bottom: 25px;
	margin-top: 20px;
}

.footer__about ul li {
	color: #9B9EA3;
	line-height: 37px;
	font-size: 16px;
	list-style: none;
}

.footer__about ul li i {
	font-size: 16px;
	color: #5768AD;
	margin-right: 5px;
}

.footer__about .subscribe-form {
	position: relative;
}

.footer__about .subscribe-form input {
	width: 100%;
	height: 50px;
	font-size: 14px;
	color: #999999;
	background: rgba(250, 250, 250, 0.1);
	border: none;
	border-radius: 2px;
	padding-left: 22px;
}

.footer__about .subscribe-form button {
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	background: #5768AD;
	padding: 0 15px;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.footer__widget {
	margin-bottom: 10px;
}

.footer__widget h5 {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 10px;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 16px;
	color: #9B9EA3;
	line-height: 25px;
}

.footer__widget .footer-address li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	line-height: 25px;
}

.footer__widget .footer-address li i {
	margin-right: 8px;
}

.footer__copyright {
	border-top: 1px solid rgba(225, 225, 225, 0.1);
	overflow: hidden;
	padding: 10px 0;
}

.footer__copyright__text p {
	text-align: center;
	font-size: 14px;
	color: #6e7580;
	margin-bottom: 0;
}

.footer__copyright__text i {
	color: #a11f1f;
}


.footer__copyright__social {
	text-align: right;
}

.footer__copyright__social a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	margin-right: 25px;
}

.footer__copyright__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option,
.blog-hero {
	padding-top: 215px;
	padding-bottom: 170px;
	margin-top: -50px;
}

.breadcrumb__text,
.blog-hero {
	text-align: center;
}

.breadcrumb__text h2,
.blog-hero h2 {
	font-size: 44px;
	color: #ffffff;
	margin-bottom: 6px;
}

.breadcrumb__widget a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	margin-right: 15px;
	position: relative;
}

.breadcrumb__widget a:after {
	position: absolute;
	right: -14px;
	top: 1px;
	font-weight: 400;
	content: "/";
}

.breadcrumb__widget span {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
}

/*---------------------
  Home About
-----------------------*/

.home-about {
	padding-bottom: 0;
}

.home__about__pic {
	margin-right: -20px;
	padding-right: 30px;
}

.home__about__pic__item {
	height: 230px;
	width: calc(100% - 50px);
	margin-right: 10px;
	margin-bottom: 20px;
	text-align: center;
}

.home__about__pic__item__inner {
	display: inline-block;
	height: 180px;
	width: calc(48% - 20px);
	margin: 10px;
}

.home__about__pic__item h4,
.home__about__pic__item__inner h4 {
	color: #FFF;
	background-color: #001CC4;
}

.home__about__text {
	padding: 35px 20px;
	border: #A8A8A8 1px solid;
	border-radius: 5px
}

.home__about__text h3 {
	text-align: center;
	margin-bottom: 20px;
	color: #02587f;
	font-weight: 700;
}

.home__about__text .section-title {
	text-align: left;
	margin-bottom: 24px;
}

.home__about__text span {
	display: block;
	font-size: 16px;
	color: #404D80;
	margin-bottom: 12px;
}

.home__about__text p.para-2 {
	margin-bottom: 40px;
}

#ichirei {
	text-align: center;
}

.ichirei_pic_item {
	height: 600px;
	width: calc(95% - 120px);
	margin: 0 85px;
}

.ichirei_pic_item_inner {
	display: inline-block;
	height: 230px;
	width: calc(32% - 20px);
	margin: 10px;
}

.ichirei_pic_item h5,
.ichirei_pic_item_inner h5 {
	color: #FFF;
	background-color: #001CC4;
}

/*---------------------
    About
-----------------------*/

.about {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding-bottom: 0;
}

.about:before {
	position: absolute;
	left: -447px;
	top: -144px;
	width: 990px;
	height: 1008px;
	background-image: url(../img/about/background-left.png);
	content: "";
	z-index: -1;
}

.about:after {
	position: absolute;
	right: -120px;
	bottom: 0;
	width: 459px;
	height: 504px;
	background-image: url(../img/about/background-right.png);
	content: "";
	z-index: -1;
}

.about__services {
	padding-bottom: 70px;
}

.about__text .section-title {
	margin-bottom: 26px;
	text-align: left;
}

.about__text .section-title h2 {
	margin-bottom: 8px;
}

.about__text .section-title p {
	color: #6E7580;
	line-height: 24px;
	margin-bottom: 0;
}

.about__bar .about__bar__item {
	margin-bottom: 30px;
}

.about__bar .about__bar__item:last-child {
	margin-right: 0;
}

.about__bar .about__bar__item p {
	color: #263246;
	font-weight: 700;
	margin-bottom: 20px;
}

.about__bar .about__bar__item .barfiller {
	height: 8px;
	border: none;
	background: rgba(87, 104, 173, 0.1);
	border-radius: 50px;
	box-shadow: inherit;
	margin-bottom: 0;
}

.about__bar .about__bar__item .barfiller .tip {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 2px 11px 1px;
	border-radius: 10px;
	background: #5768AD;
	margin-top: -40px;
}

.about__bar .about__bar__item .barfiller .tip:after {
	border-color: #5768AD transparent;
	left: 50%;
	top: 92%;
	-webkit-transform: translateX(-6px);
	transform: translateX(-6px);
}

.about__bar .about__bar__item .barfiller .fill {
	background: #5768AD;
	border-radius: 50px;
}

/*---------------------
    Team
-----------------------*/

.team {
	background: #f5f6fa;
	padding-bottom: 60px;
	margin-top: -60px;
}

.team__item {
	box-shadow: 0px 10px 15px rgba(35, 37, 43, 0.1);
	position: relative;
	padding: 85px 35px 80px;
	background: #ffffff;
}

.team__item__pic {
	position: absolute;
	right: -15px;
	bottom: 0;
}

.team__item__text .team__item__title {
	margin-bottom: 18px;
}

.team__item__text .team__item__title h4 {
	color: #5768AD;
	margin-bottom: 4px;
}

.team__item__text .team__item__title span {
	font-size: 16px;
	color: #6E7580;
}

.team__item__text p {
	font-size: 14px;
	line-height: 20px;
}

.team__item__text .team__item__social a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__item__text .team__item__social a:hover {
	color: #5768AD;
}

.team__item__text .team__item__social a:last-child {
	margin-right: 0;
}

.team__slider.owl-carousel .col-lg-6 {
	max-width: 100%;
}

.team__slider.owl-carousel .owl-stage-outer {
	padding-top: 60px;
	padding-bottom: 40px;
}

.team__slider.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: #ffffff;
	border-radius: 2px;
	color: #111111;
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	position: absolute;
	left: -76px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__slider.owl-carousel .owl-nav button:hover {
	color: #ffffff;
	background: #5768AD;
}

.team__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -76px;
}

/*---------------------
    Counter
-----------------------*/

.counter {
	padding-top: 0;
}

.counter__text {
	padding: 95px 70px 20px;
	box-shadow: 0px 0px 20px rgba(9, 30, 64, 0.6);
}

.counter__item {
	display: inline-block;
	margin-right: 60px;
	margin-bottom: 30px;
}

.counter__item:last-child {
	margin-right: 0;
}

.counter__item__icon {
	float: left;
	margin-right: 30px;
}

.counter__item__text {
	overflow: hidden;
}

.counter__item__text h2 {
	font-size: 44px;
	font-weight: 700;
	color: #ffffff;
}

.counter__item__text p {
	color: #ffffff;
	margin-bottom: 0;
	font-size: 18px;
}

/*---------------------
  Classes
-----------------------*/

.classes__filter {
	background: #ffffff;
	box-shadow: 0px 10px 20px rgba(35, 37, 43, 0.1);
	border-radius: 2px;
	padding: 25px 100px 30px;
	margin-bottom: 60px;
}

.classes__filter form {
	position: relative;
	width: 100%;
	display: inline-block;
}

.classes__filter form .class__filter__select {
	width: calc(24% - 30px);
	float: left;
	margin-right: 30px;
}

.classes__filter form .class__filter__select p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__filter form .class__filter__select .nice-select {
	float: none;
	height: 40px;
	background: #f5f6fa;
	border: 1px solid #D4D5D8;
	border-radius: 2px;
}

.classes__filter form .class__filter__select .nice-select span {
	font-size: 16px;
	color: #001943;
}

.classes__filter form .class__filter__select .nice-select .list {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
}

.classes__filter form .class__filter__select .nice-select:after {
	border-bottom: 2px solid #5768AD;
	border-right: 2px solid #5768AD;
	height: 8px;
	margin-top: 0;
	right: 20px;
	top: 37%;
	width: 8px;
}

.classes__filter form .class__filter__btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

.classes__filter form .class__filter__btn button {
	font-size: 18px;
	color: #ffffff;
	height: 40px;
	width: 42px;
	border-radius: 2px;
	background: #5768AD;
	line-height: 40px;
	text-align: center;
	border: none;
	display: inline-block;
}

.upcoming-classes {
	padding-bottom: 70px;
	padding-top: 80px;
}

.upcoming-classes.top-classes {
	background: #f5f6fa;
}

.classes__item {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	margin-bottom: 30px;
	background: #ffffff;
}

.classes__item.classes__item__page .classes__item__pic span {
	padding: 5px 30px 4px 20px;
}

.classes__item__pic {
	height: 241px;
	position: relative;
}

.classes__item__pic span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 7px 16px 4px;
	background: #5768AD;
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__item__text {
	padding: 24px 0 28px 30px;
}

.classes__item__text ul {
	margin-bottom: 10px;
}

.classes__item__text ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 45px;
}

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

.classes__item__text ul li span {
	margin-right: 5px;
}

.classes__item__text p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__item__text h4 {
	margin-bottom: 50px;
}

.classes__item__text h4 a {
	color: #001943;
	line-height: 36px;
}

.classes__item__text h6 {
	color: #001943;
	margin-bottom: 35px;
}

.classes__item__text h6 span {
	color: #9B9EA3;
	font-size: 14px;
}

.classes__item__text .class-btn {
	font-size: 14px;
	font-weight: 700;
	color: #5768AD;
	display: inline-block;
	border: 1px solid rgba(155, 158, 163, 0.2);
	padding: 10px 20px 7px;
	border-radius: 2px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.classes__item__text .class-btn:hover {
	background: #5768AD;
	border: 1px solid #5768AD;
	color: #ffffff;
}

.classes__pagination {
	text-align: center;
	padding-top: 30px;
}

.classes__pagination.blog__pagination {
	text-align: left;
	padding-top: 0;
}

.classes__pagination a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	background: #f5f6fa;
	font-weight: 700;
	height: 40px;
	width: 40px;
	border: 1px solid #D4D5D8;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 16px;
}

.classes__pagination a:last-child {
	margin-right: 0;
}

.classes__pagination a span {
	font-size: 24px;
	position: relative;
	top: 3px;
}

.classes__pagination a:hover {
	background: #5768AD;
	border-color: #5768AD;
	color: #ffffff;
}

/*---------------------
  Classes Details
-----------------------*/

.classes__sidebar__item {
	margin-bottom: 60px;
}

.classes__sidebar__item.classes__sidebar__item--info h4 {
	margin-bottom: 30px;
}

.classes__sidebar__item h4 {
	color: #263246;
	margin-bottom: 40px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li {
	display: inline-block;
	margin-right: 45px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li:last-child {
	margin-right: 0;
}

.classes__sidebar__item ul.classes__sidebar__item__id {
	margin-bottom: 30px;
}

.classes__sidebar__item ul li {
	list-style: none;
	font-size: 18px;
	color: #6E7580;
	line-height: 36px;
}

.classes__sidebar__item ul li span {
	margin-right: 5px;
	font-size: 18px;
}

.classes__sidebar__item .sidebar-btn {
	font-size: 14px;
	font-weight: 700;
	color: #5768AD;
	display: inline-block;
	border: 1px solid #5768AD;
	padding: 10px 20px 7px;
	border-radius: 2px;
}

.classes__sidebar__instructor__pic {
	float: left;
	margin-right: 30px;
}

.classes__sidebar__instructor__pic img {
	height: 121px;
	width: 121px;
	border-radius: 50%;
}

.classes__sidebar__instructor__text {
	overflow: hidden;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title {
	margin-bottom: 15px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title h4 {
	color: #5768AD;
	margin-bottom: 0;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title span {
	font-size: 16px;
	color: #6E7580;
}

.classes__sidebar__instructor__text p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a {
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:hover {
	color: #5768AD;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:last-child {
	margin-right: 0;
}

.classes__sidebar__comment {
	border-bottom: 1px solid rgba(37, 37, 37, 0.1);
	padding-bottom: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.classes__sidebar__comment:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.classes__sidebar__comment__pic {
	text-align: center;
	float: left;
	margin-right: 30px;
}

.classes__sidebar__comment__pic img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.classes__sidebar__comment__pic .classes__sidebar__comment__rating i {
	font-size: 12px;
	color: #F5C136;
	margin-right: -4px;
}

.classes__sidebar__comment__text {
	overflow: hidden;
}

.classes__sidebar__comment__text span {
	font-size: 14px;
	color: #9B9EA3;
	display: block;
}

.classes__sidebar__comment__text h6 {
	color: #5768AD;
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 5px;
}

.classes__sidebar__comment__text p {
	line-height: 28px;
	margin-bottom: 0;
}

.classes__details h2 {
	font-size: 44px;
	color: #263246;
	margin-bottom: 16px;
}

.classes__details p {
	line-height: 28px;
	margin-bottom: 40px;
}

.classes__details .classes__details__widget {
	margin-bottom: 15px;
}

.classes__details .classes__details__widget li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 45px;
}

.classes__details .classes__details__widget li:last-child {
	margin-right: 0;
}

.classes__details .classes__details__widget li span {
	margin-right: 5px;
}

.classes__details__large {
	position: relative;
	margin-bottom: 28px;
}

.classes__details__large span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 5px 30px 4px 20px;
	background: #5768AD;
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__details__item {
	margin-bottom: 20px;
}

.classes__details__item img {
	min-width: 100%;
	margin-bottom: 20px;
}

.classes__details__desc h6 {
	color: #263246;
	font-weight: 700;
	margin-bottom: 12px;
}

.classes__details__desc ul li {
	list-style: none;
	font-size: 16px;
	line-height: 28px;
}

.classes__details__desc ul li span {
	color: #5768AD;
	margin-right: 10px;
}

/*---------------------
  Leave Comment
-----------------------*/

.leave-comment {
	background: #f5f6fa;
	padding-bottom: 70px;
	padding-top: 80px;
}

.leave__comment__text h2 {
	font-size: 44px;
	color: #263246;
	text-align: center;
	margin-bottom: 35px;
}

.leave__comment__text form input {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 50px;
	margin-bottom: 20px;
}

.leave__comment__text form input::placeholder {
	color: #6E7580;
}

.leave__comment__text form .leave__comment__rating {
	margin-bottom: 20px;
}

.leave__comment__text form .leave__comment__rating h5 {
	font-size: 20px;
	color: #263246;
	display: inline-block;
	font-weight: 700;
	margin-right: 12px;
}

.leave__comment__text form .leave__comment__rating i {
	font-size: 16px;
	color: #F5C136;
	margin-right: -4px;
}

.leave__comment__text form .leave__comment__rating i:last-child {
	color: #9B9EA3;
}

.leave__comment__text form textarea {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 132px;
	margin-bottom: 35px;
	resize: none;
	padding-top: 14px;
}

.leave__comment__text form textarea::placeholder {
	color: #6E7580;
}

/*---------------------
  Pricing
-----------------------*/

.pricing {
	padding-top: 80px;
	padding-bottom: 60px;
}

.pricing__item {
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	padding: 35px 0 46px;
	position: relative;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	z-index: 1;
	margin-bottom: 40px;
	border-radius: 10px;
	overflow: hidden;
}

.pricing__item .active {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover .pricing__item__price h2 {
	color: #5768AD;
}

.pricing__item:hover ul li {
	color: #6E7580;
}

.pricing__item:hover .primary-btn {
	background: #5768AD;
}

.pricing__item .pricing__item__star {
	height: 119px;
	width: 119px;
	background: #5768AD;
	border-radius: 50%;
	position: absolute;
	right: -50px;
	top: -50px;
}

.pricing__item .pricing__item__star i {
	font-size: 35px;
	color: #ffffff;
	position: absolute;
	left: 25px;
	bottom: 21px;
}

.pricing__item h4 {
	font-size: 25px;
	color: #001943;
	margin-bottom: 45px;
}

.pricing__item .pricing__item__price {
	margin-bottom: 15px;
}

.pricing__item .pricing__item__price h2 {
	font-size: 70px;
	font-weight: 700;
	color: #263246;
	line-height: 65px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .pricing__item__price span {
	color: #9B9EA3;
	font-size: 15px;
	font-weight: 400;
	display: block;
}

.pricing__item ul {
	margin-bottom: 12px;
}

.pricing__item ul li {
	list-style: none;
	font-size: 18px;
	color: #9B9EA3;
	line-height: 45px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .primary-btn {
	background: #acacac;
	padding: 16px 55px 14px 50px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-bottom: 80px;
}

.contact__widget__item {
	text-align: center;
	margin-bottom: 30px;
}

.contact__widget__item span {
	font-size: 36px;
	color: #5768AD;
}

.contact__widget__item h4 {
	color: #263246;
	margin-top: 16px;
	margin-bottom: 5px;
}

.contact__widget__item p {
	color: #9B9EA3;
	margin-bottom: 0;
}

#company {
	margin-bottom: 50px;
}

.company_tbl {
  display: table;
  table-layout: fixed;
  box-sizing: border-box;
  width: 100%;
}
.tbl_top{
	border-top: solid 1px #9A9A9A;
}
.company_tbl_th{
	border-bottom: solid 1px #9A9A9A;
	border-left: solid 1px #9A9A9A;
	background: #A5E1FF;
	padding: 15px;
  display: table-cell;
  width: 20%;
}

.company_tbl_td {
	width: 50%;
	border-bottom: solid 1px #9A9A9A;
	border-right: solid 1px #9A9A9A;
	padding: 15px;
  display: table-cell;
  word-wrap: break-word;
  overflow: hidden;
}

.company_title h3  {
	display: inline;
	font-size: 180%;
	font-weight: 700;
	padding: 0 30px;
}

.company_title  {
	background: #FFF;
	position: relative;
	padding: 2.0rem 1.5rem;
	margin-bottom: 30px;
	margin: 30px auto 50px;
}

.company_title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#0aacd5), to(#02587f));
  background-image: -webkit-linear-gradient(right, #0aacd5 0%, #02587f 100%);
  background-image: linear-gradient(to left, #0aacd5 0%, #02587f 100%);
}

.company_title:before {
  top: 0;
}

.company_title:after {
  bottom: 0;
}

#thanks {
	margin-bottom: 50px;
}

.thanks_tbl {
  display: table;
  table-layout: fixed;
  box-sizing: border-box;
  width: 100%;
}
.thanks_top{
	border-top: solid 1px #9A9A9A;
}
.thanks_tbl_th{
	border-bottom: solid 1px #9A9A9A;
	border-left: solid 1px #9A9A9A;
	background: #A5E1FF;
	padding: 15px;
  display: table-cell;
  width: 20%;
}

.thanks_tbl_td {
	width: 50%;
	border-bottom: solid 1px #9A9A9A;
	border-right: solid 1px #9A9A9A;
	padding: 15px;
  display: table-cell;
  word-wrap: break-word;
  overflow: hidden;
}

.thanks_title h3  {
	display: inline;
	font-size: 180%;
	font-weight: 700;
	padding: 0 30px;
}

.thanks_title  {
	background: #FFF;
	position: relative;
	padding: 2.0rem 1.5rem;
	margin-bottom: 30px;
	margin: 30px auto 50px;
}

.thanks_title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#0aacd5), to(#02587f));
  background-image: -webkit-linear-gradient(right, #0aacd5 0%, #02587f 100%);
  background-image: linear-gradient(to left, #0aacd5 0%, #02587f 100%);
}

.thanks_title:before {
  top: 0;
}

.thanks_title:after {
  bottom: 0;
}

.price_tbl {
  display: table;
  table-layout: fixed;
  box-sizing: border-box;
  width: 100%;
}

.price_tbl_th{
	border-bottom: solid 1px #9A9A9A;
	border-left: solid 1px #9A9A9A;
	background: #A5E1FF;
	padding: 15px 5px;
  display: table-cell;
  width: 12%;
}

.price_tbl_td {
	width: 22%;
	border-bottom: solid 1px #9A9A9A;
	border-right: solid 1px #9A9A9A;
	padding: 15px 5px;
  display: table-cell;
  word-wrap: break-word;
  overflow: hidden;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: #5768AD;
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: #ffffff;
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -38px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-9px);
	border: 18px solid transparent;
	border-top: 36px solid #ffffff;
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h5 {
	font-size: 20px;
	color: #263246;
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	line-height: 26px;
}



/*---------------------
  scheme
-----------------------*/
.scheme {
	width: 100%;
	margin: 50px auto;
	padding: 10px 0;
	background: #ffffff;
	border: #A3A3A3 solid 1px;
	border-radius: 5px;
	line-height: 1.8;
	text-align: center;
}

.scheme_1 {
	width: 800px;
	margin: 30px auto 0;
	padding: 20px 5px 0;
	border: 3px solid #0aacd5;
	line-height: 1.8;
	text-align: center;
	overflow: hidden;
}

.scheme_ar {
	width: 100%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	margin: 25px auto;
}

.scheme_ar_res {
	display: none;
}

.scheme_2 {
	width: 1000px;
	margin: 30px auto 20px;
	padding: 20px 0 0;
	background: -moz-linear-gradient(top, #0aacd5, #02587f);
	background: -webkit-linear-gradient(top, #0aacd5, #02587f);
	background: linear-gradient(to bottom, #0aacd5, #02587f);
	border: 1px solid #cccccc;
	border-radius: 5px;
	line-height: 1.8;
	text-align: center;
	vertical-align: middle;

}

.scheme_3 {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin-bottom: 50px;
}

.ar_ber1,
.ar_ber2,
.ar_ber3 {
	display: inline-block;
	vertical-align: middle;
	margin: 10px;
}

.scheme_box1,
.scheme_box2,
.scheme_box3,
.scheme_box4 {
	display: inline-block;
	vertical-align: top;
	width: 240px;
	margin: 5px;
	padding: 10px 0;
	background: #ffffff;
	box-shadow: 2px 2px 3px rgba( 0, 0, 0, 0.2 );
	border-radius: 5px;
	line-height: 1.8;
	text-align: center;
}

.scheme_box1 img,
.scheme_box2 img,
.scheme_box3 img,
.scheme_box4 img {
	display: inline-block;
	width: 220px;
}

.scheme_box1 {
	background-color: #fbffa1;
}

.scheme_box2 {
	background: #A9FFCC
}
.scheme_box3 {
	background: #9fffc6;
}
.scheme_box4 {
	background: #ffdb8a;
}

.scheme_ar1,
.scheme_ar2,
.scheme_ar3,
.scheme_ar4 {
	display: inline-block;
	width: 240px;
	margin: 5px 5px 30px;
	padding: 0;
	text-align: center;

}

.main_text {
	font-size: 36px;
	font-weight: 700;
	color: #3A3A3A;
}

.sub_text {
	font-size: 18px;
	font-weight: 500;
	color: #3A3A3A;
}
.c_m_text {
	font-size: 36px;
	font-weight: 700;
	color: #FFF;
}

.c_s_text {
	font-size: 22px;
	font-weight: 500;
	color: #FFF;
}

.s_m_text {
	font-size: 26px;
	color: #3A3A3A;
}

.s_b_text {
	font-size: 16px;
	color: #3A3A3A;
}

.ar_text {
	font-size: 16px;
	font-weight: 600;
	color: #3A3A3A;
}

.contact-btn {
	display: inline-block;
	font-size: 24px;
	margin: 20px;
	padding: 16px 36px 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #0aacd5;
	border-radius: 2px;
	letter-spacing: 2px;
}
.scheme a:hover {
	text-decoration:underline;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.scheme_ar1,
	.scheme_ar2,
	.scheme_ar3,
	.scheme_ar4 {
		display: none;
	}
	.scheme_2 {
		width: 900px;
	}
	.scheme_ar_res {
		display: inline-block;
		width: 100%;
		text-align: center;
		vertical-align: middle;
		overflow: hidden;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.scheme_ar1,
	.scheme_ar2,
	.scheme_ar3,
	.scheme_ar4 {
		display: none;
	}
	.scheme_1,
	.scheme_2 {
		width: 600px;
	}
	.scheme_ar_res {
		display: inline-block;
		width: 100%;
		text-align: center;
		vertical-align: middle;
		overflow: hidden;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.scheme_ar1,
	.scheme_ar2,
	.scheme_ar3,
	.scheme_ar4 {
		display: none;
	}
	.scheme_1,
	.scheme_2 {
		width: 400px;
	}
	.scheme_ar_res {
		display: inline-block;
		width: 100%;
		text-align: center;
		vertical-align: middle;
		overflow: hidden;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.scheme_ar1,
	.scheme_ar2,
	.scheme_ar3,
	.scheme_ar4 {
		display: none;
	}
	.scheme_1,
	.scheme_2 {
		width: 350px;
	}
	.scheme_ar_res {
		display: inline-block;
		width: 100%;
		text-align: center;
		vertical-align: middle;
		overflow: hidden;
	}
}

/*---------------------
  merit
-----------------------*/
.merit {
	text-align: center;
}

.merit h3 {
	margin: 30px auto;
}

.merit_title h2  {
	display: inline;
	font-size: 250%;
	font-weight: 900;
	background:linear-gradient(transparent 60%, #f6c 60%);
	padding: 0 30px;
}

.merit_title  {
	background: #FFF;
	position: relative;
	padding: 2.0rem 1.5rem;
	margin: 30px auto 50px;
}

.merit_title:before,
.merit_title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#0aacd5), to(#02587f));
  background-image: -webkit-linear-gradient(right, #0aacd5 0%, #02587f 100%);
  background-image: linear-gradient(to left, #0aacd5 0%, #02587f 100%);
}

.merit_title:before {
  top: 0;
}

.merit_title:after {
  bottom: 0;
}

.merit_title h3 {
	margin-bottom: 0;
	font-weight: 700;
}

.merit_sub {
	font-size: 160%;
	font-weight: 700;
	text-align: center;
}

.merit_sub {
	text-align: center;
	margin: 0 auto;
  position: relative;
  padding: 0;
  background: #fff100;
	width: 650px;
}

.merit_sub:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #000;
}

.merit_sub b {
	color: #FF0000;
	font-size: 180%;
	background: linear-gradient(transparent 50%,rgba(255,224,193,0.2) 50%,rgb(255,224,193) 75%,rgba(255,224,193,0.2));
	padding: 0 20px;
}

.merit_p {
	font-size: 160%;
	font-weight: 600;
	margin: 50px auto;
	width: 650px;
	line-height: 1.6em;
}

.merit_img img {
	margin-top: 100px;
	margin-right: 20px;
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.syoku_back {
	border: 1px solid #d9f8ff;
	padding: 20px;
	background-image: linear-gradient(-45deg, rgba(200,242,252,.5) 25%, transparent 25%, transparent 50%, rgba(200,242,252,.5) 50%, rgba(200,242,252,.5) 75%, transparent 75%, transparent 100%), linear-gradient(45deg, rgba(200,242,252,.5) 25%, transparent 25%, transparent 50%, rgba(200,242,252,.5) 50%, rgba(200,242,252,.5) 75%, transparent 75%, transparent 100%);
	background-size: 30px 30px;
	margin: auto;
	text-align: center;
}

.syoku_box {
	margin: auto;
	overflow: hidden;
	text-align: center;
	display: inline-block;
}

.syoku_box h3 {
	background-color: #fff; /* 背景色 */
	border: 1px solid #0aacd5; /* 枠線 */
	border-right: 20px solid #0aacd5; /* 右側の太い線 */
	box-shadow: 1px 1px 1px rgba(0,0,0,.1);
	color: #0aacd5; /* 文字色 */
	padding: 10px 20px; /* 上下・左右の余白 */
	position:relative;
}
.syoku_box h3:after {
	box-shadow: 0 15px 10px rgba(0, 0, 0, .1); /* 付箋の影 */
	content: '';
	position: absolute;
	transform: rotate(1deg);
	-moz-transform: rotate(1deg);
	-webkit-transform: rotate(1deg);
	-o-transform: rotate(1deg);
	bottom: 15px;
	right: -3px;
	width: 85%;
	height: 10px;
	z-index: -1;
}

.syoku_img {
	display: inline-block;
	margin: 15px;
	text-align: center;
	vertical-align: middle;
	background: #FFF;
	border: #cccccc 1px solid;
	box-shadow: 2px 2px 3px rgba( 0, 0, 0, 0.2 );
	width: 230px;
	height: 165px;
}

.syoku_img img {
	width: 200px;
	margin: 15px auto;
	vertical-align: middle;
}

.flort-l {
	display: inline-block;
	float: left;
}

.flort-r {
	display: inline-block;
	float: right;
}


/*---------------------
  ichiran_img
-----------------------*/

.ichiran_img {
  position: relative;
  }

.ichiran_img p {
  position: absolute;
  top: 5%;
  left: 5%;
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
  margin:0;
  padding:0;
  /*文字の装飾は省略*/
	  display     : inline-block;
  font-size   : 250%;
	line-height: 2em;
  font-weight : bold;
  color       : #ffffff;
  text-shadow:  2px  2px 10px #777 ,
               -2px  2px 10px #777 ,
                2px -2px 10px #777 ,
               -2px -2px 10px #777;
  }

.ichiran_img img {
  width: 100%;
  }

#itiran {
	display: block;
	text-align: center;
	list-style: none;
}

.itiran_mei {
  margin         : auto;                 /* サンプル用 中央寄せ */
  display        : flex;                 /* FlexBox定義         */
  flex-wrap      : wrap;                 /* 折り返し定義        */
}

.itiran_mei div {
/* ▼ FlexBoxの各ボックス均等自動幅 */
  flex-grow      : 1;                    /* 各BOXを均等に割当て */
}

.ichiran_main {
	text-align: center;
	width: 100%;
	background: #FFF;
	margin: 30px auto;
}
.ichiran_box,
.ichiran_box_ho {
	display: inline-block;
	width: 250px;
}

.itiran_g,
.itiran_g_ho {
	width: 250px;
	margin: 0 auto;
	padding: 10px 0;
	font-family: sans-serif;
	font-size: 24px;
	font-weight: 600;
	color:#3cb3e4;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.itiran_g_ho {
		text-align: center;
		width: 200px;
		margin: 0 auto;
 		padding: 10px 0;
		font-family: sans-serif;
		font-size: 24px;
		font-weight: 600;
		color:#3cb3e4;
}
	.itiran_ho {
		width: 200px;
	}
	.hokkaido {
		text-align: center;
		margin: 0 20px;
	}
	.ichiran_box_ho {
		width: 200px;
	}
}

/* Medium Device = 1200px */

.tihou,
.hokkaido {
  margin: 10px 0
}
.itiran_t .tihou,
.itiran_t .hokkaido {
  padding:8px 10px;
  border:rgb(60, 179, 228) 2px;
  border-style: solid none;
  background: repeating-linear-gradient(
    45deg,
    #fff,
    #fff 3px,
    rgba(60, 179, 228, 0.1) 3px,
    rgba(60, 179, 228, 0.1) 6px
  );
}
.itiran_ho,
.itiran_to {
	font-size: 16px;
}

.itiran h5 {
	font-size: 32px;
	color: #263246;
	margin-top: 34px;
	margin-bottom: 5px;
}
.itiran li {
	color: #6E7580;
	margin-bottom: 0;
}

.ichiran_title {
  position: relative;
  color: #02587f;
  font-size: 36px;
	font-weight: 700;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
}
.ichiran_title:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 200px;
  height: 85px;
  border-radius: 50%;
  border: 5px solid #0aacd5;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.price_list p {
	text-align: right;
	font-size: 12px;
	color: #000;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.team__slider.owl-carousel .owl-nav button {
		left: -5px;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -5px;
	}
	.counter__item {
		margin-right: 50px;
	}
	.header__top__widget .primary-btn {
		display: none;
	}
	.header__top__widget ul {
		margin-right: 0;
	}
	.header__top__widget {
		padding: 44px 0 35px;
	}
	.ichiran_img p {
		position: absolute;
		top: 5%;
		left: 5%;
		-ms-transform: translate(0,0);
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin:0;
		padding:0;
		/*文字の装飾は省略*/
		  display     : inline-block;
		  font-size   : 200%;
  		  line-height: 2em;
		  font-weight : bold;
		  color       : #ffffff;
		  text-shadow:  2px  2px 10px #777 ,
          		       -2px  2px 10px #777 ,
          		        2px -2px 10px #777 ,
          		       -2px -2px 10px #777;
 	}
	
	#ichirei {
		text-align: center;
	}
	
	.ichirei_pic_item {
		height: 500px;
		width: calc(95% - 120px);
		margin: 0 85px;
	}
	
	.ichirei_pic_item_inner {
		display: inline-block;
		height: 180px;
		width: calc(32% - 20px);
		margin: 10px;
	}
	
	.ichirei_pic_item h5,
	.ichirei_pic_item_inner h5 {
		font-size: 14px;
	}
	
	.merit_img img {
		height: 500px;
		width: 110%;
		margin-top: 100px;
		margin-left: 20px;
		object-fit: cover;
	}
	
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu ul li {
		margin-right: 18px;
	}
	.header__top__widget ul {
		display: none;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.about__pic {
		margin-bottom: 30px;
	}
	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -80px;
	}
	.team__item {
		padding: 30px 35px 40px;
	}
	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}
	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.classes__filter {
		padding: 25px 50px 30px;
	}
	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}
	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	.blog__sidebar {
		margin-top: 50px;
	}
	.counter__item {
		margin-right: 50px;
	}
	.ichiran_img p {
		position: absolute;
		top: 0%;
		left: 0%;
		-ms-transform: translate(0,0);
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin:0;
		padding:0;
		/*文字の装飾は省略*/
		  display     : inline-block;
		  font-size   : 180%;
  		  line-height: 2em;
		  font-weight : bold;
		  color       : #ffffff;
		  text-shadow:  2px  2px 5px #777 ,
          		       -2px  2px 5px #777 ,
          		        2px -2px 5px #777 ,
          		       -2px -2px 5px #777;
  }
	.merit_title h2  {
		display: inline;
		font-size: 200%;
		font-weight: 900;
		background:linear-gradient(transparent 60%, #f6c 60%);
		padding: 0 15px;
  }
	.merit_title h3 {
		margin-bottom: 0;
		font-weight: 700;
		font-size: 180%;	
  }

	.merit_title  {
		background: #FFF;
		position: relative;
		padding: 1.0rem;
		margin: 20px auto 30px;
  }

	.merit_title:before,
	.merit_title:after {
  		position: absolute;
  		left: 0;
 		width: 100%;
  		height: 4px;
  		content: '';
		background-image: -webkit-linear-gradient(right, #0aacd5 0%, #02587f 100%);
		background-image: -o-linear-gradient(right, #0aacd5 0%, #02587f 100%);
		background-image: linear-gradient(to left, #0aacd5 0%, #02587f 100%);
  }

	.merit_title:before {
  		top: 0;
  }

	.merit_title:after {
		bottom: 0;
  }
	.merit_img img {
		text-align: center;
		display: block;
		width: 100%;
		margin: 0 auto 30px;
	}
	
	#ichirei {
		text-align: center;
	}
	
	.ichirei_pic_item {
		height: 350px;
		width: calc(95% - 120px);
		margin: 0 85px;
	}
	
	.ichirei_pic_item_inner {
		display: inline-block;
		height: 130px;
		width: calc(32% - 20px);
		margin: 10px;
	}
	.ichirei_pic_item h5,
	.ichirei_pic_item_inner h5 {
		font-size: 12px;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.appointment__text {
		padding: 60px 30px;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		position: relative;
		left: 15px;
		bottom: 120px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: -25px;
	}
	.home__about__pic__item {
		width: 100%;
		margin-right: 0;
	}
	.about .p-0 {
		padding: 0 15px !important;
	}
	.about__pic {
		margin-bottom: 30px;
	}
	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -100px;
	}
	.team__item {
		padding: 30px 35px 40px;
	}
	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}
	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.classes__filter {
		padding: 25px 50px 30px;
	}
	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}
	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	.blog__sidebar {
		margin-top: 50px;
	}
	.blog__previous__btn,
	.blog__next__btn {
		margin-bottom: 20px;
	}
	.header__top__widget {
		display: none;
	}
	.header__nav {
		display: none;
	}
	.hero {
		margin-top: 0;
	}
	.header__top .container {
		position: relative;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.5s;
		-moz-transition: all, 0.5s;
		-ms-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.canvas__open {
		font-size: 20px;
		color: #263246;
		height: 30px;
		width: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid #263246;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 35px;
		display: block;
	}
	.offcanvas-menu {
		position: fixed;
		width: 300px;
		height: 100%;
		left: -300px;
		background: #ffffff;
		z-index: 99;
		overflow-y: auto;
		padding: 50px 30px 30px 30px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.5s;
		-moz-transition: all, 0.5s;
		-ms-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}
	.offcanvas-menu.show-offcanvas-menu {
		left: 0;
		opacity: 1;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__logo a {
		display: inline-block;
	}
	.offcanvas__widget {
		margin-bottom: 30px;
	}
	.offcanvas__widget ul {
		margin-bottom: 20px;
	}
	.offcanvas__widget ul li {
		font-size: 16px;
		color: #263246;
		text-transform: uppercase;
		list-style: none;
		display: inline-block;
		line-height: 36px;
	}
	.offcanvas__widget .primary-btn {
		display: inline-block;
	}
	.offcanvas__social a {
		display: inline-block;
		font-size: 16px;
		color: #263246;
		margin-right: 10px;
	}
	.offcanvas__social a:last-child {
		margin-right: 0;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_nav {
		background: transparent;
		display: block !important;
	}
	.slicknav_nav .slicknav_row:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #263246;
	}
	.slicknav_nav a:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #263246;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #263246;
		font-size: 16px;
		border-bottom: 1px solid #e1e1e1;
	}
	.header__menu {
		display: none;
	}
	.header__social {
		display: none;
	}
	.hero__items {
		height: auto;
	}
	.hero__text {
		padding: 120px 0 170px;
	}
	.breadcrumb-option,
	.blog-hero {
		margin-top: 0;
	}
	.footer__copyright__text {
		text-align: center;
		margin-bottom: 10px;
	}
	.footer__copyright__social {
		text-align: center;
	}
	.home__about__pic {
		margin-right: 0;
		padding-right: 0;
	}
	.blog__details__tags__share p {
		float: none;
	}
	.blog__details__tags__share .blog__details__share {
		float: none;
	}
	.over-hid {
		overflow: hidden;
	}
	.ichiran_img p {
		position: absolute;
		top: 0%;
		left: 0%;
		-ms-transform: translate(0,0);
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin:0;
		padding:0;
		/*文字の装飾は省略*/
		  display     : inline-block;
		  font-size   : 150%;
		  font-weight : bold;
		  color       : #ffffff;
		  text-shadow:  2px  2px 5px #777 ,
          		       -2px  2px 5px #777 ,
          		        2px -2px 5px #777 ,
          		       -2px -2px 5px #777;
  }
	.merit_title h2  {
		display: inline;
		font-size: 150%;
		font-weight: 900;
		background:linear-gradient(transparent 60%, #f6c 60%);
		padding: 0 15px;
  }
	.merit_title h3 {
		margin-bottom: 0;
		font-weight: 700;
		font-size: 120%;	
  }

	.merit_title  {
		background: #FFF;
		position: relative;
		padding: 0.5rem;
		margin: 10px auto 15px;
  }

	.merit_title:before,
	.merit_title:after {
  		position: absolute;
  		left: 0;
 		width: 100%;
  		height: 4px;
  		content: '';
		background-image: -webkit-linear-gradient(right, #0aacd5 0%, #02587f 100%);
		background-image: -o-linear-gradient(right, #0aacd5 0%, #02587f 100%);
		background-image: linear-gradient(to left, #0aacd5 0%, #02587f 100%);
  }

	.merit_title:before {
  		top: 0;
  }

	.merit_title:after {
		bottom: 0;
  }
	
	.merit_sub {
		font-size: 130%;
		font-weight: 700;
		text-align: center;
		margin: 0 auto;
  		position: relative;
  		padding: 10px;
  		background: #fff100;
		width: 450px;
  }

	.merit_sub:before {
  		position: absolute;
  		top: -7px;
  		left: -7px;
  		width: 100%;
  		height: 100%;
  		content: '';
  		border: 4px solid #000;
  }

	.merit_sub b {
		color: #FF0000;
		font-size: 180%;
		background: linear-gradient(transparent 50%,rgba(255,224,193,0.2) 50%,rgb(255,224,193) 75%,rgba(255,224,193,0.2));
		padding: 0 20px;
  }

	.merit_p {
		font-size: 120%;
		font-weight: 600;
		margin: 50px auto;
		width: 500px;
		line-height: 1.6em;
  }
	.merit_img img {
		object-fit: contain;
		text-align: center;
		display: block;
		height: 50%;
		width: 50%;
		margin: 0 auto 20px;
	}
	
	#ichirei {
		text-align: center;
	}
	
	.ichirei_pic_item {
		height: 350px;
		width: calc(95% - 120px);
		margin: 0 85px;
	}
	
	.ichirei_pic_item_inner {
		display: inline-block;
		height: 95px;
		width: calc(32% - 20px);
		margin: 2px;
	}
	.ichirei_pic_item h5,
	.ichirei_pic_item_inner h5 {
		display: none;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__text h2 {
		font-size: 40px;
		line-height: normal;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		bottom: 80px;
	}
	.chooseus__item {
		width: 100%;
		margin-bottom: 60px;
	}
	.appointment .section-title h2 {
		font-size: 35px;
	}
	.counter__item {
		display: block;
		margin-right: 0;
	}
	.counter__text {
		padding: 95px 30px 20px 50px;
	}
	.blog__details__author__pic {
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.map .map-inside {
		-webkit-transform: translateX(-150px);
		-ms-transform: translateX(-150px);
		transform: translateX(-150px);
	}
	.map .map-inside .inside-widget {
		width: 300px;
	}
	.blog__sidebar {
		padding-right: 0;
	}
	.faq__accordion .card .card-heading a {
		font-size: 16px;
	}
	.ichiran_img p {
		position: absolute;
		top: 0%;
		left: 0%;
		-ms-transform: translate(0,0);
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin:0;
		padding:0;
		/*文字の装飾は省略*/
		  display     : inline-block;
		  font-size   : 100%;
		  font-weight : bold;
		  color       : #ffffff;
		  text-shadow:  2px  2px 5px #777 ,
          		       -2px  2px 5px #777 ,
          		        2px -2px 5px #777 ,
          		       -2px -2px 5px #777;
  }
	.merit_sub {
		font-size: 130%;
		font-weight: 700;
		text-align: center;
		margin: 0 auto;
  		position: relative;
  		padding: 10px;
  		background: #fff100;
		width: 350px;
  }

	.merit_sub:before {
  		position: absolute;
  		top: -7px;
  		left: -7px;
  		width: 100%;
  		height: 100%;
  		content: '';
  		border: 4px solid #000;
  }

	.merit_sub b {
		color: #FF0000;
		font-size: 150%;
		background: linear-gradient(transparent 50%,rgba(255,224,193,0.2) 50%,rgb(255,224,193) 75%,rgba(255,224,193,0.2));
		padding: 0 15px;
  }

	.merit_p {
		font-size: 100%;
		font-weight: 600;
		margin: 20px auto;
		width: 400px;
		line-height: 1.6em;
  }
	.merit_img {
		display: none;
	}
	
	#ichirei {
		text-align: center;
	}
	
	.ichirei_pic_item {
		height: 200px;
		width: calc(95% - 120px);
		margin: 0 85px;
	}
	
	.ichirei_pic_item_inner {
		display: inline-block;
		height: 80px;
		width: calc(32% - 20px);
		margin: 1px;
	}
	.ichirei_pic_item h5,
	.ichirei_pic_item_inner h5 {
		display: none;
	}
}

