/* キャッチフレーズをロゴの下に表示 */
.l-header .l-container { height: 80px !important; }
.l-header__logo {
    position: relative !important;
    padding-bottom: 16px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
}
.c-headLogo__img {
    height: 20px !important;
    width: auto !important;
    margin-top: -8px !important;
}
.c-catchphrase {
    position: absolute !important;
    bottom: 12px !important;
    left: 0 !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* スマホ時キャッチフレーズ表示 */
@media (max-width: 959px) {
    .l-header__logo {
        height: 46px !important;
        padding-bottom: 12px !important;
    }
    .c-headLogo__img {
        height: 16px !important;
        margin-top: -6px !important;
    }
    .c-catchphrase {
        display: block !important;
        font-size: 9px !important;
        bottom: 8px !important;
        padding-left: 10px;
    }
}

/* フッター ロゴ左寄せ */
.l-footer .wp-block-image {
    text-align: left !important;
    margin: 0px !important;
	  padding:10px 0;
}

/* フッター キャッチフレーズ */
.l-footer .w-footer__box:first-child p {
    font-size: 12px !important;
    color: #fff !important;
}
/* フッター メニューリスト フォントサイズ */
.l-footer .c-listMenu a {
    font-size: 12px !important;
}

/* お役立ち資料ページ：コンテンツエリアを白背景に */
.swell-block-fullWide[style*="f7f7f7"] {
	background-color: #fff !important;
}

/* お役立ち資料ページ：タイトルエリアを白背景に */
.p-articleHead {
	background-color: #fff !important;
}

/* お役立ち資料ページ：関連記事エリアを白背景に */
.l-articleBottom__section.-related {
	background-color: #fff !important;
}

/* お役立ち資料ページ：ページ全体（タイトル・関連記事の左右余白）も白背景に */
.single-download,
body:has(.single-download) {
	background-color: #fff;
}


/* お役立ち資料カード：サムネイル画像を3:2表示に変更 */
.dl-card__thumb {
	aspect-ratio: 3 / 2;
}


/* お役立ち資料カード：ダウンロードはこちらボタンを黒背景・白文字に変更 */
.dl-card__btn {
	background-color: #000;
	color: #fff;
}


/* お役立ち資料ページ：関連記事エリアの横幅をコンテンツ部分（ページのコンテナ幅）に合わせる */
.single-download .l-articleBottom__section.-related {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: calc(50% - 50vw);
}
.single-download .l-articleBottom__section.-related > * {
	width: min(var(--container_size, 1280px), calc(100% - (var(--swl-pad_container, 24px) * 2)));
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}


/* お役立ち資料ページ：関連記事タイトルの左の縦線を削除し、見出し文言を「よく一緒に見られている資料」に変更 */
.single-download .l-articleBottom__section.-related > .l-articleBottom__title {
	border-left: none !important;
	padding-left: 0 !important;
	font-size: 0;
	line-height: 44px !important;
	height: auto !important;
	margin-bottom: var(--swl-pad_container, 48px) !important;
}
.single-download .l-articleBottom__title::before {
	content: "よく一緒に見られている資料";
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	line-height: 44px;
	color: #333;
}


/* お役立ち資料ページ：タイトル・投稿日の横幅をコンテンツ部分（ページのコンテナ幅）に合わせる（PC表示時のみ） */
@media (min-width: 960px) {
	.single-download .p-articleHead,
	.single-download .p-articleMetas {
		box-sizing: border-box;
		width: 100vw;
		max-width: calc(var(--container_size, 1280px) + var(--swl-pad_container, 48px) * 2);
		margin-left: 50%;
		transform: translateX(-50%);
		padding-left: var(--swl-pad_container, 48px);
		padding-right: var(--swl-pad_container, 48px);
	}
}
