@charset "UTF-8";

/******************************
header
******************************/
.cmnhead {
  position: fixed;
  top: 0;
  left: 0;
  transition: .5s;
  padding: 2rem;
  width: 100%;
  z-index: 10;
}
.cmnhead .logo {
  width: 300px;
  z-index: 10;
}
.cmnhead .navlist > li:not(:last-child) {
  margin-right: 2rem;
}
.cmnhead .navlist > li:last-child a {
  background: #8FC224;
  display: inline-block;
  padding: .5rem 2.5rem .5rem 1rem;
  position: relative;
  transition: .5s;
}
.cmnhead .navlist > li:last-child a::after {
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  border-right: 0;
  content: '';
  position: absolute;
  top: 15px;
  right: 8%;
  height: 0;
  width: 0;
}
.cmnhead .navlist > li:last-child a:hover {
  background: #181818;
  opacity: 1;
}

/* megamenu */
.megamenu {
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 4rem;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  max-width: 1080px;
  width: 100%;
}
.megamenu::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  height: 40px;
  width: 100vw;
}
.hasmega:hover .megamenu {
  opacity: 1;
  pointer-events: all;
  transition: .5s;
}
.megalist {
  display: flex;
  gap: 4rem;
}
.megalist .imgbox {
  overflow: hidden;
  margin-bottom: 1rem;
}
.megalist a img {
  transition: .5s;
}
.megalist a:hover img {
  transform: scale(1.1);
  transition: .5s;
}
.megalist .txtbox p {
  font-weight: 600;
}

.spbtn,
.splogo {
  display: none;
}
.spbtn {
  cursor: pointer;
  position: fixed;
  top: 1rem;
  right: 1rem;
  height: 50px;
  width: 50px;
  z-index: 11;
}
.spbtn span {
  background: #fff;
  display: inline-block;
  position: absolute;
  right: 13px;
  transition: all .4s;
  height: 3px;
  width: 45%;
}
.spbtn span:nth-of-type(1) {
  top: 15px;
}
.spbtn span:nth-of-type(2) {
  top: 23px;
}
.spbtn span:nth-of-type(3) {
  top: 31px;
}
.spbtn.active span {
  top: 50%;
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 30%;
}
.spbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.spbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 1180px) {
  .spbtn,
  .splogo {
    display: block;
  }
  .cmnhead.change {
    background: rgba(0, 0, 0, .7);
  }
  .cmnhead .logo {
    width: 200px;
  }
  .cmnnav {
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    max-width: 350px;
    overflow: hidden;
    padding: 4rem 1rem;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100lvh;
    width: 100vw;
    transition: 1s;
    z-index: 10;
  }
  .cmnnav.active {
    opacity: 1;
    pointer-events: all;
  }
  .cmnnav .navinner {
    display: block;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    z-index: 1;
  }
  .cmnnav .splogo {
    margin: 6rem auto 0;
    max-width: 300px;
  }
  .cmnnav .navlist {
    gap: 0;
    margin: 2rem 0;
  }
  .cmnnav .navlist > li {
    width: 100%;
  }
  .cmnnav .navlist > li {
    border-bottom: 1px solid #fff;
    padding: 1rem 0;
    padding-left: 1rem;
  }
  .cmnhead .navlist > li:not(:last-child) {
    margin-right: 0;
  }
  .cmnnav .navlist > li:last-child {
    border-bottom: 0;
  }
  .cmnnav .navlist > li.hasmega a {
    position: relative;
  }
  .cmnnav .navlist > li.hasmega a::after {
    color: #fff;
    content: "\f054";
    font: var(--fa-font-solid);
    font-size: 1.4rem;
    position: absolute;
    top: 6px;
    right: -18px;
    transform: rotate(90deg);
  }

  .megamenu {
    background: initial;
    position: static;
    transform: initial;
    padding: 0;
    opacity: 1;
    pointer-events: all;
    transition: initial;
    max-width: 100%;
    margin-top: 1rem;
  }
  .megamenu::before {
    display: none;
  }
  .hasmega:hover .megamenu {
    transition: initial;
  }
  .megamenu .ttlbox1 {
    display: none;
  }
  .megalist {
    gap: 1rem;
    flex-direction: column;
  }
  .megalist li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .megalist a {
    display: flex;
    gap: 2rem;
  }
  .megalist .imgbox {
    margin-bottom: 0;
    width: 25%;
  }
  .megalist .txtbox {
    width: 75%;
  }
  .megalist .txtbox p {
    font-weight: 500;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .spbtn {
    top: 2rem;
  }
  .cmnnav {
    background: rgba(0, 0, 0, .9);
  }
}

/******************************
footer
******************************/
.cmnfot {
  padding: 6rem 0;
}
.cmnfot .fotbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}
.fotbox1 {
  width: 30%;
}
.fotbox1 .flogo {
  margin-bottom: 2rem;
}
.fmenubox .fmenu {
  display: flex;
  justify-content: center;
  gap: 0 2rem;
}
.fotbox2 .fnav {
  display: flex;
  gap: 2rem;
}
.fotbox2 .fnav li {
  padding-left: 1.5rem;
  position: relative;
}
.fotbox2 .fnav li:not(:last-child) {
  margin-bottom: 1rem;
}
.fotbox2 .fnav li::after {
  color: #fff;
  content: "\f054";
  font: var(--fa-font-solid);
  font-size: 1.4rem;
  position: absolute;
  top: 8px;
  left: 0;
}
.fotbox2 .fnav li.menu2 {
  margin-left: 1.6rem;
}
.fotbox2 .fnav li.menu3 {
  margin-left: 3.4rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .cmnfot .fotbox {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .fotbox1 {
    width: 90%;
  }
  .fotbox1 .flogo {
    max-width: 350px;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .fotbox1 .flogo {
    max-width: 300px;
  }
  .cmnfot .fotbox {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .fotbox2 .fnav {
    flex-wrap: wrap;
  }
  .fotbox2 .fnav ul {
    width: calc(100% / 2 - 1rem);
  }
  .fmenubox .fmenu {
    flex-wrap: wrap;
    justify-content: initial;
    gap: 1rem;
  }
  .fmenubox .fmenu li {
    width: calc(100% / 2 - .5rem);
  }
}

/******************************
common
******************************/
.link-txtunder,
.singlecontent a {
  color: #8FC224;
  text-decoration: underline;
}
.link-txtunder:hover,
.singlecontent a:hover {
  text-decoration: none;
}
.singlecontent p,
.txtbox p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.kome li,
.ten li {
  padding-left: 2rem;
  position: relative;
}
.kome li::before,
.ten li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.ten li::before {
  content: "・";
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .anchor {
    scroll-margin-top: 30px;
  }
}

/******************************
inner
******************************/
.inner1,
.inner2,
.inner3 {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 2rem;
}
.inner2 {
  max-width: 1920px;
}
.inner3 {
  max-width: 1280px;
}
.innernp {
  margin: 0 auto;
  max-width: 1920px;
}
.inner2 .inner1,
.inner2 .inner3,
.inner3 .inner1 {
  padding: 0 !important;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
flex
******************************/
.flexbox1 {
  display: flex;
  flex-wrap: wrap;
}
.flexbox2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex {
  display: flex;
}
.frr {
  flex-direction: row-reverse;
}
.fac {
  align-items: center;
}
.fast {
  align-items: stretch;
}
.fafe {
  align-items: flex-end;
}
.fafs {
  align-items: flex-start;
}
.fabl {
  align-items: baseline;
}
.fbox,
.ftxtbox,
.fimgbox {
  width: 48%;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .fbox,
  .ftxtbox,
  .fimgbox {
    width: 100%;
  }
}

/******************************
ttl
******************************/
.ttlbox1 {
  margin-bottom: 2rem;
}
.ttlbox1 .ja {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  padding-left: 6rem;
  position: relative;
}
.ttlbox1 .ja::before {
  background: #ccc;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 2px;
  width: 50px;
}
.ttlbox1 .txt {
  margin-top: 1rem;
}
.ttlbox2 {
  text-align: center;
  margin-bottom: 3rem;
}
.ttlbox2 .ja {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 400;
  padding-left: 5rem;
  position: relative;
}
.ttlbox2 .ja::before {
  aspect-ratio: 987/1093;
  background: #fff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  mask-image: url(../images/common/logoobj1.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 40px;
}
.ttlbox2 .txt {
  margin-top: 1rem;
  text-align: left;
}
.ttlbox3 {
  margin-bottom: 2rem;
}
.ttlbox3 .ja {
  border-left: 2px solid #8FC224;
  font-size: 1.8rem;
  font-weight: 400;
  padding-left: 1rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .ttlbox1 .ja {
    font-size: 1.7rem;
  }
  .ttlbox2 .ja {
    font-size: 1.8rem;
    padding-left: 4rem;
  }
  .ttlbox2 .ja::before {
    width: 30px;
  }
  .ttlbox3 .ja {
    font-size: 1.6rem;
  }
}

/******************************
btn
******************************/
.morebtn1 a {
  display: inline-block;
  position: relative;
  max-width: 180px;
  width: 100%;
}
.morebtn1 a:hover {
  opacity: 1;
}
.morebtn1 a::before,
.morebtn1 a::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.morebtn1 a::before {
  background: #fff;
  right: 0;
  height: 2px;
  width: 80px;
}
.morebtn1 a::after {
  background: #8FC224;
  right: 30%;
  transition: .5s;
  height: 10px;
  width: 10px;
}
.morebtn1 a:hover::after {
  right: 5%;
  transition: .5s;
}

.morebtn2 a,
.morebtn2 span {
  background: #8FC224;
  color: #fff;
  display: inline-block;
  opacity: 1;
  padding: .5rem 2.5rem .5rem 1rem;
  position: relative;
  transition: .5s;
}
.morebtn2 a::before,
.morebtn2 span::before {
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  border-right: 0;
  content: '';
  position: absolute;
  top: 15px;
  right: 5%;
  height: 0;
  width: 0;
}
.morebtn2 a:hover,
.morebtn2 span:hover {
  background: #181818;
  opacity: 1;
}

/******************************
newslist
******************************/
.newslist {
  display: flex;
  flex-direction: column;
}
.newslist li {
  border-top: 1px solid #ccc;
}
.newslist li:last-child {
  border-bottom: 1px solid #ccc;
}
.newslist a {
  display: block;
  padding: 2rem 0;
  position: relative;
}
.newslist a::before {
  aspect-ratio: 9/7;
  background: #fff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  mask-image: url(../images/common/news_arrow.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: .5s;
  width: 20px;
}
.newslist .time {
  font-size: 1.1rem;
}
.newslist .cat {
  background: #8FC224;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 1rem;
  padding: 0 .5rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .newslist a::before {
    width: 15px;
  }
  .newslist a {
    padding: 1rem 0;
    padding-right: 5rem;
  }
  .newslist .ttl {
    display: block;
  }
}

/******************************
obj
******************************/
.obj {
  position: absolute;
}
.logoobj1 {
  content: url(../images/common/logoobj1.svg);
}
.logoobj2 {
  content: url(../images/common/logoobj2.svg);
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
}

/******************************
animation
******************************/
@keyframes textloop1 {
  0% { transform: translateX(0%);}
  100% { transform: translateX(-100%);}
}
@keyframes textloop2 {
  0% { transform: translateX(0%);}
  100% { transform: translateX(100%);}
}

/******************************
mask
******************************/
.img.mask::before {
  background: #000;
  content: '';
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/******************************
スクルール連動アニメーション
******************************/
.leftover-box {
  overflow: hidden;
}
.leftover-box .leftover-box-in {
  overflow: hidden;
  position: relative;
  transition-delay: 0.1s;
  transform: translate3d(-100.5%, 0px, 0px);
  transition-delay: 0s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: left center;
  transition-property: transform, -webkit-transform;
}
.leftover-box .leftover-box-in::before {
  content: "";
  background: #181818;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transform: scaleX(1);
  transition-delay: 0.4s;
  transition-duration: 1.5s;
  transform-origin: right center;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 5;
}
.leftover-box .leftover-box-in img {
  transform: scale(1);
  transition-duration: 4s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
.leftover-box.animated .leftover-box-in {
  transform: translate3d(0px, 0px, 0px);
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}