*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  background: #ffffff;
}
body.nav-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}

header {
  padding: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 32px 0 20px;
  gap: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-decoration: none;
}
.logo-area img {
  height: 40px;
  width: auto;
}

.pc-nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 8px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
.pc-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pc-nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.pc-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1a5fa8;
  -webkit-transition: width 0.25s ease;
  transition: width 0.25s ease;
}
.pc-nav ul li a:hover {
  color: #1a5fa8;
}
.pc-nav ul li a:hover::after {
  width: calc(100% - 45px);
}
.pc-nav ul li.active a {
  color: #1a5fa8;
  font-weight: 600;
}
.pc-nav ul li.active a::after {
  width: calc(100% - 45px);
}
@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 20px;
    margin-top: 8px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .hamburger.is-open span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.cta-btn_2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 32px;
  background: #2b2b2b;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.cta-btn_2:hover {
  background: #1a5fa8;
}
@media (max-width: 768px) {
  .cta-btn_2 {
    display: none;
  }
}

.sp-nav {
  display: none;
}
@media (max-width: 768px) {
  .sp-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 26, 46, 0.97);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
  }
  .sp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-nav ul {
    list-style: none;
    text-align: center;
    width: 100%;
  }
  .sp-nav ul li a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .sp-nav ul li a:hover {
    color: #1a5fa8;
  }
  .sp-nav .nav-cta-sp {
    display: block;
    margin-top: 36px;
    padding: 16px 48px;
    background: #1a5fa8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-radius: 2px;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
  }
  .sp-nav .nav-cta-sp:hover {
    background: rgb(32.8350515464, 119.9742268041, 212.1649484536);
  }
}

.sp-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.sp-nav-close span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.sp-nav-close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.sp-nav-close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-wrapper {
  height: auto;
  position: relative;
  z-index: 0;
}

.hero img:first-child {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero #hero-headline-bnr {
  width: 51%;
  display: inline-block;
}
@media (max-width: 768px) {
  .hero #hero-headline-bnr {
    display: none;
  }
}
.hero #hero-headline-bnr-sp {
  display: none;
}
@media (max-width: 768px) {
  .hero #hero-headline-bnr-sp {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    display: inline-block;
    width: 100px;
  }
}

.square {
  position: absolute;
  bottom: -12%;
  right: 0;
  z-index: -1;
}

.hero-text {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: absolute;
  right: 8%;
  bottom: 28%;
  text-align: right;
  -webkit-animation: fadeUp 0.9s ease both;
          animation: fadeUp 0.9s ease both;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero-headline {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 800;
  color: rgba(4, 136, 205, 0.5098039216);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero-headline span {
  color: rgba(4, 136, 205, 0.5098039216);
}

.hero-sub {
  margin-top: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 500;
  color: rgba(4, 136, 205, 0.5098039216);
  letter-spacing: 0.08em;
}
.hero-sub span {
  color: rgba(4, 136, 205, 0.5098039216);
}

.hero-catch-sp {
  display: none;
}

.news-panel {
  position: absolute;
  right: 0;
  bottom: -7%;
  width: 800px;
  background: #0488cd;
  padding: 42px 32px 20px 32px;
  z-index: 10;
  -webkit-animation: fadeUp 1.1s 0.3s ease both;
          animation: fadeUp 1.1s 0.3s ease both;
}

.news-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-top: 2px;
}
.news-label .news-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  display: block;
}
.news-label .news-ja {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 2px;
}

.news-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  max-width: 400px;
}
.news-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}
.news-list li a {
  text-decoration: none;
}

.news-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.news-title {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.news-more {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-transition: gap 0.2s ease;
  transition: gap 0.2s ease;
}
.news-more:hover {
  gap: 18px;
}
.news-more:hover .news-more-arrow circle {
  fill: rgba(255, 255, 255, 0.15);
}

.news-more-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.news-more-arrow svg {
  display: block;
}

.news-list-sp {
  display: none;
}

.news-more-sp {
  display: none;
}

.below-wrap {
  background-image: url("../images/our_strengths_bk.png");
  background-size: cover;
}
@media (max-width: 768px) {
  .below-wrap {
    background-image: url("../images/our_strengths_bk_sp.png");
    background-size: contain;
  }
}

.below-hero {
  padding: 80px;
  background: #ffffff;
}
.below-hero h2 {
  text-align: left;
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.below-hero p {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #666;
  line-height: 2;
}

.strengths {
  position: relative;
  padding: 80px 5% 0;
}

.strengths-header {
  text-align: left;
  margin-bottom: 60px;
}
.strengths-header .sec-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.01em;
  line-height: 1;
}
.strengths-header .sec-en span {
  color: #1a5fa8;
}
.strengths-header .sec-ja {
  font-weight: bold;
  display: block;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.1em;
  margin-top: 6px;
  margin-bottom: 24px;
}
.strengths-header .sec-desc {
  font-weight: bold;
  font-size: 13.5px;
  color: #555;
  line-height: 2;
  max-width: 360px;
}

.strengths-grid {
  bottom: 200px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 60px;
  justify-items: center;
  max-width: 960px;
  margin: auto;
}

.strength-card {
  width: 300px;
  max-width: 400px;
  position: relative;
  background: #ffffff;
  padding: 28px 24px;
  -webkit-box-shadow: 0 4px 20px rgba(26, 95, 168, 0.08);
          box-shadow: 0 4px 20px rgba(26, 95, 168, 0.08);
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.strength-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 32px rgba(26, 95, 168, 0.14);
          box-shadow: 0 10px 32px rgba(26, 95, 168, 0.14);
}
.strength-card:nth-child(1) {
  margin-top: 80px;
}
.strength-card:nth-child(2) {
  margin-top: 0;
  margin-bottom: 7rem;
}
.strength-card:nth-child(3) {
  margin-top: 30px;
  margin-bottom: 15rem;
}

.card-num {
  letter-spacing: 1px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(109, 115, 125, 0.2);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -34px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.card-illust {
  margin: auto;
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.card-illust img {
  width: 100%;
  height: auto;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #2181cd;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.card-body {
  font-weight: bold;
  text-align: left;
  font-size: 12.5px;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.cases {
  position: relative;
  padding: 80px 0 120px;
  background: #fff;
  overflow: visible;
}

.cases-header {
  position: absolute;
  top: -29px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
  padding: 0 5%;
}
.cases-header .sec-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.01em;
  line-height: 1;
}
.cases-header .sec-en span {
  color: #1a5fa8;
}
.cases-header .sec-ja {
  display: block;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.cases-slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}
.cases-slider-wrap .slick-dots {
  bottom: -40px;
}
.cases-slider-wrap .slick-dots li button:before {
  font-size: 9px;
  color: #b0bec5;
  opacity: 1;
}
.cases-slider-wrap .slick-dots li.slick-active button:before {
  color: #1a5fa8;
}
.cases-slider-wrap .slick-prev,
.cases-slider-wrap .slick-next {
  width: 40px;
  height: 40px;
  z-index: 20;
  top: 42%;
}
.cases-slider-wrap .slick-prev:before,
.cases-slider-wrap .slick-next:before {
  font-size: 26px;
  color: #1a5fa8;
  opacity: 0.75;
}
.cases-slider-wrap .slick-prev {
  left: 1.5%;
}
.cases-slider-wrap .slick-next {
  right: 1.5%;
}

.cases-sp-wrap {
  display: none;
}

.case-slide {
  padding: 0 10px;
  outline: none;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.case-card {
  background: #ffffff;
  border: 1px solid #2f2f2f;
  border-radius: 0 6px 6px 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(26, 95, 168, 0.07);
          box-shadow: 0 4px 20px rgba(26, 95, 168, 0.07);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}

.slick-slide:not(.slick-center) .case-card {
  opacity: 0.5;
}

.slick-center .case-card {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: 0 14px 44px rgba(26, 95, 168, 0.15);
          box-shadow: 0 14px 44px rgba(26, 95, 168, 0.15);
}

.case-badge {
  display: inline-block;
  background: #1a1a2e;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 12px 44px;
  max-width: 180px;
  min-width: 180px;
}

.case-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 98%;
  height: 400px;
  margin: 5px auto 0;
  background: -webkit-linear-gradient(315deg, #c8d6e2 0%, #dce8f0 100%);
  background: linear-gradient(135deg, #c8d6e2 0%, #dce8f0 100%);
  position: relative;
  overflow: hidden;
}
.case-img img {
  width: 100%;
}

.case-img-headline {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.93);
  padding: 10px 18px;
  text-align: right;
  max-width: 80%;
}
.case-img-headline .hl-sub {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.04em;
  display: block;
}
.case-img-headline .hl-main {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.case-body {
  padding: 22px 22px 26px;
}

.case-tag-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.case-tag {
  display: inline-block;
  border: 1.5px solid #1a5fa8;
  color: #1a5fa8;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  line-height: 1.8;
}
.case-tag.filled {
  background: #1a5fa8;
  color: #ffffff;
  border-color: #1a5fa8;
}

.case-tag-text {
  font-size: 12.5px;
  color: #555;
  line-height: 1.85;
}

.case-solution-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.case-solution-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a5fa8;
  line-height: 1.55;
}

.case-solution-body {
  font-size: 12.5px;
  color: #555;
  line-height: 1.9;
}

.products {
  background: #fff;
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 5%;
}
.products-header .sec-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.01em;
  line-height: 1;
}
.products-header .sec-en span {
  color: #1a5fa8;
}
.products-header .sec-ja {
  display: block;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.products-header--sp {
  display: none;
}

.products-bg {
  background-image: url("../images/products_bk.png");
  background-size: cover;
  padding: 40px 0 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.products-grid--row_even, .products-grid--row_odd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
}

.products-grid--row_odd {
  margin-left: 13%;
}

.products-grid--row_even {
  margin-left: 5%;
}

.product-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 1/1.1;
  cursor: pointer;
}
.product-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.5s !important;
  transition: all 0.5s !important;
  text-decoration: none;
}
.product-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
}

.product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ededed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 14px;
}

