@charset "UTF-8";
/* media query */
/* centering */
/* set top position of pseudo element */
/* set pseudo element(no image) */
/* set pseudo element */
/* font set */
/* 画像の回転アニメーション */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 最初の動画 */
#welcome_video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 10000;
  transition: opacity 1s ease;
  opacity: 1;
}
#welcome_video .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#welcome_video .loader img {
  width: 100px;
  animation: spin 5s linear infinite;
}
#welcome_video video {
  width: 100vw;
  height: 100vh;
}
#welcome_video #skip_btn {
  position: fixed;
  right: 10%;
  bottom: 5%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  padding: 0 30px;
  cursor: pointer;
}

/* header */
#header > .flex #logo_wrpa {
  opacity: 0;
}
#header.lower-page > .flex #logo_wrpa {
  opacity: 1;
}

#header {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
}
#header > .flex {
  height: 80px;
  width: 100%;
  max-width: 1250px;
  padding: 0 15px;
  margin: 0 auto;
  align-items: center;
}
#header > .flex #logo_wrpa {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
#header > .flex #logo_wrpa.active {
  opacity: 1;
}
#header > .flex #logo_wrpa img {
  width: 100%;
}
#header > .flex #navi_lang_wrap {
  align-items: baseline;
}
#header > .flex #navi_lang_wrap #navi {
  background: #F18E2C;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  padding: 0 22.5px;
  align-items: center;
  height: 40px;
  column-gap: 13.5px;
}
#header > .flex #navi_lang_wrap #navi li {
  padding: 0 12.5px;
}
#header > .flex #navi_lang_wrap #navi li a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1024px) {
  #header > .flex #navi_lang_wrap #navi {
    column-gap: 10px;
  }
}
@media (max-width: 960px) {
  #header > .flex #navi_lang_wrap #navi {
    display: none;
  }
}
#header > .flex #navi_lang_wrap #lang_wrap {
  margin-left: 20px;
}
#header > .flex #navi_lang_wrap #lang_wrap a {
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
#header > .flex #navi_lang_wrap #lang_wrap a.active {
  color: #F18E2C;
  border-bottom: 1px solid #666;
}
#header > .flex #navi_lang_wrap #lang_wrap a:hover {
  color: #F18E2C;
}
#header > .flex #navi_lang_wrap #lang_wrap a.disabled {
  color: rgba(102, 102, 102, 0.6);
}
#header > .flex #navi_lang_wrap #lang_wrap p {
  margin: 0 10px;
}
#header > .flex .sp-nav {
  position: fixed;
  z-index: 999;
  top: 80px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
}
#header > .flex .sp-nav.active {
  max-height: 100vh;
}
#header > .flex .sp-nav ul {
  width: 100vw;
  height: 100vh;
  overflow: auto;
}
#header > .flex .sp-nav ul li {
  border-top: 0.75px solid #9C9C9C;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-left: 8px;
}
#header > .flex .sp-nav ul li:last-child {
  border-bottom: 0.75px solid #9C9C9C;
}
#header > .flex .sp-nav ul li a {
  color: #454545;
  text-decoration: none;
  padding: 6px 0;
  display: flex;
  column-gap: 10px;
  font-weight: bold;
  font-size: 20px;
}
#header > .flex .sp-nav ul li a figure {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
#header > .flex .sp-nav ul li a figure svg {
  width: 100%;
  height: 100%;
}
#header > .flex .sp-nav ul li a figure circle {
  transition: stroke 0.5s;
}
#header > .flex .sp-nav ul li a figure circle.circle-bg {
  stroke-dasharray: 106.8;
  transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}
#header > .flex .sp-nav ul li a:hover figure circle.circle-bg {
  stroke-dashoffset: -106.8;
}
#header > .flex .sp-nav-btn {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: none;
}
#header > .flex .sp-nav-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #666666;
  width: 100%;
}
#header > .flex .sp-nav-btn span:first-child {
  top: 0;
}
#header > .flex .sp-nav-btn span:nth-child(2) {
  top: 12px;
}
#header > .flex .sp-nav-btn span:last-child {
  bottom: 0;
}
@media (max-width: 960px) {
  #header > .flex .sp-nav-btn {
    display: block;
  }
}
#header > .flex .sp-nav-btn.active span:first-child {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(-45deg);
  width: 100%;
}
#header > .flex .sp-nav-btn.active span:nth-child(2) {
  opacity: 0;
}
#header > .flex .sp-nav-btn.active span:last-child {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(45deg);
  width: 100%;
}
#header:not(.top-page) > .flex {
  height: 80px;
}
#header:not(.top-page) > .flex #navi {
  display: none;
}

