/* 2026-04-15 WEBLISS Free Apps Page Styles */

/* ヘッダーセクション */
.free-apps-hero {
  padding: 6em 0 3em;
  background: #f8f8f8;
}
.free-apps-hero .lead {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}

/* サービス案内 */
.free-apps-intro {
  padding: 3em 0;
}
.free-apps-intro .intro-box {
  background: #fff;
  border-left: 4px solid #ffc300;
  padding: 2em 2.5em;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.free-apps-intro .intro-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}
.free-apps-intro .intro-box h3 i {
  color: #ffc300;
  margin-right: 8px;
}
.free-apps-intro .intro-box p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5em;
}

/* アプリ一覧 */
.free-apps-list {
  padding: 3em 0 4em;
  background: #f8f8f8;
}
.free-apps-list .section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #ffc300;
}

/* アプリカード */
.app-card {
  background: #fff;
  margin-bottom: 2em;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}
.app-card:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.app-card .card-header {
  padding: 1.2em 2em;
  background: #2c2c2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.app-card .card-header h4 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.app-card .card-header .badge-category {
  background: #ffc300;
  color: #000;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.app-card .card-body {
  padding: 2em;
}
.app-card .card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5em;
}

/* スクリーンショットエリア */
.app-screenshot {
  margin-bottom: 1.5em;
  text-align: center;
}
.app-screenshot img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* アプリ情報テーブル */
.app-info {
  width: 100%;
  margin-bottom: 1.5em;
  font-size: 13px;
}
.app-info th {
  width: 140px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
.app-info td {
  padding: 8px 12px;
  border: 1px solid #e8e8e8;
  color: rgba(0, 0, 0, 0.6);
}

/* 機能リスト */
.feature-list {
  background: #f9f9f5;
  border: 1px solid #e8e5d8;
  border-radius: 4px;
  padding: 1.5em 2em;
  margin-bottom: 1.5em;
}
.feature-list h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 1em;
  color: #333;
}
.feature-list h5 i {
  color: #ffc300;
  margin-right: 6px;
}
.feature-list ul {
  padding-left: 1.5em;
  margin: 0;
}
.feature-list ul li {
  margin-bottom: 0.5em;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ボタン群 */
.app-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.btn-demo {
  background: #2c2c2c !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 30px !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-demo:hover {
  background: #444 !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-demo i {
  margin-right: 6px;
}
.btn-download {
  background: #ffc300 !important;
  border: none !important;
  color: #000 !important;
  padding: 10px 30px !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-download:hover {
  background: #e6b000 !important;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 195, 0, 0.4);
  box-shadow: 0 4px 12px rgba(255, 195, 0, 0.4);
}
.btn-download i {
  margin-right: 6px;
}

/* 免責事項 */
.free-apps-disclaimer {
  padding: 3em 0;
}
.free-apps-disclaimer .disclaimer-box {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  padding: 2em 2.5em;
}
.free-apps-disclaimer .disclaimer-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}
.free-apps-disclaimer .disclaimer-box h4 i {
  color: #999;
  margin-right: 6px;
}
.free-apps-disclaimer .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.free-apps-disclaimer .disclaimer-box ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.5);
}
.free-apps-disclaimer .disclaimer-box ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #999;
}
.free-apps-disclaimer .disclaimer-box ul li strong {
  color: #c0392b;
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
  .free-apps-hero {
    padding: 4em 0 2em;
  }
  .app-card .card-header {
    padding: 1em 1.2em;
  }
  .app-card .card-header h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .app-card .card-body {
    padding: 1.2em;
  }
  .app-info th {
    width: 100px;
    font-size: 12px;
  }
  .app-info td {
    font-size: 12px;
  }
  .free-apps-intro .intro-box {
    padding: 1.5em;
  }
  .free-apps-disclaimer .disclaimer-box {
    padding: 1.5em;
  }
  .app-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .app-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
