@charset "UTF-8";
/* CSS Document */
/* ベースの本体 */
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #336432;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader004 {
  color: #9FCA3D;
  font-size: 18px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
.loadingLogo {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* CSS Document */
@media screen and (max-width: 600px) {
  .bg_logo_ofarm {
    max-width: 72px;
    height: 50%;
  }
}
/* base
--------------------------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  background-color: #ffffff;
  text-align: justify;
  line-height: 150%;
  letter-spacing: 0.1rem;
  position: relative;
  padding: 32px;
  width: 100%;
  height: 100vh;
}

h1 {
  font-size: 5.6rem;
  font-weight: 800;
}

h2 {
  font-size: 4rem;
  font-weight: 600;
}

h3 {
  font-size: 2.8rem;
  font-weight: 500;
}

h4 {
  font-size: 2rem;
  font-weight: 400;
}

p {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 200%;
}

img {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  border: 3px solid #999999;
  border-collapse: collapse;
  table-layout: fixed;
}

th {
  width: 100%;
  padding: 16px;
  border: 1px solid #999999;
  vertical-align: middle;
}

td {
  width: 100%;
  padding: 16px;
  border: 1px solid #999999;
  vertical-align: middle;
}

.br {
  display: none;
}

@media screen and (max-width: 820px) {
  .br {
    display: block;
  }
}
.mb_ll {
  margin-bottom: 128px;
}

.mb_l {
  margin-bottom: 96px;
}

.mb_m {
  margin-bottom: 48px;
}

.mb_ss {
  margin-bottom: 24px;
}

.mb_sss {
  margin-bottom: 8px;
}

.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.t_center {
  text-align: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 240px;
  height: 72px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #9FCA3D;
  background-color: #9FCA3D;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333333;
  transition: all 0.3s ease;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mainWrap {
  width: 100%;
  height: calc(100vh - 224px);
  margin-left: auto;
  margin-right: auto;
  background-color: #9FCA3D;
  position: relative;
}

.subWrap {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 0.5px solid #999999;
  padding-bottom: 128px;
}

.subWrap:last-child {
  border-bottom: none;
  padding-bottom: 64px;
}

a {
  color: #336432;
}

.pageTop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 72px;
  font-size: 1.2rem;
  background-color: #333333;
  color: #fff;
  transition: all 0.3s ease;
}

.pageTop::after {
  position: absolute;
  top: 24%;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.pageTop:hover {
  background-color: #999999;
  transition: all 0.3s ease;
}

header.headerGroup {
  width: 100%;
  height: 160px;
  background-color: #9FCA3D;
  padding-top: 0px;
}

.bg_logo_ofarm {
  max-width: 162px;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/logo_ofarm.png);
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.mainWrap h1 {
  max-width: 360px;
  width: 100%;
  font-size: 18px;
  letter-spacing: 8px;
  color: #fff;
  font-weight: 500;
}

.mainWrap h2 {
  max-width: 360px;
  width: 100%;
  font-size: 64px;
  letter-spacing: 10px;
  color: #fff;
  font-weight: 600;
  line-height: 110%;
  z-index: 999;
}

.mainWrap_sns_instagram {
  display: flex;
  align-items: center;
  max-width: 350px;
  width: 100%;
  color: #336432;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.mainWrap_sns_instagram::before {
  content: url(../img/icon_instagram.svg);
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.mainWrap_des {
  max-width: 360px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  z-index: 999;
  letter-spacing: 1.5px;
  line-height: 200%;
}

.mainWrap_address h3 {
  max-width: 360px;
  width: 100%;
  font-size: 18px;
  width: 100%;
  color: #336432;
  font-weight: 600;
}

.mainWrap_address h3 span {
  font-size: 14px;
  margin-right: 8px;
}

.mainWrap_address address {
  max-width: 360px;
  width: 100%;
}

.mainWrap_address address p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #336432;
  font-weight: 600;
}

.mainWrap_address address p span::after {
  content: ":";
  margin-right: 5px;
}

.copyRight {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */