/* ==========================
   Base
========================== */

html {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont,
    'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    'Yu Gothic', Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #000;
  line-height: 1.6;
  word-break: break-word;
}

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

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
  color: #253A56;

}

.en {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  color: #253A56;

}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.section {
  width: 95%;
  margin: 0 auto;
}

.inner {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* タイトル */
.title-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.52px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  line-height: 160%;
  letter-spacing: 3.2px;
}

.section-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  line-height: 200%;
  letter-spacing: 2.72px;
}

/* 共通ボタン */
.button {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #1D779D;
  color: #fff;
  padding: 20px 60px 20px 28px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2.4px;
  text-align: center;
}

.button-label {
  pointer-events: none;
}

.button-icon {
  position: absolute;
  right: 14px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.button-icon::before {
  content: "→";
  color: #1D779D;
  font-size: 16px;
  font-weight: bold;
}

.btn-disabled {
  background-color: #ccc !important;
  color: #888 !important;
  border: 1px solid #bbb !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
  /* 少し透けさせると「無効感」がアップします */
}


/* =========================
   Header Base (SP)
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 0;
}

.header-logo a {
  margin-left: 10px;
  display: block;
}

.header-logo {
  width: 60%;
}

/* =========================
   Hamburger
========================= */

.header-hamburger {
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}

.header-hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #0072BC;
  left: 0;
  transition: 0.3s;
}

.header-hamburger span:nth-child(1) {
  top: 0;
}

.header-hamburger span:nth-child(2) {
  top: 10px;
}

.header-hamburger span:nth-child(3) {
  bottom: 0;
}

/* バツ状態 */

.header-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.header-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}


/* =========================
   SP Nav Drawer
========================= */

.header-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 92%;
  height: 75vh;
  background: #fff;
  border-bottom-left-radius: 60px;
  transition: 0.4s ease;
  padding: 100px 63px 80px;
  box-shadow: -10px 10px 13px 0 rgba(0, 0, 0, 0.06);
}

.header-nav.is-open {
  right: 0;
}

.header-nav-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100%;
  justify-content: center;
}

.header-nav-list a {
  font-size: 24px;
  color: #253A56;
  line-height: 130%;
  letter-spacing: 1.88px;
}

/* =========================
   追従ボタン
========================= */

.follow-cta {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  width: 150px;
  height: 100px;
  background-color: #1D779D;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.4s ease;
  visibility: visible;
}

.follow-cta p {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 5px 0;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.56px;
}

.follow-cta-link {
  width: 100%;
  height: 26px;
  background-color: #fff;
  color: #1D779D;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  transition: opacity 0.3s;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 2.4px;
}

.follow-cta-link:hover {
  opacity: 0.9;
}

/* =========================
   KV
========================= */

#kv .kv {}

/* main */

#kv .kv-main {
  position: relative;
  background: url(../img/kv-sp.jpg) center / cover no-repeat;
  padding: 80px 4% 0;
  color: #fff;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  width: 100%;
  height: 65vh;
}

#kv .kv-main .kv-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 50vh;
  justify-content: center;
}

/* h2 背景付き */

#kv .kv-main h2 {
  font-size: 21px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1.0s ease forwards;
  letter-spacing: 1.1px;
  color: #fff;
}

#kv .kv-main h2 span {
  display: inline-block;
  background: rgba(7, 78, 124, 0.46);
  padding: 4px 10px;
  margin-bottom: 8px;
}

/* h1 */

#kv .kv-main h1 {
  font-size: 24px;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
  color: #fff;
  background: linear-gradient(270deg, rgba(108, 187, 255, 0.48) 0%, rgba(1, 107, 173, 0.48) 100%);
  display: inline-block;
  padding: 0 15px;
}

/* =========================
   Scroll Indicator
========================= */

#kv .scroll-indicator {
  position: absolute;
  right: 6px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* テキスト縦 */

#kv .scroll-text {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-weight: 500;
}

/* 線 */

#kv .scroll-line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

/* 動く線 */

#kv .scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* sub */

#kv .kv-sub {
  padding: 40px 0;
  scroll-margin-top: 70px;
}

/* features */

#kv .kv-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

#kv .kv-features-item {
  width: 90%;
  font-size: 16px;
  color: #fff;
  background: #253A56;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
}

/* h3 */

#kv .kv-sub h3 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 130%;
  letter-spacing: 6.08px;
}

/* h4 */

#kv .kv-sub h4 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 3.52px;
}

/* h5 */
#kv .kv-sub h5 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 2.88px;
}

/* h6 */

#kv .kv-sub h6 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2.88px;
}

/* logo marquee */

.logo-marquee {
  overflow: hidden;
}

.logo-marquee-list {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 35s linear infinite;
  justify-content: center;
}

.logo-marquee-item {
  flex-shrink: 0;
}

.logo-marquee-item img {
  height: 50px;
  width: auto;
  padding: 4px 0;
}

.logo-marquee-item img.h40 {
  height: 40px;
}

.logo-marquee-item img.h75 {
  height: 75px;
}

.logo-marquee-item img.h90 {
  height: 90px;
}

/* =========================
   Animations
========================= */

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   ABOUT
========================= */
#about {
  padding: 60px 0;
  background: linear-gradient(129deg, #5C9FC9 0%, #99C4DC 100%);
}

.about-inner {
  width: 90%;
  margin: 0 auto;
}

.about h4 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.4;
  color: #fff;
  line-height: 160%
}

.about h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-top: 13px;
}

.about p {
  font-size: 18px;
  margin: 0;
  text-align: justify;
  color: #fff;
  line-height: 200%;
  letter-spacing: 1px;
}

/* =========================
   SERVICE
========================= */
#service {
  background: #F9F9F9;
}

/* カード一覧 */

.service-list {
  margin-top: 40px;
  display: grid;
  column-gap: 34px;
  row-gap: 34px;
}

/* カード */

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ハッシュタグ */

.service-card-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1D779D;
  margin-bottom: 10px;
}


/* ロゴ */

.service-card-logo {
  border: 1px solid #F2F2F2;
  padding: 20px;
  text-align: center;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.service-card-logo img {
  width: auto;
  height: 110px;
  object-fit: contain;
  margin: 0 auto;
}

/* テキスト */

.service-card-tag {
  margin-bottom: 6px;
}

.service-card-tag span {
  background-color: #fa9623d6;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 4px;
  padding: 2.5px 3px 3.5px 6px;
}

.service-card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-card-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-text span {
  background: linear-gradient(#fa9623d6);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 35%;
  font-weight: 700;
  font-feature-settings: 'palt';
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 4px 3px 4px 5px;
  margin: 0 3px;
  display: inline-block;
}

/* ボタン */

.service-card-buttons {
  display: flex;
  gap: 10px;
  /* margin-top: auto; */
}

.service-card-button {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
}

.service-card-button--primary {
  background: #253A56;
  color: #fff;
}

.service-card-button--secondary {
  background-color: #1D779D;
  color: #fff;
}

.service-card-button:hover {
  opacity: 0.8;
}

.service-card .comingsoon {
  background: #F9F9F9;
}

/* 絞り込みエリア全体のスタイル */
.filter-container {
  background: linear-gradient(93deg, #EFF3F5 0%, #D0E3EF 100%);
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 52px 0;
}

.filter-title {
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 1.72px;
}

/* ボタンの並び */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

/* 個別のハッシュタグボタン */
.filter-btn {
  background: #fff;
  border: none;
  padding: 5px 13px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  color: #1D779D;
  transition: all 0.3s ease;
}

/* 選択された時の色 */
.filter-btn.is-active {
  background-color: #1D779D;
  color: #fff;
}

/* クリアボタン */
.clear-btn {
  background: transparent;
  border: 1px solid #253A56;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  color: #253A56;
}

/* 非表示にするアニメーション用 */
.service-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-item.is-hide {
  display: none;
  /* または opacity: 0; visibility: hidden; など */
}

/* =========================
   CTA
========================= */

.cta {
  padding: 80px 0;
  background:
    linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)),
    linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)),
    url(../img/kv-sp.jpg) center / cover no-repeat;
  background-attachment: fixed;
}

.cta-inner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.cta-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #253A56;
  letter-spacing: 2.2px;
}

.cta-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #253A56;
}

.cta-text span {
  display: inline-block;
  color: #0058CA;
  border: 2px solid #0058CA;
  border-radius: 8px;
  padding: 0 6px;
  vertical-align: middle;
  margin: 6px 0;
}

.cta-download {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: center;
}

.cta-download img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.cta-download ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
  display: inline-block;
}

.cta-download li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.cta-download li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  background-color: #1D779D;
  border-radius: 50%;
}

.cta-download .button {
  padding: 26px 60px 26px 28px;
}

.balloon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FA9623;
  color: #fff;
  padding: 3px 24px;
  border-radius: 50px;
  font-size: 16px;
  white-space: nowrap;
}

.balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 15px 0 0;
  border-color: #FA9623 transparent transparent transparent;
}

/* =====================
   CASE STUDY
===================== */
#casestudy {
  overflow: hidden;
  width: 100%;
}

.casestudy-inner {
  margin: 40px auto 0;
  padding-right: 0;
  box-sizing: border-box;
}

.casestudy-slider {
  padding: 20px 0 40px;
}

.swiper {
  overflow: visible;
}

/* カード */

.casestudy-card {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-right: 0.5px solid #F3F3F3;
  border-left: 0.5px solid #F3F3F3;
}

/* 画像 */

.casestudy-card-image {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 20px;
}

.casestudy-card-image .logo {
  width: 182px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.casestudy-card-image .img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* 本文 */

.casestudy-card-body {
  padding: 12px 18px 0;
}

.casestudy-card-company {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.casestudy-card-service {
  font-size: 13px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F3F3F3;
}

.casestudy-card-text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* ハッシュタグ */

.casestudy-card-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1D779D;
  margin-bottom: 10px;
  width: 90%;
  justify-content: flex-start;
  margin-left: 18px;

}

/* リンク矢印 */

.casestudy-card-link {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1D779D;
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 1.4px;
  padding: 7px 37px;
  margin: 0 auto;
  width: fit-content;
}


.casestudy-navigation {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  position: relative;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 44px !important;
  height: 44px !important;
  background-color: #253A56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static !important;
  margin: 0;
}

.swiper-button-prev::before {
  content: "←";
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.swiper-button-next::before {
  content: "→";
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.casestudy-slider.swiper {
  overflow: visible !important;
  margin-left: 16px;
  margin-bottom: 60px;
}

#casestudy .swiper-slide[style*="display: none"] {
  display: none !important;
}

/* =========================
  OUR VALUE
========================= */
#ourvalue {
  background:
    linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)),
    linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)),
    url(../img/kv-sp.jpg) center / cover no-repeat;
  background-attachment: fixed;
  padding-bottom: 60px;
}

.value-container {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* カード */

.value-card {
  padding: 28px;
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(119deg, rgba(40, 152, 212, 0.76) 0%, rgba(37, 58, 86, 0.76) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 340px;
}

/* タイトル */

.value-card-title {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 130%;
  letter-spacing: 4.16px;
}

/* コンテンツ */

.value-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* テキスト */
.value-card-text {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 1.44px;
}

/* =========================
  WHY CHOOSE US
========================= */
#reason {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.compare-inner {
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.compare-tabs {
  background-color: #EFF4F8;
  font-size: 14px;
  display: flex;
  padding: 20px;
  margin: 60px 0 30px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  color: #253A56;
  justify-content: space-between;
}

/* 親コンテナのレイアウト */
.compare-slider {
  position: relative;
  overflow: hidden;
  display: flex;
}

.compare-sidebar {
  position: sticky;
  left: 0;
  z-index: 10;
  flex-shrink: 0;
  width: 140px;
  background-color: #253A56;
  color: #fff;
  box-shadow: -50px 0 0 #fff;
}

.compare-sidebar ul {
  list-style: none;
  padding: 0;
}

.compare-sidebar li {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.compare-sidebar li:first-child {
  background-color: #fff;
  border-bottom: none;
  height: 110px;
}

/* Swiper本体の調整 */
.compare-slide.is-highligh h4 {
  background-color: #77ABCD;
  color: #fff;
  height: 110px;
}

.compare-slide.is-highligh li {
  background-color: #77ABCD;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.compare-slide li:last-child {
  border-bottom: none;
}

.compare-slide.is-margin-top {
  margin-top: 38px;
}

.is-margin-top li:nth-child(odd) {
  background-color: #f9f9f9;
}

.is-margin-top li:nth-child(even) {
  background-color: #F1F1F1;
}

.compare-slider.swiper {
  width: calc(100% - 140px);
  margin-left: 0;
  overflow: visible;
}

.compare-slide {
  background: #fff;
  box-sizing: border-box;
}

.compare-slide h4 {
  height: 72px;
  line-height: 44px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  border: 1px solid #FFF;
  background: #F1F1F1;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-slide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-slide li {
  height: 120px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 13px;
  line-height: 1.4;
  gap: 17px;
  align-items: center;
}

/* アイコンの調整 */
.compare-slide li img {}

/* タブのスタイル（アクティブ時） */
.compare-tab.is-active {
  border-bottom: 2px solid #253A56;
  padding-bottom: 6px;
}

.compare-summary {
  background-color: #EFF4F8;
  padding: 60px 28px;
  text-align: center;
}

.compare-summary .lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 3.2px;
  margin-bottom: 20px;
}

.compare-summary .text {
  font-size: 17px;
  font-weight: 400;
  line-height: 230%;
  letter-spacing: 1.72px;
}

/* =========================
  MOVIE
========================= */
#movie {
  background: linear-gradient(to bottom, #B5D3E3 60%, #5C9FC9 40%);
  padding: 60px 0 30px;
  text-align: center;
}

#movie .title-inner {
  text-align: center;
  padding-top: 0;
  gap: 8px;
  margin-bottom: 32px;
}

#movie .title-inner .section-title {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 10px;
  color: #FFF;
}

#movie .title-inner .section-text {
  color: #FFF;
}

.movie-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-placeholder iframe {
  aspect-ratio: 16 / 9;
  width: 320px;
  height: 180px;
  margin: 0 auto;
  position: relative;
}

.status-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 40%;
}

/* =========================
  FAQ
========================= */
#faq {
  background: #F9F9F9;
}

#faq .title-inner {
  margin-bottom: 20px;
}

/* アイテム */
.faq-item {
  margin-bottom: 11px;
  overflow: hidden;
}

/* 質問ボタン */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
  background-color: #FFF;
  font-weight: 500;
}

.faq-q {
  font-weight: bold;
  color: #1D779D;
  flex-shrink: 0;
  font-size: 20px;
}

.faq-a {
  font-weight: bold;
  flex-shrink: 0;
  color: #0058CA;
  font-size: 20px;
}

.faq-answer p {
  display: flex;
  gap: 10px;
  color: #253A56;
  margin-top: 14px;
}

.faq-text {
  font-size: 14px;
  flex: 1;
  color: #253A56;
}

/* + / - アイコン */
.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #253A56;
  border-radius: 10px;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 8px;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 8px;
}

.faq-item.is-open .faq-icon::after {
  display: none;
}

/* 回答 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 18px;
}

.faq-answer p {
  font-size: 12px;
  padding: 0 0 18px;
}

/* 開いた状態 */
.faq-item.is-open .faq-answer {
  max-height: 200px;
  background-color: #F9F9F9;
}

/* =========================
  FINAL CTA
========================= */
#final-cta {
  padding: 80px 0;
  background:
    linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)),
    linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)),
    url(../img/kv-sp.jpg) center / cover no-repeat;
  background-attachment: fixed;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.final-cta-title {
  font-size: 31px;
  margin-bottom: 50px;
  line-height: 160%;
  letter-spacing: 3px;
  text-align: center;
}

.final-cta-main {
  margin-bottom: 40px;
}

.button.is-large {
  height: auto;
  min-height: 90px;
  padding: 15px 60px 15px 40px;
}

.button.is-large .button-label {
  line-height: 1.4;
}

.button.is-large .button-label span {
  font-size: 14px;
}

.final-cta-lead {
  margin-bottom: 40px;
  color: #253A56;
  text-align: left;
}

.final-cta-lead h3 {
  font-size: 20px;
  margin-bottom: 22px;
  text-align: center;
  line-height: 130%;
  letter-spacing: 3.2px;
  font-weight: 600;
}

.final-cta-lead p {
  font-size: 17px;
  line-height: 200%;
  letter-spacing: 1.72px;
}

/* リスト形式のボタン */
.cta-list {
  list-style: none;
  padding: 0;
}

.cta-list li {
  margin-bottom: 12px;
}

.cta-list .button {
  width: 100%;
  max-width: 100%;
}

/* =========================
  footer
========================= */

.footer {
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ロゴ上のテキスト */
.footer-info-text {
  font-size: 12px;
  color: #253A56;
  font-weight: 400;
  margin-bottom: 7px;
  line-height: 1.6;
  text-align: left;
}

/* ロゴ画像 */
.footer-info-logo {
  margin-bottom: 20px;
}

.footer-info-logo img {
  width: 227px;
  height: auto;
}

/* コピーライト */
.footer-copyright {}

.footer-copyright small {
  font-size: 12px;
  color: rgba(37, 58, 86, 0.58);
  letter-spacing: 0.05em;
}


/* ==========================================================================
   FOR PC (Responsive)
   ========================================================================== */

@media (min-width: 768px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  body {
    overflow-x: hidden;
  }

  .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 120px;
    max-width: 1054px;
    padding: 0 30px 120px;
  }

  .button {
    font-size: 28px;
    padding: 30px 60px 30px 28px;

  }

  .button-icon {
    width: 50px;
    height: 50px;
  }

  .button-icon::before {
    font-size: 24px;
    font-weight: 400;
  }

  .title-inner {
    padding-top: 120px;
    gap: 22px;
  }

  .section-title {
    font-size: 50px;
    margin-bottom: 2px;
  }

  .button:hover .button-icon::before {
    transform: translateX(5px);
  }

  .button-icon::before {
    transition: transform 0.25s ease;
  }


  /* =========================
   Header Base (PC)
========================= */

  .header {
    background: transparent;
    transition: background 0.3s;
  }

  /* スクロール後の白背景 */
  .header.is-scrolled {
    background: #fff;
  }

  .header.is-scrolled .header-nav-list a {
    color: #253A56;
  }

  .header-inner {
    padding: 20px 40px;
  }

  .header-hamburger {
    display: none;
  }

  .header-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-nav-list {
    flex-direction: row;
    gap: 34px;
  }

  .header-nav-list a {
    font-size: 14px;
    color: #0072BC;
    line-height: 130%;
    letter-spacing: 1.68px;
    transition: opacity 0.3s ease;
  }

  .header-nav-list a:hover {
    opacity: 0.7;
  }

  .header-logo {
    width: 290px;
  }

  /* =========================
   KV
========================= */

  #kv .kv {}

  /* main */

  #kv .kv-main {
    background: url(../img/kv-pc.jpg) center / cover no-repeat;
    padding: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 70vh;
  }

  #kv .kv-main .kv-title {
    gap: 16px;
    height: 70vh;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  /* h2 背景付き */

  #kv .kv-main h2 {
    font-size: 33px;
  }

  #kv .kv-main h2 span {}

  /* h1 */

  #kv .kv-main h1 {
    font-size: 54px;
  }

  /* =========================
   Scroll Indicator
========================= */

  #kv .scroll-indicator {
    right: auto;
    left: 60px;
    bottom: 56px;
  }

  /* テキスト縦 */

  #kv .scroll-text {
    font-size: 15px;
  }

  /* 線 */

  #kv .scroll-line {}

  /* 動く線 */

  #kv .scroll-line::after {}


  /* sub */

  #kv .kv-sub {
    padding: 72px 0 94px;
    scroll-margin-top: 40px;
  }

  /* features */

  #kv .kv-features {
    flex-direction: row;
    margin: 0 auto;
    max-width: 1082px;
    gap: 12px;
    padding: 0 30px;
  }

  #kv .kv-features-item {
    flex: 0 0 calc(25% - 15px);
  }

  /* h3 */

  #kv .kv-sub h3 {
    margin: 62px 0;
  }

  /* h4 */

  #kv .kv-sub h4 {}

  /* h5 */
  #kv .kv-sub h5 {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: 3.2px;
    margin-bottom: 30px;
  }

  /* h6 */

  #kv .kv-sub h6 {
    margin-bottom: 74px;
  }

  /* logo marquee */

  .logo-marquee {
    overflow: hidden;
  }

  .logo-marquee-list {
    gap: 52px;

  }

  /* =========================
   ABOUT
========================= */
  #about {
    padding: 120px 0;
  }

  .about-inner {
    width: 85%;
  }

  #about .flex {
    display: flex;
    justify-content: center;
    gap: 92px;
  }

  .about p {
    width: 40%;
  }

  /* =========================
   SERVICE
========================= */
  /* カード一覧 */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 52px;
    column-gap: 34px;
    row-gap: 60px;
  }

  .service-card {
    height: 100%;
    padding: 22px;
    box-sizing: border-box;
  }

  .service-card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
  }

  .service-card-text {
    margin-bottom: 0;
  }

  .service-card-button {
    font-size: 14px;
  }

  /* 絞り込みエリア全体のスタイル */
  .filter-container {
    padding: 40px 20px;
  }

  .filter-title {
    line-height: 130%;
    letter-spacing: 1.72px;
  }

  /* ボタンの並び */
  .filter-buttons {
    justify-content: center;
  }

  /* 個別のハッシュタグボタン */
  .filter-btn {}

  /* 選択された時の色 */
  .filter-btn.is-active {}

  /* クリアボタン */
  .clear-btn {}

  /* 非表示にするアニメーション用 */
  .service-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .service-item.is-hide {
    display: none;
    /* または opacity: 0; visibility: hidden; など */
  }

  /* =========================
   CTA
========================= */
  .cta {
    padding: 122px 0;
    background: linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)), linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)), url(../img/kv-pc.jpg) center / cover no-repeat;
    background-attachment: fixed;
  }

  .cta-inner {
    width: 100%;
    max-width: 1054px;

  }

  .cta-title {
    font-size: 38px;
    margin-bottom: 52px;
    line-height: 130%;
    letter-spacing: 5.08px;
  }

  .cta-text {
    margin-bottom: 40px;
  }

  .cta-text span {
    margin: 6px 9px;
  }

  .cta-download {
    padding: 68px;
  }

  .cta-download img {
    width: 90%;
    margin: 0 auto;
  }

  .cta-download ul {
    margin: 30px 0 55px;
  }

  .cta-download li {
    margin-bottom: 5px;
  }

  .cta-download li::before {}

  .cta-download .button {
    width: 70%;
  }

  .cta-download .button .button-icon {
    width: 40px;
    height: 40px;
  }

  .cta-download .button .button-icon::before {
    font-size: 20px;
  }

  .balloon {
    font-size: 20px;
    padding: 3px 74px;
  }

  .balloon::after {}


  /* =====================
   CASE STUDY
===================== */

  .casestudy-card-link {
    margin: 0;
    transition: opacity .3s ease;
  }

  .casestudy-slider.swiper {
    overflow: hidden !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .swiper-wrapper {
    align-items: center;
  }

  .casestudy-card {
    margin-right: 0 !important;
    border-left: 1px solid #F3F3F3;
    border-right: none;
    width: 360px !important;
  }

  .casestudy-card:first-child {
    border-left: none;
  }

  .casestudy-inner {
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
  }

  .casestudy-inner .flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
  }

  .casestudy-card-link:hover {
    opacity: 0.7;
  }

  .casestudy-card-text {
    margin-bottom: 30px;
  }

  .casestudy-navigation {
    top: -310px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 64px !important;
    height: 64px !important;
    position: absolute !important;
  }

  .swiper-button-prev {
    left: -80px !important;
  }

  .swiper-button-next {
    right: -80px !important;
  }

  .swiper-button-prev::before {
    content: "←";
    font-size: 21px;

  }

  .swiper-button-next::before {
    content: "→";
    font-size: 21px;
  }

  /* =========================
  OUR VALUE
========================= */
  #ourvalue {
    background: linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)), linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)), url(../img/kv-pc.jpg) center / cover no-repeat;
    background-attachment: fixed;
  }

  .value-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 85%;
    margin: 52px auto 0;
  }

  .value-card {
    height: 340px;
    padding: 34px;
    gap: 15px;
  }

  .value-card-title {
    letter-spacing: 2.16px;
  }


  /* =========================
  WHY CHOOSE US
========================= */
  #reason {
    background: linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)), linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)), url(../img/kv-pc.jpg) center / cover no-repeat;
    background-attachment: fixed;
  }

  .compare-inner {
    max-width: 90%;
  }

  .compare-inner .inner {
    width: 75.2%;
    padding-bottom: 0;
  }

  .compare-table thead th .th-inner {
    padding: 20px;
  }

  .compare-table thead th {
    vertical-align: bottom;
  }

  .th-box {
    padding: 20px;
  }

  .compare-table thead th.is-highlight .th-box {
    background: #77ABCD;
    color: #fff;
    border-radius: 15px 15px 0 0;

    transform: translateY(-20px);
  }


  .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 60px;
  }

  .compare-table th,
  .compare-table td {
    padding: 20px;
    border-bottom: 1px solid #fff;
    vertical-align: middle;
    text-align: left;
  }

  .compare-table tr th {
    text-align: center;
    white-space: nowrap;
  }

  .compare-table thead th {
    padding: 0;
  }

  .compare-table thead th .th-box {
    background: #F1F1F1;
    border-radius: 15px 15px 0 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .compare-table thead th:first-child {
    background-color: #fff;
  }

  .compare-table tbody td {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    width: calc(100% / 4);
  }


  .compare-table tbody th {
    background-color: #253A56;
    color: #fff;
    font-size: 15px;
    width: 17.5%;
  }

  .compare-table td {
    background-color: #F9F9F9;
    line-height: 1.6;
  }

  .compare-table tr:nth-child(even) td {
    background-color: #F1F1F1;
  }

  .compare-table .is-highlight {
    background-color: #77ABCD !important;
    color: #fff;
    position: relative;
  }

  .compare-table thead th.is-highlight {
    border-radius: 15px 15px 0 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .compare-table tbody td.is-highlight {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .cell-content {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .cell-content img {
    width: 30px;
    flex-shrink: 0;
  }

  .cell-content p {
    margin: 0;
  }

  .compare-summary {
    padding: 80px;
    width: 90%;
    margin: 0 auto;
  }



  /* =========================
  MOVIE
========================= */
  #movie {
    background: linear-gradient(140deg, #B5D3E3 -5.44%, #5C9FC9 97.35%);
    padding: 120px 0 110px;
    text-align: center;
  }

  .video-background {
    position: relative;
    z-index: 0;
  }

  /* 濃い青の帯 */
  .video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 450px;
    background: #5b84a8;
    z-index: -1;
  }

  .video-placeholder iframe {
    width: 100%;
    width: 800px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .status-image {
    max-width: 20%;
  }

  /* =========================
  FAQ
========================= */
  #faq .title-inner {
    margin-bottom: 52px;
  }

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

  .faq-item {
    margin-bottom: 17px;
  }

  .faq-q {
    font-size: 30px;
  }

  .faq-a {
    font-size: 30px;
  }

  .faq-question {
    gap: 25px;
    transition: opacity .3s ease;
  }

  .faq-answer p {
    gap: 40px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-icon::before {
    top: 12px;
  }

  .faq-icon::after {
    left: 12px;
  }

  .faq-question:hover {
    opacity: 0.7;
  }


  /* =========================
  FINAL CTA
========================= */
  #final-cta {
    background: linear-gradient(rgba(181, 211, 227, 0.4), rgba(181, 211, 227, 0.4)), linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)), url(../img/kv-pc.jpg) center / cover no-repeat;
    background-attachment: fixed;
    padding: 160px 0;
  }

  #final-cta a.is-large {
    width: 55%;
    padding: 23px 40px 30px 28px;
  }

  .cta-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .final-cta-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  .final-cta-title {
    font-size: 48px;
    margin-bottom: 52px;
  }

  .final-cta-lead {
    margin-bottom: 60px;
  }

  .final-cta-main {
    margin-bottom: 60px;
  }

  .final-cta-lead p {
    text-align: center;
  }

  .button.is-large .button-label span {
    font-size: 18px;
  }

  .cta-list .button {
    font-size: 20px;
  }

  /* =========================
  footer
========================= */
  .footer-copyright {
    text-align: right;
  }

  .footer-inner {
    max-width: 95%;
  }

  .footer-info-logo img {}


  /* =========================
  追従
========================= */

  .follow-cta {
    bottom: 40px;
    right: 50px;
    width: 190px;
    height: 125px;
    padding: 0 17px;
  }

  .follow-cta p {
    font-size: 14px;
    margin: 0px 0 12px 0;
  }

  .follow-cta-link {
    font-size: 14px;
    height: 34px;
  }

  .footer-info-logo a {
    width: 13%;
    display: block;
  }

}

/* ==========================================================================
   タブレット調整
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1169px) {

  .header-nav {
    display: none;
  }

  .header-nav.is-open {
    display: block;
  }

  .header-hamburger {
    display: block;
  }

  /* =========================
   SP Nav Drawer
========================= */

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 75vw;
    background: #fff;
    border-bottom-left-radius: 60px;
    transition: 0.4s ease;
    padding: 100px 63px 80px;
    box-shadow: -10px 10px 13px 0 rgba(0, 0, 0, 0.06);
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-nav-list {
    flex-direction: column;
  }

  .header-nav-list a {
    font-size: 24px;
    color: #253A56;
    line-height: 130%;
    letter-spacing: 1.88px;
  }

}

@media (max-width: 1090px) {

  #kv .kv-features-item {
    flex: 0 0 calc(50% - 6px);
  }

  .value-container {
    grid-template-columns: 1fr;
  }

}