@charset "UTF-8";
.ab-top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

html {
  font-size: 16px;
}

.blog-items {
  margin-top: 20px;
  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;
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .blog-items {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.blog-item {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width:768px) {
  .blog-item {
    width: calc((100% - 40px) / 3);
  }
}

.blog-item-img {
  text-align: center;
  padding: 20px;
}
.blog-item-img img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-item-body {
  padding: 20px;
}

.blog-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.blog-item-tag {
  background: #006400;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}

.blog-item-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 14px;
}

.blog-item-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}

body {
  font-family: "Kiwi Maru", "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
  list-style: none;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 10px 6px 10px;
  width: 160px;
  margin: 0 auto;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button__text {
  color: #4a4a4a;
}
.button--border {
  border: 1px solid #fff;
}
.button--border .button__text {
  color: #fff;
}

.button {
  -webkit-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.button:hover {
  background-color: #fff;
}
.button:hover .button__icon-path {
  fill: #4a4a4a;
}
.button:hover .button__text {
  color: #4a4a4a;
}
.button--bg {
  color: #4a4a4a;
}
.button--bg:hover {
  opacity: 0.7;
}

.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #4a4a4a;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.section {
  padding: 48px 0;
}

@media screen and (min-width:768px) {
  .section__head-main {
    font-size: 54px;
  }
}

.section__inner {
  padding: 0 32px;
  max-width: 704px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .section__inner {
    padding: 0 40px;
    max-width: 944px;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
  color: #006400;
}
.section__head--center {
  text-align: center;
}

.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
}

.section__head-sub {
  font-size: 11px;
}

.section__lead-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

@media screen and (min-width:768px) {
  .firstview {
    padding-block: 120px;
  }
}

.firstview__head {
  text-align: center;
}

.firstview__head-main {
  font-size: 36px;
  color: #006400;
}
@media screen and (min-width:768px) {
  .firstview__head-main {
    font-size: 54px;
  }
}

.firstview__lead-text {
  margin-top: 100px;
}
.firstview__lead-text p {
  text-align: center;
  font-size: 24px;
}
.firstview__lead-text p:nth-child(2) {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .firstview__lead-text p {
    font-size: 32px;
  }
  .firstview__lead-text p:nth-child(2) {
    margin-top: 50px;
  }
}

.l-problem {
  padding-top: 30px;
  padding-bottom: 20px;
}
@media screen and (min-width:768px) {
  .l-problem {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.p-problem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 34px;
  color: #006400;
}
.p-problem__head span {
  display: inline-block;
}
@media screen and (min-width:768px) {
  .p-problem__head {
    font-size: 48px;
  }
}

.p-problem__body {
  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;
  margin-top: 100px;
}

.p-problem__text-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: 50px;
}
@media screen and (min-width:768px) {
  .p-problem__text-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-problem__text-item {
  width: 250px;
}

.p-problem__body-target {
  width: 80%;
}
@media screen and (min-width:768px) {
  .p-problem__body-target {
    width: 500px;
  }
}

.l-solutions {
  padding-top: 120px;
  padding-bottom: 80px;
}

.p-solutions__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 34px;
  color: #006400;
}
@media screen and (min-width:768px) {
  .p-solutions__head {
    font-size: 48px;
  }
}

.p-solutions__target {
  margin-top: 24px;
  margin-inline: auto;
  width: 80%;
}
@media screen and (min-width:768px) {
  .p-solutions__target {
    width: 500px;
  }
}

.p-solutions__body {
  margin-top: 100px;
}

.p-solutions__solutions {
  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;
  gap: 50px;
}
@media screen and (min-width:768px) {
  .p-solutions__solutions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-solutions__solutions-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 250px;
  border: 1px solid black;
  padding-inline: 10px;
  padding-block: 10px;
}

.p-solutions__solutions-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-solutions__solutions-img {
  margin-top: 30px;
}

.slide-item--top-works {
  padding-top: 9.0666666667vw;
  position: relative;
}
.slide-item--top-works img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.slide-item--top-works .slide-item--top-works-Frame-sp {
  display: block;
  width: 100%;
}
@media screen and (min-width:768px) {
  .slide-item--top-works .slide-item--top-works-Frame-sp {
    display: none;
  }
}
.slide-item--top-works .slide-item--top-works-Frame-pc {
  display: none;
}
@media screen and (min-width:768px) {
  .slide-item--top-works .slide-item--top-works-Frame-pc {
    display: block;
    width: 100%;
  }
}
.slide-item--top-works video {
  display: block;
  width: 100%;
}
.slide-item--top-works .slide-video-sp--top-works {
  display: block;
  margin-top: 8.8vw;
  margin-inline: auto;
  width: 97%;
}
@media screen and (min-width:768px) {
  .slide-item--top-works .slide-video-sp--top-works {
    display: none;
  }
}
.slide-item--top-works .slide-video-tb--top-works {
  display: none;
}
@media screen and (min-width:768px) {
  .slide-item--top-works .slide-video-tb--top-works {
    display: block;
    width: 92%;
    margin-inline: auto;
    margin-top: 16px;
  }
}
@media screen and (min-width:1024px) {
  .slide-item--top-works .slide-video-tb--top-works {
    margin-top: 24px;
  }
}
@media screen and (min-width:768px) {
  .slide-item--top-works {
    padding-top: 17px;
  }
}
@media screen and (min-width:1024px) {
  .slide-item--top-works {
    padding-top: 24px;
  }
}

.page__works-link {
  text-decoration: underline;
  color: #006400;
}

@media screen and (min-width:1024px) {
  .top-works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.works__item + .works__item {
  margin-top: 40px;
}
@media screen and (min-width:1024px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-img {
  margin-bottom: 14px;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.works__item-name {
  text-align: center;
  margin-top: 10.1333333333vw;
  font-size: clamp(0.75rem, 0.398rem + 1.5vw, 1.75rem);
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .works__item-name {
    margin-top: 130px;
  }
}
@media screen and (min-width:1024px) {
  .works__item-name {
    margin-top: 170px;
  }
}

.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

.p-faq__head {
  color: #006400;
  font-size: 34px;
  text-align: left;
}

.p-faq__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width:768px) {
  .p-faq__boxes {
    margin-top: 40px;
    gap: 20px;
  }
}

.p-faq__box {
  overflow: hidden;
  border-radius: 5px;
  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-faq__box {
    border-radius: 10px;
  }
}
.p-faq__box.is-open .c-qa__box-head-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.c-qa__box-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  padding-inline: 13px;
  background-color: #006400;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .c-qa__box-head {
    gap: 30px;
    padding-block: 30px;
    padding-inline: 58px;
  }
}
.c-qa__box-head:focus {
  outline-color: #fff;
}

.c-qa__box-head-icon {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  color: #fff;
}
@media screen and (min-width:768px) {
  .c-qa__box-head-icon {
    font-size: 23px;
  }
}

.c-qa__box-head-text {
  display: inline-block;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .c-qa__box-head-text {
    font-size: 23px;
  }
}

.c-qa__box-head-button {
  margin-block: auto;
  position: relative;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #fff;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-qa__box-head-button::before, .c-qa__box-head-button::after {
  position: absolute;
  content: "";
  background-size: contain;
  display: block;
  width: 15px;
  height: 3px;
  background: #006400;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}
.c-qa__box-head-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width:768px) {
  .c-qa__box-head-button {
    width: 48px;
    height: 48px;
  }
}

.p-qa__box-body {
  display: none;
}

.c-qa__box-body-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-block: 20px;
  padding-inline: 15px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .c-qa__box-body-answer {
    padding-block: 30px;
    padding-inline: 58px;
    gap: 30px;
  }
}

.c-qa__box-body-icon {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  color: #000;
}
@media screen and (min-width:768px) {
  .c-qa__box-body-icon {
    font-size: 23px;
  }
}

.c-qa__box-body-text {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6; /* 22.4px */
}
.c-qa__box-body-text span {
  display: block;
}
.c-qa__box-body-text span:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width:768px) {
  .c-qa__box-body-text {
    font-size: 23px;
  }
}

.page__technical-link {
  text-decoration: underline;
  color: #006400;
}

.technical__items {
  margin-top: 20px;
  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;
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .technical__items {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.technical__item {
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .technical__item {
    width: calc((100% - 60px) / 3);
  }
}
.technical__item:not(:first-child) {
  display: none;
}
@media screen and (min-width:768px) {
  .technical__item:not(:first-child) {
    display: block;
  }
}
.technical__item:not(:first-child) + .technical__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .technical__item:not(:first-child) + .technical__item:not(:first-child) {
    margin-top: 0;
  }
}
.technical__item:hover {
  opacity: 0.7;
}

.technical__item-img {
  margin-bottom: 14px;
}
.technical__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.technical__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.technical__item-link {
  text-decoration: underline;
  font-size: 14px;
}

.twitter-timeline {
  width: 100%;
  height: 600px;
}
.twitter-timeline iframe {
  width: 100%;
  height: 100%;
}

.blog__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: 40px;
}
@media screen and (min-width:1024px) {
  .blog__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.page__blog-link {
  text-decoration: underline;
  color: #006400;
}

.blog__text {
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (min-width:1024px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}

@media screen and (min-width:768px) {
  .about__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
  }
}

.about__img {
  margin-bottom: 32px;
  margin-inline: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80%;
  overflow: hidden;
  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;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__img img {
  width: 100%;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width:768px) {
  .about__img {
    width: 40%;
  }
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

.page-bottom {
  background-color: #3cb371;
  color: #fff;
  padding: 40px 0;
}

.page-bottom__item .page-bottom--contact {
  background-color: #3cb371;
  opacity: 0.7;
}
.page-bottom__item .page-bottom--twitter {
  background-color: #90ee90;
}

.header {
  background-color: #006400;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1024px) {
  .header {
    padding: 50px 20px;
  }
}

.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.header__container {
  width: 100%;
  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;
  padding-inline: 24px;
}
@media screen and (min-width:1024px) {
  .header__container {
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
}

.header__logo {
  display: inline-block;
  font-size: 20px;
  color: #fff;
}
@media screen and (min-width:1024px) {
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.header__sub {
  display: block;
  font-size: 10px;
  color: #fff;
}
@media screen and (min-width:768px) {
  .header__sub {
    display: inline-block;
    margin-left: 16px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width:1024px) {
  .header__nav {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  color: #fff;
}

.header__menu-button {
  border: none;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width:1024px) {
  .header__menu-button {
    display: none;
  }
}
.header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}

.drawer-content {
  height: calc(100vh - 60px);
  border-top: 1px solid #fff;
  padding-top: 60px;
  background-color: #006400;
  display: none;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 60px;
}
@media screen and (min-width:1024px) {
  .drawer-content {
    border: none;
  }
}

.drawer-content__menu {
  margin-inline: auto;
  padding-inline: 60px;
}
@media screen and (min-width:1024px) {
  .drawer-content__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.drawer-content__menu-list {
  list-style: none;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.drawer-content__menu-list li {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 20px;
  vertical-align: baseline;
}
.drawer-content__menu-list li a {
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.drawer-content__menu-list li a:hover {
  background-color: #fff;
  color: #006400;
}

.page-works__item + .page-works__item {
  margin-top: clamp(2.5rem, 0.2992957746rem + 9.3896713615vw, 8.75rem);
}

.page-works__item-name {
  text-align: center;
  margin-top: clamp(0.625rem, 0.2288732394rem + 1.6901408451vw, 1.75rem);
  font-size: clamp(0.75rem, 0.398rem + 1.5vw, 1.75rem);
  font-weight: bold;
}

.page-works__item-img {
  margin-top: clamp(0.875rem, 0.4348591549rem + 1.8779342723vw, 2.125rem);
  margin-bottom: 14px;
}
.page-works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.page-contact-thanks p {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width:768px) {
  .page-contact-thanks p {
    font-size: 16px;
  }
}

.contact__button-submit {
  border: none;
  background: #006400;
  color: white;
}
.contact__button-submit:hover {
  background-color: #fff;
  border: #006400 1px solid;
  color: #006400;
}

.contact__field {
  padding-block: 24px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width:1024px) {
  .contact__field {
    padding-bottom: 28px;
    padding-top: 28.5px;
  }
}

.form-field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field-tag {
  margin-left: 12px;
  padding: 3px 6px 2px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 4px;
  background: #ee5a6d;
}

.form-field-item {
  margin-top: 12px;
}

.form-text {
  margin-top: 12px;
}

[type=text],
[type=tel],
[type=email],
textarea {
  width: 100%;
  border-radius: 4px;
  background: #f6f6f6;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #006400;
  border: 2px solid #f6f6f6;
}

.section__praivacyPolicy {
  -webkit-text-decoration: solid underline;
          text-decoration: solid underline;
  display: block;
  text-align: center;
}

.p-praivacyPolicy-content__item:not(:first-child) {
  margin-top: 24px;
}

.p-praivacyPolicy-pagetitle span {
  font-size: 32px;
}
@media screen and (min-width:768px) {
  .p-praivacyPolicy-pagetitle span {
    font-size: 40px;
  }
}

.u-indent {
  padding-left: 1rem;
  text-indent: -1rem;
}

.u-indent-two {
  padding-left: 2rem;
  text-indent: -2rem;
}

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

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

.u-nonAspectRatio img {
  aspect-ratio: unset !important;
}

@media screen and (min-width:1024px) {
  .message__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.message__img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 32px;
}
@media screen and (min-width:1024px) {
  .message__img {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 50%;
  }
}

.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}

.entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .entries {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.entry-item {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.entry-item:not(:first-child) {
  display: none;
}
.entry-item:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width:768px) {
  .entry-item {
    width: 33.3333333333%;
  }
  .entry-item:not(:first-child) {
    display: block;
  }
}

.entry-item-img {
  text-align: center;
  padding: 20px;
}
.entry-item-img img {
  border: none;
  max-height: 200px;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width:768px) {
  .entry-item-img img {
    max-height: 100px;
  }
}

.entry-item-body {
  padding: 20px;
}

.entry-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.entry-item-tag {
  background: #006400;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}

.entry-item-title {
  font-family: "Kiwi Maru", "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 14px;
}

.entry-item-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}

.pagination {
  margin-top: 12px;
  text-align: center;
}

.page-numbers {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #808080;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
}

.page-numbers.current {
  background: #006400;
  border: 1px solid #006400;
  color: #fff;
  font-weight: 700;
}
.page-numbers.current a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.page__technical__item {
  overflow: hidden;
}
.page__technical__item div iframe {
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .page__technical__item {
    width: calc((100% - 60px) / 3);
  }
}
.page__technical__item:not(:first-child) + .page__technical__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .page__technical__item:not(:first-child) + .page__technical__item:not(:first-child) {
    margin-top: 0;
  }
}

.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 120px;
  padding-top: 58px;
}

#primary {
  margin-top: 30px;
}

.breadcrumb {
  margin-top: clamp(0.875rem, 0.6549295775rem + 0.9389671362vw, 1.5rem);
  margin-bottom: 14px;
  font-size: 12px;
}
.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}
@media screen and (min-width:768px) {
  .breadcrumb {
    font-size: 16px;
  }
}

.entry {
  padding: 40px 0 40px;
}
@media screen and (min-width:768px) {
  .entry {
    padding: 40px 40px 12px;
  }
}

.entry-body {
  margin-top: 56px;
  font-family: "Kiwi Maru", "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
}
@media screen and (min-width:1024px) {
  .entry-body {
    margin-top: 48px;
  }
}
.entry-body img {
  margin-top: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 335/209;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:1024px) {
  .entry-body img {
    aspect-ratio: 670/420;
  }
}
.entry-body p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
}
.entry-body p:nth-child(2) {
  margin-top: 24px;
}
.entry-body a {
  color: #006400;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.entry-body h2 {
  margin-top: 56px;
  padding-left: 22px;
  padding-block: 6px;
  font-size: 18px;
  color: #006400;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.44px;
  position: relative;
}
.entry-body h2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 7px;
  height: 40px;
  background-color: #006400;
}
@media screen and (min-width:1024px) {
  .entry-body h2::before {
    width: 8px;
    height: 52px;
  }
}
@media screen and (min-width:1024px) {
  .entry-body h2 {
    margin-top: 60px;
    padding-left: 28px;
    padding-block: 8px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}
.entry-body .entry-body_text {
  margin-top: 70px;
}
@media screen and (min-width:768px) {
  .entry-body .entry-body_text {
    margin-top: 100px;
  }
}
.entry-body .entry-body_text-field {
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 10px;
}
.entry-body .entry-body_text-field tr,
.entry-body .entry-body_text-field td,
.entry-body .entry-body_text-field th {
  padding: 8px;
  border: 1px solid gray;
}
.entry-body .entry-body_text-field td:first-child,
.entry-body .entry-body_text-field th:first-child {
  width: 30%;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width:768px) {
  .entry-body .entry-body_text-field {
    font-size: 16px;
  }
}
.entry-body h3 {
  margin-top: 40px;
  font-size: 16px;
  color: #006400;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.28px;
  padding-bottom: 4px;
  border-bottom: 1px solid #006400;
  margin-bottom: 16px;
}
@media screen and (min-width:1024px) {
  .entry-body h3 {
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
  }
}
.entry-body h4 {
  color: #006400;
  margin-top: 56px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
  margin-bottom: 16px;
}
@media screen and (min-width:1024px) {
  .entry-body h4 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}
.entry-body ul {
  margin-top: 12px;
  margin-left: 14px;
  list-style: inside;
}
.entry-body ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}
.entry-body ul li:not(:first-child) {
  margin-top: 4px;
}
@media screen and (min-width:1024px) {
  .entry-body ul {
    margin-top: 21px;
  }
}

.entry-img_content {
  overflow: clip;
}
.entry-img_content:hover img {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.entry-label {
  margin-bottom: 18px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.entry-label:not(:first-child) {
  margin-left: 10px;
}
.entry-label a,
.entry-label p {
  display: inline-block;
  padding: 4px 16px;
  background: #006400;
}
.entry-label a:not(:first-child),
.entry-label p:not(:first-child) {
  margin-left: 10px;
}

.fas {
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-angle-left {
  font-family: "Font Awesome 5 Free";
}
.fa-angle-left ::before {
  content: "\f104";
}

.fa-angle-right {
  font-family: "Font Awesome 5 Free";
}
.fa-angle-right ::before {
  content: "\f105";
}

.entry-title {
  font-size: 18px;
  font-family: "Kiwi Maru", "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
}
@media screen and (min-width:1024px) {
  .entry-title {
    font-size: 30px;
  }
}

.entry-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}

.entry-published {
  color: #808080;
  font-size: 12px;
}
.entry-published::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-updated {
  color: #808080;
  font-size: 12px;
  margin-left: 27px;
}
.entry-updated::before {
  content: "\f1da";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 8px;
}

.archive-head {
  border-top: 3px solid #006400;
  margin-bottom: 56px;
  padding: 28px 0 0;
}

.archive-head.m_description {
  margin-bottom: 70px;
}

.archive-lead {
  color: #006400;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.archive-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.archive-title.m_category::before {
  color: #006400;
  content: "\f02d";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-title.m_search span {
  color: #006400;
}

.archive-title.m_search::before {
  color: #006400;
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-description {
  font-size: 14px;
  line-height: 1.4;
}

.works__item {
  padding: 10px;
}
.works__item:hover .works__item-img {
  overflow: hidden;
}
.works__item:hover .works__item-img img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.button {
  -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.button:hover {
  background-color: #fff;
}
.button:hover .button__icon-path {
  fill: #4a4a4a;
}
.button:hover .button__text {
  color: #4a4a4a;
}
.button--bg {
  color: #4a4a4a;
}
.button--bg:hover {
  opacity: 0.7;
}