@charset "UTF-8";
/* デフォルト */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* デフォルトのフォントと文字カラー設定 */
body {
  font-family: "Montserrat", "Roboto", "Noto Sans JP", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  font-size: 16px;
}

img {
  width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  color: #333;
}

h3 {
  color: #1a1a1a; /* デフォルトの見出し色に変更 */
  margin-bottom: 0.75rem; /* 見出し下の余白を調整 */
  margin-top: 0 !important;
  font-size: 1.15rem !important; /* フォントサイズを少し小さく */
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.7;
}
p.btn-sub {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:540px) {
  p.btn-sub {
    font-size: 1rem;
  }
}
p.micro {
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem; /* 下の余白を少し広げてバランス調整 */
  color: #01a59c; /* メインカラーのディープブルーに変更 */
  font-size: 2.2rem;
  line-height: 1.4;
  position: relative; /* ::after疑似要素の基準点 */
  padding-bottom: 1rem; /* ラインとの間に余白を確保 */
  margin: 0;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .section-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:540px) {
  .section-title {
    margin-bottom: 2rem;
    font-size: 1.35rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* ラインの長さを短めに設定 */
  height: 4px; /* ラインの太さ */
  background: #d9faf8; /* アクセントカラーのオレンジ */
  border-radius: 2px;
}

header.top .sp-menu .open-menu__click p {
  margin: 0;
}

a.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
  width: 100%;
  background: #edc000;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.2705882353);
}
@media screen and (max-width:768px) {
  a.btn-primary {
    max-width: 300px;
    display: block;
    margin: 0 auto;
  }
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.hero-section {
  padding: 200px 0 140px;
  background: linear-gradient(135deg, #2886dc, #37c9c7);
  color: white;
  display: flex;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .hero-section {
    padding: 155px 0 57px;
  }
}
@media screen and (max-width:768px) {
  .hero-section {
    padding: 100px 0 40px;
  }
}
@media screen and (max-width:540px) {
  .hero-section {
    padding-top: 60px;
  }
}
.hero-section .container {
  max-width: 1300px;
  width: 90%;
  padding-left: 0;
}
@media screen and (max-width:540px) {
  .hero-section .container {
    padding-right: 0px;
  }
}
.hero-section .hero-grid {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width:768px) {
  .hero-section .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 10px; /* 要素間の余白を少し詰める */
  }
}
.hero-section .hero-grid .hero-content h1.hero-title {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  margin-top: 0;
}
@media screen and (max-width:1728px) {
  .hero-section .hero-grid .hero-content h1.hero-title {
    font-size: 3rem;
  }
}
@media screen and (max-width:1024px) {
  .hero-section .hero-grid .hero-content h1.hero-title {
    font-size: 2rem;
  }
}
@media screen and (max-width:768px) {
  .hero-section .hero-grid .hero-content h1.hero-title {
    order: 1;
    font-size: 2.4rem; /* 少し大きく */
    line-height: 1.3;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width:540px) {
  .hero-section .hero-grid .hero-content h1.hero-title {
    font-size: 2rem;
    margin-bottom: 0rem;
  }
}
.hero-section .hero-grid .hero-content p {
  color: white;
}
.hero-section .hero-grid .hero-content p.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width:1024px) {
  .hero-section .hero-grid .hero-content p.hero-subtitle {
    font-size: 0.8rem;
  }
}
@media screen and (max-width:768px) {
  .hero-section .hero-grid .hero-content p.hero-subtitle {
    order: 3;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
  }
}
.hero-section .hero-grid .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width:768px) {
  .hero-section .hero-grid .hero-content .hero-actions {
    order: 4;
    align-items: center;
    margin: 0px auto;
  }
}
@media screen and (max-width:540px) {
  .hero-section .hero-grid .hero-content .hero-actions {
    margin: 30px auto;
    gap: 5px;
  }
}
.hero-section .hero-grid .hero-content .hero-actions a.btn-primary {
  width: 100%;
}
.hero-section .hero-grid .hero-visual {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
@media screen and (max-width:1728px) {
  .hero-section .hero-grid .hero-visual {
    width: 60%;
    right: 0px;
  }
}
@media screen and (max-width:1024px) {
  .hero-section .hero-grid .hero-visual {
    width: 65%;
    top: 40%;
    right: -30px;
  }
}
@media screen and (max-width:768px) {
  .hero-section .hero-grid .hero-visual {
    display: none;
  }
}
.hero-section .hero-grid .hero-visual img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.hero-section .tb img {
  width: 500px;
  margin: 0px auto 0;
}
@media screen and (max-width:540px) {
  .hero-section .tb img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1110px) {
  header.top .pc-menu {
    flex-wrap: wrap;
    gap: 15px;
  }
  header.top .pc-menu__nav nav ul li a {
    margin: 6px;
  }
  header.top .pc-menu__nav nav ul {
    flex-wrap: wrap;
    padding: 7px;
  }
}
@media screen and (min-width:1024px) {
  .nb {
    display: block !important;
  }
}
@media screen and (max-width:768px) {
  .nb {
    display: none;
  }
}

.hero-content {
  width: 40%;
}
@media screen and (max-width:768px) {
  .hero-content {
    width: 100%;
  }
}

/* ===========================================
   問題提起セクション
   =========================================== */
.problems-section {
  padding: 80px 0;
  background: #f7ffff;
}
@media screen and (max-width:540px) {
  .problems-section {
    padding: 60px 0;
  }
}
.problems-section .problems-grid {
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .problems-section .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.problems-section .problems-grid .problem-card {
  background: #fff;
  width: 49%;
  padding: 24px; /* 内側の余白を少し狭く */
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #d9faf8; /* メインカラー: ディープブルー */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex; /* Flexboxを使用して高さを揃える */
  justify-content: flex-start;
  gap: 20px;
}
.problems-section .problems-grid .problem-card:hover {
  transform: translateY(-5px);
}
@media screen and (max-width:1024px) {
  .problems-section .problems-grid .problem-card {
    width: 48%;
    padding: 20px;
  }
}
@media screen and (max-width:540px) {
  .problems-section .problems-grid .problem-card {
    width: 100%;
  }
}
.problems-section .problems-grid .problem-card .problem-icon {
  display: block;
  color: #01a59c;
  width: 300px;
}
.problems-section .problems-grid .problem-card .problem-icon img {
  display: block;
  width: 100%;
}
.problems-section .problems-grid .problem-card h3 {
  color: #1a1a1a; /* デフォルトの見出し色に変更 */
  margin-bottom: 0.75rem; /* 見出し下の余白を調整 */
  font-size: 1.15rem; /* フォントサイズを少し小さく */
  text-align: left;
}
@media screen and (max-width:768px) {
  .problems-section .problems-grid .problem-card h3 {
    font-size: 1.05rem;
  }
}
.problems-section .problems-grid .problem-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem; /* フォントサイズを少し小さく */
  flex-grow: 1; /* テキストエリアを伸ばして高さを揃える */
  text-align: left;
  margin-bottom: 0;
}
.problems-section .empathy-message {
  text-align: center;
  background: #E8F3FD; /* 淡いブルーの背景 */
  padding: 24px 30px;
  border-radius: 12px;
  border: 1px solid #87B9EA; /* 少し濃いブルーの枠線 */
  margin-top: 3rem; /* 上の余白を調整 */
  display: flex; /* Flexboxでアイコンとテキストを横並び */
  align-items: center;
  justify-content: center;
  gap: 12px; /* アイコンとテキストの間隔 */
  position: relative;
}
.problems-section .empathy-message::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: url(../img/ng-man.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 10%;
}
@media screen and (max-width:1024px) {
  .problems-section .empathy-message::before {
    left: 2%;
  }
}
@media screen and (max-width:540px) {
  .problems-section .empathy-message::before {
    width: 100px;
    height: 129px;
    left: 0%;
    top: 75px;
  }
}
.problems-section .empathy-message .empathy-icon {
  color: #01a59c; /* メインカラーのディープブルー */
  flex-shrink: 0; /* アイコンが縮まないように */
}
.problems-section .empathy-message p {
  font-size: 1.1rem;
  color: #4f91d1; /* メインカラーのディープブルー */
  margin: 0;
  line-height: 1.75;
  font-weight: 600; /* 少し太字に */
}
.problems-section .empathy-message p span {
  font-size: 1.5rem;
}
@media screen and (max-width:540px) {
  .problems-section .empathy-message p span {
    font-size: 1.15rem;
  }
}
@media screen and (max-width:540px) {
  .problems-section .empathy-message p {
    line-height: 1.5;
  }
}

/* ===========================================
   ソリューションセクション
   =========================================== */
.solution-section {
  padding: 80px 0;
  background: white;
}
@media screen and (max-width:540px) {
  .solution-section {
    padding: 60px 0;
  }
}
.solution-section .solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  /* PC版でcontent→visualの順にするため */
}
@media screen and (max-width:540px) {
  .solution-section .solution-grid {
    display: block;
  }
}
.solution-section .solution-grid .solution-visual {
  order: 2;
}
@media screen and (max-width:768px) {
  .solution-section .solution-grid .solution-visual {
    margin-bottom: 30px;
  }
}
.solution-section .solution-grid .solution-visual .flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 2rem;
  border: 3px dashed #CBD5E1;
  border-radius: 20px;
  padding: 30px 20px;
}
@media screen and (max-width:768px) {
  .solution-section .solution-grid .solution-visual .flow-diagram {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.solution-section .solution-grid .solution-visual .flow-diagram img {
  width: 100%;
  display: block;
}
.solution-section .solution-grid .solution-content {
  order: 1;
  /* h3のスタイルを調整 */
}
.solution-section .solution-grid .solution-content h3 {
  color: #1a1a1a; /* デフォルトの見出し色に変更 */
  font-size: 1.5rem; /* h2より一回り小さく */
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media screen and (max-width:540px) {
  .solution-section .solution-grid .solution-content h3 {
    margin-top: 50px;
    font-size: 1.2rem;
    text-align: center;
  }
}
.solution-section .solution-grid .solution-content ul.solution-features {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* カード間の余白 */
}
@media screen and (max-width:540px) {
  .solution-section .solution-grid .solution-content ul.solution-features {
    margin-top: 0;
  }
}
.solution-section .solution-grid .solution-content ul.solution-features svg {
  color: #01a59c; /* メインカラー: ディープブルー */
  flex-shrink: 0; /* アイコンが縮まないようにする */
  margin-top: 5px; /* テキストとの垂直位置を微調整 */
}
.solution-section .solution-grid .solution-content ul.solution-features li {
  display: flex;
  align-items: center; /* 中央揃え */
  gap: 16px;
  background-color: #f7f7f7; /* 薄いグレーの背景 */
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.solution-section .solution-grid .solution-content ul.solution-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-color: #D1D5DB;
}
.solution-section .solution-grid .solution-content ul.solution-features li .feature-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #01a59c; /* メインカラー */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-section .solution-grid .solution-content ul.solution-features li .feature-text {
  color: #1f2937;
  font-weight: 600; /* 少し太く */
  font-size: 1.05rem;
  line-height: 1.6;
}
.solution-section .unique-approach {
  background: #ffffff; /* 薄いクリーム色 */
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #eec413; /* 少し濃いクリーム色 */
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width:768px) {
  .solution-section .unique-approach {
    display: block;
  }
}
.solution-section .unique-approach::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 230px;
  background: url(../img/lconva-man.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 10%;
}
@media screen and (max-width:1024px) {
  .solution-section .unique-approach::before {
    right: 2%;
  }
}
@media screen and (max-width:540px) {
  .solution-section .unique-approach::before {
    width: 110px;
    height: 108px;
    top: 211px;
    right: 0px;
  }
}
.solution-section .unique-approach .highlight-text {
  color: #0243a7; /* さらに濃いオレンジ */
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem; /* 少し大きく */
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width:768px) {
  .solution-section .unique-approach .highlight-text {
    text-align: center;
  }
}
.solution-section .unique-approach img.logo {
  width: 200px;
  display: block;
}
@media screen and (max-width:768px) {
  .solution-section .unique-approach img.logo {
    margin: 20px auto 0;
  }
}
@media screen and (max-width:540px) {
  .solution-section .unique-approach img.logo {
    margin-top: 10px;
  }
}

/* ===========================================
   ベネフィットセクション
   =========================================== */
.benefits-section {
  padding: 80px 0;
  background: #ebfffe; /* サブカラー: ペールグレー */
}
@media screen and (max-width:540px) {
  .benefits-section {
    padding: 60px 0;
  }
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
@media screen and (max-width:320px) {
  .benefits-section .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
.benefits-section .benefits-grid .benefit-card {
  background: white;
  padding: 24px; /* パディングを縮小 */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex; /* Flexboxを適用 */
  flex-direction: column; /* 縦方向に配置 */
}
.benefits-section .benefits-grid .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffffff; /* アクセントカラー: オレンジ */
}
.benefits-section .benefits-grid .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.benefits-section .benefits-grid .benefit-card .benefit-icon {
  width: 100%;
  height: 100px;
  font-size: 2.8rem; /* アイコンサイズを縮小 */
  margin-bottom: 1rem; /* アイコン下の余白を縮小 */
  display: block;
  color: #01a59c;
}
.benefits-section .benefits-grid .benefit-card .benefit-icon img {
  width: 100%;
}
.benefits-section .benefits-grid .benefit-card h3 {
  color: #1a1a1a; /* デフォルトの見出し色に変更 */
  margin-bottom: 0.75rem; /* 見出し下の余白を縮小 */
  font-size: 1.4rem;
}
@media screen and (max-width:540px) {
  .benefits-section .benefits-grid .benefit-card h3 {
    font-size: 1.2rem;
  }
}
.benefits-section .benefits-grid .benefit-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.25rem; /* テキスト下の余白を縮小 */
  flex-grow: 1; /* この要素が伸びて高さを揃える */
}
.benefits-section .benefits-grid .benefit-card .benefit-tech {
  background: #e1f8f7; /* 薄いオレンジ色 */
  color: #137adf; /* 濃いオレンジ色 */
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  align-self: center; /* Flexアイテムとして中央に配置 */
}
@media screen and (max-width:540px) {
  .benefits-section .benefits-grid .benefit-card .benefit-tech {
    font-size: 0.8rem;
  }
}

/* ===========================================
   価格セクション (新デザイン・装飾強化版)
   =========================================== */
.pricing-simple-section {
  padding: 80px 0;
  background: #f7ffff;
}
@media screen and (max-width:540px) {
  .pricing-simple-section {
    padding: 40px 0 60px;
  }
}
.pricing-simple-section .pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch; /* カードの高さを揃える */
}
@media screen and (max-width:768px) {
  .pricing-simple-section .pricing-container {
    grid-template-columns: auto;
    gap: 24px;
  }
}
.pricing-simple-section .pricing-container .pricing-plan {
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden; /* ヘッダーのはみ出し防止 */
}
@media screen and (max-width:768px) {
  .pricing-simple-section .pricing-container .pricing-plan {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width:540px) {
  .pricing-simple-section .pricing-container .pricing-plan {
    width: 95%;
  }
}
.pricing-simple-section .pricing-container .pricing-plan .plan-header {
  background: #EBF4FF; /* 薄いブルーの背景 */
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #D1E7FF;
}
.pricing-simple-section .pricing-container .pricing-plan .plan-header .plan-name {
  color: #1a1a1a; /* h2と差別化するため、デフォルトの見出し色に */
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-simple-section .pricing-container .pricing-plan .plan-header .plan-description {
  color: #1C3D8A;
  font-size: 0.9rem;
  margin-bottom: 0; /* ヘッダー内の最後の要素なので、下のマージンを削除 */
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* このエリアを伸ばす */
  /* プランの主要スペック（通数）をスタイリッシュに見せる */
}
@media screen and (max-width:540px) {
  .pricing-simple-section .pricing-container .pricing-plan .plan-body {
    padding: 20px;
  }
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-price-wrapper {
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 1.5rem; /* 下の余白を少し調整 */
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-price-wrapper .plan-price {
  font-size: 3rem; /* サイズを少し大きくしてインパクトを強調 */
  font-weight: 700;
  color: #1A358C; /* CTAと明確に差別化するため、より深みのあるダークネイビーに変更 */
  background: none; /* 背景のボックスを削除 */
  padding: 0; /* パディングを削除 */
  border: none; /* ボーダーを削除 */
  display: inline-flex;
  align-items: baseline;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (max-width:540px) {
  .pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-price-wrapper .plan-price {
    font-size: 2rem;
  }
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-price-wrapper .plan-price span.price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #555; /* 色を落ち着かせて価格を際立たせる */
  opacity: 1; /* opacityをリセット */
  margin-left: 8px;
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body ul.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1; /* この要素を伸ばしてボタンを最下部に */
  display: flex; /* 中央揃えのためにFlexboxを適用 */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body ul.plan-features li {
  display: inline-flex; /* アイコンとテキストを横並びにする */
  align-items: center;
  gap: 8px; /* アイコンとテキストの間隔 */
  background-color: #F5F6FA; /* サブカラーのペールグレー */
  color: #374151; /* 落ち着いたテキスト色 */
  padding: 10px 20px; /* 内側の余白 */
  border-radius: 50px; /* ピル型（錠剤型）の角丸 */
  font-weight: 600; /* 少し太字に */
  font-size: 0.95rem;
  border: 1px solid #e5e7eb; /* 細い枠線 */
  /* アイコンをli要素の疑似要素として追加 */
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body ul.plan-features li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%231E40AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"/><polygon points="22 2 15 22 11 13 2 9 22 2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-cta {
  margin-top: auto; /* ボタンをカードの最下部に配置 */
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-cta .btn-secondary {
  width: 100%;
  border-color: #01a59c;
}
.pricing-simple-section .pricing-container .pricing-plan .plan-body .plan-cta .btn-primary {
  width: 100%;
}
.pricing-simple-section .pricing-container .pricing-plan.featured {
  border-color: #01a59c;
  transform: scale(1.05);
  box-shadow: 0 12px 15px rgba(56, 22, 249, 0.05);
  position: relative;
}
@media screen and (max-width:768px) {
  .pricing-simple-section .pricing-container .pricing-plan.featured {
    transform: scale(1);
  }
}
.pricing-simple-section .pricing-container .pricing-plan.featured .popular-badge {
  position: absolute;
  top: 10px;
  right: -30px;
  background: #01a59c;
  color: white;
  padding: 8px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 10;
}
.pricing-simple-section .pricing-container .pricing-plan.featured .plan-header {
  background: #01a59c;
  border-bottom: 1px solid #01a59c;
}
.pricing-simple-section .pricing-container .pricing-plan.featured .plan-header .plan-name {
  color: white;
}
.pricing-simple-section .pricing-container .pricing-plan.featured .plan-header .plan-description {
  color: white;
}
.pricing-simple-section .new-pricing-container {
  background: white;
  padding: 50px 20px;
  border-radius: 20px;
}
.pricing-simple-section .new-pricing-container .new-pricing-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:320px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing {
  background: #01a59c;
  border-radius: 100%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing {
    width: 110px;
    height: 110px;
  }
}
@media screen and (max-width:320px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing {
    width: 90px;
    height: 90px;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing::before {
  position: absolute;
  content: "＼5社限定／";
  color: #01a59c;
  font-weight: bold;
  top: -20px;
  left: -30px;
  font-size: 1.35rem;
  transform: rotate(-20deg);
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing::before {
    font-size: 1rem;
    left: -20px;
  }
}
@media screen and (max-width:320px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing::before {
    font-size: 0.8rem;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p {
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0;
}
@media screen and (max-width:320px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p {
    font-size: 0.7rem;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span {
  font-size: 2rem;
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span.big {
  font-size: 3rem;
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span {
    font-size: 1.5rem;
  }
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span.big {
    font-size: 2rem;
  }
}
@media screen and (max-width:320px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span {
    font-size: 0.7rem;
  }
  .pricing-simple-section .new-pricing-container .new-pricing-flex .start-pricing p span.big {
    font-size: 1.5rem;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .plus {
  width: 100px;
  height: 100px;
  color: #01a59c;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .plus {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee {
  border: 2px solid #01a59c;
  border-radius: 10px;
  padding: 10px 20px;
}
@media screen and (max-width:768px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee {
    padding: 20px;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p {
  color: #01a59c;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:768px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p {
    text-align: center;
  }
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p {
    font-size: 1rem;
  }
  .pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p span.big {
    font-size: 1.5rem;
  }
}
.pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p.pc {
  display: block;
}
@media screen and (max-width:768px) {
  .pricing-simple-section .new-pricing-container .new-pricing-flex .basic-fee p.pc {
    display: none;
  }
}
.pricing-simple-section .new-pricing-container ul.new-rule {
  padding: 50px 0 35px;
  background-color: #f7ffff;
  max-width: 700px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
}
@media screen and (max-width:540px) {
  .pricing-simple-section .new-pricing-container ul.new-rule {
    flex-wrap: wrap;
    padding: 50px 10px 35px;
  }
}
.pricing-simple-section .new-pricing-container ul.new-rule::before {
  position: absolute;
  content: "下記制約は一切なし！";
  background: #01a59c;
  border-radius: 100px;
  padding: 7px 20px;
  color: white;
  font-weight: bold;
  top: -20px;
}
.pricing-simple-section .new-pricing-container ul.new-rule::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 16px solid #01a59c;
  border-bottom: 0;
  top: 15px;
}
.pricing-simple-section .new-pricing-container ul.new-rule li {
  list-style: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.15rem;
  text-align: center;
  background: white;
}
.pricing-simple-section .new-pricing-container p {
  margin-top: 10px;
}
.pricing-simple-section .pricing-notes {
  text-align: center;
  margin-top: 3rem;
}
.pricing-simple-section .pricing-notes .note-text {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.pricing-simple-section .pricing-notes .campaign-info-box {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.pricing-simple-section .pricing-notes .campaign-info-box img {
  width: 100%;
  display: block;
}
.pricing-simple-section .pricing-notes a {
  display: inline;
  padding: 0;
}

/* ===========================================
   導入ステップセクション
   =========================================== */
.steps-section {
  padding: 80px 0;
  background: white;
}
@media screen and (max-width:540px) {
  .steps-section {
    padding: 60px 0;
  }
}
.steps-section .steps-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* 指摘に基づき、余白を元に戻す */
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
@media screen and (max-width:768px) {
  .steps-section .steps-flow {
    flex-direction: column;
  }
}
.steps-section .steps-flow .step-item {
  background: white;
  padding: 24px; /* 横幅が大きすぎるとの指摘を受け、パディングを縮小 */
  border-radius: 16px;
  text-align: center;
  min-width: 200px; /* パディング縮小と合わせて、最小幅も調整 */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 225px; /* 最小高さを設定して高さを揃える */
}
@media screen and (max-width:540px) {
  .steps-section .steps-flow .step-item {
    min-width: auto;
    width: 100%;
  }
}
.steps-section .steps-flow .step-item:hover {
  transform: translateY(-5px);
}
.steps-section .steps-flow .step-item .step-number {
  width: 60px;
  height: 60px;
  background: #01a59c; /* アクセントカラー: オレンジ */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}
.steps-section .steps-flow .step-item h3 {
  color: #1a1a1a; /* デフォルトの見出し色に変更 */
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.steps-section .steps-flow .step-item p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
  flex-grow: 1; /* テキストエリアを伸ばして高さを揃える */
  display: flex;
  align-items: center; /* テキストを中央に配置 */
}
.steps-section .steps-flow .step-arrow {
  font-size: 2.5rem;
  color: #01a59c;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .steps-section .steps-flow .step-arrow {
    transform: rotate(90deg);
  }
}
.steps-section .steps-note {
  max-width: 600px; /* 横幅が広すぎるとの指摘を受け、最大幅を設定 */
  margin: 3rem auto 0; /* 上の余白を確保し、中央に配置 */
  text-align: center;
  background: #f7ffff; /* トンマナに合わせ、共感メッセージと同じ淡いブルーに変更 */
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #78CDC9; /* ブルー系の枠線に変更 */
  position: relative;
}
.steps-section .steps-note::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 180px;
  background: url(../img/gatsu-man.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width:540px) {
  .steps-section .steps-note::before {
    width: 100px;
    top: 65%;
    left: 10px;
    height: 115px;
  }
}
.steps-section .steps-note p {
  color: #01a59c; /* メインカラーのディープブルーに変更 */
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
  font-weight: 600; /* 少し太字にして視認性を向上 */
}
@media screen and (max-width:540px) {
  .steps-section .steps-note p {
    text-align: left;
    font-size: 1rem;
    padding-left: 90px;
  }
}

/* ===========================================
   社会的証明セクション
   =========================================== */
.social-proof-section {
  padding: 80px 0;
  background: #f7ffff; /* サブカラー: ペールグレー */
}
@media screen and (max-width:540px) {
  .social-proof-section {
    padding: 60px 0;
  }
}
.social-proof-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 4rem;
  /* お客様の声カードをモダンで洗練されたデザインに刷新 */
}
@media screen and (max-width:768px) {
  .social-proof-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.social-proof-section .testimonials-grid .testimonial-card {
  background: white;
  padding: 65px 40px 40px 40px; /* 左パディングを増やしてアイコン用のスペースを確保 */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07); /* 影を少し調整 */
  position: relative; /* 引用符アイコンの基準点 */
  transition: all 0.3s ease;
  display: flex; /* Flexboxでコンテンツを配置 */
  flex-direction: column; /* 縦方向に配置 */
  /* 引用符アイコンを左の専用スペースに配置 */
}
.social-proof-section .testimonials-grid .testimonial-card:hover {
  transform: translateY(-5px); /* ホバー時に少し浮き上がる */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); /* 影を濃くする */
}
.social-proof-section .testimonials-grid .testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px; /* 位置を微調整 */
  left: 20px; /* 左の余白エリア内に配置 */
  font-size: 6rem; /* アイコンのサイズ */
  color: #ebfafa; /* 主張しすぎない薄いブルー */
  font-weight: 800;
  line-height: 1;
  z-index: 0; /* z-indexは不要になったが念のため残す */
  height: 40px;
}
.social-proof-section .testimonials-grid .testimonial-card .testimonial-header img {
  width: 100%;
  margin-bottom: 20px;
}
.social-proof-section .testimonials-grid .testimonial-card .testimonial-header h3.testimonial-title {
  color: #01a59c;
  font-size: 1.2rem; /* サイズを調整 */
  font-weight: 600; /* 太字にして強調 */
}
.social-proof-section .testimonials-grid .testimonial-card .testimonial-header .client-info {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px; /* 余白を削除 */
  margin-top: 10px;
  font-weight: 500;
}
.social-proof-section .testimonials-grid .testimonial-card blockquote {
  font-style: normal; /* 指摘に基づきイタリックを解除 */
  color: #374151;
  line-height: 1.8; /* 行間を広げて読みやすく */
  padding: 0;
  border: none;
  position: relative; /* アイコンの上にテキストが来るように */
  z-index: 1;
}
.social-proof-section .campaign-banner {
  max-width: 700px;
  margin: 3rem auto 0; /* 上の余白を確保し、中央に配置 */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.social-proof-section .campaign-banner img {
  width: 100%;
  display: block;
}

/* ===========================================
   価格・オファーセクション
   =========================================== */
.pricing-section {
  padding: 80px 0;
  background: white;
}
@media screen and (max-width:540px) {
  .pricing-section {
    padding: 60px 0;
  }
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width:768px) {
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.pricing-section .pricing-grid .pricing-info h3 {
  color: #01a59c;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width:540px) {
  .pricing-section .pricing-grid .pricing-info h3 {
    font-size: 1.2rem;
  }
}
.pricing-section .pricing-grid .pricing-info p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media screen and (max-width:540px) {
  .pricing-section .pricing-grid .pricing-info p {
    margin-bottom: 0;
  }
}
@media screen and (max-width:768px) {
  .pricing-section .pricing-grid .offers-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-section .pricing-grid .offers-grid p.btn-sub {
  color: #eabd00;
  margin-bottom: 12px;
}
.pricing-section .pricing-grid .offers-grid p.micro {
  margin-top: 12px;
}
.pricing-section .pricing-grid .offers-grid .offer-main {
  background: #F5F6FA;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pricing-section .pricing-grid .offers-grid .offer-main .offer-header {
  font-size: 1.1rem;
  color: #01a59c;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 2rem;
}
.pricing-section .pricing-grid .offers-grid .offer-main .offer-header .offer-icon {
  font-size: 1.5rem;
}
.pricing-section .pricing-grid .offers-grid .offer-main .offer-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}
.pricing-section .pricing-grid .offers-grid .offer-main .offer-btn-secondary {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: auto;
}
.pricing-section .pricing-grid .offers-grid .offer-main .offer-btn-secondary:hover {
  background: #e5e7eb;
  color: #374151;
}
.pricing-section .pricing-grid .offers-grid .offer-main.featured {
  border-color: #eec413;
  background: white;
}
.pricing-section .pricing-grid .offers-grid .offer-main.featured h3 {
  color: #01a59c;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-section .pricing-grid .offers-grid .offer-main.featured .offer-btn-primary {
  background: #eec413;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  max-width: 350px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin: auto;
}
.pricing-section .pricing-grid .offers-grid .offer-main.featured .offer-btn-primary:hover {
  background: #eec413;
  transform: translateY(-2px);
}
.pricing-section .pricing-grid .offers-grid .offer-main.featured .offer-price {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* ===========================================
   最終CTAセクション
   =========================================== */
.final-cta-section {
  padding: 80px 0;
  background: #01a59c; /* メインカラー: ディープブルー */
  color: white;
  text-align: center;
}
@media screen and (max-width:540px) {
  .final-cta-section {
    padding: 60px 0;
  }
}
.final-cta-section .cta-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  margin-top: 0;
}
@media screen and (max-width:540px) {
  .final-cta-section .cta-title {
    font-size: 1.8rem;
  }
}
.final-cta-section .cta-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
@media screen and (max-width:540px) {
  .final-cta-section .cta-message {
    font-size: 1rem;
  }
}
.final-cta-section .final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width:540px) {
  .final-cta-section .final-cta-actions a {
    width: 100%;
  }
}
.final-cta-section .final-cta-actions .btn-primary {
  background: #eec413; /* アクセントカラー: オレンジ */
  border: 4px solid rgba(255, 255, 255, 0.2705882353);
  color: white;
  max-width: 350px;
  width: 100%;
}
.final-cta-section .final-cta-actions .btn-primary:hover {
  background: #e5b900;
}
.final-cta-section .final-cta-actions .btn-secondary {
  background: white;
  color: #01a59c;
  border: 2px solid white;
}
.final-cta-section .final-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.final-cta-section .final-cta-actions p {
  color: white;
}
.final-cta-section .cta-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* ===========================================
   FAQセクション
   =========================================== */
.faq-section {
  padding: 80px 0;
  background: white;
}
@media screen and (max-width:540px) {
  .faq-section {
    padding: 60px 0;
  }
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-list .faq-item {
  background: #F5F6FA;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-list .faq-item .faq-question {
  background: #f7f7f7;
  padding: 24px;
  margin: 0;
  color: #1f2937;
  font-size: 1.1rem;
  border-left: 4px solid #01a59c;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-section .faq-list .faq-item .faq-question:hover {
  background: #e5e7eb;
}
.faq-section .faq-list .faq-item .faq-answer {
  padding: 24px;
  background: white;
  border-top: 1px solid #e5e7eb;
}
.faq-section .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

/* ===========================================
   会社概要セクション
   =========================================== */
.company-section {
  padding: 80px 0;
  background: #f7ffff;
}
@media screen and (max-width:540px) {
  .company-section {
    padding: 60px 0;
  }
}
.company-section .company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 3rem;
}
@media screen and (max-width:768px) {
  .company-section .company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0;
  }
}
.company-section .company-grid .company-info dl.company-details {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.company-section .company-grid .company-info dl.company-details dt {
  font-weight: 600;
  color: #01a59c;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.company-section .company-grid .company-info dl.company-details dt:first-child {
  margin-top: 0;
}
.company-section .company-grid .company-info dl.company-details dd {
  color: #6b7280;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.company-section .company-grid .company-info dl.company-details dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.company-section .company-grid .company-mission {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.company-section .company-grid .company-mission h3 {
  color: #01a59c;
  margin-bottom: 1.5rem;
}
.company-section .company-grid .company-mission p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ===========================================
   フッター
   =========================================== */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 30px;
}
@media screen and (max-width:540px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
  align-items: center;
}
@media screen and (max-width:768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
.footer .footer-content .footer-brand .footer-logo {
  margin-bottom: 0.5rem;
  width: 150px;
}
@media screen and (max-width:540px) {
  .footer .footer-content .footer-brand .footer-logo {
    margin: 0 auto 10px;
  }
}
.footer .footer-content .footer-brand .footer-tagline {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.footer .footer-content .footer-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
@media screen and (max-width:768px) {
  .footer .footer-content .footer-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.footer .footer-content .footer-cta a {
  padding: 12px 24px;
  font-size: 0.9rem;
}
@media screen and (max-width:768px) {
  .footer .footer-content .footer-cta a {
    width: 100%;
    max-width: 280px;
  }
}
.footer .footer-content .footer-cta a.btn-primary {
  background: #01a59c;
  color: white;
  border: none;
}
.footer .footer-content .footer-cta a.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
}
.footer .footer-bottom p {
  color: #6b7280;
  font-size: 0.8rem;
  margin: 0;
}
.footer .footer-bottom ul.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width:768px) {
  .footer .footer-bottom ul.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    max-width: 280px;
    margin: 0 auto 1.5rem;
  }
}
.footer .footer-bottom ul.footer-links li {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .footer .footer-bottom ul.footer-links li {
    text-align: center;
  }
}
.footer .footer-bottom ul.footer-links li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.footer .footer-bottom ul.footer-links li a:hover {
  color: white;
}
@media screen and (max-width:320px) {
  .footer .footer-bottom ul.footer-links li a {
    padding: 0;
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */