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

#breadcrumb {
	display: block !important;
}

.c-pageTitle__inner {
	border-bottom: #c5352f 1px solid !important;
}

.c-widget__title::before {
	background: #c5352f !important;
}

.p-breadcrumb__list {
	flex-wrap: wrap; //記事名が長い場合は折り返す
}
.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
	display: block!important; //記事名の表示
	opacity: 1; //記事名を半透明にしない
	white-space: pre-wrap; //記事名が長い場合は折り返す
}

/*
.u-bg-main {
	background: #000000 !important;
}
*/

a:hover.c-bannerLink {
    background-color:rgba(0, 0, 0, 0.2) !important;
	transition: 0.4s ease !important;
}

/* ページタイトル配置 */
.c-pageTitle {
	text-align: center;
}

.wp-element-caption {
	font-size: 0.9em !important;
}


/* 音声切り替えボタンのスタイル */
#swl-video-audio-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#swl-video-audio-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#swl-video-audio-btn.is-active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* スクロールボタンと重なる場合の調整 */
@media (max-width: 768px) {
    #swl-video-audio-btn {
        bottom: 20px; /* Scrollボタンより上に配置 */
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}