@charset "UTF-8";
:root {
  --color-primary: #5a9430;
  --color-nex-text: #3f3f3f;
  --color-nex-bg: #ffffff;
  --color-nex-section: #fafafa;
  --color-nex-border: #d9d9d9;
  --site-header-height: 60px;
  --content-inner-width: 1140px;
  --content-padding-x: 15px;
  --content-shell-max-width: calc(var(--content-inner-width) + 2 * var(--content-padding-x));
  --font-opensans: "Open Sans", system-ui, sans-serif;
  --font-noto: "Noto Sans JP", system-ui, sans-serif;
}

@media (min-width: 1201px) {
  :root {
    --site-header-height: 80px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

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

body {
  font-family: var(--font-noto);
  color: var(--color-nex-text);
  background-color: var(--color-nex-bg);
  margin: 0;
  padding: 0;
}

.material-symbols-outlined {
  font-variation-settings: "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background-color: var(--color-nex-bg);
}

.site-header-inner {
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  height: 60px;
  display: flex;
  align-items: center;
}

.site-header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header-logo-wrap {
  display: flex;
  align-items: center;
}

.site-header-logo {
  display: block;
  width: 120px;
}

.site-header-logo-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1201px) {
  .site-header-inner {
    padding: 0 30px;
    height: 80px;
  }
  .site-header-logo {
    width: 160px;
  }
}
.site-header-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.448;
  color: var(--color-nex-text);
}

@media (min-width: 1201px) {
  .site-header-nav {
    display: flex;
    margin: 0 20px;
  }
}
.site-header-nav-item {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
}

.site-header-nav-item:hover {
  color: var(--color-primary);
}

.site-header-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 150ms ease;
}

.site-header-nav-item:hover::after {
  opacity: 1;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header-contact {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 0;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.448;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.site-header-contact .material-symbols-outlined {
  transition: color 200ms ease;
}
.site-header-contact:hover {
  background-color: #fff;
  color: var(--color-primary);
}
.site-header-contact:hover .material-symbols-outlined {
  color: var(--color-primary);
}

@media (min-width: 1201px) {
  .site-header-contact {
    display: inline-flex;
  }
}
.site-header-contact .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}

.site-header-hamburger {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--color-primary);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .site-header-hamburger {
    border-radius: 0;
  }
}
@media (min-width: 1201px) {
  .site-header-hamburger {
    display: none;
  }
}
.site-header-hamburger-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 18px;
  height: 16px;
}

.site-header-hamburger-lines > span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.is-menu-open .site-header-hamburger-lines {
  justify-content: center;
  height: 18px;
}

body.is-menu-open .site-header-hamburger-lines > span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

body.is-menu-open .site-header-hamburger-lines > span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .site-header-hamburger-lines > span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.site-menu-overlay {
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.site-menu-panel {
  --site-menu-panel-edge: 15px;
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  bottom: 20px;
  left: auto;
  z-index: 50;
  width: min(100%, 100vw - 15px - var(--site-menu-panel-edge));
  max-width: 360px;
  min-height: 0;
  margin-top: -9px;
  margin-right: var(--site-menu-panel-edge);
  padding: 30px 10px 0;
  background: var(--color-primary);
  overflow: hidden;
  transform: translateX(calc(100% + var(--site-menu-panel-edge)));
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1201px) {
  .site-menu-overlay,
  .site-menu-panel {
    display: none;
  }
}
body.is-menu-open .site-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 24px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  border-top: 1px solid rgb(255, 255, 255);
}

.site-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.site-menu-link-text {
  flex: 1;
  min-width: 0;
}

.site-menu-link-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  font-variation-settings: "opsz" 24;
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-main {
  overflow: hidden;
}

span.color-primary {
  color: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 80px;
}

.hero-bg {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0;
  line-height: 0;
}
.hero-bg picture {
  display: block;
  width: 100%;
}

.hero-bg-img {
  display: block;
  width: 80%;
  height: auto;
  max-width: 100%;
}

@media (min-width: 1001px) {
  .hero {
    margin: 0 0 120px;
  }
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 60px;
  transform: translateY(calc(-50% - 20px));
  padding: 0;
  text-align: right;
  font-style: italic;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-content {
    transform: translateY(-50%);
    right: 30px;
  }
}
.hero-title {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 66px;
  line-height: 1.362;
  color: var(--color-nex-text);
}

@media (min-width: 601px) {
  .hero-title {
    font-size: 92px;
  }
}
@media (min-width: 1001px) {
  .hero-title {
    font-size: 140px;
  }
}
@media (min-width: 1201px) {
  .hero-title {
    font-size: 180px;
  }
}
.hero-cross {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  margin: -8px 60px -8px auto;
}
.hero-cross::before, .hero-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background-color: var(--color-nex-text);
}
.hero-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 601px) {
  .hero-cross {
    width: 56px;
    height: 56px;
    margin: -10px 72px -10px auto;
  }
}
@media (min-width: 1001px) {
  .hero-cross {
    width: 88px;
    height: 88px;
    margin: -22px 84px -22px auto;
  }
  .hero-cross::before, .hero-cross::after {
    height: 4px;
  }
}
@media (min-width: 1201px) {
  .hero-cross {
    width: 113px;
    height: 113px;
    margin: -30px 100px -30px auto;
  }
  .hero-cross::before, .hero-cross::after {
    height: 5px;
  }
}
.hero-catch {
  margin-top: 20px;
  padding: 0;
  text-align: right;
  font-style: normal;
}

@media (min-width: 601px) {
  .hero-catch {
    margin-top: 24px;
  }
}
@media (min-width: 1001px) {
  .hero-catch {
    margin-top: 32px;
  }
}
@media (min-width: 1201px) {
  .hero-catch {
    margin-top: 40px;
  }
}
.hero-catch-text {
  font-family: var(--font-noto);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}

@media (min-width: 601px) {
  .hero-catch-text {
    font-size: 17px;
  }
}
@media (min-width: 1001px) {
  .hero-catch-text {
    font-family: var(--font-noto);
    font-weight: 700;
    font-size: 20px;
  }
}
@media (min-width: 1201px) {
  .hero-catch-text {
    font-size: 24px;
  }
}
.section-heading-en {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: var(--color-nex-text);
  font-style: italic;
}

@media (min-width: 1001px) {
  .section-heading-en {
    font-size: 80px;
  }
}
.section-heading-line {
  width: 40px;
  height: 1px;
  background-color: var(--color-primary);
  margin-top: -25px;
}

.section-about {
  padding: 0 0 80px;
}

@media (min-width: 1001px) {
  .section-about {
    padding: 0 0 120px;
  }
}
.section-about-inner {
  padding: 0 15px 0 55px;
}

@media (min-width: 1001px) {
  .section-about-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px 0 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
  }
}
.section-about-head {
  flex-shrink: 0;
}
.section-about-head .section-heading-line {
  position: relative;
  left: -55px;
}

@media (min-width: 1001px) {
  .section-about-head .section-heading-line {
    width: 120px;
    left: -150px;
    margin-top: -50px;
  }
}
.section-about-text {
  margin-top: 50px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-nex-text);
}

@media (min-width: 1001px) {
  .section-about-text {
    max-width: 700px;
    flex: 1;
    margin: 50px 0 0 auto;
  }
}
.section-business {
  position: relative;
  padding: 0 0 80px;
}

@media (min-width: 1001px) {
  .section-business {
    padding: 0 0 120px;
  }
}
.section-business-inner {
  position: relative;
}

@media (min-width: 1001px) {
  .section-business-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
  }
}
.section-business-visual {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 50px;
}

.section-business-accent {
  position: absolute;
  background-color: var(--color-primary);
  z-index: 0;
}

.section-business-img {
  position: relative;
  z-index: 1;
  width: 65%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-business--01 .section-business-accent {
  left: -2px;
  bottom: 0;
  width: 270px;
  height: 220px;
}

.section-business--01 .section-business-img {
  margin-left: 50%;
  transform: translate3d(-50%, 0, 0);
}

.section-business--02 .section-business-accent {
  right: 0;
  bottom: 0;
  width: 270px;
  height: 220px;
}

.section-business--02 .section-business-img {
  margin-left: 50%;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 1001px) {
  .section-business-visual {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .section-business-img {
    width: 461px;
    height: 483px;
  }
  .section-business--01 .section-business-visual {
    padding-left: 150px;
  }
  .section-business--01 .section-business-accent {
    left: 0;
    top: 138px;
    bottom: auto;
    width: 514px;
    height: 425px;
  }
  .section-business--01 .section-business-img {
    margin-left: 0;
    transform: translate3d(0, 0, 0);
  }
  .section-business--02 .section-business-inner {
    flex-direction: row-reverse;
  }
  .section-business--02 .section-business-visual {
    padding-right: 150px;
  }
  .section-business--02 .section-business-accent {
    right: 0;
    top: 138px;
    bottom: auto;
    width: 512px;
    height: 425px;
  }
  .section-business--02 .section-business-img {
    margin-left: 0;
    margin-right: 0;
    transform: translate3d(0, 0, 0);
  }
}
.section-business-body {
  padding: 0 var(--content-padding-x);
}

@media (min-width: 1001px) {
  .section-business-body {
    max-width: 700px;
    padding: 0 50px;
    margin: 0 auto;
    flex: 1;
  }
  .section-business--02 .section-business-body {
    padding: 0 50px;
    margin: 0 auto;
  }
}
.section-business-num {
  display: block;
  font-family: var(--font-opensans);
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  color: var(--color-primary);
  text-align: right;
  font-style: italic;
}

.section-business--01 .section-business-num {
  text-align: right;
}

@media (min-width: 1001px) {
  .section-business-num {
    font-size: 120px;
  }
  .section-business--01 .section-business-num {
    text-align: right;
  }
}
.section-business-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

@media (max-width: 1000px) {
  .section-business--02 .section-business-head {
    flex-direction: row-reverse;
  }
}
.section-business-head .section-business-title {
  margin-top: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.section-business-head .section-business-num {
  flex-shrink: 0;
}

.section-business-title {
  margin-top: 12px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-nex-text);
}

@media (max-width: 1000px) {
  .section-business-title {
    font-size: 22px;
  }
}
.section-business--02 .section-business-title {
  text-align: right;
}

@media (min-width: 1001px) {
  .section-business-title {
    font-size: 28px;
  }
  .section-business--02 .section-business-title {
    text-align: left;
  }
}
.section-business-desc {
  margin-top: 30px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-nex-text);
}

.section-business-products {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--color-nex-section);
}

@media (min-width: 1001px) {
  .section-business-products {
    padding: 24px 32px;
  }
}
.section-business-products-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-nex-text);
}
.section-business-products-head .material-symbols-outlined {
  font-size: 24px;
  color: var(--color-primary);
}

.section-business-products-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 12px;
}

@media (min-width: 1001px) {
  .section-business-products-cols {
    flex-direction: row;
    gap: 24px;
    padding: 0;
    align-items: flex-start;
  }
}
.section-business-products-list {
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-nex-text);
  display: inline-block;
}
.section-business-products-list li {
  padding-left: 16px;
  position: relative;
}
.section-business-products-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.section-business-products-note {
  margin-top: 12px;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-nex-text);
  text-align: center;
}

.section-business-cta {
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 1001px) {
  .section-business-cta .btn-primary,
  .section-news-cta .btn-primary {
    display: inline-flex;
    width: auto;
    max-width: none;
  }
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 60px;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn-primary .material-symbols-outlined {
  font-size: 24px;
  transition: color 200ms ease;
}
.btn-primary:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:hover .material-symbols-outlined {
  color: var(--color-primary);
}

@media (min-width: 1001px) {
  .btn-primary {
    padding: 24px 80px;
  }
}
.section-news {
  background-color: var(--color-nex-section);
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .section-news {
    padding: 120px 0;
  }
}
.section-news-inner {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px 0 55px;
}

.section-news-head {
  flex-shrink: 0;
}
.section-news-head h2 {
  padding: 0 0 0 35px;
}
.section-news-head .section-heading-line {
  position: relative;
  left: -55px;
}

@media (max-width: 1000px) {
  .section-news-inner {
    padding: 0 var(--content-padding-x);
  }
  .section-news-head .section-heading-line {
    left: -15px;
  }
}
@media (min-width: 1001px) {
  .section-news-head .section-heading-line {
    width: 120px;
    left: -150px;
    margin-top: -50px;
  }
  .section-news-head h2 {
    padding: 0;
  }
}
@media (min-width: 1001px) {
  .section-news-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px 0 150px;
  }
}
.news-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 1001px) {
  .news-list {
    margin-top: 80px;
    gap: 20px;
  }
}
.news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #fff;
  color: inherit;
  transition: background-color 0.2s ease;
}

@media (max-width: 1000px) {
  .news-item {
    align-items: center;
    gap: 12px;
  }
}
.news-item:hover {
  background-color: #f8fff1;
}

@media (min-width: 1001px) {
  .news-item {
    flex-direction: row;
    align-items: center;
    height: 86px;
    padding: 0 40px;
    gap: 65px;
  }
}
.news-item-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 1001px) {
  .news-item-main {
    flex-direction: row;
    align-items: center;
    gap: 65px;
  }
}
.news-date {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-primary);
  flex-shrink: 0;
  font-style: italic;
}

.news-title {
  flex: 1;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-nex-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 1000px) {
  .news-title {
    white-space: normal;
  }
}
@media (min-width: 1001px) {
  .news-title {
    white-space: normal;
  }
}
.news-arrow {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--color-primary);
}

.section-news-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1000px) {
  .section-news-cta .btn-primary {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 18px;
    padding: 16px 24px;
    text-align: center;
  }
}
.news-archive-section .news-list--archive {
  margin-top: 0;
}

.news-archive-section .section-news-inner {
  padding: 0 var(--content-padding-x);
}

@media (min-width: 1001px) {
  .news-archive-section .section-news-inner {
    max-width: var(--content-shell-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding-x);
  }
}
.news-detail-main {
  background: #f5f5f5;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .news-detail-main {
    padding: 120px 0;
  }
}
.news-detail-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.news-detail-article {
  color: var(--color-nex-text);
}

.news-detail-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid #d7d7d7;
}

.news-detail-title {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #4a4a4a;
}

.news-detail-date {
  font-family: var(--font-opensans);
  font-size: 14px;
  font-weight: 700;
  color: #4a4a4a;
  white-space: nowrap;
}

.news-detail-content {
  margin-top: 48px;
  font-family: var(--font-noto);
  font-size: 16px;
  line-height: 1.9;
  color: #4a4a4a;
}

.news-detail-content > *:first-child {
  margin-top: 0;
}

.news-detail-content h2 {
  margin: 48px 0 14px;
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-primary);
}

.news-detail-content h3 {
  margin: 48px 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--color-primary);
  font-size: 32px;
  line-height: 1.4;
  color: #4a4a4a;
}

.news-detail-content p {
  margin: 0 0 24px;
}

.news-detail-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-detail-content blockquote {
  margin: 30px 0;
  padding: 20px 50px;
  background: #fff;
  position: relative;
}

.news-detail-content blockquote::before,
.news-detail-content blockquote::after {
  position: absolute;
  color: var(--color-primary);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
}

.news-detail-content blockquote::before {
  content: "“";
  top: 12px;
  left: 10px;
}

.news-detail-content blockquote::after {
  content: "”";
  right: 14px;
  bottom: -2px;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  margin: 12px 0 28px;
}

.news-detail-content ul {
  margin: 0 0 26px 0;
  padding-left: 0;
  list-style: none;
}

.news-detail-content ul > li {
  position: relative;
  padding-left: 1.1em;
}

.news-detail-content ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: inherit;
}

.news-detail-content ol {
  margin: 0 0 26px 0;
  padding-left: 20px;
  list-style: decimal;
}

.news-detail-content ol > li {
  padding-left: 0.25em;
}

.news-detail-actions {
  margin-top: 48px;
}

.news-detail-back {
  width: 320px;
  max-width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-noto);
  font-weight: 700;
  border: 2px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.news-detail-back:hover,
.news-detail-back:focus-visible {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 1000px) {
  .news-detail-back {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .news-detail-title {
    font-size: 24px;
  }
  .news-detail-content h2 {
    font-size: 22px;
  }
  .news-detail-content h3 {
    font-size: 20px;
  }
}
.section-contact {
  background-color: var(--color-nex-text);
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .section-contact {
    padding: 120px 0;
  }
}
.section-contact-inner {
  padding: 0 var(--content-padding-x);
}

@media (min-width: 1001px) {
  .section-contact-inner {
    max-width: var(--content-shell-max-width);
    margin: 0 auto;
  }
}
.section-heading-en--contact {
  color: #fff;
}

.section-contact-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1001px) {
  .section-contact-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
}
.section-contact-text {
  margin-top: 20px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 574px;
}

.section-contact-right {
  margin-top: 24px;
  flex-shrink: 0;
}

@media (min-width: 1001px) {
  .section-contact-right {
    margin-top: 45px;
  }
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21;
  width: 100%;
  border: 2px solid var(--color-primary);
  transition: background-color 200ms ease, color 200ms ease;
}
.btn-contact .material-symbols-outlined {
  font-size: 24px;
  transition: color 200ms ease;
}
.btn-contact:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

@media (min-width: 1001px) {
  .btn-contact {
    width: 400px;
  }
}
.site-footer {
  background-color: #fff;
  color: var(--color-nex-text);
}

.site-footer-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 80px var(--content-padding-x) 40px;
  box-sizing: border-box;
}

@media (min-width: 1001px) {
  .site-footer-inner {
    padding: 40px var(--content-padding-x);
  }
}
.site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-bottom: 24px;
}

@media (min-width: 1001px) {
  .site-footer-top {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding-bottom: 32px;
  }
}
.site-footer-logo {
  flex-shrink: 0;
}
.site-footer-logo img {
  width: 160px;
  height: auto;
}

@media (min-width: 1001px) {
  .site-footer-logo img {
    width: 198px;
  }
}
.site-footer-nav {
  width: 100%;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.448;
}

.site-footer-nav-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

@media (min-width: 1001px) {
  .site-footer-nav-rows {
    gap: 14px;
    align-items: flex-end;
  }
}
.site-footer-nav-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1001px) {
  .site-footer-nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 24px;
    width: auto;
  }
}
.site-footer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--color-nex-border);
  color: inherit;
  text-decoration: none;
}

.site-footer-nav-row:last-child .site-footer-nav-link:last-child {
  border-bottom: 1px solid var(--color-nex-border);
}

.site-footer-nav-link:hover {
  color: var(--color-primary);
}

.site-footer-nav-text {
  flex: 1;
  min-width: 0;
}

.site-footer-nav-arrow {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--color-primary);
  font-variation-settings: "opsz" 24;
}

@media (min-width: 1001px) {
  .site-footer-nav {
    flex: 1;
  }
  .site-footer-nav-link {
    display: inline-flex;
    justify-content: flex-start;
    padding: 0;
    border-top: 0;
    gap: 0;
  }
  .site-footer-nav-row:last-child .site-footer-nav-link:last-child {
    border-bottom: none;
  }
  .site-footer-nav-arrow {
    display: none;
  }
}
.site-footer-copy {
  margin-top: 16px;
  font-family: var(--font-opensans);
  font-size: 12px;
  line-height: 1.362;
  color: var(--color-nex-text);
  text-align: center;
}

@media (min-width: 1001px) {
  .site-footer-copy {
    margin-top: 24px;
  }
}
.page-header {
  padding: 30px 0;
}

.page-header-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-header-right {
  display: flex;
  justify-content: flex-end;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-noto);
  font-size: 12px;
  margin: 0;
}
.breadcrumbs a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .material-symbols-outlined {
  font-size: 16px;
  color: #999;
}
.breadcrumbs .current {
  color: var(--color-nex-text);
  font-weight: 400;
}

@media (min-width: 769px) {
  .breadcrumbs {
    font-size: 14px;
  }
}
.page-title {
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-nex-text);
  letter-spacing: 0.05em;
  text-align: left;
  font-style: italic;
}
.page-title .color-primary {
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .page-title {
    font-size: 64px;
  }
}
.page-subtitle {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--color-nex-text);
}

.retail-hero {
  background-color: #fafafa;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .retail-hero {
    padding: 120px 0;
  }
}
.retail-hero-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 769px) {
  .retail-hero-inner {
    grid-template-columns: 1fr 520px;
    gap: 60px;
  }
}
@media (min-width: 1001px) {
  .retail-hero-inner {
    grid-template-columns: 1fr 600px;
  }
}
.retail-hero-kicker {
  font-family: var(--font-opensans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-style: italic;
  margin-bottom: 10px;
}

.retail-hero-title {
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-nex-text);
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .retail-hero-title {
    font-size: 24px;
  }
}
.retail-hero-desc {
  margin-top: 16px;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-nex-text);
  max-width: 520px;
}

@media (min-width: 769px) {
  .retail-hero-desc {
    font-size: 14px;
  }
}
.retail-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.retail-placeholder {
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .retail-placeholder {
    padding: 120px 0;
  }
}
.retail-placeholder-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.retail-placeholder-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 260px;
  background: #d9d9d9;
}

@media (min-width: 1001px) {
  .retail-placeholder-inner::before {
    height: 340px;
  }
}
.retail-brand {
  padding: 80px 0;
  background: #fff;
}

@media (min-width: 1001px) {
  .retail-brand {
    padding: 120px 0;
  }
}
.retail-brand-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.retail-brand-title {
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-nex-text);
  font-style: italic;
}

.retail-brand-sub {
  margin-top: 8px;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-nex-text);
}

.retail-brand-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 769px) {
  .retail-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .retail-brand-grid {
    gap: 32px;
  }
}
.brand-card {
  background: transparent;
}

.brand-card-name {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--color-nex-text);
}

.brand-card-dot {
  width: 3px;
  height: 14px;
  background: var(--color-primary);
  display: inline-block;
}

.brand-card-frame {
  background: #fff;
  border: 1px solid #f0f0f0;
}

.brand-card-logo {
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: #fff;
}

.brand-card-logo img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.brand-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 16px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--color-primary);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.brand-card-btn:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.brand-card-btn .material-symbols-outlined {
  font-size: 18px;
  transition: color 200ms ease;
}

