@charset "UTF-8";
/* CSS Document */
/*============================
 フォント
【英語】
Medium
font-family: brandon-grotesque, sans-serif;
font-weight: 500;
font-style: normal;

Bold
font-family: brandon-grotesque, sans-serif;
font-weight: 700;
font-style: normal;

【日本語】
Regular
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 400;
font-style: normal;

Medium
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 500;
font-style: normal;

Bold
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 700;
font-style: normal;
============================*/
/*============================
 BLOG
============================*/
.postlist_container{
	padding: 122px 80px 93px;
}

.postlist_heading{
	margin-bottom: 74px;
}

.postlist_artcle{
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 85px;
}

.postlist_artcle .swiper-slide{
	width: auto;
}

.postlist_artcle_item{
	width: 360px;
}

.postlist_artcle_item a{
	transition: 0.3s ease;
}

.postlist_artcle_item a:hover{
	opacity: 0.5;
}

.postlist_artcle_image{
	position: relative;
	margin-bottom: 14px;
	overflow: hidden;
	border-radius: 10px;
}

.postlist_artcle .swiper-slide:first-of-type .postlist_artcle_image::before{
	content: "NEW";
	position: absolute;
	top: -5px;
	left: -36px;
	z-index: 2;
	transform: rotate(315deg);
	width: 115px;
	height: 54px;
	background-color: #ED621E;
	color: var(--white-color-primary);
	font-size: 21px;
	text-align: center;
	line-height: 71px;
} 
/* 
.archive_postlist .postlist_artcle_item:first-of-type .postlist_artcle_image::before{
	content: "NEW";
	position: absolute;
	top: -5px;
	left: -36px;
	z-index: 2;
	transform: rotate(315deg);
	width: 115px;
	height: 54px;
	background-color: #ED621E;
	color: var(--white-color-primary);
	font-size: 21px;
	text-align: center;
	line-height: 71px;
}*/

.postlist_artcle_image img{
	width: 100%;
	height: 200px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	object-fit: cover;
	object-position: center;
}

.postlist_artcle_text h3{
	color: var(--black-color-primary);
	font-size: 18px;
	letter-spacing: 0.061em;
	line-height: 31px;
}

.postlist_artcle_text p{
	margin-top: 11px;
	color: #A9A9A9;
	font-size: 15px;
	letter-spacing: 0.061em;
}

.postlist_artcle_category{
	display: inline-block;
    font-size: 12px;
    color: var(--white-color-primary);
    padding: 0 10px;
    margin-bottom: 6px;
    background-color: var(--black-color-primary);
}


/* SM */
@media screen and (max-width: 639px) {
	.postlist_container{
		padding: 40px 0 60px;
	}

	.postlist_heading{
		margin-bottom: 30px;
	}

	.postlist_artcle{
		flex-wrap: nowrap;
	}

	.postlist_artcle .swiper-slide{
		width: 100%;
	}

	.postlist_artcle_item{
		width: 100%;
		margin-bottom: 0;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 36px; /* ボタンの幅 */
		height: 36px; /* ボタンの高さ */
		background-size: 36px 36px; /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
		margin-top: -24px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
		top:50%;
	}
	.swiper-button-next {
		background-image: url("../image/common/postlist_arrow-right.svg");
	}
	.swiper-button-prev {
		left: 10px;

		right: auto;
		background-image: url("../image/common/postlist_arrow-left.svg");
	}
}
@media screen and (min-width: 640px) {
	.swiper-button-prev,
	.swiper-button-next {
		display:none;
	}
}


/*============================
 FOOTER
============================*/
/* FOOTER_TOP */
.footer_top_container{
	justify-content: space-around;
	align-items: center;
	padding: 67px 36px;
	background-color: #D6D6D6;
}

.footer_top_inner{
	position: relative;
	justify-content: center;
	align-items: center;
	width: 33%
}

.footer_top_inner:nth-of-type(2){
	width: 34%;
	text-align: center;
}

.footer_top_inner:nth-of-type(2) .footer_top_text{
	margin-right: 0;
}

.footer_top_inner:nth-of-type(2)::before,
.footer_top_inner:nth-of-type(2)::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	width: 1px;
	height: 111px;
	background-color: #707070;
}

.footer_top_inner:nth-of-type(2)::before{
	left: 0;
}

.footer_top_inner:nth-of-type(2)::after{
	right: 0;
}

.footer_top_inner_icon{
	width: 88px;
	margin-right: 21px;
}

.footer_top_text{
	margin-right: 34px;
}

.footer_top_text_big{
	font-size: 40px;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.footer_top_text_small{
	font-size: 14px;
}

.footer_top_inner_qr{
	width: 93px;
}


/* FOOTER_BOTTOM */
.footer_bottom_container{
	padding: 120px 80px 104px;
	border-bottom: solid 1px var(--white-color-primary);
	background-color: var(--black-color-primary);
	color: var(--white-color-primary);
}

.footer_bottom_container a{
	color: var(--white-color-primary);
	font-size: 15px;
}

.footer_bottom_container p{
	font-weight: 500;
}

.footer_bottom_left{
	margin-right: 139px;
	margin-left: 43px;
}

.footer_bottom_heading{
	margin-bottom: 21px;
	font-size: 20px;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.footer_bottom_center{
	margin-right: auto
}

.footer_bottom_address{
	margin-right: 79px;
}

.footer_bottom_address p{
	letter-spacing: 0.061em;
	line-height: 27px;
}

.footer_bottom_sitemap ul li{
	margin-bottom: 6px;
}

.footer_bottom_right a{
	vertical-align: middle;
}

.footer_bottom_right a img{
	width: 24px;
	margin-right: 13px;
}

.footer_bottom_sns{
	margin-bottom: 37px;
}

.footer_bottom_link a{
	display: block;
}

.footer_bottom_link a:first-of-type{
	margin-bottom: 10px;
}

.footer_copyright{
	padding: 12px 0 10px;
	background-color: var(--black-color-primary);
	color: var(--white-color-primary);
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.061em;
}

/* SM */
@media screen and (max-width: 639px) {
	/* FOOTER_TOP */
	.footer_top_container{
		display: none;
	}

	/* FOOTER_BOTTOM */
	.footer_bottom_container{
		padding: 40px 0 60px;
	}

	.footer_bottom_container a,
	.footer_bottom_container p{
		font-size: 12px;
		font-weight: 400;
	}

	.footer_bottom_inner{
		flex-direction: column;
	}

	.footer_bottom_left{
		width: 120px;
		margin: 0 0 15px 0;
	}

	.footer_bottom_heading{
		margin-bottom: 5px;
		font-size: 16px;
	}

	.footer_bottom_center{
		flex-direction: column;
		margin-right: 0;
	}

	.footer_bottom_center ul li{
		margin-bottom: 0;
	}

	.footer_bottom_address{
		margin-right: 0;
		margin-bottom: 20px;
	}

	.footer_bottom_address p{
		line-height: 22px;
	}

	.footer_bottom_sitemap{
		margin-bottom: 20px;
	}

	.footer_bottom_right a img{
		width: 16px;
		margin-right: 6px;
	}

	.footer_bottom_sns{
		margin-bottom: 20px;
	}

	.footer_copyright{
		font-size: 9px;
	}
}
