/* ========== 共通リセット ========== */

html, body {
  min-height: 100%;   /* 高さは最低100%（必要に応じて伸びる） */
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Noto Sans JP",  sans-serif;

  font-weight: 400; /* Regularがデフォルト */
  color: #2B303C;
  background-color: #fff;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 40px;
  font-weight: 700; /* Bold */
}

h2 {
  font-size: 32px;
  font-weight: 600; /* SemiBold */
  letter-spacing: 0.1em;
}

p {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.main {
  max-width: 1120px;
  margin: 0 auto;
}



.main, .section {
  max-width: 1120px;
  width: min(1120px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.sp-br {
  display:none;
}

img, svg { display: block; max-width: 100%; height: auto; }



/* ヒーローアニメーション */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションを段階的に適用 */
.hero-left > * {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out forwards;
  will-change: opacity, transform;
}

.hero-logo {
  animation-delay: 0.1s;
}

.hero-image {
  opacity: 0;
  transform: translateY(10px);
  animation: heroContainerFadeIn 1.2s ease-out 0.1s forwards;
}

.hero-image img {
  opacity: 0;
  transform: scale(1.08);
  animation: heroZoomFadeIn 1.4s ease-out 0.3s forwards;
}

/* コンテナがふわっと */
@keyframes heroContainerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 画像がズームアウト＋フェード */
@keyframes heroZoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}





#sp-header {
  display: none; /* スマホでは非表示 */
}

#header {
  width: 100%;
  position: fixed;     /* ← これが固定のポイント */
  top: 0;               /* 上から0pxの位置に固定 */
  left: 0;
  background-color: #ffffff;
  height: 72px;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 2px 56px rgba(31, 38, 50, 50%); /* 下に影をつける */
  z-index: 9999;
}

.logo {
  width: 140px;
  height: 48px;
}

.main-nav ul {
  font-size: clamp(15px, 1vw, 18px);
  margin-left: clamp(16px, 2vw, 40px);
  display: flex;
  align-items:center ;
  margin-left: 48px;
  padding: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.main-nav li {
  position: relative;
  padding-right: 12px; /* 右に12pxのパディングを追加 */
}

.main-nav li:last-child {
  padding-right: 0; /* 最後のliはパディングなし */
}

/* 2番目以降のliだけ左に22pxパディング */
.main-nav li:not(:first-child) {
  padding-left: 12px;
}


/* パディングの右側に罫線を追加（最後のliは除外） */
.main-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #DBDBDB; /* 線の色はお好みで */
}

/* CTAボタン右寄せ */
.header-cta {
  margin-left: auto;
  display: flex;
}

.btn-header {
  display: flex;
  height: 48px;
  justify-content: center;
  font-weight: 700;
  align-items: center;
  border-radius: 4px;  
  letter-spacing: 0.05em;
  font-size: clamp(15px, 1.2vw, 16px);
  padding-top: clamp(2px, 0.29vw, 4px);
  padding-bottom: clamp(2px, 0.29vw, 4px);
  width: clamp(220px, 1vw, 400px); /* 1440pxで200px */
}

.btn-info {
  background-color: #FFFFFF;
  border: 2px solid #1192CD;;
  color: #1192CD;
}

.btn-contact {
  background-color: #1192CD;
  color: #FFFFFF;
  border: 2px solid #1192CD;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500; /* SemiBold的な見た目にしたいなら */
}



/* メインビジュアル */
.hero-btn.hero-btn--sp {
  display: none;
}

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-left: 4%;
  padding-right: 4%;
  background-image: url(../img/abstract.png);
  background-size: cover;
  transition: height 0.3s ease;
  /* JSで height を上書きするため、ここでは height 指定なし or 初期値でOK */
}



.hero-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: url(../img/hero_left-background.png) no-repeat center;
  background-size: cover;
  z-index: 1; /* 背景 */
   background-size: 100% 100%;
  pointer-events: none; /* 背景なのでクリック無効に */
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: 1766px;
  margin: 0 auto;
  z-index: 2; /* 背景より前に出す */
}

.hero-inner {
  margin: 140px 0 64px 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  z-index: 2; /* ← ここが重要！ 背景より前に出す */
}