/* ハイパーオートメーションヘッダー */
.hyper-automation-header,
.orosee-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 15px 30px 15px 56px;
  background-color: transparent;
  z-index: 999;
  /* お問い合わせ */
}
@media (max-width: 960px) {
  .hyper-automation-header,
  .orosee-header {
    padding: 15px;
  }
}
.hyper-automation-header.lower,
.orosee-header.lower {
  background-color: #00223F;
}
.hyper-automation-header__inner,
.orosee-header__inner {
  align-items: center;
  width: min(100%, 1250px);
  margin: 0 auto;
}
.hyper-automation-header__inner .logo,
.orosee-header__inner .logo {
  width: 140px;
}
.hyper-automation-header__inner .nav,
.orosee-header__inner .nav {
  background-color: #fff;
  border-radius: 50px;
  padding: 3px 22.86px 0 31px;
  height: 40px;
  align-items: center;
  column-gap: 23px;
}
@media (max-width: 768px) {
  .hyper-automation-header__inner .nav,
  .orosee-header__inner .nav {
    display: none;
  }
}
.hyper-automation-header__inner .nav__link,
.orosee-header__inner .nav__link {
  color: #454545;
  font-size: 16px;
  font-weight: bold;
}
.hyper-automation-header .sp-nav-btn,
.orosee-header .sp-nav-btn {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: none;
}
@media (max-width: 768px) {
  .hyper-automation-header .sp-nav-btn,
  .orosee-header .sp-nav-btn {
    display: block;
  }
}
.hyper-automation-header .sp-nav-btn__item,
.orosee-header .sp-nav-btn__item {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #fff;
  width: 100%;
}
.hyper-automation-header .sp-nav-btn__item.first,
.orosee-header .sp-nav-btn__item.first {
  top: 0;
}
.hyper-automation-header .sp-nav-btn__item.second,
.orosee-header .sp-nav-btn__item.second {
  top: 11px;
}
.hyper-automation-header .sp-nav-btn__item.last,
.orosee-header .sp-nav-btn__item.last {
  bottom: 0;
}
.hyper-automation-header .sp-nav-btn.active .sp-nav-btn__item.first,
.orosee-header .sp-nav-btn.active .sp-nav-btn__item.first {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(-45deg);
  width: 100%;
}
.hyper-automation-header .sp-nav-btn.active .sp-nav-btn__item.second,
.orosee-header .sp-nav-btn.active .sp-nav-btn__item.second {
  opacity: 0;
}
.hyper-automation-header .sp-nav-btn.active .sp-nav-btn__item.last,
.orosee-header .sp-nav-btn.active .sp-nav-btn__item.last {
  top: 6px;
  left: 0;
  transform: translateY(5px) rotate(45deg);
  width: 100%;
}
.hyper-automation-header .sp-nav,
.orosee-header .sp-nav {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
}
.hyper-automation-header .sp-nav.active,
.orosee-header .sp-nav.active {
  max-height: 100vh;
  padding-top: 10px;
}
.hyper-automation-header .sp-nav__menu,
.orosee-header .sp-nav__menu {
  width: 100vw;
  height: 100vh;
  overflow: auto;
}
.hyper-automation-header .sp-nav__menu-item,
.orosee-header .sp-nav__menu-item {
  border-top: 0.75px solid #9C9C9C;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-left: 8px;
}
.hyper-automation-header .sp-nav__menu-link,
.orosee-header .sp-nav__menu-link {
  font-size: 14px;
  font-weight: bold;
  color: #454545;
  text-decoration: none;
  padding: 6px 0;
}
.hyper-automation-header-contact,
.orosee-header-contact {
  background-color: #00223F;
  padding: 16px 60px 26px;
}
@media (max-width: 768px) {
  .hyper-automation-header-contact,
  .orosee-header-contact {
    padding: 16px 15px 25px;
  }
}
.hyper-automation-header-contact .logo,
.orosee-header-contact .logo {
  width: 140px;
}
.hyper-automation-header-contact .heading,
.orosee-header-contact .heading {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-top: 0.6em;
  text-align: center;
}
@media (max-width: 768px) {
  .hyper-automation-header-contact .heading,
  .orosee-header-contact .heading {
    font-size: 24px;
    font-weight: bold;
  }
}
.hyper-automation-header-contact .text,
.orosee-header-contact .text {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  margin-top: 1.3em;
  text-align: center;
}
@media (max-width: 768px) {
  .hyper-automation-header-contact .text,
  .orosee-header-contact .text {
    font-size: 14px;
    font-weight: normal;
  }
}
@media (max-width: 520px) {
  .hyper-automation-header-contact .text br,
  .orosee-header-contact .text br {
    display: none;
  }
}

/* orosee独自ヘッダー */
.orosee-header {
  background: #051f32;
  padding: 15px 30px 15px 56px;
}
.orosee-header .contents {
  display: block;
}
.orosee-header .contents h1 {
  height: 35px;
  display: flex;
}
.orosee-header .nav {
  background: none;
  gap: 53px;
}
.orosee-header .nav a {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.orosee-header .nav a:hover {
  color: #fff;
}
.orosee-header .nav__link {
  border: solid 2px #fff;
  border-radius: 30px;
  padding: 7px 30px;
  font-size: 16px;
}

/* 資料請求ヘッダー */
.catalog-header {
  background-color: #00223F;
  padding: 15px 0;
}

.catalog-header__logo {
  width: 140px;
}

/* footer */
#footer-links {
  margin-top: 40px;
  padding-bottom: 80px;
  text-align: center;
  color: #A0A0A0;
  font-size: 14px;
}
#footer-links a {
  text-decoration: underline;
  color: inherit;
}
#footer-links a:hover {
  color: #F18E2C;
}

#footer {
  background-color: #E6E6E6;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#footer p {
  font-size: 14px;
  color: #888888;
}
#footer .back-to-top {
  border: 3px solid #737373;
  width: 40px;
  height: 40px;
  border-radius: 100vh;
  cursor: pointer;
  text-align: center;
  position: fixed;
  background-color: #fff;
  right: 10px;
  bottom: 14px;
  z-index: 10;
}
#footer .back-to-top.form {
  display: none;
}
#footer .back-to-top span.arrow {
  display: inline-block;
  vertical-align: -6px;
  border-radius: 100vh;
  position: relative;
  width: 3px;
  height: 20px;
  background-color: #737373;
}
#footer .back-to-top span.arrow.small-align {
  vertical-align: -9px;
}
#footer .back-to-top span.arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #737373;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -3px;
  right: 1.5px;
}
@media (max-width: 480px) {
  #footer .back-to-top span.arrow {
    vertical-align: -9px;
  }
}

/* ハイパーオートネーションフッター */
.hyper-automation-footer {
  padding: 82px 0 49px 70px;
  /* スマホ */
}
@media (max-width: 768px) {
  .hyper-automation-footer {
    padding: 55px 35px 50px;
  }
}
.hyper-automation-footer-upper {
  justify-content: flex-start !important;
  column-gap: 141px;
  padding-left: 18px;
}
@media (max-width: 768px) {
  .hyper-automation-footer-upper {
    display: none;
  }
}
.hyper-automation-footer-upper--before .link {
  width: 146px;
}
.hyper-automation-footer-upper--before .address, .hyper-automation-footer-upper--before .tse {
  font-size: 12px;
  font-weight: normal;
  margin-top: 1.5em;
}
.hyper-automation-footer-upper--before .logo {
  width: 159px;
  margin-top: 18px;
}
.hyper-automation-footer-upper--before .logo__caption {
  font-size: 10px;
  font-weight: normal;
  text-align: left;
  padding: 0;
  color: #6A6A6A;
}
.hyper-automation-footer-upper--after .menu__item {
  font-size: 14px;
  font-weight: bold;
  width: max-content;
  position: relative;
}
.hyper-automation-footer-upper--after .menu__item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1.5px #0059A5;
  border-right: solid 1.5px #0059A5;
  position: absolute;
  right: -15px;
  top: 6px;
  transform: rotate(45deg);
}
.hyper-automation-footer-upper--after .menu__item:not(.first) {
  margin-top: 1.7em;
}
.hyper-automation-footer-upper--after .menu__item-link {
  color: #454545;
}
.hyper-automation-footer-upper--after .menu__item-link:hover {
  color: #0074D2;
}
.hyper-automation-footer-lower {
  margin-top: 48px;
  justify-content: flex-start !important;
  align-items: center;
  column-gap: 57px;
}
@media (max-width: 960px) {
  .hyper-automation-footer-lower {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .hyper-automation-footer-lower {
    display: none;
  }
}
.hyper-automation-footer-lower .heading {
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.hyper-automation-footer-lower .heading::before {
  content: none;
}
.hyper-automation-footer-lower .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 30px;
  top: calc(50% - 30px / 2);
  top: calc(50% - 15px);
  background-color: #a0a0a0;
  right: -2.29em;
}
.hyper-automation-footer-lower .link {
  font-size: 14px;
  font-weight: normal;
  color: #454545 !important;
}
.hyper-automation-footer-lower .link:hover {
  color: #0074D2 !important;
}
.hyper-automation-footer-lower .link.has-icon {
  position: relative;
}
.hyper-automation-footer-lower .link.has-icon.last {
  margin-left: 1em;
}
@media (max-width: 960px) {
  .hyper-automation-footer-lower .link.has-icon.last {
    margin-left: 14em;
  }
}
.hyper-automation-footer-lower .link.has-icon::after {
  content: "";
  background: url("/img/common/icn_external_01.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 16px / 2);
  top: calc(50% - 9px);
  right: -1.57em;
}
.hyper-automation-footer-upper--sp {
  display: none;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  .hyper-automation-footer-upper--sp {
    display: block;
  }
}
.hyper-automation-footer-upper--sp .menu__item {
  font-size: 14px;
  font-weight: bold;
}
.hyper-automation-footer-upper--sp .menu__item:not(.first) {
  margin-top: 1.7em;
}
.hyper-automation-footer-upper--sp .menu__item-link {
  color: #454545;
}
.hyper-automation-footer-upper--sp .menu__item-link:hover {
  color: #0074D2;
}
.hyper-automation-footer-middle--sp {
  display: none;
  border-top: 0.5px solid #b9b9b9;
  padding: 54px 0 35px;
}
@media (max-width: 768px) {
  .hyper-automation-footer-middle--sp {
    display: block;
  }
}
.hyper-automation-footer-middle--sp .logo {
  width: 225px;
}
.hyper-automation-footer-middle--sp .address, .hyper-automation-footer-middle--sp .ste {
  font-size: 12px;
  font-weight: normal;
  margin-top: 2.7em;
}
.hyper-automation-footer-middle--sp .image {
  width: 225px;
  margin: 32px auto 0;
}
.hyper-automation-footer-middle--sp .image__caption {
  color: #6a6a6a;
  text-align: center;
  font-size: 10px;
  font-weight: normal;
}
.hyper-automation-footer-lower--sp {
  display: none;
  border-top: 0.5px solid #b9b9b9;
  padding-top: 54px;
}
@media (max-width: 768px) {
  .hyper-automation-footer-lower--sp {
    display: block;
  }
}
.hyper-automation-footer-lower--sp .heading {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.hyper-automation-footer-lower--sp .heading::before {
  content: none;
}
.hyper-automation-footer-lower--sp .menu {
  justify-content: center !important;
  column-gap: 25px;
  flex-wrap: wrap;
}
.hyper-automation-footer-lower--sp .menu__link {
  font-size: 14px;
  font-weight: normal;
  color: #454545;
}
.hyper-automation-footer-lower--sp .menu__link:hover {
  color: #0074D2;
}
.hyper-automation-footer-lower--sp .menu__link.has-icon {
  position: relative;
}
.hyper-automation-footer-lower--sp .menu__link.has-icon::after {
  content: "";
  background: url("/img/common/icn_external_01.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 16px / 2);
  top: calc(50% - 9px);
  right: -1.57em;
}
.hyper-automation-footer-lower--sp .menu__link.last {
  margin-left: 1em;
}

/* お知らせバナー */
.notice-bnr {
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F1F3;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.notice-bnr.inactive {
  display: none;
}

.notice-bnr__txt {
  font-size: 16px;
  font-weight: bold;
  color: #E9314A;
  text-decoration: underline;
}
.notice-bnr__txt:hover {
  text-decoration: none;
}

.notice-bnr__btn-wrap {
  position: absolute;
  right: 61px;
  top: calc(50% - 14px);
}

.notice-bnr__btn {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #454545;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.notice-bnr__btn::before, .notice-bnr__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #454545;
  /* バツ印の色 */
}
.notice-bnr__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.notice-bnr__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1050px) {
  .notice-bnr {
    padding: 5px 20px;
  }
  .notice-bnr__btn-wrap {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .notice-bnr {
    justify-content: flex-start;
  }
  .notice-bnr__txt {
    width: calc(100% - 40px);
    font-size: 12px;
    line-height: 1.3;
  }
}