.product-label-name {
  font-size: 13px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.makers {
  padding: 72px 5% 80px;
  background: #ffffff;
}

.makers-title {
  text-align: center;
  margin-bottom: 52px;
}
.makers-title h2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.18em;
}
.makers-title h2 .char {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.makers-title h2 .char::before {
  content: "|";
  color: #1a5fa8;
  font-weight: 400;
  margin-right: 3px;
  font-size: 0.9em;
}
.makers-title h2 .char:last-child::after {
  content: "|";
  color: #1a5fa8;
  font-weight: 400;
  margin-left: 3px;
  font-size: 0.9em;
}

.makers-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px 10px;
  max-width: 860px;
  margin: 0 auto;
}
.makers-row .maker-logo:nth-child(1) {
  grid-column: 1/3;
}
.makers-row .maker-logo:nth-child(2) {
  grid-column: 3/5;
}
.makers-row .maker-logo:nth-child(3) {
  grid-column: 5/7;
}
.makers-row .maker-logo:nth-child(4) {
  grid-column: 7/9;
}
.makers-row .maker-logo:nth-child(5) {
  grid-column: 2/4;
}
.makers-row .maker-logo:nth-child(6) {
  grid-column: 4/6;
}
.makers-row .maker-logo:nth-child(7) {
  grid-column: 6/8;
}

.maker-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.maker-logo:hover {
  opacity: 0.7;
}
.maker-logo img {
  height: 55px;
  width: auto;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  padding: 80px 5%;
  background-image: url("../images/cf7_bk.png");
  background-size: cover;
  background-position: center;
}

