@charset "utf-8";

/* -------------------------------------------------
	.main-side-layout
------------------------------------------------- */

.main-side-layout {
	margin-top: 80px;
}

@media screen and (max-width:767px) {
	.main-side-layout {
		margin-top: 10vw;
	}
}

/* -------------------------------------------------
	.news-list (一覧ページ)
------------------------------------------------- */

.news-list li {
	padding-bottom: 30px;
	border-bottom: solid 1px #cfdde5;
}
.news-list li + li {
	margin-top: 30px;
}
.news-list li .group1 {
	display: flex;
	align-items: center;
}
.news-list li .group1 .date {
	line-height: 1;
}
.news-list li .group1 .cate {
	line-height: 1;
}
.news-list li .group1 .cate a {
	height: 22px;
	padding: 0 1em;
	margin-left: 1.5em;
	font-size: 14px;
	line-height: 1;
	border: solid 1px #cfdde5;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	transition: background 0.2s ease-out;
}
.news-list li .title {
	margin-top: 0.9em;
	padding-bottom: 0.5em;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.4;
	border-bottom: solid 2px #0d6fb8;
}
.news-list li .title a {
	color: #226db6;
}

.news-list li .inner{
	display: flex;
	margin-top: 1.3em;
}
.news-list li .thumb {
	width: 30%;
	margin-right: 20px;
}
.news-list li .text {
	width: 70%;
}
.news-list li .thumb .photo{
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
    margin: 0 auto;
	border: solid 1px #cfdde5;
	}
.news-list li .thumb .photo img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: 0.5s all;
	}


.news-list li .desc {
	margin-top: 0em;
}
.news-list li .see-more {
	margin-top: 20px;
}

@media print, screen and (min-width:768px) {
	.news-list li .group1 .cate a:hover {
		background-color: #e8f5fe;
	}
}

@media screen and (max-width:767px) {
	.news-list li {
		padding-bottom: 6vw;
	}
	.news-list li + li {
		margin-top: 8vw;
	}
	.news-list li .group1 .cate a {
		height: 6.4vw;
		font-size: 3.2vw;
	}
	.news-list li .title {
		font-size: 3.6vw;
	}
	.news-list li .desc {
		margin-top: 0em;
	}
	.news-list li .see-more {
		margin-top: 3vw;
        text-align: right;
	}
}

/* -------------------------------------------------
	一覧ページのページネーション
------------------------------------------------- */

.pagination {
	margin-top: 60px;
}
.pagination h2 {
	display: none;
}
.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.pagination .nav-links .page-numbers {
	margin: 3px 10px;
}
.pagination .nav-links .page-numbers:not(.prev):not(.next) {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	color: #0d6fb8;
	border: solid 1px #0d6fb8;
}
.pagination .nav-links .page-numbers.current {
	background: #0d6fb8;
	color: #fff !important;
}
.pagination .nav-links .page-numbers.prev,
.pagination .nav-links .page-numbers.next {
	width: 8px;
	height: 12px;
	color: transparent;
	overflow: hidden;
	font-size: 0;
	display: inline-block;
	background: url(../img/arrow_01.png) no-repeat 0 0 / contain;
	display: none;
}
.pagination .nav-links .page-numbers.prev {
	transform: rotateY(180deg);
}

@media screen and (max-width:767px) {
	.pagination {
		margin-top: 8vw;
	}
	.pagination .nav-links .page-numbers {
		margin: 1vw 2vw;
	}
	.pagination .nav-links .page-numbers:not(.prev):not(.next) {
		width: 8vw;
		height: 8vw;
		font-size: 3.2vw;
	}
}

/* -------------------------------------------------
	main .article (記事詳細ページ)
------------------------------------------------- */

main .article .group1 {
	display: flex;
	align-items: center;
}
main .article .group1 .date {
	line-height: 1;
}
main .article .group1 .cate {
	line-height: 1;
}
main .article .group1 .cate a {
	height: 22px;
	padding: 0 1em;
	margin-left: 1.5em;
	font-size: 14px;
	line-height: 1;
	border: solid 1px #cfdde5;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	transition: background 0.2s ease-out;
}
main .article .title {
	margin-top: 0.9em;
	padding-bottom: 0.5em;
	margin-bottom: 30px;
	font-weight: 500;
	color: #226db6;
	font-size: 24px;
	line-height: 1.4;
	border-bottom: solid 2px #0d6fb8;
}

main .article-body h3 {
	padding: 8px 0 7px 20px;
	margin-bottom: 1em;
	font-size: 21px;
	font-weight: 500;
	color: #226db6;
	border-left: solid 4px #0d6fb8;
	line-height: 1.4;
}
main .article-body h4 {
	padding-bottom: 1em;
	margin-bottom: 1em;
	font-size: 21px;
	font-weight: 500;
	color: #226db6;
	border-bottom: solid 1px #cfdde5;
}
main .article-body a{
    color: #4092c1;
}
main .article-body a:hover{
	text-decoration: underline;
}
main .article-body p {
	margin-bottom: 2em;
}
main .article-body p.caption {
	font-size: 14px;
	text-align: center;
}
main .article-body img {
	display: block;
	margin: 0 auto 30px;
}
main .article-body img + p.caption {
	margin-top: -20px;
}
main .article-body .red {
	color: #cc0000;
}
main .article-body .blue {
    color: #226db6;
}
main .article-body .marker {
    background: linear-gradient(transparent 70%, #c7e4f8 70%);
    font-weight: 500;
}
main .article-body table{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: solid 1px #cfdde5;
	border-left: solid 1px #cfdde5;
	border-spacing: 0px;
}
main .article-body table th{
    padding: 10px;
    border-right: solid 1px #cfdde5;
    border-bottom: solid 1px #cfdde5;
    vertical-align: middle;
    text-align: left;
}
main .article-body table td{
    padding: 10px;
	border-right: solid 1px #cfdde5;
    border-bottom: solid 1px #cfdde5;
    vertical-align: middle;
}

main .article-body .youtube {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 75%;
	margin-top: 30px;
    margin-bottom: 30px;
	overflow: hidden;
}
main .article-body .youtube iframe {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100% !important;
 	height: 100% !important;
}


@media print, screen and (min-width:768px) {
	main .article .group1 .cate a:hover {
		background-color: #e8f5fe;
	}
}

@media screen and (max-width:767px) {
	main .article .group1 .cate a {
		height: 6.4vw;
		font-size: 3.2vw;
	}
	main .article .title {
		font-size: 3.6vw;
	}

	main .article-body h3 {
		font-size: 3.6vw;
	}
	main .article-body h4 {
		font-size: 3.4vw;
	}
	main .article-body p.caption {
		font-size: 3vw;
	}
	main .article-body img {
		margin-bottom: 8vw;
	}
	main .article-body img + p.caption {
		margin-top: -5vw;
	}
}

/* -------------------------------------------------
	記事詳細ページのページネーション
------------------------------------------------- */

.main .pager {
	margin-top: 50px;
	padding: 30px 0;
	border-top: solid 1px #cfdde5;
	border-bottom: solid 1px #cfdde5;
}
.main .pager ul {
	display: flex;
	justify-content: space-between;
}
.main .pager ul li a {
	width: 120px;
	height: 30px;
	color: #0d6fb8;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	border: solid 1px #0d6fb8;
	border-radius: 15px;
	position: relative;
	transition: background 0.2s ease-out;
}
.main .pager ul li a[rel="next"] {
	padding-left: 14px;
	background: url(../img/arrow_01.png) no-repeat calc(100% - 12px) center / 8px auto;
}
.main .pager ul li a[rel="prev"] {
	padding-right: 14px;
	justify-content: flex-end;
	background: url(../img/arrow_01_02.png) no-repeat 12px center / 8px auto;
}

@media print, screen and (min-width:768px) {
	.main .pager ul li a:hover {
		background-color: #e8f5fe;
	}
}

@media screen and (max-width:767px) {
	.main .pager {
		margin-top: 10vw;
		padding: 5vw 0;
	}
	.main .pager ul li a {
		width: 26vw;
		height: 6.4vw;
		font-size: 3.2vw;
		border-radius: 3.2vw;
	}
	.main .pager ul li a[rel="next"] {
		padding-left: 3.2vw;
		background-size: 1.6vw auto;
		background-position: calc(100% - 3vw);
	}
	.main .pager ul li a[rel="prev"] {
		padding-right: 3.2vw;
		background-size: 1.6vw auto;
		background-position: 3vw;
	}
}

/* -------------------------------------------------
	#news
------------------------------------------------- */

#news ul li {
	border-bottom: solid 1px #cfdde5;
}
#news ul li .wrap {
	padding: 20px 5px 13px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#news ul li .wrap .date {
	line-height: 1;
}
#news ul li .wrap .cate a {
	height: 22px;
	padding: 0 1em;
	margin-left: 1.5em;
	font-size: 14px;
	line-height: 1;
	border: solid 1px #cfdde5;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	transition: background 0.2s ease-out;
}
#news ul li .wrap .title {
	margin-top: 0.3em;
}

