@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

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

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

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.5;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  gap: 24px;
  font-size: 16px;
  padding-block: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  border-radius: 10px;
  border: 2px solid #0f993b;
  cursor: pointer;
  background: #0f993b;
  color: #ffffff;
  letter-spacing: 0.15em;
  transition: all 0.2s;
}
.btn:hover {
  background: #ffffff;
  color: #0f993b;
}
.btn:hover .btn__icon--circle {
  border-color: #0f993b;
}
.btn--secondly {
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #0f993b;
}
.btn--secondly:hover {
  background: #0f993b;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--secondly:hover .btn__icon--products {
  border-color: #ffffff;
}
.btn--thirdly {
  background: #ffffff;
  color: #0f993b;
  border: 2px solid #0f9981;
}
.btn--thirdly:hover {
  background: #0f9981;
  color: #ffffff;
  border: 2px solid #ffffff;
}
@media screen and (max-width: 1140px) {
  .btn--cta {
    align-self: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .btn--cta {
    justify-content: center;
  }
}
.btn--product {
  border-radius: 3px;
  white-space: nowrap;
  background: #0f993b;
  border: 2px solid #0f993b;
}
.btn--sub {
  justify-content: flex-end;
  padding-right: clamp(1.25rem, 0.5897887324rem + 2.8169014085vw, 3.125rem);
  gap: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  border: 2px solid #ffffff;
  background: #ffffff;
  border-radius: 3px;
  color: #0f9981;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .btn--sub {
    justify-content: center;
    padding-right: 0;
  }
}
.btn--sub:hover {
  background: #0f9981;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--sub:hover .btn__icon--circle-sub {
  border-color: #ffffff;
}
.btn--achieve {
  border-radius: 3px;
}

.btn__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
}
.btn__icon--mail {
  width: 25px;
}
.btn__icon--hero {
  width: 38px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  padding: 6px;
  font-weight: 800;
}
.btn__icon--circle {
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 8px;
}
.btn__icon--circle-sub {
  border: 2px solid #0f9981;
  border-radius: 50%;
  padding: 8px;
}
.btn__icon--products {
  border: 2px solid #0f993b;
}
.btn__icon--arrow {
  width: 16px;
}
.btn__icon--arrow-circle {
  width: 40px;
}
.btn__icon--arrow-circle--thin {
  width: 30px;
  flex-shrink: 0;
}

.products .width-fix {
  width: -moz-fit-content;
  width: fit-content;
}

.products__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #e3e3e3;
  border-radius: 999px;
  padding-inline: 22px;
  padding-block: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  width: 200px;
  margin-inline: auto;
}
.products {
  /* Slickが自動生成する <ul> 要素 */
}
.products .slick-dots {
  display: flex;
  position: static;
  align-items: center;
  gap: clamp(1rem, 0.735915493rem + 1.1267605634vw, 1.75rem);
  /* ドット同士の間の余白 */
  list-style: none;
  margin: 0;
  padding: 0;
  /* Slickが自動生成する <li> 要素 */
}
.products .slick-dots li {
  margin: 0;
  padding: 0;
  /* ドット本体 */
}
.products .slick-dots li button {
  display: block;
  width: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  height: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  border-radius: 50%;
  border: 1px solid #000000;
  background: #ffffff;
  cursor: pointer;
  /* Slickが自動で入れる「1」などの数字テキストを隠す */
  font-size: 0;
  color: transparent;
  padding: 0;
}
.products .slick-dots li button::before {
  display: none;
}
.products .slick-dots li {
  /* アクティブ時のスタイル（元の &__dot--active のスタイル） */
}
.products .slick-dots li.slick-active button {
  background: #0f993b;
  border: none;
}

.arrow__prev {
  position: relative;
  width: 13px;
  height: 13px;
}
.arrow__prev::after {
  position: absolute;
  cursor: pointer;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 13px;
  height: 13px;
  border-top: 3px solid #3e3e3e;
  border-right: 3px solid #3e3e3e;
}

.arrow__next {
  position: relative;
  width: 13px;
  height: 13px;
}
.arrow__next::after {
  position: absolute;
  cursor: pointer;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
  height: 100%;
  border-top: 3px solid #3e3e3e;
  border-right: 3px solid #3e3e3e;
}
.arrow__next--header {
  display: none;
}
.arrow__next--header::after {
  left: 0%;
  border-top: 3px solid #0f993b;
  border-right: 3px solid #0f993b;
}
@media screen and (max-width: 1140px) {
  .arrow__next--header {
    display: block;
  }
}
.arrow__next--page-nav {
  width: 10px;
  height: 10px;
}
.arrow__next--page-nav::after {
  left: 0;
  border-color: #18a44b;
  transform: translate(-50%, -50%) rotate(135deg);
}
.arrow__next--pagent {
  width: 5px;
  height: 5px;
}
.arrow__next--pagent::after {
  border-top: 2px solid #858585;
  border-right: 2px solid #858585;
}

.arrow {
  width: 16px;
}

body,
html {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  overflow-wrap: anywhere;
}

a {
  text-decoration: none;
  color: #383838;
  display: inline-block;
}

ul {
  list-style: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 60px;
  padding-inline: clamp(0.9375rem, -0.0528169014rem + 4.2253521127vw, 3.75rem);
  width: 100%;
}
.container--news {
  padding-inline: 0px;
}

/* ステータスバー透過防止 */
.for-status-bars {
  position: fixed;
  top: 0;
  pointer-events: none;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}

/* タブバー透過防止 */
.for-tab-bars {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
}

.padding-block {
  padding-block: 100px;
}

.wp-block-list {
  padding-left: 25px;
}
.wp-block-list li {
  margin-bottom: 24px;
}

.wp-block-list li > ol {
  margin-top: 24px;
}

.wp-block-list-head {
  margin-bottom: 24px;
}

.wp-block-text {
  line-height: 1.5;
}

.wp-block-heading {
  line-height: 1.5;
}

.font-weight__400 {
  font-weight: 400 !important;
}

.font-weight__500 {
  font-weight: 500 !important;
}

