@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

input,
textarea {
  line-height: 1.6;
}

.en-font {
  font-family: "Barlow Condensed", sans-serif;
}

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

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
/**
 * サイトヘッダー
 */
.site-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}
.site-header .container .site-logo {
  display: flex;
  align-items: center;
  margin: 0 0 0 35px;
}
.site-header .container .site-logo a {
  display: block;
}
.site-header .container .site-logo a img {
  display: block;
}
.site-header .container .site-nav {
  display: flex;
  gap: 25px;
}
.site-header .container .site-nav .nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .container .site-nav .nav-list li {
  list-style: none;
  display: flex;
  align-items: center;
}
.site-header .container .site-nav .nav-list li a {
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}
.site-header .container .site-nav .nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #2053c6;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header .container .site-nav .nav-list li a:hover::after {
  opacity: 1;
}
.site-header .container .site-nav .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #3ea8da;
  width: 140px;
  height: 140px;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 100;
}
.sp-controls {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 16px;
  z-index: 3000;
}
.sp-controls .contact-icon {
  flex-shrink: 0;
  display: flex;
  background-color: #3ea8da;
  align-items: stretch;
}
.sp-controls .contact-icon a {
  padding: 20px;
  background-color: transparent;
  align-content: center;
}
.sp-controls .contact-icon a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sp-controls .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  z-index: 11;
}
.sp-controls .hamburger .lines {
  position: relative;
  width: 24px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sp-controls .hamburger .lines .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}
.sp-controls .hamburger .lines .line:nth-child(1) {
  top: 0;
}
.sp-controls .hamburger .lines .line:nth-child(2) {
  bottom: 0;
}
.sp-controls .hamburger .label {
  font-size: 10px;
}
.sp-controls .hamburger.open .line:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 50%;
}
.sp-controls .hamburger.open .line:nth-child(2) {
  transform: translateX(-50%) rotate(-45deg);
  bottom: auto;
  top: 50%;
}

.menu-content {
  position: fixed;
  top: 0;
  left: 0;
  margin: 60px 0 0;
  width: 100vw;
  height: calc(100vh - 60px);
  background: #0047ab;
  color: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
  padding: 40px;
}
.menu-content.open {
  transform: translateX(0);
}
.menu-content nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 2;
  text-align: center;
}
.menu-content nav ul li {
  border-bottom: 1px solid #fff;
}
.menu-content nav ul li a {
  position: relative;
  display: block;
  text-align: left;
  padding: 20px 30px 20px 0;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}
.menu-content nav ul li a::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/icons/arrow_forward_42-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.menu-content nav ul li.contact {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  background-color: #2053c6;
  border-radius: 50px;
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
  border-bottom: none;
}
.menu-content nav ul li.contact a {
  display: block;
  padding: 20px 55px;
  text-align: center;
  background-color: #3ea8da;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
}
.menu-content nav ul li.contact a::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 18px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-image: url(../images/contact_icon.png);
  background-repeat: no-repeat;
  pointer-events: none;
}
.menu-content nav ul li.contact a::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../images/icons/arrow_forward_42-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

@media (max-width: 768px) {
  body {
    margin: 60px 0 0;
  }
  .no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: none;
  }
  .site-header .container {
    height: 60px;
  }
  .site-header .container .site-logo {
    margin: 0 0 0 20px;
  }
  .site-header .container .site-nav {
    display: none;
  }
  .sp-controls {
    display: flex;
    align-items: stretch;
  }
}
/**
 * ページヘッダー
 */
.page-header {
  margin: 50px 0;
}
.page-header .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.page-header .title .en-title {
  position: relative;
  padding: 0 0 20px;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
}
.page-header .title .en-title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 0;
  left: calc(50% + 30px);
  bottom: 10px;
  transform: translateX(-50px);
  border-top: 3px solid #3ea8da;
}
.page-header .title .ja-title {
  font-size: 1.6rem;
  color: #2f54bf;
}

/**
 * サイトフッター
 */
.site-footer {
  position: relative;
  padding: 270px 0 0;
}
.site-footer .contact {
  position: absolute;
  width: 84%;
  top: 0;
  left: 50%;
  background-color: #ebf2fc;
  z-index: 2;
  --transform-x: translateX(-50%);
  --transform-y: translateY(0);
}
.site-footer .contact > .title {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
.site-footer .contact .desc {
  position: relative;
  margin: 70px 0 50px;
  text-align: center;
  z-index: 2;
  font-weight: 700;
}
.site-footer .contact .contact-us {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.site-footer .contact .contact-us dl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer .contact .contact-us dl dt {
  font-size: 2.6rem;
  line-height: 1;
}
.site-footer .contact .contact-us dl dd {
  text-align: center;
}
.site-footer .contact .contact-us dl dd .number {
  font-size: 4.2rem;
  line-height: 1;
  color: #3ea8da;
}
.site-footer .contact .contact-us dl dd .info {
  font-size: 1.4rem;
}
.site-footer .contact .contact-us dl::before {
  position: absolute;
  content: "";
  top: 10%;
  left: -30px;
  width: 10px;
  height: 80%;
  border-left: 1px solid #000;
}
.site-footer .contact .contact-us dl:first-child::before {
  display: none;
}
.site-footer .contact .contact-us .mail .mail {
  color: #3ea8da;
  font-size: 3rem;
  text-decoration: none;
}
.site-footer .contact .mail-form {
  margin: 50px 0 70px;
  text-align: center;
}
.site-footer .contact .mail-form .title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  background-color: #2053c6;
  border-radius: 50px;
  padding: 20px 120px;
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
}
.site-footer .contact .mail-form .title::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 18px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background-image: url(../images/contact_icon2.png);
  background-repeat: no-repeat;
  pointer-events: none;
}
.site-footer .contact .mail-form .title::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../images/icons/arrow_forward_42-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.site-footer .company {
  position: relative;
  height: 300px;
  background-image: url(../images/background.png);
  background-position: center;
  background-repeat: repeat-x;
  background-color: rgba(62, 168, 218, 0.9);
  background-blend-mode: color-dodge;
  color: #fff;
  z-index: 1;
}
.site-footer .company .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  padding: 0 8% 60px;
  width: 100%;
}
.site-footer .company .inner .left .address {
  margin: 5px 0 0;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 450px 0 0;
  }
  .site-footer .contact > .title {
    top: -17px;
    font-size: 8rem;
  }
  .site-footer .contact .contact-us {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .site-footer .contact .contact-us dl::before {
    display: none;
  }
  .site-footer .contact .mail-form {
    margin: 50px 0;
  }
  .site-footer .contact .mail-form .title {
    padding: 20px 70px;
  }
  .site-footer .company .inner {
    flex-direction: column;
    gap: 20px;
    padding: 0 8% 40px;
  }
}
#top {
  /**
  * トップページメインコンテンツ
  */
}
#top .slide .slide-image {
  position: relative;
  height: 50vw;
  max-height: calc(100vh - 100px);
  background-size: cover;
  background-position: center;
}
#top .slide .slide-image .caption {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  text-shadow: 0 0 20px #333;
}
#top .slide .slide-image .caption .text {
  font-weight: 700;
}
#top .slide .slide-image .caption .text.en-font {
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 1rem;
}
#top .slide .slide-image .caption .text .vertical-rl {
  writing-mode: vertical-rl;
  display: inline-block;
  letter-spacing: 0.3rem;
  line-height: 1;
  margin: 0 1rem 0 0;
  font-size: 2.4rem;
}
#top .slide .swiper-pagination-bullet {
  background-color: #fff;
  width: 30px;
  height: 10px;
  border-radius: 0;
  opacity: 0.5;
}
#top .slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 768px) {
  #top .slide .slide-image .caption {
    font-size: 1.6rem;
  }
  #top .slide .slide-image .caption .text {
    font-weight: 700;
  }
  #top .slide .slide-image .caption .text.en-font {
    font-size: 1.8rem;
  }
  #top .slide .slide-image .caption .text .vertical-rl {
    letter-spacing: 0;
    font-size: 0.8rem;
  }
}
#top .content {
  /**
  * 取扱い商品
  */
  /**
  * 導入実績
  */
  /**
  * コンテンツ
  */
}
#top .content .products .products-inner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 20px 0 0 0;
  padding: 130px 0 100px;
  background-image: url(../images/background.png);
  background-position: bottom;
  background-repeat: repeat-x;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: color;
}
#top .content .products .products-inner .desc {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 8%;
  width: 48%;
  height: 54%;
  background-image: url(../images/product_bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
}
#top .content .products .products-inner .desc .inner {
  padding: 70px 0 0 50px;
  width: 100%;
  background-color: rgba(0, 37, 255, 0.5);
}
#top .content .products .products-inner .desc .inner .title {
  margin: 0;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
}
#top .content .products .products-inner .desc .inner .sub-title {
  position: relative;
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  line-height: 1;
}
#top .content .products .products-inner .desc .inner .sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 4px;
  background-color: #fff;
  pointer-events: none;
}
#top .content .products .products-inner .desc .inner .link {
  display: inline-block;
  position: relative;
  margin: 50px 0 0;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px 80px 10px 20px;
  text-decoration: none;
  color: #fff;
}
#top .content .products .products-inner .desc .inner .link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward_42-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
#top .content .products .products-inner .categories {
  width: 60%;
  margin: 0 8% 0 0;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
#top .content .products .products-inner .categories ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 15px 30px;
  gap: 0 30px;
}
#top .content .products .products-inner .categories ul li {
  position: relative;
  flex-basis: calc(50% - 15px);
  padding: 10px 0;
  border-top: 1px solid #ddd;
  list-style: none;
}
#top .content .products .products-inner .categories ul li:nth-child(1), #top .content .products .products-inner .categories ul li:nth-child(2) {
  border-top: none;
}
#top .content .products .products-inner .categories ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward-42-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.2;
}
#top .content .products .products-inner .categories ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #000;
}
#top .content .products .products-inner .categories ul li a .image {
  display: block;
  width: 23%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease;
}
#top .content .products .products-inner .categories ul li a:hover .image {
  transform: scale(1.2);
}
#top .content .products .products-inner .categories ul li a .title {
  flex-grow: 1;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  padding: 0 25px 0 0;
}
#top .content .products .link-wrap {
  display: none;
}
#top .content .works {
  padding: 0 0 50px;
  background: linear-gradient(to bottom, #ffffff 20%, #ebf2fc 100%);
}
#top .content .works .works-header {
  display: flex;
  justify-content: space-between;
  margin: 0 8% 30px;
}
#top .content .works .works-header .title .main {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  color: #2f54bf;
}
#top .content .works .works-header .title .sub {
  position: relative;
  margin: 10px 0 0;
  padding: 0 0 0 40px;
  font-weight: 400;
  line-height: 1;
  color: #2f54bf;
}
#top .content .works .works-header .title .sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 4px;
  background-color: #3ca3da;
  pointer-events: none;
}
#top .content .works .works-header .navi {
  display: flex;
  align-items: center;
  gap: 15px;
}
#top .content .works .works-header .navi .prev {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #2f54bf;
  border-radius: 50%;
  text-align: center;
  top: unset;
  left: unset;
  right: unset;
  margin-top: unset;
}
#top .content .works .works-header .navi .prev img {
  display: block;
}
#top .content .works .works-header .navi .prev::after {
  content: "" !important;
}
#top .content .works .works-header .navi .next {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #2f54bf;
  border-radius: 50%;
  text-align: center;
  top: unset;
  left: unset;
  right: unset;
  margin-top: unset;
}
#top .content .works .works-header .navi .next img {
  display: block;
}
#top .content .works .works-header .navi .next::after {
  content: "" !important;
}
#top .content .works .works-header .navi .all {
  display: inline-block;
  position: relative;
  margin: 0;
  border: 1px solid #2f54bf;
  border-radius: 50px;
  padding: 10px 80px 10px 20px;
  text-decoration: none;
  color: #2f54bf;
}
#top .content .works .works-header .navi .all::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward-42-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
#top .content .works .items {
  height: 300px;
}
#top .content .works .items .item {
  width: 300px;
  height: 270px;
  list-style: none;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
#top .content .works .items .item a {
  text-decoration: none;
  color: #000;
  width: 300px;
}
#top .content .works .items .item a .image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#top .content .works .items .item a .image .category {
  position: absolute;
  padding: 5px 10px;
  background-color: #2e55be;
  color: #fff;
  font-size: 1.2rem;
}
#top .content .works .items .item a .desc {
  height: 70px;
  padding: 10px;
}
#top .content .works .works-footer {
  display: none;
}
#top .content .next-content {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 80px 8%;
  padding: 50px 0;
}
#top .content .next-content .maintenance {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 50%;
  height: 200px;
  background-image: url(../images/maintenance_bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
}
#top .content .next-content .maintenance .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 30px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  background-color: rgba(45, 71, 227, 0.7);
}
#top .content .next-content .maintenance .inner:hover {
  opacity: 0.8;
}
#top .content .next-content .maintenance .inner .title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
#top .content .next-content .maintenance .inner .sub-title {
  margin: 10px 0 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
}
#top .content .next-content .maintenance .inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward_42-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
#top .content .next-content .company {
  display: flex;
  z-index: 1;
  width: calc(50% - 1px);
  height: 200px;
  background-image: url(../images/company_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
#top .content .next-content .company .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 30px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 175, 255, 0.68);
}
#top .content .next-content .company .inner:hover {
  opacity: 0.8;
}
#top .content .next-content .company .inner .title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
#top .content .next-content .company .inner .sub-title {
  margin: 10px 0 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
}
#top .content .next-content .company .inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward_42-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 768px) {
  #top .content {
    /**
    * 取扱い商品
    */
    /**
    * 導入実績
    */
    /**
    * コンテンツ
    */
  }
  #top .content .products {
    padding: 0 0 100px;
  }
  #top .content .products .products-inner {
    padding: 130px 0 30px;
  }
  #top .content .products .products-inner .desc {
    top: 0;
    left: 0;
    width: 95%;
  }
  #top .content .products .products-inner .desc .inner {
    padding: 30px 0 0 50px;
    /*
    .sub-title {
      position: relative;
      margin: 10px 0 0;
      padding: 0 0 0 40px;
      line-height: 1;
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 30px;
        height: 4px;
        background-color: #fff;
        pointer-events: none; // 矢印でクリック操作が阻害されないように
      }
    }
    */
  }
  #top .content .products .products-inner .desc .inner .title {
    font-size: 3rem;
  }
  #top .content .products .products-inner .desc .inner .link {
    display: none;
    /*
    position: relative;
    margin: 50px 0 0;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 80px 10px 20px;
    text-decoration: none;
    color: #fff;
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      background-image: url('../images/icons/arrow_forward_42-white.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      pointer-events: none; // 矢印でクリック操作が阻害されないように
      //opacity: 0.2;
    }
    */
  }
  #top .content .products .products-inner .categories {
    width: 95%;
    margin: 0;
  }
  #top .content .products .products-inner .categories ul {
    flex-direction: column;
  }
  #top .content .products .products-inner .categories ul li {
    /*
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      background-image: url('../images/icons/arrow_forward-42-black.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      pointer-events: none; // 矢印でクリック操作が阻害されないように
      opacity: 0.2;
    }
    */
  }
  #top .content .products .products-inner .categories ul li:nth-child(2) {
    border-top: 1px solid #ddd;
  }
  #top .content .products .products-inner .categories ul li a .image {
    width: 20vw;
  }
  #top .content .products .products-inner .categories ul li a .title {
    font-size: 1.6rem;
  }
  #top .content .products .link-wrap {
    display: block;
    margin: 20px 0 0;
    text-align: center;
  }
  #top .content .products .link-wrap .link {
    display: inline-block;
    position: relative;
    border: 1px solid #2f54bf;
    border-radius: 50px;
    padding: 10px 80px 10px 20px;
    text-decoration: none;
    color: #2f54bf;
  }
  #top .content .products .link-wrap .link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/icons/arrow_forward-42-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  #top .content .works .works-header .title .main {
    font-size: 3rem;
  }
  #top .content .works .works-header .title .sub {
    /*
    position: relative;
    margin: 10px 0 0;
    padding: 0 0 0 40px;
    //font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: $color-content-title;
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 30px;
      height: 4px;
      background-color: #3ca3da;
      pointer-events: none; // 矢印でクリック操作が阻害されないように
    }
    */
  }
  #top .content .works .works-header .navi {
    display: none;
  }
  #top .content .works .items {
    height: 300px;
  }
  #top .content .works .items .item {
    width: 300px;
    height: 270px;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  }
  #top .content .works .items .item a {
    text-decoration: none;
    color: #000;
    width: 300px;
  }
  #top .content .works .items .item a .image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #top .content .works .items .item a .image .category {
    position: absolute;
    padding: 5px 10px;
    background-color: #2e55be;
    color: #fff;
    font-size: 1.2rem;
  }
  #top .content .works .items .item a .desc {
    height: 70px;
    padding: 10px;
  }
  #top .content .works .works-footer {
    display: block;
  }
  #top .content .works .works-footer .navi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  #top .content .works .works-footer .navi .prev {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid #2f54bf;
    border-radius: 50%;
    text-align: center;
    top: unset;
    left: unset;
    right: unset;
    margin-top: unset;
  }
  #top .content .works .works-footer .navi .prev img {
    display: block;
  }
  #top .content .works .works-footer .navi .prev::after {
    content: "" !important;
  }
  #top .content .works .works-footer .navi .next {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid #2f54bf;
    border-radius: 50%;
    text-align: center;
    top: unset;
    left: unset;
    right: unset;
    margin-top: unset;
  }
  #top .content .works .works-footer .navi .next img {
    display: block;
  }
  #top .content .works .works-footer .navi .next::after {
    content: "" !important;
  }
  #top .content .works .works-footer .navi .all {
    display: inline-block;
    position: relative;
    margin: 0;
    border: 1px solid #2f54bf;
    border-radius: 50px;
    padding: 10px 80px 10px 20px;
    text-decoration: none;
    color: #2f54bf;
  }
  #top .content .works .works-footer .navi .all::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/icons/arrow_forward-42-blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  #top .content .next-content {
    margin: 30px 0;
    flex-direction: column;
  }
  #top .content .next-content .maintenance {
    position: relative;
    width: 100%;
    /*
    .inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      padding: 0 30px;
      width: 100%;
      text-decoration: none;
      color: #fff;
      background-color: rgb(45 71 227 / 70%);
      &:hover {
          opacity: 0.8;
      }
      .title {
        margin: 0;
        font-size: 3.2rem;
        font-weight: 400;
        line-height: 1;
      }
      .sub-title {
        margin: 10px 0 0;
        padding: 0;
        font-size: 1.6rem;
        line-height: 1;
      }
      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url('../images/icons/arrow_forward_42-white.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none; // 矢印でクリック操作が阻害されないように
        //opacity: 0.2;
      }
    }
    */
  }
  #top .content .next-content .company {
    width: 100%;
    /*
    .inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      padding: 0 30px;
      width: 100%;
      text-decoration: none;
      color: #fff;
      background-color: rgb(0 175 255 / 68%);
      &:hover {
          opacity: 0.8;
      }
      .title {
        margin: 0;
        font-size: 3.2rem;
        font-weight: 400;
        line-height: 1;
      }
      .sub-title {
        margin: 10px 0 0;
        padding: 0;
        font-size: 1.6rem;
        line-height: 1;
      }
      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url('../images/icons/arrow_forward_42-white.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none; // 矢印でクリック操作が阻害されないように
        //opacity: 0.2;
      }
    }
    */
  }
}

input {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
}

textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
}

.fade-up {
  --transform-x: translateX(0);
  --transform-y: translateY(0);
  --fade-offset: translateY(0);
  transform: var(--transform-x) var(--transform-y) var(--fade-offset);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in-view {
  --fade-offset: translateY(0);
  opacity: 1;
}
.fade-up:not(.in-view) {
  --fade-offset: translateY(30px);
}

table {
  margin: 0 0 10px;
  border-collapse: collapse;
  border: 1px solid #e1e4ed;
  width: 100%;
}
table tr th {
  background-color: #e1e4ed;
  border: 1px solid #fff;
  padding: 20px;
}
table tr td {
  border: 1px solid #e1e4ed;
  padding: 20px;
}
table tr:first-child th {
  border-top: 1px solid #e1e4ed;
}
table tr:last-child th {
  border-bottom: 1px solid #e1e4ed;
}
table.compact th {
  padding: 10px;
}
table.compact td {
  padding: 10px;
}

.main-layout {
  display: flex;
  gap: 4vw;
  margin: 0 7vw 150px;
}
.main-layout .content {
  width: 100%;
}
.main-layout .content .category .title {
  position: relative;
  margin: 7vw 0 5vw;
  padding: 0 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
.main-layout .content .category .title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  border-left: 5px solid #3ea8da;
}
.main-layout .content .category:first-child .title {
  margin: 0 0 5vw;
}
.main-layout .content .category .products,
.main-layout .content .category .works,
.main-layout .content .category .maintenances {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  margin: 0 0 5vw;
}
.main-layout .content .category .products .product,
.main-layout .content .category .products .work,
.main-layout .content .category .products .maintenance,
.main-layout .content .category .works .product,
.main-layout .content .category .works .work,
.main-layout .content .category .works .maintenance,
.main-layout .content .category .maintenances .product,
.main-layout .content .category .maintenances .work,
.main-layout .content .category .maintenances .maintenance {
  list-style: none;
  width: calc((100% - 5vw) / 2);
  border-radius: 10px;
}
.main-layout .content .category .products .product a,
.main-layout .content .category .products .work a,
.main-layout .content .category .products .maintenance a,
.main-layout .content .category .works .product a,
.main-layout .content .category .works .work a,
.main-layout .content .category .works .maintenance a,
.main-layout .content .category .maintenances .product a,
.main-layout .content .category .maintenances .work a,
.main-layout .content .category .maintenances .maintenance a {
  text-decoration: none;
}
.main-layout .content .category .products .product a .image,
.main-layout .content .category .products .work a .image,
.main-layout .content .category .products .maintenance a .image,
.main-layout .content .category .works .product a .image,
.main-layout .content .category .works .work a .image,
.main-layout .content .category .works .maintenance a .image,
.main-layout .content .category .maintenances .product a .image,
.main-layout .content .category .maintenances .work a .image,
.main-layout .content .category .maintenances .maintenance a .image {
  /*
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  */
  display: block;
  width: 100%;
  min-width: 100%;
  aspect-ratio: 1/0.7;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease;
}
.main-layout .content .category .products .product a:hover .image,
.main-layout .content .category .products .work a:hover .image,
.main-layout .content .category .products .maintenance a:hover .image,
.main-layout .content .category .works .product a:hover .image,
.main-layout .content .category .works .work a:hover .image,
.main-layout .content .category .works .maintenance a:hover .image,
.main-layout .content .category .maintenances .product a:hover .image,
.main-layout .content .category .maintenances .work a:hover .image,
.main-layout .content .category .maintenances .maintenance a:hover .image {
  transform: scale(1.05);
}
.main-layout .content .category .products .product a .caption,
.main-layout .content .category .products .work a .caption,
.main-layout .content .category .products .maintenance a .caption,
.main-layout .content .category .works .product a .caption,
.main-layout .content .category .works .work a .caption,
.main-layout .content .category .works .maintenance a .caption,
.main-layout .content .category .maintenances .product a .caption,
.main-layout .content .category .maintenances .work a .caption,
.main-layout .content .category .maintenances .maintenance a .caption {
  position: relative;
  margin: 20px 0 0;
  padding: 0 30px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}
.main-layout .content .category .products .product a .caption::after,
.main-layout .content .category .products .work a .caption::after,
.main-layout .content .category .products .maintenance a .caption::after,
.main-layout .content .category .works .product a .caption::after,
.main-layout .content .category .works .work a .caption::after,
.main-layout .content .category .works .maintenance a .caption::after,
.main-layout .content .category .maintenances .product a .caption::after,
.main-layout .content .category .maintenances .work a .caption::after,
.main-layout .content .category .maintenances .maintenance a .caption::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow_forward-42-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .main-layout .content .category .products,
  .main-layout .content .category .works,
  .main-layout .content .category .maintenances {
    gap: 8vw;
    margin: 0 0 15vw;
  }
  .main-layout .content .category .products .product,
  .main-layout .content .category .products .work,
  .main-layout .content .category .products .maintenance,
  .main-layout .content .category .works .product,
  .main-layout .content .category .works .work,
  .main-layout .content .category .works .maintenance,
  .main-layout .content .category .maintenances .product,
  .main-layout .content .category .maintenances .work,
  .main-layout .content .category .maintenances .maintenance {
    width: calc((100% - 8vw) / 2);
  }
  .main-layout .content .category .products .product a .caption,
  .main-layout .content .category .products .work a .caption,
  .main-layout .content .category .products .maintenance a .caption,
  .main-layout .content .category .works .product a .caption,
  .main-layout .content .category .works .work a .caption,
  .main-layout .content .category .works .maintenance a .caption,
  .main-layout .content .category .maintenances .product a .caption,
  .main-layout .content .category .maintenances .work a .caption,
  .main-layout .content .category .maintenances .maintenance a .caption {
    font-size: 1.6rem;
  }
}
.main-layout {
  display: flex;
  gap: 4vw;
  margin: 0 7vw 150px;
}
.main-layout .content {
  flex: 56vw;
}
.main-layout .content h1.title {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
.main-layout .content h1.title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  border-left: 5px solid #3ea8da;
}
.main-layout .content .prod-images {
  margin: 0 0 60px;
}
.main-layout .content .prod-images .prod-image img {
  width: 100%;
}
.main-layout .content h3.title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin: 30px 0;
  padding: 0 0 0 30px;
}
.main-layout .content h3.title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
.main-layout .content .spec {
  margin: 30px 0 0;
}
.main-layout .content .detail {
  margin: 30px 0 0;
  /*
        table {
          margin: 0 0 10px;
          border-collapse: collapse;
          border: 1px solid $color-table-bg;
          width: 100%;
          tr {
            th {
              background-color: $color-table-bg;
              border: 1px solid $color-background;
              padding: 20px;
            }
            td {
              border: 1px solid $color-table-bg;
              padding: 20px;
            }
            &:first-child th {
              border-top: 1px solid $color-table-bg;
            }
            &:last-child th {
              border-bottom: 1px solid $color-table-bg;
            }
          }
          &.compact {
            th {
              padding: 10px;
            }
            td {
              padding: 10px;
            }
          }
        }
  */
}
.main-layout .content .detail > * {
  margin: 30px 0 0;
}
.main-layout .content .detail .images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw;
  margin: 10px 0 0;
}
.main-layout .content .detail .images > li {
  list-style: none;
}
.main-layout .content .detail .images > * {
  width: calc((100% - 5vw) / 2);
}
.main-layout .content .detail .images > * > .image img {
  display: block;
}
.main-layout .content .detail .images > * > .caption {
  margin: 10px 0 0;
}
.main-layout .content .detail .list ul {
  padding: 0 0 0 30px;
}
.main-layout .content .detail .list ul li {
  margin: 0 0 10px;
}
.main-layout .content .detail .list dl dt {
  font-weight: 700;
}
.main-layout .content .detail .list dl.list-number > dt {
  position: relative;
  min-height: 30px;
  padding: 0 0 0 40px;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 30px 0 0;
}
.main-layout .content .detail .list dl.list-number > dt .number {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #3ea8da;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  line-height: 1;
  left: 0;
}
.main-layout .content .detail .list dl.list-number > dd {
  margin: 20px 0 0;
}
.main-layout .content .detail .list dl.list-number > dd > * {
  margin: 20px 0 0;
}
.main-layout .content .detail .list dl.list-number > dd .images .image {
  width: auto;
}
.main-layout .content .detail .list dl.list-number > dd .images .image .img {
  text-align: center;
}
.main-layout .content .detail .text p {
  margin: 0 0 10px;
}
.main-layout .content .detail .center {
  text-align: center;
}
.main-layout .content .detail .note {
  font-size: 80%;
}
.main-layout .content .detail .image-text {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
.main-layout .content .detail .image-text .image {
  flex-shrink: 0;
  max-width: 40%;
}
.main-layout .content .detail .image-text .image img {
  width: 100%;
  height: auto;
  display: block;
}
.main-layout .content .detail .image-text .text {
  flex: 1;
  word-break: break-word;
}
.main-layout .content .detail .text-image {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
.main-layout .content .detail .text-image .image {
  flex-shrink: 0;
  max-width: 40%;
}
.main-layout .content .detail .text-image .image img {
  width: 100%;
  height: auto;
  display: block;
}
.main-layout .content .detail .text-image .text {
  flex: 1;
  word-break: break-word;
}

@media (max-width: 768px) {
  .main-layout {
    margin: 0 3vw 150px;
    flex-direction: column;
  }
}
.content-section {
  margin: 0 0 60px;
  /*
    .spec-table-wrap {
      .spec-table {
        margin: 0 0 30px;
        border-collapse: collapse;
        border: 1px solid $color-table-bg;
        width: 100%;
        tr {
          &.bg-highlight {
            background-color: rgb(145, 189, 255);
          }
          th {
            background-color: $color-table-bg;
            border: 1px solid $color-background;
            padding: 20px;
          }
          td {
            border: 1px solid $color-table-bg;
            padding: 20px;
          }
          &:first-child th {
            border-top: 1px solid $color-table-bg;
          }
          &:last-child th {
            border-bottom: 1px solid $color-table-bg;
          }
        }
        &.compact {
          tr {
            th {
              padding: 10px;
            }
            td {
              padding: 10px;
            }
          }
        }
      }
    }
  */
}
.content-section .section-title-base, .content-section .section-title-highlight, .content-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.content-section .section-title {
  position: relative;
  padding: 0 0 10px;
  border-bottom: 1px solid #ccc;
}
.content-section .section-title::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -2px;
  background-color: #3ea8da;
}
.content-section .section-title-highlight {
  background-color: #eee;
}
.content-section .section-title-highlight .highlight-box {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px;
  background-color: rgb(196, 0, 0);
  color: #fff;
}
.content-section .subsection-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 30px 0;
  padding: 0 0 0 30px;
}
.content-section .subsection-title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
.content-section .section-description {
  margin: 0 0 30px;
}
.content-section .section-description p {
  margin: 0 0 20px;
}
.content-section .section-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-section .section-description ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
}
.content-section .section-description ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-size: 0.7em;
  line-height: 1;
  color: #3ea8da;
}
.content-section .section-description dl dt {
  position: relative;
  margin: 0 0 20px;
  padding-left: 1.2em;
  font-size: 1.8rem;
  font-weight: 700;
}
.content-section .section-description dl dt::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.2rem;
  margin-right: 0.9rem;
  font-size: 1.6rem;
  color: #3ea8da;
}
.content-section .spec-table-wrap {
  margin: 0 0 30px;
}
.content-section .content-flex-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5vw;
  margin: 0 0 30px;
}
.content-section .content-flex-items:not(.cols2) {
  justify-content: flex-start;
}
.content-section .content-flex-items .content-flex-item .content-title {
  margin: 0 0 10px;
  background-color: #3ea8da;
  color: #fff;
  text-align: center;
}
.content-section .content-flex-items .content-flex-item .content-image img {
  width: 100%;
}
.content-section .content-flex-items.cols2 .content-flex-item {
  flex: 1 1 calc(50% - 5vw);
  max-width: calc(50% - 5vw);
}
.content-section .content-flex-items.cols3 .content-flex-item {
  flex: 1 1 calc(33.333% - 5vw);
  max-width: calc(33.333% - 5vw);
}

.sidebar {
  flex: 26vw;
}
.sidebar .categories,
.sidebar .category,
.sidebar .links {
  margin: 0 0 30px;
}
.sidebar .categories:last-child,
.sidebar .category:last-child,
.sidebar .links:last-child {
  margin: 0;
}
.sidebar .categories dt,
.sidebar .category dt,
.sidebar .links dt {
  position: relative;
  font-weight: 700;
  margin: 10px 0;
  padding: 0 0 0 30px;
}
.sidebar .categories dt::before,
.sidebar .category dt::before,
.sidebar .links dt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
.sidebar .categories dd ul,
.sidebar .category dd ul,
.sidebar .links dd ul {
  display: flex;
  flex-direction: column;
}
.sidebar .categories dd ul li,
.sidebar .category dd ul li,
.sidebar .links dd ul li {
  position: relative;
  flex-basis: calc(50% - 15px);
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  list-style: none;
}
.sidebar .categories dd ul li::after,
.sidebar .category dd ul li::after,
.sidebar .links dd ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward-42-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.2;
}
.sidebar .categories dd ul li a,
.sidebar .category dd ul li a,
.sidebar .links dd ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #000;
}
.sidebar .categories dd ul li a .image,
.sidebar .category dd ul li a .image,
.sidebar .links dd ul li a .image {
  display: block;
  width: 23%;
  min-width: 23%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease;
}
.sidebar .categories dd ul li a:hover .image,
.sidebar .category dd ul li a:hover .image,
.sidebar .links dd ul li a:hover .image {
  transform: scale(1.2);
}
.sidebar .categories dd ul li a .title,
.sidebar .category dd ul li a .title,
.sidebar .links dd ul li a .title {
  flex-grow: 1;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  padding: 0 25px 0 0;
}

.emphasis {
  font-weight: 700;
}

ol {
  padding-left: 2rem;
}
ol li {
  padding-left: 0.5rem;
}
ol li::marker {
  color: #59a8ed;
}

.button-link {
  margin: 50px 0 70px;
  text-align: center;
}
.button-link .button {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  background-color: #2053c6;
  border-radius: 50px;
  padding: 20px 120px;
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
}
.button-link .button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../images/icons/arrow_forward_42-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.googlemap iframe {
  width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .googlemap iframe {
    width: 100%;
    height: 300px;
  }
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  padding: 7px;
  background-color: #2053c6;
  border: none;
  border-radius: 10%;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1000;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top.hide {
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 10px;
    right: 10px;
    padding: 5px;
  }
}
#contact .main-layout,
#report .main-layout {
  display: flex;
  gap: 4vw;
  margin: 0 7vw 150px;
}
#contact .main-layout .content,
#report .main-layout .content {
  flex: 56vw;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#contact .main-layout .content .title,
#report .main-layout .content .title {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
#contact .main-layout .content .title::before,
#report .main-layout .content .title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  border-left: 5px solid #3ea8da;
}
#contact .main-layout .content .prod-images,
#report .main-layout .content .prod-images {
  margin: 30px 0 0;
}
#contact .main-layout .content .prod-images .prod-image img,
#report .main-layout .content .prod-images .prod-image img {
  width: 100%;
}
#contact .main-layout .content .section,
#report .main-layout .content .section {
  margin: 0 0 60px;
}
#contact .main-layout .content .section:last-child,
#report .main-layout .content .section:last-child {
  margin: 0;
}
#contact .main-layout .content .section .title,
#report .main-layout .content .section .title {
  position: relative;
  margin: 7vw 0 5vw;
  padding: 0 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