.hero-text {
  width: 100%;
  color: white;
  padding: 60px 40px;
}

.hero-left {
  width: 60%;
  color: white;
  display: flex;
  flex-direction: column;

}

.hero-logo img{
  width: 72%;
}

.hero-message {
  font-weight: bold;
  line-height: 0.9;
  margin: 28px 0 0 0;
  letter-spacing: 0.08em;
}

.hero-message .small {
  font-weight: medium;
  font-size: clamp(20px, 2.8vw, 58px);
  margin-right: -0.3em;
}

.hero-message .large {
  font-weight: medium;
  font-size: clamp(26px, 3.3vw, 69px);
  margin-right:-0.15em;
}

.hero-message .main {
  font-size: clamp(28px, 3.9vw,80px);
  display: block;
  margin-top: 0.3em;
  letter-spacing: 0.08em;
}


.hero-badge img {
  width: clamp(100px, 13.2vw, 288px);
  height: auto;
  margin-top: clamp(16px, 2.22vw, 46px);
  
}

.hero-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: #f37d00;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(18px, 1.94vw, 52px);
  width: clamp(240px, 30.55vw, 690px);
  height: clamp(48px, 5vw, 138px);
  line-height: 1; /* 垂直中央のバランス取り用 */
  padding: 0 1em; /* 横パディングで文字が詰まらないように */
  border-radius: 4px;
  box-shadow: 0 10px 0px rgba(31, 38, 50, 0.4);
  mix-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  margin-top: clamp(16px, 1.94vw, 46px);
  
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.7s ease;
  pointer-events: none;
}

.hero-btn:hover::before {
  left: 130%;
}

.arrow-icon {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor; /* ボタンの文字色と同期する */
  flex-shrink: 0; /* 小さくなりすぎないように */
  margin-left: 0.4em;
}

.hero-right {
  margin-top:0px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}


.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2vw;
  max-width: 100%;
  flex-wrap: wrap; /* 狭い画面で折り返し */
  width: clamp(320px, 45.35vw, 1000px);

}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}

.features {

  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature {
  display: grid;
  place-items: center;
  width: clamp(80px, 8.05vw, 190px);
  height: clamp(80px, 8.05vw, 190px);
  text-align: center;
  border-radius: 50%;
  background-color: #24B3DD;
  padding: 0.2em;
}

/* 背景色ごとにクラスで切替 */
.feature--light {
  background-color: #29A8D5;
}
.feature--medium {
  background-color: #007BC3;
}
.feature--dark {
  background-color: #005BAC;
}

.feature-text {
  letter-spacing: 0.05em;
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.1em;
  margin: 0;
  padding: 0;
}

.feature-text .large {

  font-size: clamp(14px, 1.39vw, 28px);
  font-weight: bold;
  color: #fff; /* お好みで */
}

.feature-text .medium {
  margin-left: -0.3em;
  font-size: clamp(11px, 1vw, 20px); /* 1440px で約16px */
  font-weight: medium; /* SemiBold的な見た目にしたいなら */
  color: #fff;
}

.feature-text .small {
  font-size: clamp(11px, 0.94vw, 14px); /* 1440px で約14px */
  font-weight: 400;
  color: #fff;

  margin-left: -0.4em;
}


.features .feature:nth-child(2),
.features .feature:nth-child(3) {
  margin-top: clamp(12px, 1.39vw, 28px); /* 1440pxで約20px */
}

.feature-icon {
  width: clamp(24px, 2.8vw, 68px);
  height: clamp(24px, 2.8vw, 68px);
  display: block;
  height: clamp(20px,2.8vw, 56px);
  margin-bottom: clamp(-12px, -0.85vw, -6px);
  height: auto;
  display: block;
}



/* こんなお悩みありませんか？ */
.trouble {
  background-color: #ffffff; /* 背景色はお好みで */
  padding-top: 80px; /* 上の余白 */
  padding-bottom: 32px;
  position: relative; /* 吹き出しのために相対位置 */
  z-index: 1;
}

.trouble::after {
  content: "";
  position: absolute;
  bottom: -100px; /* 三角形の高さ */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 100px solid #fff; /* 三角形の色（白） */
}


.trouble-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #1C67AE;
  margin-bottom: 40px;
  text-align: center;
}