.font-weight__600 {
  font-weight: 600 !important;
}

.font-weight__700 {
  font-weight: 700 !important;
}

.font-weight__800 {
  font-weight: 800 !important;
}

.font-weight__900 {
  font-weight: 900 !important;
}

main {
  margin-top: 70px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #f6f6f6;
  padding-inline: 14px;
  padding-top: 10px;
  padding-bottom: 13px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .header {
    padding-inline: 20px;
  }
}
.header__logo {
  width: clamp(120px, 15vw, 210px);
  line-height: 1;
}
.header__logo-image {
  max-width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.5897887324rem + 2.8169014085vw, 3.125rem);
}
@media screen and (max-width: 1140px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -70%;
    width: 80%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    z-index: 10;
    padding-inline: 30px;
    padding-top: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0rem, -0.9463028169rem + 4.0375586854vw, 2.6875rem);
}
@media screen and (max-width: 1140px) {
  .header__nav-list {
    gap: 20px;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
}
.header__nav-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.11em;
  transition: all 0.2s;
}
.header__nav-item:hover {
  color: #0f993b;
}
@media screen and (max-width: 1140px) {
  .header__nav-item {
    border-bottom: 2px solid #0f993b;
    padding-block: 12px;
  }
}
.header__link p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1140px) {
  .header__link p {
    flex-direction: row;
    gap: clamp(0.5rem, 0.0384615385rem + 2.0512820513vw, 1.5rem);
  }
}
.header__link span {
  font-size: 12px;
  font-weight: 900;
  color: #0f993b;
}
@media screen and (max-width: 1140px) {
  .header__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
  }
}
.header__cta {
  gap: 19px;
  padding: 10px 14px;
  letter-spacing: 0.07em;
  border-radius: 5px;
  max-width: 200px;
  width: 200px;
  font-size: 16px;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1140px) {
  .header__hamburger {
    display: block;
    position: relative;
    z-index: 100;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.2s ease-in-out;
  }
  .header__hamburger span:nth-of-type(1) {
    top: 0;
  }
  .header__hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__hamburger span:nth-of-type(3) {
    bottom: 0;
  }
}
.header #mask {
  display: none;
  transition: 0.5s;
}

.open .header__nav {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.open .header__hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.open .header__hamburger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.open #mask {
  width: 100%;
  height: 100%;
  background-color: #272727;
  display: block;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.footer {
  /* CJKテキストでの折り返しを無効化 */
  word-break: keep-all;
}
.footer .footer-cta {
  background: url("../img/bg_cta.jpg");
  background-size: cover;
  background-position: 70% 50%;
}
.footer .footer-cta__inner {
  padding-top: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  padding-bottom: clamp(3.75rem, 3.0897887324rem + 2.8169014085vw, 5.625rem);
}
.footer .footer-cta__title {
   font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
  letter-spacing: 0.15em;
  color: #0f993b;
  margin-bottom: 40px;
  line-height: 1.5;
}
.footer .footer-cta__content {
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 1.2957746479rem + 3.0046948357vw, 4rem);
}
@media screen and (max-width: 1140px) {
  .footer .footer-cta__content {
    flex-direction: column;
  }
}
.footer .footer-cta__text {
   font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  color: #383838;
}
.footer__bottom {
  background-color: #0f993b;
  color: #ffffff;
  padding-block: 30px 25px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column-reverse;
    gap: 28px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  flex-shrink: 0;
}
.footer-logo__image {
  width: 230px;
  flex-shrink: 0;
}

.footer-address {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-style: normal;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}
@media screen and (max-width: 768px) {
  .footer-address {
    text-align: center;
  }
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .footer-sns {
    justify-content: center;
  }
}
.footer-sns__image {
  width: 35px;
  height: 35px;
}

.footer-nav {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
  }
}
.footer-nav__list {
  gap: 24px 38px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}
.footer-nav li {
  text-align: center;
}
.footer-nav__link {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.07em;
}

.footer__btm {
  background-color: #0d8c35;
  color: #8dc89f;
  text-align: center;
  padding-block: 20px;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.07em;
}
.footer__btm .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer__btm .container {
    flex-direction: column-reverse;
  }
}

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

.footer-sub__link {
  color: #ffffff;
}

