/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #2F3030;
  font-family: 'Noto Sans JP', sans-serif;
  /* font-family: 'Noto Serif JP', serif; */
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  color: #95BEF4;
  text-decoration: none;
}

#main {
  margin-top: 50px;
}
@media (max-width: 992px) {
  #main {
    margin-top: 30px;
  }
}

.swiper_wrap{
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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 #1B9B64;
  border-top-color: #dcf5f2;
  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);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #006649;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #1B9B64;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  z-index: 997;
  height:90px;
  box-shadow: rgb(0 0 0 / 5%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #2F3030;
}
#header .logo img {
  max-height: 40px;
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
  #header > .d-flex {
    height:90px;
  }

}

/*--------------------------------------------------------------
# Header Links
--------------------------------------------------------------*/
.header-links {
  display: flex;
}
@media (max-width: 992px) {
  .header-links {
    display: none;
  }
}
.header-links a {
  color: #fff;
  background-color: #006649;
  display: inline-block;
  line-height: 1.2;
  transition: 0.3s;
  font-size: 9px;
  text-align: center;
  margin-right:0px;
  margin-left:2px;
  height:90px;
  width:66px;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.header-links a i{
  width:100%;
  display: block;
  font-size: 20px;
  line-height: 1;
  flex-wrap: wrap;
}
.header-links a:hover {
  color: #1B9B64;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  width: 60vw;
}
.navbar li {
  position: relative;
  padding: 0px 0 0px 28px; 
  text-align: center;
  flex: 1;
}
.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 a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar > 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;
  }
  .navbar > ul > li:nth-of-type(2) > a:before {
    background-color: #70309B;
  }
  .navbar > ul > li:nth-of-type(3) > a:before {
    background-color: #186DB5;
  }
  .navbar > ul > li:nth-of-type(4) > a:before {
    background-color: #E00780;
  }
  .navbar > ul > li:nth-of-type(5) > a:before {
    background-color: #D9DF00;
  }
  .navbar > ul > li:nth-of-type(6) > a:before {
    background-color: #F97E2B;
  }

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

}


.screen-darken{
  content: ''; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
  pointer-events: none;
  z-index:10; opacity:1; 
  visibility:visible;
  position: fixed;
}
.navbar{
  position: static;
  z-index: 15;
}

.navbar .megamenu{ 
  padding: 1rem; 
  background-color: rgba(0,0,0,0.75);
  border-radius: 0;
  border: 0px;
}
.navbar .megamenu h2{ 
  text-align: center;
  color:#fff;
  margin: 1rem 0 2rem;
  font-size:1.8rem;
  letter-spacing: 0.18rem;
}
.navbar .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: #fff;
  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);
}

.navbar .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;
}
.navbar .megamenu ul li a:last-of-type{ 
  border-bottom: 1px dashed #fff;
}
.navbar .megamenu ul li a:hover{ 
  opacity: 0.5;
}
.dropdown-toggle::after {
  display: none;
}
/* .navbar .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;
} */
.navbar .megamenu ul li a.blank::after {
  font-family: bootstrap-icons;
  content: '\F6D2';
  padding: 0 0.2em;
  color: #fff;
  vertical-align: middle;
  right: 0;
  position: absolute;
}


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

  .navbar .has-megamenu{position:static!important;}
  .navbar .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){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
    max-height: 90vh;
    margin-top:10px;
    width:100%;
  }
  .dropdown>.dropdown-menu {
    position: relative;
  }
  .navbar-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;
  }
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-right: 20px;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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: 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: 600px;
  /* background: url("../img/top/main.jpg") top center; */
  background-size: cover;
  padding: 90px 0;
}
#hero .container {
  padding-top: 70px;
  position: relative;
}
@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
}
#hero h2 {
  color: #6f6f6f;
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero .btn-about {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #1B9B64;
}
#hero .btn-about:hover {
  background: #5F827B;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    width:80%;
    text-align: center;
  }
  #hero h1 img{
    width:100%;
  }
  
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}



#hero_sub {
  width: 100%;
  height: 300px;
  margin-top:90px;
  background-size: cover;
  padding:0;
  position: relative;
}
#hero_sub.research {
  background: url("../img/research/research_head.png") top center;
  background-size: cover;
}
#hero_sub.about {
  background: url("../img/about/about_head.png") top center;
  background-size: cover;
}
#hero_sub.collabo {
  background: url("../img/collabo/collabo_head.jpg") top center;
  background-size: cover;
}
#hero_sub.graduate {
  background: none;
  background-size: cover;
  height:326px;
}
#hero_sub.graduate #graduate_head{
  background: url("../img/graduate/graduate_head.jpg") top center;
  background-size: cover;
  height:326px;
  margin-top: 100px;
  position: relative;
  border-radius: 1vw;
}
@media (min-width: 1300px){
  #graduate_head {
      max-width: 1500px;
  }
}
#hero_sub.graduate .container .row{
  height:100%;
}
#hero_sub.graduate .container .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
}
#hero_sub.graduate .container .right_text{
  font-size: 1.1rem;
  line-height: 1.8;
}



#hero_sub.public_r {
  background: url("../img/public_r/public_r_head.jpg") top center;
  background-size: cover;
  color:#2F3030;
  height: auto;
}
#hero_sub.public_r h1 {
  color: #2F3030;
}
#hero_sub.public_r h2 {
  color: #2F3030;
}
#hero_sub.public_r .title{
  padding-top: 80px;
  padding-bottom: 60px;
}
#hero_sub.news {
  background: url("../img/news/news_head.jpg") top center;
  background-size: cover;
}

#hero_sub .container {
  position: static;
}
@media (max-width: 992px) {
  #hero_sub .container {
    padding-top: 58px;
  }
}
#hero_sub h1 {
  margin: 0;
  font-size: 48px;
  letter-spacing: 0.1rem;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#hero_sub h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 20px;
  border-top: 4px solid #70309E;
  padding:0.5rem 3rem;
}
#hero_sub.research h2 {
  border-top: 4px solid #70309E;
}
#hero_sub.about h2 {
  border-top: 4px solid #17564A;
}
#hero_sub.collabo h2 {
  border-top: 4px solid #186DB8;
}
#hero_sub.public_r h2 {
  border-top: 4px solid #E00780;
}
#hero_sub.graduate h2 {
  border-top: 4px solid #D9DF00;
}
#hero_sub.news h2 {
  border-top: 4px solid #FC9200;
}
@media (min-width: 1024px) {
  #hero_sub {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero_sub:before {
    content: "";
    
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #hero_sub h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero_sub h2 {
    font-size: 18px;
    line-height: 24px;
  }
}


.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top:1rem;
  left:1rem;
  font-size: 0.8rem;
}
.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}
.breadcrumb li:after {/* ▶を表示*/
  font-family: bootstrap-icons;
  content: '\F234';
  padding: 0 0.2em;
  color: #fff;
  vertical-align: middle;
}

.breadcrumb li:last-child:after {
  content: '';
  vertical-align: middle;
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
}
#hero_sub.graduate .breadcrumb li a {
  color: #2F3030;
}
#hero_sub.public_r .breadcrumb li a {
  color: #2F3030;
}
#hero_sub.graduate .breadcrumb li:after,
#hero_sub.public_r .breadcrumb li:after {
  color: #2F3030;

}

.breadcrumb li:first-child:before {
  /*家アイコン*/
  font-family: bootstrap-icons;
  content: '\F422';
  font-weight: normal;
  font-size: 1rem;
  color: #fff;
  vertical-align: middle;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}




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

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

.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color:#006649;
  letter-spacing: 0.1rem;
}

.section-title h2::after {
  /* content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1B9B64;
  bottom: 0;
  left: calc(50% - 25px); */
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sections pickup
--------------------------------------------------------------*/
section#pickup {
  padding: 50px 0 90px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -2px;
}
#pickup{
  background: linear-gradient(90deg, #EEEBEB, #D4DCE5);
  position: relative;
  overflow: hidden;
}
#pickup_bg{
  position: absolute;;
  top:0;
  left:0;
}
#pickup .swiper-button-prev,
#pickup .swiper-button-next {
 position: absolute;
 top: 50%;
 width: calc(var(--swiper-navigation-size) / 44 * 27);
 height: var(--swiper-navigation-size);
 margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
 z-index: 10;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--swiper-navigation-color, var(--swiper-theme-color));
 width: 70px; /* ボタンの幅 */
 height: 70px; /* ボタンの高さ */
 background-size: 70px 70px; /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
 margin-top: -24px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
