/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
  font-size: 16px;
  font-weight: 400;
}

/* PCサイズ */
@media screen and (min-width: 991px) {
  body {
    padding-left: 80px;
  }
}

/*スマホサイズ*/
@media screen and (max-width: 991px) {
  #sidebar{
display:none !important;
}
#sidebar2{
display:none !important;;
}

}



a {
  color: #2850a0;
  text-decoration: none;
}

a:hover {
  color: #93a7cf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2850a0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #93a7cf;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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 #2850a0;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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 {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 25px 0;
}

#header .logo a {
  color: #2850a0;
}

#header .logo img {
  width: 40vw;
  max-height: 50px;
}

@media (min-width: 993px) {
  /*　画面サイズが1366pxからはここを読み込む　*/
  #header .logo img {
    width: 25vw;
  }
}

@media (min-width: 1366px) {
  /*　画面サイズが1366pxからはここを読み込む　*/
  #header .logo img {
    width: 350px;
  }
}

/*--------------------------------------------------------------
# Header Links
--------------------------------------------------------------*/
.header-links {
  display: flex;
}

@media (max-width: 992px) {
  .header-links {
    display: none;
  }
}

.header-links a {
  color: #808080;
  background-color: #e6e6e6;
  display: inline-block;
  line-height: 1.2;
  transition: 0.3s;
  font-size: 0.8rem;
  text-align: center;
  margin-right: 0px;
  height: 100px;
  width: auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header-links a i {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  flex-wrap: wrap;
}

.header-links a:hover {
  color: #2850a0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
  height: 100px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar > ul {
  height: 100%;
}


.navbar li {
  position: static;
  vertical-align: middle;
  align-items: center;
  display: flex;
   height: 100%;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  transition: 0.3s;
}

@media (max-width: 1366px) {
  /*　画面サイズが1366px以下はここを読み込む　*/
  .navbar a,
  .navbar a:focus {
    font-size: 1.2vw;
  }
}

.navbar a i,
.navbar a:focus i {
  font-size: 1rem;
  line-height: 0;
  margin-left: 0.8rem;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #2850a0;
}
.navbar .dropdown h1 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  transition: 0.3s;
  margin: 0;
  margin-bottom: 0.5vw;
}
.navbar .dropdown > .dropdown-wrap {
  display: block;
  position: absolute;
  left: 0px;
  top: 100px;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #e6e6e6;
  transition: 0s;
  width: 100%;
  padding: 2vw 15vw 4vw;
}
.navbar .dropdown ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.navbar .dropdown ul li {
  border: 2px solid #656665;
  border-collapse: collapse;
  background-color: #fff;
  width: 100%;
  margin-top: 1vw;
}
.navbar .dropdown ul li.sub {
  border: 2px solid #656665;
  border-collapse: collapse;
  background-color: #e6e6e6;
  width: 100%;
  margin-top: -2px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: none;
  font-weight: 500;
  width: 100%;
  text-align: center;
  text-align: center;
  display: inline-block;
  white-space: break-spaces;
}
.navbar .dropdown ul li.sub a {
  padding: 5px 10px;
  font-size: 0.9rem;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #2850a0;
}

.navbar .dropdown:hover > .dropdown-wrap {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown .dropdown-wrap {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > .dropdown-wrap {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown .dropdown-wrap {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > .dropdown-wrap {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle + i {
  display: none;
}

.mobile-nav-toggle.bi-x {
  color: #2F3030;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

.mobile-nav-toggle + i {
      display: inline-block;
}

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
  overflow-y: scroll;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top:1.5rem;;
  right: 0;
  font-size: 3rem;;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top:0;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #006649;
  overflow-y: auto;
  transition: 0.3s;
  width:100%;
  color:#fff;
  border-radius: 0;
}
.navbar-mobile li {
  position: relative;
  padding: 0px;
  text-align: center;
  flex: 1;
}
.navbar-mobile a, .navbar-mobile a:focus {
  font-size: 15px;
  padding-right: 15px;
  padding:40px;
  font-size: 1.3rem;
  color: #fff;
  margin:0 20px;
  border-top: 1px dashed #fff;;
  justify-content: left;
}
.navbar-mobile > ul > li.nav-item::before{
  font-family: bootstrap-icons;
  content: '\F64D';
  padding: 0 0.2em;
  color: #fff;
  vertical-align: middle;
  right: 10%;
  position: absolute;
  top: 1.4rem;
  font-size: 2rem;;
}


/* .navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 15px;
  font-weight: 600;
  color: #2F3030;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  height: 90px;
  text-align: center;
} */


.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.navbar-mobile .dropdown ul li {
  min-width: 100%;
  padding: 0px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.navbar-mobile .megamenu {
  padding: 0;
  background-color: #006649;
  border-radius: 0;
  border: 0px;
}
.navbar-mobile h2 {
  display: none;
}
.navbar-mobile .megamenu ul li a {
  margin:0;
  hgeight:auto;
  padding: 30px 20px;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 20px;
  border-top: 1px dashed #fff;
  justify-content: left;
}
.navbar-mobile .megamenu ul {
  width: 90vw; 
}

.navbar-mobile a i, .navbar-mobile a:focus i {
  font-size: 2rem;
  line-height: 0;
  margin-left: 5px;
  display: block;
  width: 100%;
  padding-bottom: 0.4rem;
}
.navbar-mobile a, .navbar-mobile a:focus {
  font-size: 15px;
  padding-right: 15px;
  padding: 40px;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 20px;
  border-top: 1px dashed #fff;
  justify-content: left;
}
.navbar-mobile .header-links_sp{
  margin: 0 20px;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
}
.navbar-mobile .header-links_sp >* {
  padding:0;
}
.navbar-mobile .header-links_sp_wrap a{
  border-top: 0px dashed #fff;
}
.navbar-mobile .header-links_sp a{
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  background-color: #006649;
  display: inline-block;
  line-height: 1.2;
  transition: 0.3s;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  margin-right: 0px;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-top: 0px dashed #fff;
  margin: 20px 0 ;
  border-right:1px dashed #fff;
}
.navbar-mobile .header-links_sp > div:last-child a {
  border:0px;
}
.navbar-mobile .social_icons{
  margin: 20px 40px;
}

.navbar-mobile .social_icons a{
  margin-left: 0px;
  width: 100%;
  margin:0;
}
.navbar-mobile .social_icons i{
  background-color: #84C7A3;
  color: #006649;
  padding:10px;
  border-radius: 50%;
  width:auto;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 50vw;
  background: url("https://www.nins.jp/assets/topimg_v2.jpg") center;
  background-size: cover;
  position: relative;
  margin: 100px 0 0;
  height: 40vw;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.4); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero #float-box {
  position: absolute;
  margin-left: 0;
  display: block;
  z-index: 9;
  right: -500px;
  top: 2vw;
}

#hero #float-box .card {
  border-radius: 0px;
  border-top-left-radius: 10px;
  border: 1px solid #999;
  border-right: 0px;
  border-bottom-left-radius: 10px;
  width: 20vw;
  padding: 1vw;
  padding-left: 0;
  padding-right: 0;
}

#hero #float-box .card-body {
}

#hero #float-box .card .card-title {
  font-size: 1vw;
  color: #333;
}

#hero #float-box p {
  font-size: 1vw;
  color: #555;
}

#hero #float-box .card-header {
  font-size: 1.4vw;
}

#hero #float-box .btn {
  font-size: 1vw;
}