.section__label {
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: #0f993b;
  font-weight: 900;
}
.section__label--sub {
  color: #dbdbdb;
}
.section__label--about {
  color: #555555;
}
.section__label--subpage {
  color: #0f993b;
}
.section__label--message {
  color: #0f993b;
  letter-spacing: 0em;
}
.section__title {
  font-weight: 600;
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.25rem, 0.5897887324rem + 2.8169014085vw, 3.125rem);
  color: #383838;
}
.section__title--about {
  color: #0f993b;
  margin-bottom: clamp(1.25rem, -0.8928571429rem + 4.4642857143vw, 3.125rem);
}
.section__title--company {
  margin-bottom: clamp(1.25rem, -0.8928571429rem + 4.4642857143vw, 3.125rem);
}
.section__title--sub {
  color: #ffffff;
}
.section__title--pcb {
  margin-bottom: clamp(1.25rem, 0.9419014085rem + 1.3145539906vw, 2.125rem);
}
.section__title--cat {
  margin-bottom: clamp(0.75rem, 0.5742957746rem + 0.7511737089vw, 1.5rem);
}
.section__title--item {
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  color: #333333;
}
.section__title--subpage {
  letter-spacing: 0.05em;
}
.section__desc {
  font-weight: 400;
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.section__desc--about {
  margin-bottom: clamp(1rem, 0.3571428571rem + 1.3392857143vw, 1.5625rem);
}
.section__desc--about:last-of-type {
  margin-bottom: clamp(1.25rem, 0.6785714286rem + 1.1904761905vw, 1.75rem);
}
.section__desc--products {
  color: #ffffff;
}
.section__desc--category {
  color: #ffffff;
  margin-bottom: clamp(1.25rem, 1.1399647887rem + 0.4694835681vw, 1.5625rem);
}
.section__desc--company {
  margin-bottom: clamp(1rem, 0.3571428571rem + 1.3392857143vw, 1.5625rem);
}
.section__desc--company:last-of-type {
  margin-bottom: clamp(1.75rem, 1.4642857143rem + 0.5952380952vw, 2rem);
}
.section__desc--subpage {
  letter-spacing: 0.04em;
}
.section__desc--flow {
  letter-spacing: 0.15em;
  align-self: center;
}

.page-top {
  background: url("../img/bg_title.png");
  background-size: cover;
  height: clamp(9.375rem, 7.1742957746rem + 9.3896713615vw, 15.625rem);
  color: #ffffff;
   margin-bottom: clamp(2rem, -0.0686619718rem + 8.8262910798vw, 7.875rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.page-top--news {
  height: 250px;
}
.page-top__bread {
  background-color: #08842f;
  line-height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.page-top .breadcrumb {
  font-weight: 200;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.05em;
}
.page-top .container {
  height: auto;
}
.page-top__title {
  font-size: clamp(1.875rem, 1.6549295775rem + 0.9389671362vw, 2.5rem);
  letter-spacing: 0.06em;
}
.page-top__title--news {
  font-size: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39px;
  gap: clamp(1.125rem, 0.6628521127rem + 1.9718309859vw, 2.4375rem);
  margin-bottom: clamp(2.5rem, 2.1478873239rem + 1.5023474178vw, 3.5rem);
}
.section-heading--center {
  align-items: center;
}
.section-heading__text {
   font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  color: #333333;
  letter-spacing: 0.05em;
}
.section-heading__bar {
  display: block;
  width: 160px;
  height: 3px;
  background: linear-gradient(to right, #18a44b 40px, #ccc 40px);
  border-radius: 2px;
}
.section-heading__bar--center {
  background: linear-gradient(to right, #ccc 60px, #18a44b 60px, #18a44b 100px, #ccc 100px);
}

.subpage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(5rem, 3.5695422535rem + 6.103286385vw, 9.0625rem);
}
@media screen and (max-width: 768px) {
  .subpage-cta {
    flex-direction: column;
    align-items: center;
  }
}
.subpage-cta__heading {
  font-size: clamp(1.5rem, 1.411971831rem + 0.3755868545vw, 1.75rem);
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .subpage-cta__heading {
    text-align: center;
  }
}
.subpage-cta__text {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.07em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .subpage-cta__text {
    text-align: center;
  }
}
.subpage-cta__box {
  max-width: 398px;
  flex-shrink: 0;
  background-color: #0f9981;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .subpage-cta__box {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.subpage-cta__box-text {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.69;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .subpage-cta__box-text br {
    display: none;
  }
}

.faq-section {
  background: url("../img/bg_dot_faq.jpg");
  background-size: cover;
  padding-block: 72px;
  margin-bottom: clamp(5rem, 3.8556338028rem + 4.882629108vw, 8.25rem);
}
.faq-section--subpage {
  background: none;
  margin-bottom: 118px;
  margin-bottom: clamp(5rem, 4.1637323944rem + 3.5680751174vw, 7.375rem);
  padding-block: 0;
}

.faq-list__item {
  border-top: 1px solid #acacac;
  padding-block: 26px;
}
.faq-list__item:last-child {
  border-bottom: 1px solid #acacac;
}
.faq-list__question, .faq-list__answer {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  font-size: 14px;
  color: var(--font-color);
}
.faq-list__question {
  margin-bottom: 1em;
  gap: 20px;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  letter-spacing: 0.11em;
}
.faq-list__q-label {
  color: #c05b75;
  white-space: nowrap;
}
.faq-list__a-label {
  color: #3d87a6;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 0.24em;
}
.faq-list__q-text {
  color: #333333;
}
.faq-list__a-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.11em;
  align-self: center;
}

.hero-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  background-size: cover;
  background-position: 60% 50%;
  background-repeat: no-repeat;
  padding-block: clamp(3.125rem, 1.6945422535rem + 6.103286385vw, 7.1875rem);
}

.hero-slider {
  width: 100%;
  overflow: hidden;
}

.hero {
  margin-bottom: clamp(2rem, 1.4718309859rem + 2.2535211268vw, 3.5rem);
}
.hero__badge {
  padding: 7px 28px;
  color: #ffffff;
  background-color: #0f9981;
  font-size: clamp(1.125rem, 0.9709507042rem + 0.6572769953vw, 1.5625rem);
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 480px) {
  .hero__badge {
    padding: 6px 20px;
  }
}
.hero__title {
  font-size: 50px;
  font-size: clamp(2rem, 0.7142857143rem + 2.6785714286vw, 3.125rem);
  line-height: 1.5;
  color: #333333;
  margin-bottom: clamp(2.875rem, 2.2147887324rem + 2.8169014085vw, 4.75rem);
  letter-spacing: 0.03em;
}

.title-break {
  word-break: keep-all;
}

.about {
  margin-bottom: 110px;
  margin-bottom: clamp(5rem, 4.3397887324rem + 2.8169014085vw, 6.875rem);
}
.about__inner {
  display: flex;
  -moz-column-gap: clamp(2rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
       column-gap: clamp(2rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .about__inner {
    align-items: stretch;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
    grid-template-areas: "text figure" "list list";
  }
}
@media screen and (max-width: 480px) {
  .about__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "figure" "list";
  }
}
.about__content {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1140px) {
  .about__content {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .about__content {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    grid-area: text;
  }
}
.about__figure {
  flex: 1;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about__figure {
    grid-area: figure;
    margin-left: 0px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .about__figure {
    margin-top: 0px;
  }
}
.about__image {
  margin-left: -11px;
}
@media screen and (max-width: 1140px) {
  .about__image {
    align-items: center;
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .about__image {
    max-width: 100%;
  }
}
.about__list {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .about__list {
    grid-area: list;
    max-width: 100%;
  }
}
.about__list-item {
  padding-top: 28px;
}
@media screen and (max-width: 768px) {
  .about__list-item:first-child {
    padding-top: 0px;
  }
}
.about__link {
  border-bottom: 1px solid #0f993b;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f993b;
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.05em;
}
.about__link:hover {
  transition: all 1s ease;
}
.about__link:hover .about__arrow {
  transform: translateX(20px);
}
.about__arrow {
  width: 14px;
  margin-right: 32px;
  transition: all 0.3s ease;
}

.products {
  margin-bottom: clamp(5rem, 4.4278169014rem + 2.441314554vw, 6.625rem);
}
.products__inner {
  background-color: #0f993b;
  border-radius: 20px;
   padding-top: clamp(3.875rem, 3.6329225352rem + 1.0328638498vw, 4.5625rem);
  padding-bottom: 185px;
}
.products__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .products__content {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }
}
.products__track {
  padding-inline: 45px;
  margin-top: -107px;
  margin-bottom: 56px;
  transition: transform 0.2s ease;
}
.products__card {
  margin-inline: 15px;
  width: 255px;
  overflow: hidden;
  transition: transform 0.2s;
  height: 100%;
}
.products__card:hover {
  transform: translateY(-5px);
}
.products__card-link {
  display: flex;
  flex-direction: column;
  gap: 30px;
   gap: clamp(1rem, 0.6919014085rem + 1.3145539906vw, 1.875rem);
}
.products__card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #0f993b;
  padding: 8px;
}
.products__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.products__card-name {
  padding-inline: 4px;
  font-size: 18px;
  color: #0f993b;
  line-height: 1.5;
  align-self: start;
  letter-spacing: 0;
}
.products__card-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 16px;
  color: #383838;
  line-height: 3;
}
.products__card-meta dt {
  padding-left: 4px;
  padding-right: 13px;
  border-top: 1px solid #bfbfbf;
  letter-spacing: 0.05em;
}
.products__card-meta dd {
  border-top: 1px solid #bfbfbf;
}

.procurement {
  margin-bottom: clamp(5rem, 4.7799295775rem + 0.9389671362vw, 5.625rem);
  background: url("../img/bg_cps.jpg");
  background-size: cover;
  background-position: 60% 50%;
  padding-block: 44px 61px;
  border: 1px solid #cecece;
  border-radius: 10px;
}
.procurement__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .procurement__content {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }
}

.service {
  margin-bottom: clamp(5rem, 4.4498239437rem + 2.3474178404vw, 6.5625rem);
}
.service__heading {
  position: relative;
  text-align: center;
  font-size: clamp(1.5rem, 1.2579225352rem + 1.0328638498vw, 2.1875rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  color: #383838;
  /* CJKテキストでの折り返しを無効化 */
  word-break: keep-all;
}
.service__heading::after {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 193px;
  height: clamp(0.125rem, 0.0809859155rem + 0.1877934272vw, 0.25rem);
  background: #0f9981;
}
.service__lead {
  text-align: center;
  font-size: 18px;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  line-height: 1.5;
  color: #383838;
  font-weight: 500;
  letter-spacing: 0.09em;
}
.service__lead:first-of-type {
  margin-bottom: 28px;
}
.service__cards {
  background: url("../img/bg_dot.jpg");
  background-size: cover;
  padding-block: 60px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 61px;
  gap: 3px;
}
.service__card {
  background: #0f993b;
  color: #ffffff;
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
}
.service__card--secondly {
  background: #0f9981;
}
.service__card-title {
  font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
  letter-spacing: 0.09em;
  margin-bottom: 20px;
}
.service__card-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 28px;
}
.service__card-link {
  gap: 10px;
  align-self: flex-end;
  max-width: 200px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-block: 10px;
}
.service__card-link--sub {
  color: #0f9981;
}

.categories {
  padding-top: 78px;
  padding-bottom: 73px;
  background: url("../img/bg_product_categories.jpg");
  background-size: cover;
  margin-bottom: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(204px, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 30px;
}

.category-card {
  text-align: center;
  color: #ffffff;
}
.category-card__logo {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 1px solid #0f993b;
  margin-bottom: 18px;
  overflow: clip;
  overflow-clip-margin: content-box;
}
@media screen and (max-width: 470px) {
  .category-card__logo {
    width: 75%;
    margin-inline: auto;
  }
}
.category-card__logo-image {
  aspect-ratio: 4/2.85;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1.3);
}
.category-card__logo-image--dwin {
  transform: scale(1.3) translateX(-6px);
}
.category-card__title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 2;
}
.category-card__desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.company {
  margin-bottom: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company {
    flex-direction: column;
  }
}
.company__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .company__content {
    display: contents;
  }
}
.company .text-box {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .company .text-box {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .company .section__label,
  .company .section__title {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .company .section__desc {
    order: 3;
  }
}
.company__image {
  margin-top: -65px;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .company__image {
    width: 100%;
    margin-bottom: 24px;
    order: 2;
    margin-top: -40px;
    aspect-ratio: 561/300;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 768px) {
  .company .btn--ci {
    order: 4;
    align-self: flex-start;
  }
}

.news {
  margin-bottom: clamp(5rem, 4.3397887324rem + 2.8169014085vw, 6.875rem);
  color: #383838;
}
.news__inner {
  display: flex;
  gap: 99px;
  color: #383838;
  background: url("../img/bg_dot_small.jpg");
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 53px;
}
@media screen and (max-width: 1140px) {
  .news__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.news__sidebar {
  width: 250px;
  flex-shrink: 0;
}
@media screen and (max-width: 1140px) {
  .news__sidebar {
    width: 100%;
  }
}
.news__list-area {
  min-width: 0;
}

@media screen and (max-width: 1140px) {
  .news-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    flex-direction: row;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .news-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-nav__item {
  border-bottom: 1px solid #383838;
  padding-right: 24px;
}
@media screen and (max-width: 1140px) {
  .news-nav__item {
    padding-right: 0px;
  }
}
.news-nav__item:hover, .news-nav__item:active {
  border-bottom: 1px solid #0f993b;
}
.news-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(0.625rem, 0.3169014085rem + 1.3145539906vw, 1.5rem);
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  white-space: nowrap;
}
.news-nav__link:hover, .news-nav__link:active {
  color: #0f993b;
}
@media screen and (max-width: 1140px) {
  .news-nav .btn__icon--arrow {
    display: none;
  }
}

.news-list {
  margin-top: 5px;
}
.news-list__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
  row-gap: clamp(1rem, 0.7799295775rem + 0.9389671362vw, 1.625rem);
   padding-block: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  border-bottom: 1px solid #acacac;
}
.news-list__item:last-child {
  border: none;
  padding-bottom: 0px;
}
@media screen and (max-width: 1140px) {
  .news-list__item {
    flex-wrap: wrap;
  }
}
.news-list__date, .news-list__link {
  font-size: 16px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.news-list__link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1140px) {
  .news-list__link {
    width: 100%;
    flex: none;
  }
}
.news-list__link:hover {
  text-decoration: underline;
  color: #0f993b;
}
.news-list--newspage .news-list__link {
  font-weight: 400;
}
.news-list--newspage .news-list__item:last-child {
  border-bottom: 1px solid #acacac;
  padding-bottom: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
}

.news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  padding-block: 6px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 3px;
  white-space: nowrap;
}
.news-badge--tech-blog {
  background-color: #2379b0;
}
.news-badge--notice {
  background-color: #0f993b;
}
.news-badge--product {
  background-color: #0f9981;
}

#cpu,
#iot,
#store,
#medical,
#soft {
  scroll-margin-top: 100px;
}

.ach {
  margin-bottom: clamp(3.75rem, 2.099471831rem + 7.0422535211vw, 8.4375rem);
}
.ach__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 48px 38px;
}
.ach__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: clamp(1.25rem, 0.9639084507rem + 1.220657277vw, 2.0625rem);
  overflow: hidden;
  color: #333333;
}
.ach__image {
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  aspect-ratio: 7/5;
  width: 100%;
}
.ach__item-name {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  letter-spacing: 0em;
}
.ach__text {
  font-size: 16px;
  letter-spacing: 0.09em;
  font-weight: 400;
}
.ach__support-heading {
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.ach__support-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.ach__support-list li::before {
  content: "･";
}
.ach__support-item {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 1.86;
}

.soft {
  margin-bottom: clamp(5rem, 3.7896126761rem + 5.1643192488vw, 8.4375rem);
}

.item-detail {
  padding-bottom: 64px;
}
.item-detail__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.item-detail__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 1.235915493rem + 1.1267605634vw, 2.25rem);
  color: #333333;
}
.item-detail__title {
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  letter-spacing: 0.15em;
}
.item-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #acacac;
}
.item-detail__spec-row {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid #acacac;
  align-items: center;
}
.item-detail__spec-label {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.15em;
}
.item-detail__spec-value {
  font-size: 14px;
  color: #383838;
}
.item-detail__spec-value--maker {
  display: flex;
  align-items: center;
  gap: 26px;
}
.item-detail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.item-detail__features li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.item-detail__features li::before {
  content: "･";
  position: absolute;
  left: 0;
  top: 0;
}
.item-detail__maker-name {
  font-size: 16px;
  letter-spacing: 0.15em;
  padding-left: 1em;
}
.item-detail__maker-logo {
  height: 32px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.item-detail__slider {
  position: relative;
  width: 100%;
}
.item-detail__slider .slick-list {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.item-detail__slide {
  transition: opacity 0.4s ease;
}
.item-detail__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.item-detail__slide--active {
  opacity: 1;
}
.item-detail__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.item-detail__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.item-detail__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #c0c0c0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.item-detail__dot--active {
  background: #0f993b;
}

@media (max-width: 900px) {
  .item-detail__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .item-detail__gallery {
    order: -1;
  }
}
.item-section {
  background: url("../img/bg_dot_item.jpg");
  background-size: cover;
  padding-block: 69px;
  margin-bottom: 69px;
}
.item-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}
.item-section__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
}