.trouble-heading h2 {
  font-size: 36px;
}

.slash {
  width:32px;
  flex-shrink: 0;
}


.trouble-list {
  max-width: 1120px;
  margin: 0 auto;
}

.trouble-row {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.trouble-row.center {
  justify-content: center;
}


.trouble-item {
  position: relative;
  width: calc((1120px - 40px) / 3); /* 20px × 2列の余白 */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(43, 48, 60, 0.16);
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}



.trouble-item-inner {
  display: flex;
  align-items: center;
}


.trouble-item-img {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

.trouble-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trouble-triangle {
  position: absolute;
  bottom: -24px; /* 三角が下にはみ出すように */
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 40px;
  height: 24px;
  pointer-events: none;
}

.trouble-triangle img {
  display: block;
  filter: drop-shadow(0 6px 4px rgba(43, 48, 60, 0.08));
}

.trouble-item-text {
  line-height: 1.5;;
  margin-left: 16px;
  color: #2B303C;
  flex: 1;
  font-weight: 500 ; /* Medium */
}

.trouble-item-text p {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;

}

.trouble-item:nth-child(4),
.trouble-item:nth-child(5) {
  margin-left: calc((1120px - 2 * ((1120px - 40px) / 3) - 20px) / 2);
}


/* 解決セクション */
.solution {
  position: relative;
  background-image: url(../img/solution-background.png);
  background-size: cover;
  margin-top: -40px; /* ← 前セクションに食い込ませる */
  padding: 200px 16px 100px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.solution-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.solution-label {
  background: #2AABE3;
  color: #fff;
  padding: 8px 80px;
  font-size: 20px;
  display: inline-block;
  border-radius:4px 4px 4px 4px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  box-shadow:  0 6px 12px rgba(43, 48, 60, 0.2);
}


.solution-heading {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;     /* 中央揃え */
  margin-bottom: 64px;
}

.solution-label::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 10px solid #2AABE3;
    z-index: -1;
}



.solution-title {
  font-size: 36px;
  font-weight: bold;
  color: #1c67ae;
  position: relative;
  display: inline-block; /* ←追加：幅を文字に合わせる */
  padding-bottom: 8px;    /* テキストと線の間隔 */
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/* 行ごとのテキスト */
.solution-title .under-line {
  position: relative;
  display: inline-block;
}

/* 擬似要素で背景下線を追加 */
.solution-title .under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: #E3F4FF;
  z-index: -1;
  border-radius: 2px;
}

.under-line1 {
  margin-right: -14px; /* 少しスペースを空ける */
}

.solution-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.solution-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  width: calc((1120px - 48px) / 3);
  max-width: 100%;
  text-align: left;
}

.solution-card h3 {
  margin-top: 8px;;
  font-size: 24px;
  color: #1c67ae;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.4;
}

.solution-card h3 span {
  font-size: 48px;
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  position: absolute;
  top: -72px; /* 少し上にずらす */
}

.solution-card ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card li {
  color: #2B303C;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.solution-card li span {
    padding-right: 8px;
     padding-left: 2px;
    position: relative;
    display: inline-block;
    color: #2B303C;
}

.solution-card li span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* テキストと線の間隔 */
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2); /* 白80%なら → rgba(255, 255, 255, 0.8) */
}


.solution-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00b7e2;
  font-weight: bold;
}

.repeat-card span {
  color: #46C6D8;
}

.marketing-card span {
  color: #1192CD;
}

.apli-card span {
  color: #1F7DC9;
}

.cta {
  background: url('../img/cta_background.png');
 /* あなたの背景画像に差し替え */
  background-size: cover;
  padding: 72px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-subtext {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}

.cta-title .cta-emphasis {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}




.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  font-size: 24px;
  justify-content: center;;
  width: 520px;
  padding: 20px 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 2px rgba(31, 38, 50, 0.4);
  transition: transform 0.2s ease;
  letter-spacing: 0.05em;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn--orange {
  background-color: #f37d00;
}


.cta-icon {
  margin-left: 12px;
  display: flex;
  justify-self: center;
}

.cta-subtext {
  margin-bottom: -12px;
  letter-spacing: 0.05em;;
}
.cta-subtext .small {
  margin-right: -0.07em;
  font-size:32px;
  font-weight: 500;
  
}

.cta-subtext .large {
  font-size:40px;
  font-weight: 500;
  margin-right: -0.1em;
}
  
.cta-title .medium {
  font-size: 40px;
  font-weight: 500;
  margin-right: -0.2em;
  letter-spacing: 0.05em;
}

.cta-title .large {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.cta-line {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.points {
  background: #ffffff;
  padding: 60px 0 40px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin: 0 auto;
}

.point-3box {
  display: block;
  width: 100%;
  max-width: 1120px;
  text-align: center;
  margin: 0 auto;
  overflow-x: visible;
}

.spacer {
  display: none;
}

.section-normal-title {
  font-size: 36px;
  font-weight: bold;
  color: #0072bc;
  margin-bottom: 40px;
}

.point-box {
  background: #fff;
  border-radius: 8px;
  max-width: 1120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
  position: relative;
  text-align: left;
}

.point-label {
  letter-spacing: 0.07em;
  font-size: 16px;
  background-color: #2AABE3;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 2px 20px;
  position: absolute;
  top: -33px;
  left: 0px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;   /* ← 右上 */
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; /* ← 左下 */
}

.point-content {
  width: 1120px;;
  height: 240px;;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.point-image img {
  height: 240px;
  width: auto;
  border-bottom-left-radius: 4px; /* ← 左下 */
}


.point-heading {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.point-text h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  display:inline-block;
  color: #2B303C;
}

.border-text {
  padding-right: 16px;;
  border-left: 5px solid #1192CD;
  height: 48px;
  border-radius: 1px;
  letter-spacing: 0.5em;
  
}

.point-text h3 span {
  color: 1192CD;
  font-weight: normal;
}

.point-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #2B303C;
}

.point-indicators {
  display: none;
}

.sample-case {
  padding: 80px 0;
  background-color: #F6F6F6;
  text-align: center;
  margin:  0 auto;

}

.fade-label {
  font-size: 64px;
  color: rgba(17, 146, 205, 0.2);
  font-weight: bold;
  margin-bottom: -52px;
  text-align: center;
}

.simple-section-title {
  font-size: 40px;
  color: #1C67AE;
  margin-bottom: 40px;
  text-align: center;
}

.sample-case-inner {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
  border-radius: 8px;


}

.sample-box {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Rectangle 125 */
  background: linear-gradient(
  90deg,
  #2688B4 0%,
  #2688B4 56%,
  rgba(38, 136, 180, 0) 75%,
  rgba(38, 136, 180, 0) 100%
);
  mix-blend-mode: normal;
  border-radius: 8px 8px 0 0;
  padding: 12px 32px;
  color: white;
  overflow: hidden;
}

.sample-shop-name {
  width: 100px;
  height: auto;
}

.sample-shop-name img {
  width: 100px;
  height: auto;

}

.sample-box-left {
  width: 25%;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

.sample-box-left strong {
  font-size: 24px;
}

.sample-box-center {
  margin-left: 40px;
  width: 100%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.sample-box-right {
  right: 0;
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 140px;
  background-image: url('../img/gokai-food_background.png');
  background-size: cover;
  background-position: center;
}


.sample-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  flex-wrap: wrap;
  background-color: #F2EAE2;
}

.sample-phone {
  width: 400px;
  height: auto;
}
.sample-box-center {
  text-align: left;
  display: flex;
  align-items: center;
  width: 100%;
}

.sample-description-text {
  background-color: #fff;
  padding: 32px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
   border-radius: 0 0 8px 8px;

}

.sample-heading {
  display: flex;
  align-items: center;
}

.sample-vertical-line {
  display:  inline-block;
  align-items: center;
  justify-content: center;;
  height: 56px;
  width: 2px;
  background-color: #ffffff;
  margin-right: 20px;
}

.sample-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}




/* 価格比較セクション */
.price-comparison {
  background-color: #ffffff;
  padding: 80px 0;
  max-width: 1120px;
  text-align: center;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  color: #004b94;
  margin-bottom: 40px;
}

.comparison-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.comparison-header {
  font-weight: bold;
  font-size: 16px;
  align-items: center;
  padding-top: 20px;
}

.company-info {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.teacher-icon {
  position: absolute;
  bottom: -2px;
  left: -48px;
  right: 0;
  width: 100px;
  height: auto;
}

.price-applis-logo {
  padding-right: 20px;
  width: 180px;
  height: auto;

}

.appli-s-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  ;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #00a0e6;
  height: 88px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.company-name {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D8E7EF;
  height: 64px;
  margin-top:  24px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;;

}

.company-name-a {
  background-color: #779bac;

}

.company-name-b {
  background-color: #6e879a;
  border-top-right-radius: 4px;
}

.comparison-row .label {
  color: #2B303C;;
  display: flex;;
  background: #eaf7ff;
  font-weight: 500;
  height: 116px;
  padding: 20px 12px;
  font-size: 16px;
  align-items: center;
  justify-content: center;;
  letter-spacing: 0.1em;
  
}

.table {
  border-collapse: collapse;
  width: 100%;
}


.label-bottom-radius {
  border-top-left-radius: 8px;

}

.comparison-row {
  border-bottom: 1px solid #e4e4e4;
}

.comparison-row .value {
  height: 116px;
  padding: 10px 12px;
  font-size: 14px;
  background-color: #f6f6f6;
}


.comparison-row .value small {
  font-size: 14px;
  display: block;
  font-weight: 700;;
  margin-top: -8px;
  color: #2B303C;
  line-height: 1.4em;
}

.comparison-row .value-dark {
  background-color: #eeeeee;

}

.flex-value {
  padding-top:12px;
}

.border-radius-3 {
  border-bottom-right-radius: 4px;
}

.good-circle {
  font-size:40px;
  font-weight:700;
  color:#02A9E2;
}


.circle {
  font-size: 28px;
  color: #00a0e6;
  font-weight: 400;
}

.cross {
  font-size:28px;
  color: #999;
  font-weight: 400;
}

.triangle {
  font-size: 28px;
  color: #e6a800;
  font-weight: 400;
}

 .comparison-row .highlight {
  background-color: #ffffff;

}

.scroll-indicator {
    display: none;
}

.price-note {
  width: 100%;
  margin-top: 32px;
  font-size: 16px;
  background: #fff8cc;
  padding: 16px 24px;
  border: 2px solid #ffe100;
  display: inline-block;
  border-radius: 8px;
  text-align: left;
}

.price-label {
  align-items: center;
  justify-content: center;
  width: 220px;
  display: flex;
  font-weight: bold;
  margin-bottom: 8px;
  background: #ffe100;
  padding: 4px 8px;
  border-radius: 4px;
}

.price-text {
  font-size: 16px;
  color:#2B303C;
}

.scroll-hint {
  display: none;
}


.industry-section {
  padding: 80px 20px;
  background-color: #F6F6F6;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background-color: #00a0e6;
  color: #fff;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #004b94;
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 8px;
  background-color: #d0efff;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.industry-card p {
  margin-top: 8px;
  font-size: 15px;
  color: #2B303C;
  font-weight: 500;
}

.flow-section {
  padding: 64px 20px 120px;
  background: #fff;
}

.flow-section .section-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.flow-section .section-title .en {
  font-size: 32px;
  color: #c6e7f7;
  font-weight: bold;
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step {
  width: 248px;
  height: 232px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 20px;
  position: relative;
}

.flow-image  {
  width: 100%;
  height: auto;
  padding-right: 10px;
}

.flow-icon {
  position: relative;
  margin-bottom: 4px;
  width: 220px;
  color: #2B303C;
}

.flow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -36px;
  left: 5%;
  transform: translateX(-50%);
  background-color: #2AABE3;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 40px;
  font-size: 20px;
  z-index: 1;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease;
}


.flow-step.line-active:not(:last-child)::after {
  width: 44px;
  height: 1px; /* ← ここが線の長さです。お好みで */
}
  
 .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    height: 2px;
    width: 0;
    background-color: #2AABE3;
    transition: width 0.4s ease;
    z-index: 0;
  }


.flow-text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #2B303C;
}

.faq-section {
  padding:  64px 0;
  background-color: #F6F6F6;
  display: flex;
  justify-content: center;
  ;
}

.faq-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.faq-icon {
  width: 40px;
  height: auto;
  margin-bottom: 8px;
}

.faq-title-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0072BC;
  text-align: center;
}



.faq-item {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  font-family: 'Roboto', sans-serif;
  display: flex;
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 1120px;
  justify-content: space-between;

}

.faq-question-left {
  display: flex;
  align-items: center;
}

.faq-question .plus {
  font-size: 1.4em;
  transition: transform 0.3s;
  color: #484a4b;
}

.faq-item.open .plus {
  transform: rotate(45deg); /* ＋ → × */
}

.faq-item.open .faq-answer {
  padding: 1rem 1rem; /* ← 開いたときに上下1rem追加 */
}

.faq-answer {
  display: inline-block;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;;
  display: block;
  margin-left: 80px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  width: 920px;
  padding: 0 1rem;
}


.question-number {
  margin-right: 16px;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #1C67AE;
  font-size: 24px;
  margin-top: 2px;

}.footer {
  background-color: #0044A4;/* おそらくこの青 */
  color: #fff;
  padding: 8px 20px 40px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 48px;
  font-weight: bold;
  font-family: 'YourLogoFont', sans-serif; /* ロゴ用の書体があれば指定 */
  margin-bottom: 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer-nav a::after {
  content: "/";
  margin-left: 16px;
  color: #fff;
}

.footer-nav a:last-child::after {
  content: ""; /* 最後の / を消す */
}

.footer-copy {
  font-size: 12px;
  color: #d6d6d6;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

.footer-copy {
  letter-spacing: 0.1em;
}

.question-text {
  font-weight: 700;
  color: #2B303C;
  font-size: 20px;
  line-height: 1.6;
}




@media screen and (max-height: 700px) and (min-width: 1200px) {
  .hero-message {
    margin:16px 0 0 0;
  }

  .hero-badge img {
    margin-top: 12px;
    width: 32%;
  }

  .hero-inner {
    margin: 100px 0 56px 0;
  }
}

@media screen and (min-width: 1800px) {
  .footer {
    background-color: #1165B3;

  }
}

@media screen and (min-width: 1480px) {
  .footer {
    background-color: #0146A6;

  }
}

@media screen and (min-width: 1520px) {
  .footer {
    background-color: #034BA8;

  }
}

@media screen and (min-width: 1620px) {
  .footer {
    background-color: #0957AF;
  }
}

@media screen and (min-width: 1700px) {
  .footer {
    background-color:#0D5CAF;
  }
}


@media screen and (min-width: 1024px) and (max-width: 1120px) {
  .faq-question {
    width: 100%;
    padding:20px 20px;
  }

  
  .faq-question {
    font-size: 16px;
    text-align: left;
    padding: 16px 20px;
  }

    .faq-question,
  .faq-answer {
    width: 100%;              /* 固定幅解除 */
    margin-left: 0;           /* 左マージン解除 */    /* 左右に16pxパディング */
    box-sizing: border-box;
  }

  .faq-item.open .faq-answer {
    padding: 1rem 16px;
  }

  .faq-section .container {
    padding: 0 20px;
    
  }

  .faq-title-heading {
    font-size: 30px;
  }

  .faq-icon {
    width: 32px;
    height: auto;
  }

  .flow-step {
    width: 22%;
    height: 232px;

  }
  .flow-icon {
    width: 100%;
  }

  .flow-image {
    padding-right: 0;
  }

  .trouble-inner {
    padding: 0 16px;
  }

  .solution-card {
    width: calc((980px - 48px) / 3);
  }

  .sample-case {
    padding: 64px 16px;
  }

  .price-comparison  {
    padding: 80px 16px;
  }

}




