@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightがpxの場合
---------------------------*/
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
  spacingを画面幅に応じて縮小させる
  例）@include responsive-spacing(padding, 0.7rem 2rem);
      → PC: 0.7rem 2rem
        md以下: 75%
        sm以下: 50%
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
}

@media screen and (min-width: 950px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 950px) {
  .pc {
    display: block;
  }
}

/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 950px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 950px) {
  .inner {
    max-width: 1330px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.sec-title {
  font-size: 2.375rem;
  line-height: 1.4473684211;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #505050;
}

.sec-title::before {
  content: "";
  display: block;
  background-image: url(../img/green-white-square.svg);
  width: 2.625rem;
  height: 0.625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.green-title {
  font-size: 3rem;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #337852;
  text-align: center;
}

/*#################################
header
#################################*/
.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.header {
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.68);
}
@media screen and (min-width: 950px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding-left: 2.375rem;
  padding-right: 3.4375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 950px) {
  .header__inner {
    padding: 0 3.125rem;
    justify-content: flex-start;
  }
}

.header__logo {
  max-width: 8.75rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 950px) {
  .header__logo {
    max-width: 8.75rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 950px) {
  .header__nav {
    display: block;
    margin-left: 8.53125rem;
    margin-left: clamp(40px, -96.5 * (100vw - 1440px) / -240 + 136.5px, 136.5px);
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 2.21875rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #de8430;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 950px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2rem;
  height: 0.375rem;
  background-color: #d0d0d0;
  transition: 0.5s;
  border-radius: 1.25rem;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.375rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.375rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 14.25rem 0;
  position: absolute;
  z-index: 900;
  top: 5rem;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.5rem 0;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #707070;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hover-opacity {
  transition: 0.3s;
}
.hover-opacity:hover {
  opacity: 0.7;
  transition: 0.3s;
}

body.thanks {
  /* サンクスページ用 簡易CSS */
  display: flex;
  flex-direction: column;
}
body.thanks .container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 1.25rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #707070;
  margin-top: 5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 950px) {
  body.thanks .container {
    margin-top: 7.5rem;
    padding: 0rem 1.5625rem;
  }
}
body.thanks .card {
  padding: 32px 24px;
  text-align: center;
}
body.thanks .card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #505050;
}
@media screen and (min-width: 950px) {
  body.thanks .card h2 {
    font-size: 2.5rem;
  }
}
body.thanks .card p {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
}
body.thanks .summary {
  margin: 24px 0;
  padding: 16px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  text-align: left;
  background: #fafafa;
}
body.thanks .summary dt {
  font-weight: bold;
  margin-top: 8px;
}
body.thanks .summary dd {
  margin: 0 0 8px 0;
}
body.thanks .actions {
  margin: 5rem 0 1.5rem;
}
body.thanks .btn {
  padding: 1.1875rem 3.3125rem;
  border: 1px solid #337852;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  border-radius: 0.75rem;
  background-color: #337852;
  transition: 0.3s;
}
body.thanks .btn:hover {
  color: #337852;
  background-color: #fff;
  transition: 0.3s;
}
body.thanks .note {
  font-size: 0.9rem;
  color: #666;
}

.smaller {
  font-size: 0.8em;
}

.u-larger {
  font-size: 1.2em;
}

.gray-dark {
  color: #333333;
}

.red {
  color: #e60012;
}

.c-flex {
  display: flex;
}

.u-mb05 {
  margin-bottom: 0.5em;
}

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

.u-line__yellow {
  background: linear-gradient(transparent 60%, #fff100 60%);
  padding: 0 4px;
}

.fv {
  position: relative;
}
.fv img {
  height: auto;
}

.hero-msg {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: clamp(10%, 12vh, 20%);
  right: clamp(3%, 6vw, 20%);
  text-align: left;
}
.hero-msg .tagline {
  font-size: clamp(1.6rem, 1.4vw, 1.7rem);
  font-weight: 700;
  display: block;
  color: #333333;
}
.hero-msg .sub {
  color: #505050;
  border: 1px solid #505050;
  background: rgba(255, 255, 255, 0.3);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.4;
  border-radius: 2px;
  display: table;
  margin: auto;
  font-weight: 700;
  padding: 0.5em;
}
@media (max-width: 950px) {
  .hero-msg .sub {
    padding: 0.375em;
  }
}
@media (max-width: 600px) {
  .hero-msg .sub {
    padding: 0.25em;
  }
}
.hero-msg .copy-1 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  position: relative;
  margin: 1em 0em 1em 0em;
}
@media (max-width: 950px) {
  .hero-msg .copy-1 {
    margin: 0.75em 0em 0.75em 0em;
  }
}
@media (max-width: 600px) {
  .hero-msg .copy-1 {
    margin: 0.5em 0em 0.5em 0em;
  }
}
.hero-msg .copy-2 {
  background: #505050;
  color: #ffffff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  padding: 0.2em;
  display: table;
}

.c-list__disc-normal {
  list-style-type: none;
}
.c-list__disc-normal li {
  line-height: 1.5;
  padding: 0.3em 0 0.3em 1.5em;
  position: relative;
}
.c-list__disc-normal li a {
  display: block;
  height: 100%;
  width: 100%;
}
.c-list__disc-normal li:before {
  background-color: #337852;
  content: " " !important;
  width: 0.5em;
  height: 0.5em;
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 0.8em;
  left: 0.5em;
}

.cta-banner {
  background-color: #337852;
  padding: 0.8125rem 1.875rem 0rem 0rem;
}
@media screen and (min-width: 950px) {
  .cta-banner {
    padding-top: 2.5625rem;
    margin-top: initial;
    padding-bottom: 0.25rem;
  }
}

@media screen and (min-width: 950px) {
  .cta-banner__inner {
    padding: 0rem 0rem 0rem 1.5625rem;
    max-width: 71.5625rem;
    margin-inline: auto;
  }
}

.cta-banner__container {
  position: relative;
  padding-bottom: 0.6875rem;
}
@media screen and (min-width: 950px) {
  .cta-banner__container {
    display: flex;
    padding-bottom: 2.5rem;
    justify-content: flex-end;
  }
}

.cta-banner__image {
  width: 18.75rem;
  height: 13.625rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cta-banner__image img {
  aspect-ratio: 1.376146789;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 950px) {
  .cta-banner__image {
    width: 31.0625rem;
    height: 19rem;
    display: block;
    left: -3.375rem;
  }
  .cta-banner__image img {
    aspect-ratio: 1.6348684211;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.cta-banner__contents {
  width: 33.75rem;
  margin-left: auto;
}
@media screen and (min-width: 950px) {
  .cta-banner__contents {
    display: flex;
    flex-direction: row-reverse;
    width: 53.125rem;
    margin-left: initial;
    gap: 5rem;
  }
}

.cta-banner__text {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .cta-banner__text {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.cta-banner__button {
  margin-top: 0.4375rem;
  margin-left: auto;
  text-align: right;
}
@media screen and (min-width: 950px) {
  .cta-banner__button {
    max-width: 36.25rem;
    margin-top: 0.6875rem;
  }
}

.cta-banner__link {
  background-color: #fff;
  padding: 1.0625rem 3.625rem 1.125rem 2.75rem;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
}
@media screen and (min-width: 950px) {
  .cta-banner__link {
    padding: 1.0625rem 3.625rem 1rem 5.25rem;
  }
}

.cta-banner__icon {
  width: 2.8125rem;
  display: block;
}

.cta-banner__logo {
  width: 8.125rem;
  margin-inline: auto;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 950px) {
  .cta-banner__logo {
    margin-top: 2.4375rem;
    width: 11.875rem;
  }
}

.cta-banner__label {
  font-size: 2.0625rem;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  font-weight: 700;
  color: #337852;
}

.oem {
  padding: 2.5rem 0rem 6.25rem;
}
@media screen and (min-width: 950px) {
  .oem {
    padding-top: 5rem;
  }
}

.oem__inner {
  padding: 0 1.25rem;
}
@media screen and (min-width: 950px) {
  .oem__inner {
    padding: 0rem 1.5625rem;
    max-width: 63.125rem;
  }
}

.oem__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}

.oem__title {
  font-size: 3rem;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #337852;
}

.oem__subtitle {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  padding-bottom: 3.09375rem;
  border-bottom: 1px solid #d3d3d3;
  width: 100%;
  text-align: center;
}

.oem__definition {
  padding: 1.21875rem 2.8125rem 0rem;
}
@media screen and (min-width: 950px) {
  .oem__definition {
    padding: 3.71875rem 6.4375rem 0rem;
  }
}

.oem__definition-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.375rem;
}
@media screen and (min-width: 950px) {
  .oem__definition-title {
    gap: 1.625rem;
  }
}

.oem__definition-title--bold {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
}

.oem__definition-title--light {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  font-weight: 700;
  color: #d3d3d3;
}

.oem__definition-text {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
}

.oem__comparison {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (min-width: 950px) {
  .oem__comparison {
    gap: 7.5rem;
    padding: 0rem 1.25rem;
  }
}

.oem__comparison-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.oem__comparison-box--traditional {
  padding: 1.1875rem 0rem 2.4375rem;
  border: 1px solid #d3d3d3;
}

.oem__comparison-title {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  font-weight: 700;
}

.oem__comparison-list {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 0.5rem;
}

.oem__comparison-button {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1.375rem;
}
@media screen and (min-width: 950px) {
  .oem__comparison-button {
    min-width: 21.25rem;
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.oem__comparison-button--dark {
  background-color: #505050;
  padding: 0.125rem 1.4375rem 0.375rem;
}

.oem__comparison-box--oem {
  padding: 1.125rem 0rem 2.375rem;
  border: 1px solid #337852;
}

.oem__comparison-box--traditional .oem__comparison-title {
  color: #505050;
}

.oem__comparison-box--oem .oem__comparison-title {
  color: #337852;
}

.oem__comparison-button--green {
  background-color: #337852;
  padding: 0.1875rem 0.625rem 0.3125rem;
}

.oem-industries {
  padding: 3.125rem 0rem 6.875rem;
  position: relative;
}

.oem-industries::before {
  content: "";
  display: block;
  background-color: #d3d3d3;
  max-width: 41.875rem;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (min-width: 950px) {
  .oem-industries::before {
    max-width: 60rem;
  }
}

.oem-industries__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-industries__inner {
    max-width: 71.875rem;
    padding: 0rem 1.5625rem;
  }
}

.oem-industries__list {
  margin-top: 2.9375rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 950px) {
  .oem-industries__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
  }
}

.oem-industries__item {
  display: flex;
  margin-right: -2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-industries__item {
    margin-right: initial;
    flex-direction: column;
  }
}

.oem-industries__text {
  width: 49.2957746479%;
}
@media screen and (min-width: 950px) {
  .oem-industries__text {
    display: contents;
    width: 100%;
  }
}

.oem-industries__category {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  color: #337852;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .oem-industries__category {
    order: 1;
  }
}

.oem-industries__description {
  margin-top: 1.9375rem;
  padding-right: 1.875rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .oem-industries__description {
    order: 3;
    margin-top: 1.25rem;
    padding-right: initial;
  }
}

.oem-industries__image {
  width: 50.7042253521%;
}
@media screen and (min-width: 950px) {
  .oem-industries__image {
    order: 2;
    width: 100%;
    margin-top: 0.6875rem;
  }
}

@media screen and (min-width: 950px) {
  .oem-industries__image img {
    aspect-ratio: 360/240;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.oem-timing {
  padding: 3.09375rem 0rem 10.1875rem;
  position: relative;
}
@media screen and (min-width: 950px) {
  .oem-timing {
    padding-bottom: 8.8125rem;
  }
}

.oem-timing::before {
  content: "";
  display: block;
  background-color: #d3d3d3;
  max-width: 41.875rem;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (min-width: 950px) {
  .oem-timing::before {
    max-width: 60rem;
  }
}

.oem-timing__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-timing__inner {
    max-width: 71.875rem;
    padding: 0rem 1.5625rem;
  }
}

.oem-timing__content {
  margin-top: 2.3125rem;
  padding: 0rem 2.1875rem;
}
@media screen and (min-width: 950px) {
  .oem-timing__content {
    display: flex;
    align-items: flex-start;
    gap: 3.75rem;
    margin-top: 3.5625rem;
    padding: initial;
  }
}

.oem-timing__issues {
  position: relative;
}
@media screen and (min-width: 950px) {
  .oem-timing__issues {
    width: 49.0909090909%;
  }
}

.oem-timing__issues-image {
  position: absolute;
  width: 24.875rem;
  height: 16.25rem;
  display: block;
  bottom: -3.75rem;
  right: -2.1875rem;
}
.oem-timing__issues-image img {
  aspect-ratio: 1.5307692308;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 950px) {
  .oem-timing__issues-image {
    bottom: -3.9375rem;
    right: 1.25rem;
  }
}

.oem-timing__solutions-image {
  position: absolute;
  width: 32.5rem;
  height: 16.25rem;
  display: block;
  right: 0.9375rem;
  bottom: -4.9375rem;
}
.oem-timing__solutions-image img {
  aspect-ratio: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 950px) {
  .oem-timing__solutions-image {
    right: 2.5rem;
    bottom: -3.9375rem;
  }
}

.oem-timing__note {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0em;
  font-weight: 400;
  position: absolute;
  bottom: -5.1875rem;
  transform: translateY(100%);
  right: 1.875rem;
}
@media screen and (min-width: 950px) {
  .oem-timing__note {
    right: 4.125rem;
    bottom: -4.0625rem;
  }
}

.oem-timing__subtitle {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  color: #505050;
  text-align: center;
}

.oem-timing__list {
  padding: 2.4375rem 1.4375rem 9.375rem 3.4375rem;
  border: 1px solid #505050;
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 950px) {
  .oem-timing__list {
    padding: 0.375rem 1.1875rem 10.625rem 0rem;
    text-align: right;
  }
}

.oem-timing__item {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 2rem;
}

.oem-timing__item span {
  position: relative;
  display: inline-block;
}

.oem-timing__item span::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #707070;
  position: absolute;
  bottom: 0.15rem;
  left: 0;
  right: 0;
}

.oem-timing__solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 7.1875rem;
  position: relative;
}
@media screen and (min-width: 950px) {
  .oem-timing__solutions {
    margin-top: initial;
    width: 45.4545454545%;
  }
}

.oem-timing__solutions::before {
  content: "";
  display: block;
  background-image: url(../img/triangle-six_sp.svg);
  width: 20.625rem;
  height: 1.5625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 950px) {
  .oem-timing__solutions::before {
    position: absolute;
    transform: rotate(-90deg);
    top: 39%;
    left: -39%;
  }
}

.oem-timing__item-asterisk::before {
  content: "※";
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffee00;
  position: absolute;
  right: -1.375rem;
  top: 0.5rem;
}

.oem-timing__subtitle--green {
  color: #337852;
  margin-top: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 950px) {
  .oem-timing__subtitle--green {
    margin-top: initial;
  }
}

.oem-timing__list--green {
  background-color: #337852;
}
@media screen and (min-width: 950px) {
  .oem-timing__list--green {
    text-align: left;
    padding: 0.375rem 1.1875rem 9.375rem 1.1875rem;
  }
}

.oem-timing__list--green .oem-timing__item {
  color: #ffffff;
}

.oem-timing__list--green .oem-timing__item span::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  position: absolute;
  bottom: 0.15rem;
  left: 0;
  right: 0;
}

.business-support {
  padding: 3.75rem 2.5rem;
  background-color: #f6f6f6;
}
@media screen and (min-width: 950px) {
  .business-support {
    padding: 2.5rem 0rem 5rem;
  }
}

.business-support__wrapper {
  display: contents;
}
@media screen and (min-width: 950px) {
  .business-support__wrapper {
    display: block;
    max-width: 70rem;
    width: 100%;
    padding-right: 2.5rem;
    padding-left: 11.5rem;
    margin-inline: auto;
  }
}

.business-support__container {
  position: relative;
  background-color: #337852;
  padding-top: 1.875rem;
  padding-bottom: 1.375rem;
  border-radius: 0.75rem;
}
@media screen and (min-width: 950px) {
  .business-support__container {
    max-width: 56.25rem;
    padding-bottom: 1.25rem;
  }
}

.business-support__image {
  position: absolute;
  width: 11.375rem;
  height: 13.75rem;
  display: block;
  bottom: 3.8125rem;
  left: -0.6875rem;
}
.business-support__image img {
  aspect-ratio: 0.8272727273;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 950px) {
  .business-support__image {
    width: 16.5rem;
    height: 20rem;
    display: block;
    left: -11.5rem;
    bottom: 0;
  }
  .business-support__image img {
    aspect-ratio: 0.825;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.business-support__title {
  font-size: 2.125rem;
  line-height: 1.4411764706;
  letter-spacing: 0em;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (min-width: 950px) {
  .business-support__title {
    font-size: 2.375rem;
    line-height: 1.4473684211;
    letter-spacing: 0em;
    font-weight: 400;
  }
}

.business-support__description {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 950px) {
  .business-support__description {
    margin-top: 0.25rem;
  }
}

.business-support__list {
  padding: 1.125rem 3rem 2.1875rem 1.6875rem;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  max-width: 28.75rem;
  margin-left: auto;
  width: 100%;
  margin-right: 1.875rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.3125rem 1.0625rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 950px) {
  .business-support__list {
    margin-top: 2.0625rem;
    gap: 0.9375rem 3.5rem;
    max-width: 32.5rem;
    margin-inline: auto;
  }
}

.business-support__item {
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  border-bottom: 2px solid #ffffff;
  display: inline;
}

.business-support__item--small {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .business-support__item--small {
    font-size: 1.75rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    font-weight: 400;
  }
}

.business-support__note {
  background-color: #fff;
  color: #337852;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 700;
  border-radius: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 0.625rem;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 950px) {
  .business-support__note {
    margin-top: 2.0625rem;
    margin-right: 5rem;
    font-size: 1.75rem;
    line-height: 2.1428571429;
    padding-right: 1.375rem;
    text-align: right;
  }
}

.oem-strengths {
  padding-top: 5.3125rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths {
    padding-top: 2.625rem;
  }
}

.oem-strengths_wrapper {
  overflow: hidden;
  padding-top: 3.75rem;
  margin-top: -3.75rem;
  position: relative;
}

.oem-strengths_wrapper::before {
  content: "";
  display: block;
  width: 32.3125rem;
  height: 32.25rem;
  border: 2px solid #337852;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 13.125rem);
  top: 4.6%;
  z-index: -1;
}
@media screen and (min-width: 950px) {
  .oem-strengths_wrapper::before {
    width: 37.5rem;
    height: 37.5rem;
    left: calc(50% - 18.625rem);
    top: 6.9%;
  }
}

.oem-strengths__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.9375rem;
  padding-left: 2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__heading {
    gap: 2.0625rem;
    padding-left: initial;
    padding-right: 3.0625rem;
  }
}

.oem-strengths__heading-logo {
  width: 8.5625rem;
  flex: 1;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__heading-logo {
    width: 9.9375rem;
    flex: initial;
  }
}

.oem-strengths__title {
  color: #337852;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding-left: 4.375rem;
  width: 19.8125rem;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__title {
    padding-left: 5rem;
    width: 23.125rem;
  }
}

.oem-strengths__title-small {
  font-size: clamp(1em, 1.4vw, 1.5em);
  font-weight: 400;
  display: inline-block;
  margin-bottom: -0.625rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__title-small {
    margin-right: 1.25rem;
  }
}

.oem-strengths__title-main {
  font-size: 3.1875rem;
  line-height: 1.0588235294;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .oem-strengths__title-main {
    font-size: 3.75rem;
    line-height: 1.05;
  }
}

.oem-strengths__title-num {
  font-size: 4.8125rem;
  line-height: 0.7012987013;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .oem-strengths__title-num {
    font-size: 5.625rem;
    line-height: 0.7;
  }
}

.oem-strengths__man {
  width: 14rem;
  margin-right: -1.875rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 950px) {
  .oem-strengths__man {
    width: 16.25rem;
  }
}

.oem-strengths__body {
  background-image: url(../img/strong-bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 950px) {
  .oem-strengths__body {
    background-image: url(../img/strong-bg.jpg);
  }
}

.oem-strengths__list {
  padding: 3.9375rem 2.1875rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4.8125rem;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 950px) {
  .oem-strengths__list {
    padding: 7.5625rem 1.5625rem 3.6875rem;
    max-width: 75rem;
    margin-inline: auto;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.oem-strengths__item {
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
  padding-top: 2.3125rem;
  padding-left: 7.8125rem;
  padding-right: 0.625rem;
  padding: 2.3125rem 0.625rem 1rem 7.8125rem;
  min-height: 17.5rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__item {
    padding: 3.625rem 2.5rem 2.0625rem;
    height: auto;
  }
}

.oem-strengths__number {
  font-size: 5rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  color: rgba(51, 120, 82, 0.3);
  position: absolute;
  top: 0;
  left: 1.5625rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 950px) {
  .oem-strengths__number {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.oem-strengths__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 950px) {
  .oem-strengths__contents {
    flex-direction: column;
  }
}

.oem-strengths__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .oem-strengths__content {
    display: contents;
  }
}

.oem-strengths__label {
  font-size: 2.375rem;
  line-height: 1.4473684211;
  letter-spacing: 0em;
  font-weight: 400;
  color: #337852;
  text-align: center;
  border-bottom: 4px solid #337852;
  padding: 0rem 1.25rem 0.3125rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .oem-strengths__label {
    order: 1;
    padding: 0rem 0rem 0.3125rem;
  }
}

.oem-strengths__text {
  margin-top: 2.1875rem;
  max-width: 16.25rem;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .oem-strengths__text {
    order: 3;
    max-width: 100%;
    margin-top: 1.125rem;
  }
}

.oem-strengths__icon {
  width: 15rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__icon {
    order: 2;
    margin-top: 1.25rem;
    width: 16.25rem;
  }
}

@media screen and (min-width: 950px) {
  .oem-strengths__item--flexibility,
.oem-strengths__item--quality,
.oem-strengths__item--cost {
    padding-top: 2.125rem;
    padding-bottom: 1.625rem;
  }
}

.oem-strengths__label-sub {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 400;
}

.oem-strengths__item--cost .oem-strengths__text {
  margin-right: -1.25rem;
  width: calc(100% + 1.25rem);
  max-width: 17.5rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__item--cost .oem-strengths__text {
    max-width: calc(100% + 1.25rem);
  }
}

.oem-strengths__item--cost .oem-strengths__icon {
  margin-top: 1.875rem;
}
@media screen and (min-width: 950px) {
  .oem-strengths__item--cost .oem-strengths__icon {
    margin-top: 1.25rem;
  }
}

.oem-strengths__note {
  font-size: 0.75rem;
  line-height: 1.0833333333;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
  transform: translateX(13%);
  margin-top: 0.125rem;
  color: #161616;
}
@media screen and (min-width: 950px) {
  .oem-strengths__note {
    margin-top: 0.5rem;
    transform: none;
    margin-right: -0.625rem;
    width: calc(100% + 0.625rem);
    max-width: calc(100% + 0.625rem);
  }
}

.oem-gallery {
  padding-top: 5rem;
  padding-bottom: 4.8125rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery {
    padding-top: 5.625rem;
  }
}

.oem-gallery__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery__inner {
    padding: 0rem 1.5625rem 0rem 7.8125rem;
    max-width: 70.625rem;
  }
}

.oem-gallery__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oem-gallery__heading:before {
  content: "";
  display: block;
  background-image: url(../img/green-circle.svg);
  width: 2.625rem;
  height: 0.625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.oem-gallery__subtitle {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
}

.oem-gallery__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-right: -2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery__body {
    margin-right: initial;
    align-items: flex-start;
  }
}

.oem-gallery__list {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2.9375rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery__list {
    margin-top: 3.125rem;
    gap: 0.9375rem;
  }
}

@media screen and (min-width: 950px) {
  .oem-gallery__item {
    margin-top: -0.125rem;
  }
}

.oem-gallery__category {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 400;
}

.oem-gallery__description {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  padding-left: 2rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery__description {
    padding-left: 2.3125rem;
    margin-top: -0.125rem;
  }
}

.oem-gallery__images {
  width: 23.4375rem;
}
@media screen and (min-width: 950px) {
  .oem-gallery__images {
    width: 33.75rem;
  }
}

.oem-gallery__logo {
  width: 5.625rem;
  margin-left: auto;
}
@media screen and (min-width: 950px) {
  .oem-gallery__logo {
    width: 8.75rem;
  }
}

.oem-gallery__image {
  margin-top: 0.5rem;
}

.product-category {
  padding: 3.125rem 0rem 2.8125rem;
  background-color: #f6f6f6;
}
.product-category__inner {
  padding: 0rem 4.875rem;
}
@media screen and (min-width: 950px) {
  .product-category__inner {
    padding: 0rem 1.5625rem;
    max-width: 71.875rem;
  }
}

.product-category__list {
  margin-top: 3.5rem;
  gap: 0.3125rem 4.8125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 950px) {
  .product-category__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.product-category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 1.25rem 0rem 2.4375rem;
  border-radius: 0.75rem;
}

.product-category__label {
  margin-top: 1.1875rem;
  background-color: #337852;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  border-radius: 3.125rem;
  min-width: 15.1875rem;
  text-align: center;
  color: #ffffff;
}

.product-category__features {
  margin-top: 1.25rem;
  color: #337852;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem 0.9375rem 0 1.25rem;
}

.product-category__feature {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
}

.product-category__feature::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #337852;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  position: absolute;
  top: 0.9375rem;
  left: -0.9vw;
}

.case-study {
  padding: 7.5625rem 0rem 4.4375rem;
}
@media screen and (min-width: 950px) {
  .case-study {
    padding: 6.25rem 0rem 5rem;
  }
}

.case-study__inner {
  max-width: 35rem;
}
@media screen and (min-width: 950px) {
  .case-study__inner {
    padding: 0rem 1.5625rem;
    max-width: 73.125rem;
  }
}

.case-study__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5625rem;
  align-items: stretch;
  margin-top: 1.875rem;
}
@media screen and (min-width: 950px) {
  .case-study__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.case-study__item {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
}

.case-study__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.case-study__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.case-study__content {
  padding-top: 1.25rem;
  padding-left: 1.25rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 1.1875rem;
  min-height: 0;
}
@media screen and (min-width: 950px) {
  .case-study__content {
    padding-left: initial;
  }
}

.case-study__label {
  font-size: 1.75rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  font-weight: 400;
  color: #161616;
  letter-spacing: -0.02em;
  margin: 0;
}

.case-study__text {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
}

.oem-flow {
  padding: 6.4375rem 0rem 3.75rem;
  background: #f8f8f8;
}

.oem-flow__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .oem-flow__inner {
    padding: 0rem 1.5625rem;
    max-width: 71.875rem;
  }
}

.oem-flow__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.125rem;
}
@media screen and (min-width: 950px) {
  .oem-flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.oem-flow__item {
  border: 1px dashed #337852;
  border-radius: 0.75rem;
  background-color: #fff;
  min-height: ren(280);
  padding: 0rem 1.5625rem 2.375rem 1.75rem;
  color: #337852;
}
@media screen and (min-width: 950px) {
  .oem-flow__item {
    padding: 0rem 0.9375rem 1.25rem 1.1875rem;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: 0;
  }
}

.oem-flow__number {
  font-size: 3.75rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  color: #337852;
  position: relative;
  gap: 6.6875rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .oem-flow__number {
    gap: 5.3125rem;
    margin-top: -0.625rem;
  }
}

.oem-flow__number::after {
  content: "";
  display: block;
  border-bottom: 1px solid #337852;
  border-right: 1px solid #337852;
  width: 1.875rem;
  height: 1.875rem;
  transform: rotate(-45deg);
}

.oem-flow__item:nth-of-type(4) .oem-flow__number::after {
  content: none;
}

@media screen and (min-width: 950px) {
  .oem-flow__content {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 0;
  }
}

.oem-flow__label {
  font-size: 1.75rem;
  line-height: 1.0714285714;
  letter-spacing: 0em;
  font-weight: 400;
  padding-bottom: 0.59375rem;
  border-bottom: 1px solid #337852;
  margin-top: 0.875rem;
}
@media screen and (min-width: 950px) {
  .oem-flow__label {
    margin-top: 1.6875rem;
    padding-bottom: 0.8125rem;
  }
}

.oem-flow__text {
  margin-top: 0.59375rem;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 950px) {
  .oem-flow__text {
    line-height: 1.5;
  }
}

.oem-flow__item:nth-of-type(4) .oem-flow__label {
  margin-top: -0.3125rem;
}

.certification {
  padding: 6.0625rem 0rem 6.375rem;
}
@media screen and (min-width: 950px) {
  .certification {
    padding-bottom: 8rem;
  }
}

.certification__inner {
  padding: 0rem 4.6875rem;
}
@media screen and (min-width: 950px) {
  .certification__inner {
    max-width: 73.125rem;
    padding: 0rem 1.5625rem;
  }
}

.certification__list {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 950px) {
  .certification__list {
    margin: auto;
    margin-top: 2.625rem;
    width: min(90%, 500px);
  }
}

.certification__image {
  aspect-ratio: 280/185;
  -o-object-fit: cover;
     object-fit: cover;
}

.certification__name {
  margin-top: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
}

.certification__description {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
}

.voice {
  padding: 6.25rem 0rem 3.75rem;
  background-color: #f7f7f7;
}
@media screen and (min-width: 950px) {
  .voice {
    padding: 7.5rem 0rem 3.75rem;
  }
}

.voice__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .voice__inner {
    padding: 0rem 1.5625rem;
    max-width: 73.125rem;
  }
}

.voice__list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (min-width: 950px) {
  .voice__list {
    gap: 3.125rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice__item {
  padding: 2.5rem 3.125rem 2.5rem 3.75rem;
  display: flex;
  align-items: center;
  min-height: 12.5rem;
  justify-content: space-between;
  background-color: #fff;
}
@media screen and (min-width: 950px) {
  .voice__item {
    flex-direction: column;
    justify-content: flex-start;
    padding: 3.125rem 1.25rem 1.25rem;
    gap: 2.5rem;
    min-height: 22.5rem;
  }
}

.voice__icon-wrapper {
  width: 6.25rem;
}
@media screen and (min-width: 950px) {
  .voice__icon-wrapper {
    width: 5.6875rem;
  }
}

.voice__comment {
  max-width: 20rem;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
}

.faq {
  padding-top: 5.625rem;
}
@media screen and (min-width: 950px) {
  .faq {
    padding-top: 5rem;
  }
}

.faq__inner {
  padding-left: 3.1875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 950px) {
  .faq__inner {
    max-width: 64.375rem;
    padding: 0rem 1.5625rem;
  }
}

.faq__list {
  margin-top: 3.5625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.faq__question {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}

.faq__question::before,
.faq__question::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.125rem;
  position: absolute;
  background-color: #d3d3d3;
  top: 1.25rem;
  left: -1.625rem;
}

.faq__question::after {
  transform: rotate(90deg);
  transition: 0.3s;
}

@media screen and (min-width: 950px) {
  .faq__item {
    margin-left: 1.875rem;
  }
}

.faq__item.is-open .faq__question::after {
  transform: rotate(0deg);
  transition: 0.3s;
}

.faq__answer {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  padding-left: 2.5rem;
}
@media screen and (min-width: 950px) {
  .faq__answer {
    margin-top: 0.1875rem;
  }
}

.contact-form {
  padding: 10rem 0 22rem;
}
@media screen and (min-width: 950px) {
  .contact-form {
    padding: 7.9375rem 0rem 7.4375rem;
  }
}

.contact-form__inner {
  padding: 0rem 2.5rem;
}
@media screen and (min-width: 950px) {
  .contact-form__inner {
    padding: 0rem 1.5625rem;
    max-width: 63.125rem;
  }
}

.contact-form__body {
  margin-top: 1.375rem;
}
@media screen and (min-width: 950px) {
  .contact-form__body {
    margin-top: 4.8125rem;
  }
}

.contact-form__body form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form__label {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
}

.contact-form__input {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 0.4375rem;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  width: 23.75rem;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border: 1px solid #337852;
}

@media screen and (min-width: 950px) {
  .contact-form__message-label-area {
    display: flex;
    align-items: center;
  }
}

.contact-form__message-label-area + p {
  width: 100%;
}

.contact-form__textarea {
  border: 1px solid #d3d3d3;
  max-width: 41.875rem;
  width: 100%;
  height: 20rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 0.4375rem;
}
@media screen and (min-width: 950px) {
  .contact-form__textarea {
    max-width: 58.75rem;
  }
}

.contact-form__message-note {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  padding-left: 2.5rem;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 950px) {
  .contact-form__message-note {
    padding-left: 3.9375rem;
    margin-bottom: -0.5rem;
  }
}

.contact-form__submit {
  margin-top: 5rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 950px) {
  .contact-form__submit {
    margin-top: -0.375rem;
  }
}

.contact-form__submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 12px; /* お好みで */
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.contact-form__button {
  padding: 1.1875rem 3.3125rem;
  border: 1px solid #337852;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
  border-radius: 0.75rem;
  background-color: #337852;
  transition: 0.3s;
}
.contact-form__button:hover {
  color: #337852;
  background-color: #fff;
  transition: 0.3s;
}

.footer {
  padding-top: 4.9375rem;
  border-top: 1px solid #d3d3d3;
}

.footer__logo {
  max-width: 16.25rem;
  width: 100%;
  margin-inline: auto;
}

.footer__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.25rem;
  margin-top: 5rem;
}

.footer__sns-item {
  width: 1.5625rem;
}

.footer__nav-list {
  margin-top: 2.125rem;
  margin-bottom: 2.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.footer__nav-link {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 400;
  color: #161616;
}

.footer__copyright {
  height: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #337852;
}

.footer__copyright small {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 400;
}
/*# sourceMappingURL=style.css.map */