.item-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  aspect-ratio: 7/5;
  padding: 35px 25px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
}
.item-card__image {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-card__title {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  color: #333333;
  margin-bottom: 10px;
}
.item-card__desc {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.item-card:only-child {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 0.9278169014rem + 2.441314554vw, 3.125rem);
}
.item-card:only-child .item-card__image-wrapper {
  width: 30%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .item-card:only-child .item-card__image-wrapper {
    width: 50%;
  }
}
.item-card:only-child .item-card__textbox {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .item-card:only-child .item-card__textbox {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .item-card:only-child {
    flex-direction: column;
    gap: 0;
  }
  .item-card:only-child .item-card__image-wrapper,
  .item-card:only-child .item-card__textbox {
    width: 100%;
  }
  .item-card:only-child .item-card__image-wrapper {
    margin-bottom: 28px;
  }
}
.item-card--no-image:only-child {
  display: block;
}
.item-card--no-image:only-child .item-card__textbox {
  width: 100%;
}

.spec {
  margin-bottom: 81px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-top: 1px solid #acacac;
}
.spec-list__term, .spec-list__desc {
  padding-block: 20px;
  border-bottom: 1px solid #acacac;
  font-size: 16px;
  letter-spacing: 0.11em;
  color: #333333;
}
.spec-list__desc {
  padding-left: 16px;
  font-weight: 400;
}

/* =========================================
    Contact Form Block
========================================= */
.contact {
  color: #383838;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact__intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 0.95rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact__intro {
    text-align: left;
    margin-bottom: 40px;
  }
}
.contact__list {
  margin: 0;
  padding: 0;
}
.contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.contact__item--align-top {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact__label {
  display: flex;
  align-items: center;
  width: 260px;
  /* PC時のラベル幅 */
  flex-shrink: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact__label {
    width: 100%;
    margin-bottom: 8px;
  }
}
.contact .contact__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0f993b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  padding: 4px 8px;
  line-height: 1;
  margin-right: 12px;
}
.contact .contact__badge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #0f993b;
}
.contact__input-wrapper {
  flex-grow: 1;
  width: 100%;
}
.contact__input-wrapper--type {
  position: relative;
}
.contact__input-wrapper--type::after {
  width: 8px;
  height: 8px;
  position: absolute;
  cursor: pointer;
  content: "";
  top: 50%;
  right: 20px;
  transform: translate(-50%, -50%) rotate(135deg);
  border-top: 1px solid #3e3e3e;
  border-right: 1px solid #3e3e3e;
  pointer-events: none;
}
.contact__input-wrapper {
  margin: 0;
}
.contact__input, .contact__textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #383838;
  background-color: #fff;
  transition: border-color 0.3s;
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  border-color: #0f993b;
}
.contact__input {
  height: 48px;
}
.contact__textarea {
  height: 200px;
  resize: vertical;
}
.contact .wpcf7-form-control-wrap {
  width: 100%;
}
.contact {
  /* --- プライバシーポリシー同意 --- */
}
.contact__agreement {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 40px;
  font-weight: 500;
}
.contact__agreement .wpcf7-form-control-wrap {
  width: auto;
}
.contact__agreement .wpcf7-list-item {
  margin: 0;
}
.contact__agreement-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.contact__agreement-text {
  margin-left: 8px;
  display: flex;
}
.contact__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.contact__link {
  color: #1a73e8;
  text-decoration: none;
}
.contact__link:hover {
  text-decoration: underline;
}
.contact {
  /* --- 送信ボタン --- */
}
.contact__submit-wrapper {
  text-align: center;
}
.contact__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.15em;
  width: 300px;
  height: 60px;
  background-color: #0f993b;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
}
.contact__submit:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .contact__submit {
    width: 100%;
  }
}
.contact__submit .arrow__next::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.overview {
  margin-bottom: clamp(5rem, 4.1637323944rem + 3.5680751174vw, 7.375rem);
}
.overview__list {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.15em;
}
.overview__row {
  display: grid;
  grid-template-columns: clamp(80px, 15%, 160px) 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #d0d0d0;
  padding-block: 17px;
}
@media screen and (max-width: 768px) {
  .overview__row {
    grid-template-columns: 1fr;
  }
}
.overview__row:last-child {
  border-bottom: none;
}
.overview__desc {
  font-weight: 400;
}
.overview__desc-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.overview__desc-list li::before {
  content: "･";
}