/* 次ページボタンのスタイル */
#pickup .swiper-button-next {
 background-image: url(../img/top/vectol_right.jpg);
 right: -100px;
}
/* 前ページボタンのスタイル */
#pickup .swiper-button-prev {
 background-image: url(../img/top/vectol_left.jpg);
 left: -100px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}



/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
#news_top .nav-pills .nav-link {
  color: #006649;
  background-color: #EAEAEA;
  height:60px;
  border-radius: 0;
}
#news_top .nav-pills .nav-link.active {
  color: #fff;
}
#news_top .nav-pills .all .nav-link{
  border-bottom:3px solid #006649;
}
#news_top .nav-pills .news .nav-link{
  border-bottom:3px solid #41A9A4;
}
#news_top .nav-pills .press .nav-link{
  border-bottom:3px solid #3490D1;
}
#news_top .nav-pills .event .nav-link{
  border-bottom:3px solid #899DD8;
}
#news_top .nav-pills .research .nav-link{
  border-bottom:3px solid #B38AD6;
}
#news_top .nav-pills .all .nav-link.active, .nav-pills .all .show>.nav-link {
  background-color: #006649;
}
#news_top .nav-pills .news .nav-link.active, .nav-pills .news .show>.nav-link {
  background-color: #41A9A4;
}
#news_top .nav-pills .press .nav-link.active, .nav-pills .press .show>.nav-link {
  background-color: #3490D1;
}
#news_top .nav-pills .event .nav-link.active, .nav-pills .event .show>.nav-link {
  background-color: #899DD8;
}
#news_top .nav-pills .research .nav-link.active, .nav-pills .research .show>.nav-link {
  background-color: #B38AD6;
}


#news_top table.news_list{
  margin:20px;
}
#news_top .headline_block:hover {
  opacity: 0.7;
}
#news_top .headline_block th{
  color: #006649;
}
#news_top .headline_block th,td{
  padding:20px;
  vertical-align: baseline;
}
#news_top .headline_block a{
  color:#2F3030;
}
#news_top .headline_block .category{
  vertical-align: top;
}

#news_top .headline_block .category{
  text-align: center;
}
#news_top .headline_block .category span{
  display: block;
  width:8rem;
  padding:2px 0;
  font-size: 0.8rem;
  color:#fff;
}
#nav-tabContent{
  margin-bottom: 60px;;
}
#news_top #nav-tabContent{
  overflow-y: scroll;
  height: 400px;
}

@media screen and (max-width: 640px) {
  tr.headline_block {
    display: block;
    width: 100%;
}
  .headline_block td:last-child {
    border-bottom: solid 1px #ccc;
    display: block;
    float:left;
    clear:both;
    padding-top:0;
    width: 100%;
  }
  #news_top .nav-item {
    width:33.3333%;
  }
}

.uz_btn {
  display: inline-block;
  width: 280px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.uz_btn::before,
.uz_btn::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.uz_btn,
.uz_btn::before,
.uz_btn::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.border_btn {
  position: relative;
  z-index: 2;
  border: 2px solid #006649;
  color: #006649;
  line-height: 50px;
  overflow: hidden;
}
.border_btn:hover {
  color: #fff;
}
.border_btn::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.border_btn:hover::after {
  background: #006649;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.border_title{
  position: relative;
  z-index: 2;
  border: 2px solid #006649;
  color: #006649;
  padding:10px 50px;
  overflow: hidden;
  font-size:1.6rem;
  border-radius: 9px;
}


/*--------------------------------------------------------------
# big_banner
--------------------------------------------------------------*/
#big_banner .pickup_content-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -2px;
}
#big_banner .pickup_content-wrap.left {
  margin-right:1px;
}
#big_banner .pickup_content-wrap.right {
  margin-left:1px;
}
#big_banner .pickup_content-wrap::before {
  content: "";
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 1;
}
#big_banner .pickup_content-wrap img {
  transition: all ease-in-out 0.3s;
}
#big_banner .pickup_content-wrap .pickup_content-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
}
#big_banner .pickup_content-wrap .pickup_content-info h4 {
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 3px solid #fff;
  position: absolute;
  top:30%;
  left:0;
  right:0;
  display: inline-table;
}
#big_banner .pickup_content-wrap .pickup_content-info p {
  color: #fff;
  font-size: 17px;
  line-height: 2;;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
  width: 60%;
  position: absolute;
  top:60%;
  left:0;
  right:0;
  margin: 0 auto;
}
#big_banner .pickup_content-wrap .pickup_content-links{
  position: absolute;
  bottom:20px;
  right:20px;
}
#big_banner .pickup_content-wrap .pickup_content-links img {
  color: #fff;
  margin: 0 0px 0 0;
  width: 30px;
  display: inline-block;
  transition: 0.3s;
}
#big_banner .pickup_content-wrap::before {
  opacity: 1;
}
#big_banner .pickup_content-wrap:hover img {
  transform: scale(1.1);
}
#big_banner .pickup_content-wrap .pickup_content-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# research_top
--------------------------------------------------------------*/
#research_top{
  background: rgb(238,235,235);
  background: linear-gradient(90deg, rgba(238,235,235,1) 0%, rgba(212,220,229,1) 100%);
  overflow: hidden;
}
#research_top .content-wrap {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  margin: 0px 20px 60px 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
#research_top .content-wrap .inner-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}
#research_top .content-wrap img {
  transition: all ease-in-out 0.3s;
}
#research_top .content-wrap .pickup_content-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
}
#research_top .content-wrap h4 {
  font-size: 1.5rem;
  letter-spacing: 0rem;
  margin: 0 auto;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  padding:10px 20px;
  width: auto;
  top:40%;
  left:-20px;
  display: inline-table;
  background-color: #B38AD6;
  z-index: 99;
}
#research_top .content-wrap .content_border{
  position: absolute;
  right:10%;
  top:0;
  bottom:0;
  width: 30%;
  display: flex;
}
#research_top .content-wrap .content_border img {
  color: #fff;
  margin: 0 0px 0 0;
  width: 100%;
  display: inline-block;
  transition: 0.3s;
  align-items: center;
}
#research_top .content-wrap .content_border_wrap{
  width:92%;
  height:94%;
  margin:3% 4%;
  position: relative;
  border: 3px solid #fff;
}
#research_top .content-wrap::before {
  opacity: 1;
}
#research_top .content-wrap:hover img {
  transform: scale(1.05);
}
#research_top .content-wrap .pickup_content-info {
  opacity: 1;
}

.researcher_slide{
  margin:40px 0;
}

#research_top .researcher_slide-button-prev,
#research_top .researcher_slide-button-next {
 position: absolute;
 top: 50%;
 width: calc(var(--swiper-navigation-size) / 44 * 27);
 height: var(--swiper-navigation-size);
 margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
 z-index: 10;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--swiper-navigation-color, var(--swiper-theme-color));
 width: 24px; /* ボタンの幅 */
 height: 24px; /* ボタンの高さ */
 background-size: 24px 24px; /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
 margin-top: -50px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
 padding:50px 30px;
 background-repeat: no-repeat;
 background-position: center;
}
/* 次ページボタンのスタイル */
#research_top .researcher_slide-button-next {
  background-image: url(../img/top/gray_vectol.svg);
  right: -100px;
  transform: scale(-1, 1);
 }
 /* 前ページボタンのスタイル */
#research_top .researcher_slide-button-prev {
  background-image: url(../img/top/gray_vectol.svg);
  left: -100px;
 }
.bumon_card{
	padding:15px 15px 15px 20px;
  background-color: #fff;
  border-left:5px solid #006649;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.bumon_card.cat{
  border-left:5px solid #006649;
}
.bumon_card.prof{
  border-left:5px solid #006649;
}
.bumon_card.prof{
  border-left:5px solid #006649;
}
.bumon_card.prof{
  border-left:5px solid #006649;
}

.bumon_card a{
	position: relative;
}
.bumon_card .name{
	color:#000;
  font-weight: 600;
	font-size:1.2rem;
}
.bumon_card .pos{
	color:#777;
  font-weight: 300;
	font-size:0.8rem;
}
.bumon_card .p_img{
	width:70px;
  position: absolute;
  right: 5%;
  bottom:0;
  padding: 0
}
.bumon_card .p_info{
	margin-right: 20px;
  margin-bottom: 10px;
}
.bumon_card .bumon_text{
  color: #006649;
  margin-bottom: 10px;
  letter-spacing: 0.02rem;
  font-size: 0.95rem;
}



