@charset "utf-8";
@import url('https://cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
/*font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/
/*font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..20');

.gicon:before,
.gicon:after{
  font-family: "Material Symbols Outlined";
  line-height: 1;
}





/* ------- LINK ---------------------------------------------- */
a{
  word-break: break-all;
}
a:link {
  color: inherit;
  text-decoration: inherit;
}
a:visited {
  color: inherit;
  text-decoration: inherit;
}
a:hover {
  color: inherit;
  text-decoration: inherit;
}
a:active {
  color: inherit;
  text-decoration: inherit;
}

a.text-link{
  color: #3681A0;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine){
  a.text-link:hover{
    text-decoration: none;
  }
}



/* ------- BODY ---------------------------------------------- */
html{
  font-size: 62.5%;
}
body {
  color: #000000;
  font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  line-height: 2;
  overflow-x: hidden;
  position: relative;
}

*{
  backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased/* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
  max-width: 100%;
}


/* ------- RESPONSIVE ---------------------------------------------- */
@media print, screen and (min-width:781px) {
  .pc-ver {
    display: block;
  }
  .sp-ver {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .pc-ver {
    display: none;
  }
  .sp-ver {
    display: block;
  }
}


/* ------- BODY ---------------------------------------------- */
body{
  background-color: #FFF;
}
@media print, screen and (min-width:781px) {
	body{
    font-size: 1.6rem;
	}
}
@media screen and (max-width: 780px) {
	body{
    font-size: 1.5rem;
    padding-top: 60px;
	}
}






/* ------- HEADER ---------------------------------------------- */
#header-area{
  position: fixed;
  z-index: 100;
}
@media print, screen and (min-width:781px) {
  #header-area{
    width: 100%;
    left: 0;
    top: 18px;
  }
  .header-inner{
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 83px;
    max-width: 1366px;
    width: 96%;
  }
  #logo-main{
    width: 18.15519%;
  }
}
@media screen and (min-width:781px) and (max-width:1365px) {
  .header-inner{
    padding: 10px 20px;
  }
}
@media screen and (max-width: 780px) {
  #header-area{
    width: 100%;
    left: 0;
    top: 0;
  }
  #logo-main{
    background-color: #FFF;
    display: flex;
    align-items: center;
    padding: 0 2.5%;
    height: 60px;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  #logo-main a{
    display: block;
    width: 160px;
  }
}



/* ------- HUMBERGER ---------------------------------------------- */
#humberger {
	cursor: pointer;
  position: fixed;
	z-index: 103;
  transition: .3s;
}
#humberger .trigger, #humberger .trigger > span, #humberger .trigger > span > span {
	transition: ease-out .2s;
	box-sizing: border-box;
}
#humberger .trigger{
	position: absolute;
}
#humberger .trigger > span {
  background-color: #677D42;
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
}
#humberger .trigger > span:nth-of-type(1) {
	top: 0px;
}
#humberger .trigger > span:nth-of-type(3) {
	bottom: 0;
}
#humberger.active .trigger > span:nth-of-type(2) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	opacity: 0;
}
@media print, screen and (min-width:781px) {
  #humberger{
    display: none;
  }
}
@media screen and (max-width: 780px) {
  #humberger{
    height: 20px;
    width: 30px;
    right: 2.5%;
    top: 20px;
  }
  #humberger .trigger {
    width: 30px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
  }
  #humberger .trigger > span:nth-of-type(2) {
    top: 9px;
  }
  #humberger.active .trigger > span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }
  #humberger.active .trigger > span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
  }
}





/* ------- NAVI GLOBAL ---------------------------------------------- */
@media print, screen and (min-width:781px) {
  #navi-global-area{
    display: block !important;
  }
  #navi-global-area > ul{
    display: flex;
  }
  #navi-global-area > ul > li{
    font-weight: 700;
    margin-left: 20px;
  }
  #navi-global-area > ul > li > a{
    display: block;
    position: relative;
    padding: 5px 5px 5px;
  }
  #navi-global-area > ul > li:not(.about) > a:after{
    background-color: #677D42;
    content: "";
    display: block;
    height: 5px;
    width: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: .3s;
  }
  @media (hover: hover) and (pointer: fine){
    #navi-global-area > ul > li:not(.about):hover > a:after{
      height: 5px;
      width: 100%;
    }
  }
  #navi-global-area > ul > .about{
    border: 1px solid #707070;
    align-self: center;
    font-size: 1.1rem;
    font-weight: 500;
  }
  #navi-global-area > ul > .about a{
    padding: 2px 5px;
  }
}
@media screen and (max-width: 780px) {
  #navi-global-area{
    background: #677D42;
    background: linear-gradient(180deg, rgba(103, 125, 66, 1) 0%, rgba(166, 204, 106, 1) 100%);
    color: #FFF;
    display: none;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    z-index: 1;
  }
  #navi-global-area > ul{
    display: flex;
    flex-direction: column;
    padding: 60px 10% 0;
    width: 100%;
  }
  #navi-global-area > ul > li{
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
  #navi-global-area > ul > li:not(.about){
    border-bottom: 1px solid #FFF;
  }
  #navi-global-area > ul > li > a{
    display: block;
    position: relative;
  }
  #navi-global-area > ul > li:not(.about) a{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #navi-global-area > ul > .about{
    border: 1px solid #FFF;
    font-size: 1.4rem;
    font-weight: 500;
    align-self: center;
    margin-top: 30px;
  }
  #navi-global-area > ul > .about a{
    padding: 2px 10px;
  }
}




