@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/******* media *******/
/******* base *******/
@supports (-webkit-touch-callout: none) {
  .vh100 {
    min-height: -webkit-fill-available;
  }
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  color: #333333;
}
a:hover {
  color: #333333;
}

br.sp {
  display: block;
}
@media (min-width: 768px) {
  br.sp {
    display: none;
  }
}

.tjf {
  text-align: justify;
  text-justify: inter-ideograph;
}

.vh100 {
  min-height: 100vh;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  font-size: 1.5rem;
  color: #333333;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
main {
  position: relative;
}

section {
  padding: 60px 0;
}

a.m-button-standard {
  text-decoration: none;
  background-color: lightgray;
  padding: 3px 8px;
  display: inline-block;
}

.split_container .split_left {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .split_container .split_left {
    width: 50%;
  }
}
.split_container .split_right {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 992px) {
  .split_container .split_right {
    padding-left: 50%;
    pointer-events: none;
  }
}
.split_container .split_right .container {
  pointer-events: auto;
  max-width: 550px;
  margin: 0 auto;
}

header {
  padding: 20px 0;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .header_in {
  width: 100%;
  overflow: hidden;
  position: relative;
}
header .header_in h1.logo {
  float: left;
  width: 220px;
}
header .header_in nav {
  float: right;
  width: auto;
}
header .header_in nav ul.gnav {
  list-style: none;
  display: flex;
  gap: 4rem;
}
header .header_in nav ul.gnav li {
  display: block;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.1;
}
header .header_in nav ul.gnav li span.press {
  font-stretch: 50%;
  letter-spacing: 0.01em;
}
header .header_in nav ul.gnav li span.wa {
  font-size: 1.1rem;
  font-weight: normal;
}
header .header_in nav ul.gnav li a {
  text-decoration: none;
  display: inline;
}
header .header_in nav ul.gnav li a:hover {
  text-decoration: none;
}
header .header_in nav ul.gnav li a.sns {
  margin-left: 5px;
}
header .header_in nav ul.gnav li a.sns img {
  max-width: 20px;
  max-height: 20px;
}

body.index header {
  position: relative;
  background-color: white;
}
@media (min-width: 992px) {
  body.index header {
    display: none;
  }
}
body.index header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
}

.consolebox {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  padding: 10px;
}
.consolebox p {
  padding: 0;
  margin: 0;
}
.consolebox p.breakpoint::before {
  content: "breakpoint : ";
}
.consolebox p.breakpoint::after {
  content: "default";
}
@media (min-width: 576px) {
  .consolebox p.breakpoint::after {
    content: "sm";
  }
}
@media (min-width: 768px) {
  .consolebox p.breakpoint::after {
    content: "md";
  }
}
@media (min-width: 992px) {
  .consolebox p.breakpoint::after {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  .consolebox p.breakpoint::after {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  .consolebox p.breakpoint::after {
    content: "xxl";
  }
}

footer {
  background-color: white;
  padding: 30px 0;
  text-align: center;
}
footer ul.sns_icon {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
footer ul.sns_icon li {
  display: inline-block;
  margin-right: 30px;
  font-size: 3rem;
}
footer ul.sns_icon li:last-child {
  margin-right: 0;
}
footer .copyright img {
  margin: 0 10px;
}

@media (min-width: 992px) {
  body.index .hamburger_wrapper {
    display: none !important;
  }
}

.hamburger_wrapper {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  z-index: 200;
}
@media (min-width: 1200px) {
  .hamburger_wrapper {
    display: none;
  }
}
.hamburger_wrapper .hamburger {
  color: black;
  height: 100%;
  width: 100%;
}
.hamburger_wrapper .hamburger.white {
  color: white;
}
.hamburger_wrapper .hamburger svg {
  width: 100%;
  height: 100%;
}
.hamburger_wrapper .hamburger svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.hamburger_wrapper .hamburger svg line {
  stroke: currentColor;
  stroke-width: 3px;
  fill: none;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.hamburger_wrapper .hamburger:hover {
  cursor: pointer;
}
.hamburger_wrapper .hamburger.show {
  color: black;
}
.hamburger_wrapper .hamburger.show svg line:nth-of-type(1) {
  transform-origin: 50% 30%;
  transform: translate(0, 20%) rotate(45deg);
}
.hamburger_wrapper .hamburger.show svg line:nth-of-type(2) {
  opacity: 0;
}
.hamburger_wrapper .hamburger.show svg line:nth-of-type(3) {
  transform-origin: 50% 70%;
  transform: translate(0, -20%) rotate(-45deg);
}

.hamburger_pc {
  margin: 15px 0 0 30px;
  width: 80px;
  height: 80px;
  color: white;
  cursor: pointer;
}
.hamburger_pc svg {
  width: 100%;
  height: 100%;
}
.hamburger_pc svg line {
  stroke: currentColor;
  stroke-width: 8px;
  fill: none;
  transition: all 0.2s ease-out;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  transition: top 0.5s ease-out;
  height: 100%;
  min-height: 100dvh;
  z-index: 199;
  background-color: white;
}
@media (min-width: 992px) {
  .drawer {
    width: 50%;
    left: 50%;
  }
}
.drawer.show {
  display: block;
  top: 0;
}
.drawer ul {
  padding: 100px 0 0 0;
  list-style-type: none;
}
.drawer ul li {
  width: 100%;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 30px;
}
.drawer ul li span.wa {
  font-size: 1.1rem;
  font-weight: normal;
}
.drawer ul li a {
  text-decoration: none;
}

main.header_fixed .top_copy {
  padding-top: 136px;
}

section {
  background-color: white;
}
section.firstview {
  height: 100vh;
  width: 100%;
}
section.firstview p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 133px;
  line-height: 160px;
  z-index: 100;
  text-align: center;
}
section.top_mainvisual {
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: relative;
}
section.top_mainvisual ul.slideshow {
  display: block;
  width: 100%;
  height: 100vh;
  padding: 0;
  list-style-type: none;
  position: relative;
}
section.top_mainvisual ul.slideshow li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transition: all 2s ease-out;
}
section.top_mainvisual ul.slideshow li.current {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  opacity: 1;
}
section.top_mainvisual nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.top_mainvisual nav h1 {
  width: calc(100% - 45px);
  font-size: 0;
  padding: 60px 0 0 45px;
}
section.top_mainvisual nav h1 img {
  width: 100%;
}
section.top_mainvisual nav ul {
  margin-top: 30px;
  list-style-type: none;
  padding: 0;
}
section.top_mainvisual nav ul li {
  margin-bottom: 13px;
  padding: 2px 0;
}
section.top_mainvisual nav ul li a {
  color: #8e8e8f;
  pointer-events: auto;
  background-color: #ffffff;
  border-radius: 0 20px 20px 0;
  text-decoration: none;
  padding: 6px 15px 8px 45px;
  transition: all 0.3s ease-out;
  font-size: 1.6rem;
  margin: 2px 0;
  display: inline-block;
  line-height: 1;
}
section.top_mainvisual nav ul li a:hover {
  padding: 6px 15px 8px 65px;
}
@media (min-width: 992px) {
  section.top_copy {
    margin-top: 60px;
  }
}
section.top_copy .top_copy_title {
  text-align: center;
}
section.top_copy .top_copy_title h2 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-weight: bold;
  font-size: 7.8rem;
  margin-bottom: 0.5em;
}
section.top_copy .top_copy_title h3 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 0.3em;
}
section.top_copy .top_copy_title p {
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.7;
}
section.top_copy p {
  text-align: center;
  margin-bottom: 0;
  line-height: 2.4;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  section.top_copy p {
    font-size: 1.6rem;
  }
}
section.top_news .title {
  border-bottom: 1px solid #000000;
  margin-bottom: 2em;
}
section.top_news .title h3 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
section.top_news dl {
  margin-bottom: 30px;
}
section.top_news dl dt {
  display: inline-block;
  width: 120px;
  font-weight: normal;
}
section.top_news dl dd {
  width: calc(100% - 120px);
  display: inline-block;
  margin: 0;
}
section.top_news p.btn_wrapper {
  text-align: right;
}
section.top_concept {
  text-align: center;
}
section.top_concept .index_concept_title {
  margin-bottom: 4em;
}
section.top_concept .index_concept_title h3 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
section.top_concept .index_concept_topic {
  margin-bottom: 2em;
}
section.top_concept .index_concept_topic h4 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
section.top_concept .index_concept_topic h4 span {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}
section.top_concept .index_concept_topic p {
  font-size: 1.3rem;
}
section.sec-index_contents .index_section_title {
  text-align: center;
  font-size: 2.4rem;
  background-image: url(../images/line.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 10px 10px;
}
section.sec-index_contents .index_section_title span {
  background-color: white;
  display: inline-block;
  min-width: 50%;
}
section.sec-index_contents figure {
  text-align: center;
  width: 100%;
  margin: 3rem auto 5rem;
}
section.sec-index_contents figure img {
  max-width: 170px;
}
section.top_category .top_category_title {
  text-align: center;
  margin-bottom: 40px;
}
section.top_category .top_category_title h2 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  section.top_category .top_category_title h2 {
    font-size: 4rem;
  }
}
section.top_category .top_category_title p {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
section.top_category .category_logo_box .category_logo {
  max-width: 150px;
  margin: 0 auto;
}
section.top_category .category_logo_box p {
  text-align: center;
}

section .s_header_title {
  text-align: center;
}
section .s_header_title h2 {
  font-family: "Helvetica Neue", Helvetica, "sans-serif";
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  section .s_header_title h2 {
    font-size: 4rem;
  }
}
section .s_header_title h2 img {
  max-width: 140px;
  margin: 0 auto;
}
section .s_header_title p {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
section.s_mainvisual {
  padding-top: 0;
}
section.s_content .s_header_title {
  margin-bottom: 60px;
}
section.s_content .s_header_title h3 {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  section.s_content .s_header_title h3 {
    font-size: 2.4rem;
  }
}
section.s_content .dummy_box {
  text-align: center;
}
section.s_content .dummy_box h4 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}
section.s_content .oem_copy p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.7;
}
section.s_content .conpany_data {
  max-width: 550px;
  overflow: hidden;
  margin: 0 auto;
}
section.s_content .conpany_data dt {
  float: none;
  clear: both;
  margin-right: 0;
  width: auto;
  font-weight: normal;
}
@media (min-width: 768px) {
  section.s_content .conpany_data dt {
    float: left;
    clear: left;
    margin-right: 0.5em;
    width: 120px;
  }
}
section.s_content .conpany_data dd {
  float: none;
  margin-left: 0;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  section.s_content .conpany_data dd {
    float: left;
    margin-left: 1em;
    margin-bottom: 0.75em;
  }
}
section.s_content .googlemap {
  max-width: 800px;
  margin: 0 auto;
}
section.s_content .recruit_items .recruit_item {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 10rem 0;
}
section.s_content .recruit_items .recruit_item h2 {
  font-size: 3rem;
  font-weight: 800;
}
section.s_content .recruit_items .recruit_item ul {
  padding: 4rem 0 7rem 0;
  margin: 0;
  list-style-type: none;
}
section.s_content .recruit_items .recruit_item ul li {
  display: flex;
  margin-bottom: 1rem;
}
section.s_content .recruit_items .recruit_item ul li span {
  display: inline-block;
}
section.s_content .recruit_items .recruit_item ul li span.key {
  width: 4.6em;
  font-weight: 600;
  -moz-text-align-last: justify;
       text-align-last: justify;
  margin-right: 2em;
}
section.s_content .recruit_items .recruit_item hr {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  background-color: black;
}
section.s_contact .s_header_title {
  margin-bottom: 40px;
}
section.news_list {
  max-width: 960px;
  margin: 0 auto;
}
section.news_list ul {
  list-style: none;
  padding-left: 0;
}
section.news_list ul li.news_item {
  overflow: hidden;
}
section.news_list ul li.news_item p.date {
  min-width: 120px;
  float: left;
}
section.news_list ul li.news_item p.title a {
  text-decoration: none;
}
section.news_list ul li.news_item p.title a:hover {
  text-decoration: underline;
}
section.news_contents {
  padding: 0 0 60px 0;
}
section.news_contents .news_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid black;
  padding: 0 0 15px 0;
}
section.news_contents .news_header_title {
  font-size: 2.4rem;
  margin: 0;
  display: inline-block;
}
section.news_contents .news_header_date {
  font-size: 1.5rem;
  margin: 0;
  display: inline-block;
}
section.news_contents .news_body {
  padding: 30px 0;
}
section.news_contents .pagination {
  margin: 30px 0 60px 0;
  display: flex;
  justify-content: space-between;
}
section.news_contents .pagination div a {
  text-decoration: none;
  position: relative;
}
section.news_contents .pagination div a img {
  width: 42px;
  height: 42px;
  position: absolute;
  top: -10px;
}
section.news_contents .pagination div.pagination_prev {
  float: left;
}
section.news_contents .pagination div.pagination_prev a {
  padding-left: 60px;
}
section.news_contents .pagination div.pagination_prev a img {
  left: 0;
}
section.news_contents .pagination div.pagination_next {
  float: right;
}
section.news_contents .pagination div.pagination_next a {
  padding-right: 60px;
}
section.news_contents .pagination div.pagination_next a img {
  right: 0;
}
section.news_contents .news_sidebar {
  padding: 0;
}
@media (min-width: 992px) {
  section.news_contents .news_sidebar {
    padding-left: 30px;
  }
}
section.news_contents .news_sidebar_item h3 {
  width: 100%;
  text-align: right;
  padding-bottom: 15px;
  border-bottom: 1px solid black;
  font-size: 1.8rem;
  margin: 8px 0 0 0;
}
section.news_contents .news_sidebar_item ul {
  padding: 40px 0;
  list-style-type: none;
}
section.news_contents .news_sidebar_item ul li {
  text-align: right;
  margin-bottom: 15px;
}
section.news_contents .news_sidebar_item ul li a {
  text-decoration: none;
}
section.news_contents .news_sidebar_latest ul li a {
  display: flex;
  gap: 30px;
}
section.news_contents .news_sidebar_archive ul li a {
  text-align: right;
}
section.contact_form {
  padding: 0;
}
section.contact_form .contact_box {
  max-width: 960px;
  margin: 0 auto;
}
section.contact_form label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  display: flex;
  align-items: top;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  section.contact_form label {
    flex-direction: row;
  }
}
section.contact_form label.is_required span.label::after {
  content: "※必須";
  position: absolute;
  right: 0;
}
section.contact_form label span.label {
  width: 100%;
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) {
  section.contact_form label span.label {
    width: 200px;
  }
}
section.contact_form label span.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}
@media (min-width: 992px) {
  section.contact_form label span.wpcf7-form-control-wrap {
    width: calc(100% - 230px);
  }
}
section.contact_form label span.wpcf7-form-control-wrap input {
  border: 1px solid black;
  width: 100%;
  padding: 0 5px;
  font-size: 1.6rem;
}
section.contact_form label span.wpcf7-form-control-wrap textarea {
  border: 1px solid black;
  width: 100%;
  padding: 5px;
}
section.contact_form p.contact_submit {
  margin-top: 30px;
  text-align: center;
}
section.contact_form p.contact_submit input {
  padding: 12px 25px;
  color: white;
  background-color: #8e8e8f;
  border-radius: 10px;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1em;
  text-indent: 1em;
}
section.contact_form p.contact_submit .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
section.contact_phone {
  padding: 30px 0 60px 0;
}
section.contact_phone p {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media (min-width: 992px) {
  section.contact_phone p {
    flex-direction: row;
    justify-content: center;
  }
}
section.contact_phone p span {
  text-align: center;
  width: 100%;
  display: inline-block;
}
@media (min-width: 992px) {
  section.contact_phone p span {
    width: auto;
    min-width: 250px;
  }
}
section.contact_phone p span.note {
  font-size: 1.8rem;
}
section.contact_phone p span.number {
  font-weight: bold;
  font-size: 2.4rem;
}
section.contact_phone p span.period {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  section.sec-monaka {
    max-width: 1200px;
    margin: 0 auto;
  }
}
section.sec-monaka .monaka_header {
  width: 100%;
  text-align: center;
}
section.sec-monaka .monaka_header h3 {
  display: inline-block;
  margin-bottom: 1em;
  font-size: 2rem;
  text-align: left;
  width: 100%;
  font-weight: 800;
}
@media (min-width: 768px) {
  section.sec-monaka .monaka_header h3 {
    font-size: 2.6rem;
  }
}
section.sec-monaka .monaka_header .monaka_kv {
  width: 100%;
  margin-bottom: 1.3em;
}
section.sec-monaka .monaka_header .monaka_message {
  text-align: left;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 3em;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  section.sec-monaka .monaka_header .monaka_message {
    font-size: 1.6rem;
  }
}
section.sec-oem_flow {
  padding-bottom: 0;
}
section.sec-oem_flow hr {
  margin: 0 auto;
  max-width: 360px;
  width: 60%;
}
section.sec-oem_flow .points {
  display: flex;
  justify-content: center;
}
section.sec-oem_flow .points .point {
  max-width: 300px;
  width: 50%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  color: white;
}
@media (min-width: 768px) {
  section.sec-oem_flow .points .point {
    margin: 0 15px;
  }
}
section.sec-oem_flow .points .point.point-dry {
  padding-bottom: 2rem;
}
section.sec-oem_flow .points .point h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.sec-oem_flow .points .point h4 {
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
  }
}
section.sec-oem_flow .points .point ul {
  margin: 0;
}
section.sec-oem_flow .flow {
  margin: 4em 0 5em 0;
  padding: 0;
}
section.sec-oem_flow .flow li {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.sec-oem_flow .flow li {
    flex-direction: row;
    border: 1px solid #818181;
    border-width: 0px 1px 0 0;
    margin-bottom: 0;
    align-items: stretch;
  }
}
section.sec-oem_flow .flow li:first-child p.text {
  justify-content: flex-start;
}
section.sec-oem_flow .flow li p {
  margin: 0;
  width: auto;
  display: flex;
  align-items: center;
}
section.sec-oem_flow .flow li p.label {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.sec-oem_flow .flow li p.label {
    width: 200px;
    padding: 0 0 0 30px;
    font-size: 2rem;
  }
}
section.sec-oem_flow .flow li p.text {
  margin-top: 10px;
  flex: 1;
  padding: 0 0 0 27px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
section.sec-oem_flow .flow li p.text strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  section.sec-oem_flow .flow li p.text {
    margin: 0;
    padding: 30px 5%;
    border: 1px solid #818181;
    border-width: 0 0 0 1px;
  }
}

.grid_items .grid_item figure {
  width: 100%;
  aspect-ratio: 5/4;
  margin-bottom: 1em;
}
.grid_items .grid_item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid_items .grid_item h4 {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.18em;
}
.grid_items .grid_item p {
  text-align: center;
  margin: 0;
}

.products-oem_btn {
  position: sticky;
  bottom: 30px;
  left: 100%;
  transform: translateX(-30px);
  z-index: 99;
  width: clamp(90px, 15vw, 200px);
  aspect-ratio: 1;
}
.products-oem_btn a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #818181;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}
.products-oem_btn a p {
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}

.kf_btn {
  padding: 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  background-color: #818181;
  color: white;
}/*# sourceMappingURL=style.css.map */