.contact-inner {
  background: #ffffff;
  border-radius: 8px;
  padding: 48px 40px 56px;
  max-width: 880px;
  margin: 0 auto;
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.01em;
  line-height: 1;
}
.contact-en span {
  color: #1a5fa8;
}

.contact-ja {
  display: block;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.12em;
  margin-top: 6px;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 13px;
  color: #333;
  line-height: 2;
  text-align: center;
}

.cf7-field-group {
  margin-bottom: 20px;
}

.cf7-label {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #1a5fa8;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.wpcf7 {
  max-width: 550px;
  margin: auto;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  width: 100%;
  height: 44px;
  border: 1.5px solid #ccd6e0;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus {
  outline: none;
  border-color: #1a5fa8;
}
.wpcf7 textarea {
  width: 100%;
  min-height: 180px;
  border: 1.5px solid #ccd6e0;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  color: #1a1a2e;
  background: #ffffff;
  resize: vertical;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.wpcf7 textarea:focus {
  outline: none;
  border-color: #1a5fa8;
}
.wpcf7 .cf7-radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px 80px;
  margin-top: 4px;
}
.wpcf7 .cf7-radio-wrap .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .cf7-radio-wrap .wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #333;
  cursor: pointer;
}
.wpcf7 .cf7-radio-wrap .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #1a5fa8;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.wpcf7 .cf7-privacy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: #333;
}
.wpcf7 .cf7-privacy .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .cf7-privacy .wpcf7-acceptance .wpcf7-list-item label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7 .cf7-privacy .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #1a5fa8;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.wpcf7 .cf7-privacy a {
  color: #1a5fa8;
  text-decoration: underline;
}
.wpcf7 .cf7-privacy a:hover {
  opacity: 0.75;
}
.wpcf7 .cf7-notice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
}
.wpcf7 .cf7-notice .sub {
  color: #f6a623;
  font-weight: 700;
  white-space: nowrap;
}
.wpcf7 input[type=submit] {
  display: block;
  width: 100%;
  height: 56px;
  background: #F4810A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.wpcf7 input[type=submit]:hover {
  background: rgb(230.7597523144, 146.8471151092, 9.4401716856);
}
.wpcf7 input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  border: none !important;
}
.wpcf7.sent .wpcf7-response-output {
  background: #ebf8f0;
  color: #276749;
}
.wpcf7.failed .wpcf7-response-output, .wpcf7.invalid .wpcf7-response-output {
  background: #fff5f5;
  color: #c53030;
}

.company {
  padding: 80px 5% 100px;
  background: #f5f7fa;
}

.company-header {
  text-align: center;
  margin-bottom: 48px;
}
.company-header h2 {
  font-family: "Yu Gothic", "YuGothic", sans-serif !important;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.4em;
}

.company-table {
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}
.company-table tr {
  border-bottom: 1px solid #d8dfe8;
}
.company-table tr:first-child {
  border-top: 1px solid #d8dfe8;
}
.company-table th {
  padding: 20px 24px 20px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.06em;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
  border-top: 3px solid #1a5fa8;
}
.company-table td {
  padding: 20px 0 20px 24px;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  vertical-align: top;
}
.company-table td a {
  color: #1a5fa8;
  text-decoration: none;
  font-size: 13px;
}
.company-table td a:hover {
  text-decoration: underline;
}

.company-btn {
  width: 75%;
}
.company-btn .news-more {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1d77bd;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-transition: gap 0.2s ease;
  transition: gap 0.2s ease;
}
.company-btn .news-more line, .company-btn .news-more circle, .company-btn .news-more path {
  stroke: #1d77bd;
}
.company-btn .news-more:hover {
  gap: 18px;
}
.company-btn .news-more-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company-btn .news-more-arrow svg {
  display: block;
}

