@charset "UTF-8";

/*-------------------------------------------------------------*/
/* common */

html {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #28292b;
  scroll-behavior: smooth;
	 scroll-padding-top: 80px;
}

body {
  font-size: 16px;
  line-height: 1.5;
  height: 100%;
}

img {
  max-width: 100%;
}

a {
  color: #28292b;
}

.home-contents-inner {
  max-width: 1200px;
  margin: auto;
}

.contents-inner {
  max-width: 1120px;
  margin: auto;
}

.main {
  position: relative;
}

.font-oswald {
  font-family: "Oswald", sans-serif;
}

/* .fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
} */

@media screen and (max-width: 1400px) {
  .home-contents-inner {
    max-width: 96%;
    margin: auto;
  }
}

@media screen and (max-width: 1120px) {
  .contents-inner {
    max-width: 96%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }

  .contents-inner,
  .home-contents-inner {
    max-width: 96%;
    padding: 0;
  }
}

/*-------------------------------------------------------------*/
/* header */

.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.header-inner {
  max-width: 1184px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items:center;
}

.header-logo {
  width: 120px;
}

.header-nav-pc .header-nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 520px;
}

.header-nav-pc .header-nav-item > a {
  position: relative;
  display: block;
  font-size: 15px;
  padding: 28px 0;
}

.header-nav-pc .header-nav-item > a:hover {
  color: #0C65A7;
}

.header-nav-pc .header-nav-item:has(.header-megamenu) > a {
  padding-right: 20px;
}

.header-nav-pc .header-nav-item:has(.header-megamenu) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-down-g.svg) center/cover no-repeat;
  width: 10px;
  height: 6px;
}

.header-nav-pc .header-nav-item:has(.header-megamenu) > a:hover::after {
  background: url(/assets/images/common/icon-arrow-down-b.svg) center/cover no-repeat;
}

.header-nav-pc .header-nav-item:hover .header-megamenu {
  opacity: 1;
  visibility: visible;
}

.header-nav-pc .header-megamenu {
  position: absolute;
  top: 78px;
  left: 0;
  background: rgba(255,255,255, .8);
  width: 100%;
  padding: 27px 0;
  z-index: 1;
  transition: opacity .3s, visibility .3s;
  opacity: 0;
  visibility: hidden;
}

.header-nav-pc .header-megamenu-list {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.header-nav-pc .header-megamenu-item a {
  position: relative;
}

.header-nav-pc .header-megamenu-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  border-bottom: solid 2px #0C65A7;
  width: 0;
  transition: .3s;
}

.header-nav-pc .header-megamenu-item a:hover {
 color: #0C65A7;
}

.header-nav-pc .header-megamenu-item a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .header-inner {
    max-width: 96%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 2;
    background: white;
  }

  .header-logo {
    width: 79px;
    padding: 25px 0;
  }
}

/*-------------------------------------------------------------*/
/* hamburger */

.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  width: 64px;
  height: 80px;
  cursor: pointer;
  padding: 31px 0;
  transition-duration: .5s;
}

.header-menu-trigger,
.header-menu-trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
}

.header-menu-trigger {
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
}

.header-menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #28292B;
}

.header-menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.header-menu-trigger span:nth-of-type(2) {
  top: 8px;
  width: 24px;
}

.header-menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 24px;
}

.header-menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #28292B;
  border-radius: 3px;
  transition: all 0.4s;
}

.header-menu-trigger.active span {
  background-color: #28292B;
}

.header-menu-trigger.active span:nth-of-type(1) {
  transform: scale(0) translateY(20px);
  background-color: #28292B;
}

.header-menu-trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #28292B;
}

.header-menu-trigger.active span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #28292B;
  height: 1px;
}

.header-menu-trigger.active span:nth-of-type(3) {
  transform: scale(0) translateY(-20px);
  background-color: #28292B;
}

/*-------------------------------------------------------------*/
/* drawer */

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 100;
  overflow-y: scroll;
}

.sp-menu .header-logo-wrap {
  width: 96%;
  margin: auto;
}

.header-nav-sp .header-nav-list {
  width: 96%;
  margin: 40px auto 0;
  list-style: none;
  border-top: solid 1px #DEDEDE;
  padding-top: 20px;
}

.header-nav-sp .header-nav-item {
  /* border-bottom: solid 1px #DEDEDE; */
  margin-bottom: 20px;
}

.header-nav-sp .header-nav-item > a {
  position: relative;
  display: block;
  color: #28292B;
  border-bottom: solid 1px #DEDEDE;
  padding: 0 20px 20px;
}

.header-nav-sp .header-megamenu {
  display: none;
}

.header-nav-sp .header-megamenu-list {
  padding-top: 20px;
  padding-left: 40px;
  margin-bottom: 40px;
}

.header-nav-sp .header-megamenu-item + .header-megamenu-item {
  margin-top: 20px;
}

.header-nav-sp .header-nav-item:has(.header-megamenu) > a {
  padding-right: 20px;
}

.header-nav-sp .header-nav-item:has(.header-megamenu) > a::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 95px;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-down-g.svg) center / cover no-repeat;
  width: 10px;
  height: 6px;
}

.sp-menu .header-nav-btn {
  width: 96%;
  margin: auto;
}

.sp-menu .header-nav-btn-search,
.sp-menu .header-nav-btn-contact {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: 4px;
  background: #e2ac1b;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  padding: 20px 0;
}

.sp-menu .header-nav-btn-contact::before {
  content: "";
  position: absolute;
  top: 48%;
  left: calc((50% - 10px) - (46px + 18px));
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-email.svg) center / cover no-repeat;
  width: 20px;
  height: 16px;
}

.sp-menu .header-nav-btn-search {
  background: #28292B;
  margin-top: 8px;
}

.sp-menu .header-nav-btn-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc((50% - 10px) - (16px + 18px));
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-search.svg) center / cover no-repeat;
  width: 16px;
  height: 16px;
}

/*-------------------------------------------------------------*/
/* footer */

.footer {
  background: #28292B;
  padding:40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1124px;
  margin: 15px auto 0 auto;
}

.footer-logo {
  width: 120px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
}

.footer-nav-item > a {
  color: white;
}

.footer-nav-item > a:hover {
  opacity: .8;
}

.footer-copyright {
  display: block;
  font-size: 12px;
  color: white;
  text-align: right;
  width: 100%;
}

@media screen and (max-width: 890px) {
  .footer-nav-list {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-inner {
    display: block;
    max-width: 96%;
  }

  .footer-nav-list {
    display: block;
    margin-top: 40px;
  }

  .footer-nav-item {
    font-size: 14px;
  }

  .footer-nav-item + .footer-nav-item {
    margin-top: 20px;
  }

  .footer-copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 40px;
    margin-right: 0;
  }
}

/*-------------------------------------------------------------*/
/* btn */

.btn-base {
  display: flex;
  justify-content: center;
  gap: 50px;
  background: #C81010;
  border-radius: 80px;
  width: 100%;
  max-width: 495px;
  box-shadow: 0 9px 0 #780404;
  padding: 15px 0 10px;
  transition: all .3s ease;
}

.btn-base:hover {
  box-shadow: 0 0 0 #780404;
  transform: translateY(9px);
}

.btn-body {
  font-weight: 700;
  color: white;
  text-align: center;
}

.btn-img {
  border-radius: 90px 0 0 90px;
  overflow: hidden;
}

.btn-lead {
  font-size: 22px;
}

.btn-text {
  font-size: 30px;
}

.btn-gradient {
  background: linear-gradient(180deg,rgba(200, 16, 16, 1) 0%, rgba(157, 13, 13, 1) 60%, rgba(152, 9, 9, 1) 100%);
}

@media screen and (max-width: 767px) {
  .btn-base {
    box-shadow: 0 6px 0 #780404;
    max-width: 390px;
    padding: 10px 0 10px;
  }

  .btn-base:hover {
    box-shadow: 0 0 0 #780404;
    transform: translateY(6px);
  }

  .btn-lead {
    font-size: 12px;
  }

  .btn-text {
    font-size: 16px;
  }
}

/*-------------------------------------------------------------*/
/* kv */

.kv {
  position: relative;
  color: white;
  margin-top: -78px;
}

.kv-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1184px;
  margin: auto;
}

.kv-img {
  display: block;
}

.kv-img img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 78px);
}

.kv-body {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
}

.kv-title {
  font-weight: 600;
  font-size: 72px;
  line-height: 1.1;
  text-transform: uppercase;
}

.kv-title .font-sm {
  font-weight: 300;
}

.kv-title span {
  display: inline-block;
  transform: translateX(.2em);
  animation: textanimation .3s forwards;
  opacity: 0;
}

.kv-title .font-sm span {
  display: inline-block;
  transform: translateX(.2em);
  animation: textanimation .3s forwards;
  opacity: 0;
}

.kv-title span:nth-child(1) {
  animation-delay: 0.1s;
}
.kv-title span:nth-child(2) {
  animation-delay: 0.2s;
}
.kv-title span:nth-child(3) {
  animation-delay: 0.3s;
}
.kv-title span:nth-child(4) {
  animation-delay: 0.4s;
}
.kv-title span:nth-child(5) {
  animation-delay: 0.5s;
}
.kv-title span:nth-child(6) {
  animation-delay: 0.6s;
}
.kv-title span:nth-child(7) {
  animation-delay: 0.7s;
}
.kv-title span:nth-child(8) {
  animation-delay: 0.8s;
}
.kv-title span:nth-child(9) {
  animation-delay: 0.9s;
}
.kv-title span:nth-child(10) {
  animation-delay: 1s;
}
.kv-title span:nth-child(11) {
  animation-delay: 1.1s;
}

.kv-title .font-sm span:nth-child(1) {
  animation-delay: 1.2s;
}
.kv-title .font-sm span:nth-child(2) {
  animation-delay: 1.3s;
}
.kv-title .font-sm span:nth-child(3) {
  animation-delay: 1.4s;
}
.kv-title .font-sm span:nth-child(4) {
  animation-delay: 1.5s;
}
.kv-title .font-sm span:nth-child(5) {
  animation-delay: 1.6s;
}
.kv-title .font-sm span:nth-child(6) {
  animation-delay: 1.7s;
}
.kv-title .font-sm span:nth-child(7) {
  animation-delay: 1.8s;
}
.kv-title .font-sm span:nth-child(8) {
  animation-delay: 1.9s;
}
.kv-title .font-sm span:nth-child(9) {
  animation-delay: 2s;
}
.kv-title .font-sm span:nth-child(10) {
  animation-delay: 2.1s;
}
.kv-title .font-sm span:nth-child(11) {
  animation-delay: 2.2s;
}
.kv-title .font-sm span:nth-child(12) {
  animation-delay: 2.3s;
}

@keyframes textanimation {
  0% {
    transform: translateX(.2em);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.kv-catch {
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
}

.kv-catch span {
  display: inline-block;
  transform: translateX(.2em);
  animation: textanimation .3s forwards;
  opacity: 0;
}

.kv-catch span:nth-child(1) {
  animation-delay: 2.4s;
}
.kv-catch span:nth-child(2) {
  animation-delay: 2.5s;
}
.kv-catch span:nth-child(3) {
  animation-delay: 2.6s;
}
.kv-catch span:nth-child(4) {
  animation-delay: 2.7s;
}
.kv-catch span:nth-child(5) {
  animation-delay: 2.8s;
}
.kv-catch span:nth-child(6) {
  animation-delay: 2.9s;
}
.kv-catch span:nth-child(7) {
  animation-delay: 3.0s;
}
.kv-catch span:nth-child(8) {
  animation-delay: 3.1s;
}
.kv-catch span:nth-child(9) {
  animation-delay: 3.2s;
}
.kv-catch span:nth-child(10) {
  animation-delay: 3.3s;
}
.kv-catch span:nth-child(11) {
  animation-delay: 3.4s;
}
.kv-catch span:nth-child(12) {
  animation-delay: 3.5s;
}
.kv-catch span:nth-child(13) {
  animation-delay: 3.6s;
}

.kv-scroll {
  position: absolute;
  bottom: 144px;
  left: 0;
  font-size: 12px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

.kv-scroll::after,
.kv-scroll::before {
  content: "";
  position: absolute;
  top: 116px;
  left: -51px;
  border-bottom: solid 1px rgba(255,255,255, .5);
  width: 120px;
  transform: rotateZ(90deg);
}

.kv-scroll::after {
  top: 66px;
  left: -1px;
  border-bottom: solid 1px rgba(255,255,255, 1);
  width: 20px;
}

@media screen and (max-width: 1200px) {
  .kv-inner {
    width: 96%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .kv {
    margin-top: -80px;
  }

  .kv-title {
    font-size: 45px;
  }

  .kv-catch {
    font-size: 16px;
  }
}

/*-------------------------------------------------------------*/
/* home-bubble */

.home-bubble-contact {
  position: fixed;
  top: 187px;
  right: 0;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  background: #E2AC1B;
  padding: 46px 16px 20px;
  z-index: 2;
  transition: .3s;
}

.home-bubble-contact::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/assets/images/common/icon-email.svg) center/cover no-repeat;
  width: 24px;
  height: 19px;
}

.home-bubble-search {
  position: fixed;
  top: 375px;
  right: 0;
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  background: #28292B;
  padding: 48px 16px 23px;
  z-index: 2;
}

.home-bubble-search::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/assets/images/common/icon-search.svg) center/cover no-repeat;
  width: 20px;
  height: 20px;
}

