@charset "utf-8";

/* ↓↓↓ common ↓↓↓ */
:root {
  --text-sans: 'Noto Sans JP', sans-serif;
  --text-barlow: "Barlow", sans-serif;
}

body {
  font-size: 1.6rem;
  font-family: var(--text-sans);
}

.-noscroll {
  overflow: hidden;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media (max-width: 768px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

.-wb {
  display: inline-block;
}

/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
.header {
  position: fixed;
  top: 30px;
  height: 20px;
  z-index: 5;
}

.header .logo {
  display: block;
  width: 262px;
}

.header .sub {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 9px;
    left: 0;
    width: 100%;
    z-index: 8;
  }

  .header .logo-wrap .logo {
    display: block;
    position: relative;
    width: 227px;
    height: 51px;
  }

  .header .logo-wrap .sub {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-left: 19px;
    transition: color 300ms ease;
  }

  .header .menu-btn {
    position: relative;
    width: 47px;
    height: 22px;
    margin: 20px 28px 0 0;
  }

  .header .menu-btn span:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 47px;
    height: 2px;
    background-color: #fff;
    transition: top 300ms ease, rotate 300ms ease;
  }

  .header .menu-btn.-active span:nth-of-type(1) {
    top: 50%;
    rotate: 20deg;
  }

  .header .menu-btn span:nth-of-type(2) {
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    left: 0;
    width: 47px;
    height: 2px;
    background-color: #fff;
  }

  .header .menu-btn.-active span:nth-of-type(2) {
    display: none;
  }

  .header .menu-btn span:nth-of-type(3) {
    position: absolute;
    top: 100%;
    left: 0;
    width: 47px;
    height: 2px;
    background-color: #fff;
    transition: top 300ms ease, rotate 300ms ease;
  }

  .header .menu-btn.-active span:nth-of-type(3) {
    top: 50%;
    rotate: -20deg;
  }
}
/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ sp-menu ↓↓↓ */
.sp-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-menu {
    display: block;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background-color: #0E2906;
    z-index: 7;
    padding-bottom: 40px;
    transition: right 300ms ease;
  }

  .sp-menu.-active {
    right: 0;
  }

  .sp-menu .inner {
    height: fit-content;
    margin: max(21.5892dvh, 90px) 0 0 39px;
  }

  .sp-menu .inner .list .item {
    display: block;
    width: fit-content;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 16px;
    color: #fff;
  }

  .sp-menu .inner .list a.item {
    position: relative;
    padding-right: 21px;
  }

  .sp-menu .inner .list a.item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 13px;
    height: 13px;
    background: url(../img/common/ex-link.svg) no-repeat;
  }

  .sp-menu .inner .list a.item.-internal::after {
    display: none;
  }

  .sp-menu .inner .list .item:first-child {
    margin-top: 0;
  }

  .sp-menu .inner .list .item.-small {
    font-size: 1.2rem;
    margin: 7px 0 0 16px;
  }

  .sp-menu .inner .list .item:nth-of-type(4) {
    margin-top: 10px;
  }

  .sp-menu .inner .entry {
    display: grid;
    width: 180px;
    height: 48px;
    background-color: #fff;
    margin-top: 64px;
    align-items: center;
    justify-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--text-barlow);
    color: #2F7048;
    letter-spacing: 0.2em;
    transition: background-color 300ms ease, color 300ms ease;
  }

  .sp-menu .inner .corporate {
    display: block;
    position: relative;
    width: fit-content;
    margin-top: 48px;
    font-size: 1.2rem;
    color: #fff;
    transition: opacity 300ms ease;
  }

  .sp-menu .inner .corporate::after {
    content: '';
    position: absolute;
    translate: 0 -50%;
    right: -21px;
    top: 50%;
    width: 13px;
    height: 13px;
    background: url(../img/common/ex-link.svg) no-repeat;
  }
}
/* ↑↑↑ sp-menu ↑↑↑ */

/* ↓↓↓ footer ↓↓↓ */
.footer {
  position: relative;
  width: 100%;
  background-color: #0E2906;
  padding: 0 20px;
  z-index: 6;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 0 9px;
  }
}