.office {
  margin-bottom: 130px;
  margin-bottom: clamp(5rem, 3.8996478873rem + 4.6948356808vw, 8.125rem);
}
.office__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(370px, 100%), 1fr));
  gap: 27px 30px;
}
.office__item {
  color: #333333;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.office__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.office__name {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  color: #333333;
}
.office__info {
  display: flex;
  flex-direction: column;
}
.office__row {
  display: grid;
  grid-template-columns: clamp(80px, 20%, 100px) 1fr;
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.office__row:nth-child(1), .office__row:nth-child(2) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .office__row {
    grid-template-columns: 1fr;
  }
}
.office__desc {
  font-weight: 400;
}

.mv {
  margin-bottom: 139px;
  margin-bottom: clamp(5rem, 3.701584507rem + 5.5399061033vw, 8.6875rem);
}
.mv__list {
  display: flex;
  flex-direction: column;
}
.mv__item {
  display: grid;
  grid-template-columns: 256px 1fr;
  padding-block: 32px;
}
.mv__item:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
}
@media screen and (max-width: 768px) {
  .mv__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mv__head {
    margin-bottom: clamp(1rem, 0.6919014085rem + 1.3145539906vw, 1.875rem);
  }
}
.mv__head-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .mv__head-inner {
    width: auto;
    flex-direction: row;
    align-items: flex-end;
  }
}
.mv__en {
  font-family: "gotham", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 1.573943662rem + 0.7511737089vw, 2.25rem);
  color: #0f993b;
  line-height: 1.42;
}
.mv__ja {
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  color: #333333;
  line-height: 2.55;
}
.mv__content {
  flex: auto;
  color: #333333;
  letter-spacing: 0.15em;
}
.mv__catch {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  padding-bottom: 12.5px;
  border-bottom: 1px solid #d0d0d0;
}
.mv__text {
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  padding-top: 12.5px;
  font-weight: 400;
}

