/* --------------------------------------
=========================================
   1. GLOBAL STYLES AND FIXES
=========================================
-----------------------------------------*/
/*---------------------------------------
   1.1 HTML, BODY & PRE LOADER
-----------------------------------------*/
html {
  font-size: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: 'poppins', helvetica, sans-serif;
  font-size: 15px;
  line-height: 27px;
  color: #616161;
  font-weight: 400;
  text-align: center;
  overflow-x: hidden !important;
}

/* PRE LOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fefefe;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}


.loader {
  position: relative;
  margin: 0px auto;
  width: 70px;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%,
  0% {
    stroke: #fc5f45;
  }
  40% {
    stroke: #b27cf5;
  }
  66% {
    stroke: #38c695;
  }
  80%,
  90% {
    stroke: #feb960;
  }
}
@keyframes color {
  100%,
  0% {
    stroke: #fc5f45;
  }
  40% {
    stroke: #b27cf5;
  }
  66% {
    stroke: #38c695;
  }
  80%,
  90% {
    stroke: #feb960;
  }
}


/*---------------------------------------
   1.2 ANCHOR AND INPUT FIELD
-----------------------------------------*/
a {
  text-decoration: none;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  color: #313131;
}
a:hover {
  text-decoration: none;
  color: #fc5f45;
}
textarea.input-field:focus,
textarea.input-field:active,
input.input-field:focus,
input.input-field:active {
  border: 1px solid #fc5f45;
  outline: 0;
  background: #ffffff;
}

/*---------------------------------------
   1.3 BOOTSTRAP FIXES / OTHTER FIXES
-----------------------------------------*/
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
ul,
ol {
  padding-left: 0 !important;
}
li {
  list-style: none;
}
.row.no-gutters [class^="col-"],
.row.no-gutters [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* CAROUSEL NAV */
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 17px;
  height: 17px;
  filter: alpha(opacity=50);
  opacity: 1;
  border-radius: 20px;
  background: transparent;
  border: 2px solid rgba(252, 95, 69, 0.5);
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: alpha(opacity=100);
  opacity: 1;
  background: #fc5f45;
  border: 3px solid #ffffff;
  box-shadow: 0px 0px 0px 2px #fc5f45;
}

/*---------------------------------------
   1.4 TEXT / COLORS
-----------------------------------------*/
.dark-text {
  color: #313131;
}
.dark-text2 {
  color: #616161;
}
.white-text {
  color: #ffffff;
}
.red-text {
  color: #fc5f45;
}
.green-text {
  color: #38c695;
}
.purple-text {
  color: #b27cf5;
}
.yellow-text {
  color: #feb960;
}
.uppercase {
  text-transform: uppercase;
}
.small-text {
  font-size: 14px;
}
.extra-small-text {
  font-size: 13px;
}
strong,
.strong {
  font-weight: 500;
}

/*---------------------------------------
   1.5 LINES, SHADOW & GRADEINTS
-----------------------------------------*/
.red-line-bottom {
  border-bottom: 3px solid #fc5f45;
}
.green-line-bottom {
  border-bottom: 3px solid #38c695;
}
.purple-line-bottom {
  border-bottom: 3px solid #b27cf5;
}
.yellow-line-bottom {
  border-bottom: 3px solid #feb960;
}
.red-line-top {
  border-top: 3px solid #fc5f45;
}
.green-line-top {
  border-top: 3px solid #38c695;
}
.purple-line-top {
  border-top: 3px solid #b27cf5;
}
.yellow-line-top {
  border-top: 3px solid #feb960;
}
.four-lines {
  width: 100%;
}
.four-lines .line {
  width: 25%;
  float: left;
}
.diffuse-shadow {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}
.image-border {
  box-shadow: inset 0 0 0 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.red-gradient-overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0) 0%, rgba(252, 95, 69, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(252, 95, 69, 0.6) 100%);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.green-gradient-overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0) 0%, rgba(56, 198, 149, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(56, 198, 149, 0.6) 100%);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.purple-gradient-overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0) 0%, rgba(178, 124, 245, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(178, 124, 245, 0.6) 100%);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.yellow-gradient-overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0) 0%, rgba(254, 185, 96, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(254, 185, 96, 0.6) 100%);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.dark-gradient-overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.75;
  background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0) 50%, #000000 100%);
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 50%, #000000 100%);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

