@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: "Source Han Sans CN", "microsoft yahei", sans-serif;
  margin: 0;
  color: #0B0F14;
  line-height: 1.6;
  height: auto;
}
body.no-scroll {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: "Source Han Sans CN", "microsoft yahei", sans-serif;
  font-weight: 600;
  text-align: left;
}

h2 {
  font-size: 4rem;
  margin-top: 0;
}

p, li {
  font-size: 1.25rem;
}

p {
  text-align: justify;
}

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

img {
  max-width: 100%;
}

.section {
  padding: 80px 0;
}

.container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
}

.__inner-width {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.btn-primary {
  font-size: 1.5rem;
}
.btn-primary.__ex-link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 19px;
  background: url("../image/icon-ex-link.svg") no-repeat center/contain;
  margin-left: 10px;
}

.tc-green {
  color: #00B053;
}

.header {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  height: 72px;
  padding-left: 2.5rem;
}
.header h1 {
  margin-bottom: -10px;
}
.header img {
  width: auto;
  height: 56px;
}
.header .nav {
  display: flex;
  justify-content: end;
  width: 100%;
}
.header .nav .menu-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3.75rem;
  margin-right: 0.5rem;
}
.header .nav .menu-links a {
  line-height: 1.4;
}
.header .nav .menu-btns {
  display: flex;
}
.header .nav .menu-btns .btn {
  background: #00B053;
  color: #fff;
  padding: 10px 3rem;
  display: inline-block;
  text-align: center;
  transition: opacity 0.3s ease;
}
.header .nav .menu-btns .btn:hover {
  opacity: 0.8;
}
.header .nav .menu-btns .btn {
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  gap: 8px;
  padding: 0;
  width: 140px;
  height: 72px;
  line-height: 72px;
}
.header .nav .menu-btns .btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  background: url(../image/icon-mail.svg) no-repeat center/contain;
}
.header .nav .menu-btns .btn.__inquiry {
  color: #00B053;
  background: #fff;
}
.header .nav .menu-btns .btn.__download::before {
  background: url(../image/icon-download-white.svg) no-repeat center/contain;
  width: 17px;
  height: 20px;
}
.header .nav a {
  font-weight: 500;
}
.header .nav.active .menu-links a {
  color: #fff;
}
.header {
  /* ハンバーガーボタン */
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.header .menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0B0F14;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .menu-toggle.active {
  height: 20px;
}
.header .menu-toggle.active span {
  background: #fff;
}
.header .menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header {
  /* モバイル用ナビ開閉 */
}
@media (max-width: 899px) {
  .header img {
    height: 40px;
  }
  .header .menu-toggle {
    position: fixed;
    display: flex;
    top: 17px;
    right: 14px;
    z-index: 9999;
  }
  .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #00B053;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .header .nav .menu-links,
  .header .nav .menu-btns {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 2.4rem;
    margin-right: 0;
  }
  .header .nav .menu-links a,
  .header .nav .menu-btns a {
    font-size: 2.5rem;
  }
  .header .nav .menu-links .btn,
  .header .nav .menu-btns .btn {
    width: 24rem;
    height: 5rem;
  }
  .header .nav .menu-links .btn.__download,
  .header .nav .menu-btns .btn.__download {
    border: 1px solid #fff;
  }
  .header .nav.active {
    right: 0;
    gap: 4rem;
  }
  .header body.no-scroll {
    overflow: hidden;
  }
}
@media (max-width: 520px) {
  .header img {
    height: 36px;
  }
}

main {
  overflow: hidden;
  width: 100%;
  position: relative;
}
main .fade-section {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: all 0.9s cubic-bezier(0.6, 0, 0.2, 1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
main .fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
main .mv {
  position: relative;
  overflow: hidden;
  aspect-ratio: 36/17;
}
main .mv .mv-bg {
  will-change: transform, opacity, filter;
  position: absolute;
  inset: 0;
  background: url(../image/mv-ir.webp) no-repeat center/cover;
  aspect-ratio: 36/17;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.05);
  animation: mvBgAnim 1.8s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
@keyframes mvBgAnim {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.05);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
}
main .mv h2 {
  position: absolute;
  bottom: 8%;
  left: 50%;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
}
main .mv h2 span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: mvText 0.9s ease forwards;
}
main .mv h2 span:nth-child(1) {
  animation-delay: 0.8s;
}
main .mv h2 span:nth-child(2) {
  animation-delay: 1s;
}
main .mv h2 span:nth-child(3) {
  animation-delay: 1.2s;
}
@keyframes mvText {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
main .bg-green {
  color: #fff;
  background-color: #00B053;
  font-size: 2.5rem;
  text-align: center;
  height: 5.5rem;
  line-height: 5rem;
}
main #value .container h2, main #value .container p {
  text-align: center;
}
main #value .container > p {
  font-size: 2rem;
}
main #value .container > p.tc-green {
  font-weight: bold;
  margin-top: 2rem;
}
main #value .container .value-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 4.7%;
       column-gap: 4.7%;
  row-gap: 4rem;
  margin: 3rem auto 4rem;
}
main #value .container .value-items .value-item {
  flex: 1;
  text-align: center;
  max-width: 350px;
  min-width: 350px;
}
main #value .container .value-items .value-item > img {
  width: 100%;
  height: auto;
  border: 1px solid #00B053;
}
main #value .container .value-items .value-item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0.5rem auto 1rem;
}
@media (max-width: 1080px) {
  main #value .container .value-items .value-item h3 {
    font-size: 1.5rem;
  }
}
main #value .container .value-items .value-item a {
  display: inline-block;
  position: relative;
  color: #fff;
  background-color: #00B053;
  font-size: 1.25rem;
  width: 15rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 2rem;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
main #value .container .value-items .value-item a img {
  position: absolute;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(42deg) brightness(106%) contrast(101%);
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
main #network {
  background: #F5F5FA;
}
main #network h2, main #network p {
  text-align: center;
}
main #network p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
main #network p .group-number {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 1px;
}
main #network span {
  display: block;
  text-align: right;
  margin: 1rem 5% 0;
}
main .about {
  margin: -1px 0;
  padding: 0 0 2.5rem;
  background: #F5F5FA;
}
main .about .bg-container {
  text-align: center;
  padding: 2.5rem 0;
}
main .about h2 {
  font-size: 0;
  text-align: center;
}
main .about p {
  margin: 4rem auto;
}
main .about .reason-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 40px;
}
main .about .reason-grid .reason-card {
  background: #fff;
  flex: 1;
  width: 292px;
  padding: 32px 20px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
main .about .reason-grid .reason-card img {
  min-height: 66px;
}
main .about .reason-grid .reason-card h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  font-style: normal;
  text-align: center;
  margin: 8px 0;
}
main .about .reason-grid .reason-card p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
main .about .reason-grid .reason-card p span {
  font-size: 3.25rem;
  font-weight: bold;
  margin-left: 6px;
}
main .about .btn-primary {
  background: #00B053;
  color: #fff;
  padding: 10px 3rem;
  display: inline-block;
  text-align: center;
  transition: opacity 0.3s ease;
}
main .about .btn-primary:hover {
  opacity: 0.8;
}
main .about .btn-primary {
  background-color: rgba(0, 176, 83, 0.8);
  margin-top: 3.75rem;
  border: 1px solid #E8E9EA;
}
main .cta {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #1F363D;
}
main .cta .cta-content {
  margin: 0 auto;
  padding: 3.75rem 1rem;
  border-top: 1px solid #00B053;
}
main .cta .cta-content p {
  margin: 0;
  text-align: center;
}
main .cta .cta-content .cta-btns-wrapper {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 50rem;
  margin: 2.5rem auto 0;
}
main .cta .cta-content .cta-btns-wrapper .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #00B053;
  background: #fff;
  width: 15rem;
  height: 52px;
  line-height: 52px;
}
main .cta .cta-content .cta-btns-wrapper .btn-primary.__download {
  color: #fff;
  background-color: #00B053;
}
main .cta .cta-content .cta-btns-wrapper .btn-primary::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../image/icon-mail.svg) no-repeat center/contain;
}
main .cta .cta-content .cta-btns-wrapper .btn-primary.__inquiry::before {
  width: 24px;
  height: 19px;
}
main .cta .cta-content .cta-btns-wrapper .btn-primary.__download::before {
  background: url(../image/icon-download-white.svg) no-repeat center/contain;
  width: 21px;
  height: 24px;
}