.home-bubble-search:hover,
.home-bubble-contact:hover {
  transform: translateY(-3%);
}

.home-bubble-contact:hover {
  background: #D09904;
}

.home-bubble-search:hover {
  background: #0B0B0B;
}

@media screen and (max-width: 767px) {
  .home-bubble {
    display: flex;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 2;
  }

  .home-bubble.sp-unlock {
    position: relative;
  }

  .home-bubble-search,
  .home-bubble-contact {
    display: grid;
    place-items: center;
    position: relative;
    top: 0;
    left: 0;
    writing-mode: horizontal-tb;
    width: 50%;
    padding: 20px 0 20px 20px;
  }

  .home-bubble-contact::before {
    top: 48%;
    left: calc((50% - 10px) - (46px + 10px));
    transform: translateY(-50%);
    width: 20px;
    height: 16px;
  }

  .home-bubble-search::before {
    top: 50%;
    left: calc((50% - 10px) - (16px + 5px));
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
  }

  .home-bubble-search:hover,
  .home-bubble-contact:hover {
    transform: translateY(0);
  }
}

/*-------------------------------------------------------------*/
/* home-about */

.home-about {
  background: #F2F7F7;
  padding: 96px 0 12.34vw;
}

.home-about-inner {
  position: relative;
}

.home-about-img {
  width: 66.56vw;
}

.home-about-body {
  position: absolute;
  top: 5vw;
  right: 7.5vw;
  display: grid;
  place-items: center;
  background: #61ABD0;
  color: white;
  width: 36.56vw;
  height: 36.56vw;
}

.home-about-body-inner {
  max-width: 307px;
}

.home-about-ja {
  font-weight: 500;
  font-size: 14px;
}

.home-about-title {
  font-weight: 600;
  font-size: 42px;
}

.home-about-lead {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin: 42px 0 88px;
}

.home-about-link {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: white;
  padding-right: 76px;
}

.home-about-link::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 0;
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.home-about-link::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 14px;
  transform: translateY(-50%);
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  transition: .3s;
}

.home-about-link:hover::before {
  transform: translateX(10px);
  background: white;
}

.home-about-link:hover::after {
  transform: translate(10px, -50%);
  background: #61ABD0;
}

.home-about-link > span {
  position: relative;
}

.home-about-link > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.home-about-link:hover > span::after {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .home-about-ja {
    font-size: 1.29vw;
  }

  .home-about-title {
    font-size: 3.88vw;
  }

  .home-about-lead {
    font-size: 1.29vw;
    margin: 3.88vw 0 8.14vw;
  }
}

@media screen and (max-width: 767px) {
  .home-about {
    padding: 80px 0;
  }

  .home-about-img {
    width: 87.46vw;
  }

  .home-about-body {
    position: relative;
    top: 0;
    right: 0;
    width: 87.46vw;
    height: 89.86vw;
    padding: 3vw;
    margin-top: -80px;
    margin-left: auto;
    z-index: 1;
  }

  .home-about-ja {
    font-size: 14px;
  }

  .home-about-title {
    font-size: 38px;
  }

  .home-about-lead {
    font-size: 14px;
    margin: 32px 0 60px;
  }
}

@media screen and (max-width: 380px) {
  .home-about-lead {
    margin: 20px 0 40px;
  }
}

/*-------------------------------------------------------------*/
/* home-products */

.home-products {
  background: #076AB4;
  color: white;
  padding: 98px 0 137px;
}

.home-products-col {
  display: flex;
  gap: 57px;
}

.home-products-ja {
  font-weight: 500;
  font-size: 14px;
}

.home-products-title {
  font-weight: 600;
  font-size: 42px;
}

.home-products-lead {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-top: 15px;
}

.home-products-images {
  display: flex;
  gap: 80px;
  margin-top: 85px;
}

.home-products-line > span {
  display: block;
  height: 110px;
  background: transparent;
  border-left: 2px solid #fff;
  opacity: 0.4;
  margin-bottom: 5px;
}

.home-products-line > span:first-child {
  opacity: 1;
}

.home-products-body {
  width: 478px;
}

.home-products-slide {
  width: 398px;
  margin-top: 86px;
  margin-left: 80px;
}

.home-products-slide .dots-wrap {
  position: absolute;
  top: 0;
  left: -80px;
}

.home-products-slide .dots-wrap li {
  border-left: solid 2px rgba(255,255,255, .4);
  height: 100px;
}

.home-products-slide .dots-wrap li.slick-active {
  border-left: solid 2px rgba(255,255,255, 1);
}

.home-products-slide .dots-wrap li + li {
  margin-top: 5px;
}

.home-products-slide .dots-wrap li button {
  display: none;
}


.home-products-img {
  max-width: 398px;
}

.home-products-info {
  flex: 1;
}

.home-products-btn {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #2a6ab4;
  width: 250px;
  height: 64px;
  border-radius: 4px;
  background: #fff;
  padding: 0 28px;
}

.home-products-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  border: solid 1px #2A6AB4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.home-products-btn::after {
  content: "";
  position: absolute;
  top: 49%;
  right: 42px;
  transform: translateY(-50%);
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: #2a6ab4;
  width: 15px;
  height: 15px;
  transition: .3s;
}

.home-products-btn:hover {
  background: rgba(255,255,255, .9);
}

.home-products-btn:hover::before {
  transform: translate(3px, -50%);
  background: #2a6ab4;
}

.home-products-btn:hover::after {
  transform: translate(3px, -50%);
  background: white;
}

.home-products-btn > span {
  position: relative;
}

.home-products-btn > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #2a6ab4;
  width: 0;
  transition: .3s;
}

.home-products-btn:hover > span::after {
  width: 100%;
}

.home-products-list {
  margin-top: 40px;
}

.home-products-item:not(:first-child) {
  border-top: solid 1px rgba(255,255,255, .5);
  padding-top: 40px;
  margin-top: 40px;
}

.home-products-item > a {
  display: block;
  position: relative;
  color: white;
}

.home-products-item > a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  background: url(/assets/images/common/icon-arrow-right-n.svg) center/cover no-repeat;
  width: 11px;
  height: 20px;
}

.home-products-item > a:hover {
  transform: translateX(-3%);
  opacity: .8;
}

.home-products-item-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.home-products-item-title {
  position: relative;
  font-weight: 500;
  font-size: 24px;
}

.home-products-item-en {
  font-size: 14px;
  opacity: 0.8;
  transform: translateY(-6px);
}

.home-products-item-en::before {
  content: "....";
  display: inline-block;
  font-size: 29px;
  padding: 0 12px;
  transform: translateY(-4px);
  opacity: 1;
}

.home-products-item-text {
  font-size: 15px;
}

@media screen and (max-width: 1100px) {
  .home-products-body {
    width: 100%;
    max-width: 400px;
  }

  .home-products-slide {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .home-products-slide .dots-wrap {
    left: -20px;
  }

  .home-products-item-title-wrap {
    display: block;
    align-items: center;
    margin-bottom: 13px;
  }

  .home-products-item-en {
    display: inline-block;
    transform: translateY(-4px);
  }

  .home-products-item-en::before {
    font-size: 25px;
    padding: 0 12px 0 0;
    transform: translateY(-4px);
  }
}

@media screen and (max-width: 767px) {
  .home-products {
    padding: 80px 0;
  }

  .home-products-col {
    display: block;
  }

  .home-products-title {
    font-size: 38px;
  }

  .home-products-lead {
    margin-top: 32px;
  }

  .home-products-images {
    gap: 47px;
    margin-top: 42px;
  }

  .home-products-line > span {
    height: 68px;
    margin-bottom: 3px;
  }

  .home-products-slide {
    margin-top: 42px;
    margin-left: 5.2vw;
  }

  .home-products-slide .dots-wrap {
    left: -5.2vw;
  }

  .home-products-slide .dots-wrap li {
    height: 68px;
  }

  .home-products-slide .dots-wrap li + li {
    margin-top: 3px;
  }

  .home-products-body {
    max-width: 100%;
  }

  .home-products-img {
    width: 64.53vw;
  }

  .home-products-btn {
    border-radius: 0;
    margin: 42px auto 0;
  }

  .home-products-list {
    margin-top: 42px;
  }

  .home-products-item:not(:first-child) {
    padding-top: 18px;
    margin-top: 18px;
  }

  .home-products-item > a::after {
    top: 10px;
    width: 8px;
    height: 15px;
  }

  .home-products-item-title-wrap {
    display: block;
    margin-bottom: 18px;
  }

  .home-products-item-title {
    font-size: 18px;
  }

  .home-products-item-en {
    display: inline-block;
    font-size: 12px;
    transform: translateY(-2px);
  }

  .home-products-item-en::before {
    content: "....";
    display: inline-block;
    font-size: 20px;
    padding: 0 5px 0 0;
    transform: translateY(-3px);
  }

  .home-products-item-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

/*-------------------------------------------------------------*/
/* home-pick-up */

.home-pick-up {
  background: #F2F7F7;
  padding: 98px 0 0;
}

.home-pick-up-body {
  border-bottom: solid 1px #DBDBDB;
  padding-bottom: 96px;
}

.home-pick-up-ja {
  font-weight: 500;
  font-size: 14px;
  color: #28292b;
}

.home-pick-up-title {
  font-weight: 600;
  font-size: 42px;
  color: #0c65a7;
}

.home-pick-up-list {
  display: flex;
  gap: 28px;
  margin-top: 42px;
}
.home-pick-up-list-a{
  display: block;
	width: calc((100% - 56px) / 3);
}

.home-pick-up-date {
  font-size: 14px;
  font-weight: 600;
  color: #0c65a7;
  margin: 21px 0 7px; 
}

.home-pick-up-text {
  color: #28292b;
}

.home-pick-up-img{
	width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.home-pick-up-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .home-pick-up {
    padding: 80px 0 0;
  }

  .home-pick-up-body {
    padding-bottom: 80px;
  }

  .home-pick-up-title {
    font-size: 38px;
  }

  .home-pick-up-list {
    display: block;
		width:100%;
  }
  .home-pick-up-list-a {
		width:100%;
  }
  .home-pick-up-item + .home-pick-up-item {
    margin-top: 38px;
  }

  .home-pick-up-date {
    margin: 16px 0 6px; 
  }
}

/*-------------------------------------------------------------*/
/* home-information */

.home-information {
  background: #F2F7F7;
  padding: 96px 0 94px;
}

.home-information-col {
  display: flex;
  justify-content: space-between;
  gap: 106px;
}

.home-information-title-wrap {
  width: 266px;
}

.home-information-ja {
  font-weight: 500;
  font-size: 14px;
  color: #28292b;
  margin-bottom: 8px;
}

.home-information-title {
  font-weight: 600;
  font-size: 42px;
  color: #0c65a7;
}

.home-information-body {
  flex: 1;
}

.home-information-item {
  position: relative;
  border-bottom: solid 1px #DEDEDE;
  padding: 20px 18px;
  margin-bottom: 20px;
  transition: .3s;
}

.home-information-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-right-n-b.svg) center/cover no-repeat;
  width: 10px;
  height: 14px;
  transition: .3s;
}

.home-information-item:hover {
  background: rgba(222,222,222,.5);
}

.home-information-item:hover::after {
  transform: translate(10px, -50%);
}

.home-information-item-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-information-item-date {
  font-size: 14px;
  color: #28292b;
}

.home-information-item-category {
  display: grid;
  place-items: center;
  font-size: 12px;
  color: white;
  background: #e2ac1b;
  padding: 5px 17px;
}

.home-information-item-text {
  font-size: 15px;
  color: #28292b;
}

.home-information-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.home-information-link > a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: #28292b;
  padding-right: 53px;
  margin: 22px;
}

.home-information-link > a::after {
  content: "";
  position: absolute;
  top: 43%;
  right: 0;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-right-n-g.svg) center/cover no-repeat;
  width: 9px;
  height: 16px;
  transition: .3s;
}

.home-information-link > a:hover::after {
  transform: translate(10px, -50%);
}

.home-information-link > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #646569;
  width: 0;
  transition: .3s;
}

.home-information-link > a:hover::before {
  width: 75px;
}

@media screen and (max-width: 1000px) {
  .home-information-col {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .home-information {
    padding: 80px 0;
  }

  .home-information-col {
    display: block;
  }

  .home-information-title-wrap {
    width: 100%;
  }

  .home-information-ja {
    margin-bottom: 12px;
  }

  .home-information-title {
    font-size: 38px;
  }

  .home-information-body {
    margin-top: 42px;
  }

  .home-information-list {
    border-top: solid 1px #DEDEDE;
    padding-top: 20px;
  }

  .home-information-item::after {
    width: 8px;
    height: 14px;
  }

  .home-information-item-wrap {
    gap: 16px;
    margin-bottom: 8px;
  }

  .home-information-item-text {
    display: inline-block;
    font-size: 15px;
    padding-right: 1em;
  }

  .home-information-link {
    justify-content: center;
    margin-top: 41px;
  }

  .home-information-link > a {
    padding-right: 44px;
  }
}

/*-------------------------------------------------------------*/
/* home-contact */

.home-contact {
  display: flex;
  color: white;
  height: 160px;
}

.home-contact-title-wrap {
  display: grid;
  place-items: center;
  background: #61ABD0;
  width: 50%;
}

.home-contact-lead {
  position: relative;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.home-contact-lead::after,
.home-contact-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  border-left: solid 2px white;
  height: 42px;
  transform: rotateZ(-20deg);
}

.home-contact-lead::after {
  left: 272px;
  transform: rotateZ(20deg);
}

.home-contact-title {
  font-weight: 600;
  font-size: 28px;
}

.home-contact-body {
  display: grid;
  place-items: center;
  background: #0C65A7;
  width: 50%;
  padding: 0 10px;
}

.home-contact-body-inner {
  display: flex;
  align-items: center;
}

.home-contact-link-wrap {
  position: relative;
}

.home-contact-link-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/images/common/icon-faq.svg) center/cover no-repeat;
  width: 30px;
  height: 20px;
}

.home-contact-link {
  font-weight: 500;
  color: #fff;
  padding-left: 42px;
  padding-right: 75px;
}

.home-contact-link::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 0;
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.home-contact-link::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 14px;
  transform: translateY(-50%);
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  transition: .3s;
}

.home-contact-link:hover::before {
  transform: translateX(10px);
  background: white;
}

.home-contact-link:hover::after {
  transform: translate(10px, -50%);
  background: #0C65A7;
}

.home-contact-link > span {
  position: relative;
}

.home-contact-link > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.home-contact-link:hover > span::after {
  width: 100%;
}

.home-contact-text-wrap {
  border-left: solid 1px white;
  padding-left: 40px;
  margin-left: 40px;
}

.home-contact-text {
  font-weight: 600;
  font-size: 18px;
}

.home-contact-phone {
  font-size: 18px;
}
.home-contact-phone a{
	color:#fff;
}
@media screen and (max-width: 1050px) {
  .home-contact-title-wrap {
    width: 43%;
  }

  .home-contact-body {
    width: 57%;
  }

  .home-contact-title {
    font-size: 26px;
  }

  .home-contact-link {
    padding-left: 32px;
    padding-right: 50px;
  }

  .home-contact-text-wrap {
    padding-left: 10px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .home-contact {
    display: block;
    height: auto;
  }

  .home-contact-title-wrap {
    width: 100%;
    padding: 22px 0 21px;
  }

  .home-contact-lead {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .home-contact-lead::after,
  .home-contact-lead::before {
    left: 2px;
    transform: rotateZ(-25deg);
  }

  .home-contact-lead::after {
    left: 236px;
    transform: rotateZ(25deg);
  }

  .home-contact-title {
    font-size: 20px;
  }

  .home-contact-body {
    width: 100%;
    padding: 35px 0;
  }

  .home-contact-link {
    padding-left: 0;
    padding-right: 24px;
  }

  .home-contact-link::before {
    content: none;
  }

  .home-contact-link::after {
    top: 46%;
    transform: translateY(-50%);
    background: url(/assets/images/common/icon-arrow-right-n.svg) center/cover no-repeat;
    width: 8px;
    height: 14px;
  }

  .home-contact-text-wrap {
    padding-left: 15px;
    margin-left: 15px;
  }

  .home-contact-text {
    font-size: 16px;
  }

  .home-contact-phone {
    font-size: 14px;
  }
}

@media screen and (max-width: 370px) {
  .home-contact-text-wrap {
    padding-left: 10px;
    margin-left: 10px;
  }
}

/*-------------------------------------------------------------*/
/* lower */

.kv-lower {
  margin-top: 78px;
}

.kv-lower-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 1;
}

.kv-lower-inner.row {
  display: flex;
  justify-content: space-between;
  gap: 46px;
}

.kv-lower-inner.row-lg {
  display: flex;
  justify-content: space-between;
  gap: 58px;
  max-width: 100%;
  margin-left: 80px;
}

.kv-lower-inner.row .kv-lower-body {
  width: 450px;
}

.kv-lower-inner.row-lg .kv-lower-body {
  max-width: 416px;
}

.kv-lower-img {
  flex: 1;
}

.kv-lower-title-wrap {
  display: flex;
  align-items: center;
}

.kv-lower-title {
  font-size: 42px;
  color: #0c65a7;
}

.kv-lower-ja {
  position: relative;
  font-weight: 500;
  color: #28292b;
  padding-left: 40px;
}

.kv-lower-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  border-bottom: solid 1px #0C65A7;
  width: 24px;
}

.kv-lower-catch {
  font-weight: 600;
  font-size: 24px;
  margin-top: 42px;
  margin-bottom: 60px;
}

.kv-lower-text {
  font-weight: 500;
}

.kv-lower-text + .kv-lower-text {
  margin-top: 2em;
}

/* topic path */

.topic-path {
  margin-bottom: 27px;
}

.topic-path-list {
  display: flex;
}

.topic-path-list li a,
.topic-path-list li {
  font-weight: 500;
  font-size: 14px;
  color: #929498;
}

.topic-path-list li + li {
  border-left: solid 1px #929498;
  padding-left: 20px;
  margin-left: 20px;
}

.topic-path.topic-products {
  margin-top: 20px;
}

.topic-path.topic-products .topic-path-list li a,
.topic-path.topic-products .topic-path-list li {
  color: #28292b;
}

.topic-path.topic-products .topic-path-list li + li {
  border-left: solid 1px #28292b;
}

.topic-path-list li a:hover,
.topic-path.topic-products .topic-path-list li a:hover {
  color: #0C65A7;
}

/* others */

.line-base {
  border: none;
  border-top: 1px solid #DEDEDE;
  margin: 80px 0;
}

.line-base.my-40 {
  margin: 40px 0;
}

.pc-scroll {
  overflow-x: scroll;
	padding-bottom: 20px;
}

.section-text-link {
  color: #0C65A7;
  text-decoration: underline;
}

.mt-40 {
  margin-top: 40px;
}

@media screen and (max-width: 1400px) {
  .kv-lower-inner.row-lg {
    gap: 4.14vw;
    margin-left: 5.71vw;
  }

  .kv-lower-inner.row-lg .kv-lower-body {
    width: 29.64vw;
  }

  .kv-lower-inner.row-lg .kv-lower-title {
    font-size: 3vw;
  }

  .kv-lower-inner.row-lg .kv-lower-ja {
    padding-left: 2.85vw;
  }

  .kv-lower-inner.row-lg .kv-lower-ja::before {
    left: 0.57vw;
    width: 1.71vw;
  }

  .topic-path-list li + li {
    padding-left: 14px;
    margin-left: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .kv-lower-inner.row {
    gap: 3.83vw;
  }
}

@media screen and (max-width: 1110px) {
  .kv-lower-inner.row-lg,
  .kv-lower-inner.row {
    display: block;
    margin-left: 0;
  }

  .kv-lower-inner.row .kv-lower-body,
  .kv-lower-inner.row-lg .kv-lower-body,
  .kv-lower-body {
    width: 96%;
    max-width: 96%;
    margin: 0 auto 40px;
  }

  .kv-lower-inner.row-lg .kv-lower-title {
    font-size: 42px;
  }

  .kv-lower-inner.row-lg .kv-lower-ja {
    padding-left: 40px;
  }

  .kv-lower-inner.row-lg .kv-lower-ja::before {
    left: 8px;
    width: 24px;
  }

    .topic-path-list li + li {
      padding-left: 20px;
      margin-left: 20px;
    }
}

@media screen and (max-width: 840px) {
  .topic-path.scroll {
    overflow-x: scroll;
		padding-bottom:10px;
		-webkit-overflow-scrolling: touch;
  }

  .topic-path.scroll .topic-path-list {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .kv-lower {
    margin-top: 40px;
  }

  .kv-lower-ja {
    font-size: 14px;
  }

  .kv-lower-catch {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .kv-lower-title-wrap.sp-block {
    display: block;
  }

  .kv-lower-title-wrap.sp-block .kv-lower-ja {
    padding-left: 24px;
  }

  .kv-lower-title-wrap.sp-block .kv-lower-ja::before {
    top: 47%;
    left: 0;
    width: 16px;
  }

  .topic-path {
    width: 96%;
    margin: 0 auto 40px;
  }

  .topic-path-list {
    justify-content: flex-end;
  }

  .topic-path.scroll .topic-path-list {
    justify-content: flex-start;
  }

  .topic-path.topic-products {
    width: 100%;
    margin: 15px 0;
  }

  .line-base {
    margin: 40px 0;
  }
}

@media screen and (max-width: 480px) {
  .kv-lower-inner.row-lg .kv-lower-title,
  .kv-lower-title {
    font-size: 8.75vw;
  }

  .kv-lower-ja {
    font-size: 2.91vw;
    padding-left: 8.33vw;
  }

  .kv-lower-ja::before {
    left: 1.66vw;
    width: 5vw;
  }
}

@media screen and (max-width: 420px) {
  .topic-path-list li a,
  .topic-path-list li {
    font-size: 13px;
  }

  .topic-path-list li + li {
    padding-left: 10px;
    margin-left: 10px;
  }
}

/*-------------------------------------------------------------*/
/* company */

.company-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 82px;
}

.company-nav {
  position: relative;
  max-width: 357px;
}

.company-nav-list {
  position: sticky;
  top: 80px;
  width: 166px;
}

.company-nav-list li {
  border-bottom: solid 1px #DEDEDE;
}

.company-nav-list li a {
  position: relative;
  display: block;
  padding: 15px 0 15px 26px;
}

.company-nav-list li a.active,
.company-nav-list li a:hover {
  color: #076AB4;
  padding-left: 30px;
}

.company-nav-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: #0C65A7;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
}

.company-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #076AB4;
  width: 0;
  transition: .3s;
}

.company-nav-list li a.active::after,
.company-nav-list li a:hover::after {
  width: 100%;
}

.company-content {
  max-width: 767px;
}

.company-section-title {
  font-weight: normal;
  font-size: 42px;
  text-align: left;
  color: #0c65a7;
  line-height: 1.1;
  margin-bottom: 3px;
}

.company-section-ja {
  font-weight: 500;
}

/* company-section-message */

.company-section-message {
  padding-bottom: 80px;
}

.company-section-message-img {
  max-width: 520px;
  margin: 40px 0;
}

.company-section-message-catch {
  font-weight: 600;
  font-size: 28px;
  color: #0c65a7;
  margin-bottom: 40px;
}

.company-section-message-text {
  font-weight: 500;
  line-height: 2;
}

.company-section-message-text + .company-section-message-text {
  margin-top: 2rem;
}

.company-section-message-row {
  display: flex;
  gap: 40px;
}

.company-section-message-row + .company-section-message-row {
  margin-top: 80px;
}

.company-section-message-row.reverse {
  flex-direction: row-reverse;
}

.company-section-message-row-img {
  width: 370px;
}

.company-section-message-row-body {
  width: 352px;
}

/* company-section-history */

.company-section-history {
  border-top: solid 1px #DEDEDE;
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-section-history-img {
  width: 7533px;
  margin-top: 35px;
}

.company-section-history-area {
  margin-top: 35px;
}

.company-section-history-list {
  display: flex;
  gap: 40px;
  border-top: solid 1px #28292B;
  width: 7514px;
}

.company-section-history-item {
  position: relative;
  width: 319px;
  padding-top: 64px;
}

.company-section-history-item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 42px;
  width: 7px;
  height: 7px;
  background: #0c65a7;
  border-radius: 50%;
}

.company-section-history-item::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 44px;
  width: 2px;
  height: 60px;
  background-image: radial-gradient(circle, #000000 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 6px;
}

.company-section-history-year {
  position: relative;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
}

.company-section-history-year::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  border-bottom: 2px solid #0c65a7;
}

.company-section-history-box {
  display: flex;
  gap: 12px;
  font-weight: 500;
}

.company-section-history-box > p:nth-child(2) {
  flex: 1;
}


/* company-section-information */

.company-section-information {
  border-top: solid 1px #DEDEDE;
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-section-information-table {
  width: 100%;
  margin-top: 75px;
}

.company-section-information-table tr {
  position: relative;
  border-top: solid 1px #DEDEDE;
}

.company-section-information-table tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: solid 2px #0C65A7;
  width: 30px;
}

.company-section-information-table th {
  font-weight: 600;
  padding: 20px 0;
  width: 170px;
}

.company-section-information-table td {
  font-weight: 500;
  padding: 20px 0;
}

/* company-section-base */

.company-section-base {
  border-top: solid 1px #DEDEDE;
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-section-base-note {
  font-weight: 500;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 20px;
}

.company-section-base-row {
  display: flex;
  flex-direction: row-reverse;
  gap: 43px;
  margin-top: 40px;
}

.company-section-base-row + .company-section-base-row {
  margin-top: 80px;
}

.company-section-base-row.reverse {
  flex-direction: row;
}

.company-section-base-row-images {
  width: 338px;
}

.company-section-base-row-map {
  margin-top: 20px;
}

.company-section-base-row-body {
  width: 381px;
}

.company-section-base-title {
  font-weight: 700;
  font-size: 24px;
  color: #0c65a7;
  margin-bottom: 40px;
}

.company-section-base-dl {
  display: flex;
  border-bottom: solid 1px #DEDEDE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.company-section-base-dl dt {
  font-weight: 600;
  width: 76px;
}

.company-section-base-dl dd {
  font-weight: 500;
  width: calc(100% - 76px);
}

.company-section-base-dl-note {
  font-weight: 500;
  font-size: 14px;
}

/* company-section-technology */

.company-section-technology {
  border-top: solid 1px #DEDEDE;
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-section-technology-accordion-wrap {
  margin-bottom: 80px;
}

.company-section-technology-accordion + .company-section-technology-accordion {
  margin-top: 1px;
}

.company-section-technology-accordion-title {
  position: relative;
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 18px;
  border-left: solid 5px #0c65a7;
  background: #DEDEDE;
  padding: 13px 0 11px 25px;
  cursor: pointer;
}

.company-section-technology-accordion-title::after {
  content: "";
  clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  background: #0C65A7;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  transition: .3s;
}

.company-section-technology-accordion-title.active::after {
  transform: rotateZ(180deg);
}

.company-section-technology-accordion-body {
  display: none;
  padding: 16px 25px 22px;
}

.company-section-technology-text,
.company-section-technology-list,
.company-section-technology-accordion-list {
  font-weight: 500;
  font-size: 18px;
}

.company-section-technology-list li,
.company-section-technology-accordion-list li {
  position: relative;
  padding-left: 20px;
}

.company-section-technology-list li + li,
.company-section-technology-accordion-list li + li {
  margin-top: 10px;
}

.company-section-technology-list li::before,
.company-section-technology-accordion-list li::before {
  content: "";
  position: absolute;
  top: 43%;
  left: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #0c65a7;
  border-radius: 50%;
}

.company-section-technology-list {
  max-width: 300px;
  margin-bottom: 80px;
}

.company-section-technology-list li {
  display: flex;
  justify-content: space-between;
}

.company-section-technology-text {
  line-height: 2;
  margin-bottom: 80px;
}

.company-section-technology-title {
  font-weight: 700;
  font-size: 28px;
  color: #0c65a7;
  margin-bottom: 40px;
}

.company-section-technology-table {
  font-size: 18px;
  width: 100%;
  border-top: solid 1px #DEDEDE;
  margin-bottom: 80px;
}

.company-section-technology-table td,
.company-section-technology-table th {
  font-weight: 500;
  padding: 12px 20px;
  border-bottom: solid 1px #DEDEDE;
  vertical-align: middle;
}

.company-section-technology-table th {
  font-weight: 600;
  background: #DEDEDE;
  border-bottom: solid 1px white;
}

.company-section-technology-row {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

.company-section-technology-list.w-50 {
  max-width: 50%;
  margin-bottom: 0;
}

@media screen and (max-width: 990px) {
  .company-container {
    justify-content: flex-start;
  }

  .company-content {
    max-width: calc(100% - (20px + 166px));
  }
}

@media screen and (max-width: 767px) {
  .company-content {
    max-width: 100%;
  }

  .company-nav {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .company-nav-list {
    position: static;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-top: solid 1px #DEDEDE;
    border-left: solid 1px #DEDEDE;
  }

  .company-nav-list li {
    width: 50%;
    border-bottom: solid 1px #DEDEDE;
    border-right: solid 1px #DEDEDE;
  }

  .company-nav-list li + li {
    border-top: none;
  }

  .company-nav-list li a {
    padding: 12px 0 14px 52px;
  }

  .company-nav-list li a::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 30px;
    clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
    background: #0C65A7;
    width: 10px;
    height: 10px;
  }

  .company-nav-list li a.active,
  .company-nav-list li a:hover {
    color: #076AB4;
    padding-left: 52px;
  }

  .company-container {
    display: block;
    padding-top: 80px;
  }

  .company-section-message {
    padding-bottom: 40px;
  }

  .company-section-message-img {
    max-width: 100%;
  }

  .company-section-message-catch {
    font-size: 18px;
  }

  .company-section-message-row {
    display: block;
  }

  .company-section-message-row-body,
  .company-section-message-row-img {
    width: 100%;
  }

  .company-section-message-row-img {
    margin-bottom: 40px;
  }

  .company-section-message-row + .company-section-message-row {
    margin-top: 72px;
  }

  .company-section-history {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company-section-information {
    padding-bottom: 40px;
  }

  .company-section-information-table th {
    width: 50%;
  }

  .company-section-information-table td > p + p {
    margin-top: 2em;
  }

  .company-section-base {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .company-section-base-row {
    display: block;
  }

  .company-section-base-row-body,
  .company-section-base-row-images {
    width: 100%;
  }

  .company-section-base-row-body {
    margin-bottom: 20px;
  }

  .company-section-base-row-images {
    margin-bottom: 40px;
  }

  .company-section-base-title {
    margin-top: 40px;
    font-size: 22px;
  }

  .company-section-base-row + .company-section-base-row {
    margin-top: 20px;
  }

  .company-section-technology {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company-section-technology-accordion-wrap {
    margin-bottom: 40px;
  }

  .company-section-technology-table {
    margin-bottom: 40px;
  }

  .company-section-technology-table th {
    width: 140px;
  }

  .company-section-technology-table th > p {
    font-size: 16px;
  }

  .company-section-technology-table th span {
    font-size: 14px;
  }

  .company-section-technology-table td {
    font-size: 15px;
  }

  .company-section-technology-list {
    margin-bottom: 40px;
  }

  .company-section-technology-text {
    margin-bottom: 40px;
  }

  .company-section-technology-row {
    display: block;
  }

  .company-section-technology-list.w-50 {
    max-width: 100%;
  }

  .company-section-technology-list + .company-section-technology-list {
    margin-top: 10px;
  }
}

/*-------------------------------------------------------------*/
/* products */

.products-section {
  background: #ECF0F5;
  padding-top: 77px;
  padding-bottom: 120px;
}

.products-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 79px;
  margin-top: 80px;
}

.products-section-item {
  width: 320px;
}

.products-section-item-img {
  display: block;
  overflow: hidden;
}

.products-section-item-title {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #004aaf;
  margin-top: 30px;
  margin-bottom: 16px;
}

.products-section-item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #076AB4;
  width: 0;
  transition: .3s;
}

.products-section-item > a:hover .products-section-item-img img {
  transform: scale(110%);
}

.products-section-item > a:hover .products-section-item-title::after {
  width: 100%;
}

.products-section-item-text {
  font-weight: 500;
}

.products-section-link-box {
  display: flex;
  justify-content: center;
}

.products-section-link-box.mt-40 {
  margin-top: 40px;
}

.products-section-link {
  position: relative;
  display: flex;
  gap: 36px;
  font-weight: 500;
  color: #0c65a7;
}

.products-section-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #0C65A7;
  width: 0;
  transition: .3s;
}

.products-section-link:hover::before {
  width: 80px;
}

.products-section-link::after {
  content: "";
  display: block;
  clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  background: #0C65A7;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  transition: .3s;
}

.products-section-btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-size: 20px;
  color: white;
  background: #0C65A7;
  padding: 45px 0;
}

.products-section-btn-wrap:hover {
  background: rgba(12,101,167,.9);
}

.products-section-btn-wrap::before {
  content: "";
  background: url(/assets/images/common/icon-search.svg) center/cover no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.products-section-btn {
  position: relative;
  padding-right: 76px;
}

.products-section-btn::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.products-section-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 14px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  transition: .3s;
}

.products-section-btn-wrap:hover .products-section-btn::before {
  transform: translateX(10px);
  background: white;
}

.products-section-btn-wrap:hover .products-section-btn::after {
  transform: translateX(10px);
  background: #0C65A7;
}

.products-section-btn > span {
  position: relative;
}

.products-section-btn > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.products-section-btn-wrap:hover .products-section-btn > span::after {
  width: 100%;
}

.products-section-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #052D57;
  color: white;
}

.products-section-bottom::before {
  content: "CREATE";
  position: absolute;
  bottom: -72px;
  left: -50px;
  font-weight: bold;
  font-style: italic;
  font-size: 167px;
  letter-spacing: -0.03em;
  color: #dedede;
  opacity: 0.08;
}

.products-section-bottom:hover {
  opacity: .9;
}

.products-section-bottom-body {
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.products-section-bottom-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.products-section-bottom-title {
  font-weight: 500;
  font-size: 30px;
}

.products-section-bottom-ja {
  position: relative;
  font-size: 18px;
  opacity: 0.8;
}

.products-section-bottom-ja::before {
  content: "....";
  display: inline-block;
  font-size: 20px;
  padding: 0 9px;
  transform: translateY(-4px);
  opacity: 1;
}

.products-section-bottom-img {
  position: relative;
  max-width: 647px;
  z-index: 1;
}

@media screen and (max-width: 1400px) {
  .products-section-bottom::before {
    bottom: -5.14vw;
    left: -3.57vw;
    font-size: 11.92vw;
  }

  .products-section-list {
    gap: 4.28vw 5.64vw;
  }

  .products-section-item {
    width: calc((100% - (5.64vw * 2)) / 3);
  }
}

@media screen and (max-width: 1050px) {
  .products-section-bottom-body {
    padding-left: 20px;
  }

  .products-section-bottom-img {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .products-section-bottom::before {
    content: none;
  }

  .products-section {
    padding-top: 40px;
    padding-bottom: 80px;
    margin-top: 0;
  }

  .products-section-list {
    display: block;
    margin-top: 0;
  }

  .products-section-item {
    width: 100%;
  }

  .products-section-item + .products-section-item {
    margin-top: 56px;
  }

  .products-section-bottom {
    display: block;
  }

  .products-section-bottom-body {
    padding: 20px;
  }

  .products-section-bottom-wrap {
    margin-bottom: 10px;
  }

  .products-section-bottom-title {
    font-size: 22px;
  }

  .products-section-bottom-ja {
    font-size: 12px;
  }

  .products-section-bottom-text {
    font-size: 14px;
  }

  .products-section-bottom-img {
    max-width: 100%;
  }
}

/*-------------------------------------------------------------*/
/* muls */

.muls-section-others,
.muls-section-recommend,
.muls-section-product,
.muls-section-what {
  border-top: solid 1px #DEDEDE;
  padding-top: 80px;
  margin-top: 80px;
}

.muls-section-what {
  border: none;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 120px;
}

.muls-section-what + .muls-section-what {
  border-top: solid 1px #DEDEDE;
  padding-top: 120px;
}

.muls-section-product + .muls-section-product {
  border-top: none;
  padding-top: 120px;
  margin-top: 0;
}

.muls-section-recommend.pb-80 {
  padding-bottom: 80px;
}

.muls-section-others {
  padding-bottom: 120px;
}

.muls-section-title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  padding-left: 23px;
  margin-bottom: 20px;
}

.muls-section-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  border-left: solid 12px #0e77e0;
  height: 27px;
}

.products-single-information-body-name + .muls-section-title {
  margin-top: 40px;
}

.muls-section-what-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.muls-section-what-row + .muls-section-what-row {
  margin-top: 80px;
}

.muls-section-what-row.reverse {
  flex-direction: row-reverse;
}

.muls-section-what-row-images {
  max-width: 560px;
}

.muls-section-what-row-text {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
  margin-top: 20px;
}

.muls-section-what-row + .pc .muls-section-what-text {
  margin-top: 80px;
}

.muls-section-what-row-body {
  max-width: 540px;
}

.muls-section-what-row-title {
  font-weight: 500;
  font-size: 18px;
  min-height: 54px;
  margin-bottom: 20px;
}

.muls-section-what-row + .muls-section-what-row-title {
  margin-top: 107px;
}

.muls-section-what-text {
  font-size: 15px;
  line-height: 1.8;
}

.muls-section-what-text + .muls-section-what-text {
  margin-top: 2em;
}

.muls-section-what-list {
  display: flex;
  gap: 73px;
  margin-top: 40px;
}

.muls-section-what-item {
  max-width: 286px;
}

.muls-section-what-item-name {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}

/* muls-section-product */

.muls-section-product-title {
  font-weight: 600;
  font-size: 32px;
  color: #0c65a7;
  margin-bottom: 40px;
}

.muls-section-product-series {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.muls-section-product-text {
  font-weight: 500;
  font-size: 18px;
}

.muls-section-product-list {
  position: relative;
  display: grid;
  flex-wrap: wrap;
  gap: 20px 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.muls-section-product-item {
  padding: 0 20px;
}

.muls-section-product-item:not(:nth-child(3n)) {
  border-right: solid 1px #DEDEDE;
}

.muls-section-product-item-img {
  display: block;
  overflow: hidden;
}

.muls-section-product-item-img > a {
  display: block;
  overflow: hidden;
}

.muls-section-product-item-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 340px;
}

.muls-section-product-item-name {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  margin-top: 11px;
  margin-bottom: 7px;
}

.muls-section-product-item-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #076AB4;
  width: 0;
  transition: .3s;
}

.muls-section-product-item-en {
  font-weight: 600;
  font-size: 13px;
}

.muls-section-product-item-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
  margin-top: 20px;
}

.muls-section-product-item-tags a {
  display: block;
  place-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #646569;
  text-align: center;
  line-height: 1.1;
  max-width: 105px;
  height: 41px;
  border-radius: 20px;
  background: #efefef;
}

.muls-section-product-item-tags a:hover {
  background: #646569;
  color:#fff;
}
.muls-section-product-item-tag {
  display: block;
  place-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #076AB4;
  text-align: center;
  line-height: 1.1;
  width: 105px;
  height: 41px;
  border-radius: 20px;
  background: #A0CCE3;
}

.muls-section-product-item:hover .muls-section-product-item-img img {
  transform: scale(110%);
}

.muls-section-product-item:hover .muls-section-product-item-name::after {
  width: 100%;
}

/* muls-section-recommend */

.muls-section-recommend-list {
  display: flex;
  gap: 26px;
}

.muls-section-recommend-item {
  display: block;
  width: 260px;
  overflow: hidden;
}
.muls-section-recommend-item-img img{
	width:100%;
	aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: .3s;
}
.muls-section-recommend-item:hover {
  opacity: .8;
}

.muls-section-recommend-item:hover img {
  transform: scale(110%);
}


/* muls-section-others */

.muls-section-others-row {
  display: flex;
}

.muls-section-others-body:first-child {
  padding-right: 40px;
  margin-right: 40px;
  border-right: solid 1px #DEDEDE;
}

.muls-section-others-box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.muls-section-others-text {
  font-weight: 600;
  font-size: 18px;
}

.muls-section-others-btn {
  position: relative;
  display: block;
  font-weight: 500;
  color: #fff;
  width: 280px;
  height: 60px;
  border-radius: 4px;
  background: #0e77e0;
  padding: 18px 24px;
}

.muls-section-others-btn::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 18px;
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.muls-section-others-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 32px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  transition: .3s;
}

.muls-section-others-btn:hover {
  background: rgba(14, 119, 224, .8);
}

.muls-section-others-btn:hover::before,
.muls-section-others-btn:hover::after {
  transform: translateX(3px);
}

.muls-section-others-btn > span {
  position: relative;
}

.muls-section-others-btn > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.muls-section-others-btn:hover > span::after {
  width: 100%;
}

.muls-section-others-btn.bg-yellow {
  background: #E2AC1B;
}

.muls-section-others-btn.bg-yellow:hover {
  background: #D09904;
}


@media screen and (max-width: 1160px) {
  .muls-section-product-item {
    padding: 0 1.72vw;
  }

  .muls-section-product-item-tags {
    gap: 0.68vw 1.03vw;
  }

  .muls-section-product-item-tag {
    font-size: 1.2vw;
    width: 8.7vw;
    height: 3.53vw;
    border-radius: 1.72vw;
  }

  .muls-section-others-body:first-child {
    padding-right: 3.57vw;
    margin-right: 3.57vw;
  }
}

@media screen and (max-width: 767px) {
  .muls-section-product-item-tags {
    gap: 8px 13px;
  }

  .muls-section-product-item-tag {
    font-size: 12px;
    width: 100%;
    height: 41px;
    border-radius: 20px;
  }

  .muls-section-others,
  .muls-section-recommend,
  .muls-section-product,
  .muls-section-what {
    padding-top: 40px;
    margin-top: 40px;
  }

  .muls-section-what {
    padding-top: 0;
    margin-bottom: 0;
  }

  .muls-section-what + .muls-section-what {
    padding-top: 40px;
  }

  .muls-section-product + .muls-section-product {
    padding-top: 40px;
  }

  .muls-section-what:first-child {
    border-top: none;
    margin-top: 0;
  }

  .muls-section-title {
    font-size: 20px;
    padding-left: 17px;
    margin-bottom: 40px;
  }

  .muls-section-title::before {
    border-left: solid 9px #0e77e0;
    height: 21px;
  }

  .muls-section-what-row {
    display: block;
  }

  .muls-section-what-row-body {
    max-width: 100%;
  }

  .muls-section-what-row-images {
    max-width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    aspect-ratio: 16 / 9;
  }

  .muls-section-what-row-images iframe {
    width: 100%;
    height: 100%;
  }

  .muls-section-what-row-title {
    min-height: auto;
  }
  
  .muls-section-what-row + .muls-section-what-row-title {
    margin-top: 80px;
  }

  .muls-section-product-title {
    font-size: 26px;
  }

  .muls-section-product-series {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .muls-section-product-text {
    font-size: 16px;
  }

  .muls-section-product-list {
    display: block;
    margin-bottom: 40px;
  }

  .muls-section-product-item {
    width: 100%;
    padding: 0;
  }

  .muls-section-product-item:not(:nth-child(3n)) {
    border-right: none;
  }

  .muls-section-product-item + .muls-section-product-item {
    margin-top: 40px;
  }

  .muls-section-product-item-name {
    margin-top: 19px;
    margin-bottom: 6px;
  }

  .muls-section-recommend-list {
    flex-wrap: wrap;
    gap: 3.38vw;
    margin-top: 40px;
  }

  .muls-section-recommend-item {
    width: calc((100% - 3.38vw) / 2);
  }

  .muls-section-others {
    padding-bottom: 80px;
  }

  .muls-section-others-row {
    display: block;
  }

  .muls-section-others-body:first-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .muls-section-others-body + .muls-section-others-body {
    margin-top: 40px;
  }

  .muls-section-others-text {
    margin-bottom: 10px;
  }

  .muls-section-others-btn {
    width: 100%;
  }

  .muls-section-what-text + .sp .muls-section-what-text {
    margin-top: 2em;
  }

  .muls-section-what-list {
    gap: 20px;
  }

  .muls-section-what-item-name {
    font-size: 14px;
    margin-top: 20px;
  }
}

/*-------------------------------------------------------------*/
/* guard */

.guard-section-title {
  display: grid;
  place-content: center;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  width: 90px;
  background: #0e77e0;
  padding: 4px;
  margin-bottom: 20px;
}

.guard-section-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  margin-bottom: 80px;
}

.guard-section-list.mt-40 {
  margin-top: 40px;
}

.guard-section-item {
  max-width: 340px;
}

.guard-section-item-text {
  font-weight: 500;
  line-height: 1.8;
  color: #646569;
  margin-top: 18px;
}

.muls-section-what-text + .guard-section-title {
  margin-top: 40px;
}

.guard-section-list-note {
  font-weight: 600;
  font-size: 18px;
  color: #646569;
}

@media screen and (max-width: 767px) {
  .guard-section-title {
    width: 100%;
    margin-bottom: 40px;
  }

  .guard-section-list {
    display: block;
    margin-bottom: 40px;
  }

  .guard-section-item {
    max-width: 100%;
  }

  .guard-section-item + .guard-section-item {
    margin-top: 50px;
  }
}

/*-------------------------------------------------------------*/
/* other */

.muls-section-what-row.g-40 {
  gap: 40px;
}

.other-section-what-row-list li {
  list-style: disc;
  margin-left: 1rem;
}

.other-section-what-row-list li + li {
  margin-top: .5em;
}

.guard-section-list.text-center {
  margin-top: 40px;
}

.guard-section-list.text-center .guard-section-item {
  text-align: center;
}

.guard-section-item-name {
  font-weight: 600;
  font-size: 18px;
  color: #646569;
  margin: 20px 0;
}

/*-------------------------------------------------------------*/
/* search */

.search-section-content {
  padding-top: 42px;
  padding-bottom: 120px;
}

.search-section-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.search-section-category {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-left: solid 1px #DEDEDE;
}

.search-section-category li {
  border: solid 1px #DEDEDE;
	border-left: 0;
	margin-top:-1px;
  width: calc(100% / 7);
}

.search-section-category li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 10px 9px 32px;
  height: 100%;
}

.search-section-category li a:hover {
  background: #E4ECF0;
}

.search-section-category li a.active {
  color: #076AB4;
  background: #A0CCE3;
}

.search-section-category li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  background: #0C65A7;
  width: 10px;
  height: 10px;
  /* margin-top: 6px; */
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid #707070;
  border-radius: 6px;
}

.search-form label {
  width: calc(100% - 50px);
}

.search-form input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
}

.search-form .search-form-clear,
.search-form .search-form-button {
  display: grid;
  place-content: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.search-form .search-form-clear::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/assets/images/common/icon-clear.svg) center/cover no-repeat;
}

.search-form .search-form-button::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/assets/images/common/icon-search-bk.svg) center/cover no-repeat;
}

.search-section-text {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
  margin-top: 20px;
  margin-bottom: 40px;
}

.search-section-text > a {
  color: #0C65A7;
  text-decoration: underline;
}

.search-section-icons {
  display: flex;
  gap: 40px;
}

.search-section-icons-col {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-section-icons-col > p {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
}

.search-section-icons-rohs {
  width: 80px;
}

.search-section-icons-pdf {
  width: 43px;
}

.search-section-table {
  width: 100%;
  min-height: 130px;
}

.search-section-table tr {
  border-bottom: dotted 2px #DEDEDE;
}

.search-section-table tr:first-child {
  border-bottom: solid 2px #DEDEDE;
}

.search-section-table th {
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
}

.search-section-table td {
  font-size: 15px;
  text-align: center;
  padding: 12px 16px;
  vertical-align: middle;
}

.search-section-table td:first-child {
  text-align-last: left;
}

.search-section-table td a {
  text-decoration: underline;
  color: #0c65a7;
}

.search-section-table td a:hover {
  color: #004AAF;
}

.search-section-table td a:visited {
  color: #7041A0;
}

.search-section-table-rohs {
  display: inline-block;
  width: 80px;
}

.search-section-table-pdf {
  display: inline-block;
  width: 37px;
}

.scroll-hint-icon::before {
  background-image: url(/assets/images/common/icon-finger.svg);
}

.scroll-hint-icon:after {
  content: none;
}

@media screen and (max-width: 900px) {
  .search-section-table {
    width: 1000px;
  }
}

@media screen and (max-width: 767px) {
  .search-section-content {
    padding-top: 10px;
  }

  .search-section-category li {
    width: calc(100% / 2);
  }

  .search-section-text {
    line-height: 2;
    margin-top: 40px;
  }

.search-section-icons-col > p {
    font-size: 14px;
  }
}

/*-------------------------------------------------------------*/
/* news */

.news-section-content {
  padding-top: 23px;
  padding-bottom: 120px;
}

.news-section-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 40px;
}

.news-section-category {
  display: grid;
  place-content: center;
  font-size: 12px;
  background: #DEDEDE;
  min-width: 83px;
  padding: 4px 10px;
}

.news-section-category:hover,
.news-section-category.info,
.news-section-category.active {
  background: #E2AC1B;
  color: white;
}

.news-section-list {
  border-top: solid 1px #DEDEDE;
  margin-top: 40px;
	opacity: 0;
  animation: newsListIn 0s ease forwards;
  animation-delay: .1s;
}
@keyframes newsListIn{
  to { opacity: 1; }
}

.news-section-item > a {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: solid 1px #DEDEDE;
  padding: 28px 18px;
}

.news-section-item > a:hover {
  background: rgba(222, 222, 222, .5);
}

.news-section-item-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-section-date {
  font-size: 14px;
}

.news-section-item-title {
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .news-section-content {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .news-section-categories .news-section-category {
    width: calc((100% - (20px * 2)) / 3);
  }

  .news-section-item > a {
    display: block;
    gap: 16px;
    padding: 20px 15px;
  }

  .news-section-item-box {
    margin-bottom: 8px;
  }
}

/*-------------------------------------------------------------*/
/* news single */

.news-section-single-content {
  padding-top: 42px;
  padding-bottom: 200px;
}

.news-section-single-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.news-section-single-box {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.news-section-single-date {
  font-weight: 500;
  color: #646569;
}

@media screen and (max-width: 767px) {
  .news-section-single-content {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .news-section-single-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .news-section-single-box {
    gap: 20px;
  }

  .news-section-single-date {
    font-size: 15px;
  }
}

/*-------------------------------------------------------------*/
/* blog */

#blog p {
  font-weight: 500;
  line-height: 2;
}

#blog p + p {
  margin-top: 2rem;
}

#blog a {
  color: #0c65a7;
  text-decoration: underline;
}

#blog a:hover {
  color: #004AAF;
}

#blog a:visited {
  color: #7041A0;
}

/*-------------------------------------------------------------*/
/* voice */

.voice-section-banner-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.voice-section-banner-item {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.voice-section-banner-item:hover {
  opacity: .8;
}

.voice-section-banner-item:hover img {
  transform: scale(110%);
}

.voice-section-omitted {
  color: #707070;
  margin-top: 40px;
  margin-bottom: 20px;
}

.voice-section-title {
  font-weight: 500;
  font-size: 20px;
  background: #ededed;
  padding: 16px 20px;
}

.voice-section-text {
  padding: 20px 20px 40px;
}

@media screen and (max-width: 767px) {
  .voice-section-banner-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .voice-section-text {
    line-height: 2;
  }

  .voice-section-text:last-of-type {
    padding-bottom: 0;
  }
}

/*-------------------------------------------------------------*/
/* voice single */

.voice-single-content {
  border-top: solid 1px #BFBFBF;
  padding-top: 80px;
  margin-top: 80px;
}

.voice-single-content.border-none {
  border-top: none;
  margin-top: 0;
}

.voice-single-title {
  font-weight: 600;
  font-size: 32px;
  color: #0c65a7;
}

.voice-single-content-img {
  margin: 40px 0;
}

.voice-single-content-lead {
  font-weight: 500;
  font-size: 18px;
}

.voice-single-content-lead + .voice-single-content-lead {
  margin-top: 1em;
}

.voice-single-subtitle {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  padding-left: 23px;
  margin-bottom: 20px;
}

.voice-single-subtitle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  border-left: solid 12px #0e77e0;
  height: 27px;
}

.voice-single-content-text {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
}

.voice-single-content-text + .voice-single-content-text {
  margin-top: 1.5rem;
}

.voice-single-content-text.mt-lg {
  margin-top: 4em;
}

.voice-single-content-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.voice-single-content-row-text {
  font-weight: 500;
  color: #646569;
  margin-top: 10px;
}

.voice-single-content-row-body {
  flex: 1;
}

.voice-single-content-row-images {
  width: 280px;
}

.voice-single-content-web {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.voice-single-content-web-name {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.voice-single-content-web-inner {
  display: flex;
  gap: 10px;
  font-weight: 500;
}

.voice-single-content-web-inner a {
  color: #0c65a7;
  text-decoration: underline;
}

.voice-single-content-web-inner a:hover {
  opacity: .8;
}

.voice-single-content-partner {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.voice-single-content-box {
  display: flex;
  justify-content: center;
}

.voice-single-content-web-banner,
.voice-single-content-box-banner {
  display: block;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  max-width: 360px;
  overflow: hidden;
}

.voice-single-content-web-banner:hover ,
.voice-single-content-box-banner:hover {
  opacity: .8;
}

.voice-single-content-web-banner:hover img ,
.voice-single-content-box-banner:hover img {
  transform: scale(110%);
}

.voice-single-pagination {
  border-top: solid 1px #BFBFBF;
  padding-top: 80px;
  padding-bottom: 120px;
  margin-top: 80px;
}

.voice-single-pagination-row {
  display: flex;
  gap: 80px;
}

.voice-single-pagination-body {
  width: 50%;
}

.voice-single-pagination-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  color: #646569;
  padding-right: 30px;
}

.voice-single-pagination-link:hover {
  color: #076AB4;
}

.voice-single-pagination-link-next::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: #646569;
  width: 20px;
  height: 20px;
  transition: .3s;
}
.voice-single-pagination-link-prev{
  padding-right: 0;
  padding-left: 30px;
}

.voice-single-pagination-link-prev::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  clip-path: polygon(60% 0, 10% 50%, 60% 100%, 70% 90%, 30% 50%, 70% 10%);
  background: #646569;
  width: 20px;
  height: 20px;
  transition: .3s;
}

.voice-single-pagination-link-next:hover::after,
.voice-single-pagination-link-prev:hover::after {
  background: #076AB4;
  transform: translateX(5px);
}

.voice-single-pagination-link-prev:hover::after {
  transform: translateX(-5px);
}

@media screen and (max-width: 767px) {
  .voice-single-content {
    padding-top: 40px;
    margin-top: 40px;
  }

  .voice-single-content.border-none {
    padding-top: 0;
  }

  .voice-single-title {
    font-size: 24px;
  }

  .voice-single-content-lead {
    font-size: 16px;
  }

  .voice-single-subtitle {
    font-size: 20px;
    padding-left: 17px;
    margin-bottom: 40px;
  }

  .voice-single-subtitle::before {
    border-left: solid 9px #0e77e0;
    height: 21px;
  }

  .voice-single-content-text {
    line-height: 1.7;
  }

  .voice-single-content-text.mt-lg {
    margin-top: 3em;
  }

  .voice-single-content-row {
    display: block;
  }

  .voice-single-content-row-text {
    font-size: 15px;
    margin-top: 16px;
  }

  .voice-single-content-row-body + .voice-single-content-row-body {
    margin-top: 40px;
  }

  .voice-single-content-row-images {
    margin: 40px auto 0;
  }

  .voice-single-content-web {
    display: block;
  }

  .voice-single-content-web-banner {
    margin: auto;
  }

  .voice-single-content-web-body {
    margin-top: 25px;
  }

  .voice-single-content-web-name {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .voice-single-content-web-inner {
    display: block;
    font-size: 15px;
  }

  .voice-single-content-box {
    display: flex;
    justify-content: center;
  }

  .voice-single-pagination {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
  }

  .voice-single-pagination-row {
    gap: 10px;
  }

  .voice-single-pagination-link {
    gap: 8px;
    font-size: 14px;
    padding-right: 18px;
  }
}

/*-------------------------------------------------------------*/
/* products single */

.products-single-information.block {
  display: block;
}

.products-single-information-img{
  width:400px;
  display:block;
}

.products-single-information-img img{
  width:100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.products-single-information-thumb-list {
  width: 110px;
}

.products-single-information-body-inner {
  display: block;
  align-items: center;
}

.products-single-information-body-name {
  position: relative;
  font-weight: 600;
  font-size: 28px;
  color: #0c65a7;
  padding-right: 60px;
}

.products-single-information-body-name::after {
  content: none;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border-bottom: solid 1px #646569;
  width: 24px;
}

.products-single-information-body-name.font-lg {
  font-size: 32px;
  padding-right: 0;
}

.products-single-information-body-name.font-lg::after {
  content: none;
}

.products-single-information-body-en {
  font-weight: 600;
  font-size: 15px;
  color: #646569;
}

.products-single-information-body-model {
  font-weight: 500;
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 40px;
}

.products-single-information-body-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 24px;
}

.products-single-information-body-tag li {
  display: grid;
  place-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #076AB4;
  width: 160px;
  height: 41px;
  border-radius: 20px;
  background: #A0CCE3;
	line-height:1.4;
}

.products-single-information-body-text {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
}

.products-single-information-body-text +.products-single-information-body-text {
  margin-top: 2rem;
}

.products-single-content {
  border-top: solid 1px #BFBFBF;
  padding-top: 80px;
  margin-top: 80px;
}

.products-single-content.border-none {
  border-top: none;
  margin-top: 0;
}

.products-single-content-table {
  font-weight: 500;
  width: 100%;
  border: solid 1px #BFBFBF;
}

.products-single-content-table td,
.products-single-content-table th {
  color: #646569;
  padding: 17px 20px;
  border: solid 1px #BFBFBF;
  vertical-align: middle;
}

.products-single-content-table th {
  color: #28292B;
  background: #BFBFBF;
  padding: 17px 9px;
  border-bottom: solid 1px white;
}

.products-single-content-table._bg-gray {
  border: solid 1px #28292B;
  margin-top: 40px;
}

.products-single-content-table._bg-gray th {
  background: #EFEFEF;
  border-bottom: solid 1px #28292B;
  border-right: solid 1px #28292B;
  width: 340px;
}

.products-single-content-table td {
  border-bottom: solid 1px #BFBFBF;
}

.products-single-content-box {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 600;
  margin-top: 40px;
}

.products-single-content-box.center {
  justify-content: center;
}

.products-single-content-btn {
  position: relative;
  display: grid;
  place-content: center;
  color: #fff;
  width: 200px;
  height: 60px;
  border-radius: 30px;
  background: #0c65a7;
  padding-right: 19px;
}

.products-single-content-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 41px;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-dl.svg) center/cover no-repeat;
  width: 11px;
  height: 12px;
}

.products-single-content-btn:hover {
  opacity: .8;
}

.products-single-content-movie {
  margin-top: 80px;
  margin-bottom: 80px;
}

.products-single-content-item {
  width: 100%;
}

.products-single-content-item tr {
  border-bottom: solid 1px #28292B;
}

.products-single-content-item th {
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
}

.products-single-content-item td {
  font-size: 15px;
  padding: 11px 16px;
  vertical-align: middle;
}

.products-single-content-item td:nth-child(4),
.products-single-content-item td:nth-child(3) {
  text-align: center;
}

.products-single-content-note {
  font-weight: 500;
  font-size: 18px;
}

.muls-section-title + .products-single-content-note {
  margin-top: 40px;
}

.products-single-information-body-name.font-lg + .products-single-content-note {
  margin-top: 8px;
}

.products-single-content-img {
  margin: 40px 0;
}

.products-single-content-img.m-0 {
  margin: 0;
}

.products-single-content-img.m-20 {
  margin: 20px 0;
}

.products-single-content-text {
  font-weight: 500;
  font-size: 15px;
  color: #646569;
}

.products-single-content-text +.products-single-content-text {
  margin-top: 2em;
}

.muls-section-what-row + .products-single-content-text {
  margin-top: 80px;
}

.products-single-content-text.mt-lg {
  margin-top: 4em;
}

.products-single-content-row {
  display: flex;
  align-items: center;
  gap: 74px;
}

.products-single-content-row-img {
  width: 520px;
}

.products-single-content-row-body {
  display: flex;
  align-items: center;
  gap: 60px;
}

.products-single-content-row-text {
  font-weight: 600;
  font-size: 18px;
}

.products-single-content-row-btn {
  position: relative;
  display: block;
  font-weight: 500;
  color: #fff;
  width: 280px;
  height: 60px;
  border-radius: 4px;
  background: #0e77e0;
  padding: 18px 24px;
}

.products-single-content-row-btn::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 18px;
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: .3s;
}

.products-single-content-row-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 32px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  margin-top: 4px;
  transition: .3s;
}

.products-single-content-row-btn:hover {
  background: rgba(14, 119, 224, .8);
}

.products-single-content-row-btn:hover::before, .products-single-content-row-btn:hover::after {
  transform: translateX(3px);
}

.products-single-content-row-btn > span {
  position: relative;
}

.products-single-content-row-btn > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.products-single-content-row-btn:hover > span::after {
  width: 100%;
}

.products-single-content-voice {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.products-single-content-voice > p {
  font-weight: 500;
  font-size: 18px;
}

.products-single-content-list {
  margin: 40px 0 40px 1.5rem;
}

.products-single-content-list li {
  list-style: decimal;
  font-weight: 600;
  font-size: 18px;
  color: #646569;
}

.products-single-content-list li + li {
  margin-top: 5px;
}



/* レイアウト */
.products-single-information{
    display: flex;
    gap: 66px;
    max-width: 1120px;
    margin: 64px auto 0;
}

.products-single-information-img{

	width:400px;

  display:block;
}
.products-single-information-img img{
	width:100%;
	 aspect-ratio: 1/1;
  object-fit: cover;
}
.products-single-information-images{
  display: flex;
  gap: 16px;
}
.products-single-information-slide{
  flex: 1;
  min-width: 0;
}
.products-single-information-thumb-list{
  width: 110px;
}


.products-single-information-item{ display: none; }
.products-single-information-item.is-active{ display: block; }
.products-single-information-img img{ width: 100%; height: auto; display:block; }


.products-single-information-thumb-item{
 	margin-bottom:0px;
  cursor: pointer;
}
.products-single-information-thumb-item.is-active{ opacity: 1; }
.products-single-information-thumb img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display:block;
}

.products-single-information-thumb-item + .products-single-information-thumb-item {
  margin-top: 9px;
}

@media (max-width: 767px){
  .products-single-information-images{ flex-direction: column; }
  .products-single-information-thumb-list{
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: 20px;
  }
  .products-single-information-thumb-item{
    width: calc((100% - 24px)/4); /* 4枚表示想定。必要なら調整 */
    padding: 0;
  }

	.products-single-information-img{
		width:100%;
	}

  .products-single-information-thumb-item + .products-single-information-thumb-item {
    margin-top: 0;
  }
}


@media screen and (max-width: 767px) {
  .products-single-information {
    display: block;
    max-width: 96%;
    margin: 40px auto 0;
  }

  .products-single-information-images {
    display: block;
    margin-bottom: 40px;
  }


  .products-single-information-thumb-list {


    width: 100%;
  }

  .products-single-information-thumb + .products-single-information-thumb {
    display: inline-block;
    margin-top: 0;
  }

  .products-single-information-body-inner {
    display: block;
  }

  .products-single-information-body-name {
    padding-right: 0;
  }

  .products-single-information-body-name::after {
    content: none;
  }

  .products-single-information-body-name.font-lg {
    font-size: 28px;
  }

  .products-single-information-body-en {
    font-size: 15px;
  }

  .products-single-information-body-model {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .products-single-information-body-tag {
    gap: 8px 4px;
    margin-bottom: 40px;
  }

  .products-single-information-body-tag li {
    font-size: 12px;
    text-align: center;
    width: 110px;
  }

  .products-single-content {
    padding-top: 40px;
    margin-top: 40px;
  }

  .products-single-content-table._bg-gray,
  .products-single-content-table {
    border: none;
    margin-top: 56px;
  }

  .products-single-content-table._bg-gray th,
  .products-single-content-table._bg-gray td,
  .products-single-content-table td,
  .products-single-content-table th {
    display: block;
    border: none;
  }

  .products-single-content-table._bg-gray th {
    border-top: solid 1px #BFBFBF;
    width: 100%;
  }

  .products-single-content-table.bg-gray td {
    padding: 17px 9px;
  }

  .products-single-content-box {
    gap: 16px;
  }

  .products-single-content-box > p {
    font-weight: 600;
    font-size: 15px;
  }

  .products-single-content-box.center {
    display: block;
  }

  .muls-section-others-btn + .muls-section-others-btn {
    margin-top: 20px;
  }

  .products-single-content-btn {
    width: 168px;
    height: 50px;
    padding-right: 19px;
  }

  .products-single-content-btn::after {
    right: 25px;
  }

  .products-single-content-movie {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 40px;
    margin-bottom: 72px;
  }

  .products-single-content-movie iframe {
    width: 100%;
    height: 100%;
  }

  .products-single-content-item {
    border-top: solid 1px #28292B;
  }

  .products-single-content-item tr {
    border-bottom: solid 1px #28292B;
  }

  .products-single-content-item th {
    padding: 10px 0;
    vertical-align: middle;
    border-right: solid 1px #DEDEDE;
  }

  .products-single-content-item td {
    font-size: 15px;
    padding: 10px 0;
    text-align: center;
  }

  .products-single-content.border-none {
    padding-top: 20px;
  }

  .products-single-content-img {
    margin: 26px 0 40px;
  }

  .products-single-content-note {
    font-size: 16px;
  }

  .muls-section-what-row-images.sp-m-0 {
    margin: 0;
  }

  .muls-section-what-row-text {
    margin-top: 8px;
  }

  .products-single-information-body-name.font-lg + .products-single-content-note {
    margin-top: 20px;
  }

  .muls-section-what-row + .products-single-content-text {
      margin-top: 40px;
  }

  .products-single-content-row {
    display: block;
  }

  .products-single-content-row-img {
    width: 100%;
  }

  .products-single-content-row-body {
    display: block;
  }

  .products-single-content-row-text {
    text-align: center;
    margin-bottom: 12px;
  }

  .products-single-content-row-btn {
    width: 100%;
  }

  .products-single-content-voice {
    display: block;
  }

  .products-single-content-voice > p {
    margin-bottom: 10px;
  }
}

/*-------------------------------------------------------------*/
/* contact */

.contact-section-content {
  margin-top: 80px;
  padding-bottom: 120px;
}

.contact-btn-list {
  display: grid;
  gap: 20px 42px;
  grid-template-columns: repeat(3, 1fr);
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

span.wpcf7-spinner {
  display: none;
}

.contact-back-btn,
.contact-table-btn input[type="submit"],
.contact-btn {
  position: relative;
  border-radius: 4px;
  background: #076ab4;
  padding: 18px 24px;
  font-weight: 500;
  color: #fff;
}

.contact-table-btn {
  position: relative;
}

.contact-back-btn,
.contact-table-btn input[type="submit"] {
  display: block;
  width: 280px;
  cursor: pointer;
  border: none;
  text-align: left;
}

.contact-back-btn::before,
.contact-table-btn::before,
.contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  border: solid 1px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
  transition: .3s;
}

.contact-back-btn::after,
.contact-table-btn::after,
.contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: white;
  width: 15px;
  height: 15px;
  transition: .3s;
}

.contact-back-btn:hover,
.contact-table-btn:hover,
.contact-btn:hover {
  background: rgba(7,106,180,.8);
}

.contact-back-btn:hover::before,
.contact-table-btn:hover::before,
.contact-btn:hover::before {
  transform: translate(3px, -50%);
  background: white;
}

.contact-back-btn:hover::after,
.contact-table-btn:hover::after,
.contact-btn:hover::after {
  transform: translate(3px, -50%);
  background: #076ab4;
  z-index: 1;
}

.contact-back-btn > span,
.contact-table-btn > span,
.contact-btn > span {
  position: relative;
}

.contact-back-btn > span::after,
.contact-table-btn > span::after,
.contact-btn > span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  border-bottom: solid 1px white;
  width: 0;
  transition: .3s;
}

.contact-back-btn:hover > span::after,
.contact-table-btn:hover > span::after,
.contact-btn:hover > span::after {
  width: 100%;
}

.contact-table-btn {
  border-radius: 4px;
}

.contact-table-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-btn-list + .muls-section-title {
  margin-top: 80px;
}

.contact-table {
  width: 100%;
  margin-top: 40px;
}

.contact-table th {
  width: 286px;
  padding-bottom: 40px;
  vertical-align: top;
}

.contact-table td {
  padding-bottom: 40px;
}

.contact-table-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-table-item > p {
  font-weight: 500;
  font-size: 18px;
}

.contact-table-item > span {
  display: grid;
  place-content: center;
  width: 52px;
  height: 26px;
  border-radius: 4px;
  background: #9f9f9f;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.contact-table-item > .required {
  background: #e2ac1b;
}

.contact-table-check {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-table-check label {
  display: flex;
  align-items: center;
  gap: 11px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #aaaaaa;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 15px;
  height: 10px;
  border-bottom: 3px solid #076AB4;
  border-left: 3px solid #076AB4;
  transform: rotate(-45deg);
}

.contact-table-file > p {
  font-weight: 500;
  color: #646569;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 8px;
}

.contact-table input[type="file"]::file-selector-button {
  font-weight: 500;
  color: #28292B;
  width: 200px;
  height: 40px;
  border-radius: 2px;
  background: #dedede;
  border: 1px solid #646569;
}

.contact-table textarea,
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table input[type="tel"]{
  font-size: 16px;
  border-radius: 2px;
  border: 1px solid #cbcbcb;
  width: 100%;
  padding: 12px 12px;
}

.contact-table input.input-sm {
  width: 195px;
}

.contact-table textarea {
  min-height: 160px;
}

.wpcf7-response-output{
	padding:15px;
}

.selectbox {
  position: relative;
  font-weight: 500;
  border-radius: 2px;
	color:#ADADAD;
  padding: 8px 0;
}

.selectbox::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.selectbox::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  background: #ADADAD;
}

.selectbox select {
  appearance: none;
  min-width: 160px;
  border: solid 1px #DEDEDE;
  background: white;
  color: #28292B;
  font-size: 1em;
  cursor: pointer;
  padding: 8px 40px 8px 20px;
}

.contact-line {
  border-width: 1px 0 0 0;
  border-top: solid 1px #DEDEDE;
  margin-bottom: 40px;
}

.contact-table-text {
  font-weight: 500;
  color: #646569;
  margin-top: 20px;
}

.contact-table-text > a {
  color: #0C65A7;
  text-decoration: underline;
}

.contact-table-name-wrap {
  display: flex;
  gap: 11px;
}

.contact-table-name {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 50%;
}

.contact-table-name.name-adopt > p {
  width: 38px;
}

.contact-table .contact-table-name.name-adopt input[type="text"] {
  /* width: calc(100% - (38px + 8px)); */
}

.contact-table .contact-table-name.name-adopt .wpcf7-form-control-wrap {
  width: calc(100% - (38px + 8px));
}

.contact-note {
  font-weight: 500;
  color: #646569;
}

.contact-note > a {
  color: #0C65A7;
  text-decoration: underline;
}

.contact-table-graduate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-table-graduate > p {
  font-weight: 500;
  color: #adadad;
}

.contact-table-school {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-table-school:not(:first-child) {
  margin-top: 20px;
}

.contact-table-school > p {
  font-weight: 500;
  color: #adadad;
}

.contact-table-school input[type="text"] {
  flex: 1;
}

.contact-complete-box {
  max-width: 708px;
  border-radius: 8px;
  background: #f4f4f4;
  padding: 80px 106px;
  margin: auto;
}

.contact-complete-title {
  position: relative;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  padding-bottom: 12px;
}

.contact-complete-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  border-bottom: 2px solid #076ab4;
}

.contact-complete-text {
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin: 40px 0 80px;
}

@media screen and (max-width: 1080px) {
  .contact-btn-list {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .contact-note {
    font-size: 15px;
  }

  .contact-section-content {
    margin-top: 40px;
    padding-bottom: 80px;
  }

  .contact-btn-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-btn-list + .muls-section-title {
    margin-top: 40px;
  }

  .contact-table th {
    display: block;
    width: 100%;
    padding-bottom: 16px;
  }

  .contact-table td {
    display: block;
    padding-bottom: 16px;
  }

  .contact-table-check {
    gap: 8px 20px;
  }

  .contact-table-file > p {
    font-size: 15px;
  }

  .contact-table input[type="file"] {
    width: 100%;
  }

  .contact-table input[type="file"]::file-selector-button {
    width: 180px;
  }

  .contact-table-name-wrap {
    display: block;
  }

  .contact-table-name {
    width: 100%;
  }

  .contact-table-name + .contact-table-name {
    margin-top: 8px;
  }

  .contact-table-graduate {
    margin-bottom: 8px;
  }

  .contact-table-school:not(:first-child) {
    margin-top: 8px;
  }

  .contact-complete-box {
    padding: 40px 11px;
  }

  .contact-complete-title {
    font-size: 28px;
  }

  .contact-complete-title::after {
    width: 60px;
  }

  .contact-complete-text {
    font-size: 15px;
    text-align: center;
    margin: 40px 0;
  }
}

@media screen and (max-width: 360px) {
  .contact-table input[type="file"]::file-selector-button {
    width: 130px;
  }
}
.wpcf7-list-item.first {
  display: inline-block;
  margin: 0 0 0 0!important;
}

.wpcf7-acceptance .wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0!important;
}

.checkbox-group .wpcf7-list-item input[type="checkbox"]{
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #aaaaaa;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox-group .wpcf7-list-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 2px;
  width: 15px;
  height: 10px;
  border-bottom: 3px solid #076AB4;
  border-left: 3px solid #076AB4;
  transform: rotate(-45deg);
}

.wpcf7 form .wpcf7-response-output{
	text-align:center;
	padding:10px;
}


/*-------------------------------------------------------------*/
/* faq */

.faq-section {
  margin-top: 80px;
}
.faq-main-title-all{
	font-size:30px;
	margin-bottom:20px;
	font-weight:bold;

}
.faq-main-title{
	font-size:28px;
	font-weight:bold;
	margin-bottom:20px;
	position:relative;
	padding-left:15px;
}

.faq-main-title:after{
	content:'';
	width:5px;
	height:5px;
	border-radius:100%;
	background:#0C65A7;
	position:absolute;
	left:0;
	top:50%;
	transform: translateY(-50%);
}
.faq-main-title-sub{
	font-size: 18px;
	font-weight:bold;
	margin-bottom:20px;
}
.faq-container{
	position: relative;
  display: flex;
  justify-content: space-between;

  padding-top: 80px;
	padding-bottom:120px;
}


.faq-container{
	position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 82px;
}

.faq-nav{
	position: relative;
  width: 200px;
}


.faq-nav-list {
  position: sticky;
  top: 0;

}


.faq-nav-list li {
  padding-left: 8px;

}


.faq-nav-list li a {
  position: relative;
  display: block;
  padding: 10px 0 10px 18px;
 border-bottom: solid 1px #DEDEDE;
	margin-bottom:10px;
}

.faq-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #076AB4;
  width: 0;
  transition: .3s;
}

.faq-nav-list li a:hover {
  color: #076AB4;
  padding-left: 22px;
}

.faq-nav-list li a:hover::after {
  width: 100%;
}

.faq-nav-list li a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  background: #0C65A7;
  width: 10px;
  height: 10px;
}
.faq-nav-list li.faq-nav-list-child{
		padding-left:20px;
 }
.faq-main{
	width:820px;
}
.faq-main a{
	text-decoration:underline;
}
.faq-main a:hover{
	text-decoration:none;
}

.faq-main-item dt{
	position:relative;
	color:#28292B;
	padding-left:50px;
	margin-bottom:30px;
	line-height:1.8;
	padding-top:8px;
}

.faq-main-item dt:after{
	content:'Q.';
	position:absolute;
	left:0;
	top: 50%;
	font-size:32px;
	line-height:1;
  transform: translateY(-50%);
	color:#28292B;
}
.faq-main-item dd{
	position:relative;
	color:#28292B;
	padding-left:50px;
	margin-bottom:30px;
  border-bottom: solid 1px #DEDEDE;
	padding-bottom:20px;

}

.faq-main-item dd:after{
	content:'A.';
	position:absolute;
	left:0;
	top: 16px;
	font-size:32px;
	line-height:1;
  transform: translateY(-50%); 
	color:#0C65A7;
}

@media screen and (max-width: 767px) {
  .faq-section {
    margin-top: 40px;
  }

	.faq-container {
	  display: block;
	  padding-top: 0;
	}

  .faq-main{
			width:100%;
			font-size:14px;
	}

	.faq-nav{
	  width: 100%;
		margin-bottom:50px;
	}

	.faq-nav-list {
	  position: static;
	  display:block;
		flex-wrap: wrap;
    border: solid 1px #DEDEDE;
	}

	.faq-nav-list li {
	  padding-left: 0;
	}

  .faq-nav-list li:not(:last-child) {
    border-bottom: solid 1px #DEDEDE;
  }

	.faq-nav-list li a {
    font-weight: 500;
		font-size:16px;
		margin-right:5px;
	  padding: 10px 0 0 62px;
	  border-bottom: 0;
	  margin-bottom:5px;
	}

  .faq-nav-list li a::before {
    left: 40px;
    clip-path: polygon(100% 40%, 50% 90%, 0 40%, 10% 30%, 50% 70%, 90% 30%);
  }

  .faq-nav-list li a:hover {
    padding-left: 62px;
  }

  .faq-nav-list li a:hover::after {
    width: 0;
  }

	.faq-main-item dt:after{
		font-size:30px;
	}

	.faq-main-item dd:after{
		font-size:30px;
	}
}





.privacy-section {
  margin-top: 80px;
}

.privacy-main{
	font-size:14px;
	padding-bottom:120px;

}
.privacy-main a{
	color:#0C65A7;
	text-decoration:underline;
}

.privacy-main a:hover {
	color:#004AAF;
}

.privacy-main a:visited {
	color:#7041A0;
}

.privacy-lead{
  line-height: 24px;
  margin-top: 42px;
	margin-bottom:40px;
}

.privacy-main-item dt{
  font-size:24px;
  margin-bottom:10px;
	position:relative;
	font-weight:bold;
	padding-left:18px;
	line-height:1;
}

.privacy-main-item dd{
	margin-bottom:30px;
	border-bottom: solid 1px #DEDEDE;
	padding-bottom:18px;
	padding-left:18px;
  line-height: 24px;
}

.privacy-main-item.pl-0 dd {
  padding-left: 0;
}

.privacy-main-item dd.border-none {
  border-bottom: none;
  padding: 0;
  margin-bottom: 64px;
}

.privacy-main-item dt:after{
	content:'';
	width:7px;
	height:7px;
	border-radius:100%;
	background:#0C65A7;
	position:absolute;
	left:0;
	top:50%;
	transform: translateY(-50%);
}

.privacy-contact-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.privacy-main-lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.privacy-main-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-main-text {
  font-size: 16px;
  line-height: 24px;
  color: #707070;
}

.privacy-green-box{
	line-height:1.8;
	border: solid 1px #DEDEDE;
	padding: 30px 40px;
  border-radius: 8px;
}

.privacy-green-box-title {
  font-weight: 600;
  font-size: 18px;
}

.privacy-green-box-text {
  font-size: 16px;
  line-height: 24px;
  color: #707070;
  margin: 5px 0 8px;
}

.privacy-green-box-link {
  font-size: 16px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .privacy-main {
      padding-bottom: 80px;
  }

  .privacy-section {
    margin-top: 40px;
  }

  .privacy-lead {
    font-weight: 500;
    font-size: 14px;
    margin: 40px 0 34px;
  }

  .privacy-main-item dt {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .privacy-main-item dd {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
  }

  .privacy-main-title {
    margin-top: 40px;
  }

  .privacy-main-text {
    font-size: 15px;
    line-height: 30px;
  }

  .privacy-green-box {
    padding: 50px 37px;
  }

  .privacy-green-box-text {
    font-size: 15px;
    line-height: 22.5px;
    margin: 8px 0;
  }

  .privacy-green-box-link {
    text-align: left;
    line-height: 24px;
  }

  .privacy-main-item dd.border-none {
    margin-bottom: 40px;
  }

  .privacy-contact-text + .privacy-contact-text {
    margin-top: 1.5em;
  }
}

/*-------------------------------------------------------------*/
/* Custom Made */

.home .header,
.guard .header,
.muls .header,
.products .header,
.andfuture .header,
.custom-made .header {
  background: rgba(255,255,255, .9);
}

.kv-lower.kv-lower-custom {
  margin-top: -78px;
  height: 53.125vw;
}

.kv-lower-custom .kv-lower-catch {
  font-size: 28px;
  letter-spacing: 0.12em;
  margin: 93px 0 32px;
}

.kv-lower-custom .kv-lower-catch.mb {
  margin-bottom: 68px;
}

.kv-lower-custom .kv-lower-text {
  line-height: 2;
}

.kv-lower-custom .topic-path-list li a,
.kv-lower-custom .topic-path-list li {
  color: #28292B;
}

.kv-lower-custom .topic-path-list li + li {
  border-left: solid 1px #28292B;
}

.kv-lower-custom .kv-lower-body {
  padding-top: 158px;
}

.kv-lower-custom .kv-lower-img {
  position: absolute;
  top: 0;
}

.custom-about {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-about-body {
  flex: 1;
}

.custom-about-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 42px;
  color: #37393b;
}

.custom-about-text + .custom-about-text {
  margin-top: .5em;
}

.custom-point {
  border-bottom: solid 1px #DEDEDE;
  padding-bottom: 80px;
}

.custom-point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.custom-point-item {
  text-align: center;
}

.custom-point-item-en {
  font-weight: 500;
  font-size: 24px;
  color: #076ab4;
}

.custom-point-item-num {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: #076ab4;
}

.custom-point-item-title {
  font-weight: 600;
  font-size: 20px;
  margin: 20px 0 35px;
}

.custom-point-item-img {
  width: 140px;
  margin: auto;
}

.custom-point-item-text {
  font-weight: 500;
  line-height: 1.8;
  color: #37393b;
  margin-top: 50px;
}

.custom-flow {
  border-bottom: solid 1px #DEDEDE;
  padding-top: 80px;
  padding-bottom: 120px;
}

.custom-flow-scroll {
  margin-top: 80px;
}

.custom-flow-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 45px;
}

.custom-flow-item {
  position: relative;
}

.custom-flow-item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 39px;
  right: -36px;
  background-image: radial-gradient(circle, #7FB1E6 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14px 4px;
  width: 37px;
  height: 4px;
}

.custom-flow-item:nth-child(4)::after,
.custom-flow-item:nth-child(3)::after {
  background-image: radial-gradient(circle, #076AB4 2px, transparent 2px);
}

.custom-flow-item:nth-child(5)::after {
  background-image: radial-gradient(circle, #1B4B80 2px, transparent 2px);
}

.custom-flow-item:nth-child(7)::after,
.custom-flow-item:nth-child(6)::after {
  background-image: radial-gradient(circle, #0F2D57 2px, transparent 2px);
}



.custom-flow-img {
  width: 80px;
  margin: auto;
}

.custom-flow-text {
  font-weight: 500;
  font-size: 20px;
  color: #28292b;
  text-align: center;
  margin-top: 8px;
}

.custom-example {
  padding: 80px 0;
}

.custom-example-text {
  font-weight: 500;
  font-size: 18px;
  color: #37393b;
  margin: 40px 0;
}

.custom-example-box {
  border-radius: 8px;
  background: #efefef;
  padding: 40px 100px;
}

.custom-example-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.custom-example-item {
  display: flex;
  align-items: center;
}

.custom-example-item::before {
  display: inline-block;
  content: "●";
  font-size: 12px;
  color: #076AB4;
  margin-right: 4px;
}

.custom-slide {
  overflow: hidden;
  width: 100%;
}

.custom-slide-list {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.custom-slide-img {
  width: 420px;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.custom-bunner {
  padding: 120px 0;
}

.custom-bunner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.custom-bunner-item > a {
  display: block;
}

.custom-bunner-item > a:hover {
  opacity: .8;
}

.custom-contact-box {
  display: flex;
}

.custom-contact-box-body {
  color: white;
  background: #28292B;
  width: 50%;
  padding: 74px 0 0 47px;
}

.custom-contact-box-text {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 40px;
}

.custom-contact-box-img {
  flex: 1;
}

@media screen and (max-width: 1230px) {
  .kv-lower-custom .kv-lower-body {
    max-width: 96%;
    margin: auto;
  }
}

@media screen and (max-width: 1130px) {
  .kv-lower-custom .kv-lower-body {
    padding-top: 95px;
  }

  .kv-lower-custom .kv-lower-catch {
    margin: 40px 0 32px;
  }

  .kv-lower-custom .kv-lower-catch.mb {
    margin-bottom: 20px;
  }

  .custom-flow-scroll {
    overflow-x: scroll;
  }

  .custom-flow-list {
    width: 1120px;
  }

  .custom-example-box {
    padding: 40px;
  }

  .custom-example-list {
    gap: 40px;
  }

  .custom-contact-box-body {
    padding: 6.54vw 0 0 4.15vw;
  }

  .custom-contact-box-text {
    font-size: 2.12vw;
    margin-bottom: 3.53vw;
  }
}

@media screen and (max-width: 900px) {
  .kv-lower-custom .kv-lower-catch {
    margin: 30px 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .kv-lower.kv-lower-custom {
    margin-top: -80px;
    height: 167vw;
  }

  .kv-lower-custom .kv-lower-catch {
    font-size: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .kv-lower-custom .kv-lower-text {
    font-size: 15px;
  }

  .kv-lower-custom .kv-lower-body {
    padding-top: 128px;
  }

  .custom-about {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-about-text {
    font-size: 15px;
    line-height: 2;
  }

  .custom-about-text + .custom-about-text {
    margin-top: 1em;
  }

  .custom-point-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }

  .custom-point-item-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .custom-point-item-point {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .custom-point-item-title {
    text-align: left;
    margin: 0;
  }

  .custom-point-item-text {
    margin-top: 40px;
  }

  .custom-flow {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .custom-flow-scroll {
    overflow-x: scroll;
    margin-top: 40px;
    padding-bottom: 20px;
  }

  .custom-example {
    padding: 80px 0;
  }

  .custom-example-text {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 40px;
  }

  .custom-example-box {
    padding: 40px 18px;
  }

  .custom-example-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .custom-example-item {
    align-items: flex-start;
    font-size: 15px;
  }

  .custom-example-item::before {
    font-size: 10px;
    margin-top: 3px;
    margin-right: 8px;
  }

  .custom-slide-img {
    width: 213px;
  }

  .custom-bunner {
    padding: 80px 0;
  }

  .custom-bunner-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .custom-contact {
    padding-bottom: 40px;
  }

  .custom-contact-box {
    position: relative;
    display: block;
  }

  .custom-contact-box-body {
    position: absolute;
    top: 0;
    background: none;
    width: 100%;
    padding: 46px 26px;
  }

  .custom-contact-box-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/*-------------------------------------------------------------*/
/* and future */

.andfuture-proposal {
  position: relative;
  padding: 0 0 130px;
}

.andfuture-proposal::before {
  content: "CREATE";
  position: absolute;
  bottom: 0;
  left: -50px;
  font-weight: bold;
  font-style: italic;
  font-size: 200px;
  color: #dedede;
  opacity: 0.3;
}

.andfuture-proposal-row {
  display: flex;
  gap: 72px;
  margin-top: 80px;
}

.andfuture-proposal-lead {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  color: #37393b;
  margin-top: 40px;
}

.andfuture-proposal-body {
  position: relative;
  flex: 1;
  border-bottom: solid 1px #DEDEDE;
}

.andfuture-proposal-body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #076ab4;
  width: 210px;
}

.andfuture-proposal-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-top: solid 1px #DEDEDE;
}

.andfuture-proposal-list-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 32px;
  color: #076ab4;
  border-top: solid 1px #076ab4;
  width: 210px;
}

.andfuture-proposal-list-text {
  font-weight: 600;
  font-size: 24px;
  padding: 40px 0;
  min-width: 280px;
}

.andfuture-solution {
  position: relative;
  padding-bottom: 120px;
}

.andfuture-solution.bg-font::before {
  content: "FUTURE";
  position: absolute;
  bottom: -48px;
  left: -50px;
  font-weight: bold;
  font-style: italic;
  font-size: 200px;
  color: #dedede;
  opacity: 0.3;
  z-index: -1;
}

.andfuture-solution-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-left: 47px;
  padding-right: 68px;
}

.andfuture-solution-body {
  color: #37393b;
  border-left: solid 2px #076AB4;
  padding-left: 18px;
  width: 378px;
}

.andfuture-solution-title {
  font-weight: 600;
  font-size: 28px;
}

.andfuture-solution-text {
  font-weight: 500;
  font-size: 18px;
  margin-top: 36px;
  margin-bottom: 4px;
}

.andfuture-solution-note {
  font-weight: 500;
  font-size: 15px;
}

.andfuture-solution-box {
  position: relative;
  flex: 1;
}

.andfuture-solution-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -22px;
  background: #076AB4;
  width: 587px;
  height: 437px;
  z-index: -1;
  transform:skewX(-10deg);
}

.andfuture-solution-img {
  display: block;
  transform:skewX(-10deg);
  overflow:hidden;
}

.andfuture-solution-img img {
  transform:skewX(10deg) scale(1.2);
}

@media screen and (max-width: 1150px) {
  .andfuture-proposal::before {
    left: -4.34vw;
    font-size: 17.39vw;
  }

  .andfuture-solution.bg-font::before {
    bottom: -4.17vw;
    left: -4.34vw;
    font-size: 17.39vw;
  }

  .andfuture-solution-row {
    gap: 3.47vw;
    padding-left: 4.08vw;
    padding-right: 5.91vw;
  }

  .andfuture-solution-body {
    padding-left: 1.56vw;
    width: 32.86vw;
  }

  .andfuture-solution-box::after {
    bottom: -2.33vw;
    right: -1.91vw;
    width: 48.04vw;
    height: 38vw;
  }
}

@media screen and (max-width: 767px) {
  .andfuture-proposal::before {
    bottom: 9vw;
    font-size: 23.39vw;
  }

  .andfuture-proposal {
    padding: 0 0 114px;
  }

  .andfuture-proposal-row {
    display: block;
  }

  .andfuture-proposal-lead {
    font-size: 15px;
    margin-top: 0;
  }

  .andfuture-proposal-body {
    margin-top: 40px;
  }

  .andfuture-proposal-body::before {
    width: 38%;
  }

  .andfuture-proposal-list-title {
    font-size: 18px;
    width: 38%;
  }

  .andfuture-proposal-list {
    gap: 10px;
  }

  .andfuture-proposal-list-text {
    font-size: 15px;
    padding: 20px 0;
    min-width: 161px;
  }

  .andfuture-solution {
    padding-bottom: 80px;
  }

  .andfuture-solution.bg-font::before {
    bottom: 0;
    left: -5vw;
    font-size: 24vw;
  }

  .andfuture-solution-row {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .andfuture-solution-body {
    padding-left: 13px;
    width: 100%;
    margin-bottom: 40px;
  }

  .andfuture-solution-title {
    font-size: 22px;
  }

  .andfuture-solution-text {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 2px;
  }

  .andfuture-solution-note {
    font-size: 13px;
  }

  .andfuture-solution-box {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 0 0 20.8vw;
  }

  .andfuture-solution-img {
    transform: skewX(0deg);
  }

  .andfuture-solution-img img {
    transform: skewX(0deg) scale(1);
  }

  .andfuture-solution-box::after {
    content: none;
  }
}