/*---------------------------------------
   1.6 HEADINGS, SECTION HEADERS & BG
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #313131;
}
h1 {
  font-family: 'Libre Baskerville', 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  line-height: 5.313rem;
}
@media screen and (max-width:480px) {
h1 {
  font-family: 'Libre Baskerville', 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  line-height: 4rem;
}}
h2 {
  font-family: 'Libre Baskerville', 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
}
h3 {
  font-size: 30px;
  line-height: 48px;
  font-weight: 400;
}
h4 {
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
}
h5 {
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

/* SECTION NUMBER, HEADER AND BG */
.section-number {
  font-weight: 700;
  font-size: 273px;
  color: #e0e0e0;
  opacity: 0.3;
  position: absolute;
  top: 110px;
  left: 0;
}
.centered-number {
  right: 0;
  left: 0;
}
.section-heading {
  position: relative;
  z-index: 10;
}
section {
  position: relative;
}
.section-header {
  position: relative;
  z-index: 10;
  margin-bottom: 35px;
}
.sub-heading {
  font-size: 18px;
  margin-top: 13px;
}
.bgcolor-2 {
  background: #f7f7f7;
}
.white-bg {
  background: #ffffff;
}

/*---------------------------------------
   1.7 BUTTONS
-----------------------------------------*/
.standard-button {
  padding: 0 40px 0 40px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 50px;
  border: none;
  box-shadow: none;
}
.red-button {
  color: #ffffff;
  background: #fc5f45;
}
.red-button:hover,
.red-button:active,
.red-button:active:hover,
.red-button:focus:hover,
.red-button:focus {
  background-color: #f34123;
  color: #ffffff;
  outline: none;
}
.red-outline {
  color: #fc5f45;
  background: #fff;
  border: 2px solid #fc5f45;
  line-height: 46px;
  padding: 0 38px 0 38px;
}
.red-outline:hover,
.red-outline:active,
.red-outline:active:hover,
.red-outline:focus:hover,
.red-outline:focus {
  background-color: #fc5f45;
  color: #ffffff;
  outline: none;
  border: 2px solid #fc5f45;
}
.green-button {
  color: #ffffff;
  background: #38c695;
}
.green-button:hover,
.green-button:active,
.green-button:active:hover,
.green-button:focus:hover,
.green-button:focus {
  background-color: #17bb82;
  color: #ffffff;
  outline: none;
}
.green-outline {
  color: #38c695;
  background: #fff;
  border: 2px solid #38c695;
  line-height: 46px;
  padding: 0 38px 0 38px;
}
.green-outline:hover,
.green-outline:active,
.green-outline:active:hover,
.green-outline:focus:hover,
.green-outline:focus {
  background-color: #38c695;
  color: #ffffff;
  outline: none;
  border: 2px solid #38c695;
}
.purple-button {
  color: #ffffff;
  background: #b27cf5;
}
.purple-button:hover,
.purple-button:active,
.purple-button:active:hover,
.purple-button:focus:hover,
.purple-button:focus {
  background-color: #954fed;
  color: #ffffff;
  outline: none;
}
.purple-outline {
  color: #b27cf5;
  background: #fff;
  border: 2px solid #b27cf5;
  line-height: 46px;
  padding: 0 38px 0 38px;
}
.purple-outline:hover,
.purple-outline:active,
.purple-outline:active:hover,
.purple-outline:focus:hover,
.purple-outline:focus {
  background-color: #b27cf5;
  color: #ffffff;
  outline: none;
  border: 2px solid #b27cf5;
}
.yellow-button {
  color: #ffffff;
  background: #feb960;
}
.yellow-button:hover,
.yellow-button:active,
.yellow-button:active:hover,
.yellow-button:focus:hover,
.yellow-button:focus {
  background-color: #ed9c34;
  color: #ffffff;
  outline: none;
}
.yellow-outline {
  color: #feb960;
  background: #fff;
  border: 2px solid #feb960;
  line-height: 46px;
  padding: 0 38px 0 38px;
}
.yellow-outline:hover,
.yellow-outline:active,
.yellow-outline:active:hover,
.yellow-outline:focus:hover,
.yellow-outline:focus {
  background-color: #feb960;
  color: #ffffff;
  outline: none;
  border: 2px solid #feb960;
}

