@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  /* justify-content: center; */
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
  display: grid;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

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

/* p {
  text-align: justify;
} */
/* ブラウザのデフォルトのスタイルだと枠線がついてしまうため打ち消し */
button {
  border-width: 0;
}

.sample-deudeu {
  color: red;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  html {
    font-size: calc(1600vw / 1200);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(1600vw / 375);
  }
}

body {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px) {
  body {
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0.04em;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../images/icon-external-link.svg");
  margin-left: 0.25em;
}

.l-top-fv {
  position: relative;
}

.l-top-fv__inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
}

.l-top-about {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-top-about {
    padding-bottom: 1.875rem;
  }
}

.l-top-faq {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-top-faq {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.l-problem {
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-problem {
    padding-top: 1.875rem;
    padding-bottom: 1.25rem;
  }
}

.c-top-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  color: #006400;
}
@media screen and (max-width: 767px) {
  .c-top-section-title {
    font-size: 1.75rem;
    text-align: center;
  }
}

.c-qa__box-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #006400;
  cursor: pointer;
  gap: 1.875rem;
  padding-block: 0.875rem;
  padding-inline: 3.625rem;
}
@media screen and (max-width: 767px) {
  .c-qa__box-head {
    gap: 4px;
    padding-block: 0.875rem;
    padding-inline: 0.8125rem;
  }
}
.c-qa__box-head:focus {
  outline-color: #fff;
}

.c-qa__box-head-icon {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  color: #fff;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-qa__box-head-icon {
    font-size: 0.75rem;
  }
}

.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: 1rem;
}
@media screen and (max-width: 767px) {
  .c-qa__box-head-text {
    font-size: 0.75rem;
  }
}

.c-qa__box-head-button {
  margin-block: auto;
  position: relative;
  border-radius: 50%;
  background: #fff;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-qa__box-head-button {
    height: 1rem;
    width: 1rem;
  }
}
.c-qa__box-head-button::before, .c-qa__box-head-button::after {
  position: absolute;
  content: "";
  background-size: contain;
  display: block;
  width: 0.625rem;
  height: 0.125rem;
  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;
}

.c-qa__box-body-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-block: 1.875rem;
  padding-inline: 3.625rem;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-qa__box-body-answer {
    gap: 1rem;
    padding-block: 1.25rem;
    padding-inline: 0.9375rem;
    background: #fff;
  }
}

.c-qa__box-body-icon {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25; /* 30px */
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-qa__box-body-icon {
    font-size: 0.75rem;
  }
}

.c-qa__box-body-text {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  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 (max-width: 767px) {
  .c-qa__box-body-text {
    font-size: 0.75rem;
  }
}

.c-textBlock__lead {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-textBlock__lead {
    text-align: center;
    font-size: 0.75rem;
  }
}

.c-textBlock__description {
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-textBlock__description {
    text-align: center;
    font-size: 0.75rem;
  }
}

.c-textBlock__list {
  margin-inline: auto;
  margin-top: 1.5rem;
  width: 37.5rem;
  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.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-textBlock__list {
    width: 80%;
  }
}

.c-textBlock__list-item {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-textBlock__list-item {
    font-size: 0.75rem;
  }
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0.125rem solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.c-button--cta {
  /* CTA専用カラーをCSS変数で定義（後から調整しやすく） */
  --btn-bg: #ffffff; /* 通常時の背景 */
  --btn-text: var(--btn-accent);
  /* ボタンとしての存在感を確保 */
  padding: 1.125rem 1.75rem;
  min-width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .c-button--cta {
    padding: 0.75rem 1rem;
    min-width: 12.5rem;
  }
}
.c-button--cta {
  /* カプセル型 */
  border-radius: 9999px;
  /* 通常時の配色 */
  background-color: var(--btn-bg);
  color: var(--btn-text);
  /* 白背景でも輪郭が分かるように */
  /* 浮いて見える程度の影（主張しすぎない） */
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  /* ホバー・キーボード操作時 */
}
.c-button--cta:hover, .c-button--cta:focus-visible {
  /* 背景と文字色を反転 */
  background-color: var(--btn-accent);
  color: #ffffff;
  /* 枠線も背景色に合わせる */
  /* 少し浮かせて反応を返す */
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.c-section__lead-text {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
.c-section__lead-text span {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-section__lead-text {
    text-align: left;
  }
}

.c-caseSheet__title {
  font-size: 1.625rem;
  color: #006400;
}
@media screen and (max-width: 767px) {
  .c-caseSheet__title {
    font-size: 1rem;
  }
}

.c-caseSheet__table {
  margin-top: 0.625rem;
  table-layout: fixed;
}
.c-caseSheet__table td {
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .c-caseSheet__table {
    margin-top: 0.3125rem;
  }
}

table {
  width: 56.25rem;
  border-collapse: collapse;
  border: 1px solid #222;
}
@media screen and (max-width: 767px) {
  table {
    width: 100%;
  }
}

td {
  padding: 0.625rem;
  border-left: 1px solid #222;
  vertical-align: middle;
  font-size: 1rem;
}
td:first-child {
  width: 40%;
  border-left: none;
}
@media screen and (max-width: 767px) {
  td {
    font-size: 0.875rem;
  }
}

tr {
  border: 1px solid #222;
}

.c-caseSheet__link {
  text-decoration: underline;
  color: #0074cc;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.c-note {
  display: block;
  font-size: 0.75rem;
}

.c-section__head {
  text-align: center;
  margin-bottom: 32px;
  color: #006400;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-section__head {
    font-size: 1.5rem;
  }
}
.c-section__head--center {
  text-align: center;
}

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

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

.p-top-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    height: 100vw;
    width: 100%;
  }
}
.p-top-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/front-page/fv/top-fv__bg-coding-tb.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-top-fv::before {
    background-image: url("../img/front-page/fv/top-fv__bg-coding-sp.png");
  }
}