/*--------------------------------------------------------------
# pickup_content
--------------------------------------------------------------*/
.pickup_content .pickup_content-item {
  margin-bottom: 30px;
}
.pickup_content #pickup_content-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.pickup_content #pickup_content-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.pickup_content #pickup_content-flters li:hover, .pickup_content #pickup_content-flters li.filter-active {
  color: #fff;
  background: #1B9B64;
}
.pickup_content #pickup_content-flters li:last-child {
  margin-right: 0;
}
.pickup_content .pickup_content-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.8);
}
.pickup_content .pickup_content-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.9);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.pickup_content .pickup_content-wrap img {
  transition: all ease-in-out 0.3s;
}
.pickup_content .pickup_content-wrap .pickup_content-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
}
.pickup_content .pickup_content-wrap .pickup_content-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.pickup_content .pickup_content-wrap .pickup_content-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.pickup_content .pickup_content-wrap .pickup_content-links {
  text-align: center;
  z-index: 4;
}
.pickup_content .pickup_content-wrap .pickup_content-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.pickup_content .pickup_content-wrap .pickup_content-links a:hover {
  color: #78d9cd;
}
.pickup_content .pickup_content-wrap:hover::before {
  opacity: 1;
}
.pickup_content .pickup_content-wrap:hover img {
  transform: scale(1.2);
}
.pickup_content .pickup_content-wrap:hover .pickup_content-info {
  opacity: 1;
}




/*--------------------------------------------------------------
# contents_menu
--------------------------------------------------------------*/
#contents_menu{
  background-image: url(../img/top/contents_menu_bg.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
  box-shadow: rgb(0 0 0 / 20%) 0px 10px 15px -3px, rgb(0 0 0 / 10%) 0px 4px 6px -2px;
}
#contents_menu_bg{
  background-attachment: fixed;
  position: absolute;
  background-image: url(../img/top/contents_menu_bg_line.svg);
  top:0;
  left:0;
  width:100%;
  height:100%;
}

#contents_menu .contents_menu_slider-button-prev,
#contents_menu .contents_menu_slider-button-next {
 position: absolute;
 top: 50%;
 width: calc(var(--swiper-navigation-size) / 44 * 27);
 height: var(--swiper-navigation-size);
 margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
 z-index: 10;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--swiper-navigation-color, var(--swiper-theme-color));
 width: 24px; /* ボタンの幅 */
 height: 24px; /* ボタンの高さ */
 background-size: 24px 24px; /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
 margin-top: -50px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
 padding:50px 30px;
 background-repeat: no-repeat;
 background-position: center;
}
/* 次ページボタンのスタイル */
#contents_menu .contents_menu_slider-button-next {
  background-image: url(../img/top/links_vectol_right.svg);
  right: -100px;
 }
 /* 前ページボタンのスタイル */
 #contents_menu .contents_menu_slider-button-prev {
  background-image: url(../img/top/links_vectol_left.svg);
  left: -100px;
 }

.other_content .other_content-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
  border-radius: 50%;
}
.other_content .other_content-wrap h4.pos-abs{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: normal;
  padding: 20px;
  text-align: center;
}


.other_content .other_content-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.9);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.other_content .other_content-wrap img {
  transition: all ease-in-out 0.3s;
}
.other_content .other_content-wrap .other_content-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
}
.other_content .other_content-wrap .other_content-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.other_content .other_content-wrap .other_content-info p {
  color: #FFFFFF;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.other_content .other_content-wrap .other_content-links {
  text-align: center;
  z-index: 4;
}
.other_content .other_content-wrap .other_content-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.other_content .other_content-wrap .other_content-links a:hover {
  color: #78d9cd;
}
.other_content .other_content-wrap:hover::before {
  opacity: 1;
}
.other_content .other_content-wrap:hover img {
  transform: scale(1.1);
}
.other_content .other_content-wrap:hover .other_content-info {
  opacity: 1;
}


#links_top{
  background: rgb(238,235,235);
  background: linear-gradient(90deg, rgba(238,235,235,1) 0%, rgba(212,220,229,1) 100%);
}

#links_top .row > *{
  padding-right: calc(var(--bs-gutter-x) * .8);
  padding-left: calc(var(--bs-gutter-x) * .8);
  padding-bottom: 35px;
  position: relative;
}

#links_top .links_items{
  width:100%;
  box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
  display: block;
  position: relative;
  transition: all ease-in-out 0.3s;
}
#links_top .links_items:hover{
  opacity: 0.7;
}
#links_top .links_items img{
  width:100%;
}
#links_top i{
  position: absolute;
  top: 5px;
  right: 10px;
  color: #C4C4C4;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer{
  background-color: #006649;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}
footer h5{
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  font-size: 1.1rem;
}
footer a{
  transition: all ease-in-out 0.3s;
}
footer a:hover{
  opacity: 0.7;
}
footer ul li a{
  font-size: 0.8rem;
}

footer li{
  margin: 0.5rem;
  font-weight: 300;
}
footer .copyright{
  font-size: 0.6rem;
}

#footer_bot{
  text-align: center;
  background-color: #11473D;
  color:#fff;
  font-size: 0.7rem;
  padding:0.5rem 0;
}
#footer{
  background-color: #006649;
}
#footer{
  background-image: url(./assets/img/top/noukun.svg);
  background-repeat: no-repeat;
  background-position: 90% bottom;
  background-size: 15%;
}
#footer > .container > .row{
  margin-right: -30px;
  margin-left: -30px;
}
#footer > .container > .row>*{
  padding-right: 30px;
  padding-left: 30px;
  margin-bottom: 40px;
}
#footer .head{
  text-align: center;
}
#footer .footer_logo{
  width:20%;
  margin: 50px auto;
}
#footer .links{
  color:#fff;
}
#footer .links h3{
  font-size: 1.2rem;
  border-bottom:1px solid #fff;
  width:100%;
  padding-bottom: 0.5rem;;
  display: flex;
  align-items: center;
}
#footer .links h3 a{
  color:#fff;
}
#footer .links h3 span{
  padding-left:0.3rem;;
  font-size: 0.9rem;
  color:#fff;
}
#footer .links ul{
  padding-left: 0rem;
}
#footer .links ul li {
  list-style: none;
  margin: 0.5rem;
}
#footer .links ul li a{
  font-size: 0.9rem;
  color:#fff;
}
#footer .links .social_icons a{
  margin-left: 0px;
  width: 100%;
  margin:0;
}
#footer .links .social_icons i{
  color: #fff;
  width:auto;
  font-size: 25px;;
  margin-right: 20px;;
}
#footer .address_wrap{
  margin-top: 2rem;
}
#footer .address_wrap .subtitle{
  font-size: 0.8rem;
}
#footer .address_wrap .title{
  font-size:1.5rem;
  margin-bottom: 0.8rem;
}
#footer .address_wrap .address1{
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
#footer .address_wrap .address2{
  font-size: 0.8rem;
}
#footer .btn_wrap {
  display: flex;
  margin-top:2rem;
  justify-content: flex-start;
}

#footer a.btn.outline{
  background-color: none;
  border: 2px solid #fff;
  color:#fff;
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  padding: 0.5rem 4rem;
  color: #fff;
}

@media screen and (max-width:992px) {/*992px*/

  #footer .footer_logo{
    width:50%;
    margin: 50px auto;
  }
  #footer{
    background-image: url(./assets/img/top/noukun.svg);
    background-repeat: no-repeat;
    background-position: 90% bottom;
    background-size: 30%;
  }

}
@media screen and (max-width:1300px) {/*992px*/
  .navbar li {
    padding: 0px 0 0px 10px;
  }
  .navbar a, .navbar a:focus {
      font-size: 13px;
  }
  .nav-link {
      padding: 0.5rem 0.5rem;
  }
}

@media screen and (max-width:992px) {/*992px*/
  
  .navbar li {
    padding: 0px 0 0px 0px;
  }
  .navbar a, .navbar a:focus {
      font-size: 1.5rem;
  }
  .nav-link {
      padding: 0rem;
  }
}












/*--------------------------------------------------------------
# c_top_menu
--------------------------------------------------------------*/
#c_top_menu .pickup_content-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -2px;
}
#c_top_menu .pickup_content-wrap::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 1;
}
#c_top_menu .pickup_content-wrap img {
  transition: all ease-in-out 0.3s;
}
#c_top_menu .pickup_content-wrap .pickup_content-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
}
#c_top_menu .pickup_content-wrap .pickup_content-info .text_wrap {
  position: absolute;
  padding:0 40px 10px 40px;
  top:40%;
  left:0;
  right:0;
  display: block;
  text-align: center;
}
#c_top_menu .pickup_content-wrap .pickup_content-info h4 {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  padding:0 0px 10px 0px;
  width: 60%;
  margin: 0 auto;
}
#c_top_menu .pickup_content-wrap .pickup_content-info ul {
  color: #fff;
  font-size: 0.9rem;
  line-height: 2;;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  width: 60%;
  top: 55%;
  left:0;
  right:0;
  margin: 0 auto;
  text-align: left;
  padding-top: 10px;
}
#c_top_menu .pickup_content-wrap .pickup_content-info ul li{
  list-style: none;
}
#c_top_menu .pickup_content-wrap .pickup_content-info ul li a{
  color:#fff;
  transition: 0.3s;
}
#c_top_menu .pickup_content-wrap .pickup_content-info ul li a:hover{
  opacity: 1;
  font-size:1.1rem;
}
#c_top_menu .pickup_content-wrap .pickup_content-info ul li a i{
  padding-left:10px;
}
#c_top_menu .pickup_content-wrap .pickup_content-links{
  position: absolute;
  bottom:20px;
  right:20px;
}
#c_top_menu .pickup_content-wrap .pickup_content-links img {
  color: #fff;
  margin: 0 0px 0 0;
  width: 30px;
  display: inline-block;
  transition: 0.3s;
}
#c_top_menu .pickup_content-wrap::before {
  opacity: 1;
}
#c_top_menu .pickup_content-wrap:hover img {
  transform: scale(1.1);
}
#c_top_menu .pickup_content-wrap .pickup_content-info {
  opacity: 1;
}






/*==検索窓背景のエリア*/

#search-wrap{
    position:fixed;/*固定配置にして*/
	top: 0;
    left: 0;
	z-index: -1;/*最背面に設定*/
	opacity: 0;/*透過を0に*/
	transition: all 0.4s;/*transitionを使ってスムースに現れる*/
	width:100%;
	height: 100vh;
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive{
	opacity: 1;/*不透明に変更*/
	 z-index: 3;/*全面に出現*/
	 background:#333;
    /*中の要素を天地中央揃えにする設定*/
	 display: flex;
	 justify-content: center;
	 align-items: center;
}

/*==検索窓のエリア*/

#search-wrap .search-area{
	display: none;/*検索窓のエリアは、はじめ非表示*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive .search-area{
	display: block;/*検索窓エリアを表示*/
	width:80%;
	position: relative;
}

/*==検索フォームの設定*/

#search-wrap form{
	position: relative;
	height: 66px;
}

/*==テキスト入力とボタンinput共通設定*/
#search-wrap input{
	-webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
	outline: none;
	cursor: pointer;/*カーソルを指マークに*/
	color: #fff;
}

/*テキスト入力input設定*/
 #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:#444;
}

/*ボタンinput設定*/
 #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: #fff;
 }

/*×マーク*/
.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%;
}






























/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-1.jpg") fixed center center;
  background-size: cover;
  padding: 80px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #1B9B64;
  border: 2px solid #1B9B64;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #555555;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #1B9B64;
}
.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #222222;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #f3f3f3;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #1B9B64;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: #1B9B64;
}
.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c8efea;
  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: 0 auto 15px auto;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.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 #1B9B64;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1B9B64;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #222222;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1B9B64;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #1d685f;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #effbf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1B9B64;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1B9B64;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #1B9B64;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #78d9cd;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1B9B64;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1B9B64;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #1B9B64;
  float: left;
  width: 44px;
  height: 44px;
  background: #effbf9;
  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: #222222;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555555;
}
.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: #1B9B64;
  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: center;
  padding: 15px;
  font-weight: 600;
}
.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: #1B9B64;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #1B9B64;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5F827B;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



@media screen and (max-width: 800px){
  /* swiperが動いてないとき */
  #pickup.noSwiper .swiper-wrapper {
    position: relative;
    width: 96%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
  #pickup.noSwiper .swiper-slide {
    flex-shrink: 0;
    width: 48%;
    height: 100%;
	margin-bottom: 4%;
    position: relative;
    transition-property: transform;
}
  #pickup.noSwiper .swiper-slide:last-child{
    margin-right: 0;
  }

  /* swiperが動いているとき */
  #swiper-outer.hasSwiper .swiper-slide{
    width: 320px;
  }
}
