@charset "utf-8";

/*************独自reset*************/

/* 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, 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: 14px;
  font: inherit;
  vertical-align: baseline;
  -ms-word-break: break-all;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-line-break: strict;
  -ms-line-break: strict;
  line-break: strict;
/*  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;*/
}
p {
  font-size: 14px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
ol, ul, li {
  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;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/*************共通項目など*************/
body {
  /* ゴシック体指定 */
  font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  color: #333;
}

a {
  color: #0068B7;
  text-decoration: none;
/*  -webkit-transition: .2s ease-in-out;
     -moz-transition: .2s ease-in-out;
      -ms-transition: .2s ease-in-out;
       -o-transition: .2s ease-in-out;
          transition: .2s ease-in-out;*/
}
a:hover {
  text-decoration: underline;
}
#nav a {
  color: #333;
}
a:after,
a:before {
/*  -webkit-transition: .2s ease-in-out;
     -moz-transition: .2s ease-in-out;
      -ms-transition: .2s ease-in-out;
       -o-transition: .2s ease-in-out;
          transition: .2s ease-in-out;*/
}
.bold {
  font-weight: bold;
}
img {
  max-width: 100%;
}

/*************header*************/
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 990px;
  padding: 30px 40px 36px;
}
/*ロゴ*/
.logo_cont {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.logo_cont h2 {
  margin-right: 36px;
}
/*検索*/
.search_cont {
  margin-left: 30px;
  width: 35%;
  max-width: 322px;
}
/*Google検索上書き調整*/
#___gcse_0 {
  width: 100% !important;
}
.gsst_b {
  padding: 0 18px 0 2px !important;
}
.gsc-search-button {
    height: 40px !important;
}
.gsc-search-button-v2 svg {
  width: 17px !important;
  height: 17px !important;
}
.cse .gsc-search-button-v2, .gsc-search-button-v2 {
  margin-left: 0 !important;
  padding: 8px 14px 8px 10px !important;
  border-radius: 0 100px 100px 0 !important;
  border-color: #0068B7 !important;
  background-color: #0068B7 !important;
}
.gsc-search-box-tools .gsc-search-box .gsc-input {
  margin-left: 6px !important;
  padding: 0 !important;
  height: 27px !important;
  color: #333 !important;
}
.input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
  border: 2px solid #0068B7 !important;
  border-radius: 100px 0 0 100px !important;
  height: 100%;
  display: flex;
  align-items: center;
}

.gsc-input-box{
  height: 40px !important;
}
html>body .gsc-inline-block {
  width: 120px !important;
}
.cse .gsc-control-cse, .gsc-control-cse {
  padding: 0 !important;
}
.gs-webResult .gs-snippet, .gs-imageResult .gs-snippet, .gs-fileFormatType {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.gsc-search-button {
  margin: 0 !important;
  cursor: pointer !important;
}
/*************コンテンツ全体*************/
#cont {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 990px;
  min-height: 328px;
  padding: 0 20px;
}
/*************サイドナビ*************/

