@charset "UTF-8";
/* INDEX STYLE LIST ------------------------------------------------------

 01. HEADER

 02. VISUAL

 03. NEWS

 04. ABOUT

 05. GUIDELINE

 06. MEMBERS

-------------------------------------------------------------------- */
/* 01. HEADER
-------------------------------------------------------------------- */
/* ヘッダー　 */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background-color: #FFF;
  min-height: 0;
}
.site_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.site_logo {
  background: #FFF;
  padding: 150px 50px;
}
.hide {
  transform: translateY(-100%); /* 上に消えるようにする */
}
#scrollArea {
  background-color: #FFF;
  position: fixed; /* 固定して表示されるようにする */
  top: 0; /* 表示場所を一番上に */
  transition: .5s; /* スクロール時に一瞬で消えると物足りないので.hideの処理を0.5秒で行う */
  z-index: 10; /* 前面に表示されるようにする */
}
@media (max-width: 1024px) {
  .site_logo {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
    width: 100px;
  }
}
@media (max-width: 767px) {
  .site_logo {
    background: #FFF;
    padding: 8px 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
    width: 70%;
    max-width: 300px;
  }
}
.top_pc {
  display: block;
}
@media (max-width: 767px) {
  .top_pc {
    display: none;
  }
}
.top_sp {
  display: none;
}
@media (max-width: 767px) {
  .top_sp {
    display: block;
  }
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background: rgba(30, 161, 50, 0.9);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 34px;
  height: 2px;
  left: 22px;
  background: #FFF;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 30px;
}
.hamburger span:nth-child(2) {
  top: 40px;
}
.hamburger span:nth-child(3) {
  top: 50px;
}
/* ナビ開いてる時のボタン */
.hamburger.active {
  display: block;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background: rgba(30, 161, 50, 0.9);
}
.hamburger.active span:nth-child(1) {
  top: 33px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.hamburger.active span:nth-child(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.hamburger.active span:nth-child(3) {
  top: 43px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
nav.globalMenu {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  max-width: 750px;
}
nav.globalMenu ul {
  box-sizing: border-box;
  background: #f7f7ff;
  margin: 120px auto 0;
  padding: 2rem;
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
nav.globalMenu ul li {
  list-style-type: none;
  padding: 1rem 2rem;
  width: 44%;
}
nav.globalMenu ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenu ul li:hover {
  background: #FFF;
}
nav.globalMenu ul li a {
  display: block;
  color: #000;
  padding: 0.5rem 0;
  text-decoration: none;
  text-align: left;
}
nav.globalMenu ul li a span {
  color: #1ea132;
  font-size: 1.4rem;
  letter-spacing: 2px;
  display: block;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenu.active {
  transform: translateY(0%);
}
@media (max-width: 1024px) {
  nav.globalMenu {
  width: 100%;
  max-width: 500px;
  }
  nav.globalMenu ul {
  box-sizing: border-box;
  background: #f7f7ff;
  margin: 120px auto 0;
  padding: 1rem;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  }
  nav.globalMenu ul li {
  list-style-type: none;
  padding: 0.5rem 1rem;
  width: 42%;
  }
}
@media (max-width: 767px) {
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    text-align: center;
    background: rgba(30, 161, 50, 0.9);
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 34px;
    height: 2px;
    left: 22px;
    background: #FFF;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 30px;
  }
  .hamburger span:nth-child(2) {
    top: 40px;
  }
  .hamburger span:nth-child(3) {
    top: 50px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background: rgba(30, 161, 50, 0.9);
  }
  .hamburger.active span:nth-child(1) {
    top: 25px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .hamburger.active span:nth-child(3) {
    top: 35px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
  nav.globalMenu {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    max-width: 750px;
  }
  nav.globalMenu ul {
    box-sizing: border-box;
    background: #f7f7ff;
    margin: 80px auto 0;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  nav.globalMenu ul li {
    list-style-type: none;
    padding: 0;
    width: 44%;
  }
  nav.globalMenu ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenu ul li:hover {
    background: #FFF;
  }
  nav.globalMenu ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    text-decoration: none;
    text-align: left;
  }
  nav.globalMenu ul li a span {
    color: #1ea132;
    font-size: 1.4rem;
    letter-spacing: 2px;
    display: block;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenu.active {
    transform: translateY(0%);
  }
}
/* 02. VISUAL
-------------------------------------------------------------------- */
.visual {}
.visual_inner {
  position: relative;
  z-index: -5;
}
.visual_copy {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
/*
.visual_copy_main {
  font-size: 10rem;
  line-height: 1.2;
  letter-spacing: 2rem;
}
*/
.visual_slider li {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}
@media (max-width: 1024px) {
  .visual_copy {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 55%;
  }
  .visual_copy_main {
    font-size: 8rem;
  }
}
@media (max-width: 767px) {
  .visual {
    margin-top: 80px;
  }
  .visual_slider li {
    /*min-height: 94vh;*/
    min-height: 50vh;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
  }
  .visual_copy {
    width: 70%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 480px) {}
/* 03. NEWS
-------------------------------------------------------------------- */
.news_inner {
  position: relative;
  background: #FFF;
  width: 100%;
}
.news_inner_left {
  width: 34%;
  max-width: 340px;
}
.news_ttl {
  color: #000;
  display: block;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 38px;
}
.green_ttl {
  color: #1ea132;
}
.news_ttl .jp_ttl {
  display: block;
  font-size: 2rem;
  font-weight: normal;
  width: 8.4rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #1ea132;
  letter-spacing: 1px;
  text-shadow: none;
}
.news_inner_right {
  background-color: #FFF;
  width: 60%;
  position: absolute;
  top: -9rem;
  left: 40%;
}
.news_inner_right #newsList {
  background-color: #ececec;
}
.news_inner_right li {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: #ececec;
  color: #000000;
  margin: 0;
  padding: 24px;
}
.news_inner_right li:first-child {
  background-color: #1ea132;
  color: #ffffff;
  margin: 0;
  height: 90px;
}
.news_inner_right .up_ymd {
  width: 16%;
  max-width: 100px;
  border-right: 1px solid #000000;
  padding-right: 1rem;
  margin-right: 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
}
.news_inner_right li:first-child .up_ymd {
  border-right: 1px solid #ffffff;
}
.news_inner_right li .title {
  color: #000000;
  display: inline-block;
  width: 84%;
}
.news_inner_right li .title a {
  text-decoration: underline;
  color: #000000;
}
.news_inner_right li .title a:hover {
  text-decoration: none;
  color: #000000;
}
.news_inner_right li:first-child .title a {
  color: #ffffff;
}
.news_inner_right li:first-child .title a:hover {
  color: #ffffff;
}
#top .btn_more_wrap {
  position: relative;
}
#top .btn_more {
  max-width: 168px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .news_inner_right {
    background-color: #FFF;
    width: 70%;
    position: absolute;
    top: -9rem;
    left: 30%;
  }
  .news_inner_right li {
    margin: 0;
    padding: 20px;
  }
  .news_inner_right #newsList li:first-child {
    margin: 0;
    height: auto;
  }
  .news_inner_right .up_ymd {
    width: 20%;
    max-width: 100px;
  }
  .news_inner_right li:first-child .up_ymd {
    border-right: 1px solid #ffffff;
  }
  .news_inner_right li .title {
    color: #000000;
    display: inline-block;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .news_inner_right {
    background-color: #FFF;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .news_inner_right ul {
    margin-bottom: 85px;
  }
  .news_inner_right li {
    padding: 20px;
    margin: 0;
  }
  .news_inner_right .up_ymd {
    width: 30%;
    max-width: 90px;
    border-right: 1px solid #000000;
    padding-right: 1rem;
    margin-right: 1.6rem;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
  }
  .news_inner_right li .title {
    color: #000000;
    display: inline-block;
    width: 70%;
    max-width: 480px;
  }
  .news_inner_right li .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
    
  .news_inner_left {
    width: 100%;
    max-width: 750px;
    margin-top: 116%;
    position: relative;
    text-align: center;
  }
    
  .news_ttl {
    color: #000;
    display: block;
    font-size: 3rem;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin-bottom: 26px;
  }
  .news_ttl .jp_ttl {
    display: block;
    font-size: 1.8rem;
    font-weight: normal;
    width: 23%;
    margin: 0 auto 0
  }
  #top .btn_more {
    margin: 5% auto 0;
  }
  
  @media (max-width: 480px) {
      .news_ttl .jp_ttl {
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    width: 23%;
    margin: 0 auto 0
  }
    
  }
}
/* 04. ABOUT
-------------------------------------------------------------------- */
main {
  position: relative;
  overflow: hidden;
}
.main_inner_right {
  box-sizing: border-box;
  background-color: #f1f1f1;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 320px;
  left: 40%;
  z-index: -100;
}
.about {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #FFF url("../img/index/bg_about@2x.jpg") no-repeat center center;
  background-size: cover;
  margin-bottom: 100px;
}
.white_ttl {
  color: #FFF;
  display: block;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-align: center;
  margin: 0 auto 10px;
  text-shadow: 0 0 20px #000;
}
.white_ttl .green_ttl {
  color: #35ea51;
}
.white_ttl .jp_ttl {
  display: block;
  font-size: 2rem;
  font-weight: normal;
  width: 15rem;
  text-align: center;
  margin: 0 auto 10px;
  text-shadow: 0 0 20px #000;
  letter-spacing: 1px;
}
.about p {
  color: #FFF;
  font-size: 18px;
  text-shadow: 0 0 20px #000;
}
@media (max-width: 1024px) {}
@media (max-width: 767px) {
  .main_inner_right {
    box-sizing: border-box;
    background-color: #f1f1f1;
    width: 80%;
    height: 100%;
    position: absolute;
    top: 320px;
    left: 20%;
    z-index: -100;
  }
  .white_ttl {
    font-size: 3rem;
    margin: 0 auto 26px;
  }
  .white_ttl .jp_ttl {
    font-size: 1.8rem;
  }
  .about {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #FFF url("../img/index/bg_about_sp@2x.jpg") no-repeat center center;
    background-size: cover;
    margin-bottom: 50px;
  }
  .about p {
    font-size: 14px;
    line-height: 1.4;
  }
  .btn_more {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {}
/* 05. GUIDELINE
-------------------------------------------------------------------- */
.guideline {
  width: 100%;
  max-width: 1280px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.img_guideline {
  width: 60%;
  max-width: 736px;
}
.guideline_inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.guideline .title_area {
  box-sizing: border-box;
  background-color: #ffffff;
  margin-top: -38%;
  float: right;
  padding: 60px 80px;
  width: 60%;
  max-width: 574px;
}
.guideline_ttl {
  color: #000;
  display: block;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 38px;
}
.guideline_ttl .jp_ttl {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  width: 48rem;
  padding-bottom: 6px;
  letter-spacing: -1px;
  text-shadow: none;
}
.guideline_ttl .jp_ttl::before {
  content: '';
  position: absolute;
  left: 9%;
  bottom: -5px;
  display: inline-block;
  width: 8rem;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #1ea132;
  border-radius: 2px;
}
@media (min-width: 1025px) {
  .img_guideline {
    width: 60%;
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .guideline_ttl .jp_ttl {
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .guideline {
    background-color: #ffffff;
  }
  .img_guideline {
    width: 100%;
  }
  .guideline_inner {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }
  .guideline .title_area {
    box-sizing: border-box;
    background-color: #ffffff;
    margin-top: 50px;
    float: none;
    padding: 0;
    width: 100%;
    max-width: 750px;
  }
  .guideline_ttl {
    font-size: 3rem;
    margin-bottom: 26px;
  }
  .guideline_ttl .jp_ttl {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    padding-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: none;
  }
  .guideline_ttl .jp_ttl::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    display: inline-block;
    width: 18%;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #1ea132;
    border-radius: 2px;
  }
}

@media (max-width: 480px) {
  .guideline_ttl .jp_ttl {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    padding-bottom: 3px;
    letter-spacing: 1px;
    text-shadow: none;
  }
}
/* 06. MEMBERS
-------------------------------------------------------------------- */
.members {
  width: 100%;
  max-width: 1280px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.members:after, .members:before {
  content: "";
  clear: both;
  display: block;
}
.img_members {
  width: 60%;
  max-width: 736px;
  float: right;
}
.members_inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.members .title_area {
  box-sizing: border-box;
  background-color: #ffffff;
  margin-top: 10%;
  padding: 60px 80px;
  width: 60%;
  max-width: 574px;
}
.members_ttl {
  color: #000;
  display: block;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 38px;
}
.members_ttl .jp_ttl {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  width: 48rem;
  padding-bottom: 6px;
  letter-spacing: 1px;
  text-shadow: none;
}
.members_ttl .jp_ttl::before {
  content: '';
  position: absolute;
  left: 9%;
  bottom: -5px;
  display: inline-block;
  width: 8rem;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #1ea132;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .members {
    background-color: #ffffff;
  }
  .img_members {
    width: 100%;
    float: none;
  }
  .members_inner {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }
  .members .title_area {
    box-sizing: border-box;
    background-color: #ffffff;
    margin-top: 50px;
    padding: 0;
    width: 100%;
    max-width: 750px;
  }
  .members_ttl {
    font-size: 3rem;
    margin-bottom: 26px;
  }
  .members_ttl .jp_ttl {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    padding-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: none;
  }
  .members_ttl .jp_ttl::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    display: inline-block;
    width: 18%;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #1ea132;
    border-radius: 2px;
  }
}

@media (max-width: 480px) {
  .members_ttl .jp_ttl {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    padding-bottom: 3px;
    letter-spacing: 1px;
    text-shadow: none;
  }  
}