/*
Theme Name: Third Wave
Theme URI: https://www.thirdwave.co.jp/
Description: EC物流フルフィルメントサービスのWordPressテーマ
Version: 1.0
Author: Third Wave
Author URI: https://www.thirdwave.co.jp/
Text Domain: third-wave
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --color-navy: #1d1f87;
  --color-blue: #4e76e4;
  --color-black: #222;
  --color-white: white;
  --color-pale-blue: #f1f4ff;
  --color-pale-sky: #f5f9fe;
  --color-gray: #333;
  --color-gray100: #505050;
  --color-gray300: #999;
  --color-gray700: #e6e6e6;
  --color-border-gray: #eaeaea;

  /* Fluid Typography Scale (320px - 1440px) */
  --fz-xs: clamp(0.75rem, 0.714rem + 0.179vw, 0.875rem); /* 12px - 14px */
  --fz-sm: clamp(0.875rem, 0.839rem + 0.179vw, 1rem); /* 14px - 16px */
  --fz-md: clamp(1rem, 0.964rem + 0.179vw, 1.125rem); /* 16px - 18px */
  --fz-lg: clamp(1.125rem, 1.054rem + 0.357vw, 1.375rem); /* 18px - 22px */
  --fz-xl: clamp(1.5rem, 1.357rem + 0.714vw, 2rem); /* 24px - 32px */
  --fz-xxl: clamp(2rem, 1.714rem + 1.429vw, 3rem); /* 32px - 48px */
  --fz-hero: clamp(1.875rem, 1.518rem + 1.786vw, 2.95rem); /* 30px - 50px */

  /* Fluid Spacing Scale (320px - 1440px) */
  --space-xs: clamp(0.5rem, 0.464rem + 0.179vw, 0.625rem); /* 8px - 10px */
  --space-sm: clamp(1rem, 0.929rem + 0.357vw, 1.25rem); /* 16px - 20px */
  --space-md: clamp(1.5rem, 1.321rem + 0.893vw, 2.125rem); /* 24px - 34px */
  --space-lg: clamp(2.5rem, 2.143rem + 1.786vw, 3.75rem); /* 40px - 60px */
  --space-xl: clamp(3.5rem, 3rem + 2.5vw, 5rem); /* 56px - 80px */
  --space-xxl: clamp(5rem, 4.286rem + 3.571vw, 7.5rem); /* 80px - 120px */

  /* Container Max Width */
  --container-max-width: 1440px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-black);
  overflow-x: hidden;
  background: white;
  line-height: 1.6;
}

.bg-wrap {
  background: url("assets/sticky-bg.webp") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  background-position: top 100px center;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  container-type: inline-size;
}

.section {
  width: 100%;
  position: relative;
  container-type: inline-size;
}

/* Scroll Animation */
.js-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.js-animate.is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px var(--space-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: clamp(136px, 12.5vw, 180px);
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

nav a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  width: 184px;
  position: relative;
  justify-content: flex-start;
  letter-spacing: 0.7px;
  line-height: 1.5;
}

.btn-cta-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}

.btn-cta span {
  text-align: center;
}

.btn-cta-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

/* First View */
.first-view {
  /* min-height: 750px; */
  position: relative;
  background: white;
  /* padding-bottom: 64px; */
}

.first-view__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px 1rem;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.hero-left {
  /* position: absolute;
	left: 16px;
	right: calc(50% + 8px);
	top: 0;
	height: 500px; */
  /* background: linear-gradient(-54.49deg, rgba(26, 120, 228, 1) 1.899%, rgba(0, 200, 255, 1) 99.023%); */
  background-image: url("assets/first-view-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* .hero-left::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('assets/first-view-1.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.3;
} */

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: min(100%, 600px);
  text-align: center;
  margin: auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: var(--fz-hero);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0px 0px 12px #0073b2;
  margin: 0;
}

.hero-subtitle {
  font-size: var(--fz-lg);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 8px #0073b2;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-buttons a {
  width: 256px;
}

.btn-hero {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 16px;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: var(--fz-md);
  font-weight: 700;
  text-decoration: none;
  width: min(100%, 230px);
  position: relative;
  letter-spacing: 0.9px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 16px rgba(12, 29, 133, 0.5);
}

.btn-hero:active {
  transform: translateY(0);
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
}

.btn-hero-primary {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
}

.btn-hero-secondary {
  background: linear-gradient(to right, white, #f8faff);
  color: var(--color-navy);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.btn-hero-primary .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.btn-hero-primary .btn-icon img {
  width: 24px;
  height: 24px;
}

.btn-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-right {
  /* position: absolute;
	left: calc(50% + 8px);
	right: 16px;
	top: 0; */
  /* height: clamp(250px, 420px, 500px); */
  /* height: 500px; */
  overflow: hidden;
  height: 100%;
  border-radius: 8px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats {
  /* position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 520px; */
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  width: fit-content;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 var(--space-md);
  margin: 24px auto 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-badge {
  width: clamp(20px, 3vw, 28px);
  height: auto;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.stat-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-black);
  letter-spacing: 1px;
  margin: 0 0 4px 0;
  line-height: 1;
  white-space: nowrap;
}

.stat-content > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.stat-content .number {
  font-size: 2.375rem;
  font-weight: 600;
  font-family: "Afacad", sans-serif;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-navy) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-content .text {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.5;
}

/* 個別の実績アイテムの調整（PC） */
.stat-item:nth-child(1) .stat-content {
  width: 185px;
}

.stat-item:nth-child(2) .stat-content {
  width: 137px;
}

.stat-item:nth-child(3) .stat-content {
  width: 236px;
}

.stat-item:nth-child(3) .stat-content h3 {
  letter-spacing: -0.4px;
}

.logo-band-container {
  /* position: absolute;
	left: 0;
	top: 615px; */
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-top: 24px;
}

.logo-band-track {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  width: max-content;
  padding-right: var(
    --space-sm
  ); /* セット間の隙間を補完してループを完璧にする */
  animation: scroll-left 40s linear infinite;
}

.logo-box {
  width: clamp(120px, 15vw, 172px);
  height: clamp(50px, 8vw, 72px);
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
  font-size: var(--fz-xs);
  font-weight: 700;
  flex-shrink: 0;
}

/* News */
.news-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  z-index: 10;
  max-width: 1224px;
  width: 100%;
  padding: 0 20px;
}

.news-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  background: white;
  border: 1px solid var(--color-border-gray);
  border-radius: 4px;
}

.news-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  padding: 20px;
}

