@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 374px) {
  html {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  color: #000;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: auto;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1240px;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(1.875rem);
          transform: translateY(1.875rem);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}

.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-drawer {
  position: fixed;
  top: 3.125rem;
  right: 0;
  width: 80%;
  background: #4D9600;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 90;
}

.c-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-drawer__nav {
  padding-top: 0.875rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.c-drawer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}

.c-drawer__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.83333;
}

.c-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.5rem;
  width: 4.5rem;
  height: 3.1875rem;
  background: #fff;
  padding-top: 3px;
  padding-bottom: 0.375rem;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__line {
  display: block;
  width: 2rem;
  height: 4px;
  background: #4D9600;
  border-radius: 50px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.c-hamburger.is-open .c-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(0.75rem) rotate(45deg);
          transform: translateY(0.75rem) rotate(45deg);
}

.c-hamburger.is-open .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-open .c-hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-0.75rem) rotate(-45deg);
          transform: translateY(-0.75rem) rotate(-45deg);
}

.c-pagetop {
  position: fixed;
  right: 1.25rem;
  bottom: 3.75rem;
  width: 3.125rem;
  height: 3.125rem;
  background: #4D9600;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    width: 4.25rem;
    height: 4.25rem;
    right: 3.75rem;
  }
}

.c-pagetop__icon {
  display: block;
  position: relative;
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .c-pagetop__icon {
    width: 1.375rem;
    height: 1.25rem;
  }
}

.c-pagetop__icon::before,
.c-pagetop__icon::after {
  content: "";
  position: absolute;
  width: 1.125rem;
  height: 4px;
  background: #fff;
  border-radius: 0.125rem;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-pagetop__icon::before,
  .c-pagetop__icon::after {
    width: 1.4375rem;
  }
}

.c-pagetop__icon::before {
  left: 0px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}

.c-pagetop__icon::after {
  right: 0px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}

.c-section-title {
  text-align: center;
}

.c-section-title__en {
  color: #4D9600;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.c-section-title__ja {
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: 6px;
  margin-top: 0.3125rem;
}

.p-about {
  position: relative;
  height: 155.7333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about {
    height: 46.2962962963vw;
  }
}

.p-about__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-about__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-about__image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.p-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__contents {
  position: absolute;
  top: 14.4vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: auto;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    top: 10.462962963vw;
    right: auto;
    left: 13.5185185185vw;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 4.7222222222vw;
       -moz-column-gap: 4.7222222222vw;
            column-gap: 4.7222222222vw;
  }
}

.p-about__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 6.6666666667vw;
  font-weight: 500;
  line-height: 1.19;
  color: #000;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 2.7777777778vw;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
}

.p-about__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 93.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    height: 29.6296296296vw;
  }
}

.p-about__text-item + .p-about__text-item {
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about__text-item + .p-about__text-item {
    margin-right: 1.9444444444vw;
  }
}

.p-about__text-item p {
  font-size: 4.2666666667vw;
  font-weight: 500;
  color: #000;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .p-about__text-item p {
    font-size: 1.6666666667vw;
    letter-spacing: 0.39em;
    white-space: nowrap;
  }
}

.p-company-detail__address {
  margin-top: 0.5rem;
}

.p-company-detail__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 0.5rem;
  gap: 0.3125rem;
}

.p-company-detail__tel .p-company-detail__label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5625;
}

.p-company-detail__tel .p-company-detail__value {
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.5625;
}

.p-company-detail__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1875rem;
  margin-top: 0.6875rem;
}

.p-company-detail__label {
  font-size: 1rem;
}

.p-company {
  padding-top: 3.25rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding-top: 5.1875rem;
    padding-bottom: 8.75rem;
  }
}

.p-company__title {
  margin-left: 0.5625rem;
}

.p-company__contents {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-company__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 57.5rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 4.25rem;
    position: relative;
  }
}

.p-company__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company__map {
    width: 65.2173913043%;
    position: relative;
    z-index: 100;
  }
}

.p-company__map iframe {
  width: 100%;
  aspect-ratio: 315/300;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-company__map iframe {
    aspect-ratio: 600/400;
  }
}

.p-company__info {
  margin-top: 1.1875rem;
  background: #4D9600;
  color: #fff;
  padding: 1.1875rem 1.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-company__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 54.347826087%;
    position: absolute;
    bottom: -3.75rem;
    right: 0;
    z-index: 0;
    margin-top: 0;
    padding: 3.0625rem 4.125rem 2.625rem 1.25rem;
  }
}