.footer {
  color: #fff;
  text-align: center;
  padding: 16px 0;
  background-color: #082128;
}
.footer p {
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
.footer p a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: keep-all;
  margin-left: 1.5rem;
  font-size: 94%;
}
@media (max-width: 560px) {
  .footer p a {
    margin-left: 0;
  }
}

.product-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.3s ease;
}
.product-modal.active {
  opacity: 1;
  visibility: visible;
}
.product-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}
.product-modal .modal-content {
  background: #fff;
  padding: 2.25rem 1.5rem 1rem;
  position: relative;
  width: 1120px;
  max-width: 65%;
  border: 2px solid #00B053;
  box-shadow: 0px 0px 16px rgba(0, 176, 83, 0.6);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1080px) {
  .product-modal .modal-content {
    max-width: 90%;
  }
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-img.__products {
  width: 100%;
  margin-top: -5.75rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container {
  padding: 0 2rem 1rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container .modal-img {
  width: 100%;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container .modal-desc.is-hidden {
  display: none;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container .modal-desc h3 {
  position: relative;
  font-size: 1.25rem;
  font-style: normal;
  margin-top: 1.25rem;
  margin-bottom: 2px;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container .modal-desc p {
  line-height: 1.5;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 h2 {
  margin-bottom: 0;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > div {
  display: flex;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > div img {
  max-width: 57%;
  min-width: 280px;
  margin-top: -1rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > div p {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 3rem;
  padding-right: 2rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value03 p {
  font-size: 2rem;
  margin-bottom: 0;
}
@media (max-width: 1080px) {
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value03 p {
    margin-bottom: -3rem;
  }
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value05 .modal-detail-container .modal-desc h3 {
  font-size: 2.5rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value05 .modal-detail-container .modal-desc p {
  font-size: 1.75rem;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value05::after {
  content: "";
  position: absolute;
  top: 36%;
  right: 5%;
  width: 448px;
  max-width: 40%;
  height: 318px;
  aspect-ratio: 224/159;
  background: url(/lp/industrial-robot/assets/image/value-05-modal-1.webp) no-repeat center/contain;
}
.product-modal .modal-content .modal-inner-wrapper .modal-inner.value05 img {
  max-width: 47%;
  margin: 2rem 0 0 1rem;
}
.product-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 12px;
  font-size: 1.25rem;
  color: #666;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.trust360-privacy-button {
  z-index: 100 !important;
}

@media (min-width: 1536px) {
  html {
    font-size: 125%;
  }
  html .header .nav .menu-links {
    gap: 2.5rem;
  }
  html .header .nav .menu-links a {
    font-size: 120%;
  }
  html .__inner-container,
  html .container {
    max-width: 1440px;
  }
  html .__inner-width {
    max-width: 1120px;
  }
  html .__inner-width .reason-card h3 {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  html .product-modal .modal-close {
    top: 12px;
    right: 12px;
  }
  html main #value .container .value-items .value-item {
    max-width: 400px;
  }
  html main .cta .cta-content .cta-btns-wrapper .btn-primary {
    height: 64px;
    line-height: 64px;
  }
}
@media (max-width: 1366px) and (min-width: 1280px) {
  .header .nav .menu-links {
    gap: 4rem;
    margin-right: 1rem;
  }
}
@media (max-width: 1279px) {
  html {
    font-size: 75%;
  }
}
@media (max-width: 1279px) and (min-width: 821px) {
  .header .nav .menu-links {
    gap: 1rem;
    margin-right: 1rem;
  }
  .header .nav .menu-links a {
    font-size: 14px;
  }
  .header .nav .menu-btns .btn {
    max-width: 120px;
  }
}
@media (max-width: 1024px) and (min-width: 821px) {
  .header .nav .menu-links {
    gap: 4rem;
    margin-right: 1rem;
  }
  .header .nav .menu-btns .btn {
    max-width: 120px;
    font-size: 14px;
    gap: 4px;
  }
}
@media (max-width: 820px) {
  html {
    scroll-padding-top: 56px;
  }
  .pc_only {
    display: none;
  }
  header {
    max-height: 56px;
  }
  header img {
    width: 12rem;
  }
  main .mv h2 {
    font-size: 4rem;
  }
  main #value .container .value-items {
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
  main #value .container .value-items .value-items-text .value-item .value-number {
    font-size: 5rem;
    margin-right: 2rem;
  }
  main #value .container .value-items .value-items-text .value-item .value-item h3 {
    font-size: 1.5rem;
  }
  main .about h2 {
    max-width: 400px;
    margin: auto;
  }
  .product-modal .modal-close {
    top: 10px;
    right: 6px;
  }
}
@media (max-aspect-ratio: 4/3) {
  .hero .hero-slide {
    height: 70vh;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  h2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  p:not(.value-number) {
    font-size: 1.5rem !important;
  }
  img {
    max-width: 100%;
  }
  header {
    padding-right: 1rem;
  }
  header .nav .menu-links a,
  header .nav .menu-btns a {
    font-size: 1.8rem !important;
  }
  header .menu-btns .btn {
    position: relative;
  }
  header .menu-btns .btn::before {
    position: absolute;
    top: 50%;
    left: 5.2rem;
    transform: translateY(-50%);
  }
  .section {
    padding: 40px 0;
  }
  .container {
    width: 100%;
  }
  main .mv h2 {
    font-size: 2rem;
  }
  .about h2 img {
    width: 26rem;
    height: auto;
    margin-top: 2.4rem;
  }
  .about .reason-grid {
    flex-direction: column;
    align-items: center !important;
  }
  main .cta .cta-toggle::before,
  main .cta .cta-toggle::after {
    top: 8px;
    height: 14px;
  }
  main .cta .cta-content .cta-btns-wrapper {
    flex-direction: column;
  }
  main .cta .cta-content .cta-btns-wrapper .btn-primary {
    margin: auto;
    width: 28rem;
  }
  main .cta.lifted {
    bottom: 51px;
  }
  .nav {
    display: none;
  }
  .footer p {
    font-size: 12px !important;
  }
  .product-modal .modal-content {
    max-height: 90vh;
  }
  .product-modal .modal-content .modal-close {
    top: 5px;
    right: 1px;
    font-size: 1.1rem;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 1rem;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container {
    padding: 0 1rem 1rem;
    flex-wrap: wrap;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner .modal-detail-container .modal-desc h3 {
    font-size: 1.6rem;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > .modal-detail-container {
    justify-content: center;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > .modal-detail-container p {
    margin-top: 1rem;
    line-height: 1.4;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value01 > .modal-detail-container img {
    margin-top: 1rem;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value02 > .modal-detail-container, .product-modal .modal-content .modal-inner-wrapper .modal-inner.value03 > .modal-detail-container {
    padding: 0;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value03 p {
    text-align: center;
    margin-bottom: 1rem;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value05 > .modal-detail-container h3 {
    font-size: 1.8rem !important;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value05 > .modal-detail-container img {
    display: block;
    width: 440px;
    max-width: 100%;
    margin: 2rem auto 0;
  }
  .product-modal .modal-content .modal-inner-wrapper .modal-inner.value05::after {
    position: relative;
    right: auto;
    display: block;
    max-width: 60%;
    height: auto;
    margin: auto;
  }
}
@media (max-width: 530px) {
  main .bg-green {
    font-size: 1.75rem;
  }
  main #value .container .value-items {
    row-gap: 4rem;
    margin-top: 1rem;
  }
  main #value .container .value-items .value-item {
    min-width: 100%;
  }
  main #value .container .value-items .value-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    min-height: initial;
    margin-top: 4px;
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=style.css.map */