@charset "UTF-8";

html{
	font-size:62.5%;
}
body{
  color:#436952;
  font-size:1.5rem;
  font-family: 'EB Garamond' , 'Noto Serif JP', serif;
  font-feature-settings: "Palt";
  letter-spacing: 0.05em;
  line-height: 1.9;
  box-sizing: border-box;
  display: none;
}
a{
  color:#436952;
  text-decoration: none;
  cursor: pointer;
  transition: .4s;
}
li{
  list-style: none;
}
img{
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* ページトップ */
#pageTop-wrap{
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid #436952;
  border-radius: 40px;
  background: url(../img/page_top.png) center no-repeat;
  background-color: #fff;
  bottom: 3vw;
  right: 3vw;
  cursor: pointer;
  transition: .4s;
  z-index: 180;
}
#pageTop-wrap:hover{
  cursor: pointer;
  transform: translateY(-5px);
  transition: .4s;
}

/*上に上がる動き*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*下に下がる動き*/
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*---------------------------
more_line　ホバー　下線
-----------------------------*/
.more_line:hover , .pride_link:hover{
  cursor: pointer;
  transform: translateY(-3px);
  transition: .4s;
}
.more_line.UpMove , .pride_link.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.more_line.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}


@media screen and (min-width: 0px) and (max-width: 750px){
  .only_wide{
    display: none;
  }
  .only_sp{
    display: block;
  }
  .only_pc{
    display: none;
  }
  body{
    font-size:1.4rem;
  }
  /* フェードイン */
.fadein{
	opacity : 0;
	visibility: hidden;
	transition: 1.3s;
	transform: translateY(80px);
}
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
  
  
  #pageTop-wrap{
    bottom: 7vw;
    right: 7vw;
  }
  /* -----------------------------
  nav
  --------------------------------*/
  .header{
    height: 70px;
  }
  .nav_wrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  .nav_logo{
    width: 40%;
  }
  #nav_list{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
  }
  .nav_list{
    display: inline-block;
    margin: 25vw 0 0 15vw;
  }
  .nav_item{
    line-height: normal;
    padding-bottom: 10vw;
    font-size: 1.6rem;
  }
  .nav_item:last-of-type{
    padding-bottom: 0;
    padding-top: 5vw;
  }
  .nav_btn{
    display: inline-block;
  }
  .nav_a{
    line-height: 2;
    position: relative;
  }
  .nav_check::after{
    display: none;
  }
  .nav_check a{
    padding-bottom: 1.5vw;
  }
  .nav_check .nav_a::after{
    position: absolute;
    display: block;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #436952;
    transform-origin: center top;
    transform:inherit;
  }
  .nav_a:hover::after {
    transform: scale(0, 0);
  }
  #menu_bar{
    position: fixed;
    right: calc(5%);
    top:10px;
    width: 50px;
    height: 50px;
    z-index: 510;
    cursor: pointer;
  }
  
  /*ボタン内側*/
  .openbtn span{
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    background-color: #436952;
    transition: all .4s;
    }
  .openbtn span:nth-of-type(1) {
    top:18px;
    left:5px;	
  }
  .openbtn span:nth-of-type(2) {
    top:28px;
    left: 5px;
  }
  .openbtn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
    z-index: 510;
  }
  .openbtn.active span:nth-of-type(2) {
    transform: translateY(-6px) rotate(45deg);
    z-index: 510;
  }
  .header {
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 199;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #ededed;
}
  .hero_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 70px;
    margin-bottom: 6vw;
}
  .header_text {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
    top: inherit;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 4vw;
    background-color: #fff;
    opacity: .8;
  }
  .header_text h1 {
    font-size: 3rem;
    padding-bottom:2vw;
    line-height:normal;
    color: #436952;
    font-weight: bold;
}
  .header_text h1 span {
    display: inline-block;
    border-bottom: 1px solid #436952;
    padding-left: 2vw;
  }
  .header_text h1 span:first-of-type{
    padding-left: 0;
  }
  .header_text p{
    font-size: 1.5rem;
  }
  .slide img{
    width: 100%;
    margin: 0;
  }
  .scrolldown1 {
    position: absolute;
    left: 50%;
    height: 50px;
    margin-top: 8vw;
}
.scrolldown1 span {
    position: absolute;
    left: -19px;
    top: -30px;
    color: #436952;
    letter-spacing: 0.05em;
}
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 50px;
  background: #436952;
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}
  /* -----------------------------
  about
  --------------------------------*/
  .about_desc{
    display: block;
    padding-bottom: 12vw;
  }
  .about_desc_left {
    width: 85%;
    margin: auto;
    padding-bottom: 8vw;
  }
  .about_subtitle {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: solid 1px #436952;
}
  .about_text_wrap {
    text-align: center;
    width: 100%;
    margin: auto;
  }
  .about_text{
    text-align: left;
    line-height: 2.5;
  }
  .about_icon_wrap {
    padding-bottom: 8vw;
    position: relative;
    width: 100%;
    margin: auto;
}
  .about_icon_item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12vw;
  }
  .about_icon_wrap::before {
    content: '';
    position: absolute;
    top:50px;
    left: 53px;
    height: 75%;
    width: 1px;
    display: block;
    background: #436952;
    z-index: -1;
}
  .about_icon_item img{
    margin: 0;
    width: 30%;
    padding-bottom: 0;
  }
  .about_icon_text{
    width: 65%;
  }
  .about_icon_text span {
    display: block;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
}
.about_img_left img{
  width: 75%;
}
.about_img_left img:nth-of-type(2) {
  display: block;
  margin-left: auto;
  margin-top: 8vw;
}
.about_img_right img{
  width: 75%;
}
.about_img_right img:nth-of-type(1){
  margin-top: 8vw;
}
.about_img_right img:nth-of-type(2){
  margin-top: 8vw;
  display: block;
  margin-left: auto;
}
  /* -----------------------------
  common
  --------------------------------*/
  .section_inner{
    width: 90%;
    padding: 20vw 0;
    margin: auto;
  }
  .section_subtitle{
    padding-bottom: 4vw;
  }
  .section_title {
    font-size: 1.6rem;
    padding-bottom: 8vw;
    text-transform: uppercase;
    color: #436952;
}
.section_title_en {
  font-size: 3rem;
  display: block;
  font-weight: 600;
  color: #436952;
  line-height: normal;
}
.section_bg {
  background-color: #faf7f2;
}
  .more_btn{
    width: 50%;
  }
  .contents_inner {
    width: 90%;
    margin: auto;
}
  /* -----------------------------
  pride
  --------------------------------*/
  .pride_item {
    display: block;
    padding-bottom:18vw;
    align-items: center;
    flex-direction: row-reverse;
}
.pride_item:last-of-type{
  padding-bottom: 0;
}
.pride_item_img01 {
  border-top-left-radius: 70px;
  background: url(../img/pride_img01.jpg) center center;
  width: 100%;
  height: 200px;
  margin-bottom: 4vw;
  background-size: cover;
}
.pride_item_img02 {
  border-top-right-radius: 70px;
  background: url(../img/pride_img02.jpg) center center;
  width: 100%;
  height: 200px;
  margin-bottom: 4vw;
  background-size: cover;
}
.pride_item_img03 {
  border-top-left-radius: 70px;
  background: url(../img/pride_img03.jpg) center center;
  width: 100%;
  height: 200px;
  margin-bottom: 4vw;
  background-size: cover;
}
  .pride_item_title{
    font-size: 1.8rem;
  }
  .pride_item_text{
    width: 100%;
  }
  .pride_title_en {
  font-size: 2rem;
  line-height: normal;
}
.pride_item_title {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
.pride_item_title::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background-color: #436952;
  width: calc(100% - 14em);
  max-width: 300px;
}
  .pride_item_title_3::after{
    width: calc(100% - 16em);
  }
  .pride_item_p{
    padding-top:4vw;
    padding-right: 0;
  }
  .pride_item_p p{
    padding-bottom: 8vw;
  }
  .pride_item:nth-child(2) .pride_item_title::after{
    width: calc(100% - 9em);
  }
  .pride_item:nth-child(2) .pride_title_wrap{
    padding-left: 0;
  }
  .pride_item:nth-child(2) .pride_item_p{
    padding-left: 0;
    padding-top: 4vw;
  }
  .more_btn {
    position: relative;
    overflow: hidden;
    background-color: #436952;
    border: 1px solid #436952;
    text-transform: uppercase;
    display: block;
    border-radius: 3px;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    width: 50%;
    margin: auto;
    transition: ease .2s;
}
.more_btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}
.more_btn:after {
  content: url(../img/tiangle_white_sp.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
}
  /* -----------------------------
  product
  --------------------------------*/
  .product_item {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15vw;
}
.product_item:last-of-type {
  margin-bottom: 0;
}
  .product_item_wrap{
    margin-top: 4vw;
  }
  .product_item:last-of-type{
    margin-bottom: 0;
  }
  .product_img {
    position: relative;
    width: 27%;
  }
  .product_text {
    width: 62%;
  }
  .product_text span {
    font-size: 1.8rem;
    padding-bottom: 1.5vw;
    text-transform: uppercase;
    display: block;
    line-height: normal;
}
.product_text p {
  padding-bottom: 2vw;
}
.more_line {
  border-bottom: 1px solid #436952;
  padding: 0 .5vw .5vw;
  text-transform: uppercase;
  color: #436952;
}
.more_line:after {
  content: url(../img/tiangle_green_sp.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  z-index: 5;
}
  .circle_bg {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -23px;
    left: -20px;
    background-color: #f7f6ed;
    border-radius: 50%;
    text-align: center;
}
  .circle_bg span{
    line-height:45px;
    font-size: 1.3rem;
  }
  /* -----------------------------
  sdgs
  --------------------------------*/
  .section_bg_gr {
    background-color: #436952;
    color: #fff;
}
  .sdgs_wrap h3{
    font-size: 2.8rem;
    padding-bottom: 3rem;
  }
  .sdgs_under {
    display: inline-block;
    border-bottom: 1px solid #fff;
    margin-bottom: 1vw;
}
  .sdgs_right p{
    padding-bottom: 6vw;
  }
  .sdgs_wrap{
    display: block;
  }
  .sdgs_left{
    width: 100%;
  }
  .sdgs_right{
    width: 100%;
  }
  .more_btn_wh {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    display: block;
    border-radius: 3px;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    width: 45%;
    margin: auto;
}
.more_btn_wh span {
  position: relative;
  z-index: 3;
  color: #436952;
}
.more_btn_wh:after {
  content: url(../img/tiangle_green_sp.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  transition: 0.4s;
}
  /* -----------------------------
  contact
  --------------------------------*/
  .img_bg {
    background-image: url(../img/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    margin: 10vw auto;
}
  .contents_wrap p{
    padding-bottom: 6vw;
    width: 100%;
  }
  .contact-inner{
    width: 90%;
    padding: 50px 0;
    margin: auto;
  }
.contact_btn {
  position: relative;
  overflow: hidden;
  background-color: #436952;
  border: 1px solid #436952;
  text-transform: uppercase;
  display: block;
  color: #fff;
  border-radius: 3px;
  padding: 14px 40px;
  text-align: center;
  outline: none;
  width: 45%;
  margin: auto;
  transition: ease .2s;
}
  /* -----------------------------
  footer
  --------------------------------*/
  .footer_inner {
    font-size: 1.3rem;
    padding-top: 6vw;
    margin: 0 auto;
    width: 100%;
}
  .footer_logo{
    width: 22%;
    padding-bottom: 6vw;
  }
  .footer_item {
    margin: auto;
    width: 66%;
    padding-bottom: 5vw;
}
.footer_item p {
  border-bottom: 1px solid;
  padding-bottom: .5vw;
  margin-bottom: .5vw;
}
.nav_btn {
  display: inline-block;
  border: 1px solid #436952;
  border-radius: 3px;
  padding: 12px 20px;
}
.footer_item:last-of-type {
  text-align: center;
}
.copyright {
  text-align: center;
  margin-top: 4vw;
  padding-bottom: 1vw;
  display: block;
  font-size: 1.2rem;
}
  
  
}

@media screen and (min-width: 751px) and (max-width: 1024px){
  .only_pc{
    display: none;
  }
  .only_sp{
    display: none;
  }
  .only_wide{
    display: block;
  }
  
  /* フェードイン */
.fadein{
	opacity : 0;
	visibility: hidden;
	transition: 1.3s;
	transform: translateY(80px);
}
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
  /* -----------------------------
  nav
  --------------------------------*/
  .nav_wrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
  #nav_list{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
  }
  .nav_list{
    display: inline-block;
    margin: 12vw 0 0 12vw;
  }
  .nav_logo {
    width: 45%;
}
  .nav_item{
    line-height: normal;
    padding-bottom: 5vw;
  }
  .nav_item:last-of-type{
    padding-bottom: 0;
    padding-top: 5vw;
  }
  .nav_btn{
    display: inline-block;
  }
  .nav_a{
    line-height: normal;
    position: relative;
  }
  .nav_check::after{
    display: none;
  }
  .nav_check a{
    padding-bottom: 1.5vw;
  }
  .nav_check .nav_a::after{
    position: absolute;
    display: block;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #436952;
    transform-origin: center top;
    transform:inherit;
  }
  .nav_a:hover::after {
    transform: scale(0, 0);
  }
  #menu_bar{
    position: fixed;
    right: calc(5%);
    top:15px;
    z-index: 510;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  
  /*ボタン内側*/
  .openbtn span{
    position: relative;
    display: block;
    width: 40px;
    height: 1px;
    background-color: #436952;
    transition: all .4s;
    }
  .openbtn span:nth-of-type(1) {
    top:18px;
    left:5px;	
  }
  .openbtn span:nth-of-type(2) {
    top:28px;
    left:5px;
  }
  .openbtn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
    z-index: 510;
  }
  .openbtn.active span:nth-of-type(2) {
    transform: translateY(-6px) rotate(45deg);
    z-index: 510;
  }
  .hero_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-bottom: 6vw;
    padding-top: 80px;
}
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 199;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ededed;
}
  .header_text {
    position: absolute;
    left: 5%;
    top: 30%;
    z-index: 100;
    padding: 2vw;
    background-color: #fff;
    opacity: .8;
}
  .header_text h1{
    font-size: 4rem;
    padding-bottom:2vw;
    line-height:normal;
    color: #436952;
    font-weight: bold;
  }
  .header_text h1 span {
    display: block;
    border-bottom: 1px solid #436952;
}
  .header_text p{
    font-size: 1.4rem;
    padding-top: 1vw;
  }
  .slide img{
    width: 100%;
    margin: 0;
  }
  .scrolldown1{
    position: absolute;
    left: 50%;
    height: 50px;
    margin-top: 4vw;
  }
  .scrolldown1 span {
    position: absolute;
    left: -19px;
    top: -30px;
    color: #436952;
    letter-spacing: 0.05em;
}
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 50px;
  background: #436952;
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
  }
  /* -----------------------------
  about
  --------------------------------*/
  .about_desc{
    align-items: center;
    padding-bottom: 8vw;
  }
  .about_desc_left {
    width: 70%;
    margin: auto;
    padding-bottom: 4vw;
  }
  .about_text_wrap {
    width: 90%;
    margin: auto;
  }
  .about_subtitle {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: solid 1px #436952;
}
.about_text {
  line-height: 2.5;
}
.about_icon_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8vw;
  position: relative;
  width: 100%;
  margin: auto;
}
.about_icon_wrap::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 100px;
  height: 1px;
  width: 80%;
  display: block;
  background: #436952;
  z-index: -1;
}
  .about_icon_item{
    width: 22%;
  }
  .about_icon_item img {
    display: block;
    margin: auto;
    padding-bottom: 2.5vw;
    width: 65%;
}
.about_icon_text span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.about_img {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
.about_img_left, .about_img_right {
  width: 46%;
}
.about_img_left {
  text-align: left;
}
.about_img_right {
  text-align: right;
}
.about_img02 {
  margin-top: 2vw;
}
.about_img03 {
  margin-top: 10vw;
}
.about_img04 {
  margin-top: 10vw;
}
.about_img05 {
  margin-top: 10vw;
}
  /* -----------------------------
  common
  --------------------------------*/
  .section_inner{
    width: 90%;
    padding: 12vw 0;
    margin: auto;
  }
  .section_bg {
    background-color: #faf7f2;
}
.contents_inner {
  width: 90%;
  margin: auto;
}
  .section_title {
    font-size: 1.6rem;
    padding-bottom: 4vw;
    text-transform: uppercase;
    color: #436952;
}
.section_title_en {
  font-size: 3rem;
  display: block;
  font-weight: 600;
  color: #436952;
  line-height: normal;
}
  .section_subtitle{
    padding-bottom: 3vw;
  }
  .more_btn {
    overflow: hidden;
    background-color: #436952;
    border: 1px solid #436952;
    text-transform: uppercase;
    display: block;
    border-radius: 3px;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    width: 50%;
    margin: auto;
  }
  .more_btn span {
    position: relative;
    z-index: 3;
    color: #fff;
}
.more_btn:after {
  content: url(../img/tiangle_white.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
}
  /* -----------------------------
  pride
  --------------------------------*/
  .pride_item {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding-bottom: 11vw;
}
.pride_item:last-of-type {
  padding-bottom: 0;
}
.pride_item_img01 {
  border-top-left-radius: 70px;
  background: url(../img/pride_img01.jpg) center center;
  width: 60%;
  height: 270px;
  background-size: cover;
}
  .pride_item_text{
    width: 77%;
  }
  .pride_title_en {
    font-size: 2rem;
    line-height: normal;
}
.pride_item_title {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
.pride_item_title::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background-color: #436952;
  width: calc(100% - 14em);
  max-width: 300px;
}
.pride_item:nth-child(2) {
  flex-direction: inherit;
}
.pride_item_img02 {
  border-top-right-radius: 70px;
  background: url(../img/pride_img02.jpg) center center;
  width: 60%;
  height: 270px;
  background-size: cover;
}
.pride_item:nth-child(2) .pride_title_wrap {
  padding-right: 0;
  padding-left: 15%;
}
  .pride_item_title_3::after{
    width: calc(100% - 15em);
  }
  .pride_item:nth-child(2) .pride_item_title::after{
    width: calc(100% - 9em);
  }
  .pride_item:nth-child(2) .pride_item_p {
    padding-top: 2vw;
    padding-left: 15%;
    padding-right: 0;
}
.pride_item_img03 {
  border-top-left-radius: 70px;
  background: url(../img/pride_img03.jpg) center center;
  width: 60%;
  height: 270px;
  background-size: cover;
}
  .pride_item_p {
    padding-top: 2vw;
    padding-right: 15%;
}
.pride_item_p p {
  padding-bottom: 5vw;
}
  /* -----------------------------
  product
  --------------------------------*/
.product_item_wrap {
  margin-top: 4vw;
}
.product_item {
    margin: 0 auto;
    padding-bottom: 10vw;
    width: 50%;
}
.product_item {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
    margin-bottom: 10vw;
}
.product_item:last-of-type {
  margin-bottom: 0;
}
.product_img {
  position: relative;
  width: 25%;
}
.product_text {
  width: 60%;
}
.circle_bg {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: #f7f6ed;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
}
.circle_bg span {
  line-height: 60px;
}
.product_text span {
  font-size: 2rem;
  padding-bottom: 1.5vw;
  text-transform: uppercase;
  display: block;
  line-height: normal;
}
.product_text p {
  padding-bottom: 2vw;
}
.more_line {
  border-bottom: 1px solid #436952;
  padding: 0 .5vw .5vw;
  text-transform: uppercase;
  color: #436952;
}
.more_line:after {
  content: url(../img/tiangle_green.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  z-index: 5;
}
  /* -----------------------------
  sdgs
  --------------------------------*/
  .section_bg_gr {
    background-color: #436952;
    color: #fff;
}
.sdgs_wrap {
  display: flex;
  justify-content: space-around;
}
.sdgs_left {
  width: 42%;
}
.sdgs_wrap h3{
  font-size: 2.8rem;
  line-height:2;
}
.sdgs_right {
  width: 55%;
}
.sdgs_right p {
  padding-bottom: 4vw;
}
.more_btn_wh {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  display: block;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  outline: none;
  width: 42%;
}
.more_btn_wh:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #436952;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.more_btn_wh span {
  position: relative;
  z-index: 3;
  color: #436952;
}
.more_btn_wh:after {
  content: url(../img/tiangle_green.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  transition: 0.4s;
}
  /* -----------------------------
  contact
  --------------------------------*/
  .img_bg {
    background-image: url(../img/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    margin: 10vw auto;
    width: 90%;
}
  .contact-inner{
    width: 90%;
    padding: 70px 0;
    margin: auto;
  }
  .contents_wrap {
    display: flex;
    justify-content: space-between;
}
.contents_wrap p {
  width: 50%;
}
.contact_btn {
  overflow: hidden;
  background-color: #436952;
  border: 1px solid #436952;
  text-transform: uppercase;
  display: block;
  color: #fff;
  border-radius: 3px;
  margin: auto 0;
  padding: 12px 40px;
  text-align: center;
  outline: none;
  width: 27%;
  transition: ease .2s;
}
  /* -----------------------------
  footer
  --------------------------------*/
  .footer_inner {
    padding-top: 6vw;
    margin: 0 auto;
    width: 100%;
    font-size: 1.3rem;
}
.footer_logo {
  width: 10%;
  padding-bottom: 4vw;
}
.footer_item_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_item {
  width: 30%;
}
.footer_item p {
  border-bottom: 1px solid;
  padding-bottom: .5vw;
  margin-bottom: .5vw;
}
.footer_item:last-of-type {
  text-align: center;
}
.nav_btn {
  display: inline-block;
  border: 1px solid #436952;
  border-radius: 3px;
  padding: 12px 20px;
}
.copyright {
  text-align: center;
  margin-top: 4vw;
  padding-bottom: 1vw;
  display: block;
  font-size: 1.2rem;
}
  
  
  }


@media screen and (min-width: 1025px){
.only_sp{
  display: none;
}

/* -----------------------------
header
--------------------------------*/
.header{
  background-color: #fff;
  position: fixed;
  top:0;
  z-index: 199;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ededed;
}
.nav_wrap{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
#nav_list{
  width: 85%;
}
.nav_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_logo{
  width: 45%;
}
.nav_item:last-of-type{
  margin-right: 0;
}
.nav_btn{
  position: relative;
  border:1px solid #436952;
  border-radius: 3px;
  padding: 12px 20px;
  display: inline;
}
.nav_item{
  line-height: 80px;
}
.nav_a{
  position: relative;
  color: #436952;
  cursor: pointer;
  display: inline-block;
  line-height: 80px;
}
.nav_a::after{
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #436952;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .5s;
}
.nav_check::after{
  display: block;
  bottom: -2px;
  left: 0;
  content:'';
  width: 100%;
  height: 3px;
  background: #436952;
  transform-origin: center top;
}
.nav_check .nav_a::after{
  display: none;
}
.nav_a:hover::after {
  transform: scale(1, 1);
}
/* -----------------------------
hero
--------------------------------*/
.hero_wrap{
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 70px;
}
.header_text{
  position: absolute;
  left: 16%;
  top: 28%;
  z-index: 100;
  padding: 2vw;
  background-color: #fff;
  opacity: .8;
}
.header_text h1{
  font-size: 5rem;
  color:#436952;
  font-weight: bold;
  line-height: 1.3;
}
.header_text h1 span{
  display: block;
  border-bottom: 1px solid #436952;
}
.header_text p{
  padding-top: 3vw;
}
.slide img{
  width: 80%;
  margin: 3vw auto 2vw;
  display: block;
  border-radius: 3px;
}

/*スクロールダウン全体の場所*/
.scrolldown1{
position:absolute;
left:50%;
height:50px;
margin-top: 2vw;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
position: absolute;
left: -19px;
top: -30px;
color: #436952;
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
position: absolute;
top: 0;
width: 1px;
height: 50px;
background: #436952;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 2s ease-in-out infinite;
opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}

/* -----------------------------
commmon
--------------------------------*/
/* フェードイン */
.fadein{
	opacity : 0;
	visibility: hidden;
	transition: 1.3s;
	transform: translateY(80px);
}
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.section_bg{
  background-color: #faf7f2;
}
.section_inner{
  padding: 100px 0;
  margin: auto;
  max-width: 1200px;
  width: 90%;
}
.contents_inner{
  width: 90%;
  margin: auto;
}
.section_title{
  font-size: 1.6rem;
  padding-bottom: 4vw;
  text-transform: uppercase;
  color:#436952;
}
.section_title_en{
  font-size: 3rem;
  display: block;
  font-weight: 600;
  color:#436952;
  line-height: normal;
}
.section_subtitle{
  font-size: 2rem;
  padding-bottom: 2.5vw;
  text-transform: uppercase;
}
/* ----------------------
btn
-------------------------*/
/* btn　背景緑 */
.more_btn{
  position: relative;
  overflow: hidden;
  background-color: #436952;
  border:1px solid #436952;
  text-transform: uppercase;
  display: block;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  outline: none;
  width: 40%;
  margin: auto;
  transition: ease .2s;
}
.more_btn:after{
  content: url(../img/tiangle_white.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
}
/* btn　背景白 */
.more_btn_wh{
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border:1px solid #fff;
  text-transform: uppercase;
  display: block;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  outline: none;
  width: 30%;
}
.more_btn_wh span{
  color:#436952;
}
.more_btn_wh:after{
  content: url(../img/tiangle_green.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  transition: 0.4s;
}
.btn_white{
  background-color: #fff;
  color:#436952;
}

/*-------------------- 
more_line　アンダーライン
---------------------*/
.more_line:after{
  content: url(../img/tiangle_green.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  z-index: 5;
}

/*---------------------------
nav_btn　ホバー左から　背景白→緑
-----------------------------*/
/*ボタン内spanの形状*/
.nav_btn span , .nav_item .nav_icon{
  position: relative;
  z-index: 3;
  color:#436952;
}
.nav_btn:hover span{
  color:#fff;
}
.nav_btn:hover .nav_icon{
  color:#fff;
}
/*== 背景が流れる（左から右） */
.hover_left:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#436952;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.hover_left:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

/*---------------------------
more_btn　ホバー左から　背景緑→白
-----------------------------*/
/*ボタン内spanの形状*/
.more_btn{
  position: relative;
}
.more_btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#fff;
}
.more_btn:hover span{
  color:#436952;
}
.more_btn:hover:after{
  content: url(../img/tiangle_green.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  z-index: 5;
}
/*== 背景が流れる（左から右） */
.more_btn:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#fff;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.more_btn:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

/*---------------------------
more_btn_wh　ホバー左から　背景緑→白
-----------------------------*/
/*ボタン内spanの形状*/
.more_btn_wh{
  position: relative;
}
.more_btn_wh span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#436952;
}
.more_btn_wh:hover span{
  color:#fff;
}
.more_btn_wh:hover:after{
  content: url(../img/tiangle_white.png);
  position: relative;
  top: -2px;
  padding-left: .5vw;
  z-index: 5;
}
/*== 背景が流れる（左から右） */
.more_btn_wh:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#436952;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.more_btn_wh:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

/*---------------------------
contact_btn　ホバー左から　背景緑→白
-----------------------------*/
.contact_btn{
  position: relative;
  overflow: hidden;
  background-color: #436952;
  border:1px solid #436952;
  text-transform: uppercase;
  display: block;
  color: #fff;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  outline: none;
  width: 30%;
  margin: auto; 
/*アニメーションの指定*/   
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.contact_btn{
  position: relative;
}
.contact_btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.contact_btn:hover span{
  color:#436952;
}
/*== 背景が流れる（左から右） */
.contact_btn:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#fff;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.contact_btn:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

/* -----------------------------
about
--------------------------------*/
.about_desc{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8vw;
}
.about_subtitle{
  font-size: 2rem;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: solid 1px #436952;
}
.about_text{
  line-height: 2.5;
  width: 92%;
  margin: auto;
}
.about_text_wrap{
  width: 53%;
}
.about_text span:last-of-type{
  border-bottom: none;
}
.about_desc_left{
  width: 43%;
}
.about_icon_wrap{
  display: flex;
  justify-content: space-between;
  padding-bottom: 8vw;
  position: relative;
  width: 95%;
  margin: auto;
}
.about_icon_wrap::before{
  content: '';
  position: absolute;
  top: 75px;
  left: 100px;
  height: 1px;
  width: 80%;
  display: block;
  background: #436952;
  z-index: -1;
}
.about_icon_item{
  width: 20%;
}
.about_icon_item img{
  display: block;
  margin: auto;
  padding-bottom: 2.5vw;
  width: 65%;
}
.about_icon_text span{
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.about_img{
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}
.about_img_left , .about_img_right{
  width: 46%;
}
.about_img_left{
  text-align: left;
}
.about_img_right{
  text-align: right;
}
.about_img03{
  margin-top: 10vw;
}
.about_img02{
  margin-top:2vw;
}
.about_img04{
  margin-top: 10vw;
}
.about_img05{
  margin-top: 10vw;
}

/* -----------------------------
pride
--------------------------------*/
.pride_item{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-bottom: 11vw;
}
.pride_item:nth-child(2){
  flex-direction: inherit;
}
.pride_item:nth-child(2) .pride_title_wrap {
  padding-right: 0;
  padding-left: 15%;
}
.pride_item:nth-child(2) .pride_item_p{
  padding-top: 2vw;
  padding-left: 15%;
  padding-right: 0;
}
.pride_item:nth-child(2) .pride_item_title::after{
  width: calc(100% - 9em);
}
.pride_item:last-of-type{
  padding-bottom: 0;
}
.pride_item_text{
  width: 70%;
}
.pride_item_img01{
  border-top-left-radius: 70px;
  background: url(../img/pride_img01.jpg) center center;
  width: 80%;
  height: 300px;
  background-size: cover;
}
.pride_item_img02{
  border-top-right-radius: 70px;
  background: url(../img/pride_img02.jpg) center center;
  width: 80%;
  height: 300px;
  background-size: cover;
}
.pride_item_img03{
  border-top-left-radius: 70px;
  background: url(../img/pride_img03.jpg) center center;
  width: 80%;
  height: 300px;
  background-size: cover;
}
.pride_item_title{
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
.pride_title_en{
  font-size: 2rem;
  line-height: normal;
}
.pride_item_title::after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background-color: #436952;
  width: calc(100% - 14em);
  max-width: 300px;
}
.pride_item_title_3::after{
  width: calc(100% - 16em);
}
.pride_item_p{
  padding-top: 2vw;
  padding-right: 15%;
}
.pride_item_p p{
  padding-bottom: 3vw;
}
/* -----------------------------
product
--------------------------------*/
.product_item_wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 4vw;
}
.product_item{
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 48%;
}
.product_text{
  width: 60%;
}
.product_text p{
  padding-bottom: 2vw;
}
.product_text span{
  font-size: 1.8rem;
  padding-bottom: 1.5vw;
  text-transform: uppercase;
  display: block;
  line-height: normal;
}
.product_img{
  position: relative;
  width: 30%;
}
.circle_bg{
  position: absolute;
  top:-30px;
  left:-30px;
  background-color: #f7f6ed;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
}
.circle_bg span{
  line-height: 60px;
}
.more_line{
  border-bottom: 1px solid #436952;
  padding: 0 .5vw .5vw;
  text-transform: uppercase;
  color: #436952;
  display: inline-block;
  transition:.4s
}
.more_line img{
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 1vw;
}
/* -----------------------------
sdgs
--------------------------------*/
.section_bg_gr{
  background-color: #436952;
  color:#fff;
}
.sdgs_wrap{
  display: flex;
  justify-content: space-around;
}
.sdgs_wrap h3{
  font-size: 3rem;
  line-height: 2;
}
.sdgs_under{
  display: inline-block;
  border-bottom: 1px solid #fff;
  margin-bottom: 1vw;
}
.sdgs_left{
  width: 42%;
}
.sdgs_right{
  width: 55%;
}
.sdgs_right p{
  padding-bottom: 4vw;
}
.btn_sdgs{
  border: 1px solid #fff;
  background-color: #fff;
}
.btn_sdgs span{
  color:#436952;
}
/* -----------------------------
contact
--------------------------------*/
.contact-inner{
  width: 85%;
  padding: 100px 0;
  margin: auto;
}
.img_bg{
  background-image: url(../img/contact_bg.jpg);
  background-size: cover;
  margin: 10vw  auto;
}
.contents_wrap{
  display: flex;
  justify-content: space-between;
}
.contents_wrap p{
  width: 50%;
}
.contact_btn{
  padding: 14px 50px;
  margin-right: 4vw;
  width: 20%;
}
/* -----------------------------
footer
--------------------------------*/
.footer_inner{
  padding-top: 6vw;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
.footer_logo{
  width: 10%;
  padding-bottom: 4vw;
}
.footer_item_wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_item{
  width: 30%; 
}
.footer_item:last-of-type{
  text-align: center;
}
.btn_clear span{
  color:#436952;
}
.btn_clear{
  background-color:rgba(0,0,0,0);
  border:1px solid #436952;
}
.footer_item p{
  border-bottom: 1px solid;
  padding-bottom: .5vw;
  margin-bottom: .5vw;
}
.copyright{
  text-align: center;
  margin-top: 4vw;
  padding-bottom: 1vw;
  display: block;
  font-size: 1.2rem;
}

}

@media screen and (min-width: 1301px){
  .slide img{
    width: 75%;
    margin: 3vw auto 1vw;
  };
}