.fixed-top {
  box-shadow: 0 8px 5px -6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  #hero #float-box {
    display: none;
  }
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #2850a0;
  border: 2px solid #2850a0;
}

@media (min-width: 1024px) {
  #hero {
    
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f6fb;
}

.section-title {
  padding-bottom: 2rem;
}

.section-title p {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: #aaaaaa;
  margin-top: 0.5rem;
}

.section-title p::after {
  content: "";
  width: 5rem;
  height: 1px;
  display: inline-block;
  background: #2850a0;
  margin: 4px 10px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
}

.section-title h2 i {
  color: #2850a0;
  margin-right: 0.3rem;
}

.top-section-title {
  padding-bottom: 2rem;
}

.top-section-title h2 {
  position: relative;
  padding: 1rem 6rem 1rem 1rem;
  background: #000;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.3;
  z-index: -2;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.top-section-title h2::after {
  position: absolute;
  content: "";
  right: -3px;
  bottom: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 79px transparent;
  border-top: solid 79px white;
  z-index: -1;
}

.top-section-title p {
  margin: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #37423b;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.breadcrumbs {
  text-align: left;
  background: #f2f2f2;
  padding: 10px 0;
  color: #fff;
}

.breadcrumbs ol {
  margin-bottom: 0px;
}

.sub_header {
  margin-top: 100px;
  text-align: left;
  background: #2850a0;
  color: #fff;
  height: 13vw;
  padding-top: 5.5vw;
  background-image: url("../img/imgbar.jpg");
  background-size: cover;
}

.sub_header.about {
  background-image: url("../img/imgbar.jpg");
}

.sub_header.education {
  background-image: url("../img/imgbar4.jpg");
}

.sub_header.collabo {
  background-image: url("../img/imgbar5.jpg");
}

.sub_header.press {
  background-image: url("../img/imgbar2.jpg");
}

.sub_header.open {
  background-image: url("../img/imgbar3.jpg");
}

.sub_header.supply {
  background-image: url("../img/imgbar3.jpg");
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .sub_header {
    height: 22vw;
    padding-top: 9vw;
  }

  .breadcrumbs h2 {
    font-size: 2vw;
    font-weight: 500;
  }
}

.breadcrumb-item + .breadcrumb-item {
  color: #555;
}

/*--------------------------------------------------------------
# top_topics
--------------------------------------------------------------*/

#top_topics .left {
  background-color: #2850a0;
  padding: 30px 0;
  text-align: center;
  width: 140px;
}

#top_topics .left h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0;
}

#top_topics .right {
  background-color: #f2f2f2;
  width: 100%;
  align-items: center;
  display: flex;
  /*flexboxの指定*/
}

#top_topics .right ul {
  margin-bottom: 0;
}

#top_topics .right ul li {
  list-style: none;
}

#top_topics .right a {
  color: #1a1a1a;
  text-decoration: underline;
}


