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

/******************************
ヘッダー
******************************/
.c-gnav>.menu-item>a .ttl {
    font-size: 16px;
    font-weight: bold;
}

.c-smallNavTitle {
	font-size: 14px; 
}

/* 記事タイトルをパンくずリストに表示する */
.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
	display: block;
}

/* パンくずリストを改行する */
#breadcrumb .p-breadcrumb__list {
    flex-wrap: wrap;
}

/******************************
フッター
******************************/
#content.l-content.l-container {
    margin-bottom: 0;
}

/*フッターTOPの画像とテキスト*/
.outer-container {
    display: flex;
    justify-content: center;
    /* 水平方向に中央揃え */
    align-items: center;
    /* 垂直方向に中央揃え */
    text-align: center;
    /* テキストを中央揃え */
}

.container {
    display: flex;
    align-items: center;
    /* 画像とテキストの縦方向の中央揃え */
    justify-content: center;
    flex-direction: row;
    /* デフォルトは横並び */
}

.left-image {
    width: 160px;
    /* 画像の幅を200pxに固定 */
    height: auto;
    /* 画像の縦横比を維持 */
    margin-right: 10px;
    /* 画像とテキストの間にスペースを作る */
}

.right-text {
    flex: 1;
    /* テキストが画像の隣に表示されるようにする */
    color: white;
    /* テキストの色を白にする */
    font-size: 22px;
    margin-left: 10px;
    margin-top: 0;
}

#footer h2.wp-block-heading:before,
#footer h2.wp-block-heading:after,
#footer h3.wp-block-heading:before {
	content: none;
}

#footer h2.wp-block-heading {
	background: none;
	margin: 0;
	padding: 0;
}

#footer h3.wp-block-heading {
	margin: 0;
	padding: 0;
}

#footer p.churarin a {
	text-decoration: none;
}

.l-footer__nav a:hover {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.container {
		flex-direction: column;
		/* 縦方向に並べる */
		padding: 0px;
	}
	
	.left-image {
		margin-right: 0;
		/* 画像とテキストの間のスペースをリセット */
		margin-bottom: 10px;
		/* 画像とテキストの間にスペースを追加 */
		width: 80%;
		/* 画像を親要素の幅に合わせる */
		padding: 0px 70px;
	}

	.right-text {
		width: 100%;
		/* テキストを親要素の幅に合わせる */
		font-size: 16px;
		margin-top: 10px;
	}
}

/******************************
全般タグ
******************************/

/* パンくずリスト */
.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
	display: block;
}

#breadcrumb .p-breadcrumb__list {
    flex-wrap: wrap;
}

/* テーブル */
.wp-block-table {
	font-size: 0.8em;
}

.wp-block-table .wp-element-caption,
.wp-block-table .wp-element-caption a {
	color: #aaa;
	text-decoration: none;
}

/* 横並びになったボックスの高さを揃える */
.arrange-height-box {
	height: 100%;
}

.arrange-height-box .cap_box_content {
	height: calc(100% - 40px + 2px); /* 40pxは見出し 2pxはボーダー */
}

/******************************
広告関連タグ
******************************/

/* JSリンク */
.jump {
    cursor: pointer;
    text-decoration: underline;
    color: #006ccc;
}

.jump:hover {
    color: #ccc;
}

/* 広告ボタン */
[class*=is-style-btn_] span.jump {
    background: #28c117;
    display: inline-block;
    letter-spacing: var(--swl-letter_spacing, 1px);
    line-height: 1.5;
	font-weight: bold;
    margin: 0;
    min-width: 80%;
    padding: 0.75em 1.5em;
    position: relative;
    text-decoration: none;
	color: #fff;
}

@media (min-width: 600px) {
    [class*=is-style-btn_] span.web {
        min-width: 40%;
    }
}