.p-company__name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .p-company__name {
    padding-right: 0.5rem;
  }
}

.p-company__detail {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-company__detail {
    margin-top: 0;
  }
}

.p-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-contact-item {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item--name {
    -webkit-column-gap: 5.9375rem;
       -moz-column-gap: 5.9375rem;
            column-gap: 5.9375rem;
  }
}

.p-contact-item.p-contact-item--gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.8125rem;
     -moz-column-gap: 2.8125rem;
          column-gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-item.p-contact-item--gender {
    margin-top: 3.125rem;
    -webkit-column-gap: 8.0625rem;
       -moz-column-gap: 8.0625rem;
            column-gap: 8.0625rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item--category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item.p-contact-item--message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 3.125rem;
  }
}

.p-contact-item.p-contact-item--check {
  margin-top: 1.8125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-contact-item.p-contact-item--check {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item.p-contact-item--privacy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 3rem;
  }
}

.p-contact-item__label {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-contact-item--email .p-contact-item__label {
    letter-spacing: -1px;
    margin-top: 2px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item--email .p-contact-item__required {
    margin-left: 0.625rem;
  }
}

.p-contact-item__label--check {
  line-height: 1.35;
}

.p-contact-item__required {
  margin-left: 0.4375rem;
}

.p-contact-item__sub {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-contact-item__sub {
    display: inline;
  }
}

.p-contact-item__sub .p-contact-item__required {
  margin-left: 1.25rem;
}

.p-contact-item__input,
.p-contact-item__select {
  width: 100%;
  max-height: 3.125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  padding: 0.8125rem 1.0625rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact-item__input,
  .p-contact-item__select {
    width: 78.75%;
    font-size: 1.125rem;
  }
}

.p-contact-item__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.0625rem;
     -moz-column-gap: 2.0625rem;
          column-gap: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-item__radios {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }
}

.p-contact-item__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact-item__radio {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}

.p-contact-item__radio input {
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.p-contact-item__radio input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.4375rem;
  height: 0.4375rem;
  background: #000;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-contact-item__radio input {
    margin-top: 0px;
  }
}

.p-contact-item__radio span {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.38889;
}

.p-contact-item__select-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact-item__select-wrap {
    width: 78.75%;
  }
}

.p-contact-item__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.75rem solid #4D9600;
  pointer-events: none;
}

.p-contact-item__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (min-width: 768px) {
  .p-contact-item__select {
    width: 100%;
    padding: 0.625rem 1.0625rem 0.75rem 1.1875rem;
  }
}

.p-contact-item__textarea {
  width: 100%;
  padding: 0.8125rem 1.0625rem 0.75rem;
  min-height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-item__textarea {
    margin-top: 0.625rem;
  }
}

.p-contact-item__checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.3125rem;
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .p-contact-item__checkboxes {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 2.125rem;
       -moz-column-gap: 2.125rem;
            column-gap: 2.125rem;
    row-gap: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.p-contact-item__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact-item__checkbox {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-contact-item__checkbox input {
  margin: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.p-contact-item__checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.6875rem;
  border-right: 2px solid #4D9600;
  border-bottom: 2px solid #4D9600;
}

.p-contact-item__checkbox span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .p-contact-item__checkbox span {
    font-size: 1.125rem;
    line-height: 1.38889;
    font-weight: 500;
  }
}

.p-contact-item__policy {
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  height: 20.1875rem;
  overflow-y: scroll;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact-item__policy {
    height: 18.75rem;
    margin-top: 0.625rem;
    padding: 2.5rem;
  }
}

.p-contact-item__policy::-webkit-scrollbar {
  width: 1.25rem;
}

.p-contact-item__policy::-webkit-scrollbar-track {
  background: #D9D9D9;
  margin-top: 0.625rem;
  margin-bottom: 1.4375rem;
  border-right: 0.625rem solid transparent;
  border-left: 0rem solid transparent;
  background-clip: padding-box;
}

.p-contact-item__policy::-webkit-scrollbar-thumb {
  background: #8B8B8B;
  margin-top: 0.625rem;
  margin-bottom: 1.4375rem;
  border-right: 0.625rem solid transparent;
  border-left: 0rem solid transparent;
  background-clip: padding-box;
}

.p-contact-item__policy p {
  margin-top: 2.0625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0625;
}
@media screen and (min-width: 768px) {
  .p-contact-item__policy p {
    font-size: 1.125rem;
    line-height: 1.72222;
  }
}

.p-contact-item__policy p:first-child {
  margin-top: 0;
}

.p-contact-item__policy p:last-child {
  display: block;
  overflow: visible;
}

.p-contact-item__input,
.p-contact-item__textarea,
.p-contact-item__select {
  outline: none;
  border: none;
}

.p-contact {
  background: rgba(77, 150, 0, .15);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 5.125rem;
    padding-bottom: 5rem;
  }
}

