@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #3F392D;
  background: #FFFCED;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  word-wrap: break-word;
}

.fixde {
  height: 100vh;
  overflow: hidden;
}

img {
  width: 100%;
}

.br {
  display: inline-block;
}

.noScroll {
  height: 100lvh;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #FFFCED;
}

.header__wapper {
  width: 94%;
  max-width: 1920px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__wapper h1 a img {
  width: 200px;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.header__wapper h1 a img:hover {
  opacity: 0.5;
}

.nav__ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__ul__li {
  position: relative;
}

.nav__ul__li__ul {
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  padding: 30px 0 15px;
  background: #FFFCED;
  transition: 0.25s;
  transition-timing-function: ease-out;
  visibility: hidden;
  opacity: 0;
}

.nav__ul__li__ulArea a {
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.nav__ul__li__ulArea a:hover {
  color: #5A9F4D;
}

.nav__ul__li:hover .nav__ul__li__ul {
  visibility: initial;
  opacity: 1;
}

.nav__ul__li__ul__li {
  position: relative;
  padding: 7px 0;
  text-align: center;
  border-bottom: solid 1px #ECE4CC;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav__ul__li__ul__li__ul {
  width: 100px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.25s;
  transition-timing-function: ease-out;
  visibility: hidden;
  opacity: 0;
}

.nav__ul__li__ul__li:hover .nav__ul__li__ul__li__ul {
  visibility: initial;
  opacity: 1;
}

.nav__ul__li__ul__li__ul__li {
  padding: 7px 0;
  border-bottom: solid 1px #ECE4CC;
}

.nav__ul__li__ul__li__ul__li:last-child {
  border: none;
}

.nav__ul__li__ul__li p {
  position: relative;
}

.nav__ul__li__ul__li p span {
  position: absolute;
  display: block;
  left: 65%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: solid 2px #333333;
  border-bottom: solid 2px #333333;
}

.nav__ul__li__ul__li p .nav__ul__li__ul__li__span {
  left: 75%;
}

.nav__ul__li__ul__li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__ul__li__ul__li:last-child {
  border: none;
}

.nav__ul__li:first-child:hover .nav__ul__li__ul {
  visibility: initial;
  opacity: 1;
}

.nav__ul__li:last-child .nav__ul__li__a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  color: #5A9F4D;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.nav__ul__li:last-child .nav__ul__li__a:hover {
  opacity: 0.5;
}

.nav__ul__li:last-child .nav__ul__li__a img {
  width: 200px;
}

.nav__ul__li__a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.nav__ul__li__a:hover {
  color: #5A9F4D;
}

.nav__ul__li__a span {
  width: 10px;
  height: 1px;
  background: #5A9F4D;
  display: block;
}

.nav__ul__liButton:hover {
  color: #333333;
}


@media (max-width: 1023px) {

  .header__wapper {
    height: 75px;
  }

  .header__wapper h1 {
    position: relative;
    z-index: 99999;
  }

  .header__wapper h1 a img {
    width: 150px;
  }

  .nav {
    z-index: 99998;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100lvh;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transition-timing-function: ease-out;
    background: #FFFCED;
    overflow-y: scroll;
  }

  .nav.open {
    visibility: initial;
    opacity: 1;
  }

  .menu {
    z-index: 99999;
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
  }

  .menu span {
    width: 100%;
    height: 3px;
    background: #5A9F4D;
    position: absolute;
    top: 5px;
    left: 0;
    border-radius: 10px;
    transition: 0.3s;
    transition-timing-function: ease-out;
  }

  .menu span:nth-child(2) {
    top: 15px;
  }

  .menu span:nth-child(3) {
    top: 25px;
  }

  .menu.active span {
    top: 15px;
    rotate: -45deg;
  }

  .menu.active span:nth-child(2) {
    opacity: 0;
  }

  .menu.active span:nth-child(3) {
    top: 15px;
    rotate: 45deg;
  }



  .nav__ul {
    max-width: 400px;
    flex-direction: column;
    margin: 100px auto 100px;
    gap: 0;
  }

  .nav__ul__li {
    width: 90%;
    margin: 0 auto;
  }

  .nav__ul__li__a {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .nav__ul__li:last-child .nav__ul__li__a img {
    width: 100%;
    max-width: 400px;
  }

  .nav__ul__li__ul {
    position: static;
    visibility: initial !important;
    opacity: 1;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: hidden;
    transition: 0.3s;
    transition-timing-function: ease-out;
    display: none;
    padding: 0;
  }


  .nav__ul__li__ul__li {
    padding: 0;
  }

  .nav__ul__li__ul__li p {
    padding: 7px 0;
  }

  .nav__ul__li__ul__li__ul {
    position: initial;
    visibility: initial;
    opacity: 1;
    width: 100%;
    transform: none;
    display: none;
  }

  .nav__ul__li__ul__li:last-child {
    margin-bottom: 30px;
  }

  .nav__ul__li__a span {
    width: 8px;
    height: 8px;
    background: none;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    rotate: -45deg;
  }

  .nav__ul__li:first-child .nav__ul__li__a span {
    position: relative;
    width: 12px;
    height: 2px;
    background: #333;
    rotate: 0deg;
  }

  .nav__ul__li:first-child .nav__ul__li__a span::after {
    content: "";
    display: block;
    height: 12px;
    width: 2px;
    top: -5px;
    left: 5px;
    transform-origin: center;
    background: #333333;
    position: absolute;
    transition: 0.3s;
    transition-timing-function: ease-out;
  }


  .nav__ul__li .active span::after {
    transform: rotate(90deg);
  }

  .nav__ul__li__ul__li p span {
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
    transition: 0.3s;
    transition-timing-function: ease-out;
  }

  .nav__ul__li__ul__li .active span {
    top: 55%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .nav__top {
    padding-top: 7px;
  }

  .nav__bottom {
    padding-bottom: 7px;
  }
}


@media (max-width: 767px) {
  .header__wapper h1 a img {
    width: 120px;
  }
}





.footer {
  position: relative;
  z-index: 10;
  background: url(images/common/footer-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0 50px;
}

.footer__wapper {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}

.footer__wapper__contents {
  max-width: 1240px;
  margin: 0 auto;
}

.footer__wapper__contents__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 150px;
}

.footer__wapper__contents__top h2 {
  width: 200px;
}

.footer__wapper__contents__top h2 a {
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.footer__wapper__contents__top h2 a:hover {
  opacity: 0.5;
}

.footer__wapper__contents__nav__ul {
  display: flex;
  gap: 30px;
}

.footer__wapper__contents__nav__ul li a {
  color: #F2F2F2;
  font-size: 1.4rem;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.footer__wapper__contents__nav__ul li a:hover {
  color: #5A9F4D;
}

.copy {
  width: 250px;
  margin: 0 auto;
}

@media (max-width: 1440px) {

  .footer__wapper__contents__top {
    align-items: flex-start;
  }

  .footer__wapper__contents__nav__ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 300px;
  }

  .footer__wapper__contents__nav__ul li {
    width: calc(100% / 2 - 15px);
  }
}


@media (max-width: 1023px) {
  .footer__wapper__contents {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {

  .footer {
    padding: 75px 0;
  }

  .footer__wapper__contents__top {
    flex-direction: column;
    gap: 50px;
    width: fit-content;
    margin: 0 auto 100px;
    align-items: center;
  }
}

.breadcrumbs {
  width: 90%;
  max-width: 1280px;
  margin: 10px auto;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumbs ul li {
  font-size: 1.4rem;
  font-weight: 700;
}

.breadcrumbs ul li:nth-child(even) {
  width: 8px;
  height: 8px;
  border-right: solid 2px #333;
  border-bottom: solid 2px #333;
  rotate: -45deg;
}

.breadcrumbs ul li a {
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.breadcrumbs ul li a:hover {
  color: #5A9F4D;
}

.sec8 {
  position: relative;
  z-index: 10;
  width: 90%;
  padding: 100px 0 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.sec8__wapper__en {
  width: 90%;
  max-width: 650px;
  margin-bottom: 50px;
}

.sec8__bottom {
  display: flex;
  align-items: flex-start;
}

.sec8__bottom__left {
  width: 30%;
  min-width: 300px;
}

.sec8__bottom__left h2 {
  font-size: 3.6rem;
  letter-spacing: 0.5rem;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 10px;
}

.sec8__bottom__left p {
  font-weight: 400;
  font-size: 1.4rem;
}

.sec8__bottom__right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec8__bottom__right a {
  width: 47.5%;
  display: block;
  padding: 30px 0;
  border-radius: 200px;
  background: #333333;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.sec8__bottom__right__pcbutton {
  width: 47.5%;
  display: block;
  padding: 30px 0;
  border-radius: 200px;
  background: #333333;
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.sec8__bottom__right a:hover {
  opacity: 0.5;
}

.sec8__bottom__right .greenbutton {
  background: #5A9F4D;
}

.sec8__bottom__right__icon {
  height: 30px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

.sec8__bottom__right p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1;
}

.sec8__bottom__right p img {
  display: block;
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.sec8__bottom__right .spbutton {
  display: none;
}


@media (max-width: 1440px) {
  .sec8__bottom__right {
    flex-direction: column;
    gap: 25px;
  }

  .sec8__bottom__right a {
    width: 100%;
  }

  .sec8__bottom__right__pcbutton {
    width: 100%;
  }
}


@media (max-width: 1023px) {
  .sec8__wapper {
    margin: 0;
  }
}

@media (max-width: 767px) {

  .sec8 {
    padding: 100px 0 100px;
  }

  .sec8__sp {
    display: none;
  }

  .sec8__bottom__left {
    width: 100%;
    max-width: none;
  }

  .sec8__bottom {
    flex-direction: column;
    gap: 30px;
  }

  .sec8__bottom__left h2 {
    font-size: 2.4rem;
    margin-bottom: 0;
  }

  .sec8__bottom__right {
    width: 100%;
  }

  .sec8__bottom__right a {
    width: 100%;
    padding: 15px 0;
  }

  .sec8__bottom__right__pcbutton {
    display: none;
  }

  .sec8__bottom__right .spbutton {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .sec8__bottom__right__icon {
    height: 20px;
  }

  .sec8__bottom__right p {
    font-size: 1.8rem;
  }

  .sec8__bottom__right p img {
    height: 16px;
  }

  .sec8__wapper__en {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .breadcrumbs ul {
    gap: 10px;
  }
}