@charset "UTF-8";
/*==========================

	common

============================*/
html{
  font-size: 62.5%;
  overflow-x: hidden;
  height: 100vh;
}

body{
	color:#303030;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.4rem;
  width: 100vw;
	line-height: 1.2;
	position: relative;
	z-index:1;
  -webkit-text-size-adjust: 100%;
}



body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

img{
  max-width: 100%;
}


img, svg {
    height: auto;
    min-height: 1px;
}

a{
  color: #0a508e;
  text-decoration: none;
  transition: all 0.2s;
  outline: none;
}


a img{
  transition: all 0.2s;
}

p {
  word-break: break-all;
  word-wrap: break-word;
  line-height:2;
  letter-spacing: 2px;
}

/******************

  hover

******************/

a:hover,button:hover {
    opacity: 0.5;
    transition: all 0.2s;
}

.en {
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.jp{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;  
}

/*---------------------------------
loading
---------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #ffffff;
  z-index: 10000;
}

#js-loader {
  width: 50%;
  max-width: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
}




/*==========================

  globalHeader

============================*/

#globalHeader {
  position: fixed;
  width: 100%;
  z-index: 99;
  /*background-color: #fff;*/
  /*top: -140px;*/
  height: 140px;
  transition: all 0.5s ease;
}

#globalHeader.is-show {
  background: #fff;
}


.globalHeaderInner{
  /*max-width: 1920px;*/
  display: flex;
  margin: 0 auto;
  padding: 20px 0;
  justify-content: space-between;
  position: relative;
  align-items: center;
  width: 100%;
  /*background-color: #fff;*/
}

#globalLogo{
  width: 8%;
  text-align: center;
  /*max-width: 70px;*/
}

#globalLogo img{
	max-width: 70px;
}


#globalNav{
  width: 40%;
}

#globalNavMenu{
  display: flex;
  justify-content: right;
}

#globalNavMenu li{
  font-size: 1.8rem;
  width: 20%;
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;  
}

#globalNavMenu li a{
    color: #20573a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 0 10%;
    margin: auto;
}


.navContact{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background: #88b83e;
    color: #fff!important;
    text-align: center;
}


/*
a.sample_btn {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: #fff;
  background-color: #1B85FB;
}
*/
.navContact:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  opacity: 1;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #88b83e;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}




/*
#globalCont{
  max-width: 1540px;
  margin: 0 auto;
}
*/


/*---------------------------------
contactBox
---------------------------------*/


.contactBox{
  border-radius: 0 40px 40px 0;
  max-width: 1080px;
  background:#20573a;
  color: #fff;
  padding: 60px 70px;
  display: flex;
  margin: 0 auto 70px;
  justify-content: space-between;
  align-items: center;
}

.contactBoxTtl{
  text-align: left;
  margin-bottom: 50px;
}

.contactBoxTtl strong{
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.contactBoxTtl span{
  color: #88b83e;
  font-size: 1.8rem;
}

.btnContact{
  border-radius: 100px;
  border: 1px solid #fff;
  background: #20573a;
  width: 130px;
  height: 130px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.btnContact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.btnContact:hover{
  opacity: 1!important;
}


.btnContact:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}



.arrowRight {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 14px;
  height: 4px;
  background: #fff;
  transition: all 0.5s ease;
}

.arrowRight::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -2px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.btnContact:hover .arrowRight{
  background: #20573a;
}

.btnContact:hover .arrowRight::before{
    border: 3px solid #20573a;
    border-left: 0;
    border-bottom: 0;
}



/*---------------------------------
footer
---------------------------------*/
#globalFooter{
  color: #20573a;
  padding-bottom: 50px;
}


#footerNav ul {
    display: flex;
    /*justify-content: space-between;*/
    gap: 40px;
    max-width: 320px;
    margin: 0 auto 50px;
}

#globalFooter a{
  color: #20573a;
}

#globalFooterInner {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}


.btnTop{
  border-radius: 10px;
  width: 170px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #20573a;
  text-align: center;
  background-color: #fff;
  position: relative;
  transition: color 0.5s ease;
  overflow: hidden;
}


.btnTop:hover{
  opacity: 1!important;
}

.btnTop::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #20573a;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.btnTop:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}


.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #20573a;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid #20573a;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  transition: all 0.5s ease;
}

.btnTop:hover .dli-chevron-up {
    border: 0.1em solid #fff;
    border-left: 0;
    border-bottom: 0;
}



.mainTitle{
  text-align: center;
  margin-bottom: 100px;
}

.mainTitle strong{
    display: block;
    font-size: 4.8rem;
    color: #20573a;
    margin-bottom: 14px;
    letter-spacing: 20px;
}

.mainTitle span{
  display: block;
  color: #88b83e;
  font-size: 2rem;
  position: relative;
  padding-bottom: 16px;
  margin-left: -20px;  
}

.mainTitle span::before,
.mainTitle span::after{
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  margin: auto;
  left: 0;
  right: 0;
}

.mainTitle span::before{
  background: #88b83e;
  bottom: 5px;
}

.mainTitle span::after{
  background: #20573a;
  bottom: 0;
}



