@charset "utf-8";
/* CSS Document */

/*----- footer 最下部固定 -----*/
#top{
	min-height: 100vh;
    position: relative;
    padding-bottom: 205px;
    box-sizing: border-box;
}
@media only screen and (max-width: 640px){
#top{
    padding-bottom: 280px;
}
#mainContent{
	padding-top: 20px!important;
}
}
/*----- パンくずリスト -----*/
#breadcrumb ul{
	display: flex;
	margin-top: 1rem;
}

#breadcrumb ul li {
	position: relative;
	padding-right: 0.875rem;
	text-decoration: none;
	margin-right: 0.875rem;
	font-size: 0.875rem;
}

#breadcrumb ul li a{
	color: #00639d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#breadcrumb ul li a:hover{
	color: #0082aa;
}

#breadcrumb ul li::after {
content: '';
display: block;
width: 4px; /* 矢印の大きさの指定 */
height: 4px; /* 矢印の大きさの指定 */
border-top: 1px solid #333; /* 矢印の太さの指定 */
border-left: 1px solid #333; /* 矢印の太さの指定 */
}
 
#breadcrumb ul .bc-list::after {
transform: rotate(135deg); /* 矢印の角度の指定 */
position: absolute; /* 矢印の位置の指定 */
right: 0; /* 矢印の位置の指定 */
top: 9px; /* 矢印の位置の指定 */
}

#breadcrumb ul li:last-child::after {
content: none;
}
@media only screen and (max-width: 640px){
#breadcrumb ul{
	display: block;
}
#breadcrumb ul li {
	margin-bottom: 0.275rem;
}
}
/*---------- コンテナバッグ 投稿機能追加 ----------*/

/*---------- コンテナバッグ基礎知識 記事一覧ページ ----------*/
.title-cb-archive{
    background: transparent;
    border-left: solid 5px #00639d;
    color: #5a5a5a;
	font-size: 1.125rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}
.cat-list-wrap{
	margin-bottom: 2rem;
}
.cat-list-wrap .cat-list-cb a{
    border-bottom: 1px dotted #dcdcdc;
	color: #333;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cat-list-wrap .cat-list-cb a:hover{
    opacity: 0.6;
}
.cat-list-wrap .cat-list-cb a p span{
    font-size: 0.875rem;
}

/*---------- コンテナバッグ基礎知識 記事詳細ページ ----------*/

