/* ==========================
   共通スタイル
   ========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #080618;
  color: #fff;
  font-family: "Noto Sans JP", "Helvetica Neue", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.6;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}


/* ==========================
   PC/SP 表示切替
   ========================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}



/* ==========================
   コンテナ
   ========================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

@media (max-width: 768px) {
  .container {
    padding: 75px 0 60px;
  }
}



/* ==========================
   ヘッダー
   ========================== */
header.site-header {
  background: #080517;
  padding: 20px 40px;
}

.header-inner,
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(8, 5, 23, 0.3);
  padding: 5px 10px 5px 15px;
  height: 50px;
}

@media (min-width: 768px) {
  .header {
    padding: 5px 10px 5px 20px;
    height: 100px;
  }
}

.logo {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}

@media (max-width: 768px) {
  .logo {
    font-size: 18px;
  }
}

/* ナビゲーション */
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .main-nav a {
    color: #002FFF;
  }
}

/* Header Responsive Nav */
.header__nav {
  width: 100%;
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    transform: translateX(100%);
    visibility: hidden;
    padding: 50px 25px;
    transition: ease 0.4s;
    z-index: 1000;
  }

  .header__nav.panelactive {
    transform: translateX(0);
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    margin-left: 15px;
  }
}

.header__nav li {
  list-style: none;
}

@media (min-width: 768px) {
  .header__nav li {
    margin-left: 20px;
  }
}

@media (min-width: 1240px) {
  .header__nav li {
    margin-left: 25px;
  }
}

.header__nav li a {
  display: block;
  font-size: 20px;
}

@media (max-width: 767px) {
  .header__nav li a {
    padding: 0.6em;
    border-bottom: 1px solid #253fd6;
    line-height: 1.5;
  }
}

/* ロゴ／右グループ／ボタン */
.header__logo {
  width: 140px;
  flex-shrink: 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  .header__logo {
    width: 180px;
  }
}
@media (min-width: 1240px) {
  .header__logo {
    width: 232px;
  }
}

.header__logo img {
  vertical-align: middle;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__right {
  margin-right: 45px;
}

 @media (max-width: 767px) {
  .header__right {
    display: none;
  }
}

@media (min-width: 768px) {
  .header__right {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .header__right {
    margin-right: 0;
  }
}

.header__right-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.header__right__cv {
  font-size: 1rem;
  display: block;
  text-align: right;
  margin: 0 3px 3px 0;
}

@media (min-width: 600px) {
  .header__right__cv {
    font-size: 1.2rem;
    margin-right: 10px;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .header__right__cv {
    margin-right: 15px;
  }
}

@media (min-width: 1240px) {
  .header__right__cv {
    font-size: 1.4rem;
    margin-right: 30px;
  }
}

/* CTAボタン */
.cv__btn__wrap {
  margin-top: 0;
  display: flex;
  justify-content: center;
}

.cv__btn {
  padding: 3px;
  font-size: 1rem;
  width: 100px;
  border: 2px solid #ffb097;
  justify-content: center;
}

.cv__btn.-dl {
  border-color: #929fea;
}

@media (min-width: 600px) {
  .cv__btn {
    font-size: 1.2rem;
    width: 120px;
    padding: 5px;
  }
}

@media (min-width: 768px) {
  .cv__btn {
    font-size: 1.4rem;
    width: 146px;
  }
}

@media (min-width: 1240px) {
  .cv__btn {
    font-size: 1.6rem;
    width: 168px;
  }
}

.cv__btn__wrap .cv__btn:nth-child(2) {
  margin-left: 5px;
}

@media (min-width: 600px) {
  .cv__btn__wrap .cv__btn:nth-child(2) {
    margin-left: 10px;
  }
}

.contact-btn {
  background-color: #002FFF;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 300;
  width: 152px;
  text-decoration: none;
}

.contact-btn-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .contact-btn-sp {
    display: inline-block;
    background-color: #002FFF;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    width: 110px;
    text-decoration: none;
    margin-right: 50px;
    position: relative;
    z-index: 2;
  }
}


/* ハンバーガーメニュー */
.header__hamburger {
  position: absolute;
  right: 15px;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media (min-width: 768px) {
  .header__hamburger {
    display: none;
    visibility: hidden;
  }
}

.header__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FFF;
  border-radius: 2px;
  transition: ease 0.4s;
}

.header__hamburger span:nth-child(2) {
  margin: 6px 0;
}

.header__hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
  background-color: #002FFF;
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
  background-color: #002FFF;
}

/* 背景オーバーレイ */
.header__bg {
  opacity: 0;
}

@media (max-width: 767px) {
  .header__bg {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    transition: all 0.5s;
  }

  .header__bg.show {
    opacity: 1;
    pointer-events: initial;
  }
}

@media (min-width: 768px) {
  .header__bg,
  .header #js-focus-trap {
    display: none;
  }
}



/* ==========================
   HERO Section
   ========================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 260px 20px 200px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: -1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: -2;
}

.hero .content {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
}

.hero .highlight {
  color: #1cbedc;
}

.hero-subtext {
  font-size: 24px;
  color: #dcdcdc;
  margin: 30px 0 50px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons:hover {
  cursor: pointer;
}

@media (max-width: 767px) {
  .hero {
    padding: 160px 16px 120px;
    background-position: center top;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.5;
  }

  .hero-subtext {
    font-size: 18px;
    margin-top: 50px;
  }

  .hero-video {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center center;
    width: auto;
    height: 100%;
    min-width: 100%;
    z-index: -2;
  }
}



/* ==========================
   ボタン
   ========================== */
.btn-primary,
.btn-outline {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #1fa5fd, #1cbedc);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  font-size: 18px;
}

.hero-buttons a i {
  width: 1em;
  height: 1em;
}



/* ==========================
   WHY NOW Section
   ========================== */
.why-now {
  position: relative;
  background: url('../image/why-now_bg.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 84px 20px 20px;
}

.why-now::before {
  content: "WHY NOW";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(0, 158, 213, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.why-now .container {
  position: relative;
  z-index: 2;
}

.why-heading {
  font-size: 48px;
  color: #1e90ff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.why-subheading {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 70px;
}

.why-subheading .highlight {
  color: #1cbedc;
}

.why-text {
  font-size: 20px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 60px;
}

.why-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-box {
  max-width: 240px;
}

.feature-box img {
  height: 163px;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 24px;
  font-weight: 500;
  color: #1cbedc;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 20px;
  color: #ccc;
}

@media (max-width: 768px) {
  .why-now {
    background: url('../image/why-now_bg_sp.jpg') center/cover no-repeat;
    padding: 20px 20px 0;
  }

  .why-now::before {
    top: 60px;
    font-size: 60px;
  }

  .why-subheading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .why-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .why-features {
    flex-direction: column;
    gap: 24px;
  }

  .feature-box {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-box:last-child {
    margin-bottom: 0;
  }

  .feature-box h4 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 18px;
  }

  .feature-box img {
    width: 41vw;
    height: auto;
    margin-bottom: 10px;
  }

  .feature-box img:last-child {
    margin-bottom: 0;
  }
}



/* ==========================
   SOLUTION Section
   ========================== */
.solution {
  position: relative;
  padding: 84px 20px 20px;
  text-align: center;
  background-color: #ecf5ff;
  overflow: hidden;
}

.solution::before {
  content: "SOLUTION";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(0, 111, 218, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.solution .container {
  position: relative;
  z-index: 1;
}

.solution-heading {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.solution-sub {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 70px;
}

.solution h2 {
  font-size: 80px;
  letter-spacing: 6px;
  margin-bottom: 16px;
}

.solution p.intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 60px;
}

.solution-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.solution-item:nth-of-type(2) {
  flex-direction: row-reverse;
}

.solution-item:nth-of-type(1),
.solution-item:nth-of-type(3) {
  flex-direction: row;
}

.solution-item:nth-of-type(3) {
  margin-bottom: 0;
}

.solution-item img,
.solution-item .text {
  width: 48%;
}

.solution-item .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}

.solution-item .text h4,
.solution-item .text h5 {
  margin: 0;
  flex: none;
}

.solution-item .text h5 {
  margin-left: 8px;
}

.solution-item h4 {
  font-family: 'Overpass', sans-serif;
  font-size: 70px;
  color: #002FFF;
  margin-top: 0;
  margin-bottom: 0;
}

.solution-item h5 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #333;
}

.solution-item p {
  font-size: 20px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 16px;
}

.solution-item .point {
  font-size: 20px;
  font-weight: 600;
  gap: 8px;
  color: #002FFF;
}

.point {
  display: inline-flex;
  align-items: center;
}

.point .custom-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 0.8em;
  background-color: #002FFF;
  color: #fff;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .solution {
    padding: 20px 20px 0;
  }

  .solution::before {
    top: 60px;
    font-size: 60px;
  }

  .solution-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 10px;
    margin-bottom: 25px;
  }

  .solution-sub {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .solution-item {
    flex-direction: column !important;
    gap: 18px;
  }

  .solution-item:last-child {
    margin-bottom: 0;
  }

  .solution-item img,
  .solution-item .text {
    width: 100%;
  }

  .solution-item h4 {
    font-size: 40px;
  }

  .solution-item h5 {
    font-size: 20px;
  }

  .solution-item .text p {
    width: 100%;
    margin-top: 24px;
  }

  .solution-item .text .point {
    width: 100%;
    margin-top: 4px;
  }

  .solution-item .text p.last {
    width: 100%;
    margin-top: 14px;
  }

  .solution-item p,
  .solution-item .point {
    font-size: 16px;
  }

  .solution-item p {
    margin-bottom: 0;
  }

  .point .custom-check {
    width: 18px;
    height: 18px;
  }
}

	

/* ==========================
   SERVICE Section
   ========================== */
.services {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 84px 20px 20px;
  background-color: #080617;
  background-image: 
    linear-gradient(to bottom, rgba(8, 6, 23, 0) 0%, rgba(8, 6, 23, 1) 100%),
    url('../image/services_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services::before {
  content: "SERVICE";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(28, 190, 220, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.services .services-heading,
.services .services-sub,
.services .services-list {
  position: relative;
  z-index: 1;
}

.services-heading {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fff;
}

.services-heading span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.services-sub {
  font-size: 24px;
  color: #fff;
  margin-bottom: 70px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 342px;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.service-card_01,
.service-card_03 {
  border: 1px solid #1fa5fd;
}

.service-card_02 {
  border: 1px solid #1cbedc;
}

.service-card img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 4px;
}

.service-card-h3_01,
.service-card-h3_03 {
  color: #1fa5fd;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 4px;
}

.service-card-h3_02 {
  color: #1cbedc;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 4px;
}

.service-card .subtitle {
  font-size: 24px;
  color: #1fa5fd;
  margin-bottom: 12px;
}

.service-card .desc {
  font-size: 20px;
  font-weight: 300;
}

.desc_01 {
  margin-bottom: 40px;
}

.desc_02,
.desc_03 {
  margin-bottom: 70px;
}

.point-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #1fa5fd;
}

.point-title_01,
.point-title_03 {
  color: #1fa5fd;
}

.point-title_02 {
  color: #1cbedc;
}

.point-title .custom-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.8em;
  color: #080618;
  border-radius: 50%;
  margin-right: 0.5em;
}

.point-title .custom-check_01,
.point-title .custom-check_03 {
  background-color: #1fa5fd;
}

.point-title .custom-check_02 {
  background-color: #1cbedc;
}

.point-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .services {
    padding: 20px 20px 0;
    background-image: 
      linear-gradient(to bottom, rgba(8, 6, 23, 0) 0%, rgba(8, 6, 23, 1) 100%),
      url('../image/services_bg_sp.jpg');
    background-position: bottom, bottom;
    background-size: 100% 80px, 100% auto;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll, scroll;
  }

  .services::before {
    top: 60px;
    font-size: 60px;
  }

  .services-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .services-sub {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .services-list {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    width: 100%;
  }

  .service-card h3 {
    font-size: 20px;
  }
	
  .service-card-h3_01,
  .service-card-h3_02,
  .service-card-h3_03 {
    font-size: 22px;
  }

  .service-card .desc {
    font-size: 16px;
  }

  .desc_02,
  .desc_03 {
    margin-bottom: 40px;
  }
	
  .service-card .subtitle {
    font-size: 13px;
  }

  .point-title {
    font-size: 18px;
  }

  .point-title .custom-check {
    width: 18px;
    height: 18px;
  }

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



/* ==========================
   CASES Section
   ========================== */
.cases {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 84px 20px 20px;
  background-color: #080618;
  background-image: linear-gradient(to bottom, #080618 0%, #080618 100%);
}

.cases::before {
  content: "CASES";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(28, 190, 220, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.cases-heading {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fff;
}

.cases-heading span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.cases-sub {
  font-size: 24px;
  color: #fff;
  margin-bottom: 70px;
}

.cases-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.case-card {
  width: 342px;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #fff;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}

.case-card-h3 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.case-card_01,
.case-card_03 {
  border: 1px solid #1cbedc;
}

.case-card_02 {
  border: 1px solid #1fa5fd;
}

.case-card img {
  width: 100%;
  height: auto;
}

.case-head {
  padding: 16px;
  text-align: center;
  color: #fff;
}

.case-head_01,
.case-head_03 {
  background: #1cbedc;
}

.case-head_02 {
  background: #1fa5fd;
}

.case-head h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1;
}

.case-head p {
  font-size: 18px;
  margin: 0;
  line-height: 1;
}

.case-card ul {
  list-style: none;
  margin: 0;
  padding: 16px;
}

.case-card li {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.case-card .up {
  font-size: 24px;
  font-weight: 500;
  color: #ffa500;
}

.case-card .down {
  font-size: 24px;
  font-weight: 500;
}

.down_01,
.down_03 {
  color: #1cbedc;
}

.down_02 {
  color: #1fa5fd;
}

.cases-note {
  margin-top: 40px;
  font-size: 16px;
  color: #ccc;
}

@media (max-width: 768px) {
  .cases {
    padding: 20px 20px 0;
  }

  .cases::before {
    top: 60px;
    font-size: 60px;
  }

  .cases-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .cases-sub {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .cases-list {
    flex-direction: column;
    gap: 20px;
  }

  .case-card {
    width: 100%;
  }

  .case-card-h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px 0;
  }
	
  .case-head h3 {
    font-size: 20px;
  }

  .case-head p {
    font-size: 16px;
  }

  .case-card li {
    font-size: 18px;
  }

  .case-card .up,
  .case-card .down {
    font-size: 22px;
  }

  .cases-note {
    margin-top: 18px;
    font-size: 12px;
  }
}



/* ==========================
   TRUST Section
   ========================== */
.trust {
  position: relative;
  overflow: hidden;
  text-align: left;
  color: #fff;
  padding: 84px 20px 20px;
  background-color: #080617;
  background-image:
    linear-gradient(to bottom, #080617 0px, rgba(8, 6, 23, 0) 84px),
    url('../image/trust_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.trust::before {
  content: "TRUST";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(28, 190, 220, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.trust-heading {
  font-size: 72px;
  margin-bottom: 8px;
  text-align: center;
}

.trust-subheading {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: center;
}

.trust-description {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 70px;
  text-align: center;
  color: #fff;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item img {
  flex-shrink: 0;
  width: 94px;
  height: 94px;
}

.trust-item .text h4 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1cbedc;
}

.trust-item .text p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .trust {
    padding: 20px 20px 0;
    background-image: url('../image/trust_bg_sp.png');
  }

  .trust::before {
    top: 60px;
    font-size: 60px;
  }

  .trust-subheading {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
  }

  .trust-description {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .trust-items {
    padding-left: 0 !important;
    gap: 50px;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .trust-item img {
    margin-bottom: 20px;
  }

  .trust-item .text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1cbedc;
  }

  .trust-item .text p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #fff;
  }
}



/* ==========================
   VISION Section
   ========================== */
.vision {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #ecf5ff;
  padding: 84px 20px 20px;
}

.vision::before {
  content: "VISION";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(0, 111, 218, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.vision-heading {
  font-size: 80px;
  color: #99B6E5;
  margin-bottom: 8px;
}

.vision-subheading {
  font-size: 40px;
  font-weight: 500;
  color: #333;
  margin-bottom: 50px;
}

.vision-text {
  font-size: 24px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.vision-text .highlight {
  color: #002FFF;
}

.vision-description {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 60px;
}

.vision-blocks {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-block {
  position: relative;
  width: 45%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: translate;
  text-align: center;
}

.vision-block_01,
.vision-block_02 {
  position: relative;
}

.vision-block img {
  display: block;
  width: 100%;
  height: auto;
}

.vision-caption {
  width: 100%;
  padding: 24px;
}

.vision-caption_01,
.vision-caption_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vision-caption h4 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.vision-caption p {
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .vision {
    padding: 20px 20px 0;
  }

  .vision::before {
    top: 60px;
    font-size: 60px;
  }

  .vision-subheading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .vision-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
  }

  .vision-description {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .vision-blocks {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .vision-blocks:last-child {
    margin-bottom: 0;
  }

  .vision-block {
    width: 100%;
  }

  .vision-caption h4 {
    font-size: 24px;
  }

  .vision-caption p {
    font-size: 20px;
  }
}



/* ==========================
   CONTACT Section
   ========================== */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 84px 20px 80px;
  background-color: #0b0c1a;
}

.contact > .container {
  padding-bottom: 0;
}

.contact::before {
  content: "CONTACT";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Overpass', sans-serif;
  font-size: clamp(24px, 12vw, 150px);
  font-weight: 800;
  color: rgba(28, 190, 220, 0.3);
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.contact-heading {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 70px;
}

.contact p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.contact p.first {
  margin-bottom: 50px;
}

.contact .buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.contact .btn-primary,
.contact .btn-outline {
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.contact .btn-primary {
  background: linear-gradient(to right, #1fa5fd, #1cbedc);
  color: #fff;
}

.contact .btn-primary:hover {
  opacity: 0.8;
}

.contact .btn-outline {
  border: 2px solid #fff;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  font-size: 18px;
}

.contact .info {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 74%;
  line-height: 1;
  font-size: 14px;
  margin: 0 auto;
}

.contact .info p {
  color: #9CA3AF;
}

.contact .info p.email a {
  text-decoration: underline;
  color: #9CA3AF;
}

.contact .info p.email:hover {
  cursor: pointer;
}

.contact .info i {
  font-size: 1.2em;
  color: #9CA3AF;
  margin-right: 0.5em;
}

.info_left {
  text-align: right;
  padding-right: 2%;
  width: 74%;
}

.info_left p {
  font-size: 24px;
}

.info_right {
  text-align: left;
  padding-left: 2%;
  width: 206%;
  border-left: 1px solid #9CA3AF;
}

.info_right p {
  font-size: 20px;
}

@media (max-width: 768px) {
  .contact {
    padding: 20px 20px 0;
  }

  .contact::before {
    top: 60px;
    font-size: 60px;
  }

  .contact-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .contact p.first {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.8;
  }

  .contact .buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .contact .btn-primary,
  .contact .btn-outline {
    width: 100%;
    max-width: 360px;
    font-size: 18px;
    padding: 12px 16px;
    white-space: nowrap;
  }

  .contact .info {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 55%;
    margin: 0 auto 60px;
    color: #aaa;
    line-height: 1;
  }

  .info_left {
    text-align: center;
    padding-right: 0;
    width: 100%;
  }

  .info_left p {
    font-size: 18px;
  }

  .info_right {
    text-align: left;
    width: 183%;
    padding-top: 15px;
    line-height: 1.3;
    border-left: 0;
    border-top: 1px solid #9CA3AF;
  }

  .info_right p {
    font-size: 16px;
  }
}



/* ==========================
   Footer
   ========================== */
footer.footer {
  background: #111827;
  text-align: center;
  padding: 40px 0 50px;
  font-size: 14px;
}

.footer {
  color: #ccc;
  font-size: 14px;
  padding: 60px 20px 30px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:visited {
  color: #ccc;
}

.footer-column a:hover {
  opacity: 0.7;
}

.footer > .container {
  padding: 30px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 32px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.footer-column h4 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.footer-column p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a,
.social-icons a {
  color: #ccc;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.7;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

a > .fa-brands {
  font-size: 24px;
  color: #ccc;
  margin-right: 16px;
  transition: color 0.2s;
}

a:hover > .fa-brands {
  color: #1DA1F2;
}

/* Copy */
.footer-copy {
  font-size: 16px;
  color: #777;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-column h3 {
    font-size: 16px;
  }
}



/* =========================================
   iPad (横向き: 769px〜1024px) 向け調整パッチ
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

  /* 共通レイアウト */
  .container {
    padding: 70px 0 60px;
  }

  /* 改行制御 */
  br.sp {
    display: none;
  }

  /* 各セクション見出しサイズ */
  .why-subheading,
  .solution-heading,
  .services-heading,
  .cases-heading,
  .trust-subheading,
  .vision-subheading,
  .contact-heading {
    font-size: 28px;
  }

  /* Header */
  .logo {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
  }

  .header__nav li a {
    font-size: 18px;
  }

  .contact-btn {
    font-size: 18px;
    width: 140px;
  }
	
  /* HERO Section */
  .hero h1 {
    font-size: 40px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  /* WHY NOW Section */
  .why-text {
    font-size: 18px;
  }

  /* SOLUTION Section */
  .solution-sub {
    font-size: 18px;
  }

  .solution-item h4 {
    font-size: 50px;
  }

  .solution-item h5 {
    font-size: 20px;
  }

  .solution-item p,
  .solution-item .point {
    font-size: 16px;
  }

  .point .custom-check {
    width: 16px;
    height: 16px;
  }

  /* SERVICE Section */
  .services-sub {
    font-size: 18px;
  }

  .service-card-h3_01,
  .service-card-h3_02,
  .service-card-h3_03 {
    font-size: 24px;
  }

  .service-card .subtitle,
  .service-card .desc,
  .point-title,
  .point-text {
    font-size: 18px;
  }

  .point-title .custom-check {
    width: 18px;
    height: 18px;
  }

  .services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .service-card {
    width: 45%;
    margin-bottom: 40px;
  }

  /* CASES Section */
  .cases-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .case-card {
    width: 45%;
  }

  .case-card li {
    font-size: 18px;
  }

  .case-card .up,
  .case-card .down {
    font-size: 20px;
  }

  /* TRUST Section */
  .trust-description {
    font-size: 18px;
  }

  .trust-item .text h4 {
    font-size: 24px;
  }

  .trust-item .text p {
    font-size: 16px;
  }

  /* VISION Section */
  .vision-text {
    font-size: 20px;
  }

  .vision-description {
    font-size: 16px;
  }

  .vision-caption h4 {
    font-size: 24px;
  }

  .vision-caption p {
    font-size: 20px;
  }

  /* CONTACT Section */
  .contact p {
    font-size: 18px;
  }

  .contact .info {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .info_left,
  .info_right {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border: none;
  }

  .info_right {
    border-top: 1px solid #CCC;
  }

  .contact-buttons a {
    font-size: 16px;
  }
	
  .contact .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .contact .btn-primary,
  .contact .btn-outline {
    width: auto;
    min-width: 200px;
    max-width: 100%;
  }

  /* Footer（必要に応じて追記） */
}


/* =========================================
   iPad (横向き: 1035px〜1336px) 向け調整パッチ
========================================= */

@media (min-width: 1035px) and  (max-width: 1336px) {
  .contact .info {
    width: 80vw;
  }
	
  .info_left {
    width: 70vw;
  }
}