.p-top-fv__content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0.9;
  text-align: center;
}

.p-top-fv__content-head {
  margin-inline: auto;
  padding: 1.25rem 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  background-color: white;
  font-size: 2.25rem;
  color: #006400;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content-head {
    padding: 0.625rem 0.625rem;
    font-size: 1.5rem;
  }
}

.p-top-fv__content-leadText {
  margin-top: 6.25rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #006400;
  background-color: white;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content-leadText {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
}

.p-top-cta {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta {
    margin-top: 2.875rem;
  }
}

.p-top-cta__wrapper {
  background-color: #ddefe6;
  padding-block: 3.125rem;
  border-radius: 0.9375rem;
}

.p-top-cta__head {
  text-align: center;
}
.p-top-cta__body {
  margin-top: 3.125rem;
  width: 43.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-cta__body {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.p-top-cta__body-lead {
  font-size: 1.625rem;
  color: #006400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-cta__body-lead {
    text-align: center;
    font-size: 1.125rem;
  }
}

.p-top-cta__button {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-cta__button {
    margin-top: 1.5rem;
  }
}

.p-top-problem {
  margin-top: 2.8125rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-problem {
    margin-top: 2.875rem;
    padding-bottom: 3.125rem;
  }
}

.p-top-problem__head {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-problem__head {
    margin-top: 1.5rem;
  }
}

.p-top-problem__body {
  margin-top: 3.125rem;
  width: 43.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-problem__body {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.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 (max-width:1024px) {
  .p-solutions__head {
    font-size: 48px;
  }
}

.p-solutions__target {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-solutions__target {
    width: 80%;
  }
}

.p-solutions__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;
}
@media screen and (max-width: 767px) {
  .p-solutions__body {
    margin-top: 3.75rem;
  }
}

.p-solutions__solutions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-solutions__solutions {
    -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;
  }
}

.p-solutions-threeItems {
  width: 15.625rem;
}

.p-solutions-twoItems {
  width: 25rem;
}

.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;
  border: 0.0625rem solid;
  padding-inline: 0.625rem;
  padding-block: 0.625rem;
}

.p-solutions__solutions-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1rem;
  padding: 0.625rem;
}
.p-solutions__solutions-text:first-child {
  border: 0.125rem solid #006400;
  border-radius: 0.625rem;
  text-align: center;
  font-weight: bold;
}
.p-solutions__solutions-text:nth-child(2) {
  margin-top: 0.9375rem;
  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.625rem;
}

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

