@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://use.typekit.net/kkb4laj.css");
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-40px);
    /* 上に20px移動 */
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle {
  0% {
    color: #8CB808;
    transform: translateY(10px);
  }
  40% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  50% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  60% {
    color: #282828;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle2 {
  0% {
    color: #282828;
    transform: translateY(20px);
  }
  40% {
    color: #282828;
    transform: translateY(-20px);
  }
  60% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle3 {
  0% {
    color: #8CB808;
    transform: translateY(10px);
  }
  40% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  50% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  60% {
    color: #FFF;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: auto;
  scroll-behavior: smooth;
}

html {
  font-size: 0.695vw;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #282828;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #f9f6f2;
}

a {
  color: #F9F6F2;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

a:hover, a:active, a.active {
  color: #ede7de;
}

h1 a, .pgtop a {
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

/* ---------------------------------------------------------common--------------------------------------------------------- */
.brpc {
  display: block;
}

.brsp {
  display: none;
}

header {
  width: 100%;
  background-color: #f9f6f2;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
header .inner {
  width: 100%;
  height: 80px;
  padding: 0px 8px 0 40px;
  border-bottom: solid 1px #ede7de;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
header .inner h1 a {
  width: 280px;
  height: 21px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease-in 0s;
}
header .inner nav {
  margin-left: auto;
}
header .inner nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 40px;
}
header .inner nav ul li {
  position: relative;
}
header .inner nav ul li.active a::before {
  content: "";
  width: 11px;
  height: 11px;
  background-image: url(../images/icon_active.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: -15px;
}
header .inner nav ul li a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 5px;
  display: inline-block;
}
header .inner nav ul li a:hover span {
  color: #225a02;
}
header .inner nav ul li a span {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  transition: all 0.25s ease-in;
}
header .inner nav ul li a span:nth-child(2) {
  display: none;
}
header .inner .btn {
  width: 152px;
  margin: 0 0 0 48px;
  transition: all 0.3s ease-in 0s;
}
header .inner .btn:hover a {
  background-color: #225a02;
}
header .inner .btn a {
  color: #FFF;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 100%;
  height: 64px;
  background-color: #2e7b03;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in 0s;
}
header .inner .hum {
  display: none;
}
header .inner p {
  width: 100%;
  height: 40px;
  background-image: url(../images/bg_tt.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease-in 0s;
}
header .inner p span {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  transition: all 0.3s ease-in 0s;
}

main {
  margin-bottom: 80px;
}
main#container section#hero.on .inner .title .titleslider {
  opacity: 1;
}
main#container section#hero.on .inner .title .intitle h2 span {
  opacity: 1;
  animation-name: bounceTitle2;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(2) {
  animation-delay: 0.1s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(3) {
  animation-delay: 0.2s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(4) {
  animation-delay: 0.3s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(5) {
  animation-delay: 0.4s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(6) {
  animation-delay: 0.5s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(7) {
  animation-delay: 0.6s;
}
main#container section#hero.on .inner .title .intitle h2 span:nth-child(8) {
  animation-delay: 0.7s;
}
main#container section#hero.on .inner .title .intitle .breadcrumb {
  opacity: 1;
}
main#container section#hero.on .inner > figure {
  animation: bounce 0.5s ease-in-out 1 1s;
}
main#container section#hero.on .inner > figure img {
  opacity: 1;
}
main#container section#hero .inner .title .titleslider {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main#container section#hero .inner .title .intitle h2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-strat;
  align-items: flex-start;
}
main#container section#hero .inner .title .intitle h2 span {
  color: #8CB808;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(2) {
  transition-delay: 0.1s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(3) {
  transition-delay: 0.2s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(4) {
  transition-delay: 0.3s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(5) {
  transition-delay: 0.4s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(6) {
  transition-delay: 0.5s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(7) {
  transition-delay: 0.6s;
}
main#container section#hero .inner .title .intitle h2 span:nth-child(8) {
  transition-delay: 0.7s;
}
main#container section#hero .inner .title .intitle .breadcrumb {
  opacity: 0;
  transition: all 0.5s ease-in 0.75s;
}
main#container section#hero .inner > figure img {
  opacity: 0;
  transition: all 0.25s ease-in 1s;
}
main#container section .ctitle.on h3.br > div span,
main#container section .ctitle2.on h3.br > div span {
  animation: bounceTitle 0.25s ease-in-out 1 0s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(1),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(1) {
  animation-delay: 1.4s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(2),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(2) {
  animation-delay: 1.5s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(3),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(3) {
  animation-delay: 1.6s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(4),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(4) {
  animation-delay: 1.7s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(5),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(5) {
  animation-delay: 1.8s;
}
main#container section .ctitle.on h3.br > div:nth-child(2) span:nth-child(6),
main#container section .ctitle2.on h3.br > div:nth-child(2) span:nth-child(6) {
  animation-delay: 1.9s;
}
main#container section .ctitle.on h3 span,
main#container section .ctitle2.on h3 span {
  animation: bounceTitle 0.25s ease-in-out 1 0s;
  opacity: 1;
}
main#container section .ctitle.on h3 span:nth-child(2),
main#container section .ctitle2.on h3 span:nth-child(2) {
  animation-delay: 0.1s;
}
main#container section .ctitle.on h3 span:nth-child(3),
main#container section .ctitle2.on h3 span:nth-child(3) {
  animation-delay: 0.2s;
}
main#container section .ctitle.on h3 span:nth-child(4),
main#container section .ctitle2.on h3 span:nth-child(4) {
  animation-delay: 0.3s;
}
main#container section .ctitle.on h3 span:nth-child(5),
main#container section .ctitle2.on h3 span:nth-child(5) {
  animation-delay: 0.4s;
}
main#container section .ctitle.on h3 span:nth-child(6),
main#container section .ctitle2.on h3 span:nth-child(6) {
  animation-delay: 0.5s;
}
main#container section .ctitle.on h3 span:nth-child(7),
main#container section .ctitle2.on h3 span:nth-child(7) {
  animation-delay: 0.6s;
}
main#container section .ctitle.on h3 span:nth-child(8),
main#container section .ctitle2.on h3 span:nth-child(8) {
  animation-delay: 0.7s;
}
main#container section .ctitle.on h3 span:nth-child(9),
main#container section .ctitle2.on h3 span:nth-child(9) {
  animation-delay: 0.8s;
}
main#container section .ctitle.on h3 span:nth-child(10),
main#container section .ctitle2.on h3 span:nth-child(10) {
  animation-delay: 0.9s;
}
main#container section .ctitle.on h3 span:nth-child(11),
main#container section .ctitle2.on h3 span:nth-child(11) {
  animation-delay: 1s;
}
main#container section .ctitle.on h3 span:nth-child(12),
main#container section .ctitle2.on h3 span:nth-child(12) {
  animation-delay: 1.1s;
}
main#container section .ctitle.on h3 span:nth-child(13),
main#container section .ctitle2.on h3 span:nth-child(13) {
  animation-delay: 1.2s;
}
main#container section .ctitle.on h3 span:nth-child(14),
main#container section .ctitle2.on h3 span:nth-child(14) {
  animation-delay: 1.3s;
}
main#container section .ctitle.on h3 span:nth-child(15),
main#container section .ctitle2.on h3 span:nth-child(15) {
  animation-delay: 1.4s;
}
main#container section .ctitle.on h3 span:nth-child(16),
main#container section .ctitle2.on h3 span:nth-child(16) {
  animation-delay: 1.5s;
}
main#container section .ctitle.on h3 span:nth-child(17),
main#container section .ctitle2.on h3 span:nth-child(17) {
  animation-delay: 1.6s;
}
main#container section .ctitle.on h3 span:nth-child(18),
main#container section .ctitle2.on h3 span:nth-child(18) {
  animation-delay: 1.7s;
}
main#container section .ctitle.on h3 span:nth-child(19),
main#container section .ctitle2.on h3 span:nth-child(19) {
  animation-delay: 1.8s;
}
main#container section .ctitle.on h3 span:nth-child(20),
main#container section .ctitle2.on h3 span:nth-child(20) {
  animation-delay: 1.9s;
}
main#container section .ctitle.on h3 + p,
main#container section .ctitle2.on h3 + p {
  opacity: 1;
}
main#container section .ctitle.on h4,
main#container section .ctitle2.on h4 {
  opacity: 1;
}
main#container section .ctitle.on h4 + p,
main#container section .ctitle2.on h4 + p {
  opacity: 1;
}
main#container section .ctitle h3.br,
main#container section .ctitle2 h3.br {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0 1.6rem;
}
main#container section .ctitle h3.br > div,
main#container section .ctitle2 h3.br > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(1),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(1) {
  transition-delay: 1.4s;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(2),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(2) {
  transition-delay: 1.5s;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(3),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(3) {
  transition-delay: 1.6s;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(4),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(4) {
  transition-delay: 1.7s;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(5),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(5) {
  transition-delay: 1.8s;
}
main#container section .ctitle h3.br > div:nth-child(2) span:nth-child(6),
main#container section .ctitle2 h3.br > div:nth-child(2) span:nth-child(6) {
  transition-delay: 1.9s;
}
main#container section .ctitle h3 span,
main#container section .ctitle2 h3 span {
  opacity: 0;
  transition: all 0.1s ease-in 0s;
}
main#container section .ctitle h3 span:nth-child(2),
main#container section .ctitle2 h3 span:nth-child(2) {
  transition-delay: 0.1s;
}
main#container section .ctitle h3 span:nth-child(3),
main#container section .ctitle2 h3 span:nth-child(3) {
  transition-delay: 0.2s;
}
main#container section .ctitle h3 span:nth-child(4),
main#container section .ctitle2 h3 span:nth-child(4) {
  transition-delay: 0.3s;
}
main#container section .ctitle h3 span:nth-child(5),
main#container section .ctitle2 h3 span:nth-child(5) {
  transition-delay: 0.4s;
}
main#container section .ctitle h3 span:nth-child(6),
main#container section .ctitle2 h3 span:nth-child(6) {
  transition-delay: 0.5s;
}
main#container section .ctitle h3 span:nth-child(7),
main#container section .ctitle2 h3 span:nth-child(7) {
  transition-delay: 0.6s;
}
main#container section .ctitle h3 span:nth-child(8),
main#container section .ctitle2 h3 span:nth-child(8) {
  transition-delay: 0.7s;
}
main#container section .ctitle h3 span:nth-child(9),
main#container section .ctitle2 h3 span:nth-child(9) {
  transition-delay: 0.8s;
}
main#container section .ctitle h3 span:nth-child(10),
main#container section .ctitle2 h3 span:nth-child(10) {
  transition-delay: 0.9s;
}
main#container section .ctitle h3 span:nth-child(11),
main#container section .ctitle2 h3 span:nth-child(11) {
  transition-delay: 1s;
}
main#container section .ctitle h3 span:nth-child(12),
main#container section .ctitle2 h3 span:nth-child(12) {
  transition-delay: 1.1s;
}
main#container section .ctitle h3 span:nth-child(13),
main#container section .ctitle2 h3 span:nth-child(13) {
  transition-delay: 1.2s;
}
main#container section .ctitle h3 span:nth-child(14),
main#container section .ctitle2 h3 span:nth-child(14) {
  transition-delay: 1.3s;
}
main#container section .ctitle h3 span:nth-child(15),
main#container section .ctitle2 h3 span:nth-child(15) {
  transition-delay: 1.4s;
}
main#container section .ctitle h3 span:nth-child(16),
main#container section .ctitle2 h3 span:nth-child(16) {
  transition-delay: 1.5s;
}
main#container section .ctitle h3 span:nth-child(17),
main#container section .ctitle2 h3 span:nth-child(17) {
  transition-delay: 1.6s;
}
main#container section .ctitle h3 span:nth-child(18),
main#container section .ctitle2 h3 span:nth-child(18) {
  transition-delay: 1.7s;
}
main#container section .ctitle h3 span:nth-child(19),
main#container section .ctitle2 h3 span:nth-child(19) {
  transition-delay: 1.8s;
}
main#container section .ctitle h3 span:nth-child(20),
main#container section .ctitle2 h3 span:nth-child(20) {
  transition-delay: 1.9s;
}
main#container section .ctitle h3 + p,
main#container section .ctitle2 h3 + p {
  opacity: 0;
  transition: all 0.35s ease-in 1s;
}
main#container section .ctitle h4,
main#container section .ctitle2 h4 {
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main#container section .ctitle h4 + p,
main#container section .ctitle2 h4 + p {
  opacity: 0;
  transition: all 0.35s ease-in 0.35s;
}
main#container section .lead {
  opacity: 0;
  transition: all 0.35s ease-in 0.75s;
}
main#container section .lead.on {
  opacity: 1;
}

