@charset "UTF-8";
/* CSS Document */
/* ttlArea */
.imgArea {
	background-image: url("../img/top/main01.webp");
}
.ttlArea .inner .h1Area .tit {
	padding-bottom: 15px;
	font-size: min(7vw,35px);
    line-height: 2;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
	position: relative;
}
.ttlArea  .tit:before {
	position: absolute;
    bottom: 0;
    left: 50%;
	transform: translateX(-50%);
    font-size:  min(4.8vw,20px);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 0.9;
    color: #419bd1;
}
.ttlArea .inner .h1Area .tit:before {
    content: "RESULTS";
}
/* archive-results */
/* w_catelistArea */
.w_catelistArea .inner {
	padding: 50px 40px 100px;
}
.w_catelistArea .inner h2 {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 30px;
	color: #005fb4;
}
.w_catelistArea .inner ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.w_catelistArea .inner ul::after {
	content: "";
	display: block;
	width: calc(100% / 4 - 10px);
	margin-bottom: 40px;
}
.w_catelistArea .inner ul li {
	width: calc(100% / 4 - 20px);
    margin: 15px 10px;
	background-color: #FFF;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #CCC;
    overflow: hidden;
}
.w_catelistArea .inner ul li a {
	display: block;
}
.w_catelistArea .inner ul li a .img {
	overflow: hidden;
	width: 100%;
}
.w_catelistArea .inner ul li a .img img {
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: 0.3s ease-in-out;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}
.w_catelistArea .inner ul li a:hover {
	opacity: 0.7;
}
.w_catelistArea .inner ul li a:hover .img img {
	transform: scale(1.1);
}
.w_catelistArea .inner ul li a .ttl {
	padding: 8px .8em 8px;
	font-size: min(3.5vw,16px);
	font-weight: 500;
	line-height: 1.2;
	color: #000;
}
.w_catelistArea .inner .btn {
	display: flex;
	justify-content: center;
	padding-top: 60px;
}
.w_catelistArea .inner .btn_b {
	display: inline-block;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	background-color: #005fb4;
	padding: 14px 40px 16px;
	border-radius: 50px;
	border: 1px solid #005fb4;
}
.w_catelistArea .inner .btn_b:hover {
	background-color: #fff;
	color: #005fb4;
}
/*タグ一覧*/
.resultsTagNav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.resultsTagNav a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #005fb4;
    color: #005fb4;
    text-decoration: none;
    font-size: min(3.5vw,12px);
    font-weight: 700;
    transition: 0.2s;
}

.resultsTagNav a:hover {
    background: #005fb4;
    color: #fff;
}

.resultsTagNav a.active {
    background: #005fb4;
    color: #fff;
}


/* 記事ページ */
/* w_singlArea */
.w_singlArea .w_inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 50px 40px 100px;
}

.w_singlArea .w_inner h1 {
	font-size: min(7vw,30px);
	font-weight: 700;
	line-height: 1.3;
	color: #005fb4;
	padding: 0 .5em 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #005fb4;
}
.resultsTagList {
	width: 98%;
	margin: 10px auto 40px;
	display: flex;
	flex-wrap: wrap;
}
.resultsTagList li {
	margin: 5px 5px 0 0;
}
.resultsTagList li a {
    display: inline-block;
    padding: 6px 14px;
    font-size: min(3.5vw,13px);
    background: #005fb4;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.resultsTagList li a:hover {
    background: #999;
    color: #CCC;
}

.w_singlArea .w_inner .wrapResults {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.w_singlArea .w_inner .wrapResults .photo {
	width: 50%;
}
.w_singlArea .w_inner .wrapResults .desc {
	width: 50%;
    padding: 0 2vw;
}
.w_singlArea .w_inner .photo .top .main_img {
	margin: 0 4px;
}

.w_singlArea .w_inner .photo .top .main_img img {
	object-fit: cover;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.w_singlArea .w_inner .photo .top .main_img a:hover img {
	opacity: 0.75;
}

.w_singlArea .w_inner .photo .bottom .s_img a:hover img {
	opacity: 0.75;
}

.w_singlArea .w_inner .photo .bottom {
	padding-top: 15px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.w_singlArea .w_inner .photo .bottom .s_img {
	width: calc(100% / 4 - 8px);
	margin: 0 4px;
}

.w_singlArea .w_inner .photo .bottom .s_img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

/*.w_singlArea .w_inner .desc dl {
	border-top: 2px solid #005fb4;
	border-bottom: 2px solid #005fb4;
}*/

.w_singlArea .w_inner .desc dl div {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-bottom: 1px dashed #acc7dd;
    padding: 5px 0;
}

.w_singlArea .w_inner .desc dl div dt {
	width: 8em;
    font-weight: 700;
    color: #419bd1;
}

.w_singlArea .w_inner .desc dl div dd {
	width: calc(100% - 8em);
	font-weight: 700;
}

.w_singlArea .w_inner .btn {
	display: flex;
	justify-content: center;
	padding-top: 80px;
}

.w_singlArea .w_inner .btn01 {
	padding-top: 60px;
}

.w_singlArea .w_inner .btn_b {
	display: inline-block;
	text-align: center;
	font-size: min(5.5vw,15px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	background-color: #419bd1;
	padding: 14px 40px 16px;
	border-radius: 50px;
	border: 1px solid #419bd1;
}

.w_singlArea .w_inner .btn_b:hover {
	background-color: #fff;
	color: #419bd1;
}


/* ページャー */
/* w_singlArea */
.pager {
	overflow: hidden;
	padding: 30px 40px;
	max-width: 1180px;
	margin: 0 auto;
	text-align: center;
}
.pager ul {
	font-size: min(3.5vw,18px);
	position: relative;
}
.pager ul li {
	position: absolute;
	top: 0;
}
.pager ul .prearrow {
	left: 0;
}
.pager ul .nextarrow {
	right: 0;
}
.pager span,
.pager a {
	padding: 5px 14px 6px;
	font-size: 16px;
	color: #005fb4;
	border: 1px solid #005fb4;
	border-radius: 100%;
	margin: 0 10px;
}
.pager span:hover,
.pager a:hover {
	opacity: .8;
}
.singleContainer .inner .pager a:hover {
	opacity: .8;
	background-color: transparent;
}
.prearrow a,
.nextarrow a {
	border: none;
}
/* w_catelistArea */
.pnavi {
	text-align: center;
	padding-top: 30px;
}
.w_catelistArea .page-numbers {
	display: inline-block;
	margin-right: 10px;
	padding: 0;
	width: 2rem;
	height: 2rem;
	text-align: center;
	line-height: 2rem;
	border-radius: 50%;
	color: #005fb4;
	border: 1px solid #005fb4;
	background: #fff;
	font-weight: 700;
	font-size: 12px;
}
.w_catelistArea a.page-numbers:hover {
	color: #fff;
	background-color: #005fb4;
	border-color: #005fb4;
}
.w_catelistArea .current {
	padding: 0;
	background: #005fb4;
	color: #fff;
	font-size: 12px;
}
.w_catelistArea .prev,
.w_catelistArea .next {
	border: 1px solid #fff;
	color: #005fb4;
	position: relative;
	font-size: 12px;
}
.w_catelistArea .prev:hover,
.w_catelistArea .next:hover  {
	color: #000 !important;
	background-color: #fff !important;
	border: 1px solid #fff !important;
}
.w_catelistArea a.next.page-numbers {
	margin-right: 0;
}
.w_catelistArea .dots {
	background: transparent;
	border: none;
}
@media screen and (max-width: 1000px) {

	/* 記事一覧ページ */
	/* w_catelistArea */
	.w_catelistArea .inner {
		padding: 50px 2vw;
	}
	.w_catelistArea .inner ul::after {
		width: calc(100% / 2 - 10px);
	}
	.w_catelistArea .inner ul li {
		width: calc(100% / 2 - 10px);
		margin: 15px 5px;
	}
	.w_catelistArea .inner .btn {
		padding-top: 40px;
	}
	.w_catelistArea .inner .btn_b {
		font-size: 14px;
	}
	/* 記事ページ */
	/* w_singlArea */
	.w_singlArea .w_inner {
		padding: 100px 6vw;
	}
	.w_singlArea .w_inner .wrapResults .photo {
		width: 100%;
		margin-bottom: 30px;
	}
	.w_singlArea .w_inner .wrapResults .desc {
		width: 100%;
	}
	.w_singlArea .w_inner .photo .top .main_img {
		margin: 0 4px;
	}
	.w_singlArea .w_inner .photo .top .main_img img {
		height: 400px;
	}
	.w_singlArea .w_inner .photo .bottom {
		padding-top: 10px;
	}
	.w_singlArea .w_inner .photo .bottom .s_img {
		width: calc(100% / 3 - 8px);
		margin: 4px;
	}
	.w_singlArea .w_inner .desc {
		padding-top: 40px;
	}
	.w_singlArea .w_inner .desc dl div {
		padding: 16px 0;
	}
	.w_singlArea .w_inner .btn01 {
		padding-top: 40px;
	}
	.w_singlArea .w_inner .btn_b {
		font-size: 14px;
	}
	/* ページャー */
	/* w_singlArea */
	.pnavi {
		position: relative;
		padding-top: 0;
		padding-bottom: 24px;
	}
	.pnavi .page-numbers {
		display: none;
	}
	.pnavi .prev {
		display: inline-block;
		position: absolute;
		left: 0;
	}
	.pnavi .next {
		display: inline-block;
		position: absolute;
		right: 0;
	}
}


@media screen and (max-width: 767px) {

	/* 記事一覧ページ */
	/* archive-works / taxonomy */
	/* w_catelistArea */
	.w_catelistArea .inner {
		padding-top: 0;
		padding-bottom: 80px;
	}
	.w_catelistArea .inner ul::after {
		display: none;
	}
	.w_catelistArea .inner ul li {
		margin-bottom: 30px;
	}
	.w_catelistArea .inner .btn {
		padding-top: 30px;
	}
	/* 記事ページ */
	/* w_singlArea */
	.w_singlArea .w_inner {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.w_singlArea .w_inner .photo .top .main_img img {
		height: inherit;
		aspect-ratio: 2 / 1.2;
	}
	.w_singlArea .w_inner .desc {
		padding-top: 30px;
	}
	.w_singlArea .w_inner .desc dl div dt {
		width: 140px;
	}
	.w_singlArea .w_inner .desc dl div dd {
		width: calc(100% - 140px);
	}
	.w_singlArea .w_inner .btn {
		padding-top: 12px;
	}
	.w_singlArea .w_inner .btn01 {
		padding-top: 30px;
	}
}

@media screen and (max-width: 600px) {

	/* 記事一覧ページ */
	/* archive-works / taxonomy */
	/* w_catelistArea */
	.w_catelistArea .inner {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.w_catelistArea .inner ul {
		width: 100%;
	}
	/* 記事ページ */
	/* w_singlArea */
	.w_singlArea .w_inner {
		padding-top: 0px;
		padding-bottom: 60px;
	}
	.w_singlArea .w_inner .photo .top .main_img img {
		aspect-ratio: 2 / 1.4;
	}
	.w_singlArea .w_inner .photo .bottom {
		padding-top: 6px;
	}
	.w_singlArea .w_inner .photo .bottom .s_img {
		width: calc(100% / 2 - 8px);
		margin: 4px;
	}
	.w_singlArea .w_inner .desc dl div {
		flex-direction: column;
	}
	.w_singlArea .w_inner .desc dl div dt {
		width: 100%;
		padding-bottom: 10px;
	}
	.w_singlArea .w_inner .desc dl div dd {
		width: 100%;
	}
}


