@charset "UTF-8";
/* Reset CSS sample */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
h4,
h5 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

p {
  font-size: 16px;
  font-weight: normal;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #333333;
}

html {
  font-size: 100%;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

.header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100vw;
  height: 80px;
  background-color: #fff;
}

.header__inner {
  max-width: 1440px;
  width: 100%;
  height: inherit;
}

.header__wrapper {
  height: inherit;
  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;
}

.header__logo {
  max-width: 185px;
  max-height: 47px;
  margin: 1.03125rem 0 1.03125rem 3.125rem;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    margin: 1.03125rem 0 1.03125rem 1.25rem;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.1875rem 3.125rem 1.1875rem 0;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin: 0.71875rem 1.875rem 0.71875rem 0.03125rem;
}

.header__nav-list {
  font-weight: 700;
  color: #000;
}

.header__btn-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__inner {
  background-color: #5B9223;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 2rem 0;
  }
}

.footer__info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14rem;
}
@media screen and (max-width: 1024px) {
  .footer__info-container {
    padding: 25px;
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 15px;
    gap: 4rem;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.footer__logo {
  max-width: 11.5625rem;
  max-height: 2.9375rem;
}

.footer__address {
  font-style: normal;
  color: #fff;
  line-height: 1.8;
}

.footer__copyright {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer__nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 471px;
}
@media screen and (max-width: 1024px) {
  .footer__nav-container {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.footer__nav-lists {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}
@media screen and (max-width: 768px) {
  .footer__nav-lists {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 375px) {
  .footer__nav-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  min-width: 4rem;
  margin-right: 2.9375rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .footer__nav-list {
    justify-items: center;
    gap: 0.9375rem;
  }
}

.footer__nav-item {
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
}

.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
}

.footer__sns-img {
  width: 1.875rem;
  height: 1.875rem;
}

.inner-1080 {
  max-width: 1130px;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-1080 {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.inner-1000 {
  max-width: 1050px;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-1000 {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.inner-700 {
  max-width: 750px;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-700 {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.inner {
  max-width: 1250px;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section--bg-green {
  background-color: #FBFFF6;
}

.section--white {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 0.875rem;
  margin-bottom: 1.875rem;
}

.section-title__en {
  text-transform: capitalize;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  color: #5B9223;
}

.section-title__jp {
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #5B9223;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.btn--light-green {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-color: #85BE48;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.3125rem;
}

.btn--green {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  background-color: #5B9223;
  color: #fff;
  padding: 0.9375rem 5.375rem 0.9375rem 3.125rem;
  border-radius: 0.25rem;
}

.btn--white {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  background-color: #fff;
  color: #5B9223;
  border: 1px solid #5B9223;
  padding: 0.9375rem 5.375rem 0.9375rem 3.125rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 375px) {
  .btn--white {
    padding: 0.75rem 5rem 0.75rem 2.75rem;
  }
}

@media screen and (max-width: 375px) {
  .btn__arrow--white {
    font-size: 0.9375rem;
  }
}

.btn__arrow--green::before {
  content: "";
  position: absolute;
  padding: 0.5rem;
  width: 1.625rem;
  height: 1.625rem;
  right: 3.125rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
}

.btn__arrow--green::after {
  content: "";
  position: absolute;
  right: 3.625rem;
  /* ← 白丸の中で中央寄せになるように微調整 */
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.625rem;
  background-color: #5B9223;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.btn__arrow--white::before {
  content: "";
  position: absolute;
  padding: 0.5rem;
  width: 1.625rem;
  height: 1.625rem;
  right: 3.125rem;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #5B9223;
}

.btn__arrow--white::after {
  content: "";
  position: absolute;
  right: 3.625rem;
  /* ← 緑丸の中で中央寄せになるように微調整 */
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.625rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

#hamburger .hamburger__nav {
  position: fixed;
  top: 0;
  left: -18.75rem;
  bottom: 0;
  max-width: 300px;
  background: #fff;
  overflow-y: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  z-index: 1001;
}

#hamburger.open .hamburger__nav {
  width: 100vw;
  left: 0;
  opacity: 1;
}

.hamburger__inner {
  padding: 1.5625rem;
}

.hamburger__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger__list li {
  border-bottom: 1px solid #333;
}

.hamburger__list li a {
  display: block;
  padding: 1em;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hamburger__list li a:hover {
  background: #e4e4e4;
}

@media screen and (max-width: 768px) {
  #hamburger .hamburger__nav {
    left: -13.75rem;
    max-width: 220px;
  }
}
.hamburger__btn {
  position: fixed;
  top: 1.5625rem;
  right: 1.5625rem;
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
  z-index: 1002;
}

.hamburger__btn span {
  position: absolute;
  left: 0;
  width: 1.875rem;
  height: 0.125rem;
  background: #333;
  border-radius: 0.25rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hamburger__btn span:nth-child(1) {
  top: 0.25rem;
}

.hamburger__btn span:nth-child(2) {
  top: 0.875rem;
}

.hamburger__btn span:nth-child(3) {
  bottom: 0.25rem;
}

#hamburger.open .hamburger__btn span {
  background: #fff;
}

#hamburger.open .hamburger__btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
          transform: translateY(10px) rotate(-315deg);
}

#hamburger.open .hamburger__btn span:nth-child(2) {
  opacity: 0;
}

#hamburger.open .hamburger__btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
          transform: translateY(-10px) rotate(315deg);
}

.hamburger__mask {
  display: none;
}

#hamburger.open .hamburger__mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 1000;
  cursor: pointer;
}

.category__btn {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #707070;
  color: #000;
  font-size: 14px;
}

.category__btn-sm {
  padding: 4px 6px;
  font-size: 12px;
}

.category__btn.is-active {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.prevNext {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.prevNext .prevNext__item-prev {
  border-right: 1px solid #224163;
  margin-right: auto;
}

.prevNext .prevNext__item {
  width: 50%;
}

.prevNext .prevNext__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.prevNext .prevNext__item a span {
  display: inline-block;
  padding: 0 10px;
}

.prevNext .prevNext__item-next {
  text-align: right;
  margin-left: auto;
}

.card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  border: 1px solid #5B9223;
}

.card__logo {
  width: 100%;
  grid-row: 1;
}

.card__text-area {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  padding: 0px 0.9375rem 0.9375rem 0.9375rem;
  gap: 0.9375rem;
}

.card__title {
  max-width: 20rem;
  grid-row: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #5B9223;
}
@media screen and (max-width: 1024px) {
  .card__title {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.card__body {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  line-height: 1.8;
  color: #000;
  gap: 0.9375rem;
}

.card__company {
  grid-row: 1;
  font-size: 1.125rem;
  font-weight: 700;
}

.card__info {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.3125rem;
}

.card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  color: #000;
}

.card__info-item dt {
  min-width: 5rem;
  font-weight: 400;
}

.card__info-item dd {
  font-weight: 700;
}

.latest {
  border-top: 1px solid #666;
  margin-top: 50px;
  padding-top: 50px;
}

.latest__header {
  padding-bottom: 20px;
}

.heading-primary {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  font-size: 36px;
}

.heading-primary:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(5%, #000), color-stop(5%, #ccc), to(#ccc));
  background: linear-gradient(to right, #000 5%, #ccc 5%, #ccc 100%);
}

.heading-secondary {
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 32px;
}

.content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.content h2 {
  margin-bottom: 15px;
}

.cardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.cardList .cardList_item {
  width: 33.3333333333%;
  padding: 0 15px 80px;
}

.cardList .cardList_item:last-child {
  margin-bottom: 0;
}

.cardList .cardList_item:nth-child(3n) {
  margin-right: 0;
}

.news-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.news-card .news-card__label {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1000;
  margin-right: 5px;
}

.news-card .news-card__pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 0;
  padding-bottom: 57.1428571429%;
}

.news-card .news-card__pic img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.news-card .news-card__pic img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

img:is([sizes=auto i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}

.news-card .news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.news-card .news-card__title {
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 15px;
  font-size: 18px;
}

.news-card .news-card__body time {
  font-size: 12px;
  font-weight: normal;
  margin-top: auto;
}

.label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 15px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background-color: #000;
  margin-right: 5px;
}

.label-black {
  color: #000;
  border: 1px solid #000;
  color: #fff;
}

.mv {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.mv__img {
  width: 100%;
  height: inherit;
}

.mv__img img {
  aspect-ratio: 1440/600;
  -o-object-position: 0 0;
     object-position: 0 0;
}

.mv__text-box {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mv__title {
  text-align: center;
}
.mv__title h1,
.mv__title p {
  display: inline-block;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 8px 0px rgba(51, 51, 51, 0.6);
          box-shadow: 0px 6px 8px 0px rgba(51, 51, 51, 0.6);
  font-weight: 700;
}
.mv__title h1 {
  font-size: 3.125rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #5B9223;
  padding: 0.3125rem 0.5rem 0.625rem 0.9375rem;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .mv__title h1 {
    font-size: clamp(1.25rem, 3.4722222222vw, 3.125rem);
    line-height: normal;
    margin-bottom: 0.3125rem;
  }
}
@media screen and (max-width: 490px) {
  .mv__title h1 {
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.mv__title p {
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .mv__title p {
    line-height: normal;
  }
}
@media screen and (max-width: 490px) {
  .mv__title p {
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.news__item {
  display: grid;
  grid-template-columns: 14% 18% 1fr;
  row-gap: 1.875rem;
  margin-bottom: 3.125rem;
}

.news__post-link {
  display: grid;
  grid-template-columns: 14% 18% 1fr;
  /* ↑ 未対応ブラウザ用のfallback */
  grid-template-columns: subgrid;
  /* ↑ 対応ブラウザではこちらが有効 */
  grid-column: 1/-1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .news__post-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news__date {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.8;
}

.news__category {
  width: 100%;
  text-align: center;
  background-color: #f5f5f5;
  padding: 0.375rem 0rem;
}
@media screen and (max-width: 1024px) {
  .news__category {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.25rem 1.5rem;
  }
}

.news__category-label {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #fff;
  background-color: #5B9223;
  padding: 0rem 0.625rem;
  display: inline-block;
}

.news__text {
  font-weight: 400;
  line-height: 1.4;
  margin-right: 1.4375rem;
}

.top-service__wrapper {
  display: grid;
  gap: 1.5rem;
}

.top-service__large-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .top-service__large-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.top-service__large-item {
  max-width: 528px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D0F1AC;
}
@media screen and (max-width: 1024px) {
  .top-service__large-item {
    width: 100%;
  }
}

.top-service__small-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .top-service__small-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.top-service__small-item {
  max-width: 344px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D0F1AC;
}
@media screen and (max-width: 1024px) {
  .top-service__small-item {
    max-width: 528px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.grid-area5 {
  min-height: 6.9rem;
}

.top-service__large-img {
  width: 100%;
  max-width: 103px;
  margin-left: 2.5rem;
}

.top-service__small-img {
  width: 100%;
  max-width: 83px;
  margin-left: 1.25rem;
}

.top-service__large-textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  margin: 2rem 2.5rem 2.625rem 1.5rem;
}

.top-service__large-textBox h3 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.8;
  color: #355C0E;
}

.top-service__large-textBox p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #355C0E;
}

.top-service__small-textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  margin: 0.9375rem 1.25rem 0.9375rem 1.5rem;
}

.top-service__small-textBox h3 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
  color: #355C0E;
}

.top-service__small-textBox p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #355C0E;
}

.top-overview__title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .top-overview__title {
    margin-bottom: 1.875rem;
  }
}

.top-overview__title h2 {
  letter-spacing: 0.07em;
}

.top-overview__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.top-overview__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-overview__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 1.5625rem;
  }
}

@media screen and (max-width: 1024px) {
  .top-overview__section--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    gap: 1.5625rem;
  }
}

.top-overview__textbox {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .top-overview__textbox {
    text-align: left;
    padding: 0.625rem;
  }
}

.top-overview__textbox h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #5B9223;
}
@media screen and (max-width: 768px) {
  .top-overview__textbox h3 {
    font-size: 1.5625rem;
  }
}

.top-overview__textbox p {
  line-height: 1.75;
  letter-spacing: 0.2em;
}

.top-overview__img {
  width: 100%;
  max-width: 450px;
}
@media screen and (max-width: 1024px) {
  .top-overview__img {
    max-width: 500px;
  }
}

.top-achievements__title h2 {
  letter-spacing: 0.07em;
}

.top-achievements__cards {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, auto-fit);
  gap: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .top-achievements__cards {
    grid-template-columns: repeat(2, minmax(350px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .top-achievements__cards {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

.top-contact {
  position: relative;
  background-image: url(../img/home/mv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 73, 23, 0.63);
}

.top-contact__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.4375rem;
  padding: 5rem 0;
}
@media screen and (max-width: 1024px) {
  .top-contact__inner {
    gap: 2.4375rem;
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .top-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 15px 2.5rem 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-contact__title-container {
  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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .top-contact__title-container {
    gap: 1.9375rem;
  }
}

.top-contact__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-contact__title-p {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.3125rem;
}

.top-contact__title-h2 {
  text-transform: capitalize;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #fff;
}

.top-contact__border-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-top: 1px solid #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.375rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 0.9375rem;
}

.top-contact__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-contact__tel-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-contact__tel-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-contact__tel-wrapper {
  max-width: 297px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-contact__tel-icon {
  margin-right: 0.648125rem;
}

.top-contact__tel-number {
  font-style: normal;
  font-size: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-contact__tel-number {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.top-contact__Reception-hours {
  width: 10.375rem;
  line-height: 1.8;
  color: #fff;
  padding-top: 0.59375rem;
  padding-bottom: 0.59375rem;
}
@media screen and (max-width: 1024px) {
  .top-contact__Reception-hours {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.top-contact__text-wrapper {
  max-width: 402px;
  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.875rem;
}
@media screen and (max-width: 1024px) {
  .top-contact__text-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.9375rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.top-contact__text {
  letter-spacing: 0.2em;
  color: #fff;
}

.top-contact__btn-wrapper {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .top-contact__btn-wrapper {
    margin-right: auto;
    margin-left: auto;
  }
}

.page-contact__inner {
  margin-top: 5rem;
  background-color: #FBFFF6;
}

.page-contact__title {
  text-align: center;
  padding-top: 6.25rem;
  padding-bottom: 0.875rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .page-contact__title {
    padding-top: 3.125rem;
  }
}

.contact-form {
  max-width: 944px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  color: #000;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 375px) {
  .contact-form {
    padding: 15px;
  }
}

.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-form--required {
  font-size: 0.75rem;
  background-color: #D55A31;
  color: #fff;
  padding: 0.0625rem 0.5rem;
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.contact-form__input {
  width: 100%;
  max-width: 896px;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 0.5rem 0 0.4375rem 1rem;
}
.contact-form__input input::-webkit-input-placeholder, .contact-form__input textarea::-webkit-input-placeholder {
  line-height: 1.8;
  color: #999;
}
.contact-form__input input::-moz-placeholder, .contact-form__input textarea::-moz-placeholder {
  line-height: 1.8;
  color: #999;
}
.contact-form__input input:-ms-input-placeholder, .contact-form__input textarea:-ms-input-placeholder {
  line-height: 1.8;
  color: #999;
}
.contact-form__input input::-ms-input-placeholder, .contact-form__input textarea::-ms-input-placeholder {
  line-height: 1.8;
  color: #999;
}
.contact-form__input input::placeholder,
.contact-form__input textarea::placeholder {
  line-height: 1.8;
  color: #999;
}

.contact-form__select {
  width: 50%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  line-height: 1.8;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 0.5rem 0 0.4375rem 1rem;
}

.contact-form__select:invalid {
  color: #999;
}

.contact-form__radio-item {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  top: 0.25rem;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 0.5rem;
}

input[type=radio]:checked:before {
  position: absolute;
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}

.contact-form__checkbox-item {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-form__checkbox-item input[type=checkbox] {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  vertical-align: -0.25rem;
  border: 2px solid #ccc;
  border-radius: 0.1875rem;
  background-color: #fff;
  margin-right: 0.5rem;
}

.contact-form__checkbox-item input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.625rem;
  top: 0.0625rem;
  left: 0.25rem;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.contact-form__p {
  margin-left: 0.0625rem;
  margin-bottom: 0.625rem;
}

.contact-form__textarea {
  width: 100%;
  max-width: 920px;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.9375rem 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact-form__submit {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .contact-form__submit {
    padding-bottom: 2.5rem;
  }
}

.post .post-content {
  padding-bottom: 30px;
}

.post-content__time {
  display: block;
  text-align: right;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0.625rem 0px;
  font-weight: bold;
}

.section-post {
  scroll-margin-top: 80px;
  padding: 25px 0;
}

.section-post .section-post__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-post .section-post__header {
  position: relative;
  padding-bottom: 20px;
}

.section-post time {
  display: block;
  text-align: right;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-mobile {
    display: block;
  }
}

.u-newline {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-newline {
    display: inline-block;
  }
}

.u-newline--inline-block {
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .u-padding {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  .u-padding {
    padding: 15px;
  }
}