.footer .inner {
  max-width: 1184px;
  margin: 0 auto;
  padding: 58px 0;
}

@media screen and (max-width: 768px) {
  .footer .inner {
    max-width: 100%;
    margin: 0;
    padding: 40px 0 48px;
  }
}

.footer .inner .wrap {
  display: flex;
  justify-content: space-between;
}

.footer .inner .wrap .about-block {
  width: 332px;
}

.footer .inner .wrap .about-block .logo {
  width: 332px;
}

@media screen and (max-width: 768px) {
  .footer .inner .wrap .about-block .logo {
    width: 269px;
  }
}

.footer .inner .wrap .about-block .sub {
  margin-left: 38px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer .inner .wrap .about-block .sub {
    margin: 9px 0 0 30px;
  }
}

.footer .inner .wrap .about-block .entry {
  display: grid;
  width: 180px;
  height: 48px;
  background-color: #fff;
  margin: 56px 0 0 34px;
  align-items: center;
  justify-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--text-barlow);
  color: #2F7048;
  letter-spacing: 0.2em;
  transition: background-color 300ms ease, color 300ms ease;
}

@media screen and (min-width: 769px) {
  .footer .inner .wrap .about-block .entry:hover {
    color: #fff;
    background-color: #2F7048;
  }
}

@media screen and (max-width: 768px) {
  .footer .inner .wrap .about-block .entry {
    margin: 24px 0 0 30px;
  }
}

.footer .inner .wrap .about-block .corporate {
  display: block;
  position: relative;
  width: fit-content;
  margin: 64px 0 0 34px;
  font-size: 1.2rem;
  color: #fff;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .footer .inner .wrap .about-block .corporate:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .footer .inner .wrap .about-block .corporate {
    margin: 32px 0 0 30px;
  }
}

.footer .inner .wrap .about-block .corporate::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  right: -21px;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url(../img/common/ex-link.svg) no-repeat;
}

.footer .inner .wrap .sitemap {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  width: 556px;
  margin-top: 56px;
}

@media screen and (max-width: 820px) {
  .footer .inner .wrap .sitemap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 20px;
    row-gap: 32px;
    align-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .footer .inner .wrap .sitemap {
    display: none;
  }
}

.footer .inner .wrap .sitemap .left-block,
.footer .inner .wrap .sitemap .right-block {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  width: fit-content;
}

.footer .inner .wrap .sitemap .left-block .item .en,
.footer .inner .wrap .sitemap .right-block .item .en {
  font-family: var(--text-barlow);
  font-size: 1.0rem;
  font-weight: 600;
  color: #4C9166;
}

.footer .inner .wrap .sitemap .left-block .item .head,
.footer .inner .wrap .sitemap .right-block .item .head {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.42;
  margin-top: 4px;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .footer .inner .wrap .sitemap .left-block .item a.head:hover,
  .footer .inner .wrap .sitemap .right-block .item a.head:hover {
    opacity: 0.7;
  }
}

.footer .inner .wrap .sitemap .left-block .item .head.-ex,
.footer .inner .wrap .sitemap .right-block .item .head.-ex {
  position: relative;
  padding-right: 21px;
}

.footer .inner .wrap .sitemap .left-block .item .head.-ex::after,
.footer .inner .wrap .sitemap .right-block .item .head.-ex::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 13px;
  height: 13px;
  background: url(../img/common/ex-link.svg) no-repeat;
}

.footer .inner .wrap .sitemap .right-block .item .link-list {
  display: grid;
  row-gap: 8px;
  margin-top: 16px;
}

.footer .inner .wrap .sitemap .right-block .item .link-list .link {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 1.2rem;
  padding-right: 21px;
  color: #fff;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .footer .inner .wrap .sitemap .right-block .item .link-list .link:hover {
    opacity: 0.7;
  }
}

.footer .inner .wrap .sitemap .right-block .item .link-list .link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 13px;
  height: 13px;
  background: url(../img/common/ex-link.svg) no-repeat;
}

.footer .inner .copyright {
  display: block;
  font-family: var(--text-barlow);
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .footer .inner .copyright {
    text-align: left;
    margin: 16px 0 0 30px;
  }
}
/* ↑↑↑ footer ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */
