/* ================================================================
   GW・恋愛専門家 フロントエンドCSS
   ================================================================ */

/* ---- 共通 ---- */
.gw-adv-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5vw 7vw;
}

.gw-adv-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ================================================================
   アーカイブ（一覧）
   ================================================================ */

/* ---- ヘッダー ---- */
.gw-adv-archive-header {
    margin-bottom: 2em;
}
.gw-adv-archive-header h2 {
    font-size: 1.5em;
    margin: 0 0 0.4em;
}
.gw-adv-archive-desc {
    font-size: 0.9em;
    color: #555;
    line-height: 1.8;
    max-width: 720px;
}

/* ---- カードグリッド ---- */
.gw-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 2em;
}

/* ---- カード ---- */
.gw-adv-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.gw-adv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.gw-adv-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ---- カード上部（アバター＋名前） ---- */
.gw-adv-card-head {
    padding: 24px 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* ---- 丸アバター ---- */
.gw-adv-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
}
.gw-adv-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #e8edf5, #fde8f3) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-palette-color-2, #e91e8c);
}

/* ---- 名前・役職 ---- */
.gw-adv-card-name-wrap {
    flex: 1;
    min-width: 0;
}
.gw-adv-card-name {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a1a1a;
}
.gw-adv-card-title {
    font-size: 0.8em;
    color: #777;
    margin: 0;
}