@media screen and (min-width: 980px){
  #nav {
    position: absolute;
    left: 20px;
    margin-right: 30px;
    width: 26.3%;
    width: 249px;
    height: 0;
    font-size: 13px;
    line-height: 1.45;
    overflow: visible !important;
    /*border-right: 1px solid #B4B4B4;*/
  }
  #nav > ul {
    padding-right: 17px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    box-sizing: content-box;
  }
  /*階層構造で振り分け*/
  #nav .first_dir {
    border-bottom: 1px solid #B4B4B4;
  }
  #nav .first_dir > p {
    position: relative;
    display: block;
    padding: 16px 2.5em 16px 1em;
    font-size: 13px;
    cursor: pointer;
    background-color: #ffffff;
    transition: .1s background-color,color;
  }
  #nav .first_dir > a {
    position: relative;
    display: block;
    padding: 16px 2.5em 16px 1em;
    font-size: 13px;
    cursor: pointer;
  }
  #nav .first_dir.have_list > p:before {
    content: "" !important;
    position: absolute !important;
    display: inline-block !important;
    top: calc(50% - 6px) !important;
    right: 12px !important;
    width: 12px !important;
    height: 12px !important;
    vertical-align: middle !important;
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_off.png") !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-image .3s;
  }
  /*#nav .first_dir.have_list > p:before {
    content: '' !important;
    position: absolute !important;
    top: 33px !important;
    right: 12px !important;
    width: 12px !important;
    height: 2px !important;
    background-color: #0068B7 !important;
  }*/
  /*#nav .first_dir.have_list > p:after {
    content: '' !important;
    top: 28px !important;
    right: 17px !important;
    position: absolute !important;
    width: 2px !important;
    height: 12px !important;
    background-color: #0068B7 !important;
  }*/
  #nav .first_dir.active.have_list > p:before {
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;
  }
  /*#nav .first_dir.active.have_list > p:after {
    display: none !important;
  }*/
  
  #nav .first_dir.current.have_list > p:before {
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;
  }
  /*#nav .first_dir.current.have_list > p:after {
    display: none !important;
  }*/
  #nav .first_dir.current.active.have_list > p:before {
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;
  }
  /*#nav .first_dir.current.active.have_list > p:after {
    display: block !important;
    background-color: #fff !important;
  }*/
  #nav .first_dir > p:hover {
    color: #fff;
    background-color: #0068B7 !important;
    opacity: 1;
  }
  #nav .first_dir > a:hover {
    color: #fff;
    background-color: #0068B7 !important;
    opacity: 1;
  }
  #nav .first_dir.have_list > p:hover:before {
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_off_wh.png") !important;
    /*background-color: #fff !important;*/
    transition: background-image .3s;
  }
  #nav .first_dir.current > p {
    color: #fff;
    background-color: #0068B7 !important;
    opacity: 1;
  }
  #nav .first_dir.current > a {
    color: #fff;
    background-color: #0068B7 !important;
    opacity: 1;
  }
  #nav .first_dir.active > p {
    color: #fff;
    background-color: #0068B7 !important;
    opacity: 1;
  }
  #nav .first_dir.active > p:hover:before {
    background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;
    /*background-color: #fff !important;*/
  }
  #nav .first_dir:first-child {
    border-top: 1px solid #B4B4B4;
  }
  #nav .first_dir > ul {
    display: none;
  }
  #nav .first_dir.have_list.current > ul {
    display: block;
  }
  #nav .second_dir {
    font-weight: bold;
  }
  #nav .second_dir:first-child {
    margin-top: 12px;
  }
  #nav .second_dir:last-child {
    margin-bottom: 12px;
  }
  #nav .second_dir > a,
  #nav .second_dir > p,
  #nav .third_dir > a,
  #nav .third_dir > p{
    position: relative;
    display: block;
    padding: 8px 1em 6px 3em;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
  }

  /*#nav .second_dir.have_list > p:after {
    -webkit-transform: rotate(135deg) !important;
    -ms-transform: rotate(135deg) !important;
    -o-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
    left: 18px !important;
    top: 12px !important;
  }*/
  #nav .second_dir.active > p:after,
  #nav .third_dir.active > p:after{
    opacity: 0;
    -webkit-transform: translateY(50%) rotate(0);
    -ms-transform: translateY(50%) rotate(0);
    transform: translateY(50%) rotate(0);
  }
  
  #nav .second_dir.current > a {
    font-weight: bold;
    color: #0068B7;
  }
  #nav .second_dir > p:hover,
  #nav .third_dir > p:hover {
    text-decoration: underline;
  }
  #nav .second_dir.have_list > ul,
  #nav .third_dir.have_list > ul{
    display: none;
    margin-left: 2em;
  }
  #nav .second_dir.have_list.current > ul,
  #nav .third_dir.have_list.current > ul{
    display: block;
  }
  #nav .third_dir > a,
  #nav .fourth_dir > a{
    position: relative;
    display: block;
    padding: 8px 1em 6px 2rem;
    font-weight: normal;
  }
  
  #nav .third_dir > a::before,
  #nav .fourth_dir > a::before,
  #nav .second_dir > a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: calc(50% - 5px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s ease-in-out;
  }
  #nav .third_dir > a::before,
  #nav .fourth_dir > a::before{
    left: 11px;
  }
  #nav .third_dir.current > a,
  #nav .fourth_dir.current > a {
    font-weight: bold;
    color: #0068B7;
  }

  
  #nav.is-fixed {
    position: fixed;
    top: 0;
    left: auto;
    z-index: 2;
  }

  #nav .second_dir.have_list > p:before,
  #nav .third_dir.have_list > p:before{
    content: '' !important;
    width: 8px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 15px;
    overflow: hidden;
    -webkit-transform: translateY(50%) rotate(0deg);
    -ms-transform: translateY(50%) rotate(0deg);
    transform: translateY(50%) rotate(0deg);
    transition: .3s transform;
  }

  #nav .second_dir.have_list > p:after,
  #nav .third_dir.have_list > p:after{
    content: '';
    width: 8px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 15px;
    overflow: hidden;
    -webkit-transform: translateY(50%) rotate(90deg);
    -ms-transform: translateY(50%) rotate(90deg);
    transform: translateY(50%) rotate(90deg);
    transition: .3s;
  }
  
  .footer-2015{
    width: 100%;
    margin-top: auto;
    padding-top: 45px;
  }
  .footer-2015 > .footer-links{
    width: 100%;
    padding: 30px 0;
    background-color: #e6e8eb;
  }
  .footer-2015 > .footer-links > .hdg-container{
    border: none;
    display: flex;
    flex-direction: column;
  }
  .hdg-container > .hdg{
    padding: 0;
    font-size: 18px;
    line-height: calc(27/18);
    margin-bottom: 5px;
  }
  .footer-links p.description{
    padding: 0;
    font-size: 14px;
    line-height: calc(21/14);
    margin-bottom: 5px;
  }
  .footer-links p.link{
    padding: 0;
    line-height: calc(21/14);
    font-size: 14px;
  }
  .footer-2015 > .footer-inner{
    width: 100%;
    background-color: #333333;
    padding: 20px 0;
  }
  .footer-2015 .footer-list-utility{
    width: 950px;
    padding: 0;
  }
  .footer-2015 .footer-list-utility a{
    color: white;
    padding: 0;
  }
  .footer-2015 .footer-list-utility li:not(:last-child)::after{
    content: '';
    display: inline-block;
    height: 10px;
    width: 1px;
    background-color: white;
    margin: 0 15px;
  }
}




