@charset "UTF-8";

/* ---------------------------------------
  お知らせ
-----------------------------------------*/

/* mv
--------------------------------*/
#sec_mv .mv_img {
	background-image: url(../img/topics/pagettl_img_pc.jpg);
}

@media screen and (max-width: 768px) {
	#sec_mv .mv_img {
		background-image: url(../img/topics/pagettl_img_sp.jpg);
	}
}


/* topics
--------------------------------*/
#sec_topics {
	padding: 40px 0 150px;
}

#sec_topics .secttl {
	position: relative;
	text-align: center;
	font-size: 2.2rem;
	letter-spacing: 0.16em;
	margin-bottom: 45px;
}

#sec_topics .topics_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#sec_topics .topics_list .item {
	width: 384px;
}

#sec_topics .topics_list .item a {
	display: block;
}

#sec_topics .topics_list .item .thumb {
	width: 100%;
	height: 256px;
	overflow: hidden;

}

#sec_topics .topics_list .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: .3s ease;
}

#sec_topics .topics_list .item .txtwrap {
	margin-top: 45px;
}

#sec_topics .topics_list .item .txtwrap .info {
	display: flex;
	align-items: flex-start;
}

#sec_topics .topics_list .item .txtwrap .info .date {
	flex: 0 0 auto;
	font-size: 1.3rem;
	line-height: 1.4;
	margin-right: 1.4em;
	transition: .3s ease;
}

#sec_topics .topics_list .item .txtwrap .info .cate {
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0;
}

#sec_topics .topics_list .item .txtwrap .info .cate span {
	display: inline-block;
	padding: 0 .5em;
	background: linear-gradient(transparent 80%, #fff 80%);
}

#sec_topics .topics_list .item .ttl {
	font-size: 1.3rem;
	line-height: 2.15;
	letter-spacing: -0.02em;
	margin-top: 1em;
	transition: .3s ease;
}

@media screen and (min-width: 769px) {

	#sec_topics .topics_list .item:nth-child(n + 4) {
		margin-top: 25px;
	}

	/* #sec_topics .topics_list .item:nth-child(3n + 1) {
		padding-top: 40px;
	} */

	/* #sec_topics .topics_list .item:nth-child(3n - 1) {
		padding-top: 20px;
	} */

	#sec_topics .topics_list .item + .item:not(:nth-child(3n + 1)) {
		margin-left: 24px;
	}

	#sec_topics .topics_list .item a:hover .thumb img {
		transform: scale(1.1);
	}

	#sec_topics .topics_list .item a:hover .txtwrap .info .date,
	#sec_topics .topics_list .item a:hover .txtwrap .ttl {
		color: #9fa0a0;
	}
}

@media screen and (max-width: 768px) {
	#sec_topics {
		padding: 18vw 0 20vw;
	}

	#sec_topics .secttl {
		font-size: 4.27vw;
		margin-bottom: 10vw;
	}

	#sec_topics .topics_list {
		display: block;
		position: relative;
		width: 88vw;
		margin: 0 -2vw;
	}

	#sec_topics .topics_list .item {
		width: 84vw;
		margin: 0 2vw;
		opacity: 1 !important;
	}

	#sec_topics .topics_list .item + .item {
		margin-top: 13vw;
	}

	#sec_topics .topics_list .item .thumb {
		height: 56vw;
	}

	#sec_topics .topics_list .item .txtwrap {
		margin-top: 10vw;
	}

	#sec_topics .topics_list .item .txtwrap .info .date {
		width: 8em;
		font-size: 3.2vw;
		margin-right: 0;
	}

	#sec_topics .topics_list .item .txtwrap .info .cate {
		width: 58vw;
		font-size: 2.93vw;
	}

	#sec_topics .topics_list .item .txtwrap .info .cate span {
		margin-right: 2vw;
	}

	#sec_topics .topics_list .item .ttl {
		font-size: 3.2vw;
		margin-top: 3vw;
	}

}

/* pagenavi
--------------------------------*/

.wp-pagenavi {
	margin: 110px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
}

.wp-pagenavi a,
.wp-pagenavi span {
	font-size: 1.8rem;
	color: #000;
	width: 34px;
	height: 34px;
	line-height: 1;
	border-radius: 50%;
	margin: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease;
	position: relative;
}

.wp-pagenavi span.extend {
	width: auto;
	margin: 0;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	background-color: #fff;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	border: none;
	background-color: transparent !important;
	color: transparent !important;
	position: relative;
	border-radius: 0;
	display: block;
	width: 27px;
	margin: 0 25px;
}

.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .previouspostslink::before {
	content: "";
	width: 100%;
	height: 6px;
	border-bottom: 1px solid #000;
	position: absolute;
	top: 13px;
	transition: .3s ease;
}

.wp-pagenavi .nextpostslink {
	margin-right: 0;
}

.wp-pagenavi .nextpostslink::before {
	border-right: 1px solid #000;
	transform: skewx(45deg);
}

.wp-pagenavi .previouspostslink {
	margin-left: 0;
}

.wp-pagenavi .previouspostslink::before {
	border-left: 1px solid #000;
	transform: skewx(-45deg);
}

@media screen and (min-width: 768px) {
	.wp-pagenavi .nextpostslink:hover::before {
		transform: translateX(4px) skewx(45deg);
	}

	.wp-pagenavi .previouspostslink:hover::before {
		transform: translateX(-4px) skewx(-45deg);
	}
}

@media screen and (max-width: 767px) {
	.wp-pagenavi {
		margin: 18vw -2vw 0;
		padding-top: 10vw;
	}

	.wp-pagenavi a,
	.wp-pagenavi span {
		font-size: 3.2vw;
		width: 6.2vw;
		height: 6.2vw;
		margin: 0 1.6vw;
	}

	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .previouspostslink {
		width: 5.4vw;
		margin: 0;
		position: absolute;
		top: 0;
	}

	.wp-pagenavi .nextpostslink::before,
	.wp-pagenavi .previouspostslink::before {
		height: 1.2vw;
		top: 2.6vw;
	}

	.wp-pagenavi .nextpostslink {
		right: 3vw;
	}

	.wp-pagenavi .previouspostslink {
		left: 3vw;
	}

}

@keyframes line_anime_next {
	0% {
		left: 0;
		transform: scale(1, 1);
		transform-origin: right;
	}

	50% {
		transform: scale(0, 1);
		transform-origin: right;
	}

	51% {
		transform: scale(0, 1);
		transform-origin: left;
	}

	100% {
		transform: scale(1, 1);
		transform-origin: left;
	}
}

@keyframes line_anime_prev {
	0% {
		right: 0;
		transform: scale(1, 1);
		transform-origin: left;
	}

	50% {
		transform: scale(0, 1);
		transform-origin: left;
	}

	51% {
		transform: scale(0, 1);
		transform-origin: right;
	}

	100% {
		transform: scale(1, 1);
		transform-origin: right;
	}
}


/* detail
--------------------------------*/

.detail {
	width: 792px;
	margin: 0 auto;
}

/*header*/

.detail .header {
	margin-bottom: 110px;
}

.detail .header .info {
	display: flex;
	align-items: flex-start;
	margin-bottom: 36px;
}

.detail .header .info .date {
	flex: 0 0 auto;
	font-size: 1.3rem;
	line-height: 1.4;
	margin-right: 1.4em;
	transition: .3s ease;
}

.detail .header .info .cate {
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0;
}

.detail .header .info .cate span {
	display: inline-block;
	padding: 0 .5em;
	background: linear-gradient(transparent 80%, #fff 80%);
}

.detail .header .ttl {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.833;
	letter-spacing: 0.1em;
}


/*contents*/

.detail .contents > *:first-child {
	margin-top: 0 !important;
}

.detail .contents > *:last-child {
	margin-bottom: 0 !important;
}

.detail .contents h2,
.detail .contents h3,
.detail .contents h4 {
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.1em;
	position: relative;
}

.detail .contents h2 {
	color: #fff;
	font-size: 2rem;
	padding: .625em 25px;
	margin-top: 2.5em;
	margin-bottom: 1.5em;
	background-color: #000;
}

.detail .contents h3 {
	font-size: 1.8rem;
	padding: .766em 25px;
	margin-top: 2.5em;
	margin-bottom: 1.5em;
	background-color: #fff;
}

.detail .contents h4 {
	font-size: 1.6rem;
	margin-top: 2.5em;
	margin-bottom: 1.5em;
}

/*

.detail .contents h2 {
	font-size: 2.1rem;
	padding-left: 1.1em;
	margin-top: 2em;
	margin-bottom: 1.5em;
}

.detail .contents h2::before {
	content: "";
	width: 4px;
	height: 22px;
	background-color: #ffb100;
	position: absolute;
	left: 0;
	top: .3em;
}

.detail .contents h3 {
	font-size: 1.9rem;
	margin-top: 1.5em;
	margin-bottom: 1em;
}

.detail .contents h4 {
	font-weight: 700;
	font-size: 1.8rem;
	margin-top: 1em;
	margin-bottom: .5em;
}
*/

.detail .contents p:not(.btn) {
	font-weight: 700;
	color: #3e3a39;
	letter-spacing: 0;
	text-align: justify;
}

.detail .contents p + p {
	margin-top: 1em;
}

.detail .contents p:not(.btn) > a {
	text-decoration: underline;
	transition: .3s ease;
}

.detail .contents p img {
	display: block;
}

.detail .contents figure.img {
	margin: 70px auto;
}

.detail .contents figcaption {
	display: block;
	text-align: left;
	font-weight: 500;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-top: 1em;
}


/*hr*/

.detail .contents hr {
	display: block;
	width: 100%;
	height: 4px;
	border: none;
	margin: 70px 0;
	background: url(../img/topics/hr.svg) no-repeat 0 0;
}


/*col*/

.detail .contents .col2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 70px 0;
}

.detail .contents .col2 > * {
	display: block;
	width: 385px;
	margin: 0 !important;
}

/*pdf*/
.detail .contents .btnwrap {
	margin: 70px 0;
}

.detail .contents .btnwrap p {
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: .5em;
}

.detail .contents .btnwrap .btn_pdf a {
	display: block;
	width: 611px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: .2em;
	background-color: #000;
	padding: 22px 1em;
	transition: .3s ease;
}

/*box*/

.detail .contents .txtbox {
	padding: 32px 40px;
	background-color: #fff;
	margin: 70px 0;
}

/*link_blank*/

.detail .contents .link_blank {
	margin: 70px 0;
}

.detail .contents .link_blank a {
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid #000;
	padding: 26px 120px 26px 40px;
}

.detail .contents .link_blank a p {
	color: #000;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: 0;
}

.detail .contents .link_blank a .ico {
	width: 23px;
	height: 23px;
	background: url(../img/topics/ico_blank.svg) no-repeat left bottom / 18px auto;
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.detail .contents .link_blank a .ico::before {
	content: "";
	width: 10px;
	height: 10px;
	background: url(../img/topics/ico_blank_arw.svg) no-repeat center / 100% auto;
	position: absolute;
	right: 2px;
	top: 2px;
	transition: .3s ease;
	will-change: transform;
}

/*video_wrap*/

.detail .contents .video_wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	margin: 70px 0;
}

.detail .contents .video_wrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}


/*gmap*/

.detail .contents .gmap {
	width: 100%;
	height: 430px;
	position: relative;
	margin: 70px 0;
}

.detail .contents .gmap iframe,
.detail .contents .gmap .map-inner {
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%)
}