/* --------------------------------------
=========================================
   2. SECTIONS
=========================================
-----------------------------------------*/
/*---------------------------------------
   2.1 SECTION: HOME PAGE
-----------------------------------------*/
.home {
  background: url(../img/backgrounds/1.jpg) no-repeat top;
  background-size: cover;
}
.home .color-overlay {
  padding-top: 175px;
  padding-bottom: 125px;
}
.home .intro {
  margin-top: 62px;
  margin-bottom: 18px;
}
.home .cta {
  text-align: center;
}
.home .cta .standard-button {
  margin-right: 10px;
  margin-left: 10px;
}
.home-features {
  margin-top: 55px;
}
.home-features .single-feature {
  margin-bottom: 45px;
}
.home-features .single-feature .icon {
  font-size: 45px;
  margin-bottom: 28px;
}
.color-overlay {
  background: rgba(38, 39, 50, 0.85);
}
/* LOGO AND STICKY NAVIGATION */
.sticky-navigation {
  background: #ffffff;
  min-height: 75px;
  border-bottom: 0;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  z-index:999;
}
.sticky-navigation .navbar-brand {
  margin-top: 9px;
}
.sticky-navigation .navbar-brand img {
  max-height: 26px;
}
.sticky-navigation .current a {
  color: #fc5f45 !important;
}
.sticky-navigation .main-navigation li a {
  line-height: 45px;
  color: #313131;
  font-weight: 500;
  font-size: 14px;
}
.sticky-navigation .main-navigation li a:hover,
.sticky-navigation .main-navigation li a:focus {
  color: #fc5f45;
}
.headertext{
	color:#dcdcdc;
}

/*---------------------------------------
   2.2 SECTION: ABOUT US
-----------------------------------------*/
.about-us {
  padding-top: 20px;
  padding-bottom: 20px;
}
.about-us .featured-image {
  position: relative;
  width: 100%;
}
.about-us .featured-image img {
  width: 100%;
  display: block;
}
.overflow-box {
  margin-left: -200px;
  position: relative;
  z-index: 10;
}
.about-box {
  background: #ffffff;
  position: relative;
  margin-top: 75px;
  z-index: 10;
  overflow: hidden;
}

.about-box .about-content {
  padding-top: 20px;
  padding-left: 82px;
  padding-right: 82px;
}

.about-box p {
  margin-top: 22px;
  margin-bottom: 50px;
  position: relative;
}

span.anchorlink {
	position: relative;
	top: -75px;
	display: block;
}

span.keypoint{
	color:#EE6557;
}
/*---------------------------------------
   2.11 SECTION: FEATURES
-----------------------------------------*/
.features {
  padding-top: 10px;
  padding-bottom: 5px;
}
.feature-grid {
  margin-top: 30px;
}
.feature-box {
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  height:170px;
}
.feature-box .feature-header {
  margin-bottom: 15px;
}
.feature-box .feature-header h6 {
  margin-top: -4px;
}
.feature-box .feature-header .icon {
  float: left;
  font-size: 60px;
  margin-left: -2.5px;
  margin-top: -0.5px;
  margin-right: 5px;
}

/* CALL TO ACTION */
.cta-bottom {
  margin-top: 50px;
}
.cta-bottom h4 {
  display: inline-block;
  margin-right: 25px;
  margin-top: 30px;
}
.cta-bottom .standard-button {
  margin-top: 20px;
}

a.anothercontent{
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #67c5ff;
    border: solid 2px #67c5ff;
    border-radius: 3px;
    transition: .4s;
    font-size:90%;
    margin:10px auto;
}

a.anothercontent:hover {
    background: #67c5ff;
    color: white;
}

p.anothercontenttext{
	font-size:90%;
}

a.ranking_btn{
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #67c5ff;
    border: solid 2px #67c5ff;
    border-radius: 3px;
    transition: .4s;
    margin:auto 10px 20px 10px;
    width:300px;
    font-size:130%;
}

a.ranking_btn:hover {
    background: #67c5ff;
    color: white;
}

a.ranking_btn_back{
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #fc5f45;
    border: solid 2px #fc5f45;
    border-radius: 3px;
    transition: .4s;
    margin:auto 10px 20px 10px;
    width:300px;
    font-size:130%;
}

a.ranking_btn_back:hover {
    background: #fc5f45;
    color: white;
}

.ranking_schoolname{
	border-bottom: solid 3px #67c5ff;
}

/*---------------------------------------
   2.14 SECTION: FOOTER
-----------------------------------------*/
.footer {
  background: rgba(38, 39, 50, 0.85);
  margin-top: 30px;
  color:#fff;
  height:120px;
}
.footer a{
  color:#fff;
}
.footer a:hover{
  color:#EE6557;
}
.footer .footer-col {
  padding: 50px 40px 45px 40px;
  text-align: left;
}
.footer .footer-col h6 {
  margin-bottom: 28px;
}

.fixed-bg {
  background-attachment: fixed;
}

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index:100;
}

#pageTop a {
  display: block;
  z-index: 999;
  padding: 3px 0 0 2px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #9FD6D2;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
  z-index:100;
}

p.copyright{
	margin-top:80px;
}

/***sns***/

.sns_box {
  position: absolute;
  overflow: hidden;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin:20px auto;
  height: 44px;
  min-width: 268px;
}

.sns_button {
  float: left;
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 100%;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
}
.sns_button a {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
}
.sns_button i {
  font-size: 20px;
  vertical-align: middle;
}
.hatebu {
    font-family: Verdana;
    font-weight: bold;
	font-size:20px;
}
.sns_button:hover {
  box-shadow: inset 0 0 0 22px #fff;
}

.sns_button + .sns_button {
  margin: 0 0 0 12px;
}

.twitter:hover a {
  color: #1B95E0;
}

.facebook:hover a {
  color: #3B5999;
}

.google:hover a {
  color: #dd4b39;
}

.hatebu:hover a {
  color: #008fde;
}

.pocket:hover a {
  color: #EE4056;
}

/*****カードデザイン*****/
.card {
  width: 320px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
  float:left;
  margin:15px;
}
.card-img {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
  height: auto;
}
.card-content {
  padding: 10px;
}
p.card-title {
  font-size: 20px;
  margin: 15px auto;
  text-align: center;
  color: #333;
}
p.card-text {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  margin:auto;
}
.card-link {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 20px;
}
.card-link a {
  text-decoration: none;
  color: #0bd;
}
.card-link a:hover {
  color: #0090aa;
}

/*****パンくず*****/

.pankuzu{
	text-align:left;
	margin-top:10px;
	margin-left:15%;
}
@media screen and (max-width:480px) {
.pankuzu{
	font-size:75%;
	text-align:left;
	margin-top:10px;
	margin-left:;
}}

/*****サイトマップ*****/
ul.sitemap_ul01{
	text-align:left;
	margin-left:20px;
	text-decolation:underline;
	font-color:#b1b1b1;
}
li.sitemap_li01{
	font-size:170%;
	font-weight:bold;
	margin-top:40px;
	list-style-type: square;
}
.sitemap_li01 a{
	border-bottom: double 6px;
	}
ul.sitemap_ul02{
	margin-left:40px;
}
li.sitemap_li02{
	font-size:150%;
	margin-top:30px;
	list-style-type: disc;
}
.sitemap_li02 a{
	border-bottom: solid 2px;
}
ul.sitemap_ul03{
	margin-left:60px;
}
li.sitemap_li03{
	font-size:120%;
	margin-top:20px;
	list-style-type: circle;
}
.sitemap_li03 a{
	border-bottom: solid 1px;
}

@media screen and (max-width:480px) {
ul.sitemap_ul01{
	text-align:left;
	margin-left:7px;
	text-decolation:underline;
	font-color:#b1b1b1;
}
li.sitemap_li01{
	font-size:110%;
	font-weight:bold;
	margin-top:20px;
	list-style-type: square;
}
.sitemap_li01 a{
	border-bottom: double 4px;
	}
ul.sitemap_ul02{
	margin-left:14px;
}
li.sitemap_li02{
	font-size:95%;
	margin-top:15px;
	list-style-type: disc;
}
.sitemap_li02 a{
	border-bottom: solid 1px;
}
ul.sitemap_ul03{
	margin-left:21px;
}
li.sitemap_li03{
	font-size:80%;
	margin-top:10px;
	list-style-type: circle;
}
.sitemap_li03 a{
	border-bottom: solid 1px;
}}

p.chart-point{
	font-weight:bold;
	font-size:2em;
	text-align:center;
}

img.chart-img{
	width:400px;
}
@media screen and (max-width:480px) {
img.chart-img{
	width:100%;
}}
