﻿@charset "UTF-8";
/* CSS Document */
/*===========================================
共通
============================================ */
img {
  vertical-align: bottom; /*下の隙間なくす*/
}
.red_12p {
  font-size: 12px;
  color: red;
}
.margin_space {
  margin-top: -100px;
  padding-top: 100px;
}
/*===========================================
リンクボタンaにボタン設定 共通
============================================ */
.archive_link_btn {
  text-align: right;
	margin-bottom: 20px;
	border: solid 0px;
}
.archive_link_btn  a {
text-decoration: none;
	color: #424446;
}

/*ボタン仕様*/
.archive_link_btn .next_btn {
  text-align: center;
  padding: 6px 16px;
  /*cursor: pointer;*/
  font-size: 14px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}

.archive_link_btn .next_btn:hover {
  background-color: #5AB4BD;
  color: #ffffff;
}
/*ボタンの右矢印*/
.archive_link_btn .next_arrow {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: solid 1px;
  border-right: solid 1px;
  /*-webkit-transform: rotate(-135deg);*/
  /*transform: rotate(-135deg);*/
	transform: rotate(45deg);
}
/*矢印と文字（戻る）並列*/
.archive_link_btn .next_arrow, .archive_link_btn .next_txt {
  display: inline-block;
}
/*END 共通-------------------------*/


