@charset "utf-8";

/*	ビジュアル
------------------------------*/
#visual {
	padding: 90px 0;
	margin-bottom: 60px;
	background: url(../img/bg_navy.png) repeat left top;
	overflow: hidden;
}
#visual .visual-hd {
	margin-bottom: 0;
	color: #fff;
}
#visual .visual-hd-en {
	color: #fff;
    font-size: clamp(1.75rem, -0.278rem + 8.65vw, 3.875rem);
}
#visual .visual-hd-ja {
    font-size: clamp(0.875rem, 0.517rem + 1.53vw, 1.25rem);
}
#visual .visual-hd-ja::before {
	vertical-align: middle;
	background-color: #fff;
}
#visual .container::after {
	content: "";
	display: block;
	width: 243px;
	height: 360px;
	background: url(../img/logomark_sub.svg) no-repeat right center;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
@media only screen and (max-width: 480px) {

#visual {
	padding: 60px 0;
	margin-bottom: 30px;
	background-size: 50px;
}
#visual .container::after {
	width: 148px;
    height: 220px;
}

}


/*	記事一覧
------------------------------*/
#news {
    justify-content: space-between;
}
.news-inner {
	width: calc(100% - 400px);
}
.sidebar {
	width: 320px;
}
.news-item {
	padding: 30px 40px;
	border-bottom: 1px dotted #646464;
}
.news-item:first-child {
	padding-top: 0;
}
.news-date {
    display: inline-block;
    margin-right: 40px;
    font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-x-small);
    letter-spacing: 0.32em;
    line-height: 1;
}
.news-tag {
	display: inline-block;
}
.news-tag-item {
	display: inline-block;
}
.news-tag-item + .news-tag-item::before {
	content: ",";
	display: inline-block;
	margin: 0 6px;
}
.news-tag a {
    font-size: var(--font-size-small);
	font-weight: var(--font-weight-600);
}
.news-title {
	margin-top: 8px;
	line-height: 1.6;
}
.news-title a {
	color: var(--color-black-txt);
	font-weight: var(--font-weight-600);
}
.news-tag li a:hover,
.news-title a:hover {
	text-decoration: underline;
}
.sidebar-inner {
	position: -webkit-sticky;
	position: sticky;
	top: 40px;
}
.sidebar-item {
	margin-top: 40px;
}
.sidebar-item:first-child {
	margin-top: 0;
}
.sidebar-hd {
	padding: 8px 20px;
    margin-bottom: 16px;
	color: #fafafa;
    font-weight: var(--font-weight-600);
	-webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: var(--color-grey);
    position: relative;
}
.sidebar ul {
	padding-left: 20px;
}
.sidebar li::before {
	content: "-";
	display: inline-block;
	margin-right: 6px;
}
.sidebar li a {
	color: var(--color-black-txt);
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-600);
}
.sidebar li a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 1024px) {

.news-inner {
	width: calc(100% - 260px);
}
.news-item {
	padding: 30px 0;
}
.sidebar {
	width: 220px;
}

}
@media only screen and (max-width: 768px) {

.news-inner {
	width: 100%;
}
.sidebar {
	width: 100%;
    margin-top: 60px;
}

}
@media only screen and (max-width: 480px) {

.news-item {
    padding: 20px 0;
}
.news-date {
    margin-right: 20px;
}

}


/*	ページネーション
------------------------------*/
.wp-pagenavi {
	margin-top: 60px;
    text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: inline-block;
    margin: 0 12px;
    width: 46px;
    height: 46px;
    padding-top: 18px;
    color: var(--color-black-txt);
    font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-small);
    letter-spacing: normal;
    line-height: 1;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    background-color: var(--color-black-border);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}
.wp-pagenavi .current,
.wp-pagenavi .page:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
    color: #fff;
    background-color: var(--color-navy);
}
@media only screen and (max-width: 480px) {

.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last {
    width: 36px;
    height: 36px;
    margin: 0 8px;
    padding-top: 14px;
}

}