#page_right h5 {
  font-size: 1.4rem;
  border-bottom: 1px solid #999999;
  margin-top: 28px;
  padding-bottom: 20px;
  padding-left: 18px;
}

#page_right h5 {
  font-size: 1.4rem;
  border-bottom: 1px solid #999999;
  margin-top: 28px;
  padding-bottom: 20px;
  padding-left: 18px;
  margin-bottom: 0;
}

#page_right .list-group-item {
  padding: 20px;
  font-size: 0.9rem;
}

#page_right .list-group-item i {
  padding-right: 10px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #2850a0;
}

.about .content .learn-more-btn {
  background: #2850a0;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #2850a0;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #2850a0;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #2850a0;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  border: 1px solid #eef0ef;
}

.why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: #2850a0;
  margin-bottom: 30px;
  background: #ecf9f0;
  border-radius: 50px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# infrastructure
--------------------------------------------------------------*/
.infrastructure {
  padding-top: 0px;
}

.infrastructure .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
  flex-wrap: wrap;
  justify-content: space-around;
}

.infrastructure .icon-box .img_box {
}

.infrastructure .icon-box.naoj {
  color: #75738d;
}

.infrastructure .icon-box.nifs {
  color: #da7a40;
}

.infrastructure .icon-box.nibb {
  color: #51709b;
}

.infrastructure .icon-box.nips {
  color: #7a9d50;
}

.infrastructure .icon-box.ims {
  color: #368aa3;
}

.infrastructure .icon-box .img_box img {
  margin: 0 10%;
  width: 90%;
  height: 10vw;
  margin-bottom: 10%;
  object-fit: contain;
}

.infrastructure .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.infrastructure .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin-bottom: 0.3vw;
}

.infrastructure .icon-box span {
  width: 100%;
  text-align: center;
  text-decoration: underline;
}

.infrastructure .icon-box:hover {
  border-color: #2850a0;
}

.infrastructure a.icon-box {
  color: #333;
}

.infrastructure a.icon-box:hover {
  color: none;
}

/*--------------------------------------------------------------
# infrastructure2
--------------------------------------------------------------*/
.infrastructure2 {
  padding-top: 0px;
}

.infrastructure2 .row {
  align-items: stretch;
}

.infrastructure2 .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
  background-color: #f2f2f2;
  flex-wrap: wrap;
  justify-content: space-around;
  height: 100%;
  align-content: center;
  position: relative;
}

.infrastructure2 .icon-box .img_box {
  width: 100%;
  text-align: center;
}

.infrastructure2 .icon-box .img_box img {
  margin: 0 10%;
  width: 40%;
  height: 4vw;
  margin-bottom: 5%;
  object-fit: contain;
}

.infrastructure2 .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.infrastructure2 .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin-bottom: 0.3vw;
}

.infrastructure2 .icon-box span {
  width: 100%;
  text-align: center;
  line-height: 1.2;
  text-decoration: underline;
  color: #4d4d4d;
}

.infrastructure2 .icon-box:hover {
  border-color: #2850a0;
}

.infrastructure2 a.icon-box {
  color: #333;
}

.infrastructure2 a.icon-box:hover {
  color: none;
}

.infrastructure2 a.icon-box > i {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  font-size: 1.2rem;
  color: #777777;
}

/*--------------------------------------------------------------
# press
--------------------------------------------------------------*/
.press .press-item {
  border-radius: 5px;
  border: 1px solid #eef0ef;
  background-color: #fff;
  box-sizing: unset;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.press .press-item > i {
  position: absolute;
  font-size: 1.2rem;
  top: 0.2rem;
  right: 0.2rem;
  color: #777777;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  text-align: center;
  line-height: 1;
  padding: 0.7rem;
}

.press .press-item .img_cover img {
  width: 100%;
  height: 250px;
object-fit: cover;
}
.press .press-item .img_cover img.cat_img {
    width: 80%;
    margin:0 10%;
    height: 250px;
    object-fit: contain;
}

.press .press-item .img_cover img.logo {
  padding: 40px;
}

.press .press-content {
  padding: 1rem;
  margin-bottom: 3rem;
}

.press .press-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.press .press-content h3 a {
  color: #1a1a1a;
  transition: 0.3s;
}

.press .press-content h3 a:hover {
  color: #2850a0;
}

.press .press-content p {
  font-size: 0.9rem;
  color: #1a1a1a;
}

.press .press-content h4 {
  font-size: 0.8rem;
  background: #2850a0;
  padding: 7px 0.8rem;
  color: #fff;
  margin: 0;
}

.press .press-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.press .footer {
  padding: 1rem;
  border-top: 1px solid #eef0ef;
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.press .footer .footer-profile img {
  max-width: 4rem;
  max-height: 2rem;
}

.press .footer .footer-profile span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #999999;
}

.press .footer .footer-profile span i {
  font-weight: 400;
  font-size: 1.1rem;
  padding-right: 0.2rem;
}

.press .footer .footer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*--------------------------------------------------------------
# nins_news
--------------------------------------------------------------*/
.nins_news .nins_news-item {
  border-radius: 2px;
  border: 1px solid #999;
  background-color: #fff;
  box-sizing: unset;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.nins_news .nins_news-item > i {
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  font-size: 1.2rem;
  color: #777777;
}

.nins_news .nins_news-content {
  padding: 1rem;
  margin-bottom: 3rem;
}

.nins_news .nins_news-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.nins_news .nins_news-content h3 a {
  color: #1a1a1a;
  transition: 0.3s;
}

.nins_news .nins_news-content h3 a:hover {
  color: #2850a0;
}

.nins_news .nins_news-content p {
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 0;
  padding-right: 2rem;
}

.nins_news .nins_news-content h4 {
  font-size: 0.8rem;
  background: #2850a0;
  padding: 7px 0.8rem;
  color: #fff;
  margin: 0;
}

.nins_news .nins_news-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.nins_news .footer {
  padding: 1rem;
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.nins_news .footer .footer-profile img {
  max-width: 4rem;
  max-height: 2rem;
}

.nins_news .footer .footer-profile .category {
  font-size: 0.8rem;
  line-height: 1.1;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.nins_news .footer .footer-profile span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #999999;
}

.nins_news .footer .footer-profile span i {
  font-weight: 400;
  font-size: 1.1rem;
  padding-right: 0.2rem;
}

.nins_news .footer .footer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef0ef;
}

.trainers .member img {
  margin: -1px -1px 30px -1px;
}

.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.trainers .member .social {
  margin-top: 15px;
}

.trainers .member .social a {
  color: #7e9486;
  transition: 0.3s;
}

.trainers .member .social a:hover {
  color: #2850a0;
}

.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2850a0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2850a0;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #2850a0;
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f7f6fb;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}

.cource-details-tabs .nav-tabs {
  border: 0;
}

.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #37423b;
  border-radius: 0;
  border-right: 2px solid #e2e7e4;
  font-weight: 600;
  font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
  color: #2850a0;
}