.brand-card-btn:hover .material-symbols-outlined {
  color: var(--color-primary);
}

.brand-card-btn--disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.retail-brand-empty-note {
  grid-column: 1/-1;
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none;
  }
}

.ict-hero {
  background-color: #fafafa;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .ict-hero {
    padding: 120px 0;
  }
}
.ict-hero-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 769px) {
  .ict-hero-inner {
    grid-template-columns: 1fr 520px;
    gap: 60px;
  }
}
@media (min-width: 1001px) {
  .ict-hero-inner {
    grid-template-columns: 1fr 600px;
  }
}
.ict-hero-kicker {
  font-family: var(--font-opensans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.ict-hero-title {
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-nex-text);
  position: relative;
  padding-bottom: 10px;
}

.ict-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 2px;
  background: #2f6ccf;
}

@media (min-width: 769px) {
  .ict-hero-title {
    font-size: 24px;
  }
}
.ict-hero-desc {
  margin-top: 16px;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-nex-text);
  max-width: 520px;
}

@media (min-width: 769px) {
  .ict-hero-desc {
    font-size: 14px;
  }
}
.ict-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.ict-products {
  background: #fff;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .ict-products {
    padding: 120px 0;
  }
}
.ict-products-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.ict-products-title {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--color-nex-text);
}

.ict-products-sub {
  margin-top: 10px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-nex-text);
}

.ict-products-tabs {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.ict-tab {
  flex: 0 0 auto;
  padding: 14px 24px;
  border: 1px solid var(--color-nex-border);
  background: #fff;
  color: var(--color-nex-text);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.ict-tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.ict-products-filters {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--color-nex-border);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 769px) {
  .ict-products-filters {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ict-filter--wide {
    grid-column: 1/-1;
  }
  .ict-filter-actions {
    grid-column: 1/-1;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
  }
}
.ict-filter-label {
  display: block;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--color-nex-text);
}

.ict-filter-control {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-nex-border);
  font-family: var(--font-noto);
  font-size: 14px;
}

.ict-clear {
  background: transparent;
  border: 0;
  color: var(--color-nex-text);
  font-family: var(--font-noto);
  font-size: 14px;
  cursor: pointer;
}

.ict-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}

.ict-search:hover {
  background: #fff;
  color: var(--color-primary);
}

.ict-products-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 769px) {
  .ict-products-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.ict-chip {
  display: block;
  padding: 18px 12px;
  border: 1px solid var(--color-nex-border);
  background: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-nex-text);
  text-align: center;
}

.ict-related {
  background: #fafafa;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .ict-related {
    padding: 120px 0;
  }
}
.ict-related-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 769px) {
  .ict-related-inner {
    grid-template-columns: 1fr 520px;
    gap: 60px;
  }
}
@media (min-width: 1001px) {
  .ict-related-inner {
    grid-template-columns: 1fr 600px;
  }
}
.ict-related-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-nex-text);
}

.ict-related-desc {
  margin-top: 16px;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}

.ict-related-cta {
  margin-top: 24px;
  text-align: left;
}

.ict-related-image {
  width: 100%;
  height: auto;
  display: block;
}

.ict-oem {
  background: #fff;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .ict-oem {
    padding: 120px 0;
  }
}
.ict-oem-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 769px) {
  .ict-oem-inner {
    grid-template-columns: 1fr 520px;
    gap: 60px;
  }
}
@media (min-width: 1001px) {
  .ict-oem-inner {
    grid-template-columns: 1fr 600px;
  }
}
.ict-oem-title {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-nex-text);
}

.ict-oem-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 21px;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .ict-oem-title {
    font-size: 20px;
  }
}
.ict-oem-desc {
  margin-top: 16px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-nex-text);
  max-width: 560px;
}

.ict-oem-btn {
  margin-top: 22px;
}

@media (max-width: 1000px) {
  .ict-oem-btn.btn-primary {
    white-space: nowrap;
    padding: 16px 20px;
  }
}
.ict-oem-image {
  width: 100%;
  height: auto;
  display: block;
}

.ict-oem-gray {
  padding: 0 0 80px;
}

@media (min-width: 1001px) {
  .ict-oem-gray {
    padding: 0 0 120px;
  }
}
.ict-oem-gray-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.ict-oem-gray-box {
  width: 100%;
  background: #d9d9d9;
  height: 260px;
}

@media (min-width: 1001px) {
  .ict-oem-gray-box {
    height: 340px;
  }
}
.ict-products-page {
  background: #fafafa;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .ict-products-page {
    padding: 120px 0;
  }
}
.ict-products-page-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.ict-products-head {
  margin: 0 auto;
}

.ict-products-title {
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-nex-text);
  font-style: italic;
}

.ict-products-sub {
  margin-top: 10px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-nex-text);
}

.ict-filter-card {
  margin: 46px auto 0;
  background: #fff;
  border: none;
  padding: 20px 16px 20px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .ict-filter-card {
    padding: 28px 24px 24px;
  }
}
@media (max-width: 1000px) {
  .ict-products-page .ict-filter-card {
    padding: 20px 16px;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  .ict-products-page .ict-filter-card {
    padding: 30px 20px;
  }
}
.ict-filter-grid {
  display: block;
}

.ict-filter-top {
  display: block;
}

.ict-filter-field + .ict-filter-field {
  margin-top: 20px;
}

.ict-filter-top .ict-filter-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.ict-filter-top .ict-filter-label {
  flex-shrink: 0;
  margin-bottom: 0;
}

.ict-filter-top .ict-filter-controls {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.ict-filter-label {
  display: block;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-nex-text);
}

.ict-filter-controls--two {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ict-filter-field--keyword {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
}

.ict-filter-field--keyword .ict-filter-label {
  flex-shrink: 0;
  margin-bottom: 0;
}

.ict-filter-field--keyword .ict-filter-controls {
  flex: 1;
  min-width: 0;
}

.ict-filter-select,
.ict-filter-input {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  padding: 0 12px;
  box-sizing: border-box;
  background: #fff;
  font-family: var(--font-noto);
  font-size: 14px;
  color: var(--color-nex-text);
}

.ict-filter-input::-moz-placeholder {
  color: #999;
}

.ict-filter-input::placeholder {
  color: #999;
}

.ict-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  color: var(--color-nex-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.5 1.5l4.5 4.5 4.5-4.5' fill='none' stroke='%238ac046' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

.ict-filter-select::-ms-expand {
  display: none;
}

@media (min-width: 769px) {
  .ict-filter-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
  .ict-filter-top .ict-filter-field {
    flex-direction: row;
    align-items: center;
    gap: 12px 16px;
  }
  .ict-filter-controls--two {
    flex-direction: row;
    gap: 16px;
  }
  .ict-filter-field--keyword {
    flex-direction: row;
    align-items: center;
    gap: 12px 16px;
    margin-top: 18px;
  }
  .ict-filter-field + .ict-filter-field {
    margin-top: 0;
  }
}
.ict-filter-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ict-filter-search {
  width: 100%;
  max-width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  border: 1px solid transparent;
  color: #fff;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 769px) {
  .ict-filter-search {
    width: 260px;
    max-width: none;
    height: 56px;
    font-size: 14px;
    border-radius: 0;
  }
}
.ict-filter-search:hover,
.ict-filter-search:focus-visible {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.ict-filter-clear {
  position: relative;
  padding: 8px 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-nex-text);
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ict-filter-clear::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 150ms ease;
}

.ict-filter-clear:hover::after,
.ict-filter-clear:focus-visible::after {
  opacity: 1;
}

.ict-filter-clear:focus-visible {
  outline: none;
}

.ict-searchhead {
  margin: 54px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-nex-text);
}

.ict-searchhead-line {
  width: 4px;
  height: 20px;
  background: var(--color-primary);
  display: inline-block;
}

.ict-product-tabs {
  margin: 18px auto 0;
  display: flex;
  gap: 20px;
}

.ict-product-panel.is-hidden {
  display: none;
}

.ict-product-tab {
  flex: 0 0 auto;
  width: calc(50% - 10px);
  max-width: 200px;
  height: 44px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.ict-product-tab.is-active {
  background: var(--color-primary);
  color: #fff;
}

.ict-product-grid {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
}

@media (min-width: 769px) {
  .ict-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 26px;
  }
}
.ict-product-card-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-nex-text);
}

.ict-product-card-title-link {
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ict-product-card-title-link:hover,
.ict-product-card-title-link:focus-visible {
  color: var(--color-primary);
}

.ict-product-card-rule {
  height: 1px;
  background: #e6e6e6;
  margin: 14px 0;
}

.ict-product-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ict-product-card-list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-nex-text);
}

.ict-product-card-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ict-product-card-link:hover,
.ict-product-card-link:focus-visible {
  color: var(--color-primary);
}

.ict-product-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

.products-search-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.products-search-inner,
.products-table-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.products-condition-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-nex-text);
}

.products-search-head {
  margin: 0 0 18px;
}

.products-condition-line {
  width: 4px;
  height: 20px;
  background: var(--color-primary);
  display: inline-block;
}

.products-condition-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  color: inherit;
}

.products-table-section {
  padding: 80px 0;
}

.products-table-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

@media (min-width: 769px) {
  .products-table-section {
    padding: 120px 0;
  }
  .products-table-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.products-table-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-nex-text);
}

.products-table-title--search {
  line-height: 1.65;
  max-width: 100%;
}

.products-table-count {
  font-family: var(--font-noto);
  font-size: 14px;
  color: #707070;
}

.products-table-wrap {
  overflow-x: auto;
  border: 1px solid #d8d8d8;
  border-bottom: 0;
}

.products-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}

.products-table th {
  height: 58px;
  background: var(--color-primary);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
}

.products-table th:last-child {
  border-right: 0;
}

.products-table td {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 14px 12px;
  vertical-align: middle;
  font-family: var(--font-noto);
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
  .products-table td {
    font-size: 13px;
  }
}
.products-table td:last-child {
  border-right: 0;
}

.products-table tbody tr:hover td {
  background: #edf5e3;
}

.products-col-thumb {
  width: 90px;
}

.products-col-name {
  width: 180px;
}

.products-col-info {
  width: 340px;
}

.products-col-desc {
  width: 360px;
}

.products-cell-thumb img {
  width: 48px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #dfdfdf;
  display: block;
  margin: 0 auto;
}

.products-cell-info p {
  margin: 0;
}

.products-cell-info strong {
  font-weight: 700;
  color: #2f2f2f;
}

.products-row-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.products-row-link--static {
  cursor: default;
}

.products-pagination {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.products-page-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.products-page-arrow .material-symbols-outlined {
  font-size: 22px;
}

.products-page-arrow:hover,
.products-page-arrow:focus-visible {
  opacity: 0.7;
}

.products-page-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.products-page-num {
  width: 42px;
  height: 42px;
  border: 1px solid #8ec95a;
  color: var(--color-primary);
  background: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.products-page-num:not(.is-active):hover,
.products-page-num:not(.is-active):focus-visible {
  background: #f1f8e8;
  color: #5ea62f;
}

.products-page-num.is-active {
  background: var(--color-primary);
  color: #fff;
  pointer-events: none;
}

.products-page-ellipsis {
  color: #7d7d7d;
  font-family: var(--font-noto);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 2px;
}

.products-filter-card {
  background-color: inherit;
  border: none;
  padding: 0;
}

.product-detail-main {
  background: #f5f5f5;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .product-detail-main {
    padding: 120px 0;
  }
}
.product-detail-inner,
.product-detail-gallery-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1001px) {
  .product-detail-inner {
    grid-template-columns: 380px 1fr;
    gap: 30px;
    align-items: start;
  }
}
.product-detail-image-wrap {
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-detail-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.product-detail-spec {
  margin: 0;
}

.product-detail-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  margin-bottom: 6px;
}

.product-detail-row dt,
.product-detail-row dd {
  padding: 8px;
  margin: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-noto);
  font-size: 14px;
}

.product-detail-row dt {
  justify-content: center;
  border: 1px solid #a7cd85;
  font-weight: 700;
}
@media (max-width: 768px) {
  .product-detail-row dt {
    max-width: 120px;
  }
}

.product-detail-row dd {
  line-height: 1.7;
}

.product-detail-actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 769px) {
  .product-detail-actions {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.product-btn {
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.21;
  border: 2px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.product-btn:hover,
.product-btn:focus-visible {
  background-color: transparent;
}

.product-btn .material-symbols-outlined {
  font-size: 24px;
  transition: color 200ms ease;
}

.product-btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.product-btn--primary:hover,
.product-btn--primary:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.product-btn--dark {
  background: #4b4b4b;
  color: #fff;
  border-color: #4b4b4b;
}

.product-btn--dark:hover,
.product-btn--dark:focus-visible {
  color: #4b4b4b;
  border-color: #4b4b4b;
}

.product-detail-gallery {
  margin: 80px 0;
}

@media (min-width: 1001px) {
  .product-detail-gallery {
    margin: 120px 0;
  }
}
.product-detail-gallery-title {
  margin: 0 0 50px;
  padding-top: 4px;
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  color: #3f3f46;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 14px;
}

@media (max-width: 768px) {
  .product-detail-gallery-title {
    font-size: 20px;
  }
}
.product-detail-main-visual {
  padding-top: 0;
  height: 300px;
  min-height: 300px;
  background: #fff;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 769px) {
  .product-detail-main-visual {
    height: 600px;
  }
}
.product-detail-main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.product-detail-thumbs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 769px) {
  .product-detail-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-detail-thumb {
  height: 120px;
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-detail-thumb.is-active {
  border-color: var(--color-primary);
}

.product-detail-thumb:hover,
.product-detail-thumb:focus-visible {
  border-color: #9ecf72;
}

.product-detail-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.product-detail-note {
  margin-top: 12px;
  font-family: var(--font-noto);
  font-size: 13px;
  color: #4b4b4b;
}

.company-page-ceo {
  position: relative;
  overflow: hidden;
  padding: 80px var(--content-padding-x) 110px;
  background-image: url("../images/company/img_bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.company-page-ceo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (min-width: 769px) {
  .company-page-ceo {
    padding: 120px 50px 160px;
  }
}
@media (min-width: 1001px) {
  .company-page-ceo {
    padding: 120px 50px 220px;
  }
}
.company-page-ceo-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.company-page-ceo-quote {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: normal;
  color: #fff;
}

.company-page-ceo-quote::before,
.company-page-ceo-quote::after {
  display: inline;
  font-family: var(--font-noto);
  font-weight: 700;
  line-height: 1;
  vertical-align: -0.06em;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

.company-page-ceo-quote::before {
  content: "“";
  font-size: 1.22em;
}

.company-page-ceo-quote::after {
  content: "”";
  font-size: 1.22em;
}

@media (min-width: 769px) {
  .company-page-ceo-quote {
    font-size: 42px;
  }
}
.company-page-ceo-message {
  margin-top: 40px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.95;
}
.company-page-ceo-message p + p {
  margin-top: 24px;
}

@media (min-width: 769px) {
  .company-page-ceo-message {
    font-size: 16px;
  }
}
.company-page-ceo-signature {
  margin-top: 40px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .company-page-ceo-signature strong {
    font-size: 18px;
  }
}
.company-page-ceo-bg-title {
  position: absolute;
  left: 48%;
  bottom: -1.7vw;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 14vw;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  white-space: nowrap;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 769px) {
  .company-page-ceo-bg-title {
    font-size: 14vw;
    bottom: -15px;
  }
}
@media (min-width: 1001px) {
  .company-page-ceo-bg-title {
    font-size: 14vw;
    bottom: -24px;
  }
}
@media (min-width: 1400px) {
  .company-page-ceo-bg-title {
    font-size: 200px;
    bottom: -24px;
  }
}
.company-page-info {
  padding: 80px var(--content-padding-x);
}

@media (min-width: 1001px) {
  .company-page-info {
    padding: 120px var(--content-padding-x) 140px;
  }
}
.company-page-info-inner {
  max-width: var(--content-inner-width);
  margin: 0 auto;
}

@media (min-width: 1001px) {
  .company-page-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.company-page-info-head {
  margin-bottom: 54px;
}

@media (min-width: 1001px) {
  .company-page-info-head {
    flex: 0 0 388px;
    margin-bottom: 0;
  }
}
.company-page-info-title {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--color-nex-text);
}

.company-page-info-subtitle {
  margin-top: 8px;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-nex-text);
}

.company-page-info-list {
  flex: 1;
  border-top: 1px solid #CDCDCD;
}

.company-page-info-row {
  display: flex;
  padding: 20px 0 18px;
  border-bottom: 1px solid #CDCDCD;
}

@media (min-width: 769px) {
  .company-page-info-row {
    flex-direction: row;
    align-items: flex-start;
  }
}
.company-page-info-label {
  flex: 0 0 114px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .company-page-info-label {
    font-size: 16px;
  }
}
.company-page-info-value {
  flex: 1;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .company-page-info-value {
    font-size: 16px;
  }
}
.privacy-page-policy {
  padding: 40px 0 80px;
}

@media (min-width: 1001px) {
  .privacy-page-policy {
    padding: 60px 0 120px;
  }
}
.privacy-page-policy-inner {
  max-width: 945px;
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.privacy-page-lead {
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 2;
  color: var(--color-nex-text);
}

@media (min-width: 1001px) {
  .privacy-page-lead {
    font-size: 16px;
  }
}
.privacy-page-list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-page-item {
  padding: 0 0 40px;
}

.privacy-page-item + .privacy-page-item {
  margin-top: 20px;
}

.privacy-page-item-title {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid #cdcdcd;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

@media (min-width: 1001px) {
  .privacy-page-item-title {
    gap: 16px;
    padding: 0 0 18px;
  }
}
.privacy-page-item-num {
  font-family: var(--font-opensans);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--color-primary);
}

@media (min-width: 1001px) {
  .privacy-page-item-num {
    font-size: 32px;
  }
}
.privacy-page-item-text {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-nex-text);
}

@media (min-width: 1001px) {
  .privacy-page-item-text {
    font-size: 28px;
  }
}
.privacy-page-item-body {
  margin: 20px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 2;
  color: var(--color-nex-text);
}

@media (min-width: 1001px) {
  .privacy-page-item-body {
    margin-top: 24px;
    font-size: 16px;
  }
}
.privacy-page-contact {
  margin-top: 20px;
  padding: 20px;
  background: #fafafa;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-nex-text);
}
.privacy-page-contact p {
  margin: 0;
}
.privacy-page-contact p + p {
  margin-top: 4px;
}
.privacy-page-contact a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 1001px) {
  .privacy-page-contact {
    margin-top: 24px;
    padding: 20px 24px;
    font-size: 16px;
  }
}
.privacy-page-contact-name {
  font-weight: 700;
}

.contact-page-tel {
  padding: 0 var(--content-padding-x);
}

.contact-page-tel-inner {
  max-width: 947px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  background: #fafafa;
  text-align: center;
}

@media (min-width: 769px) {
  .contact-page-tel-inner {
    padding: 40px 32px 32px;
  }
}
.contact-page-tel-title {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-nex-text);
  position: relative;
  padding-bottom: 16px;
}
.contact-page-tel-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 1px;
  background-color: var(--color-primary);
}

@media (min-width: 769px) {
  .contact-page-tel-title {
    font-size: 28px;
  }
}
.contact-page-tel-num {
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-page-tel-icon {
  font-size: 32px;
  color: var(--color-primary);
}

.contact-page-tel-num-text {
  font-family: var(--font-opensans);
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .contact-page-tel-num-text {
    font-size: 40px;
  }
}
.contact-page-tel-hours {
  margin: 12px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .contact-page-tel-hours {
    font-size: 16px;
  }
}
.contact-page-main {
  padding: 0 0 80px;
}

@media (min-width: 1001px) {
  .contact-page-main {
    padding: 0 0 120px;
  }
}
.contact-page-main-inner {
  max-width: 945px;
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.contact-page-lead {
  margin: 80px 0 30px;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 2;
  color: var(--color-nex-text);
  text-align: center;
}

@media (min-width: 1001px) {
  .contact-page-lead {
    margin: 150px 0 50px;
    font-size: 16px;
    line-height: 1.6;
  }
}
.contact-page-form-area {
  margin-top: 0;
}

.contact-page-cf7-admin-note {
  padding: 16px;
  background: #fff8e6;
  border: 1px solid #e6d9a8;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-nex-text);
}
.contact-page-cf7-admin-note code {
  font-size: 12px;
  word-break: break-all;
}

.contact-page:not(.order-form-page) .contact-page-cf7 .contact-field-row:first-of-type {
  border-top: 1px solid #e5e5e5;
  padding-top: 32px;
}

.contact-page-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding-top: 0;
  border-top: none;
}
.contact-page-cf7.order-form-cf7 .wpcf7-form {
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}
.contact-page-cf7 .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 6px;
}
.contact-page-cf7 .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid var(--color-nex-border);
}
.contact-page-cf7 label {
  display: block;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-nex-text);
}
@media (min-width: 769px) {
  .contact-page-cf7 label {
    font-size: 16px;
  }
}
.contact-page-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact-page-cf7 .wpcf7-text,
.contact-page-cf7 .wpcf7-email,
.contact-page-cf7 .wpcf7-tel,
.contact-page-cf7 .wpcf7-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-nex-text);
  background: #fafafa;
  border: none;
  border-radius: 0;
}
.contact-page-cf7 .wpcf7-text::-moz-placeholder, .contact-page-cf7 .wpcf7-email::-moz-placeholder, .contact-page-cf7 .wpcf7-tel::-moz-placeholder, .contact-page-cf7 .wpcf7-textarea::-moz-placeholder {
  color: #c5c5c5;
  opacity: 1;
}
.contact-page-cf7 .wpcf7-text::placeholder,
.contact-page-cf7 .wpcf7-email::placeholder,
.contact-page-cf7 .wpcf7-tel::placeholder,
.contact-page-cf7 .wpcf7-textarea::placeholder {
  color: #c5c5c5;
  opacity: 1;
}
@media (min-width: 769px) {
  .contact-page-cf7 .wpcf7-text,
  .contact-page-cf7 .wpcf7-email,
  .contact-page-cf7 .wpcf7-tel,
  .contact-page-cf7 .wpcf7-textarea {
    font-size: 16px;
  }
}
.contact-page-cf7 .wpcf7-text::-moz-placeholder, .contact-page-cf7 .wpcf7-email::-moz-placeholder, .contact-page-cf7 .wpcf7-tel::-moz-placeholder, .contact-page-cf7 .wpcf7-textarea::-moz-placeholder {
  color: #c5c5c5;
}
.contact-page-cf7 .wpcf7-text::placeholder,
.contact-page-cf7 .wpcf7-email::placeholder,
.contact-page-cf7 .wpcf7-tel::placeholder,
.contact-page-cf7 .wpcf7-textarea::placeholder {
  color: #c5c5c5;
}
.contact-page-cf7 .wpcf7-textarea {
  min-height: 240px;
  resize: vertical;
}
.contact-page-cf7 .wpcf7-radio,
.contact-page-cf7 .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.contact-page-cf7 .wpcf7-list-item {
  margin: 0;
  padding: 0 0 16px 0;
  border-bottom: none;
  list-style: none;
}
.contact-page-cf7 .wpcf7-list-item:last-of-type {
  padding-bottom: 0;
}
.contact-page-cf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-nex-text);
  cursor: pointer;
}
.contact-page-cf7 .wpcf7-list-item input[type=radio],
.contact-page-cf7 .wpcf7-list-item input[type=checkbox] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 0;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  accent-color: var(--color-primary);
}
.contact-page-cf7 .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-nex-text);
}
.contact-page-cf7 .wpcf7-acceptance input[type=checkbox] {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  accent-color: var(--color-primary);
}
.contact-page-cf7 .wpcf7-acceptance a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-page-cf7 .wpcf7-acceptance a:hover,
.contact-page-cf7 .wpcf7-acceptance a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.contact-page-cf7 .contact-field-row {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}
.contact-page-cf7 .contact-field-row:first-of-type {
  padding-top: 0;
}
@media (min-width: 769px) {
  .contact-page-cf7 .contact-field-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: center;
  }
}
.contact-page-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
@media (min-width: 769px) {
  .contact-page-cf7 .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}
.contact-page-cf7 .contact-field-row--privacy {
  display: flex;
  justify-content: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .contact-page-cf7 .contact-field-row--privacy {
    display: flex;
  }
}
.contact-page-cf7 .contact-field-row--privacy .wpcf7-form-control-wrap {
  margin-top: 0;
}
.contact-page-cf7 .contact-field-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .contact-page-cf7 .contact-field-head {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .contact-page-cf7 .contact-field-row:has(.wpcf7-textarea) .contact-field-head,
  .contact-page-cf7 .contact-field-row:has(.wpcf7-radio) .contact-field-head,
  .contact-page-cf7 .contact-field-row:has(.wpcf7-checkbox) .contact-field-head {
    padding-top: 14px;
  }
}
.contact-page-cf7 .contact-field-label {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-nex-text);
}
.contact-page-cf7 .contact-field-req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--color-primary);
  border-radius: 2px;
}
@media (max-width: 1000px) {
  .contact-page-cf7 .contact-field-label {
    font-size: 16px;
  }
  .contact-page-cf7 .contact-field-req {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.contact-page-cf7 .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  margin: 20px auto 0;
  padding: 24px 64px;
  min-width: 300px;
  max-width: 100%;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9.4 18L8 16.6l4.6-4.6L8 7.4 9.4 6l6 6-6 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 24px;
  border: 2px solid var(--color-primary);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
@media (min-width: 769px) {
  .contact-page-cf7 .wpcf7-submit {
    font-size: 18px;
  }
}
.contact-page-cf7 .wpcf7-submit:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a9430'%3E%3Cpath d='M9.4 18L8 16.6l4.6-4.6L8 7.4 9.4 6l6 6-6 6z'/%3E%3C/svg%3E");
}
.contact-page-cf7 .wpcf7-spinner {
  display: none;
}

.contact-page-cf7--confirm .contact-field-req {
  display: none;
}
@media (min-width: 769px) {
  .contact-page-cf7--confirm .contact-field-row:has(.wpcf7-multiform) .contact-field-head {
    padding-top: 4px;
  }
}
.contact-page-cf7--confirm .contact-field-row > .wpcf7-form-control-wrap {
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-nex-text);
  word-break: break-word;
}
.contact-page-cf7--confirm .nexsite-cf7-confirm-multiline {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}
@media (min-width: 769px) {
  .contact-page-cf7--confirm .contact-field-row > .wpcf7-form-control-wrap {
    font-size: 16px;
  }
}
.contact-page-cf7--confirm .contact-page-confirm-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  width: 100%;
}
.contact-page-cf7--confirm .contact-page-confirm-buttons .wpcf7-submit {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.contact-page-cf7--confirm .contact-page-confirm-buttons .wpcf7-previous {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  max-width: 100%;
}
.contact-page-cf7--confirm input.wpcf7-previous,
.contact-page-cf7--confirm button.wpcf7-previous {
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  max-width: none;
  width: 100%;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-nex-text);
  background: none;
  background-image: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-page-cf7--confirm input.wpcf7-previous:hover, .contact-page-cf7--confirm input.wpcf7-previous:focus-visible,
.contact-page-cf7--confirm button.wpcf7-previous:hover,
.contact-page-cf7--confirm button.wpcf7-previous:focus-visible {
  color: var(--color-primary);
  background: none;
  background-image: none;
}
@media (min-width: 769px) {
  .contact-page-cf7--confirm input.wpcf7-previous,
  .contact-page-cf7--confirm button.wpcf7-previous {
    font-size: 18px;
  }
}
.contact-page-cf7--confirm .wpcf7-form > input.wpcf7-previous,
.contact-page-cf7--confirm .wpcf7-form > button.wpcf7-previous {
  margin-top: 40px;
  align-self: center;
}

.contact-page-cf7 .contact-field-row > .wpcf7-form-control-wrap {
  margin-top: 0;
}

.order-form-cf7 .order-form-check-group {
  width: 100%;
}
.order-form-cf7 .order-form-group-label {
  margin: 0 0 16px;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-nex-text);
}
.order-form-cf7 .order-form-group-label--mold {
  margin-top: 20px;
}
.order-form-cf7 .order-form-note {
  margin: 16px 0 8px;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-nex-text);
}
.order-form-cf7 .order-form-subtext {
  width: 100%;
  margin-top: 0;
}
.order-form-cf7 .wpcf7-checkbox.order-form-checklist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
}
.order-form-cf7 .wpcf7-checkbox.order-form-checklist .wpcf7-list-item {
  flex: 0 0 auto;
  padding: 0;
}
.order-form-cf7 .wpcf7-checkbox.order-form-checklist .wpcf7-list-item label {
  white-space: nowrap;
}
.order-form-cf7 .order-lot-wrap p {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}
.order-form-cf7 .order-lot-wrap .wpcf7-form-control-wrap {
  margin: 0;
}
.order-form-cf7 .order-lot-wrap .order-lot-input {
  width: 160px;
}
.order-form-cf7 .order-lot-unit {
  display: inline-block;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-nex-text);
  white-space: nowrap;
}

.contact-page-main--confirm {
  padding-top: 20px;
}

.contact-page-confirm-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-nex-border);
}

.contact-page-confirm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-nex-border);
}
@media (min-width: 769px) {
  .contact-page-confirm-row {
    grid-template-columns: minmax(160px, 280px) 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px 0;
  }
}
.contact-page-confirm-row dt {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-nex-text);
}
@media (min-width: 769px) {
  .contact-page-confirm-row dt {
    font-size: 16px;
  }
}
.contact-page-confirm-row dd {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-nex-text);
  white-space: pre-line;
}
@media (min-width: 769px) {
  .contact-page-confirm-row dd {
    font-size: 16px;
  }
}

.contact-page-confirm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.contact-page-confirm-submit-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-page-link-edit {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-nex-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 769px) {
  .contact-page-link-edit {
    font-size: 16px;
  }
}
.contact-page-link-edit:hover {
  opacity: 0.75;
}

.contact-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 48px;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
@media (min-width: 769px) {
  .contact-page-btn {
    font-size: 18px;
    padding: 24px 80px;
  }
}
.contact-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.contact-page-btn--primary {
  color: #fff;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.contact-page-btn--primary .material-symbols-outlined {
  font-size: 24px;
  transition: color 200ms ease;
}
.contact-page-btn--primary:hover:not(:disabled) {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-page-thanks {
  padding: 0 var(--content-padding-x) 80px;
}

@media (min-width: 1001px) {
  .contact-page-thanks {
    padding: 0 var(--content-padding-x) 120px;
  }
}
.contact-page-thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-thanks-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-page-thanks-image {
  width: min(200px, 80vw);
  height: auto;
  display: block;
}

.contact-page-thanks-en {
  margin: 0;
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--color-nex-text);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .contact-page-thanks-en {
    font-size: 56px;
  }
}
@media (min-width: 1001px) {
  .contact-page-thanks-en {
    font-size: 72px;
  }
}
.contact-page-thanks-en .color-primary {
  color: var(--color-primary);
}

.contact-page-thanks-lead {
  margin: 32px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .contact-page-thanks-lead {
    font-size: 16px;
    line-height: 1.8;
  }
}
.contact-page-thanks-btn-wrap {
  margin: 40px 0 0;
}

.contact-page-thanks .contact-page-btn--primary .contact-page-btn-icon {
  order: -1;
}

.error-404-main {
  padding: 0 var(--content-padding-x) 80px;
}
@media (min-width: 1001px) {
  .error-404-main {
    padding: 0 var(--content-padding-x) 120px;
  }
}

.error-404-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.error-404-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.error-404-image {
  width: min(320px, 80vw);
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .error-404-image {
    width: min(200px, 60vw);
  }
}
.error-404-en {
  margin: 0;
  font-family: var(--font-opensans);
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-nex-text);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .error-404-en {
    font-size: 56px;
  }
}
@media (min-width: 1001px) {
  .error-404-en {
    font-size: 72px;
  }
}
.error-404-en .color-primary {
  color: var(--color-primary);
}

.error-404-lead {
  margin: 24px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}
@media (min-width: 769px) {
  .error-404-lead {
    font-size: 16px;
  }
}

.error-404-btn-wrap {
  margin: 40px 0 0;
}

.oem-page .material-symbols-outlined,
.oem-page .oem-hero-feature-icon,
.oem-page .oem-solution-feature-icon {
  font-variation-settings: "FILL" 0, "wght" 280, "GRAD" 0, "opsz" 24;
}

.oem-subtitle {
  margin: 0;
  font-family: var(--font-opensans, sans-serif);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: #333;
  letter-spacing: normal;
}

@media (min-width: 769px) {
  .oem-subtitle {
    font-size: 14px;
  }
}
.oem-hero {
  position: relative;
  overflow: hidden;
}

.oem-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.oem-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.oem-hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.oem-hero-body {
  position: relative;
  z-index: 2;
}

.oem-hero-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 40px var(--content-padding-x) 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) {
  .oem-hero-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 80px var(--content-padding-x) 60px;
    gap: 40px;
  }
}
.oem-hero-content {
  color: #fff;
  min-width: 0;
}

@media (max-width: 768px) {
  .oem-hero-content {
    text-align: center;
  }
}
.oem-hero-label {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  background: #fff;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-hero-label {
    font-size: 18px;
    padding: 10px 20px;
  }
}
.oem-hero-title {
  margin: 16px 0 0;
  font-family: var(--font-noto);
  font-size: 26px;
  font-weight: 900;
  word-break: auto-phrase;
  line-height: 1.35;
  color: #fff;
  text-align: center;
}

@media (min-width: 769px) {
  .oem-hero-title {
    font-size: 38px;
    margin-top: 20px;
  }
}
@media (min-width: 1001px) {
  .oem-hero-title {
    font-size: 42px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .oem-hero-inner {
    flex-direction: column;
    align-items: center;
  }
  .oem-hero-title {
    white-space: nowrap;
    font-size: clamp(24px, 3.8vw, 38px);
  }
  .oem-hero-catch {
    justify-content: center;
  }
}
.oem-hero-catch {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0 4px;
  margin-top: 4px;
}
.oem-hero-catch svg {
  position: absolute;
  top: -6px;
  right: -12px;
  width: 44px;
  height: auto;
  pointer-events: none;
}

@media (min-width: 769px) {
  .oem-hero-catch svg {
    width: 68px;
    top: -10px;
    right: -24px;
  }
}
@media (min-width: 1001px) {
  .oem-hero-catch svg {
    width: 88px;
    top: -14px;
    right: -32px;
  }
}
.oem-hero-catch-img {
  width: 200px;
  max-width: 72vw;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .oem-hero-catch-img {
    width: 280px;
    max-width: none;
  }
}
@media (min-width: 1001px) {
  .oem-hero-catch-img {
    width: 360px;
  }
}
.oem-hero-catch-tail {
  font-family: var(--font-noto);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  padding-bottom: 0.12em;
  word-break: keep-all;
}

@media (min-width: 769px) {
  .oem-hero-catch-tail {
    font-size: 38px;
  }
}
@media (min-width: 1001px) {
  .oem-hero-catch-tail {
    font-size: 42px;
  }
}
.oem-hero-visual {
  flex-shrink: 0;
  text-align: center;
}

.oem-hero-product {
  width: 320px;
  max-width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .oem-hero-product {
    width: 430px;
  }
}
@media (min-width: 1001px) {
  .oem-hero-product {
    width: 500px;
  }
}
.oem-hero-features {
  padding: 0 0 80px;
}

.oem-hero-features-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
}

.oem-hero-feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .oem-hero-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1001px) {
  .oem-hero-feature-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}
.oem-hero-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 0;
  padding: 10px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-primary);
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-hero-feature-card {
    min-height: 180px;
    padding: 20px 10px;
  }
}
.oem-hero-feature-card--lot .oem-hero-feature-lot-top,
.oem-hero-feature-card--lot .oem-hero-feature-lot-bottom {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-nex-text);
}
.oem-hero-feature-card--lot .oem-hero-feature-lot-num {
  margin: 4px 0;
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-hero-feature-card--lot .oem-hero-feature-lot-num {
    font-size: 48px;
  }
}
.oem-hero-feature-icon {
  font-size: 32px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--color-primary);
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .oem-hero-feature-icon {
    font-size: 60px;
  }
}
.oem-hero-feature-text {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .oem-hero-feature-text {
    font-size: 13px;
  }
}
.oem-solution {
  position: relative;
  z-index: 1;
}

.oem-solution-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.oem-solution-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.oem-solution-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.oem-solution-body {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (min-width: 769px) {
  .oem-solution-body {
    padding-top: 72px;
    padding-bottom: 100px;
  }
}
.oem-solution-head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
}

.oem-solution-head-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 769px) {
  .oem-solution-head-top {
    gap: 20px;
  }
}
.oem-solution-logo {
  width: 140px;
  height: auto;
}

@media (min-width: 769px) {
  .oem-solution-logo {
    width: 220px;
  }
}
.oem-solution-sub {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.06em;
}

@media (min-width: 769px) {
  .oem-solution-sub {
    font-size: 18px;
  }
}
.oem-solution-title {
  margin: 12px 0 0;
  font-family: var(--font-noto);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.04em;
}

@media (min-width: 769px) {
  .oem-solution-title {
    font-size: 60px;
    margin-top: 16px;
    line-height: 1.25;
  }
}
.oem-solution-person {
  position: absolute;
  top: 12px;
  left: auto;
  right: max(0px, 50% - var(--content-shell-max-width) / 2);
  width: 200px;
  max-width: min(200px, 100vw - 2 * var(--content-padding-x));
  z-index: 1; /* Put behind the features grid */
  pointer-events: none;
  display: none;
}

@media (min-width: 769px) {
  .oem-solution-person {
    display: block;
  }
}
.oem-solution-person-img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

.oem-solution-features {
  position: relative;
  z-index: 2;
  margin-top: 36px;
}

@media (min-width: 769px) {
  .oem-solution-features {
    margin-top: 48px;
  }
}
.oem-solution-features-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 769px) {
  .oem-solution-features-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.oem-solution-feature {
  background: #fff;
  padding: 20px;
  text-align: left;
}

@media (min-width: 769px) {
  .oem-solution-feature {
    padding: 30px;
  }
}
.oem-solution-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fafafa;
  font-size: 36px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--color-primary);
  margin: 0 auto 14px;
}

@media (min-width: 769px) {
  .oem-solution-feature-icon {
    width: 80px;
    height: 80px;
    font-size: 42px;
    margin-bottom: 18px;
  }
}
.oem-solution-feature-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-solution-feature-title {
    font-size: 18px;
  }
}
.oem-solution-feature-desc {
  margin: 12px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

@media (min-width: 769px) {
  .oem-solution-feature-desc {
    font-size: 16px;
  }
}
.oem-solution-voice {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 180px; /* Adjust based on image height */
}

@media (min-width: 769px) {
  .oem-solution-voice {
    min-height: 240px;
  }
}
.oem-solution-voice-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.oem-solution-voice-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.oem-solution-voice-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8; /* Slightly dim if needed, based on design */
}

.oem-solution-voice-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

@media (min-width: 769px) {
  .oem-solution-voice-inner {
    padding: 0 var(--content-padding-x);
    gap: 24px;
    align-items: flex-end;
  }
}
.oem-solution-voice-person {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: min(42vw, 168px);
  max-width: 100%;
  height: auto;
  margin-top: -28px;
  align-self: flex-end;
}

@media (min-width: 769px) {
  .oem-solution-voice-person {
    width: 240px;
    display: block;
    margin-top: -60px; /* Pull it up into the green section */
  }
}
.oem-solution-voice-bubble {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  margin-left: -28px;
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  margin-bottom: 80px;
  overflow: visible;
  /* 左中央・人物側へ向かうしっぽ */
}
.oem-solution-voice-bubble::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #fff;
  pointer-events: none;
}
.oem-solution-voice-bubble p {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  color: #333;
  text-align: center;
  overflow-wrap: break-word;
}

@media (min-width: 769px) {
  .oem-solution-voice-bubble {
    flex: none;
    min-width: auto;
    margin-left: 0;
    padding: 20px;
    margin-bottom: 100px;
  }
  .oem-solution-voice-bubble::before {
    left: -12px;
    top: 50%;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #fff;
  }
  .oem-solution-voice-bubble p {
    font-size: 18px;
    text-align: left;
  }
}
.oem-problem {
  position: relative;
  z-index: 2;
  padding: 0;
  background: #f8f8f8;
}
.oem-problem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 3;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #fff;
}

@media (min-width: 769px) {
  .oem-problem::after {
    bottom: -30px;
    border-left-width: 50px;
    border-right-width: 50px;
    border-top-width: 30px;
  }
}
.oem-problem-header {
  position: relative;
  padding: 20px;
  background: #333;
  text-align: center;
  z-index: 1;
}
.oem-problem-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 1;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #333;
}

@media (min-width: 769px) {
  .oem-problem-header {
    padding: 30px;
  }
  .oem-problem-header::after {
    bottom: -30px;
    border-left-width: 50px;
    border-right-width: 50px;
    border-top-width: 30px;
  }
}
.oem-problem-heading {
  margin: 0;
  max-width: var(--content-inner-width);
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

@media (min-width: 769px) {
  .oem-problem-heading {
    font-size: 24px;
  }
}
@media (min-width: 1001px) {
  .oem-problem-heading {
    font-size: 28px;
  }
}
.oem-problem-body {
  padding: 80px var(--content-padding-x) 80px 30px;
  background-color: #fff;
}

@media (min-width: 769px) {
  .oem-problem-body {
    padding: 120px var(--content-padding-x) 120px 30px;
  }
}
.oem-problem-cards {
  max-width: var(--content-inner-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .oem-problem-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
.oem-problem-card {
  position: relative;
  margin: 0;
  padding: 70px 20px 20px;
  background: #fafafa;
  box-sizing: border-box;
}

.oem-problem-card-ribbon {
  position: absolute;
  top: 20px;
  left: -14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 22px 8px 20px;
  background: var(--color-primary);
  font-family: var(--font-noto);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
}
.oem-problem-card-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 14px;
  height: 11px;
  background: #5a9430;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

@media (min-width: 769px) {
  .oem-problem-card-ribbon {
    left: -16px;
    min-height: 40px;
    font-size: 14px;
    padding: 10px 26px 10px 24px;
  }
  .oem-problem-card-ribbon::after {
    width: 16px;
    height: 12px;
  }
}
.oem-problem-card-title {
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--font-noto);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

@media (min-width: 769px) {
  .oem-problem-card-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
.oem-problem-card-title-accent {
  color: var(--color-primary);
}

.oem-problem-card-title-text {
  color: #333;
}

.oem-problem-card-title-sub {
  font-size: 14px;
}

.oem-problem-card-desc {
  margin: 18px 0 0;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

@media (min-width: 769px) {
  .oem-problem-card-desc {
    font-size: 16px;
    margin-top: 20px;
  }
}
.oem-search-cta-section {
  background: #fafafa;
  padding: 80px 0;
  overflow: visible;
}

@media (min-width: 601px) {
  .oem-search-cta-section {
    padding: 120px 0 0;
  }
}
.oem-search-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x) 20px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-search-inner {
    padding-bottom: 40px;
  }
}
.oem-search-bubble {
  background: #fff;
  border: 2px solid var(--color-primary, #8ac046);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  max-width: 940px;
  margin: 0 auto 40px;
}
.oem-search-bubble::after, .oem-search-bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: transparent;
}
.oem-search-bubble::after {
  bottom: -16px;
  border-width: 16px 12px 0 12px;
  border-top-color: var(--color-primary, #8ac046);
}
.oem-search-bubble::before {
  bottom: -13px;
  border-width: 14px 10px 0 10px;
  border-top-color: #fff;
  z-index: 1;
}

@media (min-width: 769px) {
  .oem-search-bubble {
    padding: 32px 40px;
    margin: 0 auto 56px;
  }
}
.oem-search-bubble-text {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.oem-search-bubble-sub {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
}

@media (min-width: 769px) {
  .oem-search-bubble-sub {
    font-size: 20px;
  }
}
.oem-search-bubble-main {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

@media (min-width: 769px) {
  .oem-search-bubble-main {
    font-size: 26px;
    margin-top: 12px;
    gap: 12px;
  }
}
.oem-search-bubble-number {
  position: relative;
  color: var(--color-primary, #8ac046);
  font-weight: 900;
  display: inline-flex;
  align-items: baseline;
}

.oem-search-spark {
  position: absolute;
  top: -15px;
  left: -25px;
  width: 48px;
  height: auto;
  pointer-events: none;
}
.oem-search-spark svg {
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .oem-search-spark {
    top: -30px;
    left: -40px;
    width: 70px;
  }
}
.oem-search-bubble-number-val {
  font-size: 40px;
  line-height: 1;
}

@media (min-width: 769px) {
  .oem-search-bubble-number-val {
    font-size: 64px;
  }
}
.oem-search-bubble-number-unit {
  font-size: 24px;
}

@media (min-width: 769px) {
  .oem-search-bubble-number-unit {
    font-size: 32px;
  }
}
.oem-search-bubble-highlight {
  color: var(--color-primary, #8ac046);
  font-weight: 900;
  font-size: 32px;
  background: linear-gradient(transparent 60%, #ffff88 60%);
  padding: 0 4px;
}

@media (min-width: 769px) {
  .oem-search-bubble-highlight {
    font-size: 48px;
  }
}
.oem-search-note {
  margin: 32px 0 0;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .oem-search-note {
    font-size: 16px;
    margin-top: 40px;
  }
}
.oem-cta-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 601px) {
  .oem-cta-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
  }
}
.oem-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: -64px;
  padding-bottom: 0;
}

@media (min-width: 601px) {
  .oem-cta-content {
    order: 1;
    align-items: flex-start;
    padding-bottom: 120px;
    margin-top: 0;
    width: auto;
  }
}
.oem-cta-bubble {
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  padding: 20px 30px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}
.oem-cta-bubble p {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  position: relative;
  z-index: 2;
}

.oem-cta-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  border-style: solid;
  border-width: 25px 0 0 25px;
  border-color: transparent transparent transparent #5a9430;
  translate: 100% -50%;
  z-index: -1;
}

.oem-cta-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% calc(-50% + 0.4px);
}

@media (max-width: 600px) {
  .oem-cta-bubble::before {
    top: 0;
    right: auto;
    left: 35%;
    translate: -50% -100%;
    rotate: -90deg;
  }
  .oem-cta-bubble::after {
    top: 0;
    right: auto;
    left: 35%;
    translate: -50% calc(-100% + 1px);
    rotate: -90deg;
  }
}
@media (max-width: 768px) {
  .oem-cta-bubble p {
    font-size: 18px;
  }
}
@media (min-width: 601px) {
  .oem-cta-bubble {
    padding: 30px 40px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}
.oem-cta-btn-wrap {
  width: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .oem-cta-btn-wrap {
    text-align: left;
  }
}
.oem-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 56px;
  background: var(--color-primary, #8ac046);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 0 40px 0 20px;
  border: 2px solid var(--color-primary, #8ac046);
  border-radius: 0;
  box-sizing: border-box;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.oem-cta-btn:hover {
  background-color: #fff;
  color: var(--color-primary, #8ac046);
  border-color: var(--color-primary, #8ac046);
}
.oem-cta-btn:hover .material-symbols-outlined {
  color: var(--color-primary, #8ac046);
}
.oem-cta-btn .material-symbols-outlined {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 200ms ease;
}

@media (min-width: 769px) {
  .oem-cta-btn {
    max-width: 480px;
    height: 64px;
    font-size: 16px;
    padding: 0 48px 0 24px;
  }
}
.oem-cta-person {
  position: relative;
  z-index: 1;
  width: min(78vw, 200px);
  max-width: 100%;
  flex-shrink: 0;
  margin: 0 0 0 auto;
  align-self: center;
}

@media (min-width: 601px) {
  .oem-cta-person {
    order: 2;
    width: 280px;
    max-width: none;
    margin: 0;
    align-self: flex-end;
  }
}
.oem-cta-person-img {
  width: 100%;
  height: auto;
  display: block;
}

.oem-cases-section {
  background: transparent;
}

.oem-cases-header {
  text-align: center;
  padding: 80px var(--content-padding-x) 20px;
}

@media (min-width: 769px) {
  .oem-cases-header {
    padding: 120px var(--content-padding-x) 40px;
  }
}
.oem-cases-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 12px;
}

@media (min-width: 769px) {
  .oem-cases-logo {
    width: 220px;
    margin-bottom: 16px;
  }
}
.oem-cases-title {
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
}

@media (min-width: 769px) {
  .oem-cases-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.oem-cases-container {
  padding: 0 0 80px;
}

@media (min-width: 769px) {
  .oem-cases-container {
    padding: 0 0 120px;
  }
}
.oem-cases-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 769px) {
  .oem-cases-inner {
    gap: 40px;
  }
}
.oem-case-card {
  background: #F8FFF1;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oem-case-card-image {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

@media (min-width: 769px) {
  .oem-case-card-image {
    flex-shrink: 0;
    align-self: center;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .oem-case-card-body {
    display: contents;
  }
  .oem-case-card-head {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .oem-case-desc {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }
  .oem-case-card-image {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
  .oem-case-card--reverse .oem-case-desc {
    grid-column: 2;
  }
  .oem-case-card--reverse .oem-case-card-image {
    grid-column: 1;
  }
}
@media (min-width: 1001px) {
  .oem-case-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 40px;
    background: #f8fff1;
    border-radius: 0;
  }
  .oem-case-card-body {
    display: flex;
    flex-direction: column;
  }
  .oem-case-card--reverse {
    flex-direction: row-reverse;
  }
}
.oem-case-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.oem-case-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #D9D9D9;
}

@media (min-width: 769px) {
  .oem-case-card-head {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.oem-case-badge {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 76px;
  padding: 15px 20px;
  flex-shrink: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-case-badge {
    background: var(--color-primary, #8ac046);
    width: 64px;
    min-width: 0;
    padding: 0;
  }
}
.oem-case-badge-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-noto);
}

@media (min-width: 769px) {
  .oem-case-badge-label {
    font-size: 11px;
  }
}
.oem-case-badge-num {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  font-family: var(--font-opensans, sans-serif);
  line-height: 1;
  margin-top: 4px;
}

@media (min-width: 769px) {
  .oem-case-badge-num {
    font-size: 28px;
    font-style: normal;
    margin-top: 4px;
  }
}
.oem-case-title-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .oem-case-title-wrap {
    text-align: left;
  }
}
.oem-case-catch {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  display: block;
  font-family: var(--font-noto);
}

@media (min-width: 769px) {
  .oem-case-catch {
    color: var(--color-primary, #8ac046);
  }
}
.oem-case-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.45;
  font-family: var(--font-noto);
}

@media (min-width: 769px) {
  .oem-case-title {
    margin: 0;
    color: var(--color-primary, #8ac046);
  }
}
@media (max-width: 768px) {
  .oem-case-catch {
    font-size: 13px;
  }
  .oem-case-title {
    font-size: 18px;
  }
}
.oem-case-desc {
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: left;
  padding-top: 22px;
  margin-top: 0;
  font-family: var(--font-noto);
}
.oem-case-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  height: 1px;
  background: #e0e0e0;
}
.oem-case-desc p {
  margin: 0;
}

@media (min-width: 769px) {
  .oem-case-desc {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    padding-top: 0;
    margin-top: 0;
  }
  .oem-case-desc::before {
    display: none;
  }
}
.oem-reasons {
  position: relative;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .oem-reasons {
    padding: 120px 0;
  }
}
.oem-reasons-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.6;
}

.oem-reasons-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
}

.oem-reasons-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-nex-text);
  text-align: center;
  margin-bottom: 50px;
}

@media (min-width: 769px) {
  .oem-reasons-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
.oem-reason-block {
  background: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 769px) {
  .oem-reason-block {
    padding: 40px;
    margin-bottom: 40px;
  }
}
.oem-reason-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-primary);
}

.oem-reason-num {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 36px;
  font-style: italic;
  line-height: 1;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-reason-num {
    font-size: 48px;
  }
}
.oem-reason-name {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .oem-reason-name {
    font-size: 22px;
  }
}
.oem-reason-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) {
  .oem-reason-body {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  .oem-reason-body--reverse {
    flex-direction: row-reverse;
  }
}
.oem-reason-text {
  flex: 1;
  min-width: 0;
}
.oem-reason-text p {
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .oem-reason-text p {
    font-size: 16px;
  }
}
.oem-reason-image {
  flex-shrink: 0;
}
.oem-reason-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .oem-reason-image {
    width: 380px;
  }
  .oem-reason-image img {
    width: 380px;
  }
}
.oem-works-section {
  background: #fff;
  padding: 80px 0;
}

@media (min-width: 769px) {
  .oem-works-section {
    padding: 120px 0;
  }
}
.oem-works-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .oem-works-section {
    padding: 0 0 80px;
  }
  .oem-works-header {
    padding: 80px var(--content-padding-x) 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .oem-works-header {
    margin-bottom: 60px;
  }
}
.oem-works-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 12px;
}

@media (min-width: 769px) {
  .oem-works-logo {
    width: 220px;
    margin-bottom: 16px;
  }
}
.oem-works-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-nex-text);
  margin: 0 0 4px;
}

@media (min-width: 769px) {
  .oem-works-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.oem-works-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 769px) {
  .oem-works-inner {
    gap: 40px;
  }
}
.oem-works-card {
  border: 1px solid var(--color-primary);
  padding: 20px 16px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-works-card {
    padding: 30px;
  }
}
.oem-works-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

@media (min-width: 769px) {
  .oem-works-card-header {
    gap: 20px;
    margin-bottom: 32px;
  }
}
.oem-works-card-header--case01 {
  display: block;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .oem-works-card-header--case01 {
    margin-bottom: 30px;
  }
}
.oem-works-card-head-top {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
  align-items: center;
}

@media (min-width: 769px) {
  .oem-works-card-head-top {
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 14px;
  }
}
/* 採用実績ヘッダー内でもご要望ブロックと同一の .oem-case-card-head を使う（グリッド上の配置のみここで指定） */
.oem-works-card-head-top > .oem-case-card-head {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.oem-works-card-header--case01 .oem-case-card-head {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.oem-works-flip-feature {
  grid-column: 2;
  grid-row: 1/-1;
  align-self: center;
  flex-shrink: 0;
}

.oem-works-flip-img {
  display: block;
  width: auto;
  max-width: min(100%, 340px);
  height: auto;
  max-height: 120px;
}

@media (min-width: 769px) {
  .oem-works-flip-img {
    max-width: 420px;
    max-height: 140px;
  }
}
.oem-works-head-left-divider {
  grid-column: 1;
  grid-row: 2;
  height: 1px;
  background: #d9d9d9;
}

@media (max-width: 768px) {
  .oem-works-card-head-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1px;
  }
  .oem-works-card-head-top > .oem-case-card-head {
    grid-column: 1;
    grid-row: 1;
  }
  .oem-works-flip-feature {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin: 4px 0 8px;
  }
  .oem-works-head-left-divider {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }
  /* 事例01：バッジ上中央 → 緑見出し3行 → 区切り線 → メイン画像 */
  .oem-works-card-header--case01 .oem-works-card-head-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .oem-works-card-header--case01 .oem-case-card-head {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    width: 100%;
    max-width: 100%;
    align-self: center;
  }
  .oem-works-card-header--case01 .oem-works-head-left-divider {
    grid-column: auto;
    grid-row: auto;
    margin: 0 auto;
    order: 2;
    flex-shrink: 0;
  }
  .oem-works-card-header--case01 .oem-works-flip-feature {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 0;
    order: 3;
    justify-self: stretch;
    align-self: stretch;
  }
  .oem-works-card-header--case01 .oem-works-flip-img {
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: auto;
  }
}
/* 採用実績のみ PC で改行を隠す（.oem-case-title と組み合わせ） */
@media (min-width: 769px) {
  .oem-works-title-br {
    display: none;
  }
}
.oem-works-item-img {
  max-width: 860px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.oem-voice-section {
  background: var(--color-nex-section);
  padding: 80px 0;
}

@media (min-width: 769px) {
  .oem-voice-section {
    padding: 120px 0;
  }
}
.oem-voice-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .oem-voice-header {
    margin-bottom: 48px;
  }
}
.oem-voice-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 12px;
}

@media (min-width: 769px) {
  .oem-voice-logo {
    width: 220px;
    margin-bottom: 16px;
  }
}
.oem-voice-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-nex-text);
  margin: 0 0 6px;
}

@media (min-width: 769px) {
  .oem-voice-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.oem-voice-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 769px) {
  .oem-voice-inner {
    gap: 24px;
  }
}
.oem-voice-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-voice-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 30px;
  }
}
.oem-voice-profile {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media (min-width: 769px) {
  .oem-voice-profile {
    width: 150px;
    align-items: center;
  }
}
.oem-voice-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-sizing: border-box;
}
.oem-voice-avatar .material-symbols-outlined {
  font-size: 40px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .oem-voice-avatar {
    width: 150px;
    height: 150px;
  }
  .oem-voice-avatar .material-symbols-outlined {
    font-size: 44px;
  }
}
.oem-voice-company {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-nex-text);
  text-align: center;
}

@media (min-width: 769px) {
  .oem-voice-company {
    font-size: 16px;
  }
}
.oem-voice-body {
  flex: 1;
  min-width: 0;
}

.oem-voice-card-title {
  margin: 0 0 12px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-voice-card-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.oem-voice-text {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-nex-text);
}

@media (min-width: 769px) {
  .oem-voice-text {
    font-size: 15px;
    line-height: 1.7;
  }
}
.oem-lineup {
  background: #fafafa;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .oem-lineup {
    padding: 120px 0;
  }
}
.oem-lineup-inner {
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
}

.oem-lineup-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-nex-text);
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .oem-lineup-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
.oem-lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .oem-lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  .oem-lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.oem-lineup-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.oem-lineup-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.oem-lineup-card-image {
  background: #f8f8f8;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.oem-lineup-card-image img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.oem-lineup-card-name {
  padding: 16px 20px 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-nex-text);
}

.oem-lineup-card-desc {
  padding: 8px 20px 20px;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.7;
  color: #707070;
}

.oem-new-flow-section {
  position: relative;
  background-color: #fff;
  background-image: url("../images/oem/img_bg04.png");
  background-size: 20%;
  background-repeat: repeat;
  background-position: 0 0;
  padding: 80px 0;
}

@media (min-width: 769px) {
  .oem-new-flow-section {
    padding: 120px 0;
  }
}
.oem-new-flow-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
}

.oem-new-flow-floating-img {
  position: absolute;
  top: -120px;
  left: 20px;
  max-width: 150px;
}

@media (min-width: 769px) {
  .oem-new-flow-floating-img {
    top: -180px;
    left: 0px;
    max-width: 250px;
  }
}
.oem-new-flow-floating-img img {
  width: 100%;
  height: auto;
  display: block;
}

.oem-new-flow-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .oem-new-flow-header {
    margin-bottom: 60px;
  }
}
.oem-new-flow-title {
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

@media (min-width: 769px) {
  .oem-new-flow-title {
    font-size: 32px;
  }
}
.oem-new-flow-steps {
  --oem-new-flow-step-gap: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--oem-new-flow-step-gap);
}

@media (min-width: 769px) {
  .oem-new-flow-steps {
    --oem-new-flow-step-gap: 32px;
  }
}
.oem-new-flow-step {
  position: relative;
  background: #fff;
  border: 1px solid #5a9430;
  padding: 24px;
}

.oem-new-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50px;
  bottom: calc(-1.01 * var(--oem-new-flow-step-gap));
  width: 2px;
  height: calc(var(--oem-new-flow-step-gap) + 1px);
  background-color: #5a9430;
  pointer-events: none;
}

@media (min-width: 769px) {
  .oem-new-flow-step {
    padding: 40px;
  }
}
.oem-new-flow-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .oem-new-flow-step-head {
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 32px;
  }
}
.oem-new-flow-step-num {
  font-family: var(--font-opensans, sans-serif);
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-primary, #8ac046);
  line-height: 1;
}

@media (min-width: 769px) {
  .oem-new-flow-step-num {
    font-size: 48px;
  }
}
.oem-new-flow-step-name {
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

@media (min-width: 769px) {
  .oem-new-flow-step-name {
    font-size: 24px;
  }
}
.oem-new-flow-step-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) {
  .oem-new-flow-step-body {
    flex-direction: row;
    gap: 40px;
  }
}
.oem-new-flow-step-content {
  flex: 1;
}

.oem-new-flow-step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

@media (min-width: 769px) {
  .oem-new-flow-step-desc {
    font-size: 15px;
  }
}
.oem-new-flow-point {
  background: #f4faed;
  padding: 24px;
  margin-top: 24px;
}

.oem-new-flow-point-head {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.oem-new-flow-point-lead {
  display: inline-block;
}

.oem-new-flow-point-brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.oem-new-flow-point-suffix {
  display: inline;
}

@media (min-width: 769px) {
  .oem-new-flow-point-head {
    font-size: 16px;
  }
}
.oem-new-flow-point-logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.oem-new-flow-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

@media (min-width: 769px) {
  .oem-new-flow-point-list {
    font-size: 14px;
  }
}
.oem-new-flow-point-list li {
  margin-bottom: 8px;
}

.oem-new-flow-point-list li:last-child {
  margin-bottom: 0;
}

.oem-new-flow-point-note {
  font-size: 11px;
  color: #666;
  margin: 8px 0 0;
}

@media (max-width: 768px) {
  .oem-new-flow-point-head {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    line-height: 1.45;
  }
  .oem-new-flow-point-lead {
    display: block;
    width: 100%;
  }
}
.color-red {
  color: #d92424;
  font-weight: 700;
}

.oem-new-flow-alert {
  background: #fdf2f2;
  padding: 16px 20px;
  margin-top: 24px;
}

.oem-new-flow-alert p {
  margin: 0;
  color: #d92424;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .oem-new-flow-alert p {
    font-size: 14px;
  }
}
.oem-new-flow-alert .small {
  font-size: 11px;
}

@media (min-width: 769px) {
  .oem-new-flow-alert .small {
    font-size: 12px;
  }
}
.oem-new-flow-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .oem-new-flow-btn-wrap {
    margin-top: 32px;
  }
}
.oem-new-flow-btn {
  padding: 16px 40px !important;
}

.oem-new-flow-step-image {
  width: 100%;
  order: -1;
}

@media (min-width: 769px) {
  .oem-new-flow-step-image {
    order: 0;
    width: 280px;
    flex-shrink: 0;
  }
}
.oem-new-flow-step-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.oem-inquiry-cta-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}

@media (min-width: 769px) {
  .oem-inquiry-cta-section {
    padding: 96px 0 112px;
  }
}
@media (min-width: 1001px) {
  .oem-inquiry-cta-section {
    padding: 120px 0 128px;
  }
}
.oem-inquiry-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.oem-inquiry-cta-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.oem-inquiry-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.oem-inquiry-cta-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.oem-inquiry-cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  text-align: center;
}

.oem-inquiry-cta-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (min-width: 769px) {
  .oem-inquiry-cta-title {
    font-size: 28px;
  }
}
@media (min-width: 1001px) {
  .oem-inquiry-cta-title {
    font-size: 32px;
  }
}
.oem-inquiry-cta-lead {
  margin: 16px 0 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}

@media (min-width: 769px) {
  .oem-inquiry-cta-lead {
    margin-top: 20px;
    font-size: 15px;
  }
}
@media (min-width: 1001px) {
  .oem-inquiry-cta-lead {
    font-size: 16px;
  }
}
.oem-inquiry-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  .oem-inquiry-cta-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
    margin-top: 40px;
  }
}
.oem-inquiry-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 20px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  box-sizing: border-box;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.oem-inquiry-cta-btn .oem-inquiry-cta-btn-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  transition: color 200ms ease;
}
.oem-inquiry-cta-btn .oem-inquiry-cta-btn-label {
  min-width: 0;
}
@media (min-width: 769px) {
  .oem-inquiry-cta-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 64px;
    padding: 16px 24px;
    font-size: 15px;
  }
  .oem-inquiry-cta-btn .oem-inquiry-cta-btn-icon {
    font-size: 24px;
  }
}

.oem-inquiry-cta-btn--primary {
  background-color: #e8c024;
  color: #fff;
  border: 2px solid #e8c024;
}
.oem-inquiry-cta-btn--primary .oem-inquiry-cta-btn-icon {
  color: #fff;
}
.oem-inquiry-cta-btn--primary:hover {
  background-color: #fff;
  color: #e8c024;
  border-color: #e8c024;
}
.oem-inquiry-cta-btn--primary:hover .oem-inquiry-cta-btn-icon {
  color: #e8c024;
}

.oem-inquiry-cta-btn--outline {
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.oem-inquiry-cta-btn--outline .oem-inquiry-cta-btn-icon {
  color: #fff;
}
.oem-inquiry-cta-btn--outline:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.oem-inquiry-cta-btn--outline:hover .oem-inquiry-cta-btn-icon {
  color: var(--color-primary);
}

.oem-price {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

@media (min-width: 1001px) {
  .oem-price {
    padding: 120px 0;
  }
}
.oem-price-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.oem-price-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.oem-price-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.oem-price-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.oem-price-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-shell-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  box-sizing: border-box;
  text-align: center;
}

.oem-price-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .oem-price-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.oem-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.oem-price-num {
  font-family: var(--font-opensans);
  font-weight: 700;
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .oem-price-num {
    font-size: 80px;
  }
}
.oem-price-unit {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

@media (min-width: 769px) {
  .oem-price-unit {
    font-size: 24px;
  }
}
.oem-price-note {
  margin-top: 16px;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 769px) {
  .oem-price-note {
    font-size: 14px;
  }
}
.oem-price-cta {
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */