@charset "UTF-8";
/*==============
     共通CSS 
===============*/
html {
  scroll-behavior: smooth;
}
body {
  border-top: 4px solid #2174c2;
  background-color: #e8f1f9;
  font-family: "Noto Sans JP", Meiryo, メイリオ, "Hiragino Kaku Gothic Pro", "MS PGothic", "Arial Unicode MS", sans-serif;
}
.inner_box {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}
/*----------------- header --------------- */
h1 a, h1 img {
  max-width: 316px;
  width: 100%;
  display: block;
}
header {
  background-color: #fff;
}
.header_inner > .inner_box {
  display: flex;
  justify-content: space-between;
}
.icon_facebook {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.icon_facebook img {
  width: 30px;
  margin-right: 10px;
}
.icon_facebook span {
  font-size: 25px;
  color: #1877F2; /*Facebook blue*/
}
/*------------------- nav ---------------- */
/*==ナビゲーション全体の設定*/
nav {
  background: #2174c2;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
nav ul {
  display: flex;
  width: 100%;
}
nav ul ul {
  display: block; /*2階層目以降は横並びにしない*/
}
nav ul li {
  position: relative;
  flex-grow: 1;
}
nav ul > li:last-child {
  flex-grow: 2;
}
nav ul li li {
  width: 100%;
}
nav ul li a, nav ul li span {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: all .3s;
  padding: 20px 15px;
}
nav ul li li a {
  position: relative;
  padding: 20px 5px;
}
nav ul li:hover {
  background-color: #28bfe7;
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has_child::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 30px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
nav ul li.has_child:hover::before {
  transform: rotate(-45deg);
  transition: transform 0.3s;
}
/*== 2階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has_child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  background: #2174c2;
  width: 100%;
  visibility: hidden; /*はじめは非表示*/
  opacity: 0;
  transition: all .3s; /*アニメーション設定*/
}
/*hoverしたら表示*/
nav li.has_child:hover > ul, nav li.has_child:active > ul {
  visibility: visible;
  opacity: 1;
}
nav li.has_child ul li:hover, nav li.has_child ul li:active {
  background-color: #28bfe7;
}
/*----------------- footer --------------- */
footer {
  background-color: #fff;
  width: 100%;
}
footer .inner_box {
  display: flex;
  justify-content: center;
  padding: 40px;
  align-items: center;
  flex-wrap: wrap;
}
footer h2 img {
  max-width: 293px;
  width: 100%;
  position: relative;
}
footer h2 img:before {
  content: "";
  display: block;
  padding-top: 37.57%;
}
address {
  font-style: normal;
  padding: 0 30px;
}
address dl dt {
  font-size: 1.2rem;
  padding-bottom: 10px;
  color: #2174c2;
  font-weight: bold;
}
address a {
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
}
address a:hover {
  color: #f4a927;
}
small {
  background: #2174c2;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}
/*---------- トップページへ戻るボタン -------- */
#top_button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  border: solid 3px #f4a927;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop_arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #f4a927;
  border-right: 3px solid #f4a927;
  transform: translateY(20%) rotate(-45deg);
}
#top_button:hover, #top_button:hover .pagetop_arrow {
  border-color: #fff;
  background-color: #f4a927;
}
/*============================================
                トップページ 
==============================================*/
main {
  padding-bottom: 70px;
}
/*---------- メインビュー -------- */
.swiper-container {
  margin-bottom: 50px;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 1280px;
  height: 399px;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
/*---------- トップ共通 -------- */
main section {
  padding-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
}
.sec_wrapper h2 {
  font-size: 1.2rem;
  line-height: 2.4rem;
  text-align: center;
  margin: 0 0 20px 0;
  background-color: #2174c2;
  color: #fff;
  font-weight: normal;
}
.sec_flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 30px;
}
.sec_flex ul, .sec_flex dl {
  padding: 0 10px 5px 10px;
}
/*---------- 次回例会案内 -------- */
.sec_flex #sec_next {
  flex-basis: 300px;
}
/*---------- 今後の予定 -------- */
.sec_flex #sec_schedule {
  flex-basis: calc(100% - 610px);
	background-image: url("../images/ajisai_flower.jpg");
	background-repeat: no-repeat;
}
.sec_flex #sec_schedule dl {
  display: flex;
  flex-wrap: wrap;
}
.sec_flex #sec_schedule dl dt {
  width: 11em;
  padding: 3px 0;
}
.sec_flex #sec_schedule dl dd {
  width: calc(100% - 11em);
  padding: 3px 0;
}
/*---------- 例会情報～イマジンロータリー -------- */
.sec_flex #sec_info, .sec_flex #sec_newsletter {
  margin-bottom: 20px;
}
.sec_flex #sec_newsletter {
  text-align: center;
}
.sec_flex #sec_newsletter a {
  text-decoration: none;
  padding-bottom: 10px;
  color: #2174c2;
}
.sec_flex #sec_newsletter a:hover {
  color: #f4a927;
}
.sec_flex #sec_newsletter > a {
  display: block;
}
.sec_flex #sec_newsletter .material-symbols-outlined {
  vertical-align: -3px;
  font-size: 18px;
  padding-left: 3px;
}
.sec_flex #sec_newsletter p {
  font-size: 14px;
}
.sec_flex > div {
  display: flex;
  flex-direction: column;
}
.sec_flex > div > div > a {
  width: 100%;
}
.sec_flex > div > div > a > img {
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 0 5px #ccc;
  max-width: 250px;
  width: 100%;
  transition: 1s all;
  margin: 0 auto;
}
.sec_flex > div > div > a > img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
/*---------- 動画エリア -------- */
#movie_wrapper {
  flex-basis: calc(100% - 280px);
  gap: 20px;
}
.sec_flex .sec_movie {
  padding: 0;
  background-color: #e8f1f9;
  box-shadow: none;
}
.sec_flex .sec_movie h2 {
  margin-bottom: 0;
}
.iframe_movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.iframe_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*---------- バナーリンク -------- */
.sec_flex #aside {
  flex-basis: 250px;
}
.sec_flex #aside ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_flex #aside li {
  overflow: hidden;
}
.sec_flex #aside li:hover {
  box-shadow: 0 0 5px #ccc;
}
.sec_flex #aside a img {
  max-width: 250px;
  width: 100%;
  transition: 1s all;
}
.sec_flex #aside a:hover img {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
/*============================================
                下層ページ共通
==============================================*/
article {
  padding: 20px 0 70px 0;
  background-color: #e8f1f9;
  color: #58585a;
}
/*パンくずリスト*/
.breadcrumb {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: .9em;
  margin-bottom: 50px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11.7%207.5%204%2013.8v6.8c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-4c0-.4.3-.7.7-.7h2.7c.4%200%20.7.3.7.7v4c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-6.8l-7.7-6.3h-.9zm12.1%204.4L20.3%209V3.2c0-.3-.2-.5-.5-.5h-2.3c-.3%200-.5.2-.5.5v2.9L13.3%203c-.7-.6-1.8-.6-2.5%200L.2%2011.8c-.2.2-.3.5-.1.7l1.1%201.3c.2.2.5.2.7.1l9.8-8.1h.6l9.8%208.1c.2.2.5.1.7-.1l1.1-1.3c.2-.2.1-.5-.1-.6z%22%20style%3D%22fill%3A%23333333%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 22px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: '';
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #f4a927;
}
/*パンくずリスト終わり*/
article h1 {
  font-size: 2rem;
  line-height: 1.5em;
  padding-left: 10px;
  border-bottom: 2px solid #58585a;
  border-left: 8px solid #f4a927;
  margin-bottom: 50px;
}
/*会長挨拶、クラブについて、プライバシーポリシー*/
.inner_box_small {
  width: 85%;
  margin: 0 auto;
}
.image_space {
  border-bottom: 2px solid #58585a;
  margin-bottom: 40px;
  padding-bottom: 50px;
}
.image_space img {
  width: 100%;
}
#about p, #greeting p, #privacy p {
  line-height: 1.7;
}
/*クラブについて、プライバシーポリシー*/
article section {
  margin-bottom: 50px;
}
article section:last-of-type {
  margin-bottom: 0;
}
article section h2 {
  padding-bottom: 20px;
}
article section p, article section li {
  padding-bottom: 15px;
}
article section ol {
  list-style-position: inside;
}
article section ol li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
/*============================================
            　ロータリークラブについて
==============================================*/
#about .image_space img {
  max-width: 300px;
  margin: 0 auto;
}
#about section:nth-of-type(5) ol {
  list-style-type: decimal;
}
/*============================================
                  会長挨拶
==============================================*/
#greeting .greeting_chairman {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 150px;
}
#greeting .greeting_chairman img {
  max-width: 205px;
}
#greeting .greeting_chairman p {
  font-size: 1.5rem;
}
#greeting .greeting_chairman p span {
  display: block;
  margin-top: 10px;
}
#greeting .greeting_chairman p span:first-of-type {
  letter-spacing: 0.2em;
}
#greeting .greeting_chairman p span:last-of-type {
  text-align: right;
  width: 100%;
  padding-right: 10px;
}
#greeting h2 {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 30px;
}
#greeting div div p:first-of-type {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
/*============================================
            　年間スケジュール
==============================================*/
.pdf_button a {
  margin: 0 auto;
  border: 2px solid #f4a927;
  background-color: #fff;
  border-radius: 10px;
  padding: 32px 5px 0 5px;
  background: #fff;
  max-width: 300px;
  width: 100%;
  height: 100px;
  color: #555;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 20px;
}
.material-symbols-outlined {
  vertical-align: -3px;
  font-size: 20px;
  padding-left: 5px;
}
.pdf_button a:hover {
  border: 2px solid #ddd;
  background-color: #f4a927;
  color: #333;
}
/*============================================
            　　　　 会報一覧
==============================================*/
#newsletter form {
  margin-bottom: 30px;
}
#newsletter form select, #newsletter form input {
  padding: 10px 30px;
  border: 2px solid #fff;
  background-color: #f4a927;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin-right: 5px;
}
#newsletter form select:hover, #newsletter form input:hover {
  border: 2px solid #f4a927;
  background-color: #fff;
}
#newsletter form .br {
  display: none;
}
#newsletter ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#newsletter ul li {
  display: table;
  border: 2px solid #f4a927;
  background-color: #fff;
  border-radius: 10px;
  width: calc((100% - 30px) / 4);
  height: 110px;
  color: #555;
  font-weight: bold;
}
#newsletter ul li a {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  line-height: 2;
  text-decoration: none;
}
#newsletter ul li:hover {
  border: 2px solid #ddd;
  background-color: #f4a927;
  color: #333;
}
#newsletter .material-symbols-outlined {
  vertical-align: -3px;
  font-size: 18px;
  padding-left: 3px;
}
/*============================================
            　　　　 会員専用
==============================================*/
#only_members .formbox {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#only_members form {
  font-size: 20px;
  width: 300px;
  position: relative;
  margin: 0 auto;
}
#only_members div {
  position: relative;
  margin-bottom: 15px;
}
#only_members #pass {
  font-size: 20px;
  width: 100%;
  padding: 10px;
}
#only_members #eye {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#only_members #box {
  border: 2px solid #fff;
  background-color: #f4a927;
  width: 300px;
  padding: 10px;
  cursor: pointer;
}
#only_members #box:hover {
  border: 2px solid #f4a927;
  background-color: #fff;
}
#view_members .inner_box > div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
#view_members .inner_box > div .pdf_button {
  max-width: 300px;
  width: 100%;
}
/*============================================
          福井県内ロータリークラブ概要　　　 
==============================================*/
#fukui_rc table {
  border: 1px solid #2174c2;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  overflow-wrap: break-word;
}
#fukui_rc table tr {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
#fukui_rc table tr:last-of-type {
  border-bottom: none;
}
#fukui_rc table th, #fukui_rc table td {
  padding: 1.2em 0.85em;
}
#fukui_rc table th {
  font-size: 0.85em;
  letter-spacing: .1em;
  text-align: left;
  border-bottom: 1px solid #2174c2;
}
#fukui_rc table tr th:nth-of-type(3), #fukui_rc table tr th:nth-of-type(5) {
  width: 300px;
}
#fukui_rc table a {
  text-decoration: none;
  color: #2174c2;
}
#fukui_rc table a:hover {
  color: #f4a927;
}
/*============================================
          　　　　お問い合わせ　　　 
==============================================*/
#contact p {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
#contact form {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}
#contact form div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
#contact form div:nth-last-of-type(2) {
  align-items: center;
}
#contact form div.g-recaptcha {
  align-items: center;
  margin-bottom: 0;
}
#contact label {
  margin-bottom: 0.5rem;
}
#contact input {
  width: 100%;
  padding: 0.5rem;
}
#contact textarea {
  width: 100%;
  height: 200px;
  padding: 0.5rem;
}
#contact form a {
  color: #2174c2;
  text-align: center;
}
#contact form a:hover {
  color: #f4a927;
}
/* 必須表示 */
#contact span {
  color: #fff;
  background-color: #f00;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 5px;
  margin-left: 10px;
}
/* 送信ボタン */
#contact button[type="submit"] {
  display: block;
  max-width: 500px;
  width: 100%;
  padding: 1rem;
  background-color: #f4a927;
  color: #333;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
  box-sizing: border-box;
}
#contact button:hover {
  opacity: 0.8;
}
/*============================================
              プライバシーポリシー   　　　　 
==============================================*/
#privacy .inner_box_small > p:first-of-type {
  margin-bottom: 50px;
}
#privacy section ol {
  list-style-type: decimal;
}
/*=============================================
                  1024px以下 
===============================================*/
@media screen and (max-width:1024px) {
  /*------------- nav --------------*/
  nav ul {
    flex-wrap: wrap;
  }
  nav ul li {
    width: calc(100% / 4);
    flex-grow: 0;
  }
  nav ul > li:last-child {
    flex-grow: 0;
  }
  /*2階層目を持つliの矢印の設定*/
  nav ul li.has_child::before {
    left: 20px;
  }
  /*================================
        　　　トップページ
  =================================*/
  .swiper-slide {
    width: 550px;
    height: 171px;
  }
  .sec_flex #sec_schedule {
    flex-basis: calc(100% - 330px);
  }
  .sec_flex #aside {
    flex-basis: 100%;
  }
  .sec_flex #aside ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  /*================================
              会長挨拶
  =================================*/
  #greeting .greeting_chairman {
    gap: 70px;
  }
  /*================================
              会報一覧
  =================================*/
  #newsletter ul li {
    width: calc((100% - 20px) / 3);
  }
  /*================================
      福井県内ロータリークラブ概要
  =================================*/
  #fukui_rc table tr th:nth-of-type(3), #fukui_rc table tr th:nth-of-type(5) {
    width: inherit;
  }
}
/*=============================================
                  599px以下 
===============================================*/
@media screen and (max-width:599px) {
  .icon_facebook {
    margin-right: 70px;
  }
  .icon_facebook span {
    display: none;
  }
  h1 img {
    width: 85%;
  }
  footer .inner_box {
    padding: 40px 0;
  }
  footer h2 {
    margin-bottom: 20px;
  }
  address {
    text-align: center;
    padding: 20px 0 0 0;
  }
  /*------------- nav --------------*/
  .header_inner {
    position: relative;
  }
  nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 90%;
    max-width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  nav ul {
    margin: 20px 0;
    padding: 0;
    flex-direction: column;
  }
  nav ul li, nav ul ul li {
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #eee;
    color: #333;
  }
  nav ul li a, nav ul ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 14px 14px;
  }
  nav ul li.sp_none {
    visibility: hidden;
  }
  /*2階層目を持つliの矢印の設定*/
  nav ul li.has_child::before {
    left: 50px;
    top: 22px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }
  /*下の階層を持っているulの指定*/
  nav li.has_child ul {
    visibility: visible;
    opacity: 1;
    background-color: #fff;
    margin-top: 0;
    top: 0;
  }
  /*---ハンバーガーメニューのスタイル---*/
  .hamburger {
    position: fixed;
    right: 15px;
    top: 12px;
    width: 50px; /* クリックしやすい幅 */
    height: 50px; /* クリックしやすい高さ */
    border-radius: 50%;
    background-color: #f1c04d;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger_border {
    display: inline-block;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 15px;
    width: 45%;
  }
  .hamburger_border_center {
    top: 23px;
    width: 35%;
  }
  .hamburger_border_bottom {
    top: 31px;
    width: 20%;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .nav-open .hamburger_border_center {
    opacity: 0;
  }
  .nav-open .hamburger_border_bottom {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
  /*================================
        　　　トップページ
  =================================*/
  .swiper-container {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .swiper-slide {
    width: 80%;
    height: 80%;
  }
  .sec_flex #sec_next, .sec_flex #sec_schedule, .sec_flex #movie_wrapper {
    flex-basis: 100%;
  }
  .sec_flex > div {
    display: block;
    align-items: center;
    width: 100%;
  }
  .sec_flex #sec_info {
    width: 100%;
    margin: 0 auto 50px auto;
  }
  .sec_flex > div > a > img {
    margin: 0 auto;
  }
  #movie_wrapper .sec_movie {
    margin-bottom: 20px;
  }
  .sec_flex #aside a {
    width: calc((100% - 10px) / 2);
  }
  /*================================
          下層ページ共通
  =================================*/
  .image_space { /*会長挨拶、クラブについて*/
    padding-bottom: 10%;
  }
  .inner_box_small { /*会長挨拶、クラブについて、プライバシーポリシー*/
    width: 95%;
  }
  /*================================
              会長挨拶
  =================================*/
  #greeting .greeting_chairman {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  /*================================
              会報一覧
  =================================*/
  #newsletter form .br {
    display: block;
  }
  #newsletter ul li {
    width: calc((100% - 10px) / 2);
    height: 100px;
  }
  /*================================
      福井県内ロータリークラブ概要　　　 
  ==================================*/
  #fukui_rc table {
    border: 0;
  }
  #fukui_rc table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  #fukui_rc table tr {
    border: 1px solid #2174c2;
    display: block;
    margin-bottom: .625em;
  }
  #fukui_rc table td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
  }
  #fukui_rc table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    font-size: 0.87em;
  }
  #fukui_rc table td:last-child {
    border-bottom: 1px solid #2174c2;
  }
}