.cource-details-tabs .nav-link.active {
  color: #2850a0;
  border-color: #2850a0;
}

.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #37423b;
}

.cource-details-tabs .details p {
  color: #777777;
}

.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #2850a0;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.events .card-text {
  color: #5e5e5e;
}

.events .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.events .read-more a:hover {
  color: #2850a0;
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: #2850a0;
}

.events .card:hover .card-body .card-title a {
  color: #2850a0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #eef0ef;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #2850a0;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 400;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #2850a0;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #2850a0;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3ac162;
}

.pricing .featured h3 {
  color: #fff;
  background: #2850a0;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #2850a0;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 5px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2850a0;
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #2850a0;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2850a0;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #2850a0;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3ac162;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 1rem;
  background: #cccccc;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #cccccc;
}

#footer .footer-top h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #999999;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding: 20px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links a{
  font-size: 0.9rem;
}



#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #999999;
  font-size: 1.5rem;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links .accordion-collapse {
  padding: 0.5rem 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul li a {
  color: #1a1a1a;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  position:relative;
  padding-left:1rem;
}
#footer .footer-top .footer-links ul li a:before {
  content: '\F285' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 1rem;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color:#999999;
  left: 0;
}
#footer .footer-top .footer-links ul li a.accordion-button:before {
  content: '\F4FE' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 1rem;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color:#999999;
  left: 0;
}

#footer .footer-top .footer-links ul li.sub a {
  color: #1a1a1a;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  position:relative;
  padding-left:2rem;
}
#footer .footer-top .footer-links ul li.sub a:before {
  content: '\F285' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 0.8rem;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color:#999999;
  left: 0;
  padding-left:1rem;
}

#footer .footer-top .footer-links ul li a:hover {
  text-decoration: none;
  color: #797979;
}

#footer .footer-newsletter {
  font-size: 1rem;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2850a0;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3ac162;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  color: #3ac162;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #2850a0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2850a0;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3ac162;
  color: #fff;
  text-decoration: none;
}
.col-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.red {
  background-color: red;
}

.blue {
  background-color: blue;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}

.col-15 {
  width: 20%;
  flex: 0 0 20%;
}

/*お知らせ一覧*/
.news-items a {
  text-decoration: none;
  color: #333;
}

.news-items {
  width: 100%;
  margin: 0 auto;
}

.news-item {
  display: flex;
  padding: 20px 0 12px;
}

.news-head {
  display: flex;
  width: auto;
}

.news-date {
  width: 10rem;
  padding-top: 3px;
}

.news-date i {
  padding-right: 10px;
}

.news-label {
  display: block;
  width: auto;
  height: 2rem;
  line-height: 2rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  border-radius: 0px;
  background-color: #777;
  padding: 0 1rem;
  white-space: nowrap;
}

.news-title {
  width: calc(100% - 200px);
  padding-left: 30px;
  padding-top: 3px;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .news-item {
    display: block;
  }

  .news-title {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 10px;
  }
}

#sidebar {
  position: fixed;
  top: 100px;
  left: 0px;
  width: 50px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: all 0.3s;
  background-color: #13294c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0;
}
#sidebar .sidemenu {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: inherit;
  align-content: center;
}
#sidebar .sidemenu > i {
  font-size: 2rem;
}
#sidebar .sidemenu > span {
  font-size: 0.5rem;
  margin-top: -0.5rem;
  display: block;
}
#sidebar2 {
  position: fixed;
  top: 100px;
  left: 50px;
  width: 30px;
  height: 100%;
  background: #fff;
  z-index: 5;
  transition: all 0.3s;
  background-color: #2a4d93;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0;
}
#sidebar2 > i {
  font-size: 1.5rem;
}
#sidebar2 > span {
  font-size: 0.8rem;
}