/* ------- CONTENTS ---------------------------------------------- */
#contents-area{
  overflow: hidden;
}
.bread-crumbs > ul{
  padding-top: 5px;
  display: flex;
  margin-bottom: 30px;
}
.bread-crumbs > ul > li{
  display: flex;
  align-items: center;
}
.bread-crumbs > ul > li:after{
  content: ">";
  display: block;
  margin-left: 7px;
  margin-right: 7px;
}
.bread-crumbs > ul > li:last-child:after{
  display: none;
}
@media print, screen and (min-width:781px) {
}
@media screen and (max-width: 780px) {
}



/* ------- FOOTER ---------------------------------------------- */
#footer-area{
  background-color: #000;
  color: #FFF;
}
#footer-area .copyright{
  line-height: 1.4;
}

.btn-pagetop{
  background-image: url("../images/ic_pagetop.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #677D42;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 60px;
  width: 60px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 98;
  pointer-events: none;
  opacity: 0;
  transition: .3s;
}
.btn-pagetop.is-show{
  pointer-events: all;
  opacity: 1;
}
@media print, screen and (min-width:781px) {
  #footer-area{
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 90%;
  }
  #footer-area .relation{
    margin-left: 4%;
    width: 23.416%;
  }
  #footer-area .copyright{
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 780px) {
  #footer-area{
    padding: 20px 5%;
  }
  .footer-inner{
  }
  #footer-area .relation{
    margin: 0 auto;
    width: 50%;
  }
  #footer-area .copyright{
    font-size: 1.2rem;
    margin-top: 15px;
  }
  .btn-pagetop{
    background-size: 20px auto;
    right: 20px;
    bottom: 20px;
    height: 40px;
    width: 40px;
  }
}




/* ------- COMMON ---------------------------------------------- */
.icon{
  display: flex;
  align-items: center;
}
.icon:before{
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  display: block;
}


.heading{
  background-color: #65A100;
  color: #FFF;
  text-align: center;
}
.heading h1{
  font-weight: 700;
  line-height: 1.45;
}

.section-head{
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
}
.section-head:after{
  background-color: #677D42;
  content: "";
  display: block;
  width: 60px;
}

.sub-head{
  border-bottom: 1px solid #000;
  font-weight: 700;
  line-height: 1.35;
}
@media print, screen and (min-width:781px) {
  .heading{
    padding: 135px 0 60px;
  }
  .heading h1{
    font-size: min(2.92vw,4.0rem);
  }
  
  .section-head{
    font-size: 4.0rem;
  }
  .section-head:after{
    margin: 20px auto 0;
    height: 8px;
  }
  
  .sub-head{
    font-size: 2.0rem;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  
  .inner{
    margin-left: auto;
    margin-right: auto;
    max-width: 1366px;
    width: 90%;
  }
  .inner-s{
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    width: 90%;
  }
  
  .sec{
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 780px) {
  .heading{
    padding: 30px 0 30px;
  }
  .heading h1{
    font-size: min(5.12vw,4.0rem);
  }
  
  .section-head{
    font-size: 2.0rem;
  }
  .section-head:after{
    margin: 10px auto 0;
    height: 4px;
  }
  
  .sub-head{
    font-size: 2.0rem;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  
  
  .inner-s{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  
  
  .sec{
    margin-bottom: 60px;
  }
}




/* ------- ANIMATION PARTS ---------------------------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 30px);
}

.fade-in-down {
  transform: translate(0, -30px);
}

.fade-in-left {
  transform: translate(-30px, 0);
}

.fade-in-right {
  transform: translate(30px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}