.news-label-wrapper {
  padding-right: 24px;
  flex-shrink: 0;
}

.news-label {
  font-family: "Afacad", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 1.4px;
  padding-right: 24px;
  border-right: 1px solid var(--color-border-gray);
  flex-shrink: 0;
}

.news-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.news-meta-row {
  display: contents;
}

.news-title-row {
  display: contents;
}

.news-date {
  font-family: "Afacad", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray100);
  letter-spacing: 0.7px;
  flex-shrink: 0;
}

.news-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-pale-blue);
  padding: 4px 16px;
  border-radius: 200px;
  letter-spacing: 0.65px;
  line-height: 1.5;
  flex-shrink: 0;
}

.news-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-position: from-font;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  margin: 0;
  min-width: 0;
  transition: opacity 0.3s ease;
}

.news-title:hover {
  opacity: 0.5;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-black);
  flex-shrink: 0;
}

.news-link span:not(.blue-arrow-circle) {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.news-link-text-sp {
  display: none;
}

.news-link-text-pc {
  display: inline;
}

/* Common Section Base */
.section-base,
.strengths-section,
.service-section,
.solution-section,
.case-section,
.column-section,
.contact-section {
  position: relative;
  padding: var(--space-xxl) 0;
}

.section-base,
.strengths-section,
.service-section,
.about-section,
.solution-section,
.case-section,
.column-section,
.contact-section,
.footer-content {
  padding: 56px 20px;
}

.solution-section {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 50%,
    transparent 50%,
    transparent 100%
  );
}

/* Strengths Section */
.strengths-section {
  background: white;
  overflow: hidden;
}

.decoration-a,
.decoration-b,
.decoration-c {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

.decoration-a {
  right: 0;
  top: -120px;
  width: 395px;
  height: 660px;
  background-image: url("assets/strengths-bg-1.svg");
  background-position: right top;
}

.decoration-b {
  left: 0;
  width: 641px;
  height: 762px;
  background-image: url("assets/strengths-bg-2.svg");
  background-position: left top;
}

.decoration-c {
  right: 0px;
  top: 602px;
  width: 333px;
  height: 451px;
  background-image: url("assets/strengths-bg-3.svg");
  background-position: right top;
}

.strengths-content {
  position: relative;
  z-index: 1;
  max-width: 1224px;
  margin: 0 auto;
}

.strengths-hero {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xxl);
  margin-top: var(--space-xxl);
}

.strengths-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.strengths-text h3 {
  font-size: var(--fz-xxl);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-navy) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.strengths-description h4 {
  font-size: var(--fz-lg);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
}

.strengths-description p {
  font-size: var(--fz-sm);
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-black);
  margin: 0;
  margin-top: 16px;
}

.btn-strengths {
  width: 296px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 8px;
}

.btn-strengths span {
  flex: 1;
  text-align: center;
}

.btn-strengths img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.strengths-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.strength-card {
  background: white;
  box-shadow: 0px 10px 20px rgba(12, 29, 133, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Strength Card Staggered Animation */
.strength-card.js-animate:nth-child(1) {
  transition-delay: 0.2s;
}
.strength-card.js-animate:nth-child(2) {
  transition-delay: 0.4s;
}
.strength-card.js-animate:nth-child(3) {
  transition-delay: 0.6s;
}

/* Service Point Card Staggered Animation */
.service-new-point-card.js-animate:nth-child(1) {
  transition-delay: 0.2s;
}
.service-new-point-card.js-animate:nth-child(2) {
  transition-delay: 0.4s;
}
.service-new-point-card.js-animate:nth-child(3) {
  transition-delay: 0.6s;
}

/* Mobile Menu Staggered Animation */
.mobile-menu-item.js-animate:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu-item.js-animate:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu-item.js-animate:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu-item.js-animate:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu-item.js-animate:nth-child(5) {
  transition-delay: 0.3s;
}

/* Solution Item Staggered Animation */
.solution-pc-item.js-animate:nth-child(1) {
  transition-delay: 0.1s;
}
.solution-pc-item.js-animate:nth-child(2) {
  transition-delay: 0.2s;
}
.solution-pc-item.js-animate:nth-child(3) {
  transition-delay: 0.3s;
}
.solution-pc-item.js-animate:nth-child(4) {
  transition-delay: 0.4s;
}
.solution-pc-item.js-animate:nth-child(5) {
  transition-delay: 0.5s;
}
.solution-pc-item.js-animate:nth-child(6) {
  transition-delay: 0.6s;
}
.solution-pc-item.js-animate:nth-child(7) {
  transition-delay: 0.7s;
}

.strength-card-image {
  background: white;
  padding: var(--space-sm);
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength-card-image img {
  width: 205px;
}

.strength-card-content {
  background: var(--color-pale-blue);
  padding: var(--space-md);
  text-align: center;
  flex: 1;
}

.strength-card-content h4 {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.strength-card-content p {
  font-size: var(--fz-sm);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}
/* Service Section */
.service-section {
  background: linear-gradient(135deg, #4e76e4 0%, #1d1f87 100%);
  clip-path: polygon(0 0, 300px 0, 380px 40px, 100% 40px, 100% 100%, 0 100%);
}

.service-new-container {
  max-width: 1361px;
  margin: 0 auto;
  padding: 0;
}

.service-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-new-intro {
  max-width: 740px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 77px;
}

.service-new-intro p {
  font-size: 16px;
  line-height: 2;
  color: white;
  flex: 1;
  min-width: 0;
}

.btn-white-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: white;
  color: var(--color-navy);
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
  text-align: left;
}

.btn-white-service:hover {
  transform: translateY(-2px);
}

.service-new-item {
  background: white;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.service-new-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #4e76e4 0%, #1d1f87 100%);
  color: white;
  padding: 12px 69px;
  font-family: "Afacad", sans-serif;
  font-size: 24px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  transform: uppercase;
  text-transform: uppercase;
}

.service-new-bg-text {
  position: absolute;
  top: 40px;
  right: 68px;
  font-family: "Afacad", sans-serif;
  font-size: 136px;
  font-weight: 700;
  color: #f6f6f6;
  line-height: 1;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.service-new-content {
  padding: 96px 68.5px 40px;
  position: relative;
  z-index: 1;
}

.service-new-content > .btn-blue {
  margin: 0 auto;
}

.service-new-title-section {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 15px;
}

.service-new-title-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    #1d1f87 0%,
    #1d1f87 20%,
    #e0e0e0 20%,
    #e0e0e0 100%
  );
}

.service-new-title-section h3 {
  font-size: var(--fz-hero);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #4e76e4 0%, #1d1f87 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.service-new-description {
  display: flex;
  gap: 24px;
  margin: 40px 0 65px;
}

@container (max-width: 800px) {
  .service-new-description {
    flex-direction: column;
    gap: var(--space-md);
  }
}

.service-new-desc-left {
  flex-shrink: 0;
  /* width: min(100%, 360px); */
  max-width: 496px;
  width: 100%;
}

.service-new-desc-left h4 {
  font-size: var(--fz-xl);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}

.service-new-desc-right {
  max-width: 704px;
}

.service-new-desc-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
}

.service-new-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.service-new-point-card {
  position: relative;
  background: #f1f4ff;
  padding: 56px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.service-new-point-icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 81px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-icon-img {
  position: relative;
  z-index: 1;
  /* width: 60px;
	height: 60px; */
  object-fit: contain;
}

.service-new-point-card .service-new-point-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-new-point-card .service-new-point-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-black);
}

/* Service 01 Materials Section */
.service-01-materials {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f6f6f6;
  padding: 40px;
  margin: 48px 0 40px;
  border-radius: 0;
}

.service-01-materials .materials-title-col:nth-child(1) {
  flex-shrink: 0;
  /* width: 200px; */
  max-width: 336px;
  width: 100%;
  text-align: center;
}

.service-01-materials .materials-title-col h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
}