#sidebar .sidemenu > .sidemenu-wrap {
  position: fixed;
  top: 100px;
  left: 50px;
  width: 250px;
  height: calc(100% - 100px);
  background: #fff;
  transition: all 0.3s;
  justify-content: center;
  align-items: top;
  color: #fff;
  opacity:0;
  display: none;
}

#sidebar .submenu .submenu-wrap .list-group-item {
  font-size: 0.9rem;
  padding: 0.5rem 0rem 0.5rem 1.2rem;
  text-align: left;
} 

#sidebar .submenu .submenu-wrap{
  position: fixed;
  display: flex;
  top: 100px;
  left: 300px;
  width: 250px;
  height: calc(100% - 100px);
  background: #fff;
  z-index: 1;
  transition: all 0.3s;
  justify-content: center;
  align-items: top;
  color: #fff;
  opacity:0;
  display: none;
}

#sidebar .sub2menu .sub2menu-wrap{
  position: fixed;
  display: flex;
  top: 100px;
  left: 550px;
  width: 250px;
  height: calc(100% - 100px);
  background: #fff;
  z-index: 1;
  transition: all 0.3s;
  justify-content: center;
  align-items: top;
  color: #fff;
  border-right:2px solid #989998;
  opacity:0;
  display: none;
}
#sidebar .sub2menu:after {
  content: '\F64D' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

#sidebar .list-group {
  width:100%;
  font-weight:600;
}
#sidebar .list-group-item {
    position: relative;
    display: block;
    padding: 0.8rem 1.6rem;
    border-right:2px solid #989998;
} 
#sidebar .sub2menu .sub2menu-wrap .list-group-item {
    border-right:0px;
} 
.menu-footer{
  width: 100%;
  padding-top:5rem;
  border-right: 2px solid #989998;
  flex-grow: 1; 
}
.menu-footer .content{
  width: 100%;
  border-top: 1px dashed #989998;
  margin: 0 1rem;
}
#sidebar .menu-footer .list-group{
  margin-top:0.5rem;
}
#sidebar .menu-footer .list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 0rem;
    border-right:0px solid #989998;
    text-align: left;
    font-size: 0.8rem;
} 
#sidebar .menu-footer .list-group-item i{
    padding-right: 0.5rem;
} 

#sidebar .sidemenu .list-group-item-action:focus, 
#sidebar .sidemenu .list-group-item-action:hover {
    z-index: 1;
    color: #fff;
    text-decoration: none;
    background-color: #13294c;
    cursor: pointer;
}

#sidebar .sidemenu:hover > .sidemenu-wrap {
  display: flex;
  opacity:1;
visibility: visible;
}

#sidebar .submenu:hover > .submenu-wrap {
  display: flex;
  opacity:1;
visibility: visible;
}

#sidebar .sub2menu:hover > .sub2menu-wrap {
  display: flex;
  opacity:1;
visibility: visible;
}















#sidebar2 .menu-header{
  width: 100%;
  padding-top:2rem;
  border-right: 2px solid #989998;
}

#sidebar2 .sidemenu h3{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  width: 90%;
  text-align: center;
  background-color: #000;
  color:#fff;
}

#sidebar2 .sidemenu {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: inherit;
  align-content: center;
}

#sidebar2 .sidemenu > .sidemenu-wrap {
  position: fixed;
  top: 100px;
  left: 80px;
  width: 250px;
  height: calc(100% - 100px);
  background: #2A4D93;
  transition: all 0.3s;
  justify-content: center;
  align-items: top;
  color: #fff;
  display: flex;
  opacity:0;
  display: none;
  overflow-y: scroll;
  scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
  -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/
}

#sidebar2 .sidemenu > .sidemenu-wrap::-webkit-scrollbar{
  display: none;
}


#sidebar2 .submenu .submenu-wrap{
  position: fixed;
  display: flex;
  top: 100px;
  left: 330px;
  width: 250px;
  padding-left:1rem;
  height: calc(100% - 100px);
  background: #2A4D93;
  z-index: 1;
  transition: all 0.3s;
  justify-content: center;
  align-items: top;
  color: #fff;
  border-right:2px solid #989998;
  opacity:0;
  display: none;
  padding-top:2rem;
}

#sidebar2 .list-group {
  width:100%;
  font-weight:600;
}
#sidebar2 .list-group-item {
  position: relative;
  display: block;
  padding: 0.3rem 2.5rem 0.3rem 1rem;
  border-right:2px solid #989998;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  background: #2A4D93;
  color:#fff;
  border-bottom: 0px;
} 
#sidebar2 .list-group-item:before {
  content: '\F285' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 0.8rem;
  position: absolute;
  color:#ccc;
  left: 0;
  
}
#sidebar2 .list-group-item.haschild:after {
    content: '\F64D' ;
    font-family: bootstrap-icons;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    right: 1rem;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