.company-banner {
  max-width: 720px;
  margin: 40px auto 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.company-banner:hover {
  opacity: 0.9;
}
.company-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.company-banner-inner {
  padding: 24px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding-top: 64px;
    height: auto;
    min-height: auto;
    overflow: visible;
    position: relative;
  }
  .hero {
    position: relative;
  }
  .hero img:first-child {
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .square {
    display: none;
  }
  .hero-text {
    font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: -90px;
    width: auto;
    text-align: left;
    -webkit-animation: none;
            animation: none;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding: 16px 0px 0 30px;
    z-index: 20;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), to(rgba(79, 162, 204, 0)));
    background: -webkit-linear-gradient(right, rgb(255, 255, 255), rgba(79, 162, 204, 0));
    background: linear-gradient(to left, rgb(255, 255, 255), rgba(79, 162, 204, 0));
  }
  .hero-headline {
    font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: clamp(28px, 11vw, 44px);
    color: rgba(4, 136, 205, 0.75);
    line-height: 1.05;
    text-shadow: none;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .hero-headline br {
    display: none;
  }
  .hero-headline span {
    color: rgba(4, 136, 205, 0.75);
  }
  .hero-sub {
    display: none;
  }
  .hero-catch-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background: #2f2f2f;
    position: relative;
    z-index: 10;
  }
  .hero-catch-sp-inner {
    text-align: left;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 20px 22px;
  }
  .hero-catch-sp-title {
    font-family: "Yu Gothic", "YuGothic", sans-serif !important;
    font-size: clamp(18px, 5.5vw, 24px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hero-catch-sp-desc {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
  }
  .hero-catch-sp-accent-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-catch-sp-accent_1 {
    height: 30px;
    width: 30%;
    background: #ffffff;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .hero-catch-sp-accent_2 {
    height: 30px;
    width: 70%;
    background: -webkit-gradient(linear, left top, right top, from(#2f86c6), color-stop(#1f5d8f), to(#0f3f66));
    background: -webkit-linear-gradient(left, #2f86c6, #1f5d8f, #0f3f66);
    background: linear-gradient(to right, #2f86c6, #1f5d8f, #0f3f66);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .below-hero {
    padding: 32px 5% 0;
    background: #ffffff;
  }
  .below-hero h2, .below-hero p {
    display: none;
  }
  .news-panel {
    position: static;
    width: 90%;
    margin: auto;
    padding: 20px 16px 16px;
    background: #ffffff;
  }
  .news-inner,
  .news-more {
    display: none;
  }
  .news-label,
  .news-list {
    display: none;
  }
  .news-list-sp {
    display: block;
    list-style: none;
  }
  .news-list-sp-link {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    text-decoration: none;
  }
  .news-list-sp-link:hover .news-list-sp-arrow circle {
    stroke: #1a5fa8;
  }
  .news-list-sp-header {
    grid-column: 1;
    grid-row: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .news-list-sp-header::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #1a5fa8;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .news-list-sp-title {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
    text-align: left;
    color: #333;
    line-height: 1.6;
  }
  .news-list-sp-arrow {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
  .news-list-sp-arrow svg {
    display: block;
    -webkit-transition: stroke 0.2s;
    transition: stroke 0.2s;
  }
  .news-list-sp-date {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a5fa8;
    letter-spacing: 0.04em;
  }
  .news-more-sp {
    display: block;
    text-align: right;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1a5fa8;
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  .news-more-sp:hover {
    text-decoration: underline;
  }
  .strengths {
    padding: 48px 5% 0;
  }
  .strengths-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .strengths-header .sec-en {
    font-size: 26px;
  }
  .strengths-header .sec-desc {
    font-size: 12.5px;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 32px;
    bottom: 0;
  }
  .strength-card {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 15px 10px;
  }
  .card-num {
    font-size: 52px;
    top: -38px;
    left: -8px;
  }
  .card-illust {
    width: 60%;
  }
  .card-title {
    font-size: 23px;
  }
  .card-body {
    font-size: 15.5px;
  }
  .cases {
    padding: 48px 0 64px;
  }
  .cases-header {
    position: static;
    margin-bottom: 28px;
  }
  .cases-slider-wrap {
    display: none;
  }
  .cases-sp-wrap {
    display: block;
    padding: 0 40px;
    position: relative;
  }
  .cases-sp-slider .slick-dots {
    bottom: -32px;
  }
  .cases-sp-slider .slick-dots li button:before {
    font-size: 8px;
    color: #ccc;
    opacity: 1;
  }
  .cases-sp-slider .slick-dots li.slick-active button:before {
    color: #1a5fa8;
  }
  .case-sp-slide {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 6px;
    outline: none;
  }
  .case-sp-badge {
    display: inline-block;
    background: #1a1a2e;
    color: #ffffff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 8px 24px;
    max-width: 120px;
    min-width: 120px;
  }
  .case-sp-card {
    border: 1px solid #ddd;
    border-radius: 0 4px 4px 4px;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  }
  .case-sp-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 200px;
    background: -webkit-linear-gradient(315deg, #c8d6e2 0%, #dce8f0 100%);
    background: linear-gradient(135deg, #c8d6e2 0%, #dce8f0 100%);
  }
  .case-sp-img img {
    height: 200px;
  }
  .case-sp-body {
    padding: 20px 18px 22px;
    text-align: center;
  }
  .case-sp-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .case-sp-company {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .case-sp-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1a5fa8;
    font-family: "Yu Gothic", "YuGothic", sans-serif !important;
    letter-spacing: 0.04em;
    padding: 0;
  }
  .case-sp-btn svg {
    display: block;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .cases-sp-prev,
  .cases-sp-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    z-index: 10;
    padding: 8px;
    line-height: 1;
  }
  .cases-sp-prev {
    left: -30px;
  }
  .cases-sp-next {
    right: -30px;
  }
  .products-header {
    display: none;
  }
  .products-header--sp {
    display: block;
    margin-bottom: 24px;
  }
  .products-header--sp .sec-en {
    color: #fff;
  }
  .products-header--sp .sec-en span {
    color: #fff;
  }
  .products-header--sp .sec-ja {
    color: #fff;
  }
  .products-bg {
    height: auto;
    padding: 24px 16px 32px;
    gap: 0;
  }
  .products-grid--row_odd,
  .products-grid--row_even {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
  }
  .products-grid--row_odd + .products-grid--row_odd,
  .products-grid--row_odd + .products-grid--row_even,
  .products-grid--row_even + .products-grid--row_odd,
  .products-grid--row_even + .products-grid--row_even {
    margin-top: 10px;
  }
  .product-item {
    aspect-ratio: 1/1;
  }
  .product-label-name {
    font-size: 11px;
  }
  .makers {
    padding: 48px 5% 56px;
  }
  .makers-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px 0;
    max-width: 100%;
  }
  .makers-row .maker-logo:nth-child(1) {
    grid-column: 1/3;
  }
  .makers-row .maker-logo:nth-child(2) {
    grid-column: 3/5;
  }
  .makers-row .maker-logo:nth-child(3) {
    grid-column: 5/7;
  }
  .makers-row .maker-logo:nth-child(4) {
    grid-column: 2/4;
  }
  .makers-row .maker-logo:nth-child(5) {
    grid-column: 4/6;
  }
  .makers-row .maker-logo:nth-child(6) {
    grid-column: 2/4;
  }
  .makers-row .maker-logo:nth-child(7) {
    grid-column: 4/6;
  }
  .maker-logo img {
    height: 40px;
    max-width: 140px;
  }
  .contact {
    padding: 48px 5%;
  }
  .contact-inner {
    padding: 32px 20px 40px;
    border-radius: 6px;
  }
  .contact-en {
    font-size: 26px;
  }
  .contact-desc {
    font-size: 12px;
  }
  .wpcf7 {
    max-width: 100%;
  }
  .wpcf7 .cf7-radio-wrap .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px 24px;
  }
  .wpcf7 .cf7-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .wpcf7 input[type=submit] {
    height: 50px;
    font-size: 15px;
  }
  .company {
    padding: 48px 5% 64px;
  }
  .company-table th {
    width: 80px;
    font-size: 12px;
    padding: 14px 8px 14px 10px;
  }
  .company-table td {
    padding: 14px 0 14px 14px;
    font-size: 12px;
  }
  .company-btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero img:first-child {
    height: 360px;
  }
  .hero-catch-sp-title {
    font-size: 23px;
  }
  .hero-catch-sp-desc {
    font-size: 11px;
  }
  .makers-title h2 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .maker-logo img {
    height: 40px;
    max-width: 110px;
  }
  .company-table th {
    width: 70px;
    font-size: 11px;
  }
  .company-table td {
    font-size: 11px;
  }
}
.case-modal-overlay {
  display: none;
}
@media (max-width: 768px) {
  .case-modal-overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .case-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .case-modal-overlay.is-open .case-modal {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .case-modal {
    margin-bottom: 3rem;
    width: 100%;
    max-height: 92vh;
    background: #ffffff;
    overflow-y: auto;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .case-modal-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    background: -webkit-gradient(linear, left top, right top, from(#6fd3e5), color-stop(40%, #4faed0), to(#2c78b8));
    background: -webkit-linear-gradient(left, #6fd3e5 0%, #4faed0 40%, #2c78b8 100%);
    background: linear-gradient(to right, #6fd3e5 0%, #4faed0 40%, #2c78b8 100%);
    padding: 14px 20px;
  }
  .case-modal-header .case-modal-header-ja {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
  }
  .case-modal-header .case-modal-header-en {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
  }
}

@media (max-width: 768px) {
  .case-modal-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .case-modal-close span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .case-modal-close span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .case-modal-close span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .case-modal-body {
    padding: 0 0 24px;
  }
}

@media (max-width: 768px) {
  .cm-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    background: -webkit-linear-gradient(315deg, #c8d6e2 0%, #dce8f0 100%);
    background: linear-gradient(135deg, #c8d6e2 0%, #dce8f0 100%);
  }
  .cm-img .cm-img-slider,
  .cm-img .slick-list,
  .cm-img .slick-track,
  .cm-img .cm-img-slide {
    height: 100% !important;
  }
  .cm-img .cm-img-slide {
    position: relative;
  }
  .cm-img img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    max-width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
}

@media (max-width: 768px) {
  .cm-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.55;
    padding: 0 20px;
    margin-bottom: 8px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .cm-company {
    font-size: 12px;
    color: #555;
    padding: 0 20px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 768px) {
  .cm-section {
    margin: 0 16px 20px;
    background: #f5f7fa;
    border-radius: 4px;
    padding: 18px 16px;
  }
}

@media (max-width: 768px) {
  .cm-section-label {
    font-size: 15px;
    font-weight: 700;
    color: #1a5fa8;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
  }
  .cm-section-label.challenge, .cm-section-label.solution {
    color: #1a5fa8;
  }
}

@media (max-width: 768px) {
  .cm-section-body {
    font-size: 13px;
    color: #333;
    line-height: 1.9;
  }
}

@media (max-width: 768px) {
  .case-modal-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 28px;
    padding: 16px 20px 32px;
    border-top: 1px solid #d8dfe8;
  }
}

@media (max-width: 768px) {
  .case-modal-prev,
  .case-modal-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .case-modal-prev:hover,
  .case-modal-next:hover {
    opacity: 0.6;
  }
  .case-modal-prev svg,
  .case-modal-next svg {
    display: block;
  }
}

@media (max-width: 768px) {
  .case-modal-back {
    margin-bottom: 3rem;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.14em;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .case-modal-back:hover {
    color: #1a1a2e;
  }
}/*# sourceMappingURL=top.css.map */