.detail .contents .gmap .map_btn {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.detail .contents .gmap .map_btn a {
	display: block;
	position: relative;
	color: #000;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 10px 60px 10px 25px;
	background-color: #fff;
	text-decoration: none;
}

.detail .contents .gmap .map_btn a::before {
	content: "";
	width: 2em;
	height: .4em;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	position: absolute;
	top: 14px;
	right: 16px;
	transform: skewx(45deg);
	transition: .3s ease;
}


/*戻るボタン*/
.detail .contents .btn.back {
	margin-top: 100px;
}

.detail .contents .btn.back a {
	padding: 0 4.75em 1.2em;
}

.detail .contents .btn.back a::before {
	border-right: none;
	border-left: 1px solid #000;
	right: auto;
	left: 1.2em;
	transform: skewx(-45deg);
}


@keyframes btnback_arw_anime1 {
	30% {
		transform: translateX(80%) skewx(-45deg);
		opacity: 0;
	}

	50% {
		transform: translateX(-50%) skewx(-45deg);
		opacity: 0;
	}

	70% {
		opacity: 1;
	}
}

@keyframes btnback_arw_anime2 {
	30% {
		opacity: 1;
	}

	50% {
		transform: translateX(-50%) skewx(-45deg);
		opacity: 0;
	}

	70% {
		transform: translateX(80%) skewx(-45deg);
		opacity: 0;
	}
}

@media screen and (min-width: 769px) {
	.detail .contents .btnwrap .btn_pdf a:hover {
		background-color: #4c4948;
	}

	.detail .contents .link_blank a:hover .ico::before {
		transform: translate(2px, -2px);
	}

	.detail .contents .gmap .map_btn a:hover::before {
		transform: skewx(45deg) translate(4px);
	}

	.detail .contents .btn.back a::before {
		animation: btnback_arw_anime1 0.6s ease-in-out forwards;
	}

	.detail .contents .btn.back a:hover::before {
		animation: btnback_arw_anime2 0.6s ease-in-out forwards;
	}
}

@media screen and (max-width: 768px) {
	#sec_topics.page_detail{
		padding-top: 0;
	}
	.detail {
		width: 100%;
	}

	/*header*/

	.detail .header {
		margin-bottom: 16vw;
	}

	.detail .header .info {
		margin-bottom: 5vw;
	}

	.detail .header .info .date {
		width: 8em;
		font-size: 3.2vw;
		margin-right: 0;
	}

	.detail .header .info .cate {
		width: 58vw;
		font-size: 2.93vw;
	}

	.detail .header .ttl {
		font-size: 4.666vw;
	}


	/*contents*/

	.detail .contents h2 {
		font-size: 4vw;
		padding: .625em 4.5vw;
	}

	.detail .contents h3 {
		font-size: 3.733vw;
		padding: .766em 4.5vw;
	}

	.detail .contents h4 {
		font-size: 3.466vw;
	}

	.detail .contents figure.img {
		margin: 13vw auto;
	}

	.detail .contents figcaption {
		font-size: 2.933vw;
	}


	/*hr*/

	.detail .contents hr {
		height: 1vw;
		margin: 13vw 0;
		background-size: auto 100%;
	}


	/*col*/

	.detail .contents .col2 {
		display: block;
		margin: 13vw 0;
	}

	.detail .contents .col2 > * {
		display: block;
		width: 100%;
		margin: 0 !important;
	}
	
	.detail .contents .col2 > * + *{
		margin-top: 13vw!important;
	}

	/*pdf*/
	.detail .contents .btnwrap {
		margin: 13vw 0;
	}

	.detail .contents .btnwrap p {
		margin-bottom: 1em;
	}

	.detail .contents .btnwrap .btn_pdf a {
		width: 100%;
		font-size: 3.466vw;
		padding: 5.8vw 1em;
	}

	/*box*/

	.detail .contents .txtbox {
		padding: 5vw 6vw;
		margin: 13vw 0;
	}

	/*link_blank*/

	.detail .contents .link_blank {
		margin: 13vw 0;
	}

	.detail .contents .link_blank a {
		padding: 4vw 16vw 4vw 6vw;
	}

	.detail .contents .link_blank a p {
		font-size: 3.2vw;
	}

	.detail .contents .link_blank a .ico {
		width: 4.6vw;
		height: 4.6vw;
		background: url(../img/topics/ico_blank.svg) no-repeat left bottom / 4vw auto;
		right: 6vw;
	}

	.detail .contents .link_blank a .ico::before {
		content: "";
		width: 2vw;
		height: 2vw;
		right: 0;
		top: 0;
	}

	/*video_wrap*/

	.detail .contents .video_wrap {
		margin: 13vw 0;
	}

	/*gmap*/

	.detail .contents .gmap {
		height: 45.6vw;
		margin: 13vw 0;
	}

	.detail .contents .gmap .map_btn a {
		font-size: 3.2vw;
		padding: 2.2vw 13vw 2.2vw 6vw;
	}

	.detail .contents .gmap .map_btn a::before {
		top: 3vw;
		right: 4vw;
	}


	/*戻るボタン*/
	.detail .contents .btn.back {
		margin-top: 18vw;
	}
.detail .contents .btn.back a {
	padding: 0 .5em 1.2em 4em;
}
}