@media screen and (max-width: 980px) {
  #nav {
    position: absolute;
    left: auto;
    margin-right: 30px;
    width: 26.3%;
    width: 249px;
    height: 0;
    font-size: 13px;
    line-height: 1.45;
    overflow: visible !important;
  }
  #nav > ul {
    padding-right: 17px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    box-sizing: content-box;
  }
  /*階層構造で振り分け*/
  #nav a{
    transition: all .2s ease-in-out;
  }
  #nav .first_dir {
    border-bottom: 1px solid #fff;
     background: #ECECEC;
  }
  #nav .first_dir > p {
    position: relative;
    display: block;
    padding: 16px 2.5em 16px 1em;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    height: 4rem;
    display: flex;
    align-items: center;
  }
  #nav .first_dir > a {
    position: relative;
    display: block;
    padding: 16px 2.5em 16px 1em;
    font-size: 14px;
    border-left: solid 2px #ECECEC;
    cursor: pointer;
    transition: all .2s ease-in-out;
  }
  #nav .first_dir.have_list > p:before,
  #nav .second_dir.have_list > p:before,
  #nav .third_dir.have_list > p:before{
    content: '' !important;
    width: 8px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    right: 10px;
    overflow: hidden;
    -webkit-transform: translateY(50%) rotate(0deg);
    -ms-transform: translateY(50%) rotate(0deg);
    transform: translateY(50%) rotate(0deg);
    transition: .3s transform;
  }
  #nav .first_dir.have_list > p:after,
  #nav .second_dir.have_list > p:after,
  #nav .third_dir.have_list > p:after{
    content: '';
    width: 8px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    right: 10px;
    overflow: hidden;
    -webkit-transform: translateY(50%) rotate(90deg);
    -ms-transform: translateY(50%) rotate(90deg);
    transform: translateY(50%) rotate(90deg);
    transition: .3s transform;
  }
  #nav .first_dir.active.have_list > p:after,
  #nav .second_dir.active.have_list > p:after,
  #nav .third_dir.active.have_list > p:after{
    -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
      top: 50%;
  }
  
  #nav .first_dir.current.have_list > p:before {
    /*background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;*/
  }
  #nav .first_dir.current.active.have_list > p:before {
    /*background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/ac_on_wh.png") !important;*/
  }
  #nav .first_dir.current > p {
    color: #0068B7 !important;
    border-left: solid 2px #0068B7;
    opacity: 1;
  }
  #nav .first_dir.current > a {
    color: #0068B7;
    border-left: solid 2px #0068B7;
    opacity: 1;
  }
  #nav .first_dir.active > p {
    /*color: #fff;*/
    /*background-color: #B7BBBE !important;*/
    opacity: 1;
  }
  #nav .first_dir > ul {
    display: none;
  }
  #nav .first_dir.have_list.current > ul {
    display: block;
  }
  #nav .first_dir > a{
    padding: 21px 2.5em 19px 2.3em;
  }
  #nav .first_dir > p{
    padding: 11px 4em 8px 2.3em;
  }

  #nav .first_dir.have_list > p:before,
  #nav .second_dir.have_list > p:before,
  #nav .third_dir.have_list > p:before{
    right: 25px;
  }
  #nav .first_dir.have_list > p:after,
  #nav .second_dir.have_list > p:after,
  #nav .third_dir.have_list > p:after{
    right: 25px;
  }
  #nav .second_dir {
    font-weight: bold;
    background-color: #F9F9F9;
    border-bottom: 1px solid #fff;
  }
  #nav .second_dir > a,
  #nav .second_dir > p,
  #nav .third_dir > a,
  #nav .third_dir > p{
    position: relative;
    display: block;
    padding: 6px 2.5em 6px 1em;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
  }
  #nav .second_dir > a{
    border-left: solid 2px #F9F9F9;
  }
  #nav .second_dir > a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s ease-in-out;
  }
  #nav .second_dir.current > a {
    color: #0068B7;
    border-left: solid 2px #0068B7;
  }
  #nav .second_dir.have_list > ul,
  #nav .third_dir.have_list > ul{
    display: none;
  }
  #nav .second_dir.have_list.current > ul,
  #nav .third_dir.have_list.current > ul{
    display: block;
  }
  #nav .second_dir > a, #nav .second_dir > p,
  #nav .third_dir > a, #nav .third_dir > p{
    padding: 8px 4em 6px 2.3em;
  }
  #nav .second_dir > a::before {
    right: 27px;
    top: calc(50% - 2px);
  }
  
  #nav .third_dir,
  #nav .fourth_dir{
    border-bottom: 1px solid #ECECEC;
    background-color: #fff;
  }
  #nav .third_dir:last-child,
  #nav .fourth_dir:last-child{
    border-bottom: none;
  }
  #nav .third_dir > a,
  #nav .fourth_dir > a {
    position: relative;
    display: block;
    padding: 6px 2.5em 6px 2.5em;
    font-weight: normal;
    font-size: 14px;
    border-left: solid 2px #fff;
  }
  #nav .third_dir > a::before,
  #nav .fourth_dir > a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s ease-in-out;
  }
  
  #nav .third_dir.current > a,
  #nav .fourth_dir.current > a {
    color: #0068B7;
    border-left: solid 2px #0068B7;
  }
  #nav.is-fixed {
    position: fixed;
    top: 0;
    left: auto;
    z-index: 2;
  }

  #nav .third_dir > a,
  #nav .fourth_dir > a{
    padding: 8px 4.6em 6px 4.6em;
  }
  #nav .third_dir > a::before,
  #nav .fourth_dir > a::before{
    right: 28px;
    top: calc(50% - 2px);
  }
}



/*************右カラム 本文*************/
#article {
  margin-left: 30%;
  width: calc(72% - 20px);
  max-width: 684px;
  min-height: calc(100vh - 480px);
}
#article p,
#article li,
#article dl {
  line-height: 1.45;
}
@media screen and (max-width: 980px) {
  #article{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 0;
  }
}
/*パンくず*/
#article .bread {
  margin-bottom: 15px;
}
#article .bread li {
  display: inline;
  position: relative;
  margin-right: 0.2em;
  font-size: 11px;
}
#article .bread li:after {
  /* position: absolute; */
  content: '>';
  display: inline;
  margin-left: 0.2em;
  vertical-align: baseline;
}
#article .bread li:last-child:after {
  display: none;
}
@media screen and (max-width: 980px) {
  #article .bread {
    display: flex;
    flex-flow: nowrap;
    align-items: center;
  }
  #article .bread ul{
    flex-shrink: 1;
    white-space: nowrap;
    overflow-y: auto;
    width: 100%;
    text-align: center;
  }
  #article .bread li {
    display: inline-block;
  }
}
/*見出し*/
#article h3 {
  margin-bottom: 20px;
  padding: 8px 0 8px 24px;
  font-size: 30px;
  line-height: 1.45;
  color: #0068B7;
  border-left: #0068B7 6px solid;
}
#article h3.top {
  margin-bottom: 32px;
  padding: 0;
  text-align: center;
  border: none;
  font-weight: bold;
}
#article h3.top .sub_ttl {
  color: #706d6e;
}
#article h3.top .main_ttl {
  font-size: 52px;
  color: #0068B7;
}
/*トップページ*/
.top_anchor ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.top_anchor li {
  width: 47%;
  text-align: center;
}
.top_anchor a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #0068B7;
  border: 2px solid #0068B7;
  border-radius: 4px;
  box-shadow: 4px 4px rgba(0,0,0,.2);
}
.top_anchor a img {
  margin-right: 16px;
}
.top_anchor a img[src*=mokuteki] {
  margin-top: -2px;
}
/*青背景見出し*/
h4 {
  position: relative;
  margin-bottom: 24px;
  padding: 8px 24px 4px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  background: #0068B7;
  color: #fff;
}
h4:before {
  position: absolute !important;
  content: '' !important;
  left: 0 !important;
  top: 0 !important;
  background-image: url("/biz/set/data/cloud/iaas/aspire/guide/img/h4_wh.png") !important;
  background-position: center !important;
  background-size: contain !important;
  width: 20px !important;
  height: 40px !important;
}
/*水平線見出し*/
h5 {
  position: relative;
  margin-bottom: 16px;
  border-bottom: 4px;
  border-bottom-color: #0068B7 !important;
  border-bottom-style: solid;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
}
/*■付き見出し*/
h6 {
  position: relative;
  margin-bottom: 16px;
  padding-left: 1em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.45;
}
h6:before {
  content: '■' !important;
  position: absolute !important;
  margin-left: -1em !important;
  color: #0068B7 !important;
}
.guide_menu_list {
  margin-bottom: 24px;
}
.guide_menu_links li > a {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.guide_menu_links li > p {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}
#article p,
#article li,
#article dt,
#article dd,
#article th,
#article td {
  font-size: 14px;
  line-height: 1.6;
}
#article .second_dir > a,
#article .second_dir > p {
  margin-left: 1em;
}
#article .third_dir > a,
#article .third_dir > p {
  margin-left: 2em;
}
#article .fourth_dir > a,
#article .fourth_dir > p {
  margin-left: 3em;
}
.lead_cont {
  margin-bottom: 32px;
}
.normal_cont {
  margin-bottom: 28px;
}
.normal_cont p {
  margin-bottom: 14px;
}
.normal_cont p:last-child {
  margin-bottom: 0;
}
/*リスト系*/
ul.circle {
  margin-bottom: 14px;
}
ul.circle li {
  position: relative;
  margin-left: 1.5em;
  margin-bottom: 7px;
}
ul.circle li:before {
  position: absolute !important;
  margin-left: -1.5em !important;
  top: 2px !important;
  left: 0 !important;
  content: '●' !important;
  font-size: 8px !important;
  color: #0068B7 !important;
}
ol.num {
  counter-reset: list-count; 
  list-style: none; 
}
ol.num > li {
  position: relative;
  margin-left: 2.5em;
  margin-bottom: 28px;
}
ol.num > li:before {
  position: absolute !important;
  content:counter(list-count) !important;
  counter-increment: list-count !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: -2.5em !important;
  font-weight: bold !important;
  width: 24px !important;
  height: 24px !important;
  background-color: #0068B7 !important;
  color: #fff !important;
}
.article {
  margin-bottom: 46px;
}
/*注釈等、背景に色があるもの*/
.sub_cont {
  display: flex;
  margin-left: 1em;
  margin-bottom: 28px;
  padding: 14px;  
  border-radius: 4px;
}
.sub_cont .icon {
  align-self: flex-start;
  width: 81px;
  margin-right: 20px;
}
.sub_cont .icon dl{
  display: flex;
  align-items: center;
  background-color: #fff !important;
  border-radius: 4px;
}
.sub_cont .icon dt {
  display: flex;
  align-items: center;
  padding: 1px;
  width: 26px;
  color: #fff;
}
.sub_cont .icon dd {
  margin: 0 auto;
  font-weight: bold;
  width: 52px;
  text-align: center;
}
.sub_cont .text {
  margin-top: 4px;
  width: 85%;
}
.sub_cont .text li {
  position: relative;
  margin-left: 1.5em;
}
.sub_cont .text li:before {
  content: '・' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  margin-left: -1.5em !important;
}
/*重要エリア用*/
.sub_cont.important {
  background-color: #FFE8E8 !important;
}
.sub_cont.important .icon dl {
  border: #C92727 1px solid;
}
.sub_cont.important .icon dt {
    margin: -1px !important;
    border: #C92727 1px solid  !important;
    border-radius: 4px 0 0 4px  !important;  
    background-color: #C92727 !important;
}
.sub_cont.important .icon dd {
  color: #C92727;
}
/*補足エリア用*/
.sub_cont.supplement {
  background-color: #EBF6FF !important;
}
.sub_cont.supplement .icon dl {
  border: #0068B7 1px solid;
}
.sub_cont.supplement .icon dt {
    margin: -1px !important;
    border: #0068B7 1px solid  !important;
    border-radius: 4px 0 0 4px  !important;
    background-color: #0068B7 !important;
}
.sub_cont.supplement .icon dd {
  color: #0068B7;
}
/*表組み*/
.table01 {
  width: 100%;
  margin-bottom: 24px;
  border: solid 1px #B4B4B4 !important;
}
.table01 td,
.table01 th {
  vertical-align: top;
  padding: 14px;
  border-collapse: collapse;
  border: solid 1px #B4B4B4 !important;
}
.table01 thead td,
.table01 thead th {
  text-align: center;
  vertical-align: middle;
}

.table01 thead th {
  font-weight: bold;
  background-color: #ddd !important;
}

.table01 td.row,
.table01 th.row {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.table01 td.row.group,
.table01 th.row.group {
  border-top: solid 1px #B4B4B4 !important;
}
table li {
  position: relative;
  margin-left: 1.5em;
}
table li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -1.5em;
}
.no-tel-link {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.img_cont {
  margin-bottom: 14px;
}
.img_cont img {
	border-top-color: #cccccc;
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: #cccccc;
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: #cccccc;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: #cccccc;
    border-left-style: solid;
    border-left-width: 1px;
}

@media screen and (max-width: 980px) {
  #article h3 {
    font-size: 23px;
  }
  .img_cont {
    text-align: center;
  }
  .sub_cont{
    flex-direction: column;
    margin-left: 0;
  }
  .sub_cont .text{
    width: 100%;
    margin-top: 10px;
  }
  .sub_cont .text li{
    margin-top: 20px;
  }
  .table-scroll{
    white-space: nowrap;
    overflow-x: auto;
  }
  
}


/*参照*/
.reference {
  position: relative;
  display: inline-block;
  margin-left: 3em;
}
.reference:first-of-type:before {
  content: '参照' !important;
  position: absolute !important;
  margin-left: -3em !important;
  padding: 1px 4px !important;
  width: 32px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: #fff !important;
  background-color: #0068B7 !important;
  border-radius: 4px !important;
}
/*トップに戻るボタン*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 1;
  right: 10vw;
  bottom: 50px;
  background: #0068B7;
  opacity: 0.9;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 980px) {
  #page_top{
    right: 15px;
    bottom: 70px;
  }
}


/*************プリント用CSS*************/
@media print {
  #nav,
  header,
  #header,
  .nav-top,
  .footer-links,
  #footer-topicpath-area,
  footer {
    display: none;
  }
  #article {
    width: 950px;
    margin-left: 0;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
  #normal_cont,
  #sub_cont,
  .article {
    width: 100%;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
  body {
    -webkit-print-color-adjust: exact;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
  #page_top {
    display: none;
  }
}
@media screen and (max-width: 1007px){
  .header-2015{
    min-width: 100%;
  }
  #contents-area{
    width: auto;
  }
  .nav-top{
    width: auto;
  }
  .footer-links{
    width: auto;
  }
  .footer-2015{
    min-width: 100%;
  }
}
@media screen and (max-width: 980px) {

  #article h3.top .main_ttl {
    font-size: 24px;
  }
  #article h3.top .sub_ttl {
    font-size: 14px;
  }
  .top_anchor a{
    font-size: 14px;
  }

  #article .second_dir > p {
    margin-left: 1em;
    font-weight: bold;
  }
  #article .third_dir > a,
  #article .fourth_dir > a{
    margin-left: 2em;
  }

  .header-2015{
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    top: 0;
    background: #fff;
  }
  .header-2015 .header-inner-top{
    display: flex;
    width: 100%;
    justify-content: start;
    height: 58px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }
  .header-2015 .header-inner-top .logo{
    width: 130px;
    position: relative;
    vertical-align: middle;
    padding-left: 13px;
    box-sizing: border-box;
    margin-right: 10px;
  }
  .header-2015 .header-inner-top  ._ga_area_header{
    display: block;
    width: 112px;
    height: 29px;
    line-height: 1;
  }
  .header-2015 .header-nav-area-logo{
    display: none;
  }
  .header-2015 .header-inner-top .header-nav-area .header-list {
    position: relative;
    height: 58px;
    flex-grow: 1;
    margin-top: 0;
  }
  .header-2015 .header-inner-top .header-nav-area .header-list .header-list-item{
    position: relative;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    background: none;
    font-family: inherit;
    text-align: left;
    text-decoration: none;
    font-size: 10px;
    line-height: 50px;
  }
  .header-2015 .header-inner-top .header-nav-area .header-list .header-list-item a:link{
    padding-left: 17px;
  }
  .header-2015 .header-inner-top .header-nav-area .header-list .header-list-item a:link::before{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 23px;
    background-color: #707070;
    opacity: 1;
  }
  #header{
    flex-wrap: wrap;
    padding: 0;
    margin-top: 56px;
    margin-bottom: 36px;
  }
  .lyt-col-1 #contents-body{
    width: 100%;
  }
  .logo_cont h2 {
    margin-right: 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .logo_cont p{
    margin-top: 20px;
  }
  .logo_cont {
    display: flex;
    align-items: center;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    /*display: none;*/
  }
  .is-active .logo_cont{
    display: block;
  }
  #nav .nav-button{
    width: 58px;
    height: 56px;
    background: #0068B7;
    top: 0;
    right: 0;
    position: fixed;
    cursor: pointer;
    z-index: 1;
  }
  #nav .nav-button span{
    display: block;
    width: 27px;
    height: 3px;
    background: #e0e2e5;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    background: #363738;
    z-index: 1;
    background: #fff;
  }
  #nav .nav-button span:nth-child(1){
    -webkit-transform-origin: center;
    transform-origin: center;
    top: 13.5px;
  }
  #nav .nav-button span:nth-child(2){
    top: 24.5px;
  }
  #nav .nav-button span:nth-child(3){
    top: 35.5px;
  }
  #nav .is-active span:nth-child(1){
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 41px;
    top: 50%;
    background: #0068B7;
  }
  #nav .is-active span:nth-child(2){
    display: none;
  }
  #nav .is-active span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 41px;
    top: 50%;
    background: #0068B7;
  }
  #nav .is-active{
    background: #fff;
  }
  .search_cont {
    position: fixed;
    width: 100%;
    max-width: 224px;
    margin: 0 auto;    
    transition: top 0.3s ease 0.3s;
    opacity: 0;
    top: 67px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
  }
  .is-active.search_cont{
    opacity: 1;
  }
  #contents-area{
    width: 100%;
  }

  .footer-2015{
    background: #333;
    min-width: 100%;
    margin: 0;
  }
  .footer-2015 .footer-inner{
    width: 100%;
  }
  .footer-2015 .footer-list-utility{
    padding: 13px 10px 2px;
    box-sizing: border-box;
  }
  .footer-2015 .footer-list-utility a{
    color: #fff;
    display: block;
  }
  .footer-2015 .footer-list-utility li{
   float: none;
   width: 100%;
   display: block;
   margin-bottom: 10px;
 }
 .footer-2015 .footer-list-utility li:first-child a{
    padding-left: 10px;
  }
  .footer-2015 .footer-list-utility{
    font-size: 10px;
  }
  .footer-2015 .footer-bottom{
    padding: 15px 20px 10px;
    box-sizing: border-box;
  }
  .footer-2015 .footer-bottom .footer-inner{
    text-align: center;
  }
  .nav-top{
    width: 100%;
  }
  .footer-links{
    width: 100%;
  }
  .footer-links .hdg-container{
    width: 100%;
    background-color: #e6e8eb;
    display: flex;
    flex-direction: column;
    padding: 23px 20px;
  }
  .footer-links .hdg-container .hdg{
    padding: 0;
    font-size: 14px;
    line-height: calc(21/14);
  }
  .footer-links .hdg-container .description{
    font-size: 10px;
    padding: 0;
    line-height: calc(15/10);
    margin-top: 5px;
  }
  .footer-links .hdg-container .link{
    padding: 0;
    line-height: calc(15/10);
    font-size: 10px;
    margin-top: 5px;
  }
  .nav-top a{
    width: 100%;
  }
  #switch dl{
    display: flex;
    flex-direction: column;
  }
  #switch dt{
    padding-right: 0;
  }
  #switch dd{
    padding-top: 10px;
  }
  #switch ul{
    display: inline-block;
  }
}

@media screen and (max-width: 980px) {
  .lyt-col-1 #contents-body{
    /* margin-top: 56px; */
  }
  #nav,
  #nav.is-fixed{
    position: fixed;
    z-index: 2;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 63px;
  }
  #nav.is-active{
    background: #fff;
  }
  #nav > ul{
    padding-right: 0;
    transition: transform 0.5s ease;
    overflow-y: auto;
  }
  #nav.is-active > ul{
    background: #fff;
    transform: translateY(0);
  }
  .gsc-input-box{
    padding: 0 !important;
  }
  html.is-hidden{
    overflow: hidden;
  }
  body.is-hidden{
    overflow: hidden;
  }
}

.header-list-item{
  border-right: 0 !important;
}

.command-view{
  background-color: #222;
  color: #fff;
}