@charset "utf-8";
/* CSS Document */
/*====================
 - 1280px〜：大型PC
 - 960px〜1279px：小型PC
 - 600px〜959px：タブレット
 - 480px〜599px：スマートフォン横
 - 〜479px：スマートフォン縦
====================*/

/***** Works_news_common *****/
.works_content {
	padding: 16rem 0 0 0;
}
.news_content{
	padding: 8rem 0 0 0;
}

/*** postLink ***/
.postLink{
	display: flex;
	justify-content: center;
	margin-top: 6rem;
}
.postLink a{
	display: inline-block;
	border-radius: .4rem;
	transition: all .3s;
}
.postLink_back,.postLink_prev,.postLink_next{
	background-color: #168C78;
	padding: 0.8rem 1.2rem;
	color: #fefefe;
	margin: 0 0.4rem;
}
.postLink a:hover{
	opacity: 0.7;
}
.postLink_next::before,
.postLink_next::after,
.postLink_prev::before,
.postLink_prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: ""!important;
  vertical-align: middle;
  font-size: 0;
}
.postLink_next::before,
.postLink_prev::before {
  width: 20px;
  height: 2px;
  background: #fefefe;
  left: 0;
  right: 0;
}
.postLink_next::after,
.postLink_prev::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
  left: .8rem;
  right: .8rem;
}
/* next */
.postLink_next{
	padding-right: 40px;		
}
.postLink_next::before {
  right: 0;
}
.postLink_next::after {
  right: 2px;
  transform: rotate(45deg);
}
/* prev */
.postLink_prev{
	padding-left: 40px;		
}
.postLink_prev::before {
  left: 0;
}
.postLink_prev::after {
  left: 2px;
  transform: rotate(-135deg);
}

/***** pagination *****/
.pagination{
	text-align: center;
	margin-top: 4rem;
	color: #757575;
}
.pagination .page-numbers{
	border: 1px solid #bbb;
	padding: 0.6rem 1.1rem;
	border-radius: 50%;
	transition: all .3s;
}
.pagination a.page-numbers:hover{
	color: #168C78;
	border: 1px solid #168C78;
}
.pagination span.page-numbers{
	background: #bbb;
	color: #fefefe;
}

/*** Works_common_index ***/
.works_content{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
main.works_colmn{
	margin-bottom: 6rem;
}
.works_colmn .item_wrap{
	position: relative;
}
.works_colmn img{
	border-radius: 4rem;
}
.works_list .post_textarea{
	margin: 1.2rem 0;
}
.archive .post_textarea h2{
	font-size: 2rem;
	margin-bottom: 1.6rem;
}
.single .post_textarea h2{
	font-size: 2.8rem;
	margin-bottom: 1.6rem;
}
.works_list_item .img_wrap a:hover{
	opacity: 0.7;
}
.post_info{
	display: flex;
	position: relative;
}
/* カテゴリ一覧 **/
.cat_list a {
    display: inline-block;
    vertical-align: middle;
    padding: 3px 1em;
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #fefefe;
    background-color: #5BC974;
    border-radius: 50vw;
    white-space: nowrap;
    text-align: center;
}
.cat_list a:hover{
	opacity: 0.7;
}
.archive aside h2,.single aside h2{
	border-bottom: 1px solid #ccc;
    padding-bottom: 0.8rem;
}
.archive aside h2 .black,.single aside h2 .black{
	font-size: 2rem;
}
.side_list{
	margin-bottom: 2.8rem;
}
.side_list li{
	margin-bottom: .8rem;
}
.side_list li a:hover{
	color: #5BC974;
}
.side_instagram{
	display: inline-block;
	border-radius: 4rem;
	padding: 1rem 2rem;
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
	color: #fefefe;
}
.side_instagram::before{
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	top: 1.3rem;
	background-image: url("../img/instagram_white.svg");
}
.side_instagram:hover{
	opacity: 0.7;
}
.side_instagram span{
	padding-left: 2.6rem;
}
@media screen and (min-width:680px) { 
	.works_list{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		gap: 3.2rem;
	}
}
@media screen and (min-width:1100px) { 
	.works_content{
		display: flex;
		justify-content: space-between;
		max-width: 1200px;
		width: 90%;
		margin: 0 auto;
	}
	aside{
		width: 32%;
		margin-left: 6%;
	}
}
@media screen and (max-width:679px) {
	.works_list{
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 4rem;
	}
}

/*** Works_single ***/
works_item{
	position: relative;
}
.works_item .post_textarea{
	margin-bottom: 4rem;
}
.archive .works_item .post_textarea h2 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}
.works_item .works_group{
	position: relative;
	padding-top: 6.8rem;
}
.works_colmn .slide_arrows{
	top: 2.8rem;
}
@media screen and (min-width:1100px) { 
	.single main.works_colmn{
		width: 68%;
	}
}

/***** news_common *****/
.news_header .wrap,.news_content{
	max-width: 1000px;
}
.news_content{
	width: 90%;
	margin: 0 auto;
}
.news_list h2.list_title{
	font-size: 1.6rem;
	font-weight: normal;
}
.archive .news_list h2{
	margin-bottom: 2rem;
}
.news_date{
	padding-right: 4vw;
	line-height: 2;
	font-weight: 700;
}
.news_list_item a{
	transition: all .3s;
}
.news_list_item a:hover,.news_list_link a:hover{
	color: #4EAE8B;
}
.archive .news_list .list_wrap{
	border-bottom: solid 1px #ddd;
	margin-bottom: 2.8rem;
}

@media screen and (min-width:769px) { 
	.archive .news_list .list_wrap a{
		display: flex;
		padding: 0 2vw;
	}
}

/***** news_home *****/
.home .news{
	max-width: 1200px;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.home .news .wrap{
	border: 1px solid #5BC974;
	border-radius: 4rem;
	padding: 1.6rem 2rem;
}
.home .news h2{
	margin-bottom: 0;
}
.home .news h2 .green{
	font-size: 2rem;
	margin-right: 2rem;
}
.home .news  h2 .green::before{
	top: 40%;
}
.home .news_list h2.list_title{
	font-size: 1.6rem;
	margin-bottom: 0;
}
@media screen and (min-width:769px) { 
	.home .news .news_title{
		width: 36%;
	}
}
@media screen and (max-width:999px) {
	.home .news .btn{
		display: none;
	}
}
@media screen and (max-width:768px) {
	.home .news h2{
		margin-bottom: .4rem;
	}
}
@media screen and (min-width:500px) {
	.home .news_list_item a{
		display: flex;
		align-items: center;
	}
}
@media screen and (min-width:769px) {
	.home .news .wrap{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}
@media screen and (min-width:1000px) {
	.home .news .wrap{
		border-radius: 6rem;
	}
	.home .news .news_box{
		width: 60%;
	}
	.home .news .btn{
		width: 280px;
	}
}
/***** category_news *****/
.archive .news_list {
	margin-bottom: 1rem;
}
.news_list_item{
	position: relative;
}

/*** プルダウン ***/
.pulldown {
	overflow: hidden;
	width: 280px;
	margin: 0 0 6rem;
	position: relative;
	margin-left: auto;
	border: 1px solid #fefefe;
	border-radius: 2px;
}
.pulldown select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: 1px solid #ccc;
	outline: none;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 38px 8px 12px;
}
.pulldown select::-ms-expand {
    display: none;
}
.pulldown::before {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0.4em;
    right: 0.8em;
    margin: auto;
    width: 0.6em;
    height: 0.6em;
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
	transition: .3s;
}

/***** news_single *****/
.news_post{
	position: relative;
}
.news_item h2.list_title{
	font-size: 2.8rem;

}