@media print, screen and (min-width:768px) {
	#news ul li .wrap .cate a:hover {
		background-color: #e8f5fe;
	}
	#news ul li .wrap .title a:hover {
		text-decoration: underline;
	}
}

@media screen and (max-width:767px) {
	#news ul li .wrap {
		padding: 3vw 2vw 2vw;
	}
	#news ul li .wrap .cate a {
		height: 6.4vw;
		font-size: 3.2vw;
	}
}

/* -------------------------------------------------
	#event
------------------------------------------------- */

#event {
	margin-top: 60px;
}

@media print, screen and (min-width:768px) {
	#event:first-child {
		margin-top: 0;
	}
}

@media screen and (max-width:767px) {
	#event {
		margin-top: 10vw;
	}
}

/* -------------------------------------------------
	#circle
------------------------------------------------- */

.circle main .article .title {
	margin-top: 0;
}
.circle main .article-body a{
    color: #226db6;
	text-decoration: none;
}
.circle .circle_box{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: solid 1px #cfdde5;
}
.circle .circle_box .inner{
	display: flex;
	margin-top: 1.3em;
}
.circle .circle_box .thumb {
	width: 30%;
	margin-right: 20px;
}
.circle .circle_box .thumb img{
	margin-bottom: 0;
}
.circle .circle_box .thumb .photo{
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
    margin: 0 auto;
	border: solid 1px #cfdde5;
	}
.circle .circle_box .thumb .photo img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: 0.5s all;
	}
.circle .circle_box .text {
	width: 70%;
}

.pageing {
    padding: 30px 0 0px;
	}
.pageing .page_number{
	display: none;
	}
.pageing .nav-links{
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	}
.pageing .nav-links .current{
	width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
	border: solid 1px #0d6fb8;
	background: #0d6fb8;
    color: #fff !important;
    margin: 3px 10px;
	}
.pageing .nav-links a{
	width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #0d6fb8;
	border: solid 1px #0d6fb8;
    margin: 3px 10px;
	}

@media (max-width: 767px) {
	.circle .circle_box{
		padding-bottom: 6vw;
		margin-bottom: 8vw;
	}
	.circle .circle_box .see-more{
		text-align: right;
		margin-top: 0;
		}
	.pageing {
		padding-top: 0;
		}
	.pageing .nav-links .current{
		width: 8vw;
        height: 8vw;
        font-size: 3.2vw;
		margin: 1vw 2vw;
		}
	.pageing .nav-links a{
		width: 8vw;
        height: 8vw;
        font-size: 3.2vw;
        margin: 1vw 2vw;
		}
	}
