/*
 * maa-kiji-format01.css
 */

/*
 * one-mkf-
 */
.one-mkf-post-thumbnail {
  width: 60%;      /* 横幅を親要素いっぱいに広げる */
  height: auto;       /* 高さは横幅に合わせて自動調整（画像の比率を保つ） */
  display: block;     /* 画像下の余分な余白をなくす */
  margin: 0 auto 1.5em; /* 中央揃えにし、画像の下に余白を設ける */
}

.one-mkf-video-post-card {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans CJK JP', 'Yu Gothic', Meiryo, sans-serif;
    background-color: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px !important;
    overflow: hidden;
    transition: box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.one-mkf-video-post-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}
.one-mkf-card-header {
    display: flex;
    align-items: center;
}
.one-mkf-thumbnail-wrapper {
    flex: 3 1 0%;
    aspect-ratio: 4 / 3;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
}
.one-mkf-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.one-mkf-title-wrapper {
    flex: 7 1 0%;
    padding: 20px;
    min-width: 0;
}
.one-mkf-video-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a !important;
    line-height: 1.4;
    margin: 0;
}
.one-mkf-video-body {
    padding: 15px 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
    color: #333333 !important;/* 親要素の文字色を指定 */
}
.one-mkf-actor-name {
    font-size: 16px;
    color: #555 !important;
    margin-bottom: 20px;
    font-weight: 500;
}

.one-mkf-actor-name::before {
    content: '出演: ';
    font-weight: normal;
    color: #888 !important;
}

.one-mkf-video-description {
    font-size: 15px;
    color: #333333 !important; /* 文字色を濃い灰色に設定 */
    line-height: 1.7;
    background-color: #ffffff !important;/* 背景色 */
}

.one-mkf-video-description p {
  color: #333333 !important;
}

.one-mkf-watch-button {
    display: block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .3s ease;
    box-sizing: border-box;
    /* --- 変更箇所 --- */
    width: fit-content;      /* 幅をコンテンツに合わせる */
    margin: 25px auto 0;     /* 上25px, 左右autoで中央寄せ */
}
.one-mkf-watch-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, .5);
}

/* Responsive styles for mobile */
@media (max-width: 480px) {
    .one-mkf-video-title {
        font-size: 18px;
    }
    .one-mkf-thumbnail-wrapper,
    .one-mkf-title-wrapper {
        padding: 10px;
    }
    .one-mkf-video-body {
        padding: 15px;
    }
    /* スマホではボタンの幅を100%に戻してタップしやすくする（任意） */
    .one-mkf-watch-button {
        width: 100%;
    }
}




/*
 * two-lite-keeper-
 */
.two-lite-keeper-themcontainer {
    font-family: sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.two-lite-keeper-themheader {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px; /* 修正: 適切な余白を確保 */
}

.two-lite-keeper-themheader-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px; /* 修正: タイトルとの間隔 */
    position: static; /* 修正: 絶対配置を解除して重なりを防止 */
}

.two-lite-keeper-themtitle {
    font-size: 1.8em;
    color: #333 !important;
    margin: 0;
}

.two-lite-keeper-themthumbnail-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.two-lite-keeper-themthumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.two-lite-keeper-themdetails {
    line-height: 1.6;
    color: #555 !important;
}

.two-lite-keeper-themdescription {
    margin-bottom: 20px;
    color: #333 !important;
}

.two-lite-keeper-themdescription p {
    color: #333 !important;
}

.two-lite-keeper-themmeta-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.two-lite-keeper-themmeta-container {
    display: flex;
    flex-direction: column;
}

.two-lite-keeper-themmeta-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.two-lite-keeper-themmeta-label {
    font-weight: bold;
    color: #333 !important;
    width: 100px;
    flex-shrink: 0;
}

/* パッケージ画像がある場合はラベルを非表示 */
.two-lite-keeper-themmeta-item:has(.two-lite-keeper-thempackage-img) > .two-lite-keeper-themmeta-label {
    display: none;
}

.two-lite-keeper-themmeta-value {
    flex-grow: 1;
}

.two-lite-keeper-themmeta-value ul {
    margin: 0;
    padding-left: 20px;
}

.two-lite-keeper-thempackage-img {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
}

.two-lite-keeper-thembutton-wrapper {
    margin-top: 0;
}

.two-lite-keeper-thembutton {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.two-lite-keeper-thembutton:hover {
    background-color: #0056b3;
}



/*
 * thema3-alpha-ver-
 */
.thema3-alpha-ver {
    border: 1px solid #ccc;
    padding: 16px;
    margin-bottom: 24px;
    background-color: #f9f9f9;
}


.thema3-alpha-ver-setsumei {
    margin-top: 12px;
}

.thema3-alpha-ver-janru {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.thema3-alpha-ver-janru li {
    background-color: #eee;
    padding: 4px 8px;
    border-radius: 4px;
}

.thema3-alpha-ver-package-img img {
    max-width: 100%;
    height: auto;
    margin-top: 12px;
}

.thema3-alpha-ver-package-title {
    margin-top: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.thema3-alpha-ver-info {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}


.thema3-alpha-ver-video {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.thema3-alpha-ver-video img {
    display: block;
    width: 100%;
    height: auto;
}

.thema3-alpha-ver-video-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.thema3-alpha-ver-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.thema3-alpha-ver-play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.thema3-alpha-ver-play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



/*
 * mjjsppad4-
 */
.mjjsppad4-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.mjjsppad4-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mjjsppad4-thumbnail {
    flex: 1 1 250px;
    max-width: 300px;
}

.mjjsppad4-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.mjjsppad4-content {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mjjsppad4-title {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 12px;
    font-weight: bold;
    border-left: 4px solid #e74c3c;
    padding-left: 10px;
}

.mjjsppad4-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: #555;
    font-size: 0.95em;
}

.mjjsppad4-meta li {
    margin-bottom: 6px;
}

.mjjsppad4-package-img {
    margin-bottom: 16px;
    max-width: 180px;
}

.mjjsppad4-package-img img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mjjsppad4-button {
    margin-top: auto;
}

.mjjsppad4-watch-button {
    display: inline-block;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: white;
    padding: 10px 18px;
    font-size: 1em;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.mjjsppad4-watch-button:hover {
    background: linear-gradient(to right, #c0392b, #a93226);
}

.mjjsppad4-meta li strong {
    margin-right: 4px;
}

.mjjsppad4-meta li {
    font-size: 0.95em;
}

.mjjsppad4-meta li:contains("レビュー") {
    color: #f39c12; /* 星色に統一 */
}

.mjjsppad4-meta li:contains("レビュー")::after {
    content: " ";
}

.mjjsppad4-meta li {
    line-height: 1.6;
}

.mjjsppad4-meta li .stars {
    color: #f39c12;
    font-weight: bold;
    margin-left: 4px;
    letter-spacing: 1px;
}




/*
 * sejopasa5-
 */
/* =======================================
 * General Styles
 * ======================================= */
.sejopasa5 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sejopasa5-container {
    padding: 20px;
}

.sejopasa5-section {
    margin-bottom: 25px;
}

.sejopasa5-heading {
    font-size: 1.2em;
    font-weight: 700;
    color: #0056b3;
    border-left: 4px solid #0056b3;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* =======================================
 * Main Visual
 * ======================================= */
.sejopasa5-main-visual {
    position: relative;
    margin: -20px -20px 20px -20px;
    text-align: center;
}

.sejopasa5-link-image {
    display: block;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.sejopasa5-link-image:hover {
    opacity: 0.8;
}

.sejopasa5-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.sejopasa5-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #990;
    padding: 10px;
    font-size: 1.5em;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* =======================================
 * Button Between Image and Title
 * ======================================= */
.sejopasa5-button-between {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: rgba(255, 99, 71, 0.9);
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.sejopasa5-button-between:hover {
    background-color: #e5533d;
    transform: translate(-50%, 50%) translateY(-2px);
}

/* =======================================
 * Table of Contents (目次)
 * ======================================= */
.sejopasa5-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
}

.sejopasa5-toc li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.sejopasa5-toc li:last-child {
    border-bottom: none;
}

.sejopasa5-toc a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease;
}

.sejopasa5-toc a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* =======================================
 * Description & Actress
 * ======================================= */
.sejopasa5-text {
    font-size: 1em;
    margin: 0;
}

.sejopasa5-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sejopasa5-tag {
    background-color: #f0f7ff;
    color: #0056b3;
    border: 1px solid #b3d9ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* =======================================
 * Sample Images Gallery
 * ======================================= */
.sejopasa5-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.sejopasa5-gallery-item {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sejopasa5-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =======================================
 * Button
 * ======================================= */
.sejopasa5-button-container {
    text-align: center;
}

.sejopasa5-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #ff6347;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.sejopasa5-button:hover {
    background-color: #e5533d;
    transform: translateY(-2px);
}

/* =======================================
 * Responsive (For smaller screens)
 * ======================================= */
@media (max-width: 600px) {
    .sejopasa5-container {
        padding: 15px;
    }

    .sejopasa5-main-visual {
        margin: -15px -15px 15px -15px;
    }

    .sejopasa5-title {
        font-size: 1.2em;
        padding: 8px;
    }

    /* スマホでのボタン表示調整 */
    .sejopasa5-button-between {
        padding: 10px 20px;
        font-size: 1em;
    }
}




/*
 * theme-mkf6-
 */
/* =========================================================================
 * 共通設定 (Common Settings)
 * ========================================================================= */
.theme-mkf6-container {
    /* 記事全体を囲むコンテナ。必要に応じて追加してください。 */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* =========================================================================
 * タイトル (Title)
 * ========================================================================= */
.theme-mkf6-package-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50; /* ダークブルー */
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #f39c12; /* オレンジのアクセントライン */
    padding-bottom: 10px;
}

/* =========================================================================
 * 画像 (Images)
 * ========================================================================= */
.theme-mkf6-thumbnail-image,
.theme-mkf6-package-image {
    display: block; /* ブロック要素にして、マージンを調整しやすくする */
    max-width: 100%; /* 親要素の幅に合わせて画像を縮小 */
    height: auto; /* 縦横比を維持 */
    margin: 30px auto; /* 上下に30px、左右中央に配置 */
    border: 5px solid #ecf0f1; /* ライトグレーの枠線 */
    border-radius: 10px; /* 角を少し丸くする */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* ほんのりとした影 */
}

/* =========================================================================
 * 動画ボタン (Video Button)
 * ========================================================================= */

/* モダンな動画ボタン */
.theme-mkf6-video-button {
    display: inline-block;
    padding: 18px 40px; /* パディングを増やしてボタンを大きくする */
    font-size: 20px; /* フォントサイズを大きくする */
    font-weight: bold;
    color: #ffffff;
    background-color: #2980b9; /* 落ち着いた青色 */
    border: none;
    border-radius: 50px; /* 完全に丸いボタン */
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* 影を強くして立体感を出す */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* ホバー時のアニメーションを滑らかに */
    display: block; /* 新しく追加 */
    margin: 30px auto; /* 新しく追加 */
}

/* ホバー時の効果 */
.theme-mkf6-video-button:hover {
    background-color: #3498db; /* 少し明るい青色 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px); /* ボタンを少し浮き上がらせる */
}

/* クリック時の効果 */
.theme-mkf6-video-button:active {
    transform: translateY(1px); /* ボタンを押し込んだように見せる */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ボタンアイコン（任意） */
.theme-mkf6-video-button::before {
    content: '▶︎'; /* 再生アイコン */
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}



/*
 * sevenssjp-
 */
.sevenssjp-kiji-format7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.sevenssjp-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.sevenssjp-video-link {
    margin-top: 20px;
}

.sevenssjp-video-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.sevenssjp-video-link a:hover {
    background-color: #0056b3;
}

.sevenssjp-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.sevenssjp-genres ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sevenssjp-genres li {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.sevenssjp-package img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.sevenssjp-sample img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}



/*
 * sps-ver8-
 */
.sps-ver8-kiji-format {
    /* 全体コンテナ */
    max-width: 800px; /* 記事幅の制限 */
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff; /* 背景色 */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 軽い影で立体感を出す */
    font-family: 'Arial', sans-serif;
}

/* ----------------------------------------- */
/* 1. 動画・サムネイルセクション */
/* ----------------------------------------- */
.sps-ver8-video-section {
    position: relative;
    width: 100%;
    /* 16:9のアスペクト比を維持 */
    padding-top: 56.25%; /* 9 / 16 * 100% */
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000000;
}

.sps-ver8-video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.sps-ver8-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像がセクション全体を覆うように */
    transition: transform 0.3s ease;
}

.sps-ver8-video-link:hover .sps-ver8-thumbnail {
    transform: scale(1.03); /* ホバーで少し拡大 */
    opacity: 0.8;
}

/* 再生ボタン風オーバーレイ */
.sps-ver8-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.8); /* 赤色で目立たせる */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    line-height: 1;
    transition: background-color 0.3s ease;
    pointer-events: none; /* クリックイベントを下に透過させる */
}

.sps-ver8-video-link:hover .sps-ver8-play-overlay {
    background-color: rgba(200, 0, 0, 0.95);
}

/* サムネイルがない場合のテキストリンク */
.sps-ver8-text-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    background-color: #333;
    transition: background-color 0.3s;
}
.sps-ver8-text-link:hover {
    background-color: #555;
}


/* ----------------------------------------- */
/* 2. パッケージタイトル */
/* ----------------------------------------- */
.sps-ver8-package-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #ff4500; /* 目立つアクセントライン */
    font-weight: 700;
}

/* ----------------------------------------- */
/* 3. 動画説明文 */
/* ----------------------------------------- */
.sps-ver8-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f7f7f7;
    border-left: 5px solid #ff7f50; /* 説明文の強調 */
    border-radius: 4px;
}

/* ----------------------------------------- */
/* 4. サンプル画像 */
/* ----------------------------------------- */
.sps-ver8-sample-image-container {
    text-align: center;
    margin-top: 20px;
}

.sps-ver8-sample-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* 画像に深みを出す */
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease;
}

.sps-ver8-sample-image:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ----------------------------------------- */
/* レスポンシブ対応 (スマートフォン向け) */
/* ----------------------------------------- */
@media (max-width: 600px) {
    .sps-ver8-kiji-format {
        padding: 15px;
        margin: 10px;
        border-radius: 0; /* スマホでは画面全体を使う */
        box-shadow: none;
    }
    
    .sps-ver8-package-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .sps-ver8-description {
        font-size: 1rem;
        padding: 10px;
    }
    
    .sps-ver8-play-overlay {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* ----------------------------------------- */
/* 5. 最下部の再生リンク */
/* ----------------------------------------- */
.sps-ver8-video-bottom-link {
    text-align: center;
    margin-top: 30px;
}

.sps-ver8-bottom-link-button {
    display: inline-block;
    background-color: #ff4500; /* アクセントカラーに合わせる */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.sps-ver8-bottom-link-button:hover {
    background-color: #e03e00;
}



/*
 * theme-fanshi-
 */
/* 全体コンテナ */
.theme-fanshi-drycontainer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* ヘッダーセクション */
.theme-fanshi-dryheader {
    text-align: center;
    margin-bottom: 20px;
}

/* パッケージ画像 */
.theme-fanshi-drypackage-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* タイトル */
.theme-fanshi-drytitle {
    font-size: 24px;
    color: #333;
    margin-top: 15px;
}

/* 詳細セクション */
.theme-fanshi-drydetails {
    margin-top: 20px;
}

/* 詳細項目 */
.theme-fanshi-drydetail-item {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px dashed #eee;
    padding: 8px 0;
}

/* 詳細ラベル */
.theme-fanshi-drylabel {
    font-weight: bold;
    color: #0073aa;
    margin-right: 5px;
}

/* サンプル画像セクション */
.theme-fanshi-drysample-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

/* サンプル画像 */
.theme-fanshi-drysample-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* ボタンコンテナ */
.theme-fanshi-drybutton-container {
    text-align: center;
    margin-top: 25px;
}

/* ボタン */
.theme-fanshi-drybutton {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e51d65; /* ボタンの色 */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.theme-fanshi-drybutton:hover {
    background-color: #c91957; /* ホバー時の色 */
}