html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 950px) {
  .hidden-lg {
    display: none;
  }
}
.inner {
  padding-inline: 15px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section__content {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 46px;
  }
}

.heading {
  margin-top: 100px;
  font-size: 48px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  line-height: 100%;
}
.heading::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #00751a;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 80px;
    gap: 24px;
  }
}

.heading__sub {
  align-items: center;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .heading__sub {
    font-size: 32px;
  }
}

.button {
  margin-top: 42px;
  display: inline-block;
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: 1px solid #00751a;
  background: #fff;
  color: #00751a;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #00751a;
}

.header {
  height: 75px;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
  position: fixed;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
  }
}

.main {
  gap: 58px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 100px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 15px;
}

.header__button {
  border-radius: 12px;
  margin-top: 0px;
}
@media screen and (min-width: 768px) {
  .header__button {
    gap: 160px;
    margin-top: 0;
    min-width: 120px;
    padding: 11px;
    background: #00751a;
    color: #fff;
    border-radius: 12px;
    transition: color 0.3s, background-color 0.3s;
  }
  .header__button:hover {
    opacity: 0.8;
  }
}

.header__logo a {
  font-size: 32px;
  font-weight: bold;
  color: #00751a;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    transition: opacity 0.3s;
    font-size: 42px;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.header__nav {
  background-color: #00751a;
  width: 270px;
  height: calc(100% - 75px);
  position: fixed;
  right: 0;
  top: 75px;
  padding-right: 25px;
  padding-top: 32px;
  transform: translateX(100%);
  transition: top 0.4s, transform 0.4s;
  z-index: 1;
}
.header__nav.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background-color: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    transform: translateX(0);
  }
}

.header__lists {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    flex-direction: row;
    align-items: center;
    gap: 26px;
  }
}
@media screen and (min-width: 950px) {
  .header__lists {
    flex-direction: row;
    align-items: center;
    gap: 46px;
  }
}

.header__link {
  display: inline-block;
  letter-spacing: 1px;
  padding-block: 8px;
  color: #fff;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #333333;
    font-size: 16px;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #00751a;
    transform: scale(1.1);
  }
}
@media screen and (min-width: 950px) {
  .header__link {
    font-size: 20px;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background-color: #00751a;
  transition: top 0.4s, transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.privacy__inner {
  margin-top: 128px;
}

.privacy__content {
  margin-top: 100px;
}

.privacy__leadtext {
  font-size: 20px;
  margin-bottom: 48px;
}

.privacy__body {
  font-size: 18px;
  margin: 32px;
}

.privacy__title {
  font-size: 20px;
}

.privacy__text {
  font-size: 18px;
}

.privacy__end {
  margin-top: 84px;
  gap: 10px;
}

.contact {
  position: relative;
  margin-top: 64px;
  padding-block: 56px;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/img_contact.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px;
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 730px;
    padding-inline: 40px;
  }
}

.contact__heading {
  color: #00751a;
}

.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact__text .required {
  color: #e7728e;
}

.contact__items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact-control {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-control {
    flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    flex-shrink: 0;
  }
}

.contact-control__input {
  flex-grow: 1;
}

.form-label {
  display: inline-flex;
  background: rgba(0, 117, 26, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding-inline: 4px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-label__required {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}

.form-text {
  width: 100%;
  height: 40px;
  margin-top: 3px;
  border: 0;
  font-size: 16px;
  background: #fff;
  box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  outline: #00751a auto 1px;
  box-shadow: 5px 6px 16px 0 rgba(0, 117, 26, 0.16);
}
@media screen and (min-width: 768px) {
  .form-text {
    margin-top: 0;
  }
}

.contact-control__radios {
  display: flex;
  align-items: center;
}

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #00751a;
  color: #fff;
}

.form-radio__text {
  font-size: 16px;
  letter-spacing: 0.026px;
  color: #00751a;
  border: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text {
  outline: #00751a auto 1px;
  box-shadow: 5px 6px 16px 0 rgba(0, 117, 26, 0.16);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #00751a;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #00751a;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 22px;
  height: 22px;
  left: 1.29px;
  background: url(../img/box.png) no-repeat center center/contain;
}

.contact__submit {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.form-textarea {
  width: 100%;
  height: 122px;
  margin-top: 3px;
  border: 0;
  font-size: 16px;
  background: #fff;
  box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  resize: vertical;
}
.form-textarea:focus {
  outline: #00751a auto 1px;
  box-shadow: 5px 6px 16px 0 rgba(0, 117, 26, 0.16);
}

.footer {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
    padding-top: 20px;
  }
}

.footer__inner {
  text-align: center;
}

.footer__logo a {
  font-size: 20px;
  color: #00751a;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    transition: opacity 0.3s;
    font-size: 28px;
  }
  .footer__logo a:hover {
    opacity: 0.7;
  }
}

.footer__menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .footer__menu-items {
    flex-direction: row;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
}

.footer__menu-link {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer__menu-link {
    transition: opacity 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.footer__sns-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer__sns-link img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .footer__sns-link {
    transition: opacity 0.3s;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  font-size: 12px;
  font-weight: 300;
  color: #888888;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 1.5px;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.pagetop img {
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .pagetop {
    right: 16px;
    bottom: 30px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.anime-text {
  overflow: hidden;
}
.anime-text span {
  display: inline-block;
  animation: showText 1s both;
}

.anime-text2 {
  overflow: hidden;
}
.anime-text2 span {
  display: inline-block;
  animation: showText 2s both;
}

@keyframes showText {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: 0 0;
  }
}
.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

.fade-in-right.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}/*# sourceMappingURL=style.css.map */