.p-solutions__solutions-text-note {
  margin-top: 0.625rem;
  font-size: 1rem;
}
.p-solutions__solutions-text-note span {
  display: block;
}
.p-solutions__solutions-text-note span:not(:first-child) {
  margin-top: 1rem;
}

.p-technical-archive__items {
  margin-top: 6.25rem;
  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-top: 2.5rem;
  -ms-flex-direction: row;
      flex-direction: row;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technical-archive__items {
    margin-top: 3.125rem;
    margin-bottom: 0.75rem;
  }
}

.p-technical-archive-item {
  background: #fff;
  -webkit-box-shadow: 0 0 0.1875rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0.1875rem 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 3.125rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .p-technical-archive-item {
    width: 100%;
  }
}

.p-technical-archive-item-img {
  text-align: center;
  padding: 1.25rem;
}
.p-technical-archive-item-img img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-technical-archive-item-body {
  padding: 1.25rem;
}

.p-technical-archive-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: 0.625rem;
}

.p-technical-archive-item-published {
  font-size: 1.125rem;
}

.p-technical-archive-item-title {
  font-size: 1.125rem;
}

.p-technical-archive-item-excerpt {
  margin-top: 1rem;
  font-size: 1rem;
}

.p-blog-entry {
  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-top: 2.5rem;
  -ms-flex-direction: row;
      flex-direction: row;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-blog-entry {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.p-blog-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;
  width: calc((100% - 40px) / 3);
}
.p-blog-entry-item:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-blog-entry-item {
    width: 100%;
  }
}

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

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

.p-blog-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;
}

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

.p-blog-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;
}

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

.p-top-approach {
  padding: 6.25rem 0;
  background-color: #f6f8f7;
}
@media screen and (max-width: 767px) {
  .p-top-approach {
    padding: 3.125rem 0;
  }
}

.p-top-approach__body {
  margin-top: 3.125rem;
  width: 43.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-approach__body {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.p-top-faq__boxes {
  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;
}
@media screen and (max-width: 767px) {
  .p-top-faq__boxes {
    gap: 0.875rem;
  }
}

.p-top-faq__box {
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.3125rem;
  }
}
.p-top-faq__box.is-open .c-qa__box-head-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

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

.p-works-archive__items {
  margin-top: 6.25rem;
  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 (max-width: 767px) {
  .p-works-archive__items {
    margin-top: 3.125rem;
  }
}

.p-works-archive__item {
  margin-inline: auto;
}
.p-works-archive__item + .p-works-archive__item {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-works-archive__item + .p-works-archive__item {
    margin-top: 1.875rem;
  }
}

.contact__attention {
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .contact__attention {
    margin-bottom: 19px;
  }
}

.contact__attention-text {
  font-size: 14px;
  font-weight: 600;
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  .contact-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-text {
  width: 100%;
  padding: 7px 11px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .form-text {
    padding: 6px 11px;
  }
}
.form-text:focus {
  outline: #4a4a4a auto 1px;
}

.contact-control__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 16px;
  opacity: 0.7;
  background-color: #3ea1d1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-control__label {
    height: 40px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 0 4px 0;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
    font-size: 18px;
    font-weight: 600;
  }
}

.is-required {
  color: #e7728e;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .is-required {
    font-size: 12px;
  }
}

.is-required__attention {
  font-size: 14px;
}

.contact-control__item {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .contact-control__item {
    margin-top: 0;
    width: 320px;
  }
}
.contact-control__item .contact-radio {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact-control__item .contact-radio:checked + .contact-radio__text {
  background: #006400;
  color: #fff;
}
.contact-control__item .contact-radio:focus + .contact-radio__text {
  outline: #006400 auto 5px;
}

.contact-control__radios {
  width: 166px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}
.contact-radio__text {
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #006400;
}
@media screen and (max-width: 767px) {
  .contact-radio__text {
    padding: 6px 24px 5px;
  }
}

.form-textarea {
  width: 100%;
  height: 122px;
  resize: vertical;
}

.contact__privacy {
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    margin-top: 32px;
  }
}
.contact__privacy .contact-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact__privacy .contact-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.contact__privacy .contact-checkbox__input:focus + .form-checkbox__text::before {
  outline: #006400 auto 1px;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #006400;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  border: 1px solid #006400;
  top: 0;
  left: 0;
}
.form-checkbox__text::after {
  width: 19.414px;
  height: 14.621px;
  background: url("../img/checked-icon.png") no-repeat center/contain;
  left: 1.29px;
  opacity: 0;
}

