/*///////////////////////////////////
// コラム一覧
///////////////////////////////////*/
@media (max-width: 767.98px) {
  h1.fw-bold {
    font-size: 1.5rem; 
    margin-bottom: 2rem !important;
  }
}

.column-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  transition: transform 0.3s, box-shadow 0.3s;
}

.column-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.column-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.column-card-body {
  padding: 20px;
  flex-grow: 1;
}

.column-card-category {
  font-size: 0.75rem;
  color: #d4a017;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.column-card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 10px;
}

.column-card-text {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}

/*///////////////////////////////////
// コラムページ
///////////////////////////////////*/
.column-content {
  line-height: 1.8;
  color: #333333;
  font-size: 1.05rem;
}

.column-content h2 {
  font-size: 1.6rem;
  border-left: 6px solid #d4a017;
  padding-left: 15px;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #444444;
}

.table-of-contents {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 25px;
  border-radius: 8px;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.toc-title {
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.toc-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list li a {
  color: #333333;
  text-decoration: none;
}

.toc-list li a:hover {
  text-decoration: underline;
  color: #d4a017;
}

.intro-text {
  font-size: 1.15rem;
  color: #c53030;
  font-weight: 600;
  border-bottom: 2px dashed #feb2b2;
  display: inline-block;
  margin-bottom: 1rem;
}

.header-visual {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
}

.header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
  z-index: 1;
}

.header-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.header-text-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 550px;
}

.btn-line {
  background-color: #28a745;
  background-image: linear-gradient(to bottom, #2ecc71, #28a745);
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
  min-width: 240px;
  line-height: 1.4;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .header-visual {
    height: auto;
    min-height: 450px;
    padding-top: 180px;
    padding-bottom: 40px;
  }
  .header-text-box {
    padding: 20px;
    width: 92%;
    margin: 0 auto;
  }
}

/*///////////////////////////////////
// ステップフロー
///////////////////////////////////*/
.flow-container {
  position: relative;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .flow-container::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eee;
    z-index: 0;
  }
}

.step-card-new {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none !important;
}

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 2px solid #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.step-icon-wrapper i {
  color: #007bff;
  font-size: 1.5rem;
}

.step-number {
  display: inline-block;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  padding: 1px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-text-main {
  font-size: 1rem;
  font-weight: bold;
}

.step-text-sub {
  font-size: 0.85rem;
  color: #666;
}

/*///////////////////////////////////
// ミニ相談ボックス
///////////////////////////////////*/
.mini-line-box {
  background-color: #f0f7ff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  max-width: 500px;
  margin: 20px auto;
  font-family: sans-serif;
}

.mini-title {
  color: #337ab7;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.mini-line-btn {
  display: block;
  background-color: #06C755;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.mini-note {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}
/* comparisonの比較表の横スクロール設定 */
@media (max-width: 767px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive table {
    min-width: 600px;
  }
}

/* comparisonのチェックリスト */
.check-list-container ul {
  padding: 0;
}

.check-list-container ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list-container ul li::before {
  content: "●";
  color: #5ba9e1;
  font-size: 0.8rem;
  margin-right: 12px;
  margin-top: 2px;
}

.check-list-container ul li:last-child {
  border-bottom: none;
}

