  @charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/* form parts */
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type="submit"] {
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

select {
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/*===================================================================================================

 setting -- ¥µ¥¤¥ÈÈ«Ìå

====================================================================================================*/
/*-----------------------------------------------------------------------------------------------
 html, body
-----------------------------------------------------------------------------------------------*/
*, *::before, *::after {
//  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-width: 1000px;
  background-color: #fff;
  color: #000;
}

@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
  }
}

/*-----------------------------------------------------------------------------------------------
 font
-----------------------------------------------------------------------------------------------*/
body, input, button, select {
  font-size: 1.4rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Verdana, YuGothic, 'Yu Gothic', Meiryo, sans-serif;
  font-feature-settings: "palt";
  word-break: break-all;
}

@media screen\0 {
  body, input, button, select {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, body, input, button {
    font-feature-settings: "pkna";
  }
}

/*-----------------------------------------------------------------------------------------------
 style
-----------------------------------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #000;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

small {
  font-size: 1.2rem;
}

/*-----------------------------------------------------------------------------------------------
 box
-----------------------------------------------------------------------------------------------*/
.inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
  }
}

/*===================================================================================================

 template -- ¥Æ¥ó¥×¥ì©`¥È²¿·Ö

====================================================================================================*/
/*-----------------------------------------------------------------------------------------------
 header
-----------------------------------------------------------------------------------------------*/
.no-script {
  margin-bottom: 16px;
  padding: 8px;
  background-color: #000;
  color: #fff;
}

.no-script p {
  line-height: 1.5;
}

.site-header {
  position: relative;
  z-index: 3;
  padding: 24px 0 8px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.site-header .inner {
  position: relative;
}

.site-header .site-logo {
  width: 100%;
  max-width: 323px;
  height: auto;
  margin-bottom: 16px;
}

.site-header .site-logo a {
  display: block;
  transition: opacity 0.3s;
}

.site-header .site-logo a:hover, .site-header .site-logo a:focus {
  opacity: 0.75;
}

.site-header .site-logo img {
  display: block;
  height: 34px;
}

.site-header .global-menu {
  background-color: #fff;
  line-height: 1.5;
}

.site-header .global-menu .btn-logo {
  display: none;
}

.site-header .global-menu > ul {
  display: flex;
  align-items: stretch;
  position: relative;
}

.site-header .global-menu > ul > li {
  width: 25%;
  text-align: center;
}

.site-header .global-menu > ul > li dl {
  height: 100%;
  transition-property: background-color;
  transition-delay: 0.3s;
}

.site-header .global-menu > ul > li dl dt {
  height: 100%;
}

.site-header .global-menu > ul > li dl dt a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 16px;
  border-right: 1px solid #ccc;
  font-weight: bold;
  overflow: hidden;
}

.site-header .global-menu > ul > li dl dt a::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  transition: 0.3s;
}

.site-header .global-menu > ul > li dl dt a:hover::before, .site-header .global-menu > ul > li dl dt a:focus::before {
  transform: translateY(-100%);
}

.site-header .global-menu > ul > li dl dd {
  display: block;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 2;
  width: 1000px;
  padding-top: 8px;
  text-align: left;
  line-height: 1.5;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s 0.05s;
}

.site-header .global-menu > ul > li dl dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px;
  background-color: #fff;
  border-top: 2px solid #099ac8;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
}

.site-header .global-menu > ul > li dl dd li {
  padding: 16px;
}

.site-header .global-menu > ul > li dl dd li a {
  display: inline-block;
}

.site-header .global-menu > ul > li dl dd li a::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  color: #ccc;
  margin-right: 4px;
}

.site-header .global-menu > ul > li dl dd li a:hover, .site-header .global-menu > ul > li dl dd li a:focus {
  color: #1665bf;
  text-decoration: underline;
}

.site-header .global-menu > ul > li dl dd li:last-child a {
  border: none;
}

.site-header .global-menu > ul > li dl:hover, .site-header .global-menu > ul > li dl:focus {
  background-color: #f2f2f2;
}

.site-header .global-menu > ul > li dl:hover dd, .site-header .global-menu > ul > li dl:focus dd {
  transform: translateY(-16px);
  visibility: visible;
  opacity: 1;
  transition: 0.2s 0.3s;
}

.site-header .global-menu > ul > li dl.focused {
  background-color: #f2f2f2;
}

.site-header .global-menu > ul > li dl.focused dd {
  transform: translateY(-16px);
  visibility: visible;
  opacity: 1;
}

.site-header .global-menu > ul > li:first-child dt a {
  border-left: 1px solid #ccc;
}

.site-header .sub-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 661px;
  max-height: 34px;
}

.site-header .pages {
  display: flex;
  flex-wrap: wrap;
  margin-right: 16px;
}

.site-header .pages li a {
  transition: opacity 0.3s;
}

.site-header .pages li a::before {
  margin-right: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  color: #1665bf;
}

.site-header .pages li a:hover, .site-header .pages li a:focus {
  opacity: 0.75;
}

.site-header .pages li:first-child {
  margin-right: 16px;
}

.site-header .pages li:first-child a::before {
  content: "\f059";
}

.site-header .pages li:nth-child(2) a::before {
  content: "\f0e0";
}

.site-header .search-box {
  display: flex;
  margin-right: 16px;
  background-color: #1665bf;
}

.site-header .search-box input {
  width: 160px;
  height: 34px;
  padding: 0 8px;
  background-color: #fff;
  border: 1px solid #1665bf;
  border-right: none;
}

.site-header .search-box button {
  display: block;
  height: 34px;
  background-color: #1665bf;
  color: #fff;
  cursor: pointer;
}

.site-header .search-box button:active, .site-header .search-box button:focus {
  opacity: 0.75;
}

.site-header .search-box .fa-search {
  padding: 0 8px;
}

.site-header .social-media {
  display: flex;
  flex-wrap: wrap;
}

.site-header .social-media li:first-child {
  margin-right: 8px;
}

.site-header .social-media a {
  transition: opacity 0.3s;
}

.site-header .social-media a:hover, .site-header .social-media a:focus {
  opacity: 0.75;
}

.site-header .social-media img {
  display: block;
  width: 32px;
  height: auto;
}

.site-header .overlay {
  visibility: hidden;
  opacity: 0;
}

/* ¥°¥í©`¥Ð¥ë¥á¥Ë¥å©` current ±íÊ¾ */
#safety .global-menu li:first-child dt a,
#service .global-menu li:nth-child(2) dt a,
#energy .global-menu li:nth-child(3) dt a,
#company .global-menu li:last-child dt a {
  background-color: #1665bf;
  color: #fff;
}

#safety .global-menu li:first-child dt a::before,
#service .global-menu li:nth-child(2) dt a::before,
#energy .global-menu li:nth-child(3) dt a::before,
#company .global-menu li:last-child dt a::before {
  content: none;
}

/* ¥Ø¥Ã¥À©`¹Ì¶¨¥¹¥¿¥¤¥ë */
.site-header .global-menu.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.85), #fff);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
}

.site-header .global-menu.is-fixed > ul {
  width: 1000px;
  margin: 0 auto;
}

.site-header .global-menu.is-fixed > ul > li a {
  border: none;
  text-align: left;
}

.site-header .global-menu.is-fixed > ul > li dl dt a {
  transition: 0.3s;
}

.site-header .global-menu.is-fixed > ul > li dl dt a::before {
  background-color: #1665bf;
}

.site-header .global-menu.is-fixed > ul > li dl dt a:hover, .site-header .global-menu.is-fixed > ul > li dl dt a:focus {
  color: #fff;
}

.site-header .global-menu.is-fixed > ul > li dl dd {
  display: none;
}

.site-header .global-menu.is-fixed > ul > li dl:hover, .site-header .global-menu.is-fixed > ul > li dl:focus {
  background: none;
}

.site-header .global-menu.is-fixed > ul > li:first-child a {
  border-left: none;
}

.site-header .nav-toggle {
  display: none;
}

/*-----------------------------------------------------------------------------------------------
 contents-header
-----------------------------------------------------------------------------------------------*/
.contents-header .pankuzu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 8px 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.contents-header .pankuzu li {
  color: #333;
}

.contents-header .pankuzu li::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ccc;
  margin: 0 8px;
}

.contents-header .pankuzu li:last-child::after {
  content: none;
}

.contents-header .pankuzu a {
  color: #1665bf;
}

.contents-header .pankuzu a:hover, .contents-header .pankuzu a:focus {
  text-decoration: underline;
}

.contents-header .page-title {
  position: relative;
  background-color: #1665bf;
  text-align: center;

}

.contents-header .page-title .inner {
  position: relative;
  padding: 24px 0 32px;
  line-height: 1.5;
}

.contents-header .page-title .inner::after {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e4eefa;
  transform: skew(-30deg);
}

.contents-header .page-title .title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0px;
  position: relative;
  z-index: 1;
  margin: 0 72px;
  font-size: 2.8rem;
  word-break: break-all;
}

.contents-header .page-title .title::after {
  content: "";
  width: 96px;
  height: 4px;
  margin-top: 8px;
  background-color: #1665bf;
}

.contents-header .page-title .page-category {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

/*-----------------------------------------------------------------------------------------------
 footer
-----------------------------------------------------------------------------------------------*/
/* PAGE TOP NAVIGATION */
.page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  border-radius: 8em;
  margin: 0 16px 16px 0;
  padding: 16px;
  background-color: #1665bf;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.75;
  line-height: 1.5;
}

.page-top::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3.2rem;
  margin-top: -16px;
  margin-bottom: -8px;
}

.page-top:hover, .page-top:focus {
  opacity: 1;
}

.site-footer a:hover, .site-footer a:focus {
  text-decoration: underline;
}

.site-footer .footer-menu {
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.site-footer .footer-menu ul {
  display: flex;
}

.site-footer .footer-menu li {
  margin-left: 16px;
}

.site-footer .footer-menu li:first-child {
  margin-left: 0;
}

.site-footer .footer-menu li:nth-child(4) {
  margin-left: auto;
}

.site-footer .footer-menu li:nth-child(-n+3) a::before {
  display: inline-block;
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #1665bf;
  margin-right: 4px;
}

.site-footer .footer-menu li:nth-child(n+4) .fa-external-link-alt {
  display: inline-block;
  margin-left: 4px;
  color: #1665bf;
}

.site-footer .copyright {
  padding: 16px;
  text-align: center;
  color: #333;
}

/*-----------------------------------------------------------------------------------------------
 category-top
-----------------------------------------------------------------------------------------------*/
.c-category-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background-image: url(/nw/jukyuu/img/page-title.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.c-category-top dl {
  padding: 48px 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.5;
}

.c-category-top dl > div {
  position: relative;
  width: 484px;
  margin-bottom: 32px;
  background-color: #f2f2f2;
  border: 2px solid #1665bf;
  overflow: hidden;
}

.c-category-top dl > div::before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: -25px;
  width: 48px;
  height: 48px;
  background-color: #1665bf;
  transform: rotate(45deg);
}

.c-category-top dl > div:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.c-category-top dl dt {
  padding: 24px 16px 24px 40px;
  font-size: 1.8rem;
  font-weight: bold;
}

.c-category-top dl dd {
  height: 100%;
  padding: 16px 16px 16px 40px;
  background-color: #fff;
  border-top: 1px dotted #1665bf;
  font-size: 1.6rem;
}

.c-category-top dl dd li {
  margin-bottom: 8px;
}

.c-category-top dl dd li::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #1665bf;
  margin-right: 8px;
}

.c-category-top dl dd li:last-child {
  margin-bottom: 0;
}

.c-category-top dl a {
  color: #1665bf;
}

.c-category-top dl a:hover, .c-category-top dl a:focus {
  text-decoration: underline;
}

#safety .c-category-top::before {
  background-image: url(/nw/jukyuu/img/page-title_safety.jpg);
}

#service .c-category-top::before {
  background-image: url(/nw/jukyuu/img/page-title_service.jpg);
}

#energy .c-category-top::before {
  background-image: url(/nw/jukyuu/img/page-title_energy.jpg);
}

#company .c-category-top::before {
  background-image: url(/nw/jukyuu/img/page-title_company.jpg);
}

@media screen and (max-width: 640px) {
  /*-----------------------------------------------------------------------------------------------
 header-sp
-----------------------------------------------------------------------------------------------*/
  .site-header {
    padding: 0;
    background-color: #fff;
  }
  .site-header .site-logo {
    width: calc(100% - 40px);
    margin-right: 16px;
    margin-bottom: 0;
  }
  .site-header .responsive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px 16px;
  }
  .site-header .responsive-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 1;
    width: 85vw;
    height: 100vh;
    padding-top: 64px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 50%, #fff);
    box-shadow: -2px 0 8px 0 rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  .site-header .responsive-menu .global-menu {
    background: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .site-header .responsive-menu .global-menu > ul {
    display: block;
  }
  .site-header .responsive-menu .global-menu > ul > li {
    width: 100%;
    text-align: left;
  }
  .site-header .responsive-menu .global-menu > ul > li dl {
    position: static;
    height: auto;
    transition: none;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dt {
    height: auto;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dt a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: static;
    height: auto;
    padding: 16px;
    border-right: none;
    overflow: visible;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dt a::before {
    content: none;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dt a::after {
    content: "?";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    color: #1665bf;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dd {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    z-index: 2;
    width: 100%;
    padding-top: 8px;
    text-align: left;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s 0.3s;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dd ul {
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
  }
  .site-header .responsive-menu .global-menu > ul > li dl dd li a {
    display: block;
    padding: 16px;
    border-bottom: 1px dotted #ccc;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dd li a:hover, .site-header .responsive-menu .global-menu > ul > li dl dd li a:focus {
    background-color: #1665bf;
    color: #fff;
  }
  .site-header .responsive-menu .global-menu > ul > li dl dd li:last-child a {
    border: none;
  }
  .site-header .responsive-menu .global-menu > ul > li dl:hover, .site-header .responsive-menu .global-menu > ul > li dl:focus {
    background: none;
  }
  .site-header .responsive-menu .global-menu > ul > li dl.focused {
    background: none;
  }
  .site-header .responsive-menu .global-menu > ul > li:first-child dt a {
    border-left: none;
  }
  .site-header .responsive-menu .sub-menu {
    display: block;
    position: static;
    width: 100%;
    max-width: auto;
    max-height: auto;
  }
  .site-header .responsive-menu .pages {
    display: block;
    margin-right: 0;
    padding: 16px;
    border-bottom: 1px solid #eee;
  }
  .site-header .responsive-menu .pages li:first-child {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .site-header .responsive-menu .search-box {
    background: none;
    margin-right: 0;
    padding: 16px;
  }
  .site-header .responsive-menu .search-box input {
    width: 100%;
    height: auto;
    padding: 8px;
    font-size: 1.6rem;
  }
  .site-header .responsive-menu .search-box button {
    display: block;
    height: auto;
    padding: 8px;
    font-size: 1.6rem;
  }
  .site-header .responsive-menu .search-box i {
    padding: 0;
    text-align: center;
  }
  .site-header .responsive-menu .social-media {
    padding: 0 16px;
  }
  .site-header .responsive-menu .is-fixed {
    position: static;
    background: none;
    box-shadow: none;
  }
  .site-header .responsive-menu .is-fixed .btn-logo {
    display: none;
  }
  .site-header .responsive-menu .is-fixed > ul {
    width: 100%;
    margin-right: 0;
  }
  .site-header .responsive-menu .is-fixed > ul > li a {
    border: none;
  }
  .site-header .responsive-menu .is-fixed > ul > li dl dt a {
    padding: 16px;
    font-size: 1.4rem;
  }
  .site-header .responsive-menu .is-fixed > ul > li dl dt a:hover, .site-header .responsive-menu .is-fixed > ul > li dl dt a:focus {
    color: #000;
  }
  .site-header .responsive-menu .is-fixed > ul > li dl dt a::after {
    margin-left: auto;
  }
  .site-header .responsive-menu .is-fixed > ul > li dl dd {
    display: none;
  }
  .site-header .nav-toggle {
    position: relative;
    display: block;
    width: 24px;
    height: 20px;
    margin-bottom: 6px;
    cursor: pointer;
    z-index: 101;
  }
  .site-header .nav-toggle div {
    position: relative;
  }
  .site-header .nav-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1665bf;
    border-radius: 2px;
    transition: .35s ease-in-out;
  }
  .site-header .nav-toggle span:first-child {
    top: 0;
  }
  .site-header .nav-toggle span:nth-child(2) {
    top: 8px;
  }
  .site-header .nav-toggle span:last-child {
    top: 16px;
  }
  .site-header .nav-toggle .toggle-text {
    position: absolute;
    bottom: -8px;
    width: 24px;
  }
  .site-header .nav-toggle .toggle-text img {
    display: block;
  }
  .site-header.active .responsive-menu {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  .site-header.active .overlay {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
    overflow: hidden;
    transition: 0.3s;
  }
  .site-header.active .nav-toggle {
    position: fixed;
    top: 20px;
    right: 16px;
  }
  .site-header.active .nav-toggle span:first-child {
    top: 9px;
    transform: rotate(315deg);
  }
  .site-header.active .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .site-header.active .nav-toggle span:last-child {
    top: 9px;
    transform: rotate(-315deg);
  }
  .main {
    padding-top: 0 !important;
  }
  /*-----------------------------------------------------------------------------------------------
 contents-header
-----------------------------------------------------------------------------------------------*/
  .contents-header .pankuzu {
    margin-top: 0;
    padding: 8px;
  }
  .contents-header .page-title .inner {
    position: static;
    padding: 16px 0px 24px;
  }
  .contents-header .page-title .inner::after {
    content: none;
  }
  .contents-header .page-title .title {
    position: static;
    margin: 0 16px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
  }
  .contents-header .page-title .title::after {
    width: 64px;
    height: 4px;
    background-color: #ccc;
  }
  
  .contents-header .page-title #saiene_jisseki__title {
    font-size: 0;
  }
  .contents-header .page-title #saiene_jisseki__title:before {
    font-size: 2.4rem;
    content: "ß^È¥¤ÎÔÙÉú¿ÉÄÜ¥¨¥Í¥ë¥®©`¤Î\A³öÁ¦ÖÆÓùŒg¿ƒ";
    white-space: pre ;
  }
  
  .contents-header .page-title #saiene_kaisu_title {
    font-size: 0;
  }
  .contents-header .page-title #saiene_kaisu_title:before {
    font-size: 2.4rem;
    content: "ÔÙÉú¿ÉÄÜ¥¨¥Í¥ë¥®©`¤Î\A³öÁ¦ÖÆÓù»ØÊýŒg¿ƒ";
    white-space: pre ;
  }
  
  
  .contents-header .page-title .page-category {
    position: static;
    margin-top: 16px;
    color: #fff;
  }
  /*-----------------------------------------------------------------------------------------------
 footer
-----------------------------------------------------------------------------------------------*/
  /* PAGE TOP NAVIGATION */
  .page-top {
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    margin: 0;
    padding: 8px;
    background-color: #1665bf;
    font-size: 1rem;
    color: #fff;
  }
  .page-top::before {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 8px;
  }
  .site-footer a:hover, .site-footer a:focus {
    text-decoration: none;
  }
  .site-footer .footer-menu {
    padding: 8px;
    font-size: 1.2rem;
    background-color: #f2f2f2;
  }
  .site-footer .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .site-footer .footer-menu li {
    margin-left: 0;
    padding: 8px;
  }
  .site-footer .footer-menu li:first-child {
    margin-left: 0;
  }
  .site-footer .footer-menu li:nth-child(4) {
    margin-left: 0;
  }
  .site-footer .copyright {
    padding: 8px;
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
  }
  /*-----------------------------------------------------------------------------------------------
 category-top
-----------------------------------------------------------------------------------------------*/
  .c-category-top::before {
    height: 160px;
  }
  .c-category-top dl {
    padding: 16px 16px 80px;
    display: block;
  }
  .c-category-top dl > div {
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid #1665bf;
  }
  .c-category-top dl > div::before {
    top: -13px;
    left: -13px;
    width: 24px;
    height: 24px;
  }
  .c-category-top dl > div:nth-last-child(-n+2) {
    margin-bottom: 16px;
  }
  .c-category-top dl > div:last-child {
    margin-bottom: 0;
  }
  .c-category-top dl dt {
    padding: 16px;
    font-size: 1.4rem;
  }
  .c-category-top dl dd {
    padding: 8px;
    font-size: 1.2rem;
  }
  .c-category-top dl dd ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-category-top dl dd li {
    margin: 4px 8px;
  }
}

/*===================================================================================================

 common -- ¥Æ¥ó¥×¥ì©`¥ÈÒÔÍâ¤Î¹²Í¨²¿·Ö

====================================================================================================*/
/*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥È¥Ã¥×¡¢¾o¼±Çéˆó
-----------------------------------------------------------------------------------------------*/
.c-basic-content,
.c-blog-top,
.c-blog-content,
.c-emergency-large,
.c-emergency-small {
  padding: 32px 0 80px;
}

/*»ù±¾¥³¥ó¥Æ¥Ê*/
.main-container {
	width: 1000px;
	margin: 0px auto;
	padding: 10px 0px;
	color: #666666;
}

/*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥Ú©`¥¸¡¢¾o¼±Çéˆó
-----------------------------------------------------------------------------------------------*/
.c-basic-content,
.c-blog-content,
.c-emergency-large,
.c-emergency-small {
  line-height: 1.5;
}

.c-basic-content p,
.c-blog-content p,
.c-emergency-large p,
.c-emergency-small p {
  margin-bottom: 16px;
}

.c-basic-content hr,
.c-blog-content hr,
.c-emergency-large hr,
.c-emergency-small hr {
  margin: 32px 0;
  border-top: 1px solid #ccc;
}

.c-basic-content ul, .c-basic-content ol,
.c-blog-content ul,
.c-blog-content ol,
.c-emergency-large ul,
.c-emergency-large ol,
.c-emergency-small ul,
.c-emergency-small ol {
  margin-bottom: 16px;
}

.c-basic-content ul li, .c-basic-content ol li,
.c-blog-content ul li,
.c-blog-content ol li,
.c-emergency-large ul li,
.c-emergency-large ol li,
.c-emergency-small ul li,
.c-emergency-small ol li {
  margin-bottom: 8px;
}

.c-basic-content ul li:last-child, .c-basic-content ol li:last-child,
.c-blog-content ul li:last-child,
.c-blog-content ol li:last-child,
.c-emergency-large ul li:last-child,
.c-emergency-large ol li:last-child,
.c-emergency-small ul li:last-child,
.c-emergency-small ol li:last-child {
  margin-bottom: 0;
}

.c-basic-content ul.disc, .c-basic-content ol.disc,
.c-blog-content ul.disc,
.c-blog-content ol.disc,
.c-emergency-large ul.disc,
.c-emergency-large ol.disc,
.c-emergency-small ul.disc,
.c-emergency-small ol.disc {
  list-style: disc;
  margin-left: 1em;
  padding-left: 16px;
}

.c-basic-content ul.circle, .c-basic-content ol.circle,
.c-blog-content ul.circle,
.c-blog-content ol.circle,
.c-emergency-large ul.circle,
.c-emergency-large ol.circle,
.c-emergency-small ul.circle,
.c-emergency-small ol.circle {
  list-style: circle;
  margin-left: 1em;
  padding-left: 16px;
}

.c-basic-content ul.decimal, .c-basic-content ol.decimal,
.c-blog-content ul.decimal,
.c-blog-content ol.decimal,
.c-emergency-large ul.decimal,
.c-emergency-large ol.decimal,
.c-emergency-small ul.decimal,
.c-emergency-small ol.decimal {
  list-style: decimal;
  margin-left: 1em;
  padding-left: 16px;
}

.c-basic-content ul.lower-latin, .c-basic-content ol.lower-latin,
.c-blog-content ul.lower-latin,
.c-blog-content ol.lower-latin,
.c-emergency-large ul.lower-latin,
.c-emergency-large ol.lower-latin,
.c-emergency-small ul.lower-latin,
.c-emergency-small ol.lower-latin {
  list-style: lower-latin;
  margin-left: 1em;
  padding-left: 16px;
}

.c-basic-content ul.arrow, .c-basic-content ol.arrow,
.c-blog-content ul.arrow,
.c-blog-content ol.arrow,
.c-emergency-large ul.arrow,
.c-emergency-large ol.arrow,
.c-emergency-small ul.arrow,
.c-emergency-small ol.arrow {
  margin-left: 1em;
  margin-bottom: 16px;
  padding: 0 1em;
  text-indent: -1em;
}

.c-basic-content ul.arrow li::before, .c-basic-content ol.arrow li::before,
.c-blog-content ul.arrow li::before,
.c-blog-content ol.arrow li::before,
.c-emergency-large ul.arrow li::before,
.c-emergency-large ol.arrow li::before,
.c-emergency-small ul.arrow li::before,
.c-emergency-small ol.arrow li::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #999;
  margin-right: 8px;
}