.anchor {
    margin-top: -140px!important;
    padding-top: 140px!important;
}

.only_sp{ display: none!important; }
/* Media Queries ================================================== */
/*896*/
@media screen and (max-width: 896px) {


  .anchor {
      margin-top: -70px;
      padding-top: 70px;
  }

  .only_pc{ display: none !important; }
  .only_sp{ display: block !important; }

  body {
    font-size: 1.6rem;
    width: 100vw;
    overflow-x: hidden;
  }


  body.fixed {
    position: relative;
    width: auto;
    height: auto;
  }

  p {
    /*line-height: 1.5;*/
  }


  #globalHeader {
      height: 110px;
      top: 0;
      background: #fff;
  }


  .globalHeaderInner{
  	padding: 20px;
  }

	#globalLogo {
	    width: 15%;
	}    


 .btnMenu {
    width: 60px;
    height: 60px;
    display: block;
    position: relative;
    background:#88b83e;
    border-radius: 100px;
  }

  .btnMenu span {
    position: absolute;
    width: 30px;
    height: 1px;
    left: 0;
    right: 0;
    margin:auto;
    background-color: #fff;
    transition: all 0.2s ease-out;
  }



  .btnMenu span:nth-of-type(1) {
    top: 22px;
  }

  .btnMenu span:nth-of-type(2) {
    top: 30px;
  }

  .btnMenu span:nth-of-type(3) {
    top: 38px;
    width: 15px;
    margin-left: 16px;
  }


  .btnMenu.close span:nth-of-type(1) {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      top: 30px;
  }

 

  .btnMenu.close span:nth-of-type(2){
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      top: 30px;
  }


 .btnMenu.close span:nth-of-type(3){
    display: none;
  }




  #globalCont{
    margin-top: 110px;
  }


/*---------------------------------
globalNavSp
---------------------------------*/

  #globalNavSp {
    transition: all 0.2s  ease-out;
    position: fixed;
    width: 100%;
    z-index: -1;
    opacity: 0;
    height: 100vh;
    background: #fff;
    color: #fff;
    top: 110px;
  }


  #globalNavSp.action{
    z-index: 998;
    opacity: 1;
  }

  #globalNavSpWrap {
    height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 100px 20px 100px;    
  }  


  #navSpLogo{
    width: 30%;
    margin: 0 auto 60px;
    display: block;  
  }

  .globalNavMenuSpTtl{
      color: #88b83e;
      display: block;
      text-align: center;
      margin-bottom: 40px;
      font-size: 3rem;   
  }  


  #globalNavMenuSp{
    margin-bottom: 20px;
    text-align: center;
  }


  #globalNavMenuSp li{
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 25px;
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-style: normal;
    position: relative;  
  }

   #globalNavMenuSp li::after{
    content: "";
    position: absolute;
    margin: auto;
    background: #88b83e;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    left: 0;
    right: 0;
    bottom: 0;
   }

   #globalNavMenuSp li:last-child::after{
    display: none;
   } 

  #globalNavMenuSp li a {
      color: #20573a;
      display: block;
  }

  .subMenu a{
    display: block;
    font-size: 1.6rem;
    color: #20573a;
    text-align: center;
  }


/*
  .btnMenuClose {
    top: 20px;
    right: 20px;  
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    background:#88b83e;
    border-radius: 100px;
  }

  .btnMenuClose span {
    position: absolute;
    width: 30px;
    height: 3px;
    left: 0;
    right: 0;
    margin:auto;
    background-color: #fff;
    transition: all 0.2s ease-out;
  }

  .btnMenuClose span:nth-of-type(1) {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      top: 30px;
  }



  .btnMenuClose span:nth-of-type(2){
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      top: 30px;
  }
*/

   #globalNavSp .navContact {
      margin: 0 auto 60px;
      display: flex;
      justify-content: center;
      align-items: center;
  }


/*---------------------------------
contactBox
---------------------------------*/


  .contactBox{
    border-radius: 0;
    background:none;
    color: #303030;
    padding: 0;
    display: block;
    width: 80%;
    margin: 0 auto 70px;
  }


  .contactBoxTtl strong{
    color: #20573a;

  }

  .contactBoxInner{
    margin-bottom: 40px;
  }


  .btnContactWrap{
    max-width: 380px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-radius: 100px;
    background: #20573a;
    text-align: center;
    color: #fff;
    position: relative;
  }    


  .btnContactBox{
    position: absolute;
    width: 45px;
    height: 45px;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
  }



  .btnContact{
    width: 100%;
    height: 100%;
  }



  /*---------------------------------
  footer
  ---------------------------------*/

  #globalFooter {  
    padding-bottom: 25px;
  }


  #footerNav ul {
      display: block;
      text-align: center;
  }

  #footerNav li{
    margin-bottom: 20px;
  }


  #globalFooterInner {
      display: block;
      padding: 0;
      text-align: center;
  }

  #globalFooterInner a,#copyright{
    display: block;
    margin-bottom: 20px;
  }


  .btnTop{
    margin: 0 auto 20px;
  }


  .mainTitle {
    margin-bottom: 60px;
  }

  .mainTitle strong {
    font-size: 3rem;
  }  
}
