@charset "utf-8";

/* ------------------------------------------------------------
	color　
	
	1.main   #063F85 (メインの透明度80%くらいの色 #38659D)

   ------------------------------------------------------------ */

/* ------------------------------------------------------------
	共通　
   ------------------------------------------------------------ */

#wrapper {
	width: 100%;
	max-width: 730px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ------------------------------------------------------------
	header
   ------------------------------------------------------------ */

.header {
	padding-top: 40px;
}
.logoTitle {
	margin-top: 10px;
	font-size: 18px;
	color: #063F85;
}
.logoImg {
	width: auto;
	max-width: 100%;
}

/* ------------------------------------------------------------
	backNumber
   ------------------------------------------------------------ */

.backNumberTitile {
	color: #063F85;
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #063F85;
	background-size: 16px;
	padding-left: 5px;
}
.backNumberList {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	list-style-type: none;
	font-size: 18px;
	align-items: center;
	justify-content: space-around;
}
.backNumberListItem_heading {
	font-weight: 700;
	display: inline-block;
	margin-bottom: 10px;
}
.backNumberListItem+.backNumberListItem {
	margin-left: 36px;
	list-style-type: none;
}
.backNumberListItemLink {
	font-size: 18px;
	text-decoration: none;
}
.backNumberListItemLink::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 5px;
	border-color: transparent transparent transparent #38659D;
	margin-right: 14px;
    margin-top: -4px;
    vertical-align: middle;
}
.backNumberListItemLink:hover {
	opacity: 0.7;
}
@media screen and (max-width:640px) {
	.backNumberList {
		padding: 0;
	}
	.backNumberListItem {
		width: 33%;
		margin-bottom: 40px;
		text-align: center;
	}
	.backNumberListItem+.backNumberListItem {
		margin-left: 0;
	}
	.backNumberListItemLink {
		margin-bottom: 10px;
		display: inline-block;
	}
}

/* ------------------------------------------------------------
	バックナンバーページ用（index.html）
   ------------------------------------------------------------ */

.latest {
	margin: 30px 0;
}
.latestTitle {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.latestTitleH2 {
	font-size: 20px;
	color: #063F85;
}
.cllatestTitleText {
	font-size: 14px;
}
.latestBox {
	margin-top: 12px;
	border: 2px solid #063F85;
	display: flex;
	justify-content: space-between;
	padding: 30px;
}
.latestBoxLink:hover {
	background: #edf4fa;
}
.latestBoxTitle {
	font-size: 36px;
	color: #063F85;
	font-weight: bold;
	align-self: center;
	line-height: 1em;
}
.latestBoxTitleNumber {
	font-size: 47px;
}
.latestBanner {
	width: 100%;
	max-width: 250px;
	padding: 18px 0;
	text-align: center;
	color: #fff;
	background: #063F85;
	align-self: center;
	text-decoration: none;
	position: relative;
	display: block;
}
.latestBanner:hover {
	opacity: 0.7;
}
.latestBanner::before{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 10px;
	border-color: transparent transparent transparent #063F85;
	margin-right: 14px;
	position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -7px;
    z-index: 3;
}
.latestBanner::after{
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	border-radius: 100px;
	background: #fff;
	position: absolute;
    right: 22px;
    top: 50%;
    margin-top: -11px;
    z-index: 2;

}
@media screen and (max-width:640px) {
	.latestTitle {
		display: block;
	}
	.latestBoxTitle {
		font-size: 26px;
	}
	.latestBoxTitleNumber {
		font-size: 37px;
	}
	.latestBox {
		display: block;
		text-align: center;
	}
	.latestBanner {
		margin: 20px auto 0;
	}
	.latestBanner {
		text-align: left;
		padding-left: 20px
	}
}




