/**
* Template Name: Anyar - v2.0.0
* Template URL: https://bootstrapmade.com/anyar-free-multipurpose-one-page-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html { 
  font-size: 62.5%; 
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
}

a {
  color: #0880e8;
}

a.anchor01 {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

a:hover {
  color: #2b99f8;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
}

p,li {
  font-size: 1.8rem;
  line-height: 1.6;
}

p {
  margin-bottom: 3rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ad47a3;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ad5147;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0880e8;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  /*border-bottom: 5px solid #009e41;*/
  background-color: #70ad47;
}

#header.header-scrolled {
  top: 0;
  background: rgba(112, 173, 71, 0.9);
}

#header .logo {
  font-size: 2.4rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 15px 0;
  }
}

@media (max-width: 768px) {
  #header .logo {
    font-size: 1.8rem;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu ul li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 10px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 1.6rem;
  padding: 0 3px;
}

.nav-menu ul li a {
	text-decoration:none;
}
.nav-menu ul li a::after {
	content:"";
	width:100%;
	height:2px;
	display:block;
	background-color:#fff;
  transition: all 0.3s ease-in-out 0s;
	opacity:0;
}
.nav-menu ul li a:hover::after {
	opacity:1.0;
}

.nav-menu ul li.active02 a {
	text-decoration:none;
}
.nav-menu ul li.active02 a::after {
	content:"";
	width:100%;
	height:2px;
	display:block;
	background-color:#009e41;
  opacity:1.0;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0665b7;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  font-size: 1.6rem;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f6b024;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(112, 173, 71, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

@media (min-width: 992px) {
  main {
    min-height: 65rem;
  }
}

section {
  padding: 3rem 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 4.8rem;
  margin-bottom: 20px;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  background-color: #70ad47;
  color: #fff;
}

.section-title h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #70ad47;
  margin-bottom: 20px;
  border-left: 24px solid #4a6737;
  padding-left: 15px;
}

@media (max-width: 576px) {
  .section-title h2  {
    font-size: 3.6rem;
  }
  .section-title h3 {
    font-size: 2.4rem;
  }
}


/*--------------------------------------------------------------
# MV section
--------------------------------------------------------------*/

.mv {
  width: 100%;
  background-size: cover;
  margin-top: 9rem;
}

@media (max-width: 768px) {
  .mv .container .logo_area .area_title {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .mv .container .logo_area .area_title {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# fourbtn
--------------------------------------------------------------*/

.fourbtn {
  padding: 5rem 0 0;
}

.fourbtn .content a p {
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  background-color: #ad8447;
  color: #fff;
}

.fourbtn .content a:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Concept
--------------------------------------------------------------*/
.concept {
  padding: 0 0 5rem 0;
  position: relative;
}

.thead-green {
  background-color: #e2efda;
}

.table {
  font-size: 1.6rem;
}

.table th {
  text-align: center;
} 

.table ul {
  margin-left: -1em;
  margin-bottom: 0;
} 

.table ul li {
  font-size: 1.6rem;
  padding-left: -15px;
}

.table ul li span {
  font-size: 1.4rem;
} 

.concept dl dt,.concept dl dd {
  font-size: 1.6rem;
}

.concept dl dd {
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 10rem 0 3rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
}

.breadcrumbs ol li {
  font-size: 1.4rem;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #999;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #70ad47;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 1.4rem;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