.service-01-materials .materials-content-col:nth-child(2) {
  max-width: 856px;
  width: 100%;
}

.service-01-materials .materials-content-col {
  flex: 1;
}

.service-01-materials .service-new-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.service-01-materials .material-item {
  background: white;
  clip-path: polygon(
    12px 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%,
    0 12px
  );
}

.service-01-materials .material-item-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.service-01-materials .material-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-01-materials .material-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  text-align: left;
}

.service-01-materials .material-item span small {
  font-size: 12px;
  color: #666;
}

.service-01-materials .materials-note {
  font-size: 12px;
  color: #666;
  text-align: left;
  margin: 0;
}

.service-01-points,
.service-02-points,
.service-03-points {
  display: flex;
  justify-content: space-between;
  margin: 48px auto;
  max-width: 1008px;
  width: 100%;
}

/* Blue Button with Arrow */
.btn-blue-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(to right, #4e76e4, #1d1f87);
  color: white;
  border-radius: 200px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-blue-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-arrow-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-blue-arrow:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.service-new-materials {
  background: #f6f6f6;
  padding: 16px;
  margin: 48px 0 40px;
  border-radius: 12px;
}

.service-new-materials:not(.service-01-materials) h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-new-materials:not(.service-01-materials) .service-new-materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.material-item img,
.material-item svg {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.material-item span {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.materials-note {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.service-new-cta {
  display: flex;
  gap: 24px;
  margin: 60px auto 0;
  max-width: 640px;
}

.service-new-cta .contact-new-card {
  flex: 1;
}

.service-cta-card {
  flex: 1;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  padding: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.service-cta-card:hover {
  transform: translateY(-4px);
}

.service-cta-content h3 {
  font-family: "Afacad", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-cta-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.arrow-circle-white {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 24px;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: 296px;
  max-width: 100%;
  transition: transform 0.2s;
}

.btn-blue:hover {
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  background: url("assets/about-bg.webp") no-repeat center top;
  background-size: cover;
  overflow: hidden;
}

.about-pc-container {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
}

.about-pc-left {
  flex-shrink: 0;
}

.about-pc-right {
  /* flex: 1; */
  max-width: 704px;
  width: 100%;
}

.about-pc-right h3 {
  font-size: var(--fz-xxl);
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 var(--space-md) 0;
}

.about-pc-right p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-black);
  margin: 0 0 var(--space-lg) 0;
}

.btn-blue-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.8px;
  line-height: 1.5;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-blue-about:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 16px rgba(12, 29, 133, 0.5);
}

.about-pc-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.about-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: 24px; /* ループを完璧にするためにgap分を末尾に追加 */
  animation: scroll-left 40s linear infinite;
}

.about-slider-track img {
  width: 360px;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left-sp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #4169e1 0%, #1a237e 100%);
  padding: 100px 20px;
  overflow: hidden;
  clip-path: polygon(0 0, 300px 0, 380px 40px, 100% 40px, 100% 100%, 0 100%);
}

.contact-new-container {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.contact-new-title {
  flex-shrink: 0;
}

.contact-new-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.contact-new-card {
  background: white url("assets/button-bg.webp") no-repeat right center;
  background-size: 100% 100%;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 8px 20px rgba(12, 29, 133, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-new-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 28px rgba(12, 29, 133, 0.4);
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
}

.contact-new-card:hover .contact-new-label,
.contact-new-card:hover h3 {
  color: white;
}

.contact-new-card:hover .contact-new-label::after {
  background-color: white;
}

.contact-new-card:hover .blue-arrow-circle {
  background: white;
}

.contact-new-card:hover .blue-arrow-circle .icon-greater {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.contact-new-card-content {
  flex: 1;
}

.contact-new-label {
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-new-label::after {
  content: "";
  height: 1px;
  flex-grow: 0.3;
  background-color: #bed6ff;
  opacity: 0.4;
}

.contact-new-card h3 {
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.43;
}

/* Contact Section */
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-title h2 {
  font-family: "Afacad", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  background: linear-gradient(to right, white, #eef1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1.1;
}

.contact-title p {
  font-size: 20px;
  color: white;
  letter-spacing: 1px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: white;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 600px;
  height: 160px;
  box-shadow: 0px 16px 16px rgba(12, 29, 133, 0.4);
}

.contact-card h3 {
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-card h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 1.3px;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid var(--color-border-gray);
}

.footer-content {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-left {
  width: 300px;
}

.footer-logo {
  width: 300px;
  height: 65px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-company {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
}

.footer-logo-wrapper {
  display: block;
}

.footer-company-info {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  height: 150px;
}

.footer-links-group {
  display: contents;
}

.footer-links a {
  width: 184px;
  font-size: 15px;
  color: var(--color-black);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: 16px 0 40px;
  color: var(--color-gray300);
  font-size: 14px;
}

/* Mobile Menu */
.hamburger-menu {
  display: none;
  width: 24px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  transition: all 0.3s ease;
}

/* ハンバーガーメニューがアクティブになった時も×アイコンに変えない */
.hamburger-menu.active span {
  transform: none;
  opacity: 1;
  background: var(--color-navy);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, #4169e1 0%, #1a237e 100%); */
  background-color: #1a237e;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 1000;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-logo {
  width: 140px;
  height: auto;
}

.mobile-menu-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:focus {
  outline: none;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.mobile-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease;
}

.mobile-menu-item:active {
  opacity: 0.7;
}

.mobile-menu-item svg {
  flex-shrink: 0;
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-btn {
  background: white url("assets/button-bg.webp") no-repeat right center;
  background-size: contain;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 6px 16px rgba(12, 29, 133, 0.3);
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu-btn:active {
  transform: scale(0.98);
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  transform: translateY(-4px);
  box-shadow: 0px 12px 28px rgba(12, 29, 133, 0.4);
}

.mobile-menu-btn:hover .mobile-menu-btn-label,
.mobile-menu-btn:hover h3,
.mobile-menu-btn:active .mobile-menu-btn-label,
.mobile-menu-btn:active h3 {
  color: white;
}

.mobile-menu-btn:hover .mobile-menu-btn-label::after,
.mobile-menu-btn:active .mobile-menu-btn-label::after {
  background-color: white;
}

.mobile-menu-btn:hover .blue-arrow-circle,
.mobile-menu-btn:active .blue-arrow-circle {
  background: white;
}

.mobile-menu-btn:hover .blue-arrow-circle .icon-greater,
.mobile-menu-btn:active .blue-arrow-circle .icon-greater {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mobile-menu-btn-content {
  flex: 1;
}

.mobile-menu-btn-label {
  font-family: "Afacad", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy);
  text-transform: uppercase;
  margin: 0 0 6px 0;
  letter-spacing: 0.65px;
  line-height: 1.54;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn-label::after {
  content: "";
  height: 1px;
  flex-grow: 0.3;
  background-color: #bed6ff;
  opacity: 0.4;
}

.mobile-menu-btn h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.5;
}

.mobile-menu-btn-arrow {
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mobile-menu-btn:active .mobile-menu-btn-arrow {
  background: var(--color-navy);
}

/* Solution Section */
.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-pale-blue);
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 calc(100% - 50px));
  z-index: 0;
}

.solution-pc-content {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.solution-pc-left {
  flex-shrink: 0;
}

.strengths-header h2,
.solution-pc-header h2 {
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.strengths-header h2::after,
.solution-pc-header h2::after {
  content: "";
  height: 1px;
  flex-grow: 0.3;
  background-color: #999ad6;
  opacity: 0.4;
}

.solution-pc-header h3 {
  font-size: var(--fz-xxl);
  font-weight: bold;
  line-height: 1.3;
  background: linear-gradient(90deg, #4e76e4 0%, #1d1f87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.solution-pc-image {
  width: 493px;
  margin-top: 24px;
}

.solution-pc-image img {
  width: 100%;
  height: auto;
}

.solution-pc-right {
  max-width: 624px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.solution-pc-item {
  background: white;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0px 4px 12px 0px rgba(12, 29, 133, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-pc-item:hover {
  box-shadow: 0px 8px 20px 0px rgba(12, 29, 133, 0.2);
  transform: translateY(-2px);
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
}

.solution-pc-item:hover p {
  color: white;
}

.solution-pc-item:hover .blue-arrow-circle {
  background: white;
}

.solution-pc-item:hover .blue-arrow-circle .icon-greater {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.solution-pc-item p {
  flex: 1;
  font-size: var(--fz-md);
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  font-weight: 500;
}

/* Case Section */
.case-pc-header {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.slider-controls {
  display: flex;
  gap: 16px;
  padding-bottom: 32px;
}

.slider-btn-pc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  color: var(--color-navy);
}

.slider-btn-pc:hover {
  border-color: var(--color-blue);
  background: var(--color-pale-blue);
}

.case-pc-slider,
.column-pc-slider {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.case-pc-card,
.column-pc-card {
  width: 288px;
  flex-shrink: 0;
  box-shadow: 0px 4px 12px 0px rgba(12, 29, 133, 0.1);
  transition: all 0.3s ease;
}

.case-pc-card:hover,
.column-pc-card:hover {
  box-shadow: 0px 8px 20px 0px rgba(12, 29, 133, 0.2);
  transform: translateY(-4px);
}

.case-pc-image,
.column-pc-image {
  width: 100%;
  height: 162px;
  overflow: hidden;
}

.case-pc-image img,
.column-pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-pc-card-content,
.column-pc-card-content {
  background: white;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-pc-card-content h3,
.column-pc-card-content h3 {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.case-company {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.column-pc-date {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1;
}

.btn-case {
  background: var(--color-pale-blue);
  padding: 8px 16px;
  border-radius: 200px;
  text-align: center;
  text-decoration: none;
  color: var(--color-black);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.btn-case:hover {
  background: var(--color-blue);
  color: white;
}

.arrow-circle-small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-case:hover .arrow-circle-small {
  background: white;
  color: var(--color-blue);
}

.slider-indicator {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 40px 0;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6e6e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: var(--color-blue);
}

/* Case Section */
.case-section {
  background: transparent;
  background-size: cover;
  padding-left: 0;
  padding-right: 0;
}

.case-new-container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 20px;
}

.case-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.slider-controls-new {
  display: flex;
  gap: 16px;
  padding-bottom: 32px;
}

.slider-btn-new {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-navy);
}

.slider-btn-new:hover {
  border-color: var(--color-blue);
  background: var(--color-pale-blue);
}

.case-new-slider-wrapper,
.column-new-slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.case-new-slider {
  /* display: flex;
	gap: 24px;
	padding-right: 24px; */
  width: 100%;
  animation: scroll-left 40s linear infinite;
  width: max-content;
  padding-bottom: 10px;
}

.case-new-slider:hover {
  animation-play-state: paused;
}

.case-new-card {
  width: 288px;
  max-width: 288px;
  flex-shrink: 0;
  background: white;
  box-shadow: 0px 4px 12px 0px rgba(12, 29, 133, 0.1);
  transition: all 0.3s ease;
}

.case-new-card:hover {
  box-shadow: 0px 8px 20px 0px rgba(12, 29, 133, 0.2);
  transform: translateY(-4px);
}

.case-new-card:hover .case-new-content {
  background: var(--color-pale-blue);
}

.case-new-card:hover .btn-case-new {
  background: var(--color-blue);
  color: white;
}

.case-new-card:hover .btn-case-new .blue-arrow-circle {
  background: white;
}

.case-new-card:hover .btn-case-new .icon-greater {
  color: var(--color-blue);
}

.case-new-image {
  width: 100%;
  height: 162px;
  overflow: hidden;
}

.case-new-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-new-content {
  background: white;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-new-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-black);
  margin: 0;
  min-height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.case-new-company {
  font-size: 13px;
  font-weight: 500;
  color: #777;
  margin: 0 0 8px 0;
  line-height: 1.23;
}

.btn-case-new {
  background: var(--color-pale-blue);
  padding: 8px 16px;
  border-radius: 200px;
  text-align: center;
  text-decoration: none;
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.btn-case-new:hover {
  background: var(--color-blue);
  color: white;
}

.slider-indicator-new {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0;
}

.indicator-dot-new {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(78, 118, 228, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator-dot-new.active {
  background: var(--color-blue);
}

.btn-blue-case {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.8px;
  line-height: 1.5;
  margin: 0 auto;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-blue-case:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 16px rgba(12, 29, 133, 0.5);
}

/* Column Section */
.column-section {
  background: white;
  padding-left: 0;
  padding-right: 0;
}

.column-new-container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 20px;
}

.column-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.column-new-slider {
  /* display: flex;
	gap: 24px;
	padding-right: 24px; */
  width: 100%;
  animation: scroll-left 40s linear infinite;
  width: max-content;
  padding-bottom: 10px;
}

.column-new-slider:hover {
  animation-play-state: paused;
}

.swiper-wrapper {
  padding-bottom: 10px;
}

.column-new-card {
  width: 288px;
  max-width: 288px;
  flex-shrink: 0;
  background: white;
  box-shadow: 0px 4px 12px 0px rgba(12, 29, 133, 0.1);
  transition: all 0.3s ease;
}

.column-new-card:hover {
  box-shadow: 0px 8px 20px 0px rgba(12, 29, 133, 0.2);
  transform: translateY(-4px);
}

.column-new-card:hover .column-new-content {
  background: var(--color-pale-blue);
}

.column-new-card:hover .btn-column-new {
  background: var(--color-blue);
  color: white;
}

.column-new-card:hover .btn-column-new .blue-arrow-circle {
  background: white;
}

.column-new-card:hover .btn-column-new .icon-greater {
  color: var(--color-blue);
}

.column-new-image {
  width: 100%;
  height: 162px;
  overflow: hidden;
}

.column-new-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-new-content {
  background: white;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column-new-date {
  font-size: 13px;
  font-weight: 500;
  color: #777;
  margin: 0;
  line-height: 1.23;
}

.column-new-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-black);
  margin: 0 0 8px 0;
  min-height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-column-new {
  background: var(--color-pale-blue);
  padding: 8px 16px;
  border-radius: 200px;
  text-align: center;
  text-decoration: none;
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.btn-column-new:hover {
  background: var(--color-blue);
  color: white;
}

.btn-blue-column {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  color: white;
  border-radius: 200px;
  box-shadow: 4px 4px 12px rgba(12, 29, 133, 0.4);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.8px;
  line-height: 1.5;
  margin: 0 auto;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-blue-column:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 16px rgba(12, 29, 133, 0.5);
}

/* Column Section */
.column-pc-header {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

/* Banner Section */
.banner-section {
  margin: 80px auto;
  max-width: 1224px;
  height: 220px;
  overflow: hidden;
}

.banner-new-container {
  display: flex;
  height: 100%;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.banner-new-container:hover {
  opacity: 0.5;
}

.banner-new-left {
  width: 420px;
  background:
    radial-gradient(
      155.39% 42.84% at 50% 50%,
      rgba(0, 0, 0, 0.4) 38.46%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("assets/banner-bg-1.webp") lightgray 50% / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  color: white;
  position: relative;
}

.banner-new-left::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(78, 118, 228, 0.8) 0%, rgba(29, 31, 135, 0.8) 100%); */
  z-index: 0;
}

.banner-new-left h3 {
  font-size: var(--fz-xl);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  margin: 0;
  color: white;
  position: relative;
  z-index: 1;
}

.banner-new-subtitle {
  font-family: "Afacad", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.27;
  letter-spacing: 1.1px;
  margin: 0;
  color: white;
  position: relative;
  z-index: 1;
}

.banner-new-right {
  flex: 1;
  background: url("assets/banner-bg-2_pc.webp") center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 48px;
  position: relative;
}

/* .banner-new-right::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
} */

.banner-new-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-new-text {
  font-size: var(--fz-sm);
  font-weight: 400;
  line-height: 1.73;
  color: white;
  margin: 0;
  letter-spacing: 0.75px;
}

.banner-new-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 12px;
  align-self: flex-end;
  transition: all 0.3s ease;
}

.banner-new-link-text {
  font-family: var(--font-afacad, "Afacad", sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  letter-spacing: 0.9px;
}

.banner-new-link:hover .banner-new-link-text {
  opacity: 0.8;
}

/* Banner Section */
.banner-pc-content {
  display: flex;
  height: 100%;
}

.banner-pc-left {
  width: 419px;
  background: linear-gradient(90deg, #4e76e4 0%, #1d1f87 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 68px 98px;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.banner-pc-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("<?php echo get_template_directory_uri(); ?>/assets/banner-bg-1.webp")
    center/cover;
  opacity: 0.3;
  z-index: -1;
}

.banner-pc-left h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1.5px;
  margin: 0;
  color: white;
}

.banner-pc-left p {
  font-family: "Afacad", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.1px;
  margin: 0;
  color: white;
}

.banner-pc-right {
  flex: 1;
  background: url("<?php echo get_template_directory_uri(); ?>/assets/banner-bg-1.webp")
    center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
}

.banner-pc-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.banner-pc-right p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.8px;
  color: white;
  margin: 0 0 20px 0;
}

.banner-pc-link {
  position: absolute;
  bottom: 36px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-family: "Afacad", sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.9px;
  z-index: 2;
  transition: all 0.3s ease;
}

.banner-pc-link:hover {
  transform: translateX(5px);
}

.arrow-circle-large {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Solution Section */
.solution-content {
  position: relative;
  z-index: 1;
}

.solution-content .section-title h2 {
  font-family: "Afacad", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.solution-content .section-title p {
  font-size: 28px;
  line-height: 1.5;
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 40px 0 24px;
}

.solution-item {
  background: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0px 4px 12px rgba(12, 29, 133, 0.1);
}

.solution-item p {
  flex: 1;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.solution-image {
  margin-top: 24px;
}

.solution-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Case Section */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-navy);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-navy);
}

.case-slider {
  overflow-x: auto;
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  scroll-behavior: smooth;
}

.case-card {
  min-width: 288px;
  background: white;
  box-shadow: 0px 4px 12px rgba(12, 29, 133, 0.1);
  flex-shrink: 0;
}

.case-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  padding: 16px;
}

.case-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-pale-blue);
  border-radius: 200px;
  font-size: 12px;
  margin-bottom: 8px;
}

.case-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-gray100);
}

/* Column Section */
.column-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.column-slider {
  overflow-x: auto;
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  scroll-behavior: smooth;
}

.column-card {
  min-width: 288px;
  background: white;
  box-shadow: 0px 4px 12px rgba(12, 29, 133, 0.1);
  flex-shrink: 0;
}

.column-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-content {
  padding: 16px;
}

.column-date {
  font-family: "Afacad", sans-serif;
  font-size: 12px;
  color: var(--color-gray300);
  display: block;
  margin-bottom: 8px;
}

.column-content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

/* Banner Section */
.banner-content {
  overflow: hidden;
}

.banner-header {
  background: linear-gradient(to right, var(--color-blue), var(--color-navy));
  padding: 24px 20px;
  text-align: center;
  color: white;
}

.banner-header h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}

.banner-header p {
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.banner-body {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.42)
  );
  padding: 24px 20px;
  position: relative;
  min-height: 208px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("<?php echo get_template_directory_uri(); ?>/assets/banner-bg-1.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.banner-body p {
  font-size: 14px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.7px;
  color: white;
  margin-bottom: 16px;
}

.banner-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Afacad", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  /* Header */
  header {
    padding: 12px 20px;
  }

  .logo {
    width: 136px;
    height: 30px;
  }

  nav {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-buttons {
    margin-top: 0px;
  }
  .hero-buttons a {
    padding: 8px;
  }

  /* Service */
  .service-new-bg-text {
    display: none;
  }

  .service-new-materials {
    background: #f6f6f6;
    padding: 20px;
    margin: 24px 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .service-new-materials h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-black);
  }

  .material-item {
    background: white;
    clip-path: polygon(
      8px 0,
      100% 0,
      100% calc(100% - 8px),
      calc(100% - 8px) 100%,
      0 100%,
      0 8px
    );
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
  }

  .material-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .material-item span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    color: var(--color-black);
  }

  .service-01-materials .materials-title-col {
    text-align: center;
    width: 100%;
  }

  .service-01-materials .service-new-materials-grid,
  .service-new-materials:not(.service-01-materials)
    .service-new-materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .service-01-materials .material-item-inner {
    padding: 0;
    gap: 4px;
  }

  .service-01-materials .material-item:nth-child(-n + 2) .material-item-inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .banner-section,
  .strengths-content,
  .service-section,
  .about-section,
  .solution-section,
  .case-section,
  .column-section,
  .contact-section {
    padding: 56px 20px;
  }

  .about-section {
    display: block;
  }

  .case-section {
    display: block;
  }

  .column-section {
    display: block;
  }

  .contact-section {
    display: block;
  }

  .banner-section {
    max-width: none;
    height: auto;
    border-radius: 8px;
  }

  .banner-new-container {
    flex-direction: column;
    height: auto;
  }

  .banner-new-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    text-align: center;
    color: white;
    position: relative;
    min-height: 118px;
    height: 118px;
    background: url("assets/banner-bg-1-sp.webp") center/cover;
  }

  .banner-new-left::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(78, 118, 228, 0.85) 0%, rgba(29, 31, 135, 0.85) 100%); */
    z-index: 0;
  }

  .banner-new-left h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.2px;
    margin: 0;
    color: white;
    position: relative;
    z-index: 1;
  }

  .banner-new-subtitle {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: 0.9px;
    margin: 0;
    color: white;
    position: relative;
    z-index: 1;
  }

  .banner-new-right {
    width: 100%;
    background: url("assets/banner-bg-2_sp.webp") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px 21px;
    position: relative;
    min-height: 208px;
    height: 208px;
  }

  /* .banner-new-right::before {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 0;
	} */

  .banner-new-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .banner-new-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: white;
    margin: 0;
    letter-spacing: 0.7px;
  }

  .banner-new-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 16px;
    align-self: center;
    transition: all 0.3s ease;
  }

  .banner-new-link-text {
    font-family: var(--font-afacad, "Afacad", sans-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    letter-spacing: 0.8px;
  }

  .banner-new-link:active .banner-new-link-text {
    opacity: 0.8;
  }

  /* First View */
  .first-view {
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .first-view__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 8px 0px;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
  }

  .hero-left {
    /* position: relative;
		left: 0; */
    width: 100%;
    height: 384px;
    padding: 32px 12px;
    /* background: linear-gradient(-63.47deg, rgba(26, 120, 228, 1) 1.899%, rgba(0, 200, 255, 1) 99.023%); */
    background-image: url("assets/first-view-1.webp");
    background-size: cover;
    background-position: center;
    order: 1;
    margin-inline: 0px;
  }

  /* .hero-left::before {
		background-image: url('assets/first-view-1.webp');
		background-size: cover;
		background-position: center;
	} */

  .hero-content {
    width: 100%;
    gap: 20px;
    padding: 0;
  }

  .hero-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: normal;
    text-shadow: 0px 0px 6px rgba(0, 77, 178, 0.5);
    line-height: 1.5;
    font-feature-settings: "palt";
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 0.7px;
    text-shadow: 0px 0px 4px rgba(0, 77, 178, 0.5);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0px;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    padding: 8px;
    letter-spacing: 0.8px;
    box-shadow: 4px 4px 8px rgba(12, 29, 133, 0.4);
  }

  .btn-icon {
    width: 32px;
    height: 32px;
  }

  .btn-arrow {
    right: 16px;
  }

  .hero-right {
    /* position: relative;
		right: 0;
		left: 0; */
    width: 100%;
    height: 216px;
    margin-inline: 0px;
    margin-top: 8px;
    order: 2;
  }

  .stats {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11.2px;
    padding: 0 16px;
    margin: 24px auto;
    order: 3;
    max-width: 400px;
    height: auto;
  }

  .stat-item {
    justify-content: center;
    gap: 5.6px;
    width: auto;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    flex: 0 0 calc(50% - 5.6px);
    min-width: 0;
  }

  .stat-item:nth-child(3) {
    flex: 0 0 100%;
  }

  .stat-badge {
    width: 19.6px;
    height: 42px;
  }

  .stat-content h3 {
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  .stat-content .number {
    font-size: 26.6px;
  }

  .stat-content .text {
    font-size: 16.8px;
  }

  /* SP版の個別実績サイズ調整 */
  .stat-item:nth-child(1) .stat-content {
    width: 129.5px;
    height: 44.1px;
  }

  .stat-item:nth-child(2) .stat-content {
    width: 95.9px;
    height: 44.1px;
  }

  .stat-item:nth-child(3) .stat-content {
    width: 165.2px;
    height: 44.1px;
  }

  .stat-item:nth-child(3) .stat-content h3 {
    letter-spacing: -0.28px;
  }

  .logo-band-container {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
    order: 4;
  }

  .logo-band-track {
    gap: 12.8px;
    padding-right: 12.8px;
    animation: scroll-left 40s linear infinite;
  }

  .logo-box {
    width: 96px;
    height: 40.14px;
    border-radius: 3.2px;
    flex-shrink: 0;
    font-size: 11.2px;
  }

  /* News */
  .news-section {
    position: relative;
    left: 0;
    transform: none;
    top: 40px;
    margin: 0 auto;
    padding: 12px 16px;
    border-radius: 4px;
  }

  .news-content {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .news-label {
    display: none;
  }

  .news-label-wrapper {
    display: none;
  }

  .news-left {
    width: 100%;
  }

  .news-item-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .news-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .news-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .news-date {
    font-family: "Afacad", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray100);
    letter-spacing: 0.6px;
    line-height: 1.3;
    flex-shrink: 0;
  }

  .news-category {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-black);
    background: var(--color-pale-blue);
    padding: 2px 16px;
    border-radius: 200px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .news-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-black);
    text-decoration: underline;
    text-underline-position: from-font;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 0 0;
    margin: 0;
    min-width: 0;
  }

  .news-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-black);
    flex-shrink: 0;
  }

  .news-link span:not(.blue-arrow-circle) {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
  }

  .news-link-text-pc {
    display: none;
  }

  .news-link-text-sp {
    display: inline;
  }

  /* Strengths */
  .strengths-section {
    min-height: auto;
    padding-top: 0;
    margin-bottom: 56px;
    padding: 0px;
  }

  .decoration-a {
    right: 0;
    top: 0;
    width: 158px;
    height: 264px;
    background-image: url("assets/strengths-bg-1.svg");
  }

  .decoration-b {
    left: 0;
    top: 126px;
    width: 256.4px;
    height: 304.8px;
    background-image: url("assets/strengths-bg-2.svg");
  }

  .decoration-c {
    right: calc(50% - 240.6px);
    top: 500px;
    width: 133.2px;
    height: 180.4px;
    background-image: url("assets/strengths-bg-3.svg");
  }

  .strengths-content {
    width: 100%;
  }

  .strengths-hero {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 40px;
    margin-top: 0;
  }

  .strengths-image {
    width: 100%;
    max-width: 348px;
    height: 354px;
    order: 2;
    margin: 0 auto;
  }

  .strengths-text {
    order: 1;
    gap: 24px;
  }

  .strengths-text h2 {
    font-size: 13px;
  }

  .strengths-text h3 {
    font-size: 28px;
    line-height: 1.5;
  }

  .strengths-description {
    gap: 16px;
  }

  .strengths-description h4 {
    font-size: 20px;
    line-height: 1.8;
  }

  .strengths-description p {
    font-size: 13px;
    line-height: 2;
  }

  .btn-strengths {
    width: 100%;
    max-width: 296px;
    padding: 12px 24px;
    font-size: 15px;
    letter-spacing: 0.75px;
    box-shadow: 4px 4px 8px rgba(12, 29, 133, 0.4);
  }

  .strengths-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strength-card {
    width: 100%;
    flex-direction: row;
    box-shadow: 0px 4px 12px rgba(12, 29, 133, 0.15);
  }

  .strength-card-image {
    width: 114px;
    height: auto;
    padding: 0 8px;
    flex-shrink: 0;
  }

  .strength-card-image img {
    width: 100%;
    height: auto;
    max-width: 98px;
  }

  .strength-card-content {
    flex: 1;
    padding: 16px 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .strength-card-content h4 {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 4px;
  }

  .strength-card-content p {
    font-size: 12px;
    line-height: 1.6;
  }

  /* Service */
  .service-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .service-intro p {
    font-size: 14px;
    max-width: 100%;
  }

  .service-item {
    padding: 56px 13px;
    margin-bottom: 16px;
  }

  .service-badge {
    padding: 5px 26px;
    font-size: 16px;
  }

  .service-item h3 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .service-description {
    flex-direction: column;
    gap: 16px;
  }

  .service-description .left h4 {
    font-size: 20px;
  }

  .service-description .right {
    font-size: 14px;
  }

  .service-points {
    flex-direction: column;
    margin: 32px 0;
    gap: 16px;
  }

  .point-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
  }

  .point-item h5 {
    font-size: 18px;
  }

  .point-item p {
    font-size: 13px;
  }

  /* Service Section */
  .service-section {
    background: linear-gradient(135deg, #4e76e4 0%, #1d1f87 100%);
    clip-path: polygon(0 0, 100px 0, 180px 40px, 100% 40px, 100% 100%, 0 100%);
  }

  .service-new-container {
    max-width: 100%;
  }

  .service-new-header {
    margin-bottom: 40px;
    flex-direction: column;
  }

  .service-new-intro {
    flex-direction: column;
    align-items: start;
    gap: 0px;
    padding-top: 0px;
  }

  .service-new-intro p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: white;
  }

  .service-new-item {
    background: white;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }

  .service-new-content {
    padding: 56px 13px 32px;
  }

  .service-new-description {
    margin: 30px 0;
    gap: 0px;
    flex-direction: column;
  }

  .service-new-description h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .service-new-description p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-new-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
  }

  .service-new-point-card {
    background: #f1f4ff;
    padding: 40px 20px 16px;
    /* display: flex;
		align-items: flex-start;
		flex: 0 0 200px; */
    position: relative;
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
  }

  .service-new-point-icon-wrapper {
    position: absolute;
    width: 50px;
    height: 58px;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .point-icon-img {
    position: relative;
    z-index: 1;
    object-fit: contain;
  }

  .service-new-point-content {
    /* flex: 1; */
    width: 100%;
    text-align: center;
  }

  .service-new-point-content h5 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .service-new-point-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-black);
    margin: 0;
  }

  .service-new-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .service-new-cta .contact-new-card {
    width: 100%;
  }

  .service-new-title-section {
    font-size: 32px;
    margin: 25px 0 15px;
    padding-bottom: 0px;
  }

  .service-01-points,
  .service-02-points,
  .service-03-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 24px 0;
  }

  .service-01-materials .material-item span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .service-01-materials .material-item-inner {
    padding: 0;
    gap: 4px;
  }
  .service-01-materials .material-item img {
    width: 36px;
    height: 36px;
  }
  .service-01-materials .materials-note {
    font-size: 10px;
  }
  .service-01-materials .material-item {
    padding: 12px 8px;
  }

  /* About Section */
  .about-pc-container {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 40px;
    padding: 0px;
  }

  .about-pc-right h3 {
    font-size: 24px;
    line-height: 1.67;
    margin: 0 0 16px 0;
  }

  .about-pc-right p {
    font-size: 13px;
    line-height: 1.87;
    margin: 0 0 24px 0;
  }

  .about-pc-slider {
    margin: 0;
  }

  .about-slider-track {
    gap: 8px;
    width: max-content;
    padding-right: 8px; /* ループを完璧にするためにgap分を末尾に追加 */
    animation: scroll-left-sp 40s linear infinite;
  }

  .about-slider-track img {
    width: 180px;
    height: 120px;
  }

  /* Solution Section */
  .solution-pc-content {
    flex-direction: column;
    gap: 12px;
    padding: 0px;
  }

  .solution-pc-content .btn-blue {
    margin-block: 24px 40px;
  }

  .solution-pc-header h3 {
    margin-bottom: 0;
  }

  .solution-pc-left {
    width: 100%;
    display: contents;
  }

  .solution-pc-header h2 {
    font-size: 13px;
  }

  .solution-pc-header h3 {
    font-size: 28px;
  }

  .solution-pc-image {
    width: 100%;
    margin-top: 24px;
    order: 1;
  }

  .solution-pc-right {
    width: 100%;
    display: contents;
  }

  .solution-pc-item {
    padding: 20px 24px;
  }

  .solution-pc-item p {
    font-size: 13px;
  }

  /* Case Section */
  .case-new-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .case-new-header {
    margin-bottom: 24px;
  }

  .case-new-slider-wrapper {
    gap: 12px;
  }

  .case-new-card {
    width: 100%;
    max-width: 348px;
  }

  /* Column Section */
  .column-new-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .column-new-header {
    margin-bottom: 24px;
  }

  .column-new-slider-wrapper {
    gap: 12px;
  }

  .column-new-card {
    width: 100%;
    max-width: 348px;
  }

  /* Contact Section */
  .contact-section {
    clip-path: polygon(0 0, 100px 0, 180px 40px, 100% 40px, 100% 100%, 0 100%);
  }

  .contact-new-container {
    flex-direction: column;
    gap: 32px;
  }

  .contact-new-title {
    margin-bottom: 0;
  }

  .contact-new-cards {
    width: 100%;
  }

  .contact-new-card {
    width: 100%;
    padding: 24px;
  }

  .contact-new-card h3 {
    font-size: 20px;
  }

  /* Footer */
  footer {
    padding: 24px 20px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    padding: 0 0 0;
    align-items: center;
  }

  .footer-left {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .footer-logo {
    width: 240px;
    height: 52px;
    margin-bottom: 0;
  }

  .footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 241px;
    text-align: center;
  }

  .footer-company {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.75px;
    color: var(--color-black);
    margin: 0;
  }

  .footer-address {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.55px;
    color: var(--color-black);
    margin: 0;
  }

  .footer-address p {
    margin: 0;
  }

  .footer-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.65px;
    text-align: center;
  }

  .footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-links a {
    width: 159px;
    font-size: 13px;
    color: var(--color-black);
    text-decoration: none;
  }

  .footer-bottom {
    padding: 16px 0 32px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.55px;
    color: var(--color-gray300);
  }
}

.u-pc {
  display: block;
}
.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }

  .btn-white-service {
    padding: 12px 24px;
    text-align: left;
    justify-content: space-between;
    width: 264px;
  }
  .about-section {
    overflow: hidden;
  }
  .about-pc-slider {
    width: 100vw;
    margin-inline: calc(-50vw + 50%);
  }

  .case-section,
  .column-section {
    padding-inline: 0px;
  }

  .slider-btn-new {
    width: 40px;
    height: 40px;
  }
  .slider-controls-new button svg {
    width: 22px;
    height: 22px;
  }
  .banner-section {
    padding: 0 21px 34px;
    margin: 0;
  }
  .column-new-slider,
  .case-new-slider {
    animation: none;
    width: 100%;
  }
}

.hero-title-br {
  display: none;
}
@media (max-width: 389px) {
  .hero-title-br {
    display: block;
  }
  .service-01-materials .material-item span {
    font-size: 12px;
  }
}
.breadcrumb.container a {
  text-decoration: none;
}