footer {
  width: 100%;
  position: relative;
}
footer .inner {
  text-align: left;
  width: calc(100% - 160px);
  margin: 0 auto 52px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
footer .inner .box-info {
  width: 280px;
}
footer .inner .box-info h5 {
  width: 100%;
  margin-bottom: 48px;
}
footer .inner .box-info h5 a {
  width: 100%;
  height: 21px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
footer .inner .box-info dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
  margin-bottom: 72px;
}
footer .inner .box-info dl dt {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .inner .box-info dl dd {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
}
footer .inner .box-info dl dd::before {
  content: "";
  width: 15px;
  height: 18px;
  background-image: url(../images/icon_map.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
footer .inner .box-info dl dd a {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-decoration: underline;
  transition: all 0.3s ease-in 0s;
}
footer .inner .box-info dl dd a:hover {
  color: #225a02;
}
footer .inner .box-info > div {
  width: 99px;
}
footer .inner .box-info > div a {
  width: 100%;
  height: 57px;
  background-image: url(../images/logo_jeki.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
footer .inner .box-sitemap {
  width: calc(100% - 280px - 182px);
  margin: 0 0 0 auto;
}
footer .inner .box-sitemap > dl {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 72px;
}
footer .inner .box-sitemap > dl dt a {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  transition: all 0.3s ease-in 0s;
}
footer .inner .box-sitemap > dl dt a:hover {
  color: #225a02;
}
footer .inner .box-sitemap > dl > dd {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .inner .box-sitemap > dl > dd .wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 72px;
}
footer .inner .box-sitemap > dl > dd .wrap dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .inner .box-sitemap > dl > dd .wrap dl dt {
  margin-bottom: 24px;
}
footer .inner .box-sitemap > dl > dd .wrap dl dd:not(:last-child) {
  margin-bottom: 8px;
}
footer .inner .box-sitemap > dl > dd .wrap dl dd a {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  transition: all 0.3s ease-in 0s;
}
footer .inner .box-sitemap > dl > dd .wrap dl dd a:hover {
  color: #225a02;
}
footer .inner .box-sitemap > dl > dd .btn {
  width: 100%;
  margin-top: auto;
}
footer .inner .box-sitemap > dl > dd .btn a {
  width: 100%;
  height: 102px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  background-color: #2e7b03;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease-in 0s;
}
footer .inner .box-sitemap > dl > dd .btn a:hover {
  background-color: #225a02;
}
footer .inner .box-sitemap > dl > dd .btn a:hover::before {
  animation: moveArrow 0.35s ease-in-out 1 0s;
}
@keyframes moveArrow {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0px);
  }
}
footer .inner .box-sitemap > dl > dd .btn a::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 4px;
  background-image: url(../../common/images/arrow_link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 7px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
footer .inner .box-sitemap > dl > dd .btn a span:nth-child(1) {
  color: #FFF;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .inner .box-sitemap > dl > dd .btn a span:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .inner .box-sitemap > dl > dd .jeki {
  display: none;
}
footer .cp {
  width: 100%;
  padding: 32px 0;
  border-top: solid 1px #ede7de;
}
footer .cp p {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .pgtop {
  width: 45px;
  height: 95px;
  background-color: #8CB808;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0px;
  bottom: 59px;
  z-index: 5;
  cursor: pointer;
}
footer .pgtop:hover {
  background-color: #ede7de;
}
footer .pgtop span {
  width: 10px;
  height: 46px;
  background-image: url(../images/pagetop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }

  .brpc {
    display: none;
  }

  .brsp {
    display: block;
  }

  header .inner {
    width: 100%;
    height: 56px;
    padding: 0px 0px 0 16px;
  }
  header .inner h1 {
    position: relative;
    z-index: 10;
  }
  header .inner h1 a {
    width: 171px;
    height: 13px;
  }
  header .inner nav {
    width: 100%;
    height: calc(100% - 56px);
    background-color: #f9f6f2;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: bowrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 56px;
    left: 0px;
    clip-path: inset(0 0 100% 0);
    transition: all 0.5s ease-in;
    pointer-events: none;
  }
  header .inner nav.on {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  header .inner nav ul {
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px 0;
  }
  header .inner nav ul li.active a::before {
    width: 16px;
    height: 16px;
    top: 17px;
    left: -24px;
  }
  header .inner nav ul li a {
    gap: 0 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
  }
  header .inner nav ul li a:hover span {
    color: #282828;
  }
  header .inner nav ul li a span {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    transition: all 0.25s ease-in;
  }
  header .inner nav ul li a span:nth-child(1) {
    order: 2;
  }
  header .inner nav ul li a span:nth-child(2) {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    display: inline-block;
    order: 1;
  }
  header .inner .btn {
    width: 84px;
    margin: 0 0 0 auto;
  }
  header .inner .btn:hover {
    transform: scale(1);
  }
  header .inner .btn a {
    color: #FFF;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    height: 40px;
    border-radius: 8px;
  }
  header .inner .hum {
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    border-left: solid 1px #ede7de;
  }
  header .inner .hum.on > div span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  header .inner .hum.on > div span:nth-child(2) {
    opacity: 0;
  }
  header .inner .hum.on > div span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  header .inner .hum > div {
    width: 16px;
    height: 18px;
    position: relative;
  }
  header .inner .hum > div span {
    width: 100%;
    height: 2px;
    background-color: #2e7b03;
    position: absolute;
    left: 0px;
    transition: all 0.3s ease-in 0s;
  }
  header .inner .hum > div span:nth-child(1) {
    top: 0px;
  }
  header .inner .hum > div span:nth-child(2) {
    top: 8px;
  }
  header .inner .hum > div span:nth-child(3) {
    top: 16px;
  }

  main {
    margin-bottom: 80px;
  }
  main#container section#hero .inner .title .intitle h2 span {
    color: #8CB808;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }

  footer {
    width: 100%;
    position: relative;
  }
  footer .inner {
    text-align: left;
    width: calc(100% - 32px);
    margin: 0 auto 48px auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  footer .inner .box-info {
    width: 100%;
  }
  footer .inner .box-info h5 a {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
  }
  footer .inner .box-info dl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
    margin-bottom: 48px;
  }
  footer .inner .box-info dl dt {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .inner .box-info dl dd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
  }
  footer .inner .box-info dl dd::before {
    content: "";
    width: 15px;
    height: 18px;
    background-image: url(../images/icon_map.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
  }
  footer .inner .box-info dl dd a {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-decoration: underline;
  }
  footer .inner .box-info > div {
    display: none;
  }
  footer .inner .box-sitemap {
    width: 100%;
    padding: 48px 0 0 0;
    margin: 0 auto;
    border-top: solid 1px #ede7de;
  }
  footer .inner .box-sitemap > dl {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
  }
  footer .inner .box-sitemap > dl > dt a {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .inner .box-sitemap > dl > dd {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .inner .box-sitemap > dl > dd .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: sflex-start;
    align-items: flex-start;
    gap: 48px 64px;
    margin-bottom: 48px;
  }
  footer .inner .box-sitemap > dl > dd .wrap dl {
    width: calc((100% - 64px) / 2);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .inner .box-sitemap > dl > dd .wrap dl dt {
    margin-bottom: 24px;
  }
  footer .inner .box-sitemap > dl > dd .wrap dl dt a {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
  footer .inner .box-sitemap > dl > dd .wrap dl dd:not(:last-child) {
    margin-bottom: 8px;
  }
  footer .inner .box-sitemap > dl > dd .wrap dl dd a {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
  footer .inner .box-sitemap > dl > dd .btn {
    width: 100%;
    margin: 0 0 48px 0;
  }
  footer .inner .box-sitemap > dl > dd .btn a {
    width: 100%;
    height: 215px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    background-color: #2e7b03;
    border-radius: 8px;
    position: relative;
  }
  footer .inner .box-sitemap > dl > dd .btn a::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: #f9f6f2;
    background-image: url(../../common/images/arrow_link.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 8px;
    border-radius: 4px;
    position: absolute;
    top: calc(100% - 40px - 8px);
    right: 8px;
  }
  footer .inner .box-sitemap > dl > dd .btn a span:nth-child(1) {
    color: #FFF;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .inner .box-sitemap > dl > dd .btn a span:nth-child(2) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: center;
  }
  footer .inner .box-sitemap > dl > dd .jeki {
    width: 99px;
    margin: 0 auto;
    display: block;
  }
  footer .inner .box-sitemap > dl > dd .jeki a {
    width: 100%;
    height: 57px;
    background-image: url(../images/logo_jeki.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  footer .cp {
    width: calc(100% - 32px);
    padding: 24px 0 48px 0;
    margin: 0 auto;
    border-top: solid 1px #ede7de;
  }
  footer .cp p {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .pgtop {
    width: 45px;
    height: 95px;
    background-color: #8CB808;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0px;
    bottom: 59px;
    z-index: 5;
    cursor: pointer;
  }
  footer .pgtop:hover {
    background-color: #ede7de;
  }
  footer .pgtop span {
    width: 10px;
    height: 46px;
    background-image: url(../images/pagetop.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/*# sourceMappingURL=style_common.css.map */
