@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: #008CF0;
  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) {
  html{
    scroll-padding-top: 95px;
  }
  .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;
    box-shadow: 0 0 10px rgba(0,0,0,.16);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 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;
    align-items: center;
  }
  #navi-global-area > ul > li{
    font-weight: 700;
    margin-left: 20px;
    font-size: min(1.2vw,1.5rem);
    line-height: 1.26;
    position: relative;
  }
  #navi-global-area > ul > li > a{
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 5px 15px;
    width: 100%;
    height: 70px;
  }
  #navi-global-area > ul > li:not(.about) > a:after{
    background-color: #677D42;
    content: "";
    display: block;
    height: 5px;
    width: 0;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    transition: .3s;
  }
  #navi-global-area > ul > li > a.is-current:after{
      height: 5px;
      width: 100%;
    }
  @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;
  }
  
  #navi-global-area > ul > li .navi-lower{
    color: #FFF;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }
  #navi-global-area > ul > li .navi-lower > ul{
    background-color: #677D42;
    border-radius: 10px;
    padding: 10px 10px 10px;
    min-width: 235px;
  }
  #navi-global-area > ul > li .navi-lower > ul > li{
    font-size: min(1.2vw,1.5rem);
  }
  #navi-global-area > ul > li .navi-lower > ul > li > a{
    border-bottom: 1px solid #FFF;
    display: block;
    padding: 10px 0;
    transition: .3s;
  }
  #navi-global-area > ul > li .navi-lower > ul > li:last-child > a{
    border-bottom: none;
  }
  @media (hover: hover) and (pointer: fine){
    #navi-global-area > ul > li:hover > .navi-lower{
      opacity: 1;
      pointer-events: all;
    }
    #navi-global-area > ul > li .navi-lower > ul > li > a:hover{
      color: #F9F169;
    }
  }
}
@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% 50px;
    width: 100%;
    overflow-y: auto;
  }
  #navi-global-area > ul > li{
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
  }
  #navi-global-area > ul > li > a{
    border-bottom: 1px solid #FFF;
    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;
  }
  
  
  #navi-global-area > ul > li .navi-lower{
    color: #FFF;
    white-space: nowrap;
    padding-top: 15px;
  }
  #navi-global-area > ul > li .navi-lower > ul{
    background-color: #677D42;
    border-radius: 10px;
    padding: 10px 10px 10px;
  }
  #navi-global-area > ul > li .navi-lower > ul > li{
    font-size: 1.5rem;
  }
  #navi-global-area > ul > li .navi-lower > ul > li > a{
    border-bottom: 1px solid #FFF;
    display: block;
    padding: 10px 0;
  }
  #navi-global-area > ul > li .navi-lower > ul > li:last-child > a{
    border-bottom: none;
  }
}




/* ------- 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-navi > li{
  line-height: 1;
}
.footer-wrap{
  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{
    margin-top: 100px;
  }
  .footer-navi{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0;
    max-width: 1366px;
  }
  .footer-navi > li{
    display: flex;
    font-size: min(1.2vw,1.5rem);
  }
  .footer-navi > li > a{
    border-right: 1px solid #707070;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
  .footer-navi > li:last-child > a{
    border-right: none;
  }
  @media (hover: hover) and (pointer: fine){
    .footer-navi > li > a:hover{
      text-decoration: underline;
    }
  }
  .footer-wrap{
    padding-bottom: 40px;
    padding-top: 40px;
    width: 100%;
  }
  .footer-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 90%;
  }
  #footer-area .footer-sponsorship{
    font-size: 1.5rem;
    margin-bottom: 15px;
    width: 100%;
  }
  #footer-area .relation{
    margin-left: 4%;
    width: 23.416%;
  }
  #footer-area .copyright{
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 780px) {
  #footer-area{
    margin-top: 50px;
  }
  .footer-wrap{
    padding: 20px 5%;
  }
  .footer-navi{
    display: none;
  }
  
  #footer-area .footer-sponsorship{
    font-size: 1.2rem;
    margin-bottom: 15px;
    width: 100%;
  }
  
  #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;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.heading:before{
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  mix-blend-mode: screen;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.heading h1{
  font-weight: 700;
  line-height: 1.45;
}
.heading h1{
  position: relative;
}
.heading h1:before,
.heading h1:after{
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
}
.heading h1:before{
  top: 50%;
  transform: translate(-100%,-50%);
}
.heading h1:after{
  top: 50%;
  transform: translate(100%,-50%);
}

.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;
}



.ttl .date{
  font-weight: 400;
  line-height: 1.26;
}


.note-list > li{
  text-indent: -1em;
  padding-left: 1em;
}
.note-list > li:before{
  content: "※";
}


.align-center{
  text-align: center;
}
.align-left{
  text-align: left;
}
.align-right{
  text-align: right;
}
@media print, screen and (min-width:781px) {
  .heading{
    padding: 150px 0 50px;
  }
  .heading h1{
    font-size: min(2.92vw,4.0rem);
  }
  .heading h1:before{
    left: -70px;
  }
  .heading h1:after{
    right: -70px;
  }
  
  .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;
  }
  
  
  .ttl{
    padding: 25px 25px 35px;
  }
  .ttl .date{
    font-size: 2.3rem;
    text-align: center;
    margin-top: 20px;
  }
  
  
  .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;
  }
  
  
  .align-center-pc{
    text-align: center;
  }
  .align-left-pc{
    text-align: left;
  }
  .align-right-pc{
    text-align: right;
  }
}
@media screen and (max-width: 780px) {
  .heading{
    padding: 30px 0 30px;
  }
  .heading h1{
    font-size: min(5.12vw,4.0rem);
  }
  .heading h1:before{
    left: -20px;
  }
  .heading h1:after{
    right: -20px;
  }
  
  .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;
  }
  
  
  .ttl{
    padding: 25px 25px 35px;
  }
  .ttl .date{
    font-size: 1.8rem;
    text-align: center;
    margin-top: 10px;
  }
  
  
  
  .inner-s{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  
  
  .sec{
    margin-bottom: 60px;
  }
  
  
  .align-center-sp{
    text-align: center;
  }
  .align-left-sp{
    text-align: left;
  }
  .align-right-sp{
    text-align: right;
  }
}




/* ------- 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);
}
@media print {
  .fade-in {
    opacity: 1;
  }
}