@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ===== 秘書活アプリ紹介カード app-profile-card ===== */
.app-profile-card {
  position: relative;
  margin: 2em 0;
  padding: 1.5em 1.4em 1.4em;
  background: #fff;
  border: 1px solid #95D4F4;
  border-radius: 14px;
}

/* ヘッダー（ランク＋アプリ名） */
.app-profile-card__head {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1em;
  padding-bottom: 0.8em;
  border-bottom: 2px dotted #95D4F4;
}

.app-profile-card__rank {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2em;
  padding: 0.3em 0.6em;
  font-size: 0.82em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #95D4F4, #4FA8DC);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.app-profile-card__name {
  font-size: 1.15em;
  font-weight: 700;
  color: #2b8fc7;
  line-height: 1.4;
}

/* 特徴リスト */
.app-profile-card__features {
  margin: 0 0 1.2em;
  padding: 0;
  list-style: none;
}

.app-profile-card__features li {
  position: relative;
  margin: 0 0 0.55em;
  padding-left: 1.6em;
  font-size: 0.96em;
  line-height: 1.6;
}

.app-profile-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  color: #4FA8DC;
}

.app-profile-card__features li:last-child {
  margin-bottom: 0;
}

/* CTAボタン */
.app-profile-card__btn {
  margin: 0;
  text-align: center;
}

.app-profile-card__btn a {
  display: block;
  padding: 0.9em 1em;
  font-size: 1.02em;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #95D4F4, #4FA8DC);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(79, 168, 220, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.app-profile-card__btn a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(79, 168, 220, 0.45);
}

/* スマホ最適化 */
@media (max-width: 600px) {
  .app-profile-card {
    padding: 1.3em 1.1em 1.2em;
    border-radius: 12px;
  }
  .app-profile-card__name {
    font-size: 1.05em;
  }
  .app-profile-card__btn a {
    font-size: 0.98em;
  }
}
