@charset "UTF-8";


/*
-------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

  #wrapper {
    min-width: initial;
  }

  *,
  *:after,
  *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  div#wrapper {
    position: relative;
    min-width: inherit;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .forSP {
    display: initial;
  }

  img.forSP,
  br.forSP {
    display: initial;
  }

  .forPC {
    display: none;
  }

  img.forPC,
  br.forPC {
    display: none;
  }

  /*-------------------------------------
 header
-------------------------------------*/
  #header {
    border-bottom: 5px solid #0070c0;
  }

  .headerPC {
    display: none;
  }

  .headerSP {
    display: block;
    height: 62px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 93.8%;
    line-height: 1.6;
  }

  .headerSP .headerLogo img {
    width: 212px;
    vertical-align: bottom;
  }

  .headerBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 60px;
    height: 62px;
    cursor: pointer;
  }

  .headerBtn p {
    padding: 42px 0 0 0;
    color: #0070c0;
    font-size: 68.8%;
    text-align: center;
  }

  .headerBtn span {
    position: absolute;
    left: 16px;
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #0070c0;
    transition: all .2s;
    box-sizing: border-box;
  }

  .headerBtn span:nth-of-type(1) {
    top: 12px;
  }

  .headerBtn span:nth-of-type(2) {
    top: 23px;
  }

  .headerBtn span:nth-of-type(3) {
    top: 34px;
  }

  .headerBtn span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background-color: #0070c0;
    transition: all .2s;
  }

  .headerBtn.open {
    background: #0070c0;
  }

  .headerBtn.open p {
    color: #fff;
  }

  .headerBtn.open span:nth-of-type(2),
  .headerBtn.open span:nth-of-type(2)::after {
    width: 30px;
    background-color: #fff;
  }

  .headerBtn.open span:nth-of-type(1) {
    transform: translateY(20px) scale(0);
  }

  .headerBtn.open span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 15px;
  }

  .headerBtn.open span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .headerBtn.open span:nth-of-type(3) {
    transform: translateY(-45px) scale(0);
  }


  /*-------------------------------------
 headerSubNav
-------------------------------------*/
  .headerSubNav .inner ul {
    display: block;
    margin: 7px 0;
    letter-spacing: -0.5em;
    text-align: center;
    border-right: none;
  }

  .headerSubNav .inner ul li {
    display: inline-block;
    width: auto;
    min-height: inherit;
    margin: 5px 0;
    letter-spacing: normal;
    vertical-align: top;
    border-left: 1px solid #0070c0;
    border-right: 1px solid #0070c0;
    background: #fff;
  }

  .headerSubNav .inner ul.itemEight li {
    width: auto;
  }

  .headerSubNav .inner ul li+li {
    margin-left: -1px;
  }

  .headerSubNav .inner ul li a {
    display: block;
    padding: 0 6px;
    font-size: 81.3%;
    line-height: 1.4;
  }

  /*-------------------------------------
 drawerNav
-------------------------------------*/
  .headerNav {
    display: none;
  }

  .drawerNav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 240px;
    height: 100vh;
    font-family: 'Noto Sans JP', sans-serif;
    background: #131313;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(240px);
    transform: translateX(240px);
    -webkit-transition: ease .3s;
    transition: ease .3s;
  }

  .drawerNav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .drawerNav .drawerSearch {
    position: relative;
    top: 0;
    padding: 12px 85px 12px 0;
    background: #0070c0;
  }

  .drawerNav .drawerSearch table {
    width: 100%;
    height: 38px;
    margin: 0;
  }

  .drawerNav .drawerSearch input.gsc-input[type="text"] {
    width: 100% !important;
    height: 37px !important;
  }

  .drawerNav .drawerSearch .gsc-input-box {
    padding: 0;
    border-radius: 0;
    border: none;
  }

  .drawerNav .drawerSearch .gsc-search-button-v2 {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 65px;
    height: 38px;
    border-radius: 0;
    border: 1px solid #fff;
    background: url(/common/000222346.png) no-repeat center center #0070c0;
  }

  .drawerNav .drawerSearch .gsc-search-button-v2 svg {
    display: none;
  }

  .drawerNav .drawerSearch table.gsc-search-box td {
    padding: 0 !important;
  }

  .drawerNav .drawerSearch form.gsc-search-box {
    margin-bottom: 0;
  }

  .drawerNav .drawerSearch .gsst_b {
    display: none;
  }

  .drawerNav .drawerMenu {
    position: absolute;
    top: 62px;
    bottom: 100px;
    height: calc(100% - 140px);
    padding: 42px 0 0 0;
    background: #fff;
  }

  .drawerNav .drawerMenu .ttl {
    position: relative;
    min-height: 42px;
    padding: 10px 42px;
  }

  .drawerNav .drawerMenu .ttl .back a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 42px;
    height: 42px;
    text-indent: 200%;
    white-space: nowrap;
    background: url(/common/000222347.png) no-repeat center center / 13px 13px;
    overflow: hidden;
  }

  .drawerNav .drawerMenu ul {
    padding: 0 0 0 15px;
    list-style: none;
    border-top: 1px solid #b7b7b7;
  }

  .drawerNav .drawerMenu ul li {
    display: flex;
    border-bottom: 1px solid #b7b7b7;
    padding: 0 10px;
  }

  .drawerNav .drawerMenu ul li a,
  .drawerNav .drawerMenu ul li em span {
    display: flex;
    align-items: center;
    height: 100%;
    color: #000;
    font-size: 93.8%;
    text-decoration: none;
  }

  .drawerNav .drawerMenu ul li em {
    width: 100%;
    font-style: normal;
  }

  .drawerNav .drawerMenu ul li em a,
  .drawerNav .drawerMenu ul li em span {
    padding: 10px 0;
    flex: 1 0 auto;
  }

  .drawerNav .drawerMenu ul li .arw {
    text-align: right;
    flex-shrink: 0;
    order: 3;
  }

  .drawerNav .drawerMenu ul li .arw a {
    width: 60px;
    min-height: 1em;
    margin-left: auto;
    padding: 0 24px 0 10px;
    background: url(/common/000222348.png) no-repeat right 10px center / 9px 13px;
  }

  .drawerNav .drawerMenu .drawerMenuInner .drawerGroup {
    display: flex;
    margin-top: 0;
    padding: 0 7px 80px 10px;
    color: #fff;
    font-size: 75.0%;
    background: #131313;
    position: absolute;
    width: 100%;
    z-index: 1000;
    bottom: 0;
  }

  .drawerNav .drawerMenu .drawerMenuInner .drawerGroup .drawerLink {
    margin-left: auto;
    padding: 3px 0 0 0;
    line-height: 1.7;
  }

  .drawerNav .drawerMenu .drawerMenuInner .drawerGroup .drawerLink ul {
    list-style: none;
    text-align: right;
  }

  .drawerNav .drawerMenu .drawerMenuInner .drawerGroup .drawerLink ul li a {
    display: block;
    padding: 0 24px 0 0;
    color: #fff;
    text-decoration: none;
    background: url(/common/000222349.png) no-repeat;
    background-position: right 2px bottom 0.2em;
  }

  .drawerNav .drawerMenu .drawerMenuInner .drawerGroup .drawerLink ul li.drawerHome a {
    background: url(/common/000222350.png) no-repeat right top / 18px 17px;
  }


  .mp-level {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  /* overlays for pusher and for level that gets covered */
  .pusher::after,
  .mp-level::after,
  .mp-level::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }

  .pusher::after,
  .mp-level::after {
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
    transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
  }

  .mp-level::after {
    z-index: -1;
  }

  .pusher.mp-pushed::after,
  .mp-level.mp-level-overlay::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .mp-level.mp-level-overlay.mp-level::before {
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 1;
  }

  .pusher,
  .mp-level {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
  }

  /* overlap */
  .mp-overlap .mp-level.mp-level-open {
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }

  /* First level */
  .drawerNav>.mp-level,
  .drawerNav>.mp-level.mp-level-open,
  .drawerNav.mp-overlap>.mp-level,
  .drawerNav.mp-overlap>.mp-level.mp-level-open {
    box-shadow: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* cover */
  .mp-cover .mp-level.mp-level-open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    background: #fff;
  }

  .mp-cover .mp-level .drawerMenuInner ul:not(.notAddHeight) {
    overflow-y: scroll;
    padding: 0 0 50px 15px;
    background: #fff;
  }
  .mp-cover .mp-level .drawerMenuInner ul.notAddHeight {
    border-top: none;
  }

  .mp-cover .mp-level.mp-level-open>ul>li>.mp-level:not(.mp-level-open) {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  .mp-level-open:not(.mp-level-overlay) {
    overflow-y: auto;
  }

  .subordinate div#container {
    padding: 0 10px;
  }


  /*-------------------------------------
 topicpath
-------------------------------------*/
  .topicpath {
    margin: 0 0 30px 0;
    font-size: 81.3%;
    line-height: 1.6;
  }

  .topicpath ul {
    padding: 6px 0;
  }

  .topicpath ul li {
    display: inline;
  }

  .subordinate .topicpath .inner {
    display: block;
  }

  .subordinate .topicpath ul {
    width: 100%;
  }

  .subordinate .topicpath #date {
    font-size: 100%;
    padding: 6px 0;
    text-align: right;
    width: inherit;
  }

  /*-------------------------------------
 pagetop
-------------------------------------*/
  .pagetop a {
    right: 10px;
    bottom: 30px;
    width: 60px;
    padding: 60px 0 0 0;
  }


  /*-------------------------------------
 footer
-------------------------------------*/
  #footer .footerNav {
    margin: 0 0 13px 0;
    padding: 0 0 7px 0;
    border-bottom: 1px solid #9b9b9b;
  }

  #footer .footerNav ul li {
    min-width: 50%;
    margin: 0 0 7px 0;
    padding: 0 5px 0 13px;
    box-sizing: border-box;
  }

  #footer .footerGroup {
    display: block;
    font-size: 107.7%;
    line-height: 1.7;
    text-align: center;
  }

  #footer .footerTitle {
    padding: 0;
  }

  #footer .footerAddress {
    padding: 0;
  }

  #footer .footerAddress .num {
    display: inline-block;
    margin: 0 0 8px 0;
    font-size: 92.9%;
  }

  #footer .footerAddress .btn {
    display: inline-block;
    min-width: 220px;
    margin: 10px 15px 15px 15px;
    padding: 4px 10px;
    font-size: 107.1%;
  }

  #footer .footerCopyright {
    padding: 0;
    font-size: 85.7%;
  }


  /*-------------------------------------
 main
-------------------------------------*/
  #main .section {
    padding: 0 0 30px 0;
  }

  #main .section p {
    margin: 5px 0 25px 0;
    font-size: 87.5%;
    line-height: 1.9;
  }


  /* disaster
-------------------------------------*/
  .disasterBox01 {
    flex-wrap: wrap;
    margin: 0 0 15px 0;
    background: #d50000;
  }

  .disasterBox01 .disasterTtl {
    padding: 9px 10px 9px 11px;
    font-size: 100%;
  }

  .disasterBox01 .disasterTtl:before {
    width: 21px;
    height: 19px;
    background-size: 21px 19px;
  }

  .disasterBox01 .disasterBlk {
    order: 5;
    width: 100%;
    font-size: 87.5%;
    background: #fff;
  }

  .disasterBox01 .disasterBlk p {
    margin: 0 0 4px 0;
  }

  .disasterBox01 .disasterLink {
    align-items: center;
    padding: 9px 7px;
    font-size: 87.5%;
  }

  .disasterBox01 .disasterLink a {
    color: #fff;
    padding: 0 21px 0 0;
    background: url(/common/000222351.png) no-repeat right center / 13px 13px;
  }


  /* title
-------------------------------------*/
  .titleSet01 {
    margin: 0 0 15px 0;
    padding: 0 0 8px 0;
    border-bottom: 3px solid #0070c0;
  }

  .titleSet01 h2 {
    font-size: 125.0%;
  }

  .titleSet01 .link {
    padding: 0.3em 0 0 0;
  }

  .titleSet01 .link a {
    padding: 0 21px 0 0;
    font-size: 87.5%;
    background-size: 13px 13px;
  }

  .titleStyle01 {
    margin: 0 0 20px 0;
    padding: 0 0 8px 0;
    font-size: 125.0%;
    border-bottom: 3px solid #0070c0;
  }

  .titleStyle02,
  .titleStyle04 {
    margin: 0 0 15px 0;
    padding: 0 0 8px 0;
    font-size: 125.0%;
    border-width: 0 0 3px 0;
  }

  .titleStyle03,
  .titleStyle05 {
    margin: 0 0 15px 0;
    padding: 5px 12px;
    font-size: 106.3%;
    border-width: 0 0 0 3px;
  }


  /* list
-------------------------------------*/
  /* newsList */
  .newsList01 li {
    margin: 0 0 12px 0;
    padding: 0 0 0 16px;
    font-size: 87.5%;
  }

  .newsList01 li:before {
    top: 0.4em;
    width: 9px;
    height: 9px;
  }

  /* clmList */
  .clmList01 {
    margin: 0 -15px 0 0;
  }

  .clmList01 li {
    width: 50%;
    padding: 0 15px 15px 0;
  }

  .clmList01 li .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 5px;
  }

  .clmList01 li p {
    margin: 3px 0 !important;
    padding: 0 15px 0 0;
    font-size: 87.5%;
    line-height: 1.2 !important;
    background-size: 13px 13px;
  }

  .clmList01 li h3 {
    padding: 5px 6px;
    font-size: 87.5%;
    line-height: 1.2;
  }

  .clmList02,
  .clmList04 {
    margin: 0 0 20px 0;
  }

  .clmList02 li,
  .clmList04 li {
    width: 100%;
    padding: 0 0 20px 0;
  }

  .clmList02 li .card,
  .clmList04 li .card {
    height: 100%;
    padding: 5px;
  }

  .clmList02 li h3,
  .clmList04 li h3 {
    margin: 0 0 5px 0;
    padding: 5px 6px;
    font-size: 93.8%;
    line-height: 1.2;
  }

  .clmList02 li .figure,
  .clmList04 li .figure {
    margin: 0 10px 5px 0;
  }

  .clmList02 li p,
  .clmList04 li p {
    margin: 3px 0 !important;
    padding: 0 15px 0 0;
    font-size: 87.5%;
    line-height: 1.8 !important;
  }

  .clmList03,
  .clmList05 {
    margin: 0 -15px 0 0;
  }

  .clmList03 li,
  .clmList05 li {
    width: 50%;
    padding: 0 15px 15px 0;
  }

  .clmList03 li .card,
  .clmList05 li .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 5px;
  }

  .clmList03 li h3,
  .clmList05 li h3 {
    padding: 5px 6px;
    font-size: 87.5%;
    line-height: 1.2;
  }

  .clmList03 li p,
  .clmList05 li p {
    margin: 1px 0 !important;
    padding: 0 15px 0 0;
    font-size: 87.5%;
    line-height: 1.6 !important;
  }

  /* menuList */
  .menuList01 {
    letter-spacing: -0.5em;
    list-style: none;
  }

  .menuList01 li {
    display: inline-block;
    padding: 2px 34px 18px 0;
    font-size: 100%;
    background-size: 25px auto;
  }

  .menuList01 li .icn {
    margin: -2px 7px 0 0;
  }

  /* bannerList */
  .bannerList01 {
    margin: 0 -15px 0 0;
    text-align: left;
  }

  .bannerList01 li {
    width: 50%;
    margin: 0;
    padding: 0 15px 15px 0;
    box-sizing: border-box;
  }

  /* ancList */
  .ancList01,
  .ancList02 {
    margin: 0 -24px 0 0;
    letter-spacing: -0.5em;
    list-style: none;
  }

  .ancList01 li,
  .ancList02 li {
    margin: 0 24px 0 0;
    padding: 0 18px 0 0;
    background-size: 13px 13px;
  }


  /* box
-------------------------------------*/
  .officeBox01 {
    display: block;
    margin: 0 0 20px 0;
    padding: 15px 0;
  }

  .officeBox01 .figure {
    width: auto;
    padding: 10px 50px 0 50px;
    text-align: center;
  }

  .officeBox01 ul {
    padding: 0 0 0 20px;
    list-style: none;
    letter-spacing: -0.5em;
  }

  .officeBox01 ul li {
    margin: 0 0 5px 0;
    font-size: 87.5%;
    line-height: 1.4;
    background-size: 13px 13px;
  }

  .boxStyle01 {
    margin: 0 0 25px 0;
    padding: 0;
    font-size: 93.8%;
    line-height: 2.1;
    border: none;
  }

  .boxStyle02 {
    margin: 0 0 25px 0;
    padding: 10px 13px;
    font-size: 87.5%;
    border: 3px solid #c0ddf1;
  }

  .boxStyle03,
  .boxStyle04 {
    margin: 0 0 40px 0;
    padding: 10px 13px;
    font-size: 87.5%;
    border-width: 3px;
  }


  /* lead
-------------------------------------*/
  .leadStyle01 {
    margin: 0 0 30px 0;
    font-size: 100%;
  }

  .leadStyle01 p {
    font-size: 93.8% !important;
    line-height: 2.2 !important;
  }


  /* common
-------------------------------------*/
  .icnNew {
    padding: 1px 3px;
    font-size: 62.5%;
    font-weight: normal;
    border-radius: 2px;
  }

  .icnImg {
    margin: 0 0 0 8px;
    vertical-align: -0.08rem;
  }

  .icnImg2 {
    margin: 0 8px 0 0;
    vertical-align: -0.08rem;
  }

  .icnImg img,
  .icnImg2 img {
    height: 14px;
  }



  .multipleLines {
    margin-bottom: 15px;
  }

  .multipleLines>*:last-child {
    margin-bottom: 0;
  }

  .subordinate #contents_2column .container_inner,
  .subordinate #contents_3column .container_inner {
    background: none;
  }

  .subordinate #layout,
  .subordinate #layout tbody {
    display: block;
  }

  .subordinate #layout>tbody>tr {
    display: flex;
    flex-direction: column;
  }

  .subordinate #layout>tbody>tr>td {
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 !important;
    width: 100% !important;
  }

  .subordinate #layout>tbody>tr>.pdg0 {
    order: 2;
  }

  .subordinate #layout>tbody>tr>.w100p {
    order: 1;
  }

  .subordinate #layout>tbody>tr>.w230 {
    order: 3;
  }

  .subordinate #contents_index .rightBox,
  .subordinate #contents_3column .rightBox {
    width: 100%;
    text-align: center;
  }

  .subordinate #contents_2column .leftBox,
  .subordinate #contents_3column .leftBox {
    width: 100%;
  }

  .newsList .subordinate #contents_2column .leftBox li,
  .newsList .subordinate #contents_3column .leftBox li {
    display: inline-block;
    margin-right: 10px;
  }

  .subordinate .rightMenu_tBox {
    text-align: left;
  }

  .subordinate .h4_titleBox {
    margin: 0 0 10px 0;
  }

  .subordinate .base_txt {
    margin-left: 0;
  }

  .subordinate #leftMenuBox {
    padding: 8px 0 8px;
  }

  .newsList .subordinate #layout>tbody>tr>.pdg0 {
    order: 1;
    margin-bottom: 10px;
  }

  .newsList .subordinate #layout>tbody>tr>.w100p {
    order: 2;
  }

  .newsList .subordinate #contents_2column .main_contents_inner {
    margin: 0;
  }

  .newsList .subordinate .topicpath {
    margin-bottom: 10px;
  }

  .scrollBox {
    height: 160px;
  }

  .drawerNav .drawerMenuInner {
    height: 100vh;
    background: #fff;
  }

  .drawerNav .drawerMenuInner .drawerGroup ul li {
    border-bottom: none;
    justify-content: flex-end;
  }

  .rightBox,
  #contents_index .rightBox {
    margin: 0 0 50px;
  }
  .main_contents_inner {
    margin-left: 0 !important;
  }
  .menuList01 li .icn img {
    max-width: 25px;
  }
  .drawerHome {
    margin-top: 3px;
  }
  .clmList01 li .figure {
    margin-bottom: 10px;
  }

  .clmList01 li .figure,
  .clmList03 li .figure,
  .clmList05 li .figure {
    min-height: 22vw;
  }

  .clmList01 li .figure img,
  .clmList03 li .figure img,
  .clmList05 li .figure img {
    max-height: 22vw;
  }
  .clmList02 li .figure,
  .clmList04 li .figure {
    min-height: inherit;
  }
  .clmList02 li .figure img,
  .clmList04 li .figure img {
    max-height: inherit;
  }
  .icnList01 li.icnBlank {
    background-position: 0 0.2em;
  }
  .fzL {
    font-size: 106.3%;
  }
  /* トップページ - パネル */
  .clmList01 li p {
    padding: 0;
  }
  /* ドロワーメニュー */
  .drawerNav .drawerMenu ul li em a.icnBlank2:after {
  	content: "";
  	background: url(/common/000101905.png) no-repeat top right;
  	background-size: 15px auto;
  	display: block;
  	width: 15px;
  	height: 15px;
  	flex: 1 0 auto;
  	margin-right: 10px;
  }
  .drawerNav .drawerMenu ul li em a.icnPdf2:after {
  	background: url(/common/000101906.png) no-repeat top right;
  	background-size: auto 15px;
  	display: block;
  	width: 18px;
  	height: 15px;
  	flex: 1 0 auto;
  	margin-right: 10px;
  }
  .drawerNav .drawerMenu ul li em a.icnDoc2:after {
  	background: url(/common/000101907.png) no-repeat top right;
  	background-size: auto 15px;
  	display: block;
  	width: 18px;
  	height: 15px;
  	flex: 1 0 auto;
  	margin-right: 10px;
  }
  .drawerNav .drawerMenu ul li em a.icnXls2:after {
  	background: url(/common/000101908.png) no-repeat top right;
  	background-size: auto 15px;
  	display: block;
  	width: 18px;
  	height: 15px;
  	flex: 1 0 auto;
  	margin-right: 10px;
  }
  .drawerNav .drawerMenu ul li em a.icnMovie2:after {
  	background: url(/common/000101909.png) no-repeat top right;
  	background-size: auto 15px;
  	display: block;
  	width: 18px;
  	height: 15px;
  	flex: 1 0 auto;
  	margin-right: 10px;
  }
  .disasterBox01 ul.icnList03 li,
  .disasterBox01 ol.icnList03 li {
    background-position-y: 0.35rem;
  }
  .clmList02 li .figure,
  .clmList03 li .figure,
  .clmList04 li .figure,
  .clmList05 li .figure {
    margin-right: 0;
  }
  .gtopNav {
    display: block;
    position: relative;
  }
  .gtopNav ul {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .multipleLines ul.icnList02 li,
  .multipleLines ol.icnList02 li,
  .multipleLines ul.icnList03 li,
  .multipleLines ol.icnList03 li,
  .multipleLines ul.icnList04 li,
  .multipleLines ol.icnList04 li,
  .multipleLines ul.icnList05 li,
  .multipleLines ol.icnList05 li {
    background-position: 0.3rem 0.45rem;
  }
  div.imagebox,
  div.imagebox400 {
    width: auto;
    float: none;
  }
  .footerTxt {
    padding-left: 0;
  }
}