/* system */
:root {
  font-family: "Noto Sans JP", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #fff;
  --black: #000;
  --txt: #333;
  --main-color: #014099;
  --sub-color: #1BA38E;
  --device01: #3992C7;
  --device02: #ADC930;
  --device03: #EFB728;
  --device04: #3AAAB9;
  --device05: #F08E4D;
}

.c-main-color {
  color: var(--main-color);
}

@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .sp-only {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 960px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  line-height: 1.6;
  color: var(--txt);
  font-size: 16px;
}
@media (max-width: 960px) {
  body {
    min-width: 100%;
    font-size: 14px;
  }
  body.is-fixed {
    overflow: hidden;
  }
}
@media (max-width: 320px) {
  body {
    letter-spacing: -1px;
  }
}

.wrap {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 44px;
}
@media (max-width: 960px) {
  .wrap {
    padding: 0 20px;
  }
}

img {
  display: block;
  height: auto;
}
@media (max-width: 960px) {
  img {
    width: 100%;
  }
}

a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.6;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  border-radius: 9999px;
  color: var(--white);
  background: var(--white);
  overflow: hidden;
}
.btn:hover {
  opacity: 1;
}
.btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.btn span:hover {
  opacity: 0.6;
}
.btn._01 span {
  background: -webkit-gradient(linear, left top, right top, from(#0480B9), to(#0048AD));
  background: linear-gradient(to right, #0480B9, #0048AD);
}
.btn._02 span {
  background: -webkit-gradient(linear, left top, right top, from(#00C697), to(#098589));
  background: linear-gradient(to right, #00C697, #098589);
}

.flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 960px) {
  .flex-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* main */
main {
  margin-top: 125px;
}
main.en {
  margin-top: 77px;
}
@media (max-width: 960px) {
  main.en {
    margin-top: 51px;
  }
}
@media (max-width: 1124px) and (min-width: 961px) {
  main {
    margin-top: 170px;
  }
}
@media (max-width: 960px) {
  main {
    margin-top: 51px;
  }
}
main .mv {
  background: url(/assets/img/mv.webp) no-repeat center top/cover;
  color: var(--white);
  padding: 50px 0 90px;
}
@media (max-width: 960px) {
  main .mv {
    background-image: url(/assets/img/mv_sp.webp);
    padding: 32px 0 96px;
  }
}
main .mv .ttl h1 {
  font-size: 48px;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
}
@media (max-width: 960px) {
  main .mv .ttl h1 {
    font-size: 24px;
    margin-left: -5px;
  }
}
@media (max-width: 960px) {
  main .mv .ttl h1 img {
    width: 71px;
  }
}
main .mv .ttl p {
  font-size: 14px;
  font-weight: 500;
  margin-top: -10px;
}
@media (max-width: 960px) {
  main .mv .ttl p {
    font-size: 13px;
    margin-top: -5px;
  }
}
main .mv .txt {
  margin-top: 40px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 960px) {
  main .mv .txt {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  main .mv .txt span {
    font-size: 20px;
  }
}
main .mv .btn-wrap {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 960px) {
  main .mv .btn-wrap {
    margin-top: 40px;
  }
}
main .mv .btn-wrap .btn {
  width: 240px;
  height: 48px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .mv .btn-wrap .btn {
    width: 214px;
    height: 45px;
  }
}
main .mv .btn-wrap .btn span {
  position: relative;
}
@media (max-width: 960px) {
  main .mv .btn-wrap .btn span {
    font-size: 15px;
  }
}
main .mv .btn-wrap .btn span:before, main .mv .btn-wrap .btn span:after {
  content: "";
  position: absolute;
  border-top: 1px solid var(--white);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
main .mv .btn-wrap .btn span:before {
  width: 14px;
  right: 14px;
}
main .mv .btn-wrap .btn span:after {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--white);
  right: 14px;
  rotate: 45deg;
}
main .mv .btn-wrap .btn:hover span:before,
main .mv .btn-wrap .btn:hover span:after {
  right: 7px;
}
main .mv_en {
  background: url(/assets/img/mv.webp) no-repeat center top/cover;
  color: var(--white);
  height: calc(100vh - 120px);
  position: relative;
}
main .mv_en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 960px) {
  main .mv_en {
    background-image: url(/assets/img/mv_sp.webp);
    height: calc(100vh - 94px);
  }
}
main .mv_en .wrap {
  height: 100%;
}
main .mv_en .ttl {
  width: 100%;
  height: 100%;
  position: relative;
}
main .mv_en .ttl h1 {
  font-size: 48px;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 960px) {
  main .mv_en .ttl h1 {
    font-size: 24px;
  }
}
main .about {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 960px) {
  main .about {
    padding: 40px 0;
  }
}
main .about .ttl .poppins {
  font-weight: 600;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
main .about .ttl .poppins:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--sub-color);
}
main .about .ttl h2 {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .about .ttl h2 {
    font-size: 20px;
  }
}
main .about .ttl p {
  font-size: 18px;
  margin-top: 40px;
  line-height: 2;
}
@media (max-width: 960px) {
  main .about .ttl p {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.8;
  }
}
main .about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 15px;
  margin-top: 60px;
}
@media (max-width: 960px) {
  main .about ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    margin-top: 30px;
  }
}
main .about ul li {
  background: rgba(1, 64, 153, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  margin: 0 -15px;
}
@media (max-width: 960px) {
  main .about ul li {
    margin: -10px auto;
  }
}
main .about ul li .num {
  color: var(--main-color);
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 960px) {
  main .about ul li .num {
    font-size: 18px;
  }
}
main .about ul li .num .poppins {
  font-size: 26px;
  margin-left: 4px;
}
@media (max-width: 960px) {
  main .about ul li .num .poppins {
    font-size: 20px;
  }
}
main .about ul li img {
  margin: 10px 0 20px;
  max-width: 120px;
}
main .about ul li p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 960px) {
  main .about ul li p {
    font-size: 16px;
  }
}
main .about ul li p .c-main-color {
  font-weight: bold;
}
main .anchorlink {
  padding: 60px 0;
  background: rgba(1, 64, 153, 0.05);
}
@media (max-width: 960px) {
  main .anchorlink {
    padding: 30px 0;
  }
}
main .anchorlink .ttl {
  font-size: 28px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 960px) {
  main .anchorlink .ttl {
    font-size: 20px;
  }
}
main .anchorlink .ttl:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--sub-color);
}
main .anchorlink nav ul {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 18px;
}
@media (max-width: 960px) {
  main .anchorlink nav ul {
    margin-top: 20px;
  }
}
main .anchorlink nav ul li {
  background: var(--white);
  -webkit-filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
}
main .anchorlink nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
main .anchorlink nav ul li a .top {
  color: var(--white);
  text-align: center;
  padding: 26px 30px;
}
@media (max-width: 960px) {
  main .anchorlink nav ul li a .top {
    padding: 13px 15px;
  }
}
main .anchorlink nav ul li a .top span {
  display: block;
  width: 44px;
  height: 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  margin: auto;
}
main .anchorlink nav ul li a .top p {
  font-size: 22px;
  font-weight: bold;
  margin-top: 6px;
}
@media (max-width: 960px) {
  main .anchorlink nav ul li a .top p {
    font-size: 20px;
  }
}
main .anchorlink nav ul li a .btm {
  padding: 15px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media (max-width: 960px) {
  main .anchorlink nav ul li a .btm {
    padding: 15px;
  }
}
main .anchorlink nav ul li a .btm .txt {
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  main .anchorlink nav ul li a .btm .txt {
    margin-bottom: 25px;
  }
}
main .anchorlink nav ul li a .btm .arrow {
  text-align: center;
  margin-top: auto;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 960px) {
  main .anchorlink nav ul li a .btm .arrow {
    font-size: 13px;
  }
}
main .anchorlink nav ul li a .btm .arrow:after {
  content: "";
  position: absolute;
  background: url(/assets/img/arrow01.svg) no-repeat center top/contain;
  width: 32px;
  height: 32px;
  rotate: 90deg;
  right: 0;
  top: -5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
main .anchorlink nav ul li a:hover .btm .arrow:after {
  top: 0;
}
main .anchorlink nav ul li .device01 .top {
  background: url(/assets/img/anchor01.png) no-repeat center top/cover;
}
main .anchorlink nav ul li .device01 .top span {
  background: var(--device01);
}
main .anchorlink nav ul li .device02 .top {
  background: url(/assets/img/anchor02.png) no-repeat center top/cover;
}
main .anchorlink nav ul li .device02 .top span {
  background: var(--device02);
}
main .anchorlink nav ul li .device03 .top {
  background: url(/assets/img/anchor03.png) no-repeat center top/cover;
}
main .anchorlink nav ul li .device03 .top span {
  background: var(--device03);
}
main .anchorlink nav ul li .device04 .top {
  background: url(/assets/img/anchor04.png) no-repeat center top/cover;
}
main .anchorlink nav ul li .device04 .top span {
  background: var(--device04);
}
main .anchorlink nav ul li .device05 .top {
  background: url(/assets/img/anchor05.png) no-repeat center top/cover;
}
main .anchorlink nav ul li .device05 .top span {
  background: var(--device05);
}
main .devices .address {
  position: fixed;
  z-index: 999;
  top: 52.38px;
  background: var(--white);
  width: 100%;
  left: 0;
}
main .devices .address .device {
  display: none;
}
main .devices .address .device.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 13px 20px;
}
main .devices .address .device span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  background: color-mix(in srgb, var(--black) 80%, var(--white) 100%);
  color: var(--white);
}
main .devices .address .device p {
  font-size: 15px;
  font-weight: bold;
}
main .devices .address .device.device01 span {
  background: var(--device01);
}
main .devices .address .device.device02 span {
  background: var(--device02);
}
main .devices .address .device.device03 span {
  background: var(--device03);
}
main .devices .address .device.device04 span {
  background: var(--device04);
}
main .devices .address .device.device05 span {
  background: var(--device05);
}
main .devices .flex-item {
  gap: 32px;
}
@media (max-width: 960px) {
  main .devices .flex-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
main .devices .side-nav {
  padding-top: 160px;
  width: 172px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .side-nav {
    padding: 0;
    width: 0;
  }
}
main .devices .side-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 172px;
}
@media (max-width: 960px) {
  main .devices .side-nav ul {
    position: fixed;
    width: 100%;
    left: 0;
  }
}
main .devices .side-nav ul.is-fixed {
  position: fixed;
  top: 112px;
  z-index: 99;
}
@media (max-width: 960px) {
  main .devices .side-nav ul.is-fixed {
    top: 50px;
    border-bottom: 1px solid color-mix(in srgb, var(--black) 10%, var(--white) 100%);
  }
}
@media (max-width: 960px) {
  main .devices .side-nav ul li.device {
    display: none;
    background: var(--white);
    padding: 13px 20px;
  }
}
main .devices .side-nav ul li.device a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 960px) {
  main .devices .side-nav ul li.device a {
    pointer-events: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}
main .devices .side-nav ul li.device a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  background: color-mix(in srgb, var(--black) 80%, var(--white) 100%);
  color: var(--white);
}
main .devices .side-nav ul li.device a p {
  font-weight: bold;
  margin-top: 6px;
  color: color-mix(in srgb, var(--black) 80%, var(--white) 100%);
  font-size: 16px;
}
@media (max-width: 960px) {
  main .devices .side-nav ul li.device a p {
    margin: 0;
  }
}
@media (max-width: 960px) {
  main .devices .side-nav ul li.device.is-active.device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main .devices .side-nav ul li.device.is-active p {
  color: var(--txt);
}
main .devices .side-nav ul li.device.is-active.device01 span {
  background: var(--device01);
}
main .devices .side-nav ul li.device.is-active.device02 span {
  background: var(--device02);
}
main .devices .side-nav ul li.device.is-active.device03 span {
  background: var(--device03);
}
main .devices .side-nav ul li.device.is-active.device04 span {
  background: var(--device04);
}
main .devices .side-nav ul li.device.is-active.device05 span {
  background: var(--device05);
}
main .devices .main-contents {
  padding: 60px 0;
}
@media (max-width: 960px) {
  main .devices .main-contents {
    padding: 30px 0;
  }
}
main .devices .main-contents .device {
  padding: 60px 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device {
    padding: 30px 0;
  }
}
main .devices .main-contents .device .box01 {
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 {
    padding: 20px;
  }
}
main .devices .main-contents .device .box01 .top {
  width: 100%;
  max-width: calc(100% - 380px);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .top {
    max-width: 100%;
  }
}
main .devices .main-contents .device .box01 .top .ttl span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  color: var(--white);
}
main .devices .main-contents .device .box01 .top .ttl h2 {
  font-weight: bold;
  margin-top: 4px;
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .top .ttl h2 {
    font-size: 20px;
  }
}
main .devices .main-contents .device .box01 .top img {
  position: absolute;
  top: 40px;
  right: 40px;
  max-width: 320px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .top img {
    position: static;
    margin: 20px auto 0;
  }
}
main .devices .main-contents .device .box01 .top p {
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .top p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
}
main .devices .main-contents .device .box01 .btm {
  margin-top: 115px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .btm {
    margin-top: 20px;
  }
}
main .devices .main-contents .device .box01 .btm p {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .btm p {
    font-size: 18px;
  }
}
main .devices .main-contents .device .box01 .btm ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  gap: 16px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .btm ul {
    margin-top: 10px;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
main .devices .main-contents .device .box01 .btm ul li {
  background: var(--white);
  padding: 15px;
  border-radius: 6px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .btm ul li {
    padding: 10px;
    font-size: 16px;
  }
}
main .devices .main-contents .device .box01 .btm ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: block;
  margin-top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box01 .btm ul li:before {
    margin-top: 8px;
  }
}
main .devices .main-contents .device .box02 {
  margin-top: 80px;
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 {
    margin-top: 40px;
    padding: 20px;
  }
}
main .devices .main-contents .device .box02 h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 h3 {
    font-size: 20px;
  }
}
main .devices .main-contents .device .box02 .list01 {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
main .devices .main-contents .device .box02 .list01 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 .list01 > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
main .devices .main-contents .device .box02 .list01 > li .box {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 15px 20px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 .list01 > li .box {
    padding: 15px;
  }
}
main .devices .main-contents .device .box02 .list01 > li .box h4 {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
main .devices .main-contents .device .box02 .list01 > li .box h4 sup {
  font-size: 10px;
  top: 1em;
  margin: 0 -5px;
}
main .devices .main-contents .device .box02 .list01 > li .box h4:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  margin-top: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main .devices .main-contents .device .box02 .list01 > li .box .list02 {
  line-height: 2;
  margin-top: 15px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 .list01 > li .box .list02 {
    line-height: 1.8;
    margin-top: 10px;
  }
}
main .devices .main-contents .device .box02 .list01 > li .box .list02 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
main .devices .main-contents .device .box02 .list01 > li .box .list02 > li:before {
  content: "";
  background: color-mix(in srgb, var(--black) 60%, var(--white) 100%);
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  display: block;
  margin-top: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 .list01 > li .box .list02 > li:before {
    margin-top: 10px;
  }
}
main .devices .main-contents .device .box02 .list01 > li .box.problem {
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
main .devices .main-contents .device .box02 .list01 > li .box.problem:before {
  content: "";
  background: url(/assets/img/arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 42px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: -58px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box02 .list01 > li .box.problem:before {
    width: 34px;
    height: 24px;
    rotate: 90deg;
    top: auto;
    bottom: -35px;
    right: 50%;
  }
}
main .devices .main-contents .device .box02 .list01 > li .box.problem h4:before {
  background: url(/assets/img/icn-question.svg);
}
main .devices .main-contents .device .box02 .list01 > li .box.solution h4 {
  color: var(--main-color);
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: rgba(27, 163, 142, 0.15);
  text-underline-offset: -6px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
main .devices .main-contents .device .heading {
  margin: 80px 0 30px;
  font-size: 28px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .heading {
    margin: 40px 0 15px;
    font-size: 20px;
  }
}
main .devices .main-contents .device .heading:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: block;
  background: var(--sub-color);
  margin-top: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .heading:before {
    margin-top: 12px;
  }
}
main .devices .main-contents .device .box03 {
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 {
    padding: 20px;
  }
}
main .devices .main-contents .device .box03 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 ul {
    gap: 20px;
  }
}
main .devices .main-contents .device .box03 ul > li {
  width: calc(50% - 20px);
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 ul > li {
    width: 100%;
  }
}
main .devices .main-contents .device .box03 ul > li h4 {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 ul > li h4 {
    font-size: 16px;
  }
}
main .devices .main-contents .device .box03 ul > li h4:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: block;
  margin-top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 ul > li h4:before {
    margin-top: 8px;
  }
}
main .devices .main-contents .device .box03 ul > li p {
  padding-left: 20px;
  margin-top: 10px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box03 ul > li p {
    margin-top: 5px;
  }
}
main .devices .main-contents .device .box04 {
  background: color-mix(in srgb, var(--black) 4%, var(--white) 100%);
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 {
    padding: 20px;
  }
}
main .devices .main-contents .device .box04 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 40px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul {
    gap: 20px;
  }
}
main .devices .main-contents .device .box04 ul li .poppins {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
main .devices .main-contents .device .box04 ul li .poppins:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: block;
  background: var(--sub-color);
  margin-top: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .poppins:before {
    margin-top: 6px;
  }
}
main .devices .main-contents .device .box04 ul li h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 4px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li h4 {
    font-size: 20px;
  }
}
main .devices .main-contents .device .box04 ul li h4 sup,
main .devices .main-contents .device .box04 ul li h4 sub {
  font-size: 12px;
}
main .devices .main-contents .device .box04 ul li h4 sup {
  top: -1em;
}
main .devices .main-contents .device .box04 ul li .flex-item {
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .flex-item {
    gap: 30px;
    margin-top: 15px;
  }
}
main .devices .main-contents .device .box04 ul li .box {
  background: var(--white);
  padding: 15px 24px 30px;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box {
    padding: 15px;
  }
}
main .devices .main-contents .device .box04 ul li .box .underline {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--black) 20%, var(--white) 100%);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box .underline {
    font-size: 16px;
    padding-bottom: 5px;
  }
}
main .devices .main-contents .device .box04 ul li .box .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-top: 18px;
  min-height: 4em;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box .ttl {
    font-size: 16px;
    margin-top: 10px;
    min-height: auto;
  }
}
main .devices .main-contents .device .box04 ul li .box img {
  margin: 18px auto;
  width: 100%;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box img {
    margin: 10px auto;
  }
}
main .devices .main-contents .device .box04 ul li .box .txt {
  line-height: 2;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box .txt {
    line-height: 1.8;
  }
}
main .devices .main-contents .device .box04 ul li .box.problem {
  position: relative;
}
main .devices .main-contents .device .box04 ul li .box.problem:before {
  content: "";
  -webkit-mask: url(/assets/img/arrow02.svg);
          mask: url(/assets/img/arrow02.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--main-color);
  width: 42px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: -58px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box.problem:before {
    width: 34px;
    height: 24px;
    rotate: 90deg;
    top: auto;
    bottom: -37px;
    right: 50%;
  }
}
main .devices .main-contents .device .box04 ul li .box.solution {
  -webkit-filter: drop-shadow(0 0 10px rgba(27, 163, 142, 0.3));
          filter: drop-shadow(0 0 10px rgba(27, 163, 142, 0.3));
}
main .devices .main-contents .device .box04 ul li .box.solution .underline {
  color: var(--main-color);
  border-color: var(--sub-color);
}
main .devices .main-contents .device .box04 ul li .box.solution .ttl {
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: rgba(27, 163, 142, 0.15);
  text-underline-offset: -6px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
main .devices .main-contents .device .box04 ul li .box.flow {
  margin-top: 40px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box.flow {
    margin-top: 20px;
  }
}
main .devices .main-contents .device .box04 ul li .box.flow p {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box.flow p {
    font-size: 16px;
  }
}
main .devices .main-contents .device .box04 ul li .box.flow .img-wrap {
  overflow-x: auto;
}
main .devices .main-contents .device .box04 ul li .box.flow .img-wrap img {
  margin: 15px auto 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li .box.flow .img-wrap img {
    width: 858px;
  }
}
main .devices .main-contents .device .box04 ul li .box.flow .caution {
  font-size: 12px;
}
main .devices .main-contents .device .box04 ul li:nth-child(n+2) {
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--black) 20%, var(--white) 100%);
}
@media (max-width: 960px) {
  main .devices .main-contents .device .box04 ul li:nth-child(n+2) {
    padding-top: 20px;
  }
}
main .devices .main-contents .device .contact {
  margin-top: 80px;
  padding: 40px 40px 60px;
  background: url(/assets/img/contact.png) no-repeat center/cover;
  border-radius: 15px;
  text-align: center;
  color: var(--white);
  -webkit-filter: drop-shadow(4px 4px 10px rgba(1, 64, 153, 0.2));
          filter: drop-shadow(4px 4px 10px rgba(1, 64, 153, 0.2));
}
@media (max-width: 960px) {
  main .devices .main-contents .device .contact {
    margin-top: 40px;
    padding: 20px;
  }
}
main .devices .main-contents .device .contact .poppins {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
main .devices .main-contents .device .contact .poppins:before {
  content: "";
  background: var(--white);
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: block;
  margin-top: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .contact .poppins:before {
    margin-top: 6px;
  }
}
main .devices .main-contents .device .contact h3 {
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .contact h3 {
    margin-top: 5px;
    font-size: 20px;
  }
}
main .devices .main-contents .device .contact .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .contact .btn-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
}
main .devices .main-contents .device .contact .btn-wrap .btn {
  width: 100%;
  max-width: 340px;
  height: 66px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 960px) {
  main .devices .main-contents .device .contact .btn-wrap .btn {
    max-width: 214px;
    height: 45px;
    font-size: 16px;
  }
}
main .devices .main-contents .device01 .box01 {
  background: color-mix(in srgb, var(--device01) 15%, var(--white) 100%);
}
main .devices .main-contents .device01 .box01 .top .ttl span {
  background: var(--device01);
}
main .devices .main-contents .device01 .box01 .btm ul li::before {
  background: var(--device01);
}
main .devices .main-contents .device01 .box02 {
  background: url(/assets/img/device01-bg.svg) no-repeat center top/cover;
}
main .devices .main-contents .device01 .box02 .list01 > li .box.solution h4::before {
  background: url(/assets/img/icn-check01.svg);
}
main .devices .main-contents .device01 .box02 .list01 > li .box.solution .list02 > li::before {
  background: var(--device01);
}
main .devices .main-contents .device01 .box03 {
  background: color-mix(in srgb, var(--device01) 15%, var(--white) 100%);
}
main .devices .main-contents .device01 .box03 ul > li h4::before {
  background: var(--device01);
}
main .devices .main-contents .device02 .box01 {
  background: color-mix(in srgb, var(--device02) 15%, var(--white) 100%);
}
main .devices .main-contents .device02 .box01 .top .ttl span {
  background: var(--device02);
}
main .devices .main-contents .device02 .box01 .btm ul li::before {
  background: var(--device02);
}
main .devices .main-contents .device02 .box02 {
  background: url(/assets/img/device02-bg.svg) no-repeat center top/cover;
}
main .devices .main-contents .device02 .box02 .list01 > li .box.solution h4::before {
  background: url(/assets/img/icn-check02.svg);
}
main .devices .main-contents .device02 .box02 .list01 > li .box.solution .list02 > li::before {
  background: var(--device02);
}
main .devices .main-contents .device02 .box03 {
  background: color-mix(in srgb, var(--device02) 15%, var(--white) 100%);
}
main .devices .main-contents .device02 .box03 ul > li h4::before {
  background: var(--device02);
}
main .devices .main-contents .device03 .box01 {
  background: color-mix(in srgb, var(--device03) 15%, var(--white) 100%);
}
main .devices .main-contents .device03 .box01 .top .ttl span {
  background: var(--device03);
}
main .devices .main-contents .device03 .box01 .btm ul li::before {
  background: var(--device03);
}
main .devices .main-contents .device03 .box02 {
  background: url(/assets/img/device03-bg.svg) no-repeat center top/cover;
}
main .devices .main-contents .device03 .box02 .list01 > li .box.solution h4::before {
  background: url(/assets/img/icn-check03.svg);
}
main .devices .main-contents .device03 .box02 .list01 > li .box.solution .list02 > li::before {
  background: var(--device03);
}
main .devices .main-contents .device03 .box03 {
  background: color-mix(in srgb, var(--device03) 15%, var(--white) 100%);
}
main .devices .main-contents .device03 .box03 ul > li h4::before {
  background: var(--device03);
}
main .devices .main-contents .device04 .box01 {
  background: color-mix(in srgb, var(--device04) 15%, var(--white) 100%);
}
main .devices .main-contents .device04 .box01 .top .ttl span {
  background: var(--device04);
}
main .devices .main-contents .device04 .box01 .btm ul li::before {
  background: var(--device04);
}
main .devices .main-contents .device04 .box02 {
  background: url(/assets/img/device04-bg.svg) no-repeat center top/cover;
}
main .devices .main-contents .device04 .box02 .list01 > li .box.solution h4::before {
  background: url(/assets/img/icn-check04.svg);
}
main .devices .main-contents .device04 .box02 .list01 > li .box.solution .list02 > li::before {
  background: var(--device04);
}
main .devices .main-contents .device04 .box03 {
  background: color-mix(in srgb, var(--device04) 15%, var(--white) 100%);
}
main .devices .main-contents .device04 .box03 ul > li h4::before {
  background: var(--device04);
}
main .devices .main-contents .device05 .box01 {
  background: color-mix(in srgb, var(--device05) 15%, var(--white) 100%);
}
main .devices .main-contents .device05 .box01 .top .ttl span {
  background: var(--device05);
}
main .devices .main-contents .device05 .box01 .btm ul li::before {
  background: var(--device05);
}
main .devices .main-contents .device05 .box02 {
  background: url(/assets/img/device05-bg.svg) no-repeat center top/cover;
}
main .devices .main-contents .device05 .box02 .list01 > li .box.solution h4::before {
  background: url(/assets/img/icn-check05.svg);
}
main .devices .main-contents .device05 .box02 .list01 > li .box.solution .list02 > li::before {
  background: var(--device05);
}
main .devices .main-contents .device05 .box03 {
  background: color-mix(in srgb, var(--device05) 15%, var(--white) 100%);
}
main .devices .main-contents .device05 .box03 ul > li h4::before {
  background: var(--device05);
}

/* header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--white);
  z-index: 9999;
}
header .top {
  padding: 20px 0;
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid color-mix(in srgb, var(--black) 10%, var(--white) 100%);
}
@media (max-width: 960px) {
  header .top {
    padding: 14px 0;
  }
}
header .top .flex-item {
  gap: 24px;
}
@media (max-width: 960px) {
  header .top .flex-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
header .top .logo {
  margin: auto;
  margin-left: -8px;
}
@media (max-width: 960px) {
  header .top .logo {
    width: 190px;
    margin-left: -4px;
  }
}
header .top .logo img {
  width: 100%;
}
header .top .language {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  cursor: default;
}
header .top .language .poppins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  cursor: pointer;
}
@media (max-width: 960px) {
  header .top .language .poppins {
    font-size: 0;
  }
}
header .top .language .poppins:hover {
  text-decoration: underline;
}
header .top .language .poppins:before {
  content: "";
  background: url(/assets/img/language.svg) no-repeat center top/contain;
  display: block;
  width: 16px;
  height: 16px;
}
header .top .language .poppins:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  rotate: 45deg;
  border-bottom: 1px solid var(--txt);
  border-right: 1px solid var(--txt);
  margin-left: 2px;
}
@media (max-width: 960px) {
  header .top .language .poppins:after {
    display: none;
  }
}
header .top .language .poppins.is-active:after {
  rotate: 225deg;
  margin-top: 6px;
}
header .top .language .list {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: var(--white);
  width: 105px;
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--black) 20%, var(--white) 100%);
  border-radius: 5px;
}
@media (max-width: 960px) {
  header .top .language .list {
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
header .top .language .list.is-active {
  display: block;
}
header .top .language .list .item {
  display: block;
  padding-left: 17px;
  position: relative;
  line-height: 2;
  cursor: pointer;
}
header .top .language .list .item:hover {
  text-decoration: underline;
}
header .top .language .list .item.is-active:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  display: block;
  background: var(--sub-color);
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .top .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-filter: drop-shadow(4px 4px 10px rgba(1, 64, 153, 0.2));
          filter: drop-shadow(4px 4px 10px rgba(1, 64, 153, 0.2));
}
header .top .btn-wrap .btn {
  width: 180px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
}
header .top .toggle {
  display: none;
}
@media (max-width: 960px) {
  header .top .toggle {
    width: 25px;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto 0;
  }
}
header .top .toggle span {
  display: block;
  border-bottom: 1px solid var(--txt);
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .top .toggle span.is-active {
  margin-left: 7px;
}
header .top .toggle span.is-active:nth-of-type(1) {
  rotate: 45deg;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
header .top .toggle span.is-active:nth-of-type(2) {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
header .top .toggle span.is-active:nth-of-type(3) {
  rotate: -45deg;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
header .btm {
  background: color-mix(in srgb, var(--black) 3%, var(--white) 100%);
  border-bottom: 1px solid color-mix(in srgb, var(--black) 10%, var(--white) 100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 960px) {
  header .btm {
    position: absolute;
    background: var(--white);
    width: 100%;
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
    padding-bottom: 100%;
  }
  header .btm.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
header .btm ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 960px) {
  header .btm ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .btm ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
}
@media (max-width: 960px) {
  header .btm ul li a {
    width: 100%;
    height: 50px;
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--black) 10%, var(--white));
    position: relative;
  }
}
header .btm ul li a:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 30px);
  border-bottom: 5px solid var(--main-color);
}
@media (max-width: 960px) {
  header .btm ul li a:after {
    content: "";
    position: absolute;
    -webkit-mask: url(/assets/img/arrow02.svg);
            mask: url(/assets/img/arrow02.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background: var(--main-color);
    width: 14px;
    height: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}
header .btm ul li a:hover {
  opacity: 1;
  position: relative;
}
header .btm ul li a:hover:before {
  display: block;
}
@media (max-width: 960px) {
  header .btm ul li a:hover:before {
    display: none;
  }
}
header .btm .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
header .btm .btn-wrap .btn {
  margin: auto;
  width: 287px;
  height: 48px;
  font-size: 15px;
  font-weight: bold;
}
header .btm.is-hidden {
  margin-top: -45px;
}
@media (max-width: 1124px) {
  header .btm.is-hidden {
    margin-top: -90px;
  }
}
@media (max-width: 960px) {
  header .btm.is-hidden {
    margin: 0;
  }
}

.pagetop {
  position: fixed;
  content: "";
  background: url(/assets/img/pagetop.svg) no-repeat center top/contain;
  width: 46px;
  height: 46px;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 960px) {
  .pagetop {
    width: 30px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }
}
.pagetop:hover {
  background-image: url(/assets/img/pagetop_h.svg);
  opacity: 1;
  bottom: 25px;
}
@media (max-width: 960px) {
  .pagetop:hover {
    background-image: url(/assets/img/pagetop.svg);
    bottom: 10px;
  }
}

footer {
  color: var(--white);
}
footer .top {
  background: var(--main-color);
  padding: 40px 0;
}
@media (max-width: 960px) {
  footer .top {
    padding: 24px 0 32px;
  }
}
footer .top .flex-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 960px) {
  footer .top .flex-item {
    gap: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 960px) {
  footer .top a img {
    width: 136px;
    margin-left: -10px;
  }
}
footer .top nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 15px;
  font-weight: 500;
}
footer .btm {
  background: #002B69;
  padding: 24px 0 12px;
}
footer .btm.en {
  padding: 12px 0;
}
footer .btm.en .flex-item small {
  margin-top: 0;
  margin-left: auto;
}
footer .btm nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
  gap: 30px;
}
@media (max-width: 960px) {
  footer .btm nav ul {
    gap: 13px 30px;
  }
}
footer .btm nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
footer .btm nav ul li a:after {
  content: "";
  background: url(/assets/img/ex_link.svg) no-repeat center top/contain;
  display: block;
  width: 14px;
  height: 14px;
}
@media (max-width: 960px) {
  footer .btm nav ul li a:after {
    width: 13px;
    height: 13px;
  }
}
footer .btm small {
  margin-left: auto;
  font-size: 12px;
}
@media (max-width: 960px) {
  footer .btm small {
    margin: 0;
    margin-right: auto;
    margin-top: 24px;
  }
}/*# sourceMappingURL=style.css.map */