@charset "utf-8";

/* ---------------------------------------- 
 - #recommend_select（一覧）
---------------------------------------- */
#recommend_select {
	width: 90%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 50px auto;
}
/* select_category */
.select_category {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.6rem;
	margin-left: auto;
}
.select_category li {
	position: relative;
	padding-left: 1.5em;
	margin-left: 1.5em;
}
.select_category li:first-child {
	padding-left: 0;
	margin-left: 0;
}
.select_category li::after {
    content: "";
    background-color: #c7c7c7;
    width: 1px;
    height: 22px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
}
.select_category li:first-child::after {
	display: none;
}
.select_category li.current {
	opacity: 0.6;
	pointer-events: none;
	color: #657568;
}
.select_category li span {
	cursor: pointer;
	display: block;
	transition: 0.3s;
}
.select_category li span:hover {
	opacity: 0.6;
}
@media screen and (max-width: 768px) {
	#recommend_select {
		display: block;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	/* select_category */
	.select_category {
		margin-top: 20px;
		justify-content: center;
	}
	.select_category li {
		padding-left: 1.0em;
		margin-left: 1.0em;
	}
}
@media screen and (max-width: 480px) {
	#recommend_select {
		width: 94%;
	}
	/* select_category */
	.select_category {
		font-size: 1.3rem;
		justify-content:flex-start;
	}
	.select_category li,
	.select_category li:first-child {
		padding-left: 0.8em;
		margin-left: 0.8em;
		letter-spacing: 0;
		width: calc(100% / 3 - 1.6em);
        margin-bottom: 1.0em;
	}
	.select_category li:first-child::after {
		display: block;
	}
}

/* ---------------------------------------- 
 - recommend（一覧）
---------------------------------------- */
#recommend{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 50px auto;
}
#recommend ul.list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: left;
	position: relative;
}
#recommend ul.list a {
	text-decoration: none;
}    
#recommend ul.list::after {
    content: "";
    display: block;
    width: 30.5%;
}
#recommend ul.list > li {
	width: 30.5%;
	max-width: 360px;
	padding-bottom: 65px;
}
#recommend ul.list > li .visual{
	width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    height: auto;
    position: relative;
	margin-bottom: 15px;
}
#recommend ul.list > li .visual::before {
    content: '';
    display: block;
    padding-top: 66.7%;
}
#recommend ul.list > li .visual img {
    transition: transform 0.5s ease-out;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
	margin: auto;	
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
    font-family: 'object-fit: cover';
}
#recommend ul.list > li a:hover .visual img {
    transform: scale(1.05);	    
}
#recommend ul.list > li .txt_box .category_box {
	display: flex;
	justify-content: space-around;
	margin-bottom: 0.5em;
	font-size: 1.4rem;
}
#recommend ul.list > li .txt_box .category_box .date {
	margin-right: auto;
	color:#5a5a5a;
}
#recommend ul.list > li .txt_box .category_box .category{
	margin-left: auto;
	color: #657568;
    font-weight: 400;
}
/* list_pager */
#recommend .list_pager {
	max-width:450px;
	margin:0 auto 80px;
}
#recommend .list_pager ul {
    display: flex;
	justify-content:center;	
	align-items: center;
}
#recommend .list_pager ul li {
	display:inline-block;
	padding:0 2px;
	font-size:1.4rem;
}
#recommend .list_pager ul li a {
	display:block;
	padding:5px;
	border:solid 1px #92a395;
	transition: all 0.3s;
	letter-spacing:0.1em;
	min-width: 50px;
	min-height: 50px;
	line-height: 38px;
    text-align: center;
    box-sizing: border-box;
	text-decoration: none;
	position: relative;
	height: 100%;
}
#recommend .list_pager ul li span {
	display:block;
	padding:5px;
	transition: .3s;
	letter-spacing:0.1em;
}
#recommend .list_pager ul li a:hover{
	opacity: 0.6;
}
#recommend .list_pager ul li a.active {
	background:#d0d1cc;
}
#recommend .list_pager ul li.prev a::after,
#recommend .list_pager ul li.next a::after{
    content: '';
    display: inline-block;
    background-size: contain;
    vertical-align: text-bottom;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
	left: 50%;
	width: 13px;
    height: 10px;
    background-image: url(/assets/images/common/ico_arw_next.svg);
    transform: translate(-50%, -50%);
    transition: .3s;
}
#recommend .list_pager ul li.prev a::after{
	background-image: url(/assets/images/common/ico_arw_prev.svg);
}
@media screen and (max-width: 768px) {
	#recommend{
		margin-top: 40px;
		margin-bottom: 50px;
	}
	#recommend ul.list {
		display: block;
		margin-bottom: 30px;
	}
	#recommend ul.list > li  {
		width: 100%;
		max-width: 100%;
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: solid 1px #b0b0b0;
	}
	#recommend ul.list > li a {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	#recommend ul.list > li .visual{
		width: 36%;
		margin-bottom: 0;
	}	
	#recommend ul.list > li .visual::before {
		padding-top: 100%;
	}
	#recommend ul.list > li .txt_box{
		width: 60%;
	}
	/* list_pager */
	#recommend .list_pager ul li {
		display:inline-block;
		padding:0 2px;
		font-size:1.3rem;
	}
	#recommend .list_pager ul li a {
		min-width: 36px;
		min-height: 36px;
		line-height: 24px;
	}
	#recommend .list_pager ul li span {
		padding:5px 0;
	}
}
@media screen and (max-width: 480px) {
	#recommend ul.list > li .txt_box .category_box {
		font-size: 1.2rem;
	}
	#recommend ul.list > li .txt_box .txt {
		font-size: 1.5rem;
		line-height: 1.6;
		margin-bottom: 0.5em;
	}
	/* list_pager */
	#recommend .list_pager {
		margin-bottom: 50px;
	}
	#recommend .list_pager ul li {
		font-size:1.3rem;
	}
}

/* ---------------------------------------- 
 - recommend_detail（詳細）
---------------------------------------- */
#recommend_detail {
	width: 90%;
	max-width: 750px;
	margin: 50px auto 100px;
	text-align: left;
}
.recommend_detail_ttl {
	margin: 0 auto 40px;
	text-align: left;
}
.recommend_detail_ttl .date {
    font-size: 1.4rem;
	color:#5a5a5a;
	margin-bottom: 1.0em;
}
.recommend_detail_ttl .ttl {
    font-size: 2.2rem;
	font-weight: 200;
	text-align: left;
	line-height: 1.6;
	margin-bottom: 0.8em;
}
.recommend_detail_ttl .category{
	color:#657568;
	font-weight: 400;
}
.recommend_detail_visual {
	margin-bottom: 35px;
}
.recommend_detail_box h1 {
    font-size: 2.2rem;
	font-weight: 400;
    line-height: 1.6;
	margin:1.5em 0;
}
.recommend_detail_box h2 {
    font-size: 1.8rem;
	font-weight: 400;
    line-height: 1.6;
	margin:1.5em 0;
}
.recommend_detail_box h3 {
	font-size: 1.6rem;
    font-weight: 400;
	margin:1.2em 0;
	line-height: 1.6;
}
.recommend_detail_box h4 {
	font-size: 1.4rem;
    font-weight: 400;
	margin:1.2em 0;
}
.recommend_detail_box h5 {
	font-size: 1.3rem;
    font-weight: 400;
	margin:1.2em 0;
}
.recommend_detail_box h6 {
	font-size: 1.2rem;
    font-weight: 400;
	margin:1.2em 0;
}
.recommend_detail_box a:hover {
	text-decoration: none;
}
.recommend_detail_box p {
	margin:1.0em 0;
}
.recommend_detail_box img {
	margin:1.0em 0;
	width: auto;
	max-width: 100%;
	height: auto;
}
.recommend_detail_box table {
	width: 100%;
	margin:1.0em 0;
	box-sizing: border-box;
	border-top: solid 1px #92a395;
	border-left: solid 1px #92a395;
	border-spacing: 0;
}
.recommend_detail_box table th {
	padding: 10px;
	box-sizing: border-box;
	border-right: solid 1px #92a395;
	border-bottom: solid 1px #92a395;
	background: #d0d1cc;
	vertical-align: middle;
}
.recommend_detail_box table td {
	padding: 10px;
	box-sizing: border-box;
	border-right: solid 1px #92a395;
	border-bottom: solid 1px #92a395;
	vertical-align: middle;
}
/* 見出しタイトル型 */
.recommend_detail_box .midashi {
    font-size: 2.2rem;
	font-weight: 200;
    line-height: 1.6;
	margin:1.5em 0;
	position: relative;
}
/* 罫線or1行スペース型 */
.recommend_detail_box hr{
	border: none;
	background-color: #92a395;
	height: 1px;
	margin-top:2.0em;
	margin-bottom:2.0em;
}
.recommend_detail_box .space{
	height: 2.0em;
	margin: 0 auto;
}
/* 画像+キャプション型 */
.recommend_detail_box .phtBox {
	margin-top:3.0em;
	margin-bottom:3.0em;
}
.recommend_detail_box .phtBox .caption {
	padding-top:0.5em;
	font-size: 1.3rem;
	text-align: center;
}
/* リンクボタン型 */
.recommend_detail_box .link_btn {
	text-align: center;
	margin: 3em 0;
}
/* リンクバナー型 */
.recommend_detail_box .bnr {
	text-align: center;
	margin: 3em 0;
}
.recommend_detail_box .bnr a {
	transition: .3s;
}
.recommend_detail_box .bnr a:hover {
    opacity: 0.8;
}
/* back_btn */
#recommend_detail .back_btn {
	text-align: center;
	margin-top: 75px;
}
@media screen and (max-width: 768px) {
	#recommend_detail {
		margin-top: 30px;
		margin-bottom: 50px;
	}
	.recommend_detail_ttl {
		margin-bottom: 25px;
		padding-bottom: 15px;
	}
	.recommend_detail_ttl .date {
		margin-bottom: 0.5em;
	}
	.recommend_detail_ttl .ttl {
		font-size: 1.6rem;
		margin-bottom: 0.7em;
	}
	.recommend_detail_visual {
		margin-bottom: 25px;
	}
	.recommend_detail_box h2 {
		font-size: 1.6rem;
	}
	.recommend_detail_box h3 {
		font-size: 1.5rem;
	}
	.recommend_detail_box table th {
		padding: 7px;
	}
	.recommend_detail_box table td {
		padding: 7px;
	}	
	/* 見出しタイトル型 */
	.recommend_detail_box .midashi {
		font-size: 1.7rem;
		margin:1.0em 0;
		padding-left: 25px;
	}
	.recommend_detail_box .midashi::before {
		width: 20px;
	}
	/* 罫線or1行スペース型 */
	.recommend_detail_box hr{
		margin-top:1.5em;
		margin-bottom:1.5em;
	}
	.recommend_detail_box .space{
		height: 1.5em;
	}
	/* 画像+キャプション型 */
	.recommend_detail_box .phtBox {
		margin-top:2.0em;
		margin-bottom:2.0em;
	}
	.recommend_detail_box .phtBox .caption {
		padding-top:0.2em;
		font-size: 1.2rem;
	}
	/* リンクボタン型 */
	.recommend_detail_box .link_btn {
		margin: 2em 0;
	}
	/* リンクバナー型 */
	.recommend_detail_box .bnr {
		margin: 2em 0;
	}
	/* back_btn */
	#recommend_detail .back_btn {
		margin-top: 45px;
	}
}