.message {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: clamp(5rem, 3.6575704225rem + 5.7276995305vw, 8.8125rem);
}
@media screen and (max-width: 768px) {
  .message {
    flex-direction: column;
  }
}
.message__inner {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .message__inner {
    width: 100%;
    display: contents;
  }
}
.message__image {
  width: 44%;
  height: clamp(25rem, 20.5985915493rem + 18.779342723vw, 37.5rem);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
}
@media screen and (max-width: 768px) {
  .message__image {
    width: 100%;
    order: 2;
  }
}
.message__textbox {
  margin-top: 49px;
  color: #333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .message__textbox {
    order: 3;
  }
}
.message__text {
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
}
.message__sign {
  font-size: 20px;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .message .title-box {
    order: 1;
    margin-bottom: 56px;
  }
}

.news-section {
  margin-bottom: clamp(5rem, 3.6355633803rem + 5.8215962441vw, 8.875rem);
}

.news-tab__nav {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #dcdcdc;
  padding-inline: clamp(0.625rem, -0.4753521127rem + 4.6948356808vw, 3.75rem);
  margin-bottom: clamp(1.4375rem, 0.9973591549rem + 1.8779342723vw, 2.6875rem);
}
@media screen and (max-width: 768px) {
  .news-tab__nav {
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: none;
  }
}
.news-tab__btn {
  display: inline-block;
  padding: 4px 4px 0px;
  width: 200px;
  background-color: transparent;
  border: 1px solid #acacac;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}
.news-tab__btn--active {
  border-color: #0f993b;
  background-color: transparent;
}
.news-tab__btn--active .news-tab__btntext {
  background-color: #0f993b;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-tab__btn {
    border-radius: 5px;
    width: 45%;
    border: 1px solid #acacac;
    padding: 4px;
  }
}
.news-tab__btntext {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dcdcdc;
  padding-block: 8px;
  padding-block: clamp(0.125rem, -0.0070422535rem + 0.5633802817vw, 0.5rem);
  padding-inline: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-size: clamp(0.9375rem, 0.8714788732rem + 0.2816901408vw, 1.125rem);
  line-height: 2.22;
  letter-spacing: 0.05em;
  color: #383838;
  height: 100%;
}
.news-tab__panel {
  margin-bottom: clamp(2.1875rem, 1.4172535211rem + 3.2863849765vw, 4.375rem);
}