/* ---- 博士推奨バッジ ---- */
.gw-adv-badge-recommended {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f5a623, #e8821a);
    color: #fff;
    font-size: 0.68em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(232,130,26,0.4);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- 得意分野 ---- */
.gw-adv-card-specialty {
    padding: 0 20px 12px;
    font-size: 0.82em;
    color: var(--theme-palette-color-2, #e91e8c);
    font-weight: 600;
}

/* ---- タイムライン ---- */
.gw-adv-timeline {
    padding: 0 20px 16px;
}
.gw-adv-tl-bar {
    position: relative;
    height: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}
.gw-adv-tl-block {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #123d8b, #ff6bab);
    border-radius: 3px;
}
.gw-adv-tl-now {
    position: absolute;
    top: -2px;
    width: 2px;
    height: calc(100% + 4px);
    background: #333;
    border-radius: 2px;
    z-index: 2;
}
.gw-adv-tl-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65em;
    color: #bbb;
    margin-top: 3px;
}

/* ---- 待機テキスト ---- */
.gw-adv-card-schedule {
    padding: 0 20px 16px;
    font-size: 0.82em;
}
.gw-adv-online {
    color: var(--theme-palette-color-2, #e91e8c);
    font-weight: 600;
}
.gw-adv-offline {
    color: #aaa;
}

/* ---- お知らせ ---- */
.gw-adv-card-notice {
    margin: 0 20px 16px;
    background: #fff8e1;
    border-left: 3px solid #ffd600;
    padding: 8px 12px;
    font-size: 0.8em;
    line-height: 1.6;
    color: #555;
    border-radius: 0 4px 4px 0;
}

/* ---- 詳細ボタン ---- */
.gw-adv-card-btn {
    margin: auto 20px 20px;
    display: block;
    padding: 8px 0;
    text-align: center;
    border: 2px solid var(--theme-palette-color-2, #e91e8c);
    color: var(--theme-palette-color-2, #e91e8c);
    border-radius: 50px;
    font-size: 0.82em;
    font-weight: 700;
    transition: 0.2s;
    text-decoration: none;
}
.gw-adv-card-btn:hover {
    background: var(--theme-palette-color-2, #e91e8c);
    color: #fff;
}


/* ================================================================
   詳細ページ（single）
   ================================================================ */

/* ---- ヒーロー ---- */
.gw-adv-single-hero {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 2.5em;
    padding: 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    position: relative;
}
.gw-adv-single-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
}
.gw-adv-single-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #e8edf5, #fde8f3) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-palette-color-2, #e91e8c);
}
.gw-adv-single-info {
    flex: 1;
    min-width: 0;
}
.gw-adv-single-name {
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
}
.gw-adv-single-role {
    font-size: 0.9em;
    color: #777;
    margin: 0 0 6px;
}
.gw-adv-single-specialty {
    font-size: 0.88em;
    color: var(--theme-palette-color-2, #e91e8c);
    font-weight: 600;
    margin: 0 0 14px;
}
.gw-adv-single-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f5a623, #e8821a);
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(232,130,26,0.4);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- ヒーロー内 相談ボタン ---- */
.gw-adv-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #123d8b, #ff6bab);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 4px 14px rgba(233,30,140,0.35);
    transition: 0.2s;
    margin-top: 2px;
}
.gw-adv-consult-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(233,30,140,0.45);
    color: #fff;
}

/* ---- セクション共通 ---- */
.gw-adv-section-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 24px 28px;
    margin-bottom: 24px;
}
.gw-adv-section-title {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--theme-palette-color-2, #e91e8c);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-palette-color-2, #e91e8c);
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ---- LINE訴求エリア ---- */
.gw-adv-line-cta {
    background: linear-gradient(135deg, #e8f8ee, #d4f3e0);
    border: 1.5px solid #b2e4c4;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.gw-adv-line-cta-icon {
    color: #06c755;
    line-height: 1;
}
.gw-adv-line-cta-text {
    font-size: 0.88em;
    line-height: 1.85;
    color: #2d6a3f;
    margin: 0;
}
.gw-adv-line-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06c755;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92em;
    padding: 11px 28px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(6,199,85,0.35);
    transition: 0.2s;
    margin-top: 4px;
}
.gw-adv-line-cta-btn:hover {
    background: #05b449;
    box-shadow: 0 5px 14px rgba(6,199,85,0.45);
    color: #fff;
    transform: translateY(-1px);
}

/* ---- お知らせ ---- */
.gw-adv-notice-box {
    font-size: 0.9em;
    line-height: 1.9;
    color: #444;
    white-space: pre-wrap;
}

/* ---- 複数日スケジュール ---- */
.gw-adv-multiday {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gw-adv-day-block {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.gw-adv-day-today {
    border-color: var(--theme-palette-color-2, #e91e8c);
    border-width: 2px;
}
.gw-adv-day-label {
    padding: 8px 14px;
    font-size: 0.82em;
    font-weight: 700;
    color: #555;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}
.gw-adv-day-today .gw-adv-day-label {
    background: linear-gradient(135deg, #e8edf5, #fde8f3);
    color: #123d8b;
    border-bottom-color: #c5d2ea;
}
.gw-adv-day-slots {
    padding: 10px 14px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.gw-adv-day-block .gw-adv-timeline {
    padding: 4px 14px 10px;
}

/* 週間テーブル */
.gw-adv-weekly-table {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.gw-adv-weekly-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.88em;
    gap: 14px;
}
.gw-adv-weekly-row:last-child {
    border-bottom: none;
}
.gw-adv-weekly-row.gw-adv-today {
    background: #fce4ec;
}
.gw-adv-weekly-day {
    width: 24px;
    font-weight: 700;
    text-align: center;
    color: #555;
    flex-shrink: 0;
}
.gw-adv-weekly-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.gw-adv-slot {
    background: var(--theme-palette-color-2, #e91e8c);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}
.gw-adv-off {
    color: #bbb;
}
.gw-adv-day-comment {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 0.83em;
    color: #555;
    line-height: 1.5;
}
.gw-adv-day-comment::before {
    content: "💬";
    font-size: 0.9em;
    flex-shrink: 0;
}

/* ---- プロフィール ---- */
.gw-adv-profile-text {
    font-size: 0.9em;
    line-height: 1.9;
    color: #444;
    white-space: pre-wrap;
}

/* ---- メッセージ（吹き出しデザイン） ---- */
.gw-adv-message-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.gw-adv-message-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: none;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-palette-color-2, #e91e8c);
}
.gw-adv-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.gw-adv-message-bubble {
    position: relative;
    flex: 1;
    background: #f8f8f8;
    border-radius: 4px 16px 16px 16px;
    padding: 16px 20px;
}
.gw-adv-message-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 14px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #f8f8f8;
}
.gw-adv-message-bubble-name {
    font-size: 0.78em;
    font-weight: 700;
    color: var(--theme-palette-color-2, #e91e8c);
    margin-bottom: 8px;
}
.gw-adv-message-bubble-text {
    font-size: 0.9em;
    line-height: 1.9;
    color: #444;
}

/* ---- 外部リンク ---- */
.gw-adv-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gw-adv-ext-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: 0.2s;
    width: fit-content;
}
.gw-adv-ext-link.official {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}
.gw-adv-ext-link.official:hover {
    background: #e0e0e0;
}
.gw-adv-ext-link.line {
    background: #06c755;
    color: #fff;
}
.gw-adv-ext-link.line:hover {
    background: #05b44c;
}

/* ---- 口コミ ---- */
.gw-adv-review-count {
    font-size: 0.8em;
    font-weight: 400;
    color: #999;
    margin-left: 4px;
}
.gw-adv-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gw-adv-review-item {
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: border-color 0.15s;
}
.gw-adv-review-item:hover {
    border-color: #f8bbd0;
}
.gw-review-hidden {
    display: none;
}
.gw-adv-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.gw-adv-review-author-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
}
.gw-adv-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-palette-color-2, #e91e8c);
    flex-shrink: 0;
}
.gw-adv-review-author {
    font-weight: 600;
    font-size: 0.85em;
    color: #555;
}
.gw-adv-review-date {
    font-size: 0.78em;
    color: #999;
    font-weight: 400;
}
.gw-adv-review-stars {
    display: flex;
    gap: 2px;
}
.gw-star {
    color: #ddd;
}
.gw-star.filled {
    color: #f5a623;
}
.gw-adv-review-text {
    font-size: 0.88em;
    color: #555;
    line-height: 1.8;
}

/* ---- 最近見た専門家 ---- */
.gw-adv-recent-wrap {
    padding: 12px 0 4px;
}
.gw-adv-recent-title {
    font-size: 0.85em;
    font-weight: 700;
    color: #444;
    margin: 0 0 12px;
    padding-left: 10px;
    border-left: 3px solid #123d8b;
}
.gw-adv-recent-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
.gw-adv-recent-list::-webkit-scrollbar {
    height: 4px;
}
.gw-adv-recent-list::-webkit-scrollbar-track {
    background: transparent;
}
.gw-adv-recent-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}
.gw-adv-recent-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.gw-adv-recent-item:hover {
    opacity: 0.75;
}
.gw-adv-recent-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
    display: block;
}
.gw-adv-recent-avatar-empty {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #e8edf5, #fde8f3) padding-box,
                linear-gradient(135deg, #123d8b, #ff6bab) border-box;
}
.gw-adv-recent-name {
    font-size: 0.72em;
    color: #555;
    text-align: center;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---- 専門家リスト：もっと見るボタン／非表示カード ---- */
.gw-adv-card-hidden {
    display: none;
}
.gw-adv-list-more-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px 0;
    background: #f8f8f8;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.88em;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}
.gw-adv-list-more-btn:hover {
    background: #e8edf5;
    border-color: #123d8b;
    color: #123d8b;
}

/* ---- 口コミ：もっと見るボタン ---- */
.gw-adv-reviews-more-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 10px 0;
    background: #f8f8f8;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}
.gw-adv-reviews-more-btn:hover {
    background: #fce4ec;
    border-color: var(--theme-palette-color-2, #e91e8c);
    color: var(--theme-palette-color-2, #e91e8c);
}

/* ---- 戻るリンク ---- */
.gw-adv-back-link {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--theme-palette-color-2, #e91e8c);
    color: var(--theme-palette-color-2, #e91e8c);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    transition: 0.2s;
}
.gw-adv-back-link:hover {
    background: var(--theme-palette-color-2, #e91e8c);
    color: #fff;
}

/* ---- スクロール追従 相談ボタン ---- */
.gw-adv-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.gw-adv-sticky-cta.visible {
    transform: translateY(0);
    pointer-events: auto;
}
.gw-adv-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(6px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
}
.gw-adv-sticky-name {
    font-size: 0.85em;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.gw-adv-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #123d8b, #ff6bab);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(18,61,139,0.30);
    transition: 0.2s;
    flex-shrink: 0;
}
.gw-adv-sticky-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(233,30,140,0.45);
    color: #fff;
}

/* ================================================================
   レスポンシブ
   ================================================================ */
@media (max-width: 600px) {
    .gw-adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* カード内をスマホ2列用にコンパクト化 */
    .gw-adv-card-head {
        padding: 14px 12px 10px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .gw-adv-avatar,
    .gw-adv-avatar-placeholder {
        width: 60px;
        height: 60px;
    }
    .gw-adv-badge-recommended {
        position: static;
        display: inline-flex;
        margin-top: 4px;
        font-size: 0.62em;
    }
    .gw-adv-card-name {
        font-size: 0.9em;
    }
    .gw-adv-card-title {
        font-size: 0.72em;
    }
    .gw-adv-card-specialty {
        padding: 0 12px 8px;
        font-size: 0.75em;
    }
    .gw-adv-card-schedule {
        padding: 0 12px 10px;
        font-size: 0.75em;
    }
    .gw-adv-timeline {
        padding: 0 12px 10px;
    }
    .gw-adv-card-notice {
        margin: 0 12px 10px;
        font-size: 0.72em;
    }
    .gw-adv-card-btn {
        margin: auto 12px 14px;
        font-size: 0.75em;
        padding: 6px 0;
    }
    .gw-adv-single-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    .gw-adv-single-badge {
        position: static;
        display: inline-flex;
        margin-top: 8px;
    }
    .gw-adv-single-avatar,
    .gw-adv-single-avatar-placeholder {
        width: 90px;
        height: 90px;
    }
    .gw-adv-single-name {
        font-size: 1.3em;
    }
    .gw-adv-section-block {
        padding: 18px 16px;
    }
    .gw-adv-message-inner {
        flex-direction: column;
        align-items: center;
    }
    .gw-adv-message-bubble {
        border-radius: 16px;
    }
    .gw-adv-message-bubble::before {
        display: none;
    }
    .gw-adv-sticky-inner {
        padding: 10px 14px;
        border-radius: 10px 10px 0 0;
    }
    .gw-adv-sticky-name {
        font-size: 0.78em;
    }
    .gw-adv-sticky-btn {
        padding: 9px 18px;
        font-size: 0.83em;
    }
    .gw-adv-consult-btn {
        font-size: 0.85em;
        padding: 9px 18px;
    }
}

/* 390px未満：カードボタンの文字が縁に触れないよう調整 */
@media (max-width: 389px) {
    .gw-adv-card-btn {
        font-size: 0.68em;
        margin: auto 8px 12px;
        padding: 6px 4px;
    }
    .gw-adv-card-head {
        padding: 12px 8px 8px;
    }
    .gw-adv-card-specialty,
    .gw-adv-card-schedule {
        padding-left: 8px;
        padding-right: 8px;
    }
    .gw-adv-card-notice {
        margin-left: 8px;
        margin-right: 8px;
    }
    .gw-adv-timeline {
        padding-left: 8px;
        padding-right: 8px;
    }
}
