@charset "utf-8";
/* ------------------------------------------------------------
	共通　
   ------------------------------------------------------------ */

#wrapper {
	width: 100%;
	max-width: 770px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ------------------------------------------------------------
	header
   ------------------------------------------------------------ */

.header {
	padding-top: 40px;
}
.logoTitle {
	margin-top: 10px;
	font-size: 18px;
	color: #003d8a;
}

/* ------------------------------------------------------------
	backNumber
   ------------------------------------------------------------ */

.backNumberTitile {
	color: #006ab4;
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #006ab4;
	background-size: 16px;
}
.backNumberList {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	padding: 0 11px;
}
.backNumberListItem {
  width: 20%;
}
.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 #0069b4;
	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: 10px;
	}
	.backNumberListItem+.backNumberListItem {
		margin-left: 0;
	}
}

/* ------------------------------------------------------------
	バックナンバーページ用（index.html）
   ------------------------------------------------------------ */

.latest {
	margin: 30px 0;
}
.latestTitle {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.latestTitleH2 {
	font-size: 20px;
	color: #006ab4;
}
.cllatestTitleText {
	font-size: 14px;
}
.latestBox {
	margin-top: 12px;
	border: 2px solid #006ab4;
	display: flex;
	justify-content: space-between;
	padding: 30px;
}
.latestBoxLink:hover {
	background: #edf4fa;
}
.latestBoxTitle {
	font-size: 36px;
	color: #006ab4;
	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: #006ab4;
	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 #0069b4;
	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
	}
}


/* ------------------------------------------------------------
	カミングスーン用（index2.html）
   ------------------------------------------------------------ */

.comingsoon{
    margin: 30px 0 64px;
}
.comingsoonBox{
	background: #f7f8f9;
	border: 4px solid #0069b4;
	padding: 56px 54px;
	text-align: center;
}
.comingsoonBox_text{
	font-size: 28px;
	color: #006ab4;
	font-weight: bold;
}
.comingsoonBox_smallText{
	font-size: 18px;
	color: #006ab4;
	font-weight: bold;
	margin-top: 16px;
}
.comingsoonBox_name{
	font-size: 26px;
	font-weight: bold;
	margin-top: 40px;
}
.comingsoonBox_times{
	font-size: 16px;
	margin-top: 10px;
}
.comingsoonNote{
	margin-top: 16px;
	text-align: center;
	color: #e75d64;
}
.comingsoonNote::before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/archive_icon02.png) no-repeat;
	background-size: 100%;
	vertical-align: middle;
	margin-right: 14px;
	margin-top: -2px;
}
@media screen and (max-width:640px) {
	.comingsoon{
		margin: 30px 0 64px;
	}
	.comingsoonBox{
		padding: 30px 30px;
	}
	.comingsoonBox_text{
		font-size: 24px;
	}
}
/* ------------------------------------------------------------
	以下カラバリ用 / .color_green（緑）
   ------------------------------------------------------------ */

/* 文字色 */
.color_green .latestTitleH2,
.color_green .latestBoxTitle,
.color_green .backNumberTitile,
.color_green .comingsoonBox_text,
.color_green .comingsoonBox_smallText{
    color: #1BBF20;
}
/* 線色 */
.color_green .latestBox{
	border: 2px solid #1BBF20;
}
.color_green .backNumberTitile{
	border-bottom: 2px solid #1BBF20;
}
.color_green .comingsoonBox{
	border: 4px solid #1BBF20;
}

/* ボタン色 */
.color_green .latestBanner {
    background: #FE9B00;
}
/* ▲色 */
.color_green .latestBanner::before{
	border-color: transparent transparent transparent #FE9B00;
}
.color_green .backNumberListItemLink::before{
	border-color: transparent transparent transparent #1BBF20;
}

/* ------------------------------------------------------------
	以下カラバリ用 / .color_red（赤）
   ------------------------------------------------------------ */
/* 文字色 */
.color_red .latestTitleH2,
.color_red .latestBoxTitle,
.color_red .backNumberTitile,
.color_red .comingsoonBox_text,
.color_red .comingsoonBox_smallText{
    color: #D3023C;
}
/* 線色 */
.color_red .latestBox{
	border: 2px solid #D3023C;
}
.color_red .backNumberTitile{
	border-bottom: 2px solid #D3023C;
}
.color_red .comingsoonBox{
	border: 4px solid #D3023C;
}
/* ボタン色 */
.color_red .latestBanner {
    background: #D3023C;
}
/* ▲色 */
.color_red .latestBanner::before{
	border-color: transparent transparent transparent #D3023C;
}
.color_red .backNumberListItemLink::before{
	border-color: transparent transparent transparent #D3023C;
}


/* ------------------------------------------------------------
	以下カラバリ用 / .color_white（白）
   ------------------------------------------------------------ */
/* 文字色 */
.color_white .latestTitleH2,
.color_white .latestBoxTitle,
.color_white .backNumberTitile,
.color_white .latestBanner,
.color_white .comingsoonBox_text,
.color_white .comingsoonBox_smallText{
    color: #434343;
}
/* 線色 */
.color_white .latestBox{
	border: 2px solid #434343;
}
.color_white .backNumberTitile{
	border-bottom: 2px solid #434343;
}
.color_white .comingsoonBox{
	border: 4px solid #434343;
}
/* ボタン色 */
.color_white .latestBanner {
    background: #EEEEEE;
}
/* ▲色 */
.color_white .latestBanner::before{
	border-color: transparent transparent transparent #434343;
}
.color_white .backNumberListItemLink::before{
	border-color: transparent transparent transparent #434343;
}





