/* GyuttoAutoPlugin フロントエンド用スタイル */

.gap-package-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 6px;
}

/* 動画ラッパー */
.gap-video-wrap {
    margin: 1rem 0;
}
.gap-video-wrap video {
    display: block;
    max-width: 100%;
    border-radius: 6px;
}
/* YouTube埋め込み（アスペクト比固定） */
.gap-video-yt {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 6px;
}
.gap-video-yt iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.gap-video-link a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #1d4ed8;
}

/* ボタングループ */
.gap-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.25rem 0;
}

/* 共通ボタンスタイル */
.gap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65em 1.5em;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
}
.gap-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.gap-btn:active {
    transform: translateY(0);
}

/* Gyuttoボタン */
.gap-btn--gyutto {
    background: #e63166;
    color: #fff;
    border: 2px solid #e63166;
}
.gap-btn--gyutto:hover { color: #fff; }

/* DLGetchuボタン */
.gap-btn--getchu {
    background: #1a6fd4;
    color: #fff;
    border: 2px solid #1a6fd4;
}
.gap-btn--getchu:hover { color: #fff; }

/* スマホ対応 */
@media (max-width: 480px) {
    .gap-btn-group { flex-direction: column; }
    .gap-btn { width: 100%; }
}