.contact__button {
  margin-top: 23px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__button {
    margin-top: 44px;
  }
}

.p-page-about-intro p {
  font-size: 1rem;
}
.p-page-about-intro p span {
  display: block;
}
.p-page-about-intro p span:not(:first-child) {
  margin-top: 1rem;
}
.p-page-about-intro {
  margin-top: 3.125rem;
  width: 43.75rem;
  margin-inline: auto;
  text-align: center;
  padding: 1.25rem 1.875rem;
  border: 1px solid #006400;
}
@media screen and (max-width: 767px) {
  .p-page-about-intro p {
    text-align: justify;
  }
  .p-page-about-intro {
    margin-top: 1.5625rem;
    width: 100%;
  }
}

.p-page-about-body {
  margin-top: 3.125rem;
  width: 43.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-page-about-body {
    margin-top: 1.5625rem;
    width: 100%;
  }
}

.p-page-about-body-item {
  padding: 1.25rem 1.875rem;
  background-color: #ddefe6;
  font-size: 1rem;
}
.p-page-about-body-item + .p-page-about-body-item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-about-body-item {
    margin-top: 0.625rem;
  }
}

.p-page-about-body-item__body {
  margin-top: 1.25rem;
  padding-left: 1rem;
}
.p-page-about-body-item__body li::marker {
  content: "・";
}

.p-page-about__container {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__container {
    margin-top: 3.125rem;
    -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: 2.5rem;
  }
}

.p-page-about__img {
  width: 21.875rem;
}
.p-page-about__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);
}
@media screen and (max-width: 767px) {
  .p-page-about__img {
    width: 80%;
  }
}

.p-page-about__text {
  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: 0.625rem;
  font-size: 1rem;
  line-height: 1.6;
}
.p-page-about__text span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-page-about__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.p-page-about__text-position {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.p-page-about__text-name {
  text-align: center;
  font-size: 2rem;
}

.p-page-about__text-description-item {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-page-about__text-description-item {
    font-size: 0.75rem;
  }
}

.p-page-about__text-description {
  margin-top: 1.5rem;
  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.25rem;
}

.p-page-about__text-name-small {
  font-size: 1rem;
  display: block;
  margin-right: 0.625rem;
}

.p-footer {
  margin-top: 6.25rem;
  background-color: #006400;
  text-align: center;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 3.125rem;
  }
}

.p-footer__copy {
  font-size: 0.6875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

.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 (max-width:1200px) {
  .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;
}

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

.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;
}

#wpadminbar {
  display: none;
}

.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: none;
}
@media screen and (max-width: 767px) {
  .slide-item--top-works .slide-item--top-works-Frame-sp {
    width: 100%;
    display: block;
  }
}
.slide-item--top-works .slide-item--top-works-Frame-pc {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .slide-item--top-works .slide-item--top-works-Frame-pc {
    display: none;
  }
}
.slide-item--top-works video {
  display: block;
  width: 100%;
}
.slide-item--top-works .slide-video-sp--top-works {
  display: none;
}
@media screen and (max-width: 767px) {
  .slide-item--top-works .slide-video-sp--top-works {
    display: block;
    margin-top: 8.8vw;
    margin-inline: auto;
    width: 97%;
  }
}
@media screen and (max-width:1200px) {
  .slide-item--top-works .slide-video-tb--top-works {
    margin-top: 24px;
    display: block;
    width: 92%;
    margin-inline: auto;
  }
}
@media screen and (max-width:1024px) {
  .slide-item--top-works .slide-video-tb--top-works {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .slide-item--top-works .slide-video-tb--top-works {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .slide-item--top-works {
    padding-top: 17px;
  }
}
@media screen and (max-width:1200px) {
  .slide-item--top-works {
    padding-top: 24px;
  }
}

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

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

.works__item + .works__item {
  margin-top: 40px;
}
@media screen and (max-width:1200px) {
  .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 {
  margin-top: 170px;
  text-align: center;
  font-weight: bold;
  font-size: 1.75rem;
}
@media screen and (max-width:1024px) {
  .works__item-name {
    margin-top: 180px;
  }
}
@media screen and (max-width: 767px) {
  .works__item-name {
    margin-top: 13.3333333333vw;
    font-size: 0.75rem;
  }
}

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

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

.technical__item {
  overflow: hidden;
}
@media screen and (max-width:1024px) {
  .technical__item {
    width: calc((100% - 60px) / 3);
  }
}
.technical__item:not(:first-child) {
  display: none;
}
@media screen and (max-width:1024px) {
  .technical__item:not(:first-child) {
    display: block;
  }
}
.technical__item:not(:first-child) + .technical__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width:1024px) {
  .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 (max-width:1200px) {
  .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;
}

.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: #ddefe6;
}

.header {
  background-color: #006400;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

.header__sub {
  display: inline-block;
  font-size: 12px;
  margin-left: 16px;
  color: #fff;
}
@media screen and (max-width:1024px) {
  .header__sub {
    display: block;
    margin-left: 0;
    padding-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .header__sub {
    display: block;
  }
}

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

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

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

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

.drawer-content__menu {
  margin-inline: auto;
  padding-inline: 60px;
}

.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;
}

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

.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;
}

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

.section__contents {
  margin-top: 40px;
}

.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 (max-width:1024px) {
  .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 (max-width:1024px) {
  .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; /* 任意の行数を指定 */
}

.p-technical-archive__items {
  margin-top: 6.25rem;
  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-top: 2.5rem;
  -ms-flex-direction: row;
      flex-direction: row;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technical-archive__items {
    margin-top: 3.125rem;
    margin-bottom: 0.75rem;
  }
}

.p-technical-archive-item {
  background: #fff;
  -webkit-box-shadow: 0 0 0.1875rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0.1875rem 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 3.125rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .p-technical-archive-item {
    width: 100%;
  }
}

.p-technical-archive-item-img {
  text-align: center;
  padding: 1.25rem;
}
.p-technical-archive-item-img img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-technical-archive-item-body {
  padding: 1.25rem;
}

.p-technical-archive-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: 0.625rem;
}

.p-technical-archive-item-published {
  font-size: 1.125rem;
}

.p-technical-archive-item-title {
  font-size: 1.125rem;
}

.p-technical-archive-item-excerpt {
  margin-top: 1rem;
  font-size: 1rem;
}

.p-page-404 {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media screen and (max-width:1024px) {
  .p-page-404 {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.p-page-404__inner {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 45vh;
  text-align: center;
  gap: 2rem;
}
@media screen and (max-width:1024px) {
  .p-page-404__inner {
    gap: 2.5rem;
    min-height: 50vh;
  }
}

.p-page-404__message {
  margin: 0;
  max-width: 100%;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.p-page-404__link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-page-404__link.c-button--cta {
  --btn-bg: #006400;
  --btn-text: #fff;
  --btn-accent: rgb(153.38, 213.8, 180.86);
  background-color: var(--btn-bg);
  color: var(--btn-text);
}
.p-page-404__link.c-button--cta:hover, .p-page-404__link.c-button--cta:focus-visible {
  background-color: var(--btn-accent);
  color: #fff;
}

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

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

.u-textaligncenter {
  text-align: center;
}

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

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

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

@media screen and (max-width:1200px) {
  .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 (max-width:1200px) {
  .message__img {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 50%;
  }
}

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

.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 (max-width:1024px) {
  .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 (max-width:1024px) {
  .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 (max-width:1024px) {
  .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: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 1.25rem;
  }
}

.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 (max-width:1024px) {
  .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 (max-width:1024px) {
  .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: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 1rem;
}
.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 0.875rem;
    font-size: 0.75rem;
  }
}

.entry {
  padding: 40px 0 40px;
}
@media screen and (max-width:1024px) {
  .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 (max-width:1200px) {
  .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 (max-width:1200px) {
  .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 (max-width:1200px) {
  .entry-body h2::before {
    width: 8px;
    height: 52px;
  }
}
@media screen and (max-width:1200px) {
  .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 (max-width:1024px) {
  .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 (max-width:1024px) {
  .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 (max-width:1200px) {
  .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 (max-width:1200px) {
  .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 (max-width:1200px) {
  .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 (max-width:1200px) {
  .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;
}