@charset "UTF-8";
/* CSS PC/SP共通レイアウト */

#news {
	width: 100%;
}
#news .menu{
	display: block;
	padding-top: 60px;
	margin-top: -60px;	
}
#news .news_list {
	width: 1000px;
	margin: 0px auto 150px;
	background-color: #FFF;
	border-radius: 40px;
	box-shadow: 20px 20px #EEE3CF;
	padding: 50px 100px 60px;
}
#news .news_list .category_menu {
	margin-bottom: 30px;
}
#news .news_list .category_menu ul {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
#news .news_list .category_menu ul li {
	width: 148px;
	margin-right: 15px;
}
#news .news_list .category_menu ul li:last-child {
	margin-right: 0px;
}
#news .news_list .category_menu ul li a {
	display: block;
	font-size: 1.6rem;
	color: #754C24;
	font-weight: 500;
	text-align: center;
	border: 1px solid #754C24;
	border-radius: 10px;
	padding: 3px 0px 5px;
}
#news .news_list .inner {
	margin-bottom: 50px;
}
#news .news_list .inner ul li {
	border-bottom: 1px solid #C69C6D;
}
#news .news_list .inner a {
	display:-webkit-box;
	display:flex;
	flex-wrap: wrap;
	width: 100%;
	font-size: 1.4rem;
	color: #754C24;
	padding: 18px 0px;
}
#news .news_list .inner .wrap {
	width: 180px;
	display:-webkit-box;
	display:flex;
	flex-wrap: wrap;
}
#news .news_list .inner .date {
	width: 96px;
}
#news .news_list .inner .category {
	width: 84px;
	text-align: center;
	border: 1px solid #754C24;
	border-radius: 5px;
}
#news .news_list .inner .title {
	width: calc(100% - 190px);
	padding-left: 20px;
}
#news .news_list .pagination {
	text-align:center;
}
#news .news_list .pagination .page-numbers{
	display: inline-block;
	width: 26px;
	font-size: 1.8rem;
	color: #C69C6D;
	font-weight: 500;
	text-align: center;
	line-height: 26px;
	margin: 0px 10px;
}
#news .news_list .pagination .dots{
	width: auto;
	margin: 0px 5px;
}

#news .news_list .pagination .current{
	color: #FFF;
	background-color: #C69C6D;
	border-radius: 5px;
}
#news .news_list .pagination .prev,
#news .news_list .pagination .next {
	width: 36px;
	line-height: 36px;
}

#news .news_detail {
	width: 1000px;
	margin: 0px auto 150px;
	background-color: #FFF;
	border-radius: 40px;
	box-shadow: 20px 20px #EEE3CF;
	padding: 50px 100px 60px;
}
#news .news_detail h1 {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid #C69C6D;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
#news .news_detail .wrap {
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	margin-bottom: 15px;
}
#news .news_detail .wrap .category {
	width: 90px;
	text-align: center;
	border: 1px solid #754C24;
	border-radius: 5px;
}
#news .news_detail .wrap .date {
	text-align: right;
}
#news .news_detail .text {
	font-size: 1.6rem;
	margin-bottom: 40px;
}
#news .news_detail .photo {
	margin-bottom: 10px;
}
#news .news_detail a{
	font-size: 1.6rem;
	color: #754C24;
	text-decoration: underline;
}

#news .bt_link {
	display: inline-block;
	background: url("../img/news/icon_link.png") no-repeat right center;
	margin-bottom: 40px;
	padding: 10px 30px 10px 0px;
}
#news .bt_link a {
	font-size: 1.6rem;
	color: #754C24;
	text-decoration: underline;
}
#news .bt_grp ul {
	display:-webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
}
#news .bt_grp ul li {
	width: 250px;
	margin-right: 25px;
}
#news .bt_grp ul li:last-child {
	margin-right: 0px;
}
#news .bt_grp ul li a {
	display: block;
	font-size: 1.6rem;
	color: #FFF;
	font-weight: 500;
	text-align: center;
	background-color: #C69C6D;
	border-radius: 20px;
	padding: 15px 0px 18px;
}
#news .bt_grp ul li:nth-child(2) a {
	background-color: #754C24;
}

/* スマホレイアウト */
@media (max-width: 639px) {
#news .news_list {
	width: auto;
	margin: 0px 5.33vw 15vw;
	border-radius: 5vw;
	box-shadow: none; 
	padding: 8vw 5.33vw 9vw;
}
#news .news_list .category_menu {
	margin-bottom: 1vw;
}
#news .news_list .category_menu ul {
	justify-content:center;
}
#news .news_list .category_menu ul li {
	width: 30%;
	margin-right: 4%;
	margin-bottom: 4%;
}
#news .news_list .category_menu ul li:nth-child(3n) {
	margin-right: 0%;
}
#news .news_list .category_menu ul li a {
	font-size: 4.27vw;
}
#news .news_list .inner {
	margin-bottom: 4vw;
}
#news .news_list .inner a {
	font-size: 3.73vw;
	color: #754C24;
	padding: 4vw 0px;
}
#news .news_list .inner .wrap {
	width: 100%;
	margin-bottom: 1vw;
}
#news .news_list .inner .date {
	width: 21vw;
}
#news .news_list .inner .category {
	width: 18vw;
	font-size: 3.2vw;
}
#news .news_list .inner .title {
	width: 100%;
	line-height: 1.3;
	padding-left: 0px;
}
#news .news_list .pagination {
	text-align:center;
}
#news .news_list .pagination .page-numbers{
	width: 6.6vw;
	font-size: 4.8vw;
	line-height: 6.93vw;
	margin: 0px 0.6vw;
}
#news .news_list .pagination .dots{
	width: auto;
	margin: 0px 0.3vw;
}
#news .news_list .pagination .current{
	color: #FFF;
	background-color: #C69C6D;
	border-radius: 5px;
}
#news .news_list .pagination .prev,
#news .news_list .pagination .next {
	width: 8vw;
	line-height: 6.93vw;
}
#news .news_detail {
	width: auto;
	margin: 0px 5.33vw 15vw;
	border-radius: 5vw;
	box-shadow: none;
	padding: 16vw 5.33vw 9vw;
	position: relative;
}
#news .news_detail h1 {
	font-size: 5.33vw;
	margin-bottom: 3vw;
	padding-bottom: 3vw;
}
#news .news_detail .wrap {
	font-size: 3.73vw;
	margin-bottom: 3vw;
	position: absolute;
	top: 8vw;
	left: 5.33vw;
	right: 5.33vw;
}
#news .news_detail .wrap .category {
	width: 18vw;
	font-size: 3.2vw;
	order: 2;
}
#news .news_detail .wrap .date {
	order: 1;
	text-align: left;
}
#news .news_detail .text {
	font-size: 3.73vw;
	margin-bottom: 6vw;
}
#news .news_detail .photo {
	margin-bottom: 2vw;
}
#news .news_detail .photo img {
	width: 100%;
}
#news .bt_link {
	margin-bottom: 9vw;
	padding: 10px 30px 10px 0px;
}
#news .bt_link a {
	font-size: 4vw;
}
#news .bt_grp ul {
	align-items: center;
}
#news .bt_grp ul li {
	width: 42.67vw;
	margin-right: 4vw;
}
#news .bt_grp ul li a {
	font-size: 4vw;
	border-radius: 10px;
	padding: 2.7vw 0px 3vw;
}
#news .bt_grp ul li:first-child {
	width: 36px;
	height: 36px;
}
#news .bt_grp ul li:first-child a {
	font-size: 0;
	line-height: 36px;
	background: url("../img/news/bt_arrow_left_2.png") no-repeat left top;
}
#news .bt_grp ul li:last-child {
	width: 36px;
	height: 36px;
}
#news .bt_grp ul li:last-child a {
		font-size: 0;
	line-height: 36px;
	background: url("../img/news/bt_arrow_right_2.png") no-repeat left top;
	background-size: 36px;
}
}