.pagination-container {
  text-align: center;
}

/* 上部情報テキスト "1 / 5" */
.pagination-info {
  font-weight: 300;
  font-size: 1.1rem;
  color: #555;
  margin: 0 0 1rem 0;
}

/* 下部ページネーションリスト */
.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* 各ページネーションアイテム */
.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 400;
}

/* 現在のページ「1」(プレーンテキスト) のスタイル調整 */
.pagination-item--current {
  border: none;
  font-size: 1.1rem;
  width: auto;
  /* 円形枠の幅をなくす */
  padding: 0 0.25rem;
  color: #333;
}

/* リンクスタイル */
.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* ホバーエフェクト */
.pagination-item:not(.pagination-item--current) .pagination-link:hover {
  background-color: rgba(20, 168, 0, 0.337254902);
}

.article {
  color: #333333;
  margin-bottom: clamp(5rem, 3.7896126761rem + 5.1643192488vw, 8.4375rem);
  letter-spacing: 0.05em;
}
.article__date {
  color: #767676;
  margin-bottom: 24px;
}

/* =========================================
   Pagination
========================================= */
.pagination {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
  }
}
.pagination__item {
  flex: 1;
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  .pagination__item {
    max-width: 100%;
  }
  .pagination__item:nth-child(2) {
    width: 100%;
    flex: none;
    order: -1;
  }
  .pagination__item:nth-child(1), .pagination__item:nth-child(3) {
    width: calc(50% - 8px);
    flex: none;
  }
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 37px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  letter-spacing: 0.15em;
  color: #333333;
}
.pagination__link:hover {
  opacity: 0.8;
}
.pagination__link--prev, .pagination__link--next {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  color: #383838;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .pagination__link--prev, .pagination__link--next {
    padding: 0 16px;
    font-size: 0.9rem;
  }
}
.pagination__link--prev {
  justify-content: space-between;
}
.pagination__link--prev::after {
  content: "";
  width: 13px;
}
.pagination__link--next {
  justify-content: space-between;
}
.pagination__link--next::before {
  content: "";
  width: 13px;
}
.pagination__link--main {
  background-color: #0f993b;
  color: #fff;
  width: 100%;
}
.pagination__link--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.product-section {
  margin-bottom: clamp(5rem, 3.701584507rem + 5.5399061033vw, 8.6875rem);
}
.product-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, -0.3565140845rem + 6.8544600939vw, 5.8125rem);
  margin-bottom: 72px;
  background: url("../img/bg_cps.jpg");
  background-size: cover;
  background-position: 60% 50%;
  padding-block: 44px;
  border: 1px solid #cecece;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .product-section__header {
    flex-direction: column;
  }
}
.product-section__lead {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.product-section__tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  flex-shrink: 0;
}
.product-section__search-cat {
  max-width: 800px;
  margin-inline: auto;
  margin-block: clamp(1.25rem, 0.4357394366rem + 3.4741784038vw, 3.5625rem);
  display: grid;
  grid-template-columns: 0.3fr 1fr;
}
@media screen and (max-width: 768px) {
  .product-section__search-cat {
    grid-template-columns: 1fr;
  }
}
.product-section__search {
  font-size: 24px;
  text-align: center;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .product-section__search {
    text-align: left;
    margin-bottom: 18px;
  }
}
.product-section__tab {
  border: 1px solid #0f993b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: 22px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  color: #0f993b;
}
.product-section__tab--active {
  background: #0f993b;
  color: #ffffff;
}
.product-section__tab:first-of-type {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.product-section__tab:last-of-type {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.product-section__filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  -moz-column-gap: clamp(0.5rem, 0.323943662rem + 0.7511737089vw, 1rem);
       column-gap: clamp(0.5rem, 0.323943662rem + 0.7511737089vw, 1rem);
  row-gap: clamp(0.625rem, 0.3169014085rem + 1.3145539906vw, 1.5rem);
   margin-bottom: clamp(2rem, 1.4498239437rem + 2.3474178404vw, 3.5625rem);
}
.product-section__filters--category {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media screen and (max-width: 480px) {
  .product-section__filters--category {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-section__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
  padding-inline: 14px;
  font-size: clamp(0.75rem, 0.6071428571rem + 0.2976190476vw, 0.875rem);
  letter-spacing: 0.11em;
  cursor: pointer;
  border: 1px solid #858585;
  border-radius: 5px;
  background: transparent;
  color: #858585;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-align: left;
}
.product-section__filter:hover {
  border-color: #0f9981;
  color: #ffffff;
  background: #0f9981;
}
.product-section__filter:hover .arrow__next::after {
  border-color: #ffffff;
}
.product-section__filter--active {
  background: #0f9981;
  color: #ffffff;
  border-color: #0f9981;
}
.product-section__filter--active .arrow__next::after {
  border-color: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.125rem, 0.7508802817rem + 1.5962441315vw, 2.1875rem);
}
@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  }
}
.product-grid .products__card {
  width: 100%;
  margin-inline: 0;
}
.product-grid .products__card-image {
  border: 1px solid #cbcbcb;
}
.product-grid .products__card-name {
  padding-inline: 0px;
  color: #333333;
  letter-spacing: 0.11em;
}
.product-grid .products__card-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 14px;
  color: #727272;
  line-height: 1.86;
}
.product-grid .products__card-meta dt {
  padding-left: 0;
  padding-right: 30px;
  border-top: none;
  letter-spacing: 0.11em;
}
.product-grid .products__card-meta dd {
  border-top: none;
}

.service-section {
  margin-bottom: clamp(5rem, 4.0536971831rem + 4.0375586854vw, 7.6875rem);
}
.service-section__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #383838;
  margin-bottom: 58px;
  font-weight: 400;
}
.service-section__specs, .service-section__design {
  margin-bottom: 42px;
}
.service-section__heading {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.service-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  gap: 30px;
}
.service-section__item {
  border: 1px solid #a1a1a1;
}
.service-section__item-title {
  padding: 21px;
  background-color: #30ad5d;
  color: #ffffff;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  letter-spacing: 0.04em;
}
.service-section__item-text {
  padding: 21px;
  color: #383838;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.achieve-section {
  margin-bottom: clamp(5rem, 3.7896126761rem + 5.1643192488vw, 8.4375rem);
}
.achieve-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .achieve-section__inner {
    flex-direction: column;
  }
}
.achieve-section__text {
  font-weight: 400;
  font-size: 18px;
  color: #383838;
  letter-spacing: 0;
}
.achieve-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 31px;
}
.achieve-section__image {
  margin-bottom: 20px;
  width: 100%;
}
.achieve-section__item-name {
  color: #383838;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.achieve-section__item-text {
  color: #383838;
  font-size: 16px;
  letter-spacing: 0.11em;
  font-weight: 400;
}

.page-nav {
  margin-bottom: clamp(3.75rem, 2.1875rem + 6.6666666667vw, 8.1875rem);
}
.page-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  -moz-column-gap: 34px;
       column-gap: 34px;
  row-gap: clamp(1.75rem, 1.3098591549rem + 1.8779342723vw, 3rem);
}
.page-nav__link {
  border-bottom: 2px solid #18a44b;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #18a44b;
  letter-spacing: 0.15em;
  font-size: 16px;
}

#solution,
#about,
#feature,
#flow,
#achieve,
#faq {
  scroll-margin-top: 100px;
}

.solution {
  /* CJKテキストでの折り返しを無効化 */
  word-break: keep-all;
  background: url("../img/bg_solution.jpg");
  background-size: cover;
  padding-top: 65px;
  padding-bottom: 50px;
  margin-bottom: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
}
.solution__title {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  letter-spacing: 0.07em;
  line-height: 1.5;
  margin-bottom: 38px;
}
.solution__list {
  max-width: 722px;
  margin-inline: auto;
}
.solution__item {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #ffffff;
  padding-block: 13px;
  border-bottom: 1px solid #ffffff;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.11em;
}
.solution__check {
  width: 20px;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 31px;
  margin-bottom: clamp(5rem, 3.6795774648rem + 5.6338028169vw, 8.75rem);
}
@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
}
.about-section__textbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.about-section__image {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .about-section__image {
    width: 100%;
    -o-object-position: top;
       object-position: top;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.feature-section {
  margin-bottom: clamp(5rem, 3.8556338028rem + 4.882629108vw, 8.25rem);
}
.feature-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(370px, 100%), 1fr));
  -moz-column-gap: 29px;
       column-gap: 29px;
  row-gap: 56px;
}
.feature-section__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 29px;
  overflow: hidden;
}
.feature-section__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-section__lead {
  line-height: 1.5;
  color: #333333;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
}

.flow {
  margin-bottom: clamp(5rem, 4.1417253521rem + 3.661971831vw, 7.4375rem);
}
.flow__item {
  margin-bottom: clamp(2.5rem, 2.2799295775rem + 0.9389671362vw, 3.125rem);
  display: grid;
  grid-template-columns: 75px 180px 1fr;
  grid-template-areas: "number title desc";
  gap: 0 24px;
  align-items: flex-start;
}
.flow__item:first-of-type {
  margin-top: 0;
}
.flow__item:not(:last-child) .flow__number::after {
  content: "↓";
  position: absolute;
  bottom: -37px;
  left: 37.5px;
  transform: translateX(-50%);
  font-size: 20px;
  color: #383838;
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child) .flow__number::after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    grid-template-columns: 120px 1fr;
    grid-template-areas: "number desc" "title  desc";
    gap: 10px 20px;
    position: relative;
  }
  .flow__item:not(:last-child)::after {
    content: "↓";
    position: absolute;
    bottom: -30px;
    left: 60px;
    transform: translateX(-50%);
    font-size: 20px;
    color: #383838;
  }
}
.flow__number {
  justify-self: center;
  align-self: self-end;
  grid-area: number;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 75px;
  height: 75px;
  border: 1px solid #959595;
  border-radius: 50%;
  font-family: "futura-pt", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #18a44b;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__number {
    width: 50px;
    height: 50px;
  }
}
.flow__title {
  grid-area: title;
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  line-height: 1.5;
  color: #333333;
  text-align: center;
  align-self: center;
}

.section__desc--flow {
  grid-area: desc;
}
@media screen and (max-width: 768px) {
  .section__desc--flow {
    align-self: center;
  }
}

.utility {
  padding-block: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  text-align: center;
}
.utility__heading {
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  padding-bottom: clamp(1.875rem, 1.3028169014rem + 2.441314554vw, 3.5rem);
}
.utility .section__desc {
  padding-bottom: clamp(1.875rem, 1.3028169014rem + 2.441314554vw, 3.5rem);
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  letter-spacing: normal;
}

.sitemap-page {
  margin-bottom: clamp(5rem, 3.8556338028rem + 4.882629108vw, 8.25rem);
}

.simple-sitemap-container ul {
  margin: 0;
}

li.sitemap-item a {
  font-size: 16px;
  color: #383838;
  line-height: 1.8;
}

li.sitemap-item a:hover {
  color: #18a44b;
  text-decoration: underline;
}

li.sitemap-item {
  border-bottom: 1px solid #acacac;
  padding-block: clamp(1rem, 0.6919014085rem + 1.3145539906vw, 1.875rem);
  padding-block: 30px;
}
li.sitemap-item:first-child {
  border-top: 1px solid #acacac;
}

li.sitemap-item:has(a[href*="/complete/"]) {
  display: none !important;
}/*# sourceMappingURL=main.css.map */