#sidebar2 .list-group-item i{
  padding-right: 0.2rem;
  font-weight: 600;
} 
#sidebar2 .list-group-item:hover{
  /*グラデーション*/
  background-color: #2A4D93;
  background-image: linear-gradient(90deg, rgba(42, 77, 147, 1), rgba(19, 41, 76, 1));
} 

#sidebar2 .submenu .submenu-wrap .list-group-item {
    border-right:0px;
    font-size: 0.8rem;
    padding: 0.5rem 0rem 0.5rem 1.2rem;
} 
#sidebar2 .submenu .submenu-wrap .list-group-item:before {
  font-size: 0.8rem;
}
#sidebar2 .menu-footer{
  width: 100%;
  padding-top:5rem;
  border-right: 2px solid #989998;
  flex-grow: 1; 
}
#sidebar2 .menu-footer .content{
  width: 100%;
  border-top: 0px dashed #989998;
  margin: 0 1rem;
}
#sidebar2 .menu-footer .list-group{
  margin-top:0.5rem;
}
#sidebar2 .menu-footer .list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 0rem;
    border-right:0px solid #989998;
    text-align: left;
    font-size: 0.8rem;
    background: #2A4D93;
} 
#sidebar2 .menu-footer .list-group-item i{
    padding-right: 0.5rem;
} 

#sidebar2 .sidemenu .list-group-item-action:focus, 
#sidebar2 .sidemenu .list-group-item-action:hover {
    z-index: 1;
    color: #fff;
    text-decoration: none;
    background-color: #13294c;
    cursor: pointer;
}

#sidebar2 .sidemenu:hover > .sidemenu-wrap {
  display: flex;
  opacity:1;
}

#sidebar2 .submenu:hover > .submenu-wrap {
  display: flex;
  opacity:1;
}


/* page_body */

#page_body h2 {
  background: -moz-linear-gradient(
    0% 50% 0deg,
    rgba(40, 80, 160, 1) 0%,
    rgba(40, 80, 160, 1) 43.33%,
    rgba(255, 255, 255, 1) 99.94%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(40, 80, 160, 1) 0%,
    rgba(40, 80, 160, 1) 43.33%,
    rgba(255, 255, 255, 1) 99.94%
  );
  background: -webkit-gradient(
    linear,
    0% 50%,
    100% 50%,
    color-stop(0, rgba(40, 80, 160, 1)),
    color-stop(0.4333, rgba(40, 80, 160, 1)),
    color-stop(0.9994, rgba(255, 255, 255, 1))
  );
  background: -o-linear-gradient(
    0deg,
    rgba(40, 80, 160, 1) 0%,
    rgba(40, 80, 160, 1) 43.33%,
    rgba(255, 255, 255, 1) 99.94%
  );
  background: -ms-linear-gradient(
    0deg,
    rgba(40, 80, 160, 1) 0%,
    rgba(40, 80, 160, 1) 43.33%,
    rgba(255, 255, 255, 1) 99.94%
  );
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#2850A0', endColorstr='#FFFFFF' ,GradientType=0)";
  background: linear-gradient(
    90deg,
    rgba(40, 80, 160, 1) 0%,
    rgba(40, 80, 160, 1) 43.33%,
    rgba(255, 255, 255, 1) 99.94%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2850A0', endColorstr='#FFFFFF', GradientType=1);
  font-size: 28px;
  line-height: 25px;
  color: #f2f2f2;
  color: rgb(242, 242, 242);
  margin-left: -30px;
  padding: 25px 30px;
  font-weight: 400;
}

#page_body h2::before {
  content: "　";
  width: 400px;
  position: absolute;
  left: 0px;
  top: 0;
  font-size: 28px;
  line-height: 25px;
  margin: 0 -425px;
  padding: 25px 0;
  background-color: rgba(40, 80, 160, 1);
}

#page_body .page_contents {
  padding: 50px 0;
}

#page_body tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: inset;
    border-width: inherit;
}
#page_body .page_contents h3 {
  font-size: 1.4rem;
  color: #2850a0;
  margin-bottom: 2rem;
  background-image: url("../img/h3_line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1.2;
  padding-left: 2rem;
  vertical-align: middle;
  background-size: 1.4rem;
}

#page_body .page_contents h4 {
  font-size: 1.4rem;
  color: #000000;
  border-left: 0.5rem solid #b3b3b3;
  padding-left: 0.7rem;
  line-height: 1.4;
}

#page_body .page_contents p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

#page_body h2::before {
  content: "　";
  width: 400px;
  position: absolute;
  left: 0px;
  top: 0;
  font-size: 28px;
  line-height: 25px;
  margin: 0 -425px;
  padding: 25px 0;
  background-color: rgba(40, 80, 160, 1);
}

#page_body h2::before {
  content: "　";
  width: 400px;
  position: absolute;
  left: 0px;
  top: 0;
  font-size: 28px;
  line-height: 25px;
  margin: 0 -425px;
  padding: 25px 0;
  background-color: rgba(40, 80, 160, 1);
}

#page_body a[href$=".pdf"]:before,
#page_body a[href$=".PDF"]:before{
	content: '\F63D';
	display: inline-block;
  font-family: bootstrap-icons;
	vertical-align: middle;
  font-size: 1.2rem;
  padding-bottom: 0.1rem;
  padding-right: 0.3rem;
  color: #EB1309;
}
#page_body a[href$=".xls"]:before,
#page_body a[href$=".XLS"]:before,
#page_body a[href$=".xlsx"]:before,
#page_body a[href$=".XLSX"]:before{
	content: '\F388';
	display: inline-block;
  font-family: bootstrap-icons;
	vertical-align: middle;
  font-size: 1.2rem;
  padding-bottom: 0.1rem;
  padding-right: 0.3rem;
  color: #106B37;
}

#page_body a[href$=".doc"]:before,
#page_body a[href$=".DOC"]:before,
#page_body a[href$=".docx"]:before,
#page_body a[href$=".DOCX"]:before{
	content: '\F3BA';
	display: inline-block;
  font-family: bootstrap-icons;
	vertical-align: middle;
  font-size: 1.2rem;
  padding-bottom: 0.1rem;
  padding-right: 0.3rem;
  color: #2B5797;
}
#page_body img{
    max-width: 100%;
    height: auto;
}

#page_body .page_contents table td p{
        margin-bottom: 0rem;
}
#page_body .page_contents table td{
        padding: 1rem;
}

/* #sidebar .sub2menu:after {
  content: '\F64D' ;
  font-family: bootstrap-icons;
  font-weight: 600;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
} */







/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar2 {
  padding: 0;
}
.navbar2 ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  width: 60vw;
  display:none;
}
.navbar2 li {
  position: relative;
  padding: 0px 0 0px 28px; 
  text-align: center;
  flex: 1;
}
.navbar2 a, .navbar2 a:focus {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 15px;
  font-weight: 600;
  color: #2F3030;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  height: 4rem;
  text-align: center;
}
.navbar2 a i, .navbar2 a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar2 > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 0;
    background-color: #1B9B64;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar2 > ul > li:nth-of-type(2) > a:before {
    background-color: #70309B;
  }
  .navbar2 > ul > li:nth-of-type(3) > a:before {
    background-color: #186DB5;
  }
  .navbar2 > ul > li:nth-of-type(4) > a:before {
    background-color: #E00780;
  }
  .navbar2 > ul > li:nth-of-type(5) > a:before {
    background-color: #D9DF00;
  }
  .navbar2 > ul > li:nth-of-type(6) > a:before {
    background-color: #F97E2B;
  }

  .navbar2 a:hover:before, .navbar2 li:hover > a:before, .navbar2 .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar2 a:hover, .navbar2 .active, .navbar2 .active:focus, .navbar2 li:hover > a {
    color: #222222;
  }

}
.navbar2{
  position: static;
  z-index: 15;
}

.navbar2 .megamenu{ 
  padding: 1rem; 
  background-color: rgba(0,0,0,0.75);
  border-radius: 0;
  border: 0px;
}
.navbar2 .megamenu h2{ 
  text-align: center;
  color:#fff;
  margin: 1rem 0 2rem;
  font-size:1.8rem;
  letter-spacing: 0.18rem;
}
.navbar2 .megamenu ul{
  display: flex;
  list-style: none;
  align-items: flex-start;
  width: 80vw;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.accordion-button-uz::after {
  font-family: bootstrap-icons;
  content: '\F285';
  padding: 0 0.2em;
  color: #2F3030;
  vertical-align: middle;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  transition: transform .2s ease-in-out;
}
.accordion-button-uz:not(.collapsed) {
  background-color: rgba(255,255,255,0.15);
}
.accordion-button-uz:not(.collapsed)::after {
  transform: rotate(270deg);
}

.navbar2 .megamenu ul li a{ 
  color:#fff;
  border-top: 1px dashed #fff;
  text-align: left;
  justify-content:flex-start;
  padding-left:10px;
  height: 50px;
  letter-spacing: 0.1rem;
  font-size: 14px;
}
.navbar2 .megamenu ul li a:last-of-type{ 
  border-bottom: 1px dashed #2F3030;
}
.navbar2 .megamenu ul li a:hover{ 
  opacity: 0.5;
}
.dropdown-toggle::after {
  display: none;
}
/* .navbar2 .megamenu ul li a.vectol::after {
  font-family: bootstrap-icons;
  content: '\F285';
  padding: 0 0.2em;
  color: #fff;
  vertical-align: middle;
  right: 0;
  position: absolute;
} */
.navbar2 .megamenu ul li a.blank::after {
  font-family: bootstrap-icons;
  content: '\F6D2';
  padding: 0 0.2em;
  color: #2F3030;
  vertical-align: middle;
  right: 0;
  position: absolute;
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar2 .has-megamenu{position:static!important;}
  .navbar2 .megamenu{left:0; width:100vw; margin-top:0;}
  
  .dropdown:hover>.dropdown-menu {
    display: block;
  }
  .sp_logo{
    display: none;
  }
  .header-links_sp_wrap{
    display: none;
  }

}	
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar2.fixed-top .navbar2-collapse, .navbar2.sticky-top .navbar2-collapse{
    overflow-y: auto;
    max-height: 90vh;
    margin-top:10px;
    width:100%;
  }
  .dropdown>.dropdown-menu {
    position: relative;
    z-index: 0;
  }
  .navbar2-mobile .dropdown ul {
    position: static;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: none;
  }
  .sp_logo{
    display: block;
    width: 45%;
    margin: 2rem auto;
  }
  .header-links_sp_wrap{
    display: block;
  }
}


@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 9999;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: block;
}
.navbar-mobile::-webkit-scrollbar{
  display:none;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top:1.5rem;;
  font-size: 3rem;;
  z-index: 999;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #e6e6e6;
  overflow-y: auto;
  transition: 0.3s;
  width:100%;
  color:#fff;
  border-radius: 0;
  margin: 0 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navbar-mobile ul::-webkit-scrollbar{
  display:none;
}
.navbar-mobile li {
  position: relative;
  padding: 0px;
  text-align: center;
  flex: 1;
}
.navbar-mobile a, .navbar-mobile a:focus {
  font-size: 15px;
  padding-right: 15px;
  padding:40px;
  font-size: 1.3rem;
  color: #fff;
  margin:0 20px;
  border-top: 1px dashed #fff;;
  justify-content: left;
}
.navbar-mobile > ul > li.nav-item::before{
  font-family: bootstrap-icons;
  content: '\F64D';
  padding: 0 0.2em;
  color: #2F3030;
  vertical-align: middle;
  right: 10%;
  position: absolute;
  top: 0.6rem;
  font-size: 2rem;;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2F3030;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.navbar-mobile .dropdown ul li {
  min-width: 100%;
  padding: 0px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.navbar-mobile .megamenu {
  padding: 0;
  background-color: #e6e6e6;
  border-radius: 0;
  border: 0px;
}
.navbar-mobile h2 {
  display: none;
}
.navbar-mobile .megamenu ul li a {
width: 90%;
    padding: 30px 20px;
    font-size: 1rem;
    color: #2F3030;
    margin: 0 5%;
    border-top: 1px dashed #2F3030;
    justify-content: left;
}
.navbar-mobile .megamenu ul li .accordion-collapse a{
  padding-left: 2rem;
}



.navbar-mobile .megamenu ul {
  width: 90vw; 
}

.navbar-mobile a i, .navbar-mobile a:focus i {
  font-size: 2rem;
  line-height: 0;
  margin-left: 5px;
  display: block;
  width: 100%;
  padding-bottom: 0.4rem;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 2rem;
  font-size: 1.1rem;
  color: #2F3030;
  margin: 0 20px;
  border-top: 1px dashed #2F3030;
  justify-content: left;
}
.navbar-mobile .header-links_sp{
  margin: 0 20px;
  border-top: 1px dashed #2F3030;
  border-bottom: 1px dashed #2F3030;
}
.navbar-mobile .header-links_sp >* {
  padding:0;
}
.navbar-mobile .header-links_sp_wrap a{
  border-top: 0px dashed #2F3030;
}
.navbar-mobile .header-links_sp a{
  display: flex;
  flex-wrap: wrap;
  color: #2F3030;
  background-color: #e6e6e6;
  display: inline-block;
  line-height: 1.2;
  transition: 0.3s;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  margin-right: 0px;
  padding: 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-top: 0px dashed #2F3030;
  margin: 20px 0 ;
  border-right:1px dashed #2F3030;
}
.navbar-mobile .header-links_sp > div:last-child a {
  border:0px;
}
.navbar-mobile .social_icons{
  margin: 20px 40px;
}

.navbar-mobile .social_icons a{
  margin-left: 0px;
  width: 100%;
  margin:0;
}
.navbar-mobile .social_icons i{
  background-color: #84C7A3;
  color: #e6e6e6;
  padding:10px;
  border-radius: 50%;
  width:auto;
}





#search-wrap{
  position:fixed;
top: 0;
  left: 0;
z-index: -1;
opacity: 0;
transition: all 0.4s;
width:100%;
height: 100vh;
}

#search-wrap.panelactive{
opacity: 1;
 z-index: 10;
 background:#fff;
 display: flex;
 justify-content: center;
 align-items: center;
}

#search-wrap .search-area{
display: none;
}
#search-wrap.panelactive .search-area{
display: block;
width:80%;
position: relative;
}
#search-wrap form{
position: relative;
height: 66px;
}
#search-wrap input{
-webkit-appearance:none;
outline: none;
cursor: pointer;
color: #333;
}
#search-wrap input[type="text"] {
width: 100%;
padding: 20px;
border: none;
border-bottom:2px solid #666;
transition: all 0.5s;
letter-spacing: 0.05em;
}
#search-wrap input[type="text"]:focus {
background:#eee;
}
#search-wrap input[type="submit"] {
position: absolute;
top:0;
right:10px;
background:url("../img/search.svg") no-repeat 15px center;
background-size: 25px 25px;
width:60px;
height: 60px;
border: 0px;
}
.close-btn{
position: absolute;
top:90px;
right:10px;
z-index: 2;
cursor: pointer;
width: 60px;
height:60px;
}
.close-btn span{
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #000;
}
.close-btn span:nth-of-type(1) {
  top: 21px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}
.close-btn span:nth-of-type(2){
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}


.mt-be-column{
width:50%;
}
