@charset "UTF-8";
/********************************************************************************

page-guide.css　設定ガイド用css

********************************************************************************/

/*######################################################################
 一覧
######################################################################*/
/*============================================================
 一覧ブロック
*============================================================*/
#page-guide-list #sec-post-list {
	margin-bottom: 88px;
}
#page-guide-list #sec-post-list .list {
	margin-bottom: 24px;
}
#page-guide-list #sec-post-list .item {
	display: block;
	transition: all .3s;
	margin-bottom: 24px;
	background: #fff;
	padding: 20px 96px 20px 24px;
	border-radius: 16px;
}
#page-guide-list #sec-post-list .item:hover {
	opacity: 0.6;
}
#page-guide-list #sec-post-list .item h2 {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 0;
}

/*============================================================
 カテゴリーブロック
*============================================================*/
#page-guide-list #sec-category {
	background: #fff;
	padding: 24px 0 80px;
}
#page-guide-list #sec-category h2 {
	text-align: center;
	margin-bottom: 24px;
}
#page-guide-list #sec-category .list {
	gap: 24px 40px;
}
#page-guide-list #sec-category .item {
	transition: all .3s;
	width: 48%;
	background: var(--common-color-background1);
	border-radius: 16px;
	padding: 24px 16px;
	display: block;
}
#page-guide-list #sec-category .item:hover {
	opacity: 0.7;
}
#page-guide-list #sec-category .item h3 {
	margin-bottom: 0;
}

/*######################################################################
 詳細
######################################################################*/
/*============================================================
 コンテンツ
*============================================================*/
#page-guide #sec-post .inner {
	padding: 0;
}
#page-guide #sec-post .attention {
	background: #fff;
	padding: 24px;
	font-size: 14px;
	border-radius: 8px;
	color: var(--common-color-text);
}
#page-guide #sec-post .attention .title {
	font-weight: bold;
	margin-bottom: 16px;
}
#page-guide #sec-post .attention .title img {
	margin-right: 4px;
	margin-top: -2px;
}

/*============================================================
 導線
*============================================================*/
#page-guide #sec-conductor .inner {
	padding: 0;
}
#page-guide #sec-conductor .links {
	gap: 40px;
}
#page-guide #sec-conductor .links a {
	display: inline-block;
	font-weight: bold;
	background: var(--common-color-sub);
	color: #fff;
	border-radius: 80px;
	width: 240px;
	line-height: 1.6;
	padding: 15px 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}
#page-guide #sec-conductor .links a.prev:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-arrow-white.svg);
	background-size: contain;
	width: 24px;
	height: 24px;
	top: 17px;
	transform: rotate(180deg);
	left: 16px;
}
#page-guide #sec-conductor .links a.next:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-arrow-white.svg);
	background-size: contain;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translatey(-50%);
	right: 16px;
}


/*============================================================
 サイドバー 
*============================================================*/
#page-guide #sidebar .related-post {
	padding-bottom: 32px;
	margin-bottom: 32px;
	position: relative;
}
#page-guide #sidebar .related-post:before {
	position: absolute;
	content: "";
	width: 96px;
	height: 2px;
	background: #ccc;
	left: 50%;
	transform: translatex(-50%);
	bottom: 0;
}

#page-guide #sidebar .other {
	background: #fff;
	border-radius: 16px;
	padding: 16px 10px 24px;
}
#page-guide #sidebar .other .list {
	
}
#page-guide #sidebar .other .item {
	display: block;
	transition: all .3s;
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
}
#page-guide #sidebar .other .item:last-child {
	margin-bottom: 0;
}
#page-guide #sidebar .other .item:before {
	position: absolute;
	content: "";
	background: url(../images/common/icon-arrow.svg);
	background-size: contain;
	width: 16px;
	height: 16px;
	left: 0;
	top: 50%;
	transform: translatey(-50%);
}
#page-guide #sidebar .other .item:hover {
	opacity: 0.7;
}
#page-guide #sidebar #cta-glossary {
	padding: 40px 0 0!important;
	background: transparent!important;
}
#page-guide #sidebar #cta-glossary .inner {
	padding: 24px 14px;
}
#page-guide #sidebar #cta-glossary h2 {
	font-size: 16px;
}
#page-guide #sidebar #cta-glossary .bg-img {
	display: none;
}
#page-guide #sidebar #cta-glossary .icon {
	width: 40px;
	margin: 0 auto 8px;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Tablet
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 1128px) {
    /*######################################################################
     一覧
    ######################################################################*/
	#page-guide-list #sec-category .list {
		gap: 24px;
	}
}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 767px) {
    /*######################################################################
     一覧
    ######################################################################*/
    /*============================================================
      一覧ブロック
    *============================================================*/
	#page-guide-list #sec-post-list {
		margin-bottom: 48px;
	}
	#page-guide-list #sec-post-list .list {
		margin-bottom: 16px;
	}
	#page-guide-list #sec-post-list .item {
		max-width: 480px;
		margin: 0 auto 16px;
		padding: 16px 36px 16px 12px;
	}
	#page-guide-list #sec-post-list .item:before {
		right: 8px;
	}
	#page-guide-list #sec-post-list .item h2 {
		font-size: 16px;
	}
	
    /*============================================================
      カテゴリーブロック
    *============================================================*/
	#page-guide-list #sec-category .list {
		justify-content: center;
	}
	#page-guide-list #sec-category .item {
		width: 100%;
		max-width: 480px;
		padding: 16px;
	}
	#page-guide-list #sec-category .item h3 {
		font-size: 18px;
	}


    /*######################################################################
     詳細
    ######################################################################*/
	#page-guide #sidebar .other {
		margin-bottom: 16px;
	}
	#page-guide #sidebar .other .title:before {
		display: none;
	}
	
}