#contact .main-layout .content .section .title::before,
#report .main-layout .content .section .title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  border-left: 5px solid #3ea8da;
}
#contact .main-layout .content .section:first-child .title,
#report .main-layout .content .section:first-child .title {
  margin: 0 0 5vw;
}
#contact .main-layout .content .section table,
#report .main-layout .content .section table {
  border-collapse: collapse;
  border: 1px solid #e1e4ed;
  width: 100%;
}
#contact .main-layout .content .section table tr th,
#report .main-layout .content .section table tr th {
  background-color: #e1e4ed;
  border: 1px solid #fff;
  padding: 20px;
  width: 30%;
}
#contact .main-layout .content .section table tr th .required,
#report .main-layout .content .section table tr th .required {
  color: #c50000;
}
#contact .main-layout .content .section table tr td,
#report .main-layout .content .section table tr td {
  border: 1px solid #e1e4ed;
  padding: 20px;
}
#contact .main-layout .content .section table tr td div,
#report .main-layout .content .section table tr td div {
  margin: 10px 0 0;
}
#contact .main-layout .content .section table tr td .zip-code,
#contact .main-layout .content .section table tr td .tel,
#contact .main-layout .content .section table tr td .fax,
#report .main-layout .content .section table tr td .zip-code,
#report .main-layout .content .section table tr td .tel,
#report .main-layout .content .section table tr td .fax {
  display: flex;
  gap: 10px;
}
#contact .main-layout .content .section table tr:first-child th,
#report .main-layout .content .section table tr:first-child th {
  border-top: 1px solid #e1e4ed;
}
#contact .main-layout .content .section table tr:last-child th,
#report .main-layout .content .section table tr:last-child th {
  border-bottom: 1px solid #e1e4ed;
}
#contact .main-layout .content .section .desc p,
#report .main-layout .content .section .desc p {
  margin: 0 0 2rem;
}
#contact .main-layout .content .section .submit,
#report .main-layout .content .section .submit {
  text-align: center;
  border-top: 1px solid #ccc;
  padding: 30px 0 0;
}
#contact .main-layout .content .detail,
#report .main-layout .content .detail {
  margin: 30px 0 0;
}
#contact .main-layout .content .detail .title,
#report .main-layout .content .detail .title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  padding: 30px 0 30px 30px;
}
#contact .main-layout .content .detail .title::before,
#report .main-layout .content .detail .title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
#contact .main-layout .content .detail .images,
#report .main-layout .content .detail .images {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
}
#contact .main-layout .content .detail .images li,
#report .main-layout .content .detail .images li {
  list-style: none;
  width: calc((100% - 5vw) / 2);
}
#contact .main-layout .content .detail .images li img,
#report .main-layout .content .detail .images li img {
  width: 100%;
}
#contact .main-layout .sidebar,
#report .main-layout .sidebar {
  flex: 26vw;
}
#contact .main-layout .sidebar dl.category,
#report .main-layout .sidebar dl.category {
  margin: 30px 0 0;
}
#contact .main-layout .sidebar dl.category dt,
#report .main-layout .sidebar dl.category dt {
  position: relative;
  font-weight: 700;
  margin: 10px 0;
  padding: 0 0 0 30px;
}
#contact .main-layout .sidebar dl.category dt::before,
#report .main-layout .sidebar dl.category dt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
#contact .main-layout .sidebar dl.category dd ul,
#report .main-layout .sidebar dl.category dd ul {
  display: flex;
  flex-direction: column;
}
#contact .main-layout .sidebar dl.category dd ul li,
#report .main-layout .sidebar dl.category dd ul li {
  position: relative;
  flex-basis: calc(50% - 15px);
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  list-style: none;
}
#contact .main-layout .sidebar dl.category dd ul li::after,
#report .main-layout .sidebar dl.category dd ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward-42-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.2;
}
#contact .main-layout .sidebar dl.category dd ul li a,
#report .main-layout .sidebar dl.category dd ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #000;
}
#contact .main-layout .sidebar dl.category dd ul li a .image,
#report .main-layout .sidebar dl.category dd ul li a .image {
  display: block;
  width: 23%;
  min-width: 6vw;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease;
}
#contact .main-layout .sidebar dl.category dd ul li a:hover .image,
#report .main-layout .sidebar dl.category dd ul li a:hover .image {
  transform: scale(1.2);
}
#contact .main-layout .sidebar dl.category dd ul li a .title,
#report .main-layout .sidebar dl.category dd ul li a .title {
  flex-grow: 1;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  padding: 0 25px 0 0;
}
#contact .main-layout .sidebar dl.categories,
#report .main-layout .sidebar dl.categories {
  margin: 40px 0 0;
}
#contact .main-layout .sidebar dl.categories dt,
#report .main-layout .sidebar dl.categories dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0;
  padding: 0 0 0 30px;
}
#contact .main-layout .sidebar dl.categories dt::before,
#report .main-layout .sidebar dl.categories dt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3ea8da;
}
#contact .main-layout .sidebar dl.categories dd ul,
#report .main-layout .sidebar dl.categories dd ul {
  display: flex;
  flex-direction: column;
}
#contact .main-layout .sidebar dl.categories dd ul li,
#report .main-layout .sidebar dl.categories dd ul li {
  position: relative;
  flex-basis: calc(50% - 15px);
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  list-style: none;
}
#contact .main-layout .sidebar dl.categories dd ul li::after,
#report .main-layout .sidebar dl.categories dd ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow_forward-42-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.2;
}
#contact .main-layout .sidebar dl.categories dd ul li a,
#report .main-layout .sidebar dl.categories dd ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #000;
}
#contact .main-layout .sidebar dl.categories dd ul li a .image,
#report .main-layout .sidebar dl.categories dd ul li a .image {
  display: block;
  width: 23%;
  min-width: 6vw;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
  transition: transform 0.3s ease;
}
#contact .main-layout .sidebar dl.categories dd ul li a:hover .image,
#report .main-layout .sidebar dl.categories dd ul li a:hover .image {
  transform: scale(1.2);
}
#contact .main-layout .sidebar dl.categories dd ul li a .title,
#report .main-layout .sidebar dl.categories dd ul li a .title {
  flex-grow: 1;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  padding: 0 25px 0 0;
}

label input[type=checkbox], label input[type=radio] {
  margin-right: 5px;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
}

input.zip-1 {
  width: 60px;
}

input.zip-2 {
  width: 60px;
}

input.tel-1,
input.tel-2,
input.tel-3 {
  width: 60px;
}

input.fax-1,
input.fax-2,
input.fax-3 {
  width: 60px;
}

.error {
  margin: 5px 0;
  color: #f00;
}

.button-area {
  display: flex;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid #ccc;
  padding: 30px 0 0;
}
.button-area .button-next {
  padding: 20px;
  background-color: #59a8ed;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.button-area .button-back {
  border: none;
  border-radius: 5px;
  padding: 18px 50px;
  background-color: #eee;
  color: #333;
  font-weight: 700;
  text-decoration: none;
}
.button-area .button-send {
  padding: 20px 84px;
  background-color: #59a8ed;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  #contact .main-layout,
  #report .main-layout {
    margin: 0 3vw 150px;
  }
  #contact .main-layout .content .section table,
  #report .main-layout .content .section table {
    border: none;
    display: block;
  }
  #contact .main-layout .content .section table tbody,
  #report .main-layout .content .section table tbody {
    display: block;
  }
  #contact .main-layout .content .section table tbody tr,
  #report .main-layout .content .section table tbody tr {
    display: block;
  }
  #contact .main-layout .content .section table tbody tr th,
  #report .main-layout .content .section table tbody tr th {
    display: block;
    border: none;
    width: 100%;
  }
  #contact .main-layout .content .section table tbody tr td,
  #report .main-layout .content .section table tbody tr td {
    display: block;
  }
  #contact .main-layout .content .section .desc p,
  #report .main-layout .content .section .desc p {
    margin: 0 0 2rem;
  }
  #contact .main-layout .content .section .submit,
  #report .main-layout .content .section .submit {
    text-align: center;
    border-top: 1px solid #ccc;
    padding: 30px 0 0;
  }
  #contact .main-layout .content .detail,
  #report .main-layout .content .detail {
    margin: 30px 0 0;
  }
  #contact .main-layout .content .detail .title,
  #report .main-layout .content .detail .title {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    padding: 30px 0 30px 30px;
  }
  #contact .main-layout .content .detail .title::before,
  #report .main-layout .content .detail .title::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3ea8da;
  }
  #contact .main-layout .content .detail .images,
  #report .main-layout .content .detail .images {
    display: flex;
    flex-wrap: wrap;
    gap: 5vw;
  }
  #contact .main-layout .content .detail .images li,
  #report .main-layout .content .detail .images li {
    list-style: none;
    width: calc((100% - 5vw) / 2);
  }
  #contact .main-layout .content .detail .images li img,
  #report .main-layout .content .detail .images li img {
    width: 100%;
  }
  #contact .main-layout .sidebar,
  #report .main-layout .sidebar {
    flex: 26vw;
  }
  #contact .main-layout .sidebar dl.category,
  #report .main-layout .sidebar dl.category {
    margin: 30px 0 0;
  }
  #contact .main-layout .sidebar dl.category dt,
  #report .main-layout .sidebar dl.category dt {
    position: relative;
    font-weight: 700;
    margin: 10px 0;
    padding: 0 0 0 30px;
  }
  #contact .main-layout .sidebar dl.category dt::before,
  #report .main-layout .sidebar dl.category dt::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3ea8da;
  }
  #contact .main-layout .sidebar dl.category dd ul,
  #report .main-layout .sidebar dl.category dd ul {
    display: flex;
    flex-direction: column;
  }
  #contact .main-layout .sidebar dl.category dd ul li,
  #report .main-layout .sidebar dl.category dd ul li {
    position: relative;
    flex-basis: calc(50% - 15px);
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    list-style: none;
  }
  #contact .main-layout .sidebar dl.category dd ul li::after,
  #report .main-layout .sidebar dl.category dd ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/icons/arrow_forward-42-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0.2;
  }
  #contact .main-layout .sidebar dl.category dd ul li a,
  #report .main-layout .sidebar dl.category dd ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #000;
  }
  #contact .main-layout .sidebar dl.category dd ul li a .image,
  #report .main-layout .sidebar dl.category dd ul li a .image {
    display: block;
    width: 23%;
    min-width: 6vw;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center center;
    transition: transform 0.3s ease;
  }
  #contact .main-layout .sidebar dl.category dd ul li a:hover .image,
  #report .main-layout .sidebar dl.category dd ul li a:hover .image {
    transform: scale(1.2);
  }
  #contact .main-layout .sidebar dl.category dd ul li a .title,
  #report .main-layout .sidebar dl.category dd ul li a .title {
    flex-grow: 1;
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
    padding: 0 25px 0 0;
  }
  #contact .main-layout .sidebar dl.categories,
  #report .main-layout .sidebar dl.categories {
    margin: 40px 0 0;
  }
  #contact .main-layout .sidebar dl.categories dt,
  #report .main-layout .sidebar dl.categories dt {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0;
    padding: 0 0 0 30px;
  }
  #contact .main-layout .sidebar dl.categories dt::before,
  #report .main-layout .sidebar dl.categories dt::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3ea8da;
  }
  #contact .main-layout .sidebar dl.categories dd ul,
  #report .main-layout .sidebar dl.categories dd ul {
    display: flex;
    flex-direction: column;
  }
  #contact .main-layout .sidebar dl.categories dd ul li,
  #report .main-layout .sidebar dl.categories dd ul li {
    position: relative;
    flex-basis: calc(50% - 15px);
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    list-style: none;
  }
  #contact .main-layout .sidebar dl.categories dd ul li::after,
  #report .main-layout .sidebar dl.categories dd ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/icons/arrow_forward-42-black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0.2;
  }
  #contact .main-layout .sidebar dl.categories dd ul li a,
  #report .main-layout .sidebar dl.categories dd ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #000;
  }
  #contact .main-layout .sidebar dl.categories dd ul li a .image,
  #report .main-layout .sidebar dl.categories dd ul li a .image {
    display: block;
    width: 23%;
    min-width: 6vw;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center center;
    transition: transform 0.3s ease;
  }
  #contact .main-layout .sidebar dl.categories dd ul li a:hover .image,
  #report .main-layout .sidebar dl.categories dd ul li a:hover .image {
    transform: scale(1.2);
  }
  #contact .main-layout .sidebar dl.categories dd ul li a .title,
  #report .main-layout .sidebar dl.categories dd ul li a .title {
    flex-grow: 1;
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
    padding: 0 25px 0 0;
  }
  input[type=text],
  input[type=email],
  textarea {
    width: 100%;
  }
  input.zip-1 {
    width: 60px;
  }
  input.zip-2 {
    width: 60px;
  }
  input.tel-1,
  input.tel-2,
  input.tel-3 {
    width: 60px;
  }
  input.fax-1,
  input.fax-2,
  input.fax-3 {
    width: 60px;
  }
  .button-area {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid #ccc;
    padding: 30px 0 0;
  }
  .button-area .button-next {
    padding: 20px;
    background-color: #59a8ed;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
  }
  .button-area .button-back {
    border: none;
    border-radius: 5px;
    padding: 18px 50px;
    background-color: #eee;
    color: #333;
    font-weight: 700;
    text-decoration: none;
  }
  .button-area .button-send {
    padding: 20px 84px;
    background-color: #59a8ed;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
  }
}/*# sourceMappingURL=style.css.map */