.p-contact__inner {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding-left: 8.75rem;
    padding-right: 8.75rem;
  }
}

.p-contact__title {
  margin-left: 0.5625rem;
}

.p-contact__lead {
  margin-top: 2.1875rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
}

.p-contact__form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 4.3125rem;
  }
}

.p-contact__item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    margin-top: 3.125rem;
  }
}

.p-contact__item:first-child {
  margin-top: 0;
}

.p-contact__submit {
  margin-top: 3.1875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    margin-top: 5rem;
  }
}

.p-contact__btn {
  width: 100%;
  max-width: 19.6875rem;
  padding: 0.4375rem 1.25rem 0.5rem 1.25rem;
  background: #4D9600;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  border: 1px solid #4D9600;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    max-width: 18.75rem;
  }
}

.p-contact__btn:hover {
  background: #E5F0DB;
  color: #4D9600;
}

.p-footer {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 5rem;
  }
}

.p-footer__inner {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-left: 11.1875rem;
    padding-right: 11.1875rem;
  }
}

.p-footer__logo {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
}

.p-footer__nav {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
  }
}

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__items {
    gap: 3.125rem;
  }
}

.p-footer__item a {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.83333;
  text-transform: uppercase;
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  margin-top: 1.75rem;
}

.p-footer__copyright {
  margin-top: 3.125rem;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
  background: #4D9600;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 4.9375rem;
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
}

.p-footer__copyright-text {
  text-transform: capitalize;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: -0.02em;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3.125rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5rem;
  }
}

.p-header__inner {
  height: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    height: 5rem;
    padding-left: 7.4074074074vw;
    padding-right: 7.4074074074vw;
  }
}

.p-header__logo {
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 500;
  color: #fff;
}

.p-header__hamburger {
  margin-right: -1.25rem;
  margin-top: -2px;
}

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

.p-header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.9375rem;
     -moz-column-gap: 1.9375rem;
          column-gap: 1.9375rem;
}

.p-header__item a {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__item a {
    height: 5rem;
  }
}

.p-header__item a::after {
  content: "";
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__item a::after {
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    position: absolute;
    bottom: 1.75rem;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header__item a:hover::after {
    width: 100%;
  }
}

.p-header.is-scrolled {
  background: #4D9600;
}

.p-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  aspect-ratio: 601/375;
}
@media screen and (min-width: 768px) {
  .p-mv {
    aspect-ratio: 1080/800;
    margin-bottom: 0;
  }
}

.p-mv__swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__catch {
  z-index: 1;
  position: absolute;
  top: 51.25%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  padding-left: 16.8vw;
  padding-right: 14.6666666667vw;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-mv__catch {
    top: 51.125%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding-left: 5.8333333333vw;
    padding-right: 5.0925925926vw;
  }
}

.p-mv__phrase {
  font-size: 1.875rem;
  line-height: 2;
  font-weight: 600;
  text-shadow: 5px 5px 5px #000;
  letter-spacing: 2.4vw;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-mv__phrase {
    font-size: 3.7037037037vw;
    line-height: 1.75;
    letter-spacing: 1.1111111111vw;
    margin-left: 0.5555555556vw;
  }
}

.p-mv__phrase:last-child {
  margin-left: -1.6vw;
}
@media screen and (min-width: 768px) {
  .p-mv__phrase:last-child {
    margin-left: 0.5555555556vw;
  }
}

.p-news-item {
  padding-top: 1.4375rem;
  padding-bottom: 0.8125rem;
  border-bottom: 1px solid #55A500;
}
@media screen and (min-width: 768px) {
  .p-news-item {
    padding-bottom: 0.75rem;
  }
}

.p-news-item:not(:first-child) {
  padding-top: 0.8125rem;
}

.p-news-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-news-item__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 4.3125rem;
       -moz-column-gap: 4.3125rem;
            column-gap: 4.3125rem;
  }
}

.p-news-item__date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0625;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news-item__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.38889;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-news-item__text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    padding-top: 0.4375rem;
  }
}

.p-news {
  background: rgba(77, 150, 0, .1);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-news__title {
  margin-left: 0.5625rem;
}

.p-news__contents {
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-news__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    margin-top: 4.375rem;
  }
}

.p-news__column {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-news__column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-news__column:not(:first-child) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-news__column:not(:first-child) {
    margin-top: 0;
  }
}

.p-news__column-title {
  background: #4D9600;
  padding: 0.5rem 1.25rem 0.5625rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
}
.p-news__body {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.p-news__more {
  padding: 1.0625rem 2.0625rem 1.5rem;
  text-align: right;
}

.p-news__more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #55A500;
  position: relative;
}

.p-news__more-text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
}

.p-news__more-arrow {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 5rem;
  height: 0.0625rem;
  background: #55A500;
}

.p-news__more-arrow::before,
.p-news__more-arrow::after {
  content: "";
  position: absolute;
  background: #55A500;
}

.p-news__more-arrow::before {
  bottom: -0.625rem;
  right: 0.75rem;
  width: 1px;
  height: 1.25rem;
}

.p-news__more-arrow::after {
  top: 0.5px;
  right: -0.0625rem;
  width: 1.0625rem;
  height: 1px;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.p-service-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 57.5rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-service-item__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-item__image {
    width: 65.2173913043%;
    position: relative;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .p-service-item:nth-child(even) .p-service-item__image {
    margin-left: auto;
  }
}

.p-service-item__image img {
  width: 100%;
  display: block;
  aspect-ratio: 315/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-service-item__image img {
    aspect-ratio: 600/300;
  }
}

.p-service-item__caption {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.56;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-service-item__caption {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service-item:nth-child(even) .p-service-item__caption {
    text-align: right;
  }
}

.p-service-item__content {
  background: #4D9600;
  color: #fff;
  padding: 1.25rem 1.25rem 0.75rem;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-service-item__content {
    width: 54.347826087%;
    position: absolute;
    top: 8.75rem;
    z-index: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-service-item:nth-child(odd) .p-service-item__content {
    padding: 3.125rem 1.6875rem 2.5rem 15.5rem;
    right: 0;
    left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-service-item:nth-child(even) .p-service-item__content {
    padding: 3.125rem 15.5rem 2.5rem 2.5rem;
    left: 0;
    right: auto;
  }
}

.p-service-item__title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service-item__title {
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 1.32;
    color: #fff;
  }
}

.p-service-item__text {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.5625;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service-item__text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5625;
    margin-top: 1.1875rem;
  }
}

.p-service {
  background: rgba(77, 150, 0, .1);
  padding-top: 3.1875rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-top: 5.125rem;
    padding-bottom: 8.1875rem;
  }
}

.p-service__title {
  margin-left: 0.5625rem;
}

.p-service__contents {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-service__contents {
    margin-top: 4.1875rem;
  }
}

.p-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-service__item:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-service__item:nth-child(n+2) {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service__item:nth-child(even) .p-service-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-service__item:nth-child(even) .p-service-item__content {
    margin-left: 0;
    margin-right: -2.5rem;
  }
}
.p-works-item__image {
  width: 100%;
  aspect-ratio: 315/250;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-works-item__image {
    aspect-ratio: 1/1;
  }
}

.p-works-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-works-item__content {
  margin-top: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-works-item__content {
    margin-top: 1.1875rem;
    display: block;
    width: 100%;
  }
}

.p-works-item__category {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5625;
}

.p-works-item__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5625;
}

.p-works-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-works-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-works-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  cursor: pointer;
}

.p-works-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 28.125rem;
  z-index: 1;
  padding: 0.9375rem 0.9375rem 5px 0.9375rem;
}

.p-works-modal__close {
  position: absolute;
  top: 0rem;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

.p-works-modal__close::before,
.p-works-modal__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 1px;
  background: #000;
}

.p-works-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-works-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-works-modal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-works-modal__caption {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  color: #000;
}

.p-works {
  padding-top: 3.125rem;
  padding-bottom: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-works {
    padding-top: 5rem;
    padding-bottom: 6.0625rem;
  }
}

.p-works__title {
  margin-left: 0.5625rem;
}

.p-works__items {
  margin-top: 2.375rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-works__items {
    margin-top: 4.25rem;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