/*----- メインコンテンツとサイドナビ横並び -----*/
.section-wrap-cb{
	display: flex;
	margin-top: 30px;
}
.section-wrap-cb .left-side-nav{
	width: 100%;
	max-width: 200px;
}
@media only screen and (max-width: 640px){
	.section-wrap-cb{
		display: block;
	}
	.section-wrap-cb .left-side-nav{
		width: 100%;
		max-width: 100%;
	}
}
/*----- サイドナビ カテゴリ一覧 -----*/
.section-wrap-cb .left-side-nav .side-nav-tit{
	border-bottom: 1px solid #0082aa;
	padding-bottom: 5px;
}
.section-wrap-cb .left-side-nav .side-nav-tit a{
	font-weight: bold;
	color: #333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.section-wrap-cb .left-side-nav .side-nav-tit a:hover{
	color: #0082aa;
}
.section-wrap-cb .left-side-nav ul li{
	font-size: 0.875rem;
	padding: 10px 0;
	border-bottom: 1px dotted #dcdcdc;
}
.section-wrap-cb .left-side-nav ul li a{
	color: #333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.section-wrap-cb .left-side-nav ul li a:hover{
	color: #0082aa;
}
.section-wrap-cb .left-side-nav ul li span{
	padding: 0 5px 0 0;
    color: #00639d;
    font-size: 0.75rem;
}
/*----- コンテンツ外側 -----*/
.wrap-cb-post{
	padding: 0 40px 40px 0;
	width: 100%;
}
/*----- 投稿日 -----*/
.date-cb-post{
	margin-bottom: 0.5rem;
}
/*----- 記事タイトル -----*/
.title-cb-post {
    font-size: 1.25rem;
    color: #00639d;
    border-bottom: solid 2px #bfb79b;
    position: relative;
	margin-bottom: 1.25rem;
}
.title-cb-post::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 2px #00639d;
    bottom: -2px;
    width: 30%;
}
/*----- カテゴリ -----*/
.cat-cb-post{
	margin-bottom: 1.25rem;
}
.cat-cb-post a{
    background-color: #5a5a5a;
    padding: 5px 10px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cat-cb-post a:hover{
    background-color: #8a8a8a;
}
/*----- 記事内容 -----*/
.cont-cb-post p{
	font-size: 0.875rem;
}
.cont-cb-post img{
	max-width: 980px;
}

/*----- 次の記事、前の記事 -----*/
.post-prev-next{
	display: flex;
	margin: 1.25rem 0 5rem 0;
}
.post-prev-next .is-prev,.post-prev-next .is-next{
	width: 50%;
    border: 1px solid #dcdcdc;
}
.post-prev-next .is-prev .inner-prev,.post-prev-next .is-next .inner-next{
	margin: 10px 20px;
}
.post-prev-next li + li{
    border-left: none!important;
}
.post-prev-next .is-prev .link-title,.post-prev-next .is-next .link-title{
	font-size: 1.0rem;
    margin: 0;
    margin-bottom: 1rem;
    color: #666;
}
.post-prev-next .is-next .link-title{
	text-align: right;
}
.post-prev-next .is-prev .trans,.post-prev-next .is-next .trans{
	display: flex;
	color: #666;
}
.post-prev-next .is-prev .trans .item-img,.post-prev-next .is-next .trans .item-img{
	margin: 0;
}
.post-prev-next .is-prev .trans .item-content{
	margin-left: 1rem;
}
.post-prev-next .is-next .trans{
	flex-direction: row-reverse;
}
.post-prev-next .is-next .trans .item-content{
	margin-right: 1rem;;
}
.trans .item-content .text-prev-next{
	margin-bottom: 1rem;
}
.trans .item-content .item-title{
    margin: 0;
    margin-bottom: 0.5rem;
    color: #666;
	line-height: 1.6;
	font-size: 1rem;
}
.trans .item-content .item-time{
	font-size: 0.875rem;
}
.trans figure img{
    max-width: 200px;
}

.back-cross-c{
	margin-bottom: 5rem;
}
.btn-to-cross-c{
    background-color: #00639d;
    color: #fff!important;
    display: block;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
	margin: 0 auto;
	text-align: center;
	max-width: 340px;
	width: 100%;
	border-radius: 3rem;
	margin-top: 3rem;
	margin-bottom: 5rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-to-cross-c:hover{
	background-color: #0082aa;
}
/*---------- コンテナバッグ基礎知識 カテゴリ一覧ページ ----------*/
.cat-icon{
	background-color: #dcdcdc;
    border-radius: 20px;
    color: #333;
    display: inline-block;
    font-size: 0.675rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 1rem;
    text-align: center;
}
.cat-date{
	font-size: 0.875rem
}
.cat-cont-cb{
    border-bottom: 1px dotted #dcdcdc;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.cat-cont-cb a{
    color: #333;
	display: flex;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cat-cont-cb a:hover{
    opacity: 0.6;
}
.cat-cont-cb figure{
	max-width: 140px;
    width: 100%;
    margin-right: 1rem;
}
.cat-cont-cb .text-center-center{
	align-items: center;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 640px){
.cat-cont-cb a{
	display: block;
}
.cat-cont-cb figure{
	margin-bottom: 1rem;
    margin-right: 0;
}
}

/*----- フローティングバナー -----*/
.floating-banner {
    position: fixed; /* 追従 */
    z-index: 99999; /* 他の要素の下に隠れないように */
    right: 0; /* バナーの左右の位置 */
	bottom: 80px;
	width: 240px;
}
.floating-banner a{
    display: block;
}
.floating-banner a img:hover{
    opacity: 1!important;
}
.pc {
    width: 300px; /* バナーの横幅を指定 */
}
.sp {
    display: none; /* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 990px) { /* タブレット用のブレイクポイントを指定 */
    .pc {
        display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
    }
}

@media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
    .sp {
        display: block; /* 消していたスマホ用のバナーを表示させる */
        width: 100vw; /* スマホの画面幅いっぱいにバナーを表示 */
    }
    .floating-banner  {
        top: unset; /* PCで指定していた上下の位置指定をクリア */
        right: 0; /* 左右の隙間が空かないように */
        bottom: 0; /* 画面の最下部にぴったりくっつくように指定 */
		width: auto;
    }
}

/* PCで電話番号リンクを無効に */
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*----- footer 最下部固定 -----*/
footer{
	position: absolute;
	bottom: 0;
}
/*---------- レスポンシブ対応 最大640px ----------*/
@media only screen and (max-width: 640px){
/*----- 記事内容 画像の大きさ調整 -----*/
.cont-cb-post img{
	max-width: 100%;
}
/*----- 次の記事、前の記事 並び変更 -----*/
.post-prev-next{
	display: block;
}
.post-prev-next .is-prev,.post-prev-next .is-next{
	width: 100%;
}
.post-prev-next .is-prev{
	margin-bottom: 1rem;
}
.post-prev-next li + li{
    border-left: 1px solid #dcdcdc!important;
}
.trans figure img{
    max-width: 100px;
}
}