.c-basic-content ul.anchor-menu, .c-basic-content ol.anchor-menu,
.c-blog-content ul.anchor-menu,
.c-blog-content ol.anchor-menu,
.c-emergency-large ul.anchor-menu,
.c-emergency-large ol.anchor-menu,
.c-emergency-small ul.anchor-menu,
.c-emergency-small ol.anchor-menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 2px solid #1665bf;
}

.c-basic-content ul.anchor-menu li, .c-basic-content ol.anchor-menu li,
.c-blog-content ul.anchor-menu li,
.c-blog-content ol.anchor-menu li,
.c-emergency-large ul.anchor-menu li,
.c-emergency-large ol.anchor-menu li,
.c-emergency-small ul.anchor-menu li,
.c-emergency-small ol.anchor-menu li {
  margin: 8px 16px;
  text-indent: -0.65em;
  padding-left: 0.65em;
}

.c-basic-content ul.anchor-menu a, .c-basic-content ol.anchor-menu a,
.c-blog-content ul.anchor-menu a,
.c-blog-content ol.anchor-menu a,
.c-emergency-large ul.anchor-menu a,
.c-emergency-large ol.anchor-menu a,
.c-emergency-small ul.anchor-menu a,
.c-emergency-small ol.anchor-menu a {
  text-decoration: none;
  color: #1665bf;
  font-weight: bold;
}

.c-basic-content ul.anchor-menu a::before, .c-basic-content ol.anchor-menu a::before,
.c-blog-content ul.anchor-menu a::before,
.c-blog-content ol.anchor-menu a::before,
.c-emergency-large ul.anchor-menu a::before,
.c-emergency-large ol.anchor-menu a::before,
.c-emergency-small ul.anchor-menu a::before,
.c-emergency-small ol.anchor-menu a::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  color: #baa455;
  margin-right: 4px;
}

.c-basic-content ul.anchor-menu a:hover, .c-basic-content ul.anchor-menu a:focus, .c-basic-content ol.anchor-menu a:hover, .c-basic-content ol.anchor-menu a:focus,
.c-blog-content ul.anchor-menu a:hover,
.c-blog-content ul.anchor-menu a:focus,
.c-blog-content ol.anchor-menu a:hover,
.c-blog-content ol.anchor-menu a:focus,
.c-emergency-large ul.anchor-menu a:hover,
.c-emergency-large ul.anchor-menu a:focus,
.c-emergency-large ol.anchor-menu a:hover,
.c-emergency-large ol.anchor-menu a:focus,
.c-emergency-small ul.anchor-menu a:hover,
.c-emergency-small ul.anchor-menu a:focus,
.c-emergency-small ol.anchor-menu a:hover,
.c-emergency-small ol.anchor-menu a:focus {
  color: #1665bf;
  text-decoration: underline;
}

.c-basic-content ul.anchor-menu a:hover::after, .c-basic-content ul.anchor-menu a:focus::after, .c-basic-content ol.anchor-menu a:hover::after, .c-basic-content ol.anchor-menu a:focus::after,
.c-blog-content ul.anchor-menu a:hover::after,
.c-blog-content ul.anchor-menu a:focus::after,
.c-blog-content ol.anchor-menu a:hover::after,
.c-blog-content ol.anchor-menu a:focus::after,
.c-emergency-large ul.anchor-menu a:hover::after,
.c-emergency-large ul.anchor-menu a:focus::after,
.c-emergency-large ol.anchor-menu a:hover::after,
.c-emergency-large ol.anchor-menu a:focus::after,
.c-emergency-small ul.anchor-menu a:hover::after,
.c-emergency-small ul.anchor-menu a:focus::after,
.c-emergency-small ol.anchor-menu a:hover::after,
.c-emergency-small ol.anchor-menu a:focus::after {
  color: #ccc;
}

.c-basic-content ul.page-index, .c-basic-content ol.page-index,
.c-blog-content ul.page-index,
.c-blog-content ol.page-index,
.c-emergency-large ul.page-index,
.c-emergency-large ol.page-index,
.c-emergency-small ul.page-index,
.c-emergency-small ol.page-index {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.c-basic-content ul.page-index li, .c-basic-content ol.page-index li,
.c-blog-content ul.page-index li,
.c-blog-content ol.page-index li,
.c-emergency-large ul.page-index li,
.c-emergency-large ol.page-index li,
.c-emergency-small ul.page-index li,
.c-emergency-small ol.page-index li {
  width: calc(50% - 8px);
  margin: 8px 0;
}

.c-basic-content ul.page-index a, .c-basic-content ol.page-index a,
.c-blog-content ul.page-index a,
.c-blog-content ol.page-index a,
.c-emergency-large ul.page-index a,
.c-emergency-large ol.page-index a,
.c-emergency-small ul.page-index a,
.c-emergency-small ol.page-index a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 16px;
  border: 1px solid #1665bf;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
  transition: 0.3s;
}

.c-basic-content ul.page-index a::before, .c-basic-content ol.page-index a::before,
.c-blog-content ul.page-index a::before,
.c-blog-content ol.page-index a::before,
.c-emergency-large ul.page-index a::before,
.c-emergency-large ol.page-index a::before,
.c-emergency-small ul.page-index a::before,
.c-emergency-small ol.page-index a::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  margin-right: 16px;
  color: #ccc;
  transition: 0.3s;
}

.c-basic-content ul.page-index a:hover, .c-basic-content ul.page-index a:focus, .c-basic-content ol.page-index a:hover, .c-basic-content ol.page-index a:focus,
.c-blog-content ul.page-index a:hover,
.c-blog-content ul.page-index a:focus,
.c-blog-content ol.page-index a:hover,
.c-blog-content ol.page-index a:focus,
.c-emergency-large ul.page-index a:hover,
.c-emergency-large ul.page-index a:focus,
.c-emergency-large ol.page-index a:hover,
.c-emergency-large ol.page-index a:focus,
.c-emergency-small ul.page-index a:hover,
.c-emergency-small ul.page-index a:focus,
.c-emergency-small ol.page-index a:hover,
.c-emergency-small ol.page-index a:focus {
  background-color: #f2f2f2;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

.c-basic-content ul.page-index a:hover::before, .c-basic-content ul.page-index a:focus::before, .c-basic-content ol.page-index a:hover::before, .c-basic-content ol.page-index a:focus::before,
.c-blog-content ul.page-index a:hover::before,
.c-blog-content ul.page-index a:focus::before,
.c-blog-content ol.page-index a:hover::before,
.c-blog-content ol.page-index a:focus::before,
.c-emergency-large ul.page-index a:hover::before,
.c-emergency-large ul.page-index a:focus::before,
.c-emergency-large ol.page-index a:hover::before,
.c-emergency-large ol.page-index a:focus::before,
.c-emergency-small ul.page-index a:hover::before,
.c-emergency-small ul.page-index a:focus::before,
.c-emergency-small ol.page-index a:hover::before,
.c-emergency-small ol.page-index a:focus::before {
  color: #1665bf;
}

.c-basic-content dl,
.c-blog-content dl,
.c-emergency-large dl,
.c-emergency-small dl {
  margin-bottom: 16px;
}

.c-basic-content dl.normal,
.c-blog-content dl.normal,
.c-emergency-large dl.normal,
.c-emergency-small dl.normal {
  display: flex;
  flex-wrap: wrap;
  padding: 0 16px;
}

.c-basic-content dl.normal dt, .c-basic-content dl.normal dd,
.c-blog-content dl.normal dt,
.c-blog-content dl.normal dd,
.c-emergency-large dl.normal dt,
.c-emergency-large dl.normal dd,
.c-emergency-small dl.normal dt,
.c-emergency-small dl.normal dd {
  margin-bottom: 8px;
  padding: 8px;
}

.c-basic-content dl.normal dt:last-of-type, .c-basic-content dl.normal dd:last-of-type,
.c-blog-content dl.normal dt:last-of-type,
.c-blog-content dl.normal dd:last-of-type,
.c-emergency-large dl.normal dt:last-of-type,
.c-emergency-large dl.normal dd:last-of-type,
.c-emergency-small dl.normal dt:last-of-type,
.c-emergency-small dl.normal dd:last-of-type {
  margin-bottom: 0;
}

.c-basic-content dl.normal dt,
.c-blog-content dl.normal dt,
.c-emergency-large dl.normal dt,
.c-emergency-small dl.normal dt {
  width: 8em;
  font-weight: bold;
}

.c-basic-content dl.normal dd,
.c-blog-content dl.normal dd,
.c-emergency-large dl.normal dd,
.c-emergency-small dl.normal dd {
  width: calc(100% - 8em);
}

.c-basic-content dl.accent,
.c-blog-content dl.accent,
.c-emergency-large dl.accent,
.c-emergency-small dl.accent {
  padding: 0;
}

.c-basic-content dl.accent dt, .c-basic-content dl.accent dd,
.c-blog-content dl.accent dt,
.c-blog-content dl.accent dd,
.c-emergency-large dl.accent dt,
.c-emergency-large dl.accent dd,
.c-emergency-small dl.accent dt,
.c-emergency-small dl.accent dd {
  border: 1px solid #099ac8;
}

.c-basic-content dl.accent dt,
.c-blog-content dl.accent dt,
.c-emergency-large dl.accent dt,
.c-emergency-small dl.accent dt {
  background-color: #099ac8;
  color: #fff;
  text-align: center;
}

.c-basic-content table,
.c-blog-content table,
.c-emergency-large table,
.c-emergency-small table {
  margin-bottom: 16px;
}

.c-basic-content table caption,
.c-blog-content table caption,
.c-emergency-large table caption,
.c-emergency-small table caption {
  margin-bottom: 16px;
  font-weight: bold;
}

.c-basic-content table th, .c-basic-content table td,
.c-blog-content table th,
.c-blog-content table td,
.c-emergency-large table th,
.c-emergency-large table td,
.c-emergency-small table th,
.c-emergency-small table td {
  padding: 8px;
//  border: 1px solid #999;
  vertical-align: middle;
}

.c-basic-content table th,
.c-blog-content table th,
.c-emergency-large table th,
.c-emergency-small table th {
  text-align: center;
  font-weight: bold;
}

.c-basic-content table thead th,
.c-blog-content table thead th,
.c-emergency-large table thead th,
.c-emergency-small table thead th {
  background-color: #1665bf;
  color: #fff;
}

.c-basic-content table thead td,
.c-blog-content table thead td,
.c-emergency-large table thead td,
.c-emergency-small table thead td {
  background-color: #e4eefa;
}

.c-basic-content table tfoot th,
.c-blog-content table tfoot th,
.c-emergency-large table tfoot th,
.c-emergency-small table tfoot th {
  background-color: #ccc;
}

.c-basic-content table tfoot td,
.c-blog-content table tfoot td,
.c-emergency-large table tfoot td,
.c-emergency-small table tfoot td {
  background-color: #eee;
}

.c-basic-content table tbody th,
.c-blog-content table tbody th,
.c-emergency-large table tbody th,
.c-emergency-small table tbody th {
  background-color: #f2f2f2;
}

.c-basic-content table .border-bold,
.c-blog-content table .border-bold,
.c-emergency-large table .border-bold,
.c-emergency-small table .border-bold {
  border-width: 2px;
  border-color: #000;
}

.c-basic-content table .border-bold.no-top,
.c-blog-content table .border-bold.no-top,
.c-emergency-large table .border-bold.no-top,
.c-emergency-small table .border-bold.no-top {
  border-top-width: 1px;
  border-top-color: #999;
}

.c-basic-content table .border-bold.no-bottom,
.c-blog-content table .border-bold.no-bottom,
.c-emergency-large table .border-bold.no-bottom,
.c-emergency-small table .border-bold.no-bottom {
  border-bottom-width: 1px;
  border-bottom-color: #999;
}

.c-basic-content table .border-bold.no-right,
.c-blog-content table .border-bold.no-right,
.c-emergency-large table .border-bold.no-right,
.c-emergency-small table .border-bold.no-right {
  border-right-width: 1px;
  border-right-color: #999;
}

.c-basic-content table .border-bold.no-left,
.c-blog-content table .border-bold.no-left,
.c-emergency-large table .border-bold.no-left,
.c-emergency-small table .border-bold.no-left {
  border-left-width: 1px;
  border-left-color: #999;
}

.c-basic-content table.full,
.c-blog-content table.full,
.c-emergency-large table.full,
.c-emergency-small table.full {
  width: 100%;
}

.c-basic-content a,
.c-blog-content a,
.c-emergency-large a,
.c-emergency-small a {
  color: #1665bf;
  text-decoration: underline;
}

.c-basic-content a:hover, .c-basic-content a:focus,
.c-blog-content a:hover,
.c-blog-content a:focus,
.c-emergency-large a:hover,
.c-emergency-large a:focus,
.c-emergency-small a:hover,
.c-emergency-small a:focus {
  text-decoration: none;
}

.c-basic-content a.opa,
.c-blog-content a.opa,
.c-emergency-large a.opa,
.c-emergency-small a.opa {
  transition: opacity 0.3s;
}

.c-basic-content a.opa:hover, .c-basic-content a.opa:focus,
.c-blog-content a.opa:hover,
.c-blog-content a.opa:focus,
.c-emergency-large a.opa:hover,
.c-emergency-large a.opa:focus,
.c-emergency-small a.opa:hover,
.c-emergency-small a.opa:focus {
  opacity: 0.75;
}

.c-basic-content a.link-button-1,
.c-blog-content a.link-button-1,
.c-emergency-large a.link-button-1,
.c-emergency-small a.link-button-1 {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(#1665bf, #317ed6);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  transition: opacity 0.3s;
}

.c-basic-content a.link-button-1::before,
.c-blog-content a.link-button-1::before,
.c-emergency-large a.link-button-1::before,
.c-emergency-small a.link-button-1::before {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
  color: #ccc;
}

.c-basic-content a.link-button-1.top::before,
.c-blog-content a.link-button-1.top::before,
.c-emergency-large a.link-button-1.top::before,
.c-emergency-small a.link-button-1.top::before {
  content: '\f106';
}

.c-basic-content a.link-button-1:hover, .c-basic-content a.link-button-1:focus,
.c-blog-content a.link-button-1:hover,
.c-blog-content a.link-button-1:focus,
.c-emergency-large a.link-button-1:hover,
.c-emergency-large a.link-button-1:focus,
.c-emergency-small a.link-button-1:hover,
.c-emergency-small a.link-button-1:focus {
  opacity: 0.75;
}

.c-basic-content a span.fas, .c-basic-content a span.far,
.c-blog-content a span.fas,
.c-blog-content a span.far,
.c-emergency-large a span.fas,
.c-emergency-large a span.far,
.c-emergency-small a span.fas,
.c-emergency-small a span.far {
  margin: 0 8px;
  text-indent: 0;
  font-size: 1.8rem;
  vertical-align: middle;
}

.c-basic-content a span.fa-file-pdf,
.c-blog-content a span.fa-file-pdf,
.c-emergency-large a span.fa-file-pdf,
.c-emergency-small a span.fa-file-pdf {
  color: #cf1c00;
}

.c-basic-content a span.fa-file-word,
.c-blog-content a span.fa-file-word,
.c-emergency-large a span.fa-file-word,
.c-emergency-small a span.fa-file-word {
  color: #2a5599;
}

.c-basic-content a span.fa-file-excel,
.c-blog-content a span.fa-file-excel,
.c-emergency-large a span.fa-file-excel,
.c-emergency-small a span.fa-file-excel {
  color: #136b38;
}

.c-basic-content a span.fa-external-link-alt,
.c-blog-content a span.fa-external-link-alt,
.c-emergency-large a span.fa-external-link-alt,
.c-emergency-small a span.fa-external-link-alt {
  font-size: auto;
  font-size: 1.4rem;
  color: #099ac8;
}

.c-basic-content sup,
.c-blog-content sup,
.c-emergency-large sup,
.c-emergency-small sup {
  font-size: 1rem;
  vertical-align: top;
}

.c-basic-content .fs-xsmall,
.c-blog-content .fs-xsmall,
.c-emergency-large .fs-xsmall,
.c-emergency-small .fs-xsmall {
  font-size: 1rem;
}

.c-basic-content .fs-small,
.c-blog-content .fs-small,
.c-emergency-large .fs-small,
.c-emergency-small .fs-small {
  font-size: 1.2rem;
}

.c-basic-content .fs-normal,
.c-blog-content .fs-normal,
.c-emergency-large .fs-normal,
.c-emergency-small .fs-normal {
  font-size: 1.4rem;
}

.c-basic-content .fs-large,
.c-blog-content .fs-large,
.c-emergency-large .fs-large,
.c-emergency-small .fs-large {
  font-size: 1.6rem;
}

.c-basic-content .fs-xlarge,
.c-blog-content .fs-xlarge,
.c-emergency-large .fs-xlarge,
.c-emergency-small .fs-xlarge {
  font-size: 1.8rem;
}

.c-basic-content .fs-xxlarge,
.c-blog-content .fs-xxlarge,
.c-emergency-large .fs-xxlarge,
.c-emergency-small .fs-xxlarge {
  font-size: 2.4rem;
}

.c-basic-content .fs-xxxlarge,
.c-blog-content .fs-xxxlarge,
.c-emergency-large .fs-xxxlarge,
.c-emergency-small .fs-xxxlarge {
  font-size: 2.8rem;
}

.c-basic-content .fc-red,
.c-blog-content .fc-red,
.c-emergency-large .fc-red,
.c-emergency-small .fc-red {
  color: #bb1212;
}

.c-basic-content .underline,
.c-blog-content .underline,
.c-emergency-large .underline,
.c-emergency-small .underline {
  text-decoration: underline;
}

.c-basic-content .tal,
.c-blog-content .tal,
.c-emergency-large .tal,
.c-emergency-small .tal {
  text-align: left;
}

.c-basic-content .tar,
.c-blog-content .tar,
.c-emergency-large .tar,
.c-emergency-small .tar {
  text-align: right;
}

.c-basic-content .tac,
.c-blog-content .tac,
.c-emergency-large .tac,
.c-emergency-small .tac {
  text-align: center;
}

.c-basic-content .indent,
.c-blog-content .indent,
.c-emergency-large .indent,
.c-emergency-small .indent {
  text-indent: 1em;
}

.c-basic-content .wrap-indent,
.c-blog-content .wrap-indent,
.c-emergency-large .wrap-indent,
.c-emergency-small .wrap-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.c-basic-content .bg-gray,
.c-blog-content .bg-gray,
.c-emergency-large .bg-gray,
.c-emergency-small .bg-gray {
  margin-bottom: 16px;
  padding: 16px;
  background-color: #f2f2f2;
  border: 1px dotted #666;
}

.c-basic-content .bg-red,
.c-blog-content .bg-red,
.c-emergency-large .bg-red,
.c-emergency-small .bg-red {
  margin-bottom: 16px;
  padding: 16px;
  background-color: #fbe5e5;
  border: 1px dotted #bb1212;
}

.c-basic-content .border-gray,
.c-blog-content .border-gray,
.c-emergency-large .border-gray,
.c-emergency-small .border-gray {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #ccc;
}

.c-basic-content .border-red,
.c-blog-content .border-red,
.c-emergency-large .border-red,
.c-emergency-small .border-red {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #bb1212;
}

.c-basic-content .flex-2c-start,
.c-blog-content .flex-2c-start,
.c-emergency-large .flex-2c-start,
.c-emergency-small .flex-2c-start {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.c-basic-content .flex-2c-start > div:first-child,
.c-blog-content .flex-2c-start > div:first-child,
.c-emergency-large .flex-2c-start > div:first-child,
.c-emergency-small .flex-2c-start > div:first-child {
  margin-right: 32px;
}

.c-basic-content .flex-2c-start > div.small,
.c-blog-content .flex-2c-start > div.small,
.c-emergency-large .flex-2c-start > div.small,
.c-emergency-small .flex-2c-start > div.small {
  width: 320px;
}

.c-basic-content .flex-2c-start > div.large,
.c-blog-content .flex-2c-start > div.large,
.c-emergency-large .flex-2c-start > div.large,
.c-emergency-small .flex-2c-start > div.large {
  width: 648px;
}

.c-basic-content .flex-2c-between,
.c-blog-content .flex-2c-between,
.c-emergency-large .flex-2c-between,
.c-emergency-small .flex-2c-between {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.c-basic-content .flex-2c-between > div,
.c-blog-content .flex-2c-between > div,
.c-emergency-large .flex-2c-between > div,
.c-emergency-small .flex-2c-between > div {
  width: calc(50% - 16px);
}

.c-basic-content .flex-2c-between > div:first-child,
.c-blog-content .flex-2c-between > div:first-child,
.c-emergency-large .flex-2c-between > div:first-child,
.c-emergency-small .flex-2c-between > div:first-child {
  margin-right: 32px;
}

.c-basic-content .flex-3c-between,
.c-blog-content .flex-3c-between,
.c-emergency-large .flex-3c-between,
.c-emergency-small .flex-3c-between {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.c-basic-content .flex-3c-between > div,
.c-blog-content .flex-3c-between > div,
.c-emergency-large .flex-3c-between > div,
.c-emergency-small .flex-3c-between > div {
  width: calc((100% - 32px) / 3);
  margin-left: 16px;
}

.c-basic-content .flex-3c-between > div:first-child,
.c-blog-content .flex-3c-between > div:first-child,
.c-emergency-large .flex-3c-between > div:first-child,
.c-emergency-small .flex-3c-between > div:first-child {
  margin-left: 0;
}

.c-basic-content .mt0,
.c-blog-content .mt0,
.c-emergency-large .mt0,
.c-emergency-small .mt0 {
  margin-top: 0 !important;
}

.c-basic-content .mb0,
.c-blog-content .mb0,
.c-emergency-large .mb0,
.c-emergency-small .mb0 {
  margin-bottom: 0 !important;
}

.c-basic-content .mb-s,
.c-blog-content .mb-s,
.c-emergency-large .mb-s,
.c-emergency-small .mb-s {
  margin-bottom: 32px !important;
}

.c-basic-content .mb-m,
.c-blog-content .mb-m,
.c-emergency-large .mb-m,
.c-emergency-small .mb-m {
  margin-bottom: 48px !important;
}

.c-basic-content .mb-l,
.c-blog-content .mb-l,
.c-emergency-large .mb-l,
.c-emergency-small .mb-l {
  margin-bottom: 64px !important;
}

.c-basic-content .pt0,
.c-blog-content .pt0,
.c-emergency-large .pt0,
.c-emergency-small .pt0 {
  padding-top: 0 !important;
}

.c-basic-content .pb0,
.c-blog-content .pb0,
.c-emergency-large .pb0,
.c-emergency-small .pb0 {
  padding-bottom: 0 !important;
}

.c-basic-content code,
.c-blog-content code,
.c-emergency-large code,
.c-emergency-small code {
  display: block;
  margin-bottom: 16px;
  padding: 16px;
  background-color: #282828;
  color: #fff;
  font-family: Menlo, Consolas, DejaVu Sans Mono, monospace;
}

.c-basic-content code .tag,
.c-blog-content code .tag,
.c-emergency-large code .tag,
.c-emergency-small code .tag {
  color: #f92672;
  font-weight: bold;
}

.c-basic-content code .class,
.c-blog-content code .class,
.c-emergency-large code .class,
.c-emergency-small code .class {
  color: #89e22b;
  font-weight: bold;
}

.c-basic-content code .value,
.c-blog-content code .value,
.c-emergency-large code .value,
.c-emergency-small code .value {
  color: #e6db74;
  font-weight: bold;
}

/*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
.c-basic-content,
.c-blog-content {
  width: 968px;
  margin: 0 auto;
}

.c-basic-content h2,
.c-blog-content h2 {
  margin: 64px -16px 32px;
  padding: 16px 24px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-left: 12px solid #099ac8;
  font-size: 2.4rem;
  font-weight: bold;
}

.c-basic-content h3,
.c-blog-content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 24px 0;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #2e5f87;
  border-left: 8px solid #2e5f87;
}

.c-basic-content h4,
.c-blog-content h4 {
  margin: 24px 0;
  padding: 8px;
  background-color: #f5f0e7;
  border-bottom: 2px solid #c4af8e;
  font-weight: bold;
  font-size: 1.6rem;
  color: #694e24;
}

.c-basic-content h5,
.c-blog-content h5 {
  margin-bottom: 16px;
  padding: 8px 16px;
  border-left: 4px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

/*-----------------------------------------------------------------------------------------------
 »ù±¾¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿¥È¥Ã¥×¥Ú©`¥¸¡¢¥Ö¥í¥°¥È¥Ã¥×
-----------------------------------------------------------------------------------------------*/
dl.information-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px;
  line-height: 1.5;
}

dl.information-list dt {
  width: 9em;
  margin-bottom: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  color: #666;
}

dl.information-list dt:last-of-type {
  margin-bottom: 0;
}

dl.information-list dd {
  width: calc(100% - 9em);
  margin-bottom: 8px;
  padding: 16px 16px 16px 2em;
  border-bottom: 1px solid #eee;
  color: #333;
}

dl.information-list dd:last-of-type {
  margin-bottom: 0;
}

dl.information-list dd a {
  display: flex;
  align-items: center;
  color: #000;
  transition: 0.2s;
}

dl.information-list dd a::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: auto;
  padding-left: 32px;
  color: #099ac8;
  transition: 0.2s;
}

dl.information-list dd a:hover, dl.information-list dd a:focus {
  color: #1665bf;
}

dl.information-list dd a:hover::after, dl.information-list dd a:focus::after {
  transform: translateX(8px);
  color: #1665bf;
}

dl.information-list dd a span.fas, dl.information-list dd a span.far {
  margin: 0 8px;
  text-indent: 0;
  font-size: 1.8rem;
  vertical-align: middle;
}

dl.information-list dd a span.fa-file-pdf {
  color: #cf1c00;
}

dl.information-list dd a span.fa-file-word {
  color: #2a5599;
}

dl.information-list dd a span.fa-file-excel {
  color: #136b38;
}

dl.information-list dd a span.fa-external-link-alt {
  font-size: auto;
  font-size: 1.4rem;
  color: #099ac8;
}

dl.information-list.use-category dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 17em;
}

dl.information-list.use-category dt .date {
  width: 9em;
}

dl.information-list.use-category dt .category {
  width: 6em;
  margin-left: 2em;
  background-color: #000;
  text-align: center;
  font-weight: normal;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

dl.information-list.use-category dt .category.news {
  background-color: #099ac8;
}

dl.information-list.use-category dt .category.update {
  background-color: #666;
}

dl.information-list.use-category dt .category:hover, dl.information-list.use-category dt .category:focus {
  background-color: #1665bf;
}

dl.information-list.use-category dd {
  width: calc(100% - 17em);
}

/*-----------------------------------------------------------------------------------------------
 ¥Ö¥í¥°¥È¥Ã¥×
-----------------------------------------------------------------------------------------------*/
.c-blog-top .headline-wrapper {
  display: flex;
  align-items: stretch;
  margin: 0 0 32px;
  padding: 16px 24px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-left: 16px solid #099ac8;
}

.c-blog-top .headline-wrapper h2 {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.c-blog-top .headline-wrapper select {
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}

.c-blog-top .page-nav {
  margin-top: 64px;
}

.c-blog-top .page-nav ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.c-blog-top .page-nav li {
  margin-left: 16px;
}

.c-blog-top .page-nav li:first-child {
  margin-left: 0;
}

.c-blog-top .page-nav a, .c-blog-top .page-nav li.current {
  padding: 16px;
}

.c-blog-top .page-nav a {
  display: block;
  background-color: #333;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}

.c-blog-top .page-nav a:hover, .c-blog-top .page-nav a:focus {
  opacity: 0.75;
}

.c-blog-top .page-nav li.current {
  background-color: #eee;
  font-weight: bold;
  color: #333;
}

/*-----------------------------------------------------------------------------------------------
 ¾o¼±Çéˆó£¨´ó£©
-----------------------------------------------------------------------------------------------*/
.c-emergency-large {
  margin-bottom: 32px;
  padding: 16px 0;
  background-color: #bb1212;
}

.c-emergency-large .inner {
  background-color: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
}

.c-emergency-large h2 {
  padding: 32px;
  border-bottom: 1px dotted #bb1212;
  font-size: 3.2rem;
  font-weight: bold;
  color: #bb1212;
}

.c-emergency-large h3 {
  margin: 16px 0;
  padding: 8px 24px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-left: 8px solid #bb1212;
  font-size: 2.4rem;
  font-weight: bold;
}

.c-emergency-large h4 {
  margin: 16px 0;
  padding: 8px 16px;
  border-left: 4px solid #bb1212;
  border-bottom: 2px solid #ccc;
  font-weight: bold;
  font-size: 1.8rem;
}

.c-emergency-large h5 {
  margin: 16px 0;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  font-size: 1.6rem;
  font-weight: bold;
}

.c-emergency-large .emergency-text {
  padding: 24px;
  font-size: 1.6rem;
}

.c-emergency-large.yellow {
  background-color: #ffcf00;
}

.c-emergency-large.white {
  background-color: #ccc;
}

/*-----------------------------------------------------------------------------------------------
 ¾o¼±Çéˆó£¨Ð¡£©
-----------------------------------------------------------------------------------------------*/
.c-emergency-small {
  margin-bottom: 32px;
  padding: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ccc;
}

.c-emergency-small .inner {
  margin-bottom: 32px;
  border: 2px solid #bb1212;
}

.c-emergency-small .inner:last-of-type {
  margin-bottom: 0;
}

.c-emergency-small .inner.color-1 {
  background-color: #bb1212;
  border: none;
}

.c-emergency-small .inner.color-1 h2 {
  background-color: #bb1212;
  border-bottom-color: #fff;
  color: #fff;
}

.c-emergency-small .inner.color-1 h3, .c-emergency-small .inner.color-1 h4, .c-emergency-small .inner.color-1 h5 {
  background-color: #bb1212;
  border-color: #fff;
}

.c-emergency-small .inner.color-1 .emergency-text {
  color: #fff;
}

.c-emergency-small .inner.color-2 {
  border-color: #1665bf;
}

.c-emergency-small .inner.color-2 h2 {
  border-color: #1665bf;
  color: #1665bf;
}

.c-emergency-small .inner.color-2 h3, .c-emergency-small .inner.color-2 h4 {
  border-left-color: #1665bf;
}

.c-emergency-small .inner.color-3 {
  background-color: #1665bf;
  border: none;
}

.c-emergency-small .inner.color-3 h2 {
  background-color: #1665bf;
  border-bottom-color: #fff;
  color: #fff;
}

.c-emergency-small .inner.color-3 h3, .c-emergency-small .inner.color-3 h4, .c-emergency-small .inner.color-3 h5 {
  background-color: #1665bf;
  border-color: #fff;
}

.c-emergency-small .inner.color-3 .emergency-text {
  color: #fff;
}

.c-emergency-small .inner.color-4 {
  background-color: #ffcf00;
  border: none;
}

.c-emergency-small .inner.color-4 h2 {
  background-color: #ffcf00;
  border-bottom-color: #bb1212;
  color: #bb1212;
}

.c-emergency-small .inner.color-4 h3, .c-emergency-small .inner.color-4 h4, .c-emergency-small .inner.color-4 h5 {
  background-color: #ffcf00;
  border-color: #bb1212;
}

.c-emergency-small .inner.color-4 .emergency-text {
  color: #bb1212;
}

.c-emergency-small h2 {
  padding: 24px;
  background-color: #f2f2f2;
  border-bottom: 1px dotted #bb1212;
  font-size: 2.4rem;
  font-weight: bold;
  color: #bb1212;
}

.c-emergency-small h3 {
  margin: 16px 0;
  padding: 8px 24px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-left: 8px solid #bb1212;
  font-size: 1.8rem;
  font-weight: bold;
}

.c-emergency-small h4 {
  margin: 16px 0;
  padding: 8px 16px;
  border-left: 4px solid #bb1212;
  border-bottom: 2px solid #ccc;
  font-weight: bold;
  font-size: 1.6rem;
}

.c-emergency-small h5 {
  margin: 16px 0;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  font-weight: bold;
}

.c-emergency-small .emergency-text {
  padding: 24px;
}

@media screen and (max-width: 640px) {
  /*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥Ú©`¥¸¡¢¾o¼±Çéˆó
-----------------------------------------------------------------------------------------------*/
  .c-basic-content,
  .c-blog-top,
  .c-blog-content,
  .c-emergency-large,
  .c-emergency-small {
    padding: 16px 10px 48px;
  }
  
  .main-container {
    width: auto;
    margin: 0px;
    padding: 10px;
    color: #666666;
  }
  /*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥Ú©`¥¸¡¢¾o¼±Çéˆó
-----------------------------------------------------------------------------------------------*/
  .c-basic-content,
  .c-blog-content,
  .c-emergency-large,
  .c-emergency-small {
    padding: 16px 10px 48px;
  }
  .c-basic-content ul.disc,
  .c-blog-content ul.disc,
  .c-emergency-large ul.disc,
  .c-emergency-small ul.disc {
    padding-left: 8px;
  }
  .c-basic-content ul.arrow,
  .c-blog-content ul.arrow,
  .c-emergency-large ul.arrow,
  .c-emergency-small ul.arrow {
    padding: 0;
  }
  .c-basic-content ul.anchor-menu,
  .c-blog-content ul.anchor-menu,
  .c-emergency-large ul.anchor-menu,
  .c-emergency-small ul.anchor-menu {
    display: block;
    padding: 0;
  }
  .c-basic-content ul.anchor-menu li,
  .c-blog-content ul.anchor-menu li,
  .c-emergency-large ul.anchor-menu li,
  .c-emergency-small ul.anchor-menu li {
    margin: 0;
    padding: 0;
    text-indent: 0;
    border-bottom: 1px dotted #ccc;
    background-color: #1665bf;
    font-size: 1.2rem;
  }
  .c-basic-content ul.anchor-menu li:last-child,
  .c-blog-content ul.anchor-menu li:last-child,
  .c-emergency-large ul.anchor-menu li:last-child,
  .c-emergency-small ul.anchor-menu li:last-child {
    border-bottom: none;
  }
  .c-basic-content ul.anchor-menu a,
  .c-blog-content ul.anchor-menu a,
  .c-emergency-large ul.anchor-menu a,
  .c-emergency-small ul.anchor-menu a {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding: 8px;
    color: #fff;
    font-weight: normal;
    transition: 0.3s;
  }
  .c-basic-content ul.anchor-menu a::before,
  .c-blog-content ul.anchor-menu a::before,
  .c-emergency-large ul.anchor-menu a::before,
  .c-emergency-small ul.anchor-menu a::before {
    margin-right: 0;
    margin-left: 16px;
    color: #fff;
  }
  .c-basic-content ul.anchor-menu a:hover, .c-basic-content ul.anchor-menu a:focus,
  .c-blog-content ul.anchor-menu a:hover,
  .c-blog-content ul.anchor-menu a:focus,
  .c-emergency-large ul.anchor-menu a:hover,
  .c-emergency-large ul.anchor-menu a:focus,
  .c-emergency-small ul.anchor-menu a:hover,
  .c-emergency-small ul.anchor-menu a:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
  }
  .c-basic-content ul.anchor-menu a:hover::before, .c-basic-content ul.anchor-menu a:focus::before,
  .c-blog-content ul.anchor-menu a:hover::before,
  .c-blog-content ul.anchor-menu a:focus::before,
  .c-emergency-large ul.anchor-menu a:hover::before,
  .c-emergency-large ul.anchor-menu a:focus::before,
  .c-emergency-small ul.anchor-menu a:hover::before,
  .c-emergency-small ul.anchor-menu a:focus::before {
    color: #fff;
  }
  .c-basic-content dl,
  .c-blog-content dl,
  .c-emergency-large dl,
  .c-emergency-small dl {
    margin-bottom: 16px;
  }
  .c-basic-content dl.normal,
  .c-blog-content dl.normal,
  .c-emergency-large dl.normal,
  .c-emergency-small dl.normal {
    display: block;
    padding: 0;
  }
  .c-basic-content dl.normal dt, .c-basic-content dl.normal dd,
  .c-blog-content dl.normal dt,
  .c-blog-content dl.normal dd,
  .c-emergency-large dl.normal dt,
  .c-emergency-large dl.normal dd,
  .c-emergency-small dl.normal dt,
  .c-emergency-small dl.normal dd {
    padding: 0;
  }
  .c-basic-content dl.normal dt,
  .c-blog-content dl.normal dt,
  .c-emergency-large dl.normal dt,
  .c-emergency-small dl.normal dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
    border-top: 1px dotted #666;
    border-bottom: 1px dotted #666;
  }
  .c-basic-content dl.normal dt:last-of-type,
  .c-blog-content dl.normal dt:last-of-type,
  .c-emergency-large dl.normal dt:last-of-type,
  .c-emergency-small dl.normal dt:last-of-type {
    margin-bottom: 8px;
  }
  .c-basic-content dl.normal dd,
  .c-blog-content dl.normal dd,
  .c-emergency-large dl.normal dd,
  .c-emergency-small dl.normal dd {
    width: 100%;
    margin-bottom: 16px;
  }
  .c-basic-content dl.accent dt,
  .c-blog-content dl.accent dt,
  .c-emergency-large dl.accent dt,
  .c-emergency-small dl.accent dt {
    margin-bottom: 0 !important;
  }
  .c-basic-content dl.accent dd,
  .c-blog-content dl.accent dd,
  .c-emergency-large dl.accent dd,
  .c-emergency-small dl.accent dd {
    padding: 8px;
  }
  .c-basic-content .flex-2c-start,
  .c-blog-content .flex-2c-start,
  .c-emergency-large .flex-2c-start,
  .c-emergency-small .flex-2c-start {
    display: block;
  }
  .c-basic-content .flex-2c-start > div:first-child,
  .c-blog-content .flex-2c-start > div:first-child,
  .c-emergency-large .flex-2c-start > div:first-child,
  .c-emergency-small .flex-2c-start > div:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .c-basic-content .flex-2c-start > div.small, .c-basic-content .flex-2c-start > div.large,
  .c-blog-content .flex-2c-start > div.small,
  .c-blog-content .flex-2c-start > div.large,
  .c-emergency-large .flex-2c-start > div.small,
  .c-emergency-large .flex-2c-start > div.large,
  .c-emergency-small .flex-2c-start > div.small,
  .c-emergency-small .flex-2c-start > div.large {
    width: 100%;
  }
  .c-basic-content .flex-2c-between, .c-basic-content .flex-3c-between,
  .c-blog-content .flex-2c-between,
  .c-blog-content .flex-3c-between,
  .c-emergency-large .flex-2c-between,
  .c-emergency-large .flex-3c-between,
  .c-emergency-small .flex-2c-between,
  .c-emergency-small .flex-3c-between {
    display: block;
  }
  .c-basic-content .flex-2c-between > div, .c-basic-content .flex-3c-between > div,
  .c-blog-content .flex-2c-between > div,
  .c-blog-content .flex-3c-between > div,
  .c-emergency-large .flex-2c-between > div,
  .c-emergency-large .flex-3c-between > div,
  .c-emergency-small .flex-2c-between > div,
  .c-emergency-small .flex-3c-between > div {
    width: 100%;
    margin-bottom: 16px;
    margin-left: 0;
  }
  .c-basic-content .flex-2c-between > div:last-child, .c-basic-content .flex-3c-between > div:last-child,
  .c-blog-content .flex-2c-between > div:last-child,
  .c-blog-content .flex-3c-between > div:last-child,
  .c-emergency-large .flex-2c-between > div:last-child,
  .c-emergency-large .flex-3c-between > div:last-child,
  .c-emergency-small .flex-2c-between > div:last-child,
  .c-emergency-small .flex-3c-between > div:last-child {
    margin-bottom: 0;
  }
  .c-basic-content .mb-s,
  .c-blog-content .mb-s,
  .c-emergency-large .mb-s,
  .c-emergency-small .mb-s {
    margin-bottom: 16px !important;
  }
  .c-basic-content .mb-m,
  .c-blog-content .mb-m,
  .c-emergency-large .mb-m,
  .c-emergency-small .mb-m {
    margin-bottom: 24px !important;
  }
  .c-basic-content .mb-l,
  .c-blog-content .mb-l,
  .c-emergency-large .mb-l,
  .c-emergency-small .mb-l {
    margin-bottom: 32px !important;
  }
  /*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿»ù±¾¥Ú©`¥¸¡¢¥Ö¥í¥°¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
  .c-basic-content,
  .c-blog-content {
//    width: 100%;
    width: auto;
  }
  .c-basic-content h2,
  .c-blog-content h2 {
    margin: 16px 0;
    padding: 8px 16px;
    border-left: 8px solid #099ac8;
    font-size: 1.8rem;
  }
  .c-basic-content h3,
  .c-blog-content h3 {
    font-size: 1.6rem;
    margin: 16px 0;
    padding: 8px;
    border-left-width: 4px;
  }
  .c-basic-content h4,
  .c-blog-content h4 {
    margin: 8px 0;
    padding: 8px;
    border-width: 2px;
    font-size: 1.4rem;
  }
  /*-----------------------------------------------------------------------------------------------
 »ù±¾¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------
 ¡¾¹²Í¨¡¿¥È¥Ã¥×¥Ú©`¥¸¡¢¥×¥ì¥¹¥ê¥ê©`¥¹¡¢¤ªÖª¤é¤»?¸üÐÂÇéˆó
-----------------------------------------------------------------------------------------------*/
  dl.information-list {
    padding: 0;
    font-size: 1.2rem;
  }
  dl.information-list dt {
    width: 100%;
    margin-bottom: 0;
    padding: 8px 16px;
    background: linear-gradient(to left, #f2f2f2, #fff);
  }
  dl.information-list dd {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  dl.information-list dd a {
    padding: 16px;
  }
  dl.information-list.use-category {
    display: block;
  }
  dl.information-list.use-category dt {
    width: 100%;
  }
  dl.information-list.use-category dt .date {
    width: auto;
    margin-right: 1em;
  }
  dl.information-list.use-category dt .category {
    width: auto;
    margin-left: 0;
    padding: 2px 8px;
  }
  dl.information-list.use-category dd {
    width: 100%;
  }
  /*-----------------------------------------------------------------------------------------------
 ¥Ö¥í¥°¥È¥Ã¥×
-----------------------------------------------------------------------------------------------*/
  .c-blog-top {
    padding: 16px 0;
  }
  .c-blog-top .headline-wrapper {
    display: block;
    margin: 0 0 16px;
    padding: 0 16px;
    background: none;
    border: none;
    text-align: right;
  }
  .c-blog-top .headline-wrapper h2 {
    display: block;
    margin: 0 0 16px;
    padding: 16px 24px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-left: 16px solid #099ac8;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
  }
  .c-blog-top .headline-wrapper select {
    width: 100%;
    margin-left: 0;
  }
  .c-blog-top .headline-wrapper a {
    display: inline-block;
    margin-top: 8px;
    padding: 0;
    background: none;
    border: none;
    color: #1665bf;
    text-align: right;
    font-size: 1.2rem;
  }
  .c-blog-top .headline-wrapper a.press {
    margin-left: 0;
  }
  .c-blog-top .page-nav {
    margin-top: 32px;
    margin-bottom: 64px;
  }
  .c-blog-top .page-nav ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .c-blog-top .page-nav li {
    margin: 4px;
    font-size: 1.2rem;
  }
  .c-blog-top .page-nav li:first-child {
    margin-left: 4px;
  }
  .c-blog-top .page-nav a, .c-blog-top .page-nav li.current {
    padding: 8px 16px;
  }
  .c-blog-top .page-nav a {
    display: block;
    background-color: #333;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
  }
  .c-blog-top .page-nav a:hover, .c-blog-top .page-nav a:focus {
    opacity: 0.75;
  }
  .c-blog-top .page-nav li.current {
    background-color: #eee;
    font-weight: bold;
    color: #333;
  }
  /*-----------------------------------------------------------------------------------------------
 ¾o¼±Çéˆó£¨´ó£©
-----------------------------------------------------------------------------------------------*/
  .c-emergency-large {
    margin-bottom: 32px;
    padding: 0 8px 8px;
  }
  .c-emergency-large .inner {
    box-shadow: none;
  }
  .c-emergency-large h2 {
    padding: 16px;
    background-color: #bb1212;
    border-bottom: none;
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
  }
  .c-emergency-large h3 {
    margin: 8px 0;
    padding: 8px 16px;
    border-left: 8px solid #bb1212;
    font-size: 1.6rem;
  }
  .c-emergency-large h4 {
    margin: 8px 0;
    border: none;
    background-color: #666;
    font-size: 1.4rem;
    color: #fff;
  }
  .c-emergency-large h5 {
    border-width: 1px;
  }
  .c-emergency-large .emergency-text {
    padding: 16px;
    font-size: 1.4rem;
  }
  .c-emergency-large.yellow h2 {
    background-color: #ffcf00;
    color: #bb1212;
  }
  .c-emergency-large.yellow h3 {
    border-left-color: #ffcf00;
  }
  .c-emergency-large.white h2 {
    background-color: #ccc;
    color: #bb1212;
  }
  /*-----------------------------------------------------------------------------------------------
 ¾o¼±Çéˆó£¨Ð¡£©
-----------------------------------------------------------------------------------------------*/
  .c-emergency-small {
    margin-bottom: 16px;
    padding: 0;
  }
  .c-emergency-small .inner {
    margin-bottom: 0;
    border: none;
  }
  .c-emergency-small h2 {
    padding: 16px;
    font-size: 1.8rem;
  }
  .c-emergency-small h3 {
    margin: 8px 0;
    padding: 8px 16px;
    border-left: 8px solid #bb1212;
    font-size: 1.6rem;
  }
  .c-emergency-small h4 {
    margin: 8px 0;
    border: none;
    background-color: #666;
    font-size: 1.4rem;
    color: #fff;
  }
  .c-emergency-small h5 {
    border-width: 1px;
  }
  .c-emergency-small .emergency-text {
    padding: 16px;
    font-size: 1.4rem;
  }
}

/*===================================================================================================

 category -- ¥«¥Æ¥´¥ê©`¥È¥Ã¥×

====================================================================================================*/
/*-----------------------------------------------------------------------------------------------
 top
-----------------------------------------------------------------------------------------------*/
#top .main-slide {
  position: relative;
  margin-bottom: 8px;
}

#top .main-slide a {
  transition: opacity 0.3s;
}

#top .main-slide a:hover, #top .main-slide a:focus {
  opacity: 0.75;
}

#top .main-slide::before, #top .main-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
  width: calc((100% - 1000px) / 2);
  height: 400px;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1) inset;
}

#top .main-slide::after {
  right: 0;
}

#top .main-slide button {
  cursor: pointer;
}

#top .main-slide button.slick-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 51px);
  width: 17px;
  height: 51px;
  overflow: visible;
  transition: 0.2s;
}

#top .main-slide button.slick-arrow img {
  transition: 0.2s;
}

#top .main-slide button.slick-prev {
  left: calc(50% - 533px);
}

#top .main-slide button.slick-prev:hover img, #top .main-slide button.slick-prev:focus img {
  transform: translateX(-4px);
}

#top .main-slide button.slick-next {
  right: calc(50% - 533px);
}

#top .main-slide button.slick-next:hover img, #top .main-slide button.slick-next:focus img {
  transform: translateX(4px);
}

#top .main-slide .slick-slider {
  overflow: hidden;
}

#top .main-slide .slick-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
}

#top .main-slide .slick-dots li {
  margin-left: 16px;
}

#top .main-slide .slick-dots li:first-child {
  margin-left: 0;
}

#top .main-slide .slick-dots li button {
  display: block;
  width: 48px;
  height: 8px;
  background-color: #ccc;
  font-size: 0;
  transition: 0.3s;
}

#top .main-slide .slick-dots li.slick-active button {
  background-color: #099ac8;
}

#top .pickup-menu {
  margin-bottom: 32px;
  font-size: 1.8rem;
}

#top .pickup-menu ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#top .pickup-menu li {
  width: 241px;
}

#top .pickup-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px 24px 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: auto 48px;
  border: 1px solid #999;
  border-bottom: 4px solid #1665bf;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  transition: 0.3s;
}

#top .pickup-menu li a .fa-external-link-alt {
  color: #ccc;
  transition: 0.3s;
}

#top .pickup-menu li a:hover, #top .pickup-menu li a:focus {
  color: #1665bf;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

#top .pickup-menu li a:hover .fa-external-link-alt, #top .pickup-menu li a:hover::after, #top .pickup-menu li a:focus .fa-external-link-alt, #top .pickup-menu li a:focus::after {
  color: #1665bf;
}

#top .pickup-menu li:first-child a {
  background-image: url(/nw/svg/icn_blackout.svg);
  background-position: 16px center;
}

#top .pickup-menu li:nth-child(2) a {
  background-image: url(/nw/svg/icn_thunder.svg);
  background-position: 16px center;
}

#top .pickup-menu li:nth-child(3) a {
  background-image: url(/nw/svg/icn_denki.svg);
  background-position: 16px center;
}

#top .pickup-menu li:last-child a {
  background-image: url(/nw/svg/icn_office.svg);
  background-position: 16px center;
}

#top .pickup-menu li:last-child a::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ccc;
  margin-left: 8px;
  transition: 0.3s;
}

#top .blog {
  margin-bottom: 64px;
  line-height: 1.5;
}

#top .blog .headline {
  position: relative;
  margin-bottom: 16px;
  padding: 16px;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

#top .blog .headline::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 800px;
  height: 2px;
  background-color: #ccc;
}

#top .blog .headline::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 400px;
  height: 2px;
  background-color: #ccc;
}

#top .blog .headline-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#top .blog .headline h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

#top .blog .headline .btn-rss {
  display: inline-block;
  margin-left: 16px;
  color: #fa6b25;
  font-size: 1.8rem;
  transition: opacity 0.3s;
}

#top .blog .headline .btn-rss:hover, #top .blog .headline .btn-rss:focus {
  opacity: 0.75;
}

#top .blog .headline .btn-list {
  display: block;
  margin-left: auto;
  padding: 8px 16px;
  font-weight: bold;
  background-color: #f2f2f2;
  color: #333;
  transition: 0.3s;
  transition: opacity 0.3s;
}

#top .blog .headline .btn-list::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 16px;
  color: #ccc;
  transition: 0.3s;
}

#top .blog .headline .btn-list:hover, #top .blog .headline .btn-list:focus {
  opacity: 0.75;
}

#top .blog > section {
  margin-bottom: 32px;
}

#top .blog > section:last-of-type {
  margin-bottom: 0;
}

#top .banner-teidenapps {
  padding: 16px 0;
  background-color: #f2f2f2;
}

#top .banner-teidenapps a {
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 160px;
  background-color: #fff;
  background-image: url(/nw/img/bg-teidenapps.png);
  background-repeat: no-repeat;
  background-position: 24px bottom;
  border: 1px solid #ccc;
  line-height: 1.5;
  color: #333;
  transition: 0.3s;
}

#top .banner-teidenapps a h2 {
  width: 186px;
  margin-right: 32px;
}

#top .banner-teidenapps a h2 img {
  max-width: 162px;
}

#top .banner-teidenapps a h2 span {
  display: block;
  margin-top: 8px;
  background-color: #eee;
  text-align: center;
  color: #099ac8;
}

#top .banner-teidenapps a > div {
  width: 602px;
  padding-right: 32px;
  font-size: 1.6rem;
}

#top .banner-teidenapps a > div sup {
  vertical-align: super;
  font-size: 1rem;
}

#top .banner-teidenapps a::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2.8rem;
  color: #ccc;
  transition: 0.3s;
}

#top .banner-teidenapps a:hover, #top .banner-teidenapps a:focus {
  border-color: #099ac8;
}

#top .banner-teidenapps a:hover::after, #top .banner-teidenapps a:focus::after {
  color: #099ac8;
}

#top .banner-text {
  padding: 32px 0 24px;
  line-height: 1.5;
}

#top .banner-text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#top .banner-text li {
  margin-right: 12px;
  margin-bottom: 12px;
}

#top .banner-text li:nth-child(4n) {
  margin-right: 0;
}

#top .banner-text a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 241px;
  padding: 16px;
  height: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: 2px solid #1665bf;
  font-weight: bold;
  color: #444;
  overflow: hidden;
  transition: 0.3s;
}

#top .banner-text a::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ccc;
  margin-left: 8px;
  transition: 0.3s;
}

#top .banner-text a:hover, #top .banner-text a:focus {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  color: #1665bf;
}

#top .banner-text a:hover::after, #top .banner-text a:focus::after {
  color: #1665bf;
}

@media screen\0 {
  #top .pickup-menu li a {
    background-position: -24px center;
  }
  #top .banner-teidenapps a > div {
    background: none;
  }
}

@media screen and (max-width: 640px) {
  /*-----------------------------------------------------------------------------------------------
 top
-----------------------------------------------------------------------------------------------*/
  #top .main-slide {
    margin-bottom: 0;
  }
  #top .main-slide button.slick-arrow {
    display: none;
  }
  #top .main-slide .slick-dots {
    padding: 16px 0;
    background-color: #f2f2f2;
  }
  #top .main-slide .slick-dots li {
    margin-left: 16px;
  }
  #top .main-slide .slick-dots li button {
    width: 16px;
    height: 16px;
    border-radius: 8px;
  }
  #top .pickup-menu {
    margin-bottom: 0;
    font-size: small;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #top .pickup-menu li {
    width: 50%;
  }
  #top .pickup-menu li a {
    padding: 24px 8px 24px 48px;
    background-size: auto 24px;
    border: none;
    font-size: 1.2rem;
  }
  #top .pickup-menu li a::after {
    margin-left: 4px;
  }
  #top .pickup-menu li:nth-child(even) {
    border-left: 1px solid #ccc;
  }
  #top .pickup-menu li:nth-child(-n+2) {
    border-bottom: 1px solid #ccc;
  }
  #top .blog {
    margin-bottom: 16px;
  }
  #top .blog .headline {
    position: static;
    margin-bottom: 0;
    padding: 16px;
    border-top: none;
    border-bottom: 1px solid #eee;
  }
  #top .blog .headline::before {
    content: none;
  }
  #top .blog .headline::after {
    content: none;
  }
  #top .blog .headline h2 {
    font-size: 1.8rem;
  }
  #top .blog .headline .btn-rss {
    margin-left: 8px;
    font-size: 1.8rem;
  }
  #top .blog .headline .btn-list {
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 1.2rem;
  }
  #top .blog .headline .btn-list::after {
    margin-left: 4px;
  }
  #top .blog > section {
    margin-bottom: 0;
  }
  #top .banner-teidenapps {
    margin: 0 8px 16px;
    padding: 4px;
    background-color: #099ac8;
  }
  #top .banner-teidenapps a {
    display: block;
    padding: 8px;
    background-image: none;
    border: none;
    font-size: 1.2rem;
  }
  #top .banner-teidenapps a h2 {
    width: auto;
    margin-right: 0;
    padding: 16px;
    background-color: #f2f2f2;
    text-align: center;
  }
  #top .banner-teidenapps a h2 span {
    margin-top: 8px;
    background: none;
  }
  #top .banner-teidenapps a h2 img {
    width: 50%;
  }
  #top .banner-teidenapps a > div {
    display: none;
    width: 100%;
    padding-right: 0;
    font-size: 1.2rem;
    background: none;
  }
  #top .banner-teidenapps a > div p:last-child {
    margin-top: 8px;
  }
  #top .banner-teidenapps a::after {
    content: none;
  }
  #top .banner-text {
    margin: 48px 0;
    padding: 0;
    border-top: 1px solid #ccc;
    line-height: 1.5;
  }
  #top .banner-text li {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0;
  }
  #top .banner-text li:nth-child(4n) {
    margin-right: 8px;
  }
  #top .banner-text li:nth-child(even) {
    margin-right: 0;
  }
  #top .banner-text li:nth-child(even) a {
    border-right: none;
  }
  #top .banner-text a {
    width: 100%;
    padding: 16px;
    height: 100%;
    border-top: none;
    border-left: none;
    border-bottom: 2px solid #1665bf;
    font-size: 1.2rem;
  }
  #top .banner-text a::before {
    content: none;
  }
}

/*===================================================================================================

 page -- …g¥Ú©`¥¸

====================================================================================================*/
/*-----------------------------------------------------------------------------------------------
 ¥Ö¥í¥°¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
.p-blog-article .entry-info {
  margin: 0 -16px 32px;
}

.p-blog-article .entry-info h1 {
  font-size: 2.8rem;
  margin-bottom: 32px;
  padding: 32px 16px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.p-blog-article .entry-info p {
  margin-bottom: 0;
  text-align: right;
}

.p-blog-article .option > .box:last-of-type {
  margin-bottom: 0;
}

.p-blog-article .free-text {
  margin-top: 16px;
}

/*-----------------------------------------------------------------------------------------------
 ¤ª†–¤¤ºÏ¤ï¤»
-----------------------------------------------------------------------------------------------*/
.p-contact .search-description {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-contact .search-box {
  display: flex;
  margin-right: 16px;
}

.p-contact .search-box input {
  width: 160px;
  height: 34px;
  padding: 0 8px;
  background-color: #fff;
  border: 1px solid #1665bf;
  border-right: none;
}

.p-contact .search-box button {
  display: block;
  height: 34px;
  background-color: #1665bf;
  color: #fff;
  cursor: pointer;
}

.p-contact .search-box button:active, .p-contact .search-box button:focus {
  opacity: 0.75;
}

.p-contact .search-box .fa-search {
  padding: 0 8px;
}

.p-contact .free-dial-button {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.p-contact .free-dial-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px;
  background: linear-gradient(#ccdff5, #e4eefa);
  border: 2px solid #099ac8;
  border-radius: 4px;
  color: #099ac8;
  text-decoration: none;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  text-shadow: 0 0 8px #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s;
}

.p-contact .free-dial-button a:hover, .p-contact .free-dial-button a:focus {
  opacity: 0.75;
}

.p-contact .free-dial-button li {
  width: calc(50% - 8px);
  margin-bottom: 0;
}

.p-contact .free-dial-button li:first-child a {
  border-color: #bb1212;
  background: linear-gradient(#f0cfcf, #fbe5e5);
  color: #bb1212;
}

.p-contact .contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.p-contact .contact-list li {
  width: calc(50% - 16px);
  margin: 8px;
}

.p-contact .contact-list a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 16px;
  background: linear-gradient(#1665bf, #317ed6);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s;
}

.p-contact .contact-list a .fas, .p-contact .contact-list a .far {
  color: #ccc;
}

.p-contact .contact-list a:hover, .p-contact .contact-list a:focus {
  opacity: 0.75;
}

/*-----------------------------------------------------------------------------------------------
 Í£ëŠ¤Ë¤Ê¤Ã¤¿¤é
 žÄº¦¤Ë‚ä¤¨¤Æ
-----------------------------------------------------------------------------------------------*/
.p-safety-teiden .pickup-menu, .p-safety-disaster .pickup-menu {
  margin-bottom: 16px;
  padding: 16px;
  background-color: #f2f2f2;
  font-size: 1.6rem;
}

.p-safety-teiden .pickup-menu ul, .p-safety-disaster .pickup-menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.p-safety-teiden .pickup-menu li, .p-safety-disaster .pickup-menu li {
  width: 241px;
}

.p-safety-teiden .pickup-menu li a, .p-safety-disaster .pickup-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px 24px 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: auto 48px;
  background-position: 16px center;
  border: 1px solid #999;
  border-bottom: 4px solid #1665bf;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.p-safety-teiden .pickup-menu li a::after, .p-safety-disaster .pickup-menu li a::after {
  content: "?";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #ccc;
  margin-left: 8px;
  transition: 0.3s;
}

.p-safety-teiden .pickup-menu li a:hover, .p-safety-teiden .pickup-menu li a:focus, .p-safety-disaster .pickup-menu li a:hover, .p-safety-disaster .pickup-menu li a:focus {
  color: #1665bf;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

.p-safety-teiden .pickup-menu li a:hover::after, .p-safety-teiden .pickup-menu li a:focus::after, .p-safety-disaster .pickup-menu li a:hover::after, .p-safety-disaster .pickup-menu li a:focus::after {
  color: #1665bf;
}

.p-safety-teiden .pickup-menu li:first-child, .p-safety-disaster .pickup-menu li:first-child {
  margin-right: 16px;
}

.p-safety-teiden .pickup-menu li:first-child a, .p-safety-disaster .pickup-menu li:first-child a {
  background-image: url(/nw/svg/icn_blackout.svg);
}

.p-safety-teiden .pickup-menu li:last-child a, .p-safety-disaster .pickup-menu li:last-child a {
  background-image: url(/nw/svg/icn_thunder.svg);
}

.p-safety-teiden .check-point p {
  padding: 16px;
}

.p-safety-teiden .check-point p:nth-child(odd) {
  border: 1px solid #ccc;
}

.p-safety-disaster .check-point-mark {
  width: 8em;
  padding: 8px;
  background-color: #d03512;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.p-safety-disaster .check-point-list li {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed #999;
}

.p-safety-disaster .check-point-list li::before {
  content: url(/nw/safety/disaster/img/saigai_check.png);
  margin-right: 8px;
}

@media screen and (max-width: 640px) {
  /*-----------------------------------------------------------------------------------------------
 ¥Ö¥í¥°¥Ú©`¥¸
-----------------------------------------------------------------------------------------------*/
  .p-blog-article .entry-info h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding: 0 0 16px;
    border-top: none;
    border-bottom-width: 1px;
  }
  .p-blog-article .entry-info p {
    font-size: 1.2rem;
  }
  /*-----------------------------------------------------------------------------------------------
 ¤ª†–¤¤ºÏ¤ï¤»
-----------------------------------------------------------------------------------------------*/
  .p-contact .free-dial-button {
    display: block;
  }
  .p-contact .free-dial-button a {
    padding: 16px;
    border: 1px solid #099ac8;
    font-size: 1.6rem;
  }
  .p-contact .free-dial-button li {
    width: 100%;
  }
  .p-contact .free-dial-button li:first-child {
    margin-bottom: 8px;
  }
  .p-contact .contact-list {
    display: block;
  }
  .p-contact .contact-list li {
    width: 100%;
    margin: 0;
    margin-bottom: 8px;
  }
  .p-contact .contact-list li:last-child {
    margin-bottom: 0;
  }
  .p-contact .contact-list a {
    padding: 8px;
    border-radius: 2px;
    font-size: 1.2rem;
  }
  /*-----------------------------------------------------------------------------------------------
 Í£ëŠ¤Ë¤Ê¤Ã¤¿¤é
 žÄº¦¤Ë‚ä¤¨¤Æ
-----------------------------------------------------------------------------------------------*/
  .p-safety-teiden .pickup-menu, .p-safety-disaster .pickup-menu {
    margin-bottom: 16px;
    padding: 0;
    background-color: #fff;
    font-size: 1.6rem;
  }
  .p-safety-teiden .pickup-menu ul, .p-safety-disaster .pickup-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .p-safety-teiden .pickup-menu li, .p-safety-disaster .pickup-menu li {
    width: calc(50% - 4px);
  }
  .p-safety-teiden .pickup-menu li a, .p-safety-disaster .pickup-menu li a {
    padding: 16px 8px 16px 48px;
    background-size: auto 24px;
    border-bottom: 2px solid #1665bf;
    font-size: 1.2rem;
  }
  .p-safety-teiden .pickup-menu li a::after, .p-safety-disaster .pickup-menu li a::after {
    content: "?";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ccc;
    margin-left: 8px;
    transition: 0.3s;
  }
  .p-safety-teiden .pickup-menu li a:hover, .p-safety-teiden .pickup-menu li a:focus, .p-safety-disaster .pickup-menu li a:hover, .p-safety-disaster .pickup-menu li a:focus {
    color: #1665bf;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  }
  .p-safety-teiden .pickup-menu li a:hover::after, .p-safety-teiden .pickup-menu li a:focus::after, .p-safety-disaster .pickup-menu li a:hover::after, .p-safety-disaster .pickup-menu li a:focus::after {
    color: #1665bf;
  }
  .p-safety-teiden .pickup-menu li:first-child, .p-safety-disaster .pickup-menu li:first-child {
    margin-right: 8px;
  }
  .p-safety-teiden .pickup-menu li:first-child a, .p-safety-disaster .pickup-menu li:first-child a {
    background-image: url(/nw/svg/icn_blackout.svg);
  }
  .p-safety-teiden .pickup-menu li:last-child a, .p-safety-disaster .pickup-menu li:last-child a {
    background-image: url(/nw/svg/icn_thunder.svg);
  }
  .p-safety-teiden .check-point p {
    padding: 16px;
  }
  .p-safety-teiden .check-point p:nth-child(odd) {
    border: 1px solid #ccc;
  }
}
