@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
*/


/* ===== common ===== */

.l-mainContent__inner>.post_content {
    margin: 1.3em 0;
}

.c-postTitle__ttl {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.c-categoryList__link,
.c-tagList__link {
    color: #fff;
}

.c-categoryList:before {
    color: #fff;
}

/* パンくずリスト背景 */
.c-prNotation[data-style="big"] {
    font-size: 0.6em;
    margin: 0;
    padding: 0.5em;
}


/* PRとメタの余白 */
.p-articleMetas.-top {
    margin-bottom: 16px;
}

/* =============== */
/* ===== Component ===== */

/* ボタンデザイン */
:root {
    --afi-btn: #ff9a00;
    --afi-btn-hover: #ffb733;
}

.btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #333;
    text-align: center;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    padding: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* 矢印アイコン */
.btn::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 24px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

/* ホバー効果 */
.btn:hover {
    transform: scale(1.03);
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background-color: var(--afi-btn);
    color: #333;
    width: 50%;
}

.btn--primary:hover {
    background: var(--afi-btn-hover);
}

/* =============== */


/* ===== meta-area ===== */
.meta-area {
    background: #1b1b1b;
    color: #ddd;
    font-size: 13px;
    line-height: 1.6;
    padding: 12px 14px;
    border-radius: 6px;
}

.meta-area p {
    margin: 4px 0;
}

.meta-area .label {
    color: #ff9900;
    /* ラベルをオレンジで強調 */
    font-weight: bold;
}

.meta-area a {
    color: #ff6600;
    /* リンクはオレンジ */
    text-decoration: none;
}

.meta-area a:hover {
    text-decoration: underline;
}


/* ===== video-area ===== */

/* 動画プレイヤー */
.video-area__content {
	width: 100%;
	max-width: 700px;
}

.video-area__content video {
	width: 100%;
	height: 350px;
}


/* CTAブロック（タグ＋ボタン＋再生時間） */
.video-area__cta {
    text-align: center;
    margin-bottom: 24px;
}

.video-area__cta-volume {
    color: #999;
    font-size: 14px;
    margin: 10px 0;
    display: block;
}

.video-area__cta-volume::before {
    content: "<";
    margin-right: 4px;
}

.video-area__cta-volume::after {
    content: ">";
    margin-left: 4px;
}

.tag-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #1b1b1b;
    gap: 6px 10px;
    padding: 6px 10px;
    border-radius: 4px;
}

.tag-area__link {
    font-size: 13px;
    background-color: rgba(255, 133, 51, 0.12);
    color: #ff8533;
    text-decoration: none;
    border-radius: 4px;
    padding: 4px 8px;
}

.tag-area__link:hover {
    background-color: rgba(255, 133, 51, 0.25);
    text-decoration: underline;
}


/* =============== */

/* ===== image-area ===== */
.image-area {
    margin-bottom: 24px;
}

.image-area__gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    /* ギャラリーの間隔 */
    margin-bottom: 24px;
}

.image-area__gallery img {
    text-align: center;
    width: 100%;
}

.image-area__cta {
    text-align: center;
    width: 100%;
}


/* ===== Responsive Styles ===== */
@media screen and (max-width: 768px) {

    /* ボタンのモバイル最適化 */
    .btn--primary {
        width: 90%;
        /* 横幅広め */
        font-size: 18px;
        /* 見やすいサイズ */
        padding: 18px;
        /* タップしやすい */
        margin: 12px auto;
        /* 中央寄せ */
        display: block;
    }



    /* meta-area（情報ブロック） */
    .meta-area {
        font-size: 14px;
        padding: 10px;
    }

    /* video-areaの動画プレイヤー */
    .video-area__content {
        height: 380px;
    }

    .video-area__content video {
        height: 380px;
    }

    /* image-area ギャラリー */
    .image-area__gallery {
        gap: 10px;
    }
}