@charset "utf-8";

/* -------------------------------------------------- main */
main {
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
}
/* -------------------------------------------------- h1(title) */
h1 {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 80px;
  background-color: #0d895d;
  z-index: 10;
}
h1::before {
  position: absolute;
  content: "";
  background-color: #009b64;
  width: 600px;
  height: 1500px;
  top: -500px;
  left: -50px;
  transform: rotate(115deg);
  z-index: 0;
}
h1 span {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 4.5rem;
}
/* -------------------------------------------------- fluid*/
.fluid {
  top: 20px;
  transform: scale(1.1, 1.1);
}
/* -------------------------------------------------- container */
#container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 80px 50px 100px 50px;
}
/* -------------------------------------------------- container > content */
.content {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  background-color: #fff;
  padding: 50px 80px 80px 80px;
  z-index: 10;
}
/*見出し*/
.content h2 {
  clear: both;
  position: relative;
  margin: 130px 0 20px 0;
  padding: 25px 0;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 130%;
  color: #0d895d;
  border-top: 2px solid #c5c5c5;
}
.content h2::after {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: #fff;
  z-index: 10;
}
.content h2:first-child {
  margin-top: 50px;
}
.content h2::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #0d895d;
  z-index: 20;
}
.content h3 {
  position: relative;
  margin: 40px 0 20px 0;
  padding: 10px 10px 10px 20px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 130%;
  color: #0d895d;
  background-color: rgba(13,137,93,0.15);
}
.content h2 + h3 {/*h2のすぐあとのh3にのみ適応*/
  margin-top: 20px;
}
.content h3::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 3px;
  background-color: #0d895d;
  z-index: 20;
}
.content h4 {
  margin: 20px 0 10px 0;
  padding: 10px 0;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 130%;
  color: #0d895d;
}
.content h5 {
  margin: 20px 0 10px 0;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 130%;
  color: #053424;
}
.content h6 {
  margin: 10px 0 5px 0;
  padding: 10px 0;
  font-family: 1.6rem;
  font-weight: bold;
  line-height: 130%;
}
/*p*/
.content p {
  margin: 0;
  padding: 0 0 10px 0;
}
/*table*/
.content table {
  margin: 20px 0;
  border-collapse: collapse;
  background-color: #fff;
}
.content table.w100 {
  width: 100%;
}
.content table th,
.content table td {
  padding: 10px 15px;
  border: 1px solid #abacaa;
}
.content table th {
  background-color: #d6d7d5;
  text-align: center;
}
/*table横スクロール*/
.table_wrap {}
/*list*/
.content ul,
.content ol {
  margin: 15px 0 15px 25px;
  padding: 0;
}
.content ul li {
  list-style: disc;
}
.content ol li {
  list-style: decimal;
}
/**/
.sp_txt {
  display: none;
}
/*linkボタン*/
.content .btn_link {
  margin: 15px 0;
  padding: 5px 15px;
}
.content .btn_link a {
  position: relative;
  display: table;
  padding: 15px 45px 15px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #009b64 0%, #0d895d 50%, #095f41 100%);
  background-position: 50% 90%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.content .btn_link a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.content .btn_link a:link,
.content .btn_link a:active,
.content .btn_link a:visited,
.content .btn_link a:hover {
  color: #fff;
  text-decoration: none;
}
.content .btn_link a:hover {
  background-position: 99% 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.content .btn_link a:hover::before {
  right: 25px;
}
/*note*/
.content .note {
  border-radius: 10px;
  margin: 20px 0 30px 0;
  padding: 25px 30px;
  background-color: #e6e6e6;
}
.content .note_red {
  border-radius: 10px;
  margin: 20px 0;
  padding: 25px 30px;
  background-color: rgba(246,214,214,0.7);
}
.content .note strong,
.content .note_red strong {
  display: inline-block;
  padding-top: 15px;
  font-size: 1.8rem;
}
/*memo*/
.content .memo {
  background-color: #e6e6e6;
  border-radius: 10px;
  margin: 20px 0;
  padding: 15px 20px;
  font-size: 1.5rem;
}
/* -------------------------------------------------- container > aside */
aside {
  width: 230px;
  margin-right: 80px;
  padding-top: 80px;
  box-sizing: border-box;
  position: sticky;
  top: 50px;
}
aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 230px;
}
aside ul li {
  position: relative;
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 1.5rem;
}
aside ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 3px;
  top: 8px;
  left: 0;
  background-color: #0d895d;
}
aside ul li a {
  display: block;
  line-height: 140%;
  padding-left: 20px;
}
aside ul li a:link,
aside ul li a:active,
aside ul li a:visited,
aside ul li a:hover {
  text-decoration: none;
  color: #0d895d;
}
a.current{
  background-color: #ff0;
  color: #000;
}

/* -------------------------------------------------- セカンドの検索（ページ下部） */
.second_search {
  position: relative;
  padding: 100px;
  overflow: hidden;
  background-color: #009b64;
  text-align: center;
}
.second_search::before {
  position: absolute;
  content: "";
  background-color: #029863;
  width: 600px;
  height: 1500px;
  top: -250px;
  left: -50px;
  transform: rotate(115deg);
  z-index: 0;
}
.second_search article {
  position: relative;
  z-index: 10;
}
.second_search h3 {
  margin: 0;
  padding: 0;
  font-size: 4rem;
  color: #fff;
  line-height: 120%;
}
.second_search h3 span {
  display: block;
  padding-top: 10px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 120%;
}
.second_search p {
  margin: 0;
  padding: 40px 0;
  font-size: 1.65rem;
  color: #fff;
}
.second_search a {
  display: table;
  margin: 0 auto;
  padding: 21px 60px 19px 50px;
  border-radius: 50px;
  background: linear-gradient(135deg, #009b64 0%, #0d895d 50%, #095f41 100%);
  background-position: 50% 90%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.second_search a:link,
.second_search a:active,
.second_search a:visited,
.second_search a:hover,
.second_search a:link span,
.second_search a:active span,
.second_search a:visited span,
.second_search a:hover span {
  color: #fff;
  text-decoration: none;
}
.second_search a:hover {
  background-position: 99% 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.second_search a span {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 2.3rem;
}
.second_search a span::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../img/m_search.svg") no-repeat;
}
/* ----------------------------------------------- foot_block（バナーがない場合のみ使用）*/
.foot_block {
  height: 100px;
  background-color: #f4f4f4;
}
/* -------------------------------------------------- 各ページ毎 > センター概要 */
.content .outline_history {
  padding-top: 25px;
}
.content .outline_history dl {
  position: relative;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  padding: 0 0 25px 0;
}
.content .outline_history dl::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 15px;
  width: 5px;
  height: 100%;
  border-left: 1px dotted #666;
  z-index: 1;
}
.content .outline_history dl:last-child::after {/*最後は線無し*/
  display: none;
}
.content .outline_history dt {
  position: relative;
  margin: 0;
  padding: 0;
  width: 150px;
  text-indent: 60px;
  font-family: 'ZenKakuGothic';
  font-size: 2.0rem;
  font-weight: bold;
}
.content .outline_history dt::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 5px;
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #2a9771;
  box-shadow: 0px 0px 10px 0px rgba(42,151,113,0.8);
  z-index: 4;
}
.content .outline_history dt::before {
  position: absolute;
  content: "";
  top: 18px;
  left: 13px;
  width: 5px;
  height: 5px;
  background-color: #2a9771;
  border-radius: 30px;
  z-index: 5;
}
.content .outline_history dd {
  flex: 1;
  display: block;
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 1.6rem;
  color: #383933;
  border-bottom: 1px solid #999;
}
.content .outline_history dl:last-child dd {/*最後は線無し*/
  border-bottom: none;
}
/**/
.content .outline_collection dt {
  font-weight: bold;
}
.content .outline_collection dd {
  margin: 0;
  padding: 0 0 15px 15px;
}
.content .message {
  margin-top: 50px;
  padding: 40px 120px;
  background-color: #e0ebe8;
  text-align: center;
}
.content .message p {
  color: #0d895d;
  font-size: 2.2rem;
  font-weight: bold;
}
/* -------------------------------------------------- 各ページ毎 > 菌株分譲・寄託 */
/*申込方法*/
.content .gtc_apply {
  margin: 0;
  padding: 0;
}
.content .gtc_apply li {
  list-style: none;
  padding-bottom: 30px;
}
.content .gtc_apply span {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  font-family: 'ZenKakuGothic';
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  margin-right: 10px;
  z-index: 30;
}
.content .gtc_apply span::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: #2a9771;
  border-radius: 50px;
  z-index: -1;
}
/**/
.content .gtc_apply_flow {
  padding-top: 30px;
  text-align: center;
}
.content .gtc_apply_flow ul,
.content .gtc_apply_flow li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.content .gtc_apply_flow p.question {
  position: relative;
  width: 65%;
  margin: 0 auto 40px auto;
  padding: 20px 10px;
  background-color: #009b64;
  border-radius: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 120%;
  z-index: 50;
}
.content .gtc_apply_flow p.answer {
  position: relative;
  width: 80%;
  margin: 0 auto 40px auto;
  padding: 20px 10px;
  background-color: #dbede7;
  border-radius: 40px;
  color: #009b64;
  font-weight: bold;
  line-height: 120%;
  z-index: 40;
}
.content .gtc_apply_flow p.answer::before {
  position: absolute;
  content: " ";
  top: -70px;
  right: 0;
  left: 0;
  margin: auto;
  width: 3px;
  height: 72px;
  background-color: #b9b9c8;
  z-index: 10;
}
/*アコーディオン*/
.acd-check{
  display: none;
}
.content .gtc_apply_flow ul.select,
.content .gtc_apply_flow ul.select ul {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.content .gtc_apply_flow ul.select li,
.content .gtc_apply_flow ul.select ul li {
  margin: 0;
  padding: 0;
  width: 47.5%;
}
.content .gtc_apply_flow ul.select dl {
  margin: 0;
  padding: 0;
}
.content .gtc_apply_flow ul.select dl dt {
  position: relative;
  margin: 0;
  padding: 30px 10px;
  background-color: #009b64;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  line-height: 120%;
  z-index: 20;
}
.content .gtc_apply_flow ul.select dl dt::before {
  position: absolute;
  content: "";
  top: -90px;
  right: 0;
  left: 0;
  margin: auto;
  width: 3px;
  height: 90px;
  background-color: #a6a6b4;
  z-index: 1;
}
.content .gtc_apply_flow ul.select dl dd {
  position: relative;
  margin: 30px 0 0 0;
  padding: 20px;
  background-color: #eff1f4;
  font-size: 1.6rem;
  text-align: left;
  z-index: 5;
}
.content .gtc_apply_flow ul.select dl dd::before {
  position: absolute;
  content: "";
  top: -35px;
  right: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 37px;
  border: 1px dotted #999;
  z-index: -1;
}
.content .gtc_apply_flow p.text {
  padding-top: 20px;
  color: #009b64;
  font-size: 2.0rem;
  font-weight: bold;
}
/**/
.content .gtc_flexbox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 10px 0;
}
.content .gtc_flexbox article {
  width: 49%;
  padding: 25px;
  box-sizing: border-box;
  background-color: #e6e6e6;
  border-left: 10px solid #ccc;
}
.content .gtc_flexbox article h4 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #075237;
  font-weight: bold;
}
.content .gtc_flexbox article div {
  margin: 0;
}
.content .gtc_flexbox article ul {
  margin: 0;
  padding: 10px 5px 5px 25px;
}
.content .gtc_flexbox article p {
  margin: 0;
  padding: 10px 5px;
}
.content .gtc_flexbox article ul li {}
.content .bsl23 {
  padding-bottom: 50px;
}
/* -------------------------------------------------- 各ページ毎 > Order */
.content .order_contact {
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  border: 1px solid #009b64;
}
.content .order_contact .btn_link {
  font-size: 2.2rem;
}
.content .order_contact .btn_link a {
  margin: 10px auto;
}
/* -------------------------------------------------- 各ページ毎 > 菌株利用論文 */
.content .research_box {
  display: -webkit-flex;
  display: flex;
  margin: 20px 0;
}
.content .research_box h3 {
  flex-basis: 150px;
  margin: 0;
  padding: 30px 0;
  font-family: 'ZenKakuGothic';
  font-weight: bold;
  text-align: center;
  border-radius: 20px;
}
.content .research_box h3::before {
  display: none;
}
.content .research_box ul {
  flex: 1;
  margin: 0 0 0 40px;
  padding: 15px 0 10px 25px;
  list-style-type: circle;
  border-bottom: 1px dotted #999;
}
.content .research_box ul li {
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 1.6rem;
}
/* -------------------------------------------------- 各ページ毎 > スタッフ */
.content .staff_table {
  width: 100%;
  background-color: #f6f6f6;
}
.content .staff_table th {
  width: 290px;
  border: none;
  border-radius: 20px;
  background-color: #009b64;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 1.9rem;
}
.content .staff_table th span {
  color: #fff;
  font-size: 1.3rem;
}
.content .staff_table td {
  border: none;
  padding: 20px 25px;
}
/* -------------------------------------------------- 各ページ毎 > 保存菌株検索・一覧 詳細*/
.microorganisms_search_box {
  position: relative;
  margin: 70px auto 50px auto;
  padding: 70px;
  width: 800px;
  box-sizing: border-box;
  background-color: #e5f5ef;
  border-radius: 10px;
  text-align: left;
}
.content .microorganisms_search_box h3 {
  position: relative;
  margin: 0 0 20px 0;
  padding: 5px 10px 5px 20px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #0d895d;
  background-color: transparent;
}
.content .microorganisms_search_box h3::before {}
.microorganisms_search_box input[type=text] {
  width: 100%;
  font-size: 1.8rem;
  padding: 5px 10px;
  outline: 0;
  background-color: #fff;
  border: 2px solid #999;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.microorganisms_search_box input[type=text]:focus {
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2));
  outline: 0;
}
.microorganisms_search_box p {
  font-size: 1.5rem;
  color: #666;
}
.microorganisms_search_box input[type=submit] {
  position: relative;
  display: block;
  margin: 20px auto 0 auto;
  padding: 17px 33px 18px 29px;
  border-radius: 50px;
  background: linear-gradient(135deg, #009b64 0%, #0d895d 50%, #095f41 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  text-align: center;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  font-size: 2.0rem;
}
.microorganisms_search_box input[type=submit]:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.microorganisms_search_box input[type=submit]:active {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.microorganisms_search_box input[type=submit]::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../img/m_search.svg") no-repeat;
}
.microorganisms_search_box p.sp_txt {
  display: none;
}
/*一覧*/
.content .microorganisms_search_table {
  width: 100%;
  margin-bottom: 100px;
}
.content .microorganisms_search_table tr:hover td {
  background-color: #fffcf4;
}
.content .microorganisms_search_table th {
  background-color: #009b64;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.content .microorganisms_search_table td {
  vertical-align: middle;
}
.content .microorganisms_search_table td.gtc_number {
  white-space: nowrap;
}
.content .microorganisms_search_table td.btn_link {
  padding: 5px 0 5px 3px;
/*  width: 450px;*/
  width: 160px;
  text-align: center;
}
.content .microorganisms_search_table td.btn_link a {
  display: inline-block;
  padding: 3px 15px;
  margin: 3px 3px 3px 0;
  background: #6b6b6b;
  color: #fff;
  box-shadow: 0 3px 0 0 rgba(85,85,85, 1);
  border-radius: 5px;
  font-size: 1.5rem;
  text-decoration: none;
}
.content .microorganisms_search_table td.btn_link a::before {
  display: none;
}
.content .microorganisms_search_table td.btn_link a:link,
.content .microorganisms_search_table td.btn_link a:active,
.content .microorganisms_search_table td.btn_link a:visited {
  color: #fff;
}
.content .microorganisms_search_table td.btn_link a:hover {
  color: #fff;
  background-color: #6b6b6b;
  box-shadow: 0 1px 0 0 rgba(122,122,122, 1);
}
/*詳細*/
.content .microorganisms_detail_table {
  width: 100%;
}
.content .microorganisms_detail_table th {
  background-color: #009b64;
  color: #fff;
  width: 200px;
}
/**/
.content .microorganisms_detail_link {
  text-align: center;
}
.content .microorganisms_detail_link ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 80%;
}
.content .microorganisms_detail_link li {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 45%;
  text-align: center;
}
.content .microorganisms_detail_link li a {
  display: block;
  position: relative;
  margin: 10px 0 10px 10px;
  padding: 10px 30px 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #6b6b6b 0%, #555555 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
  border: none;
  box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
  transition: all 0.3s ease-out;
}
.content .microorganisms_detail_link li a:link,
.content .microorganisms_detail_link li a:active,
.content .microorganisms_detail_link li a:visited,
.content .microorganisms_detail_link li a:hover {
  color: #fff;
  text-decoration: none;
}
.content .microorganisms_detail_link li a:hover {
  background-position: 100% 50%;
  box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
.content .microorganisms_detail_link li a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.content .microorganisms_detail_link li a:hover::before {
  right: 8%;
}
/* -------------------------------------------------- 各ページ毎 > Q&A*/
.content .qa dl {
  margin: 0;
  padding: 20px 0;
}
.content .qa dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 40px;
  color: #181a17;
  font-size: 1.9rem;
  font-weight: bold;
}
.content .qa dl dt::before {
  position: absolute;
  content: "Q.";
  font-family: "ZenKakuGothic", "Yu Gothic medium", "Hiragino Sans", "sans-serif";
  font-size: 3.0rem;
  font-weight: bold;
  color: #009b64;
  top: 0;
  bottom: 0;
  left: 5px;
}
.content .qa dl dd {
  margin: 10px 0 0 0;
  padding: 20px 25px;
  background-color: #dbede7;
  font-size: 1.6rem;
  border-radius: 3px;
}
/* -------------------------------------------------- 各ページ毎 > お問い合わせ */
.content .contact {
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  border: 1px solid #009b64;
}
.content .contact h2 {
  border: none;
  font-size: 2.0rem;
  color: #181a17;
  text-align: center;
}
.content .contact h2::before,
.content .contact h2::after {
  display: none;
}
.content .contact br {
  display: none;
}
.content .contact .tel_link {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-family: 'ZenKakuGothic';
  font-size: 6rem;
  font-weight: bold;
  color: #009b64;
}
.content .contact .tel_link a {
  position: relative;
  padding-left: 80px;
  display: inline-block;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  vertical-align: text-top;
}
.content .contact .tel_link a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 55px;
  height: 55px;
  background-image: url("../img/icon_tel.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left 100%;
}
.content .contact .btn_link {
  text-align: center;
}
.content .contact .btn_link a {
  margin: 10px auto 30px auto;
}
/* -------------------------------------------------- ニュース&トピックス */
.news_list {
  margin: 0;
  padding: 0;
}
.news_list dl {
  width: 100%;
  margin: 0;
  padding: 20px 0;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease 0s;
}
.news_list dl:hover {
  background-color: #f1f9f6;
}
.news_list dt {
  width: 150px;
}
.news_list dt span,
.news_entry p.time span {
  padding: 5px 10px;
  background-color: #777;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
}
.news_list dd {
  flex: 1;
}
.news_list dd a:link,
.news_list dd a:active,
.news_list dd a:visited {
  color: #181a17;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.news_list dd a:hover {
  color: #117350;
}

.news_list .news_pager {
  margin: 0;
  padding: 80px 0 0 0;
  text-align: center;
}
.news_list .news_pager a,
.news_list .news_pager span {
  display: inline-block;
  padding: 2px 15px;
}
.news_list .news_pager a {
  background-color: #d0e6de;
  text-decoration: none;
}
.news_list .news_pager span {
  border: 1px solid #0f6345;
  color: #0f6345;
}
.news_list .news_pager a:link,
.news_list .news_pager a:active,
.news_list .news_pager a:visited {
  text-decoration: none;
}
.news_entry p.time {
  text-align: right;
  margin: 0 0 15px 0;
}