@charset "utf-8";

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


  ◇◆◇ レイアウト ◇◆◇
  
  1.  header
      nav
      
  3.  contents
  4.  footer
  99. parts  
  
  
========================================================================================================================*/

/*----------------------------------------------------------------------------------------------------

  1. header
  
----------------------------------------------------------------------------------------------------*/

header {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

@media screen and (max-width:640px) {
  #hd {
    width: 100%;
    height: 90px;
    position: relative;
    overflow: hidden;
  }

  header {
    width: 100%;
    height: 90px;
    padding: 0 90px 0 0;
    display: table;
    margin-right: 90px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }
}


/*-----------------------------------------------------------------------------------
  ロゴ
-----------------------------------------------------------------------------------*/

.hd_logo {
  width: 295px;
  display: inline-block;
  float: left;
  line-height: 0;
}

.hd_logo a {
  display: block;
  width: 100%;
  min-height: 48px;
  background-image: url(../image/logo-black.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.no-backgroundsize .hd_logo a {
  background-image: url(../image/logo-black_s.png);
}

@media screen and (max-width:640px) {
  .hd_logo {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    float: none;
    padding: 0 1rem;
  }
}


/*-----------------------------------------------------------------------------------
  language
-----------------------------------------------------------------------------------*/

.hd_lang {
  position: absolute;
  right: 0;
  top: 0;
  list-style: none;
}

.hd_lang li {
  width: 70px;
  box-sizing: border-box;
  line-height: 1;
  float: left;
  background-color: rgba(10, 55, 100, 0.9);
  border: 1px solid rgba(10, 55, 100, 0.9);
  border-right: 0;
  border-top: 0;
  color: #fff;
  padding: 8px;
  text-align: center;
  cursor: pointer;
}

.no-rgba .hd_lang li {
  background-color: #0a3764;
  border: 1px solid #0a3764;
  border-right: 0;
  border-top: 0;
}

.hd_lang li.active {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-top: 0;
  color: #0d579a;
}

.hd_lang li:last-child {
  font-family: "Roboto Condensed";
  font-weight: 300;
}

.hd_lang li:last-child.active {
  border-left: 0;
}

.hd_lang li a,
.hd_lang li a:visited,
.hd_lang li a:hover {
  color: #fff;
  text-decoration: none;
}

.hd_lang li.active a,
.hd_lang li.active a:visited,
.hd_lang li.active a:hover {
  color: #0d579a;
}

@media screen and (max-width:640px) {
  .hd_lang {
    display: none;
  }
}


/*-----------------------------------------------------------------------------------
  snav
-----------------------------------------------------------------------------------*/

.hd_snav {
  list-style: none;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 48px;
}

.hd_snav li {
  float: left;
  margin-left: 2em;
  position: relative;
}

.hd_snav li a {
  color: inherit;
  text-decoration: none;
}

.hd_snav li a,
.hd_snav li a:visited {
  color: inherit;
  text-decoration: none;
}

.hd_snav li a:hover {
  color: #148cc8;
  text-decoration: underline;
}

.csstransitions .hd_snav li:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-right: solid 1px #c8c8c8;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: -1.85em;
  top: 50%;
  margin-top: -0.85em;
}

@media all and (-ms-high-contrast:none) {
  .hd_snav li:after {
    margin-top: -0.9em;
  }
}

.no-csstransitions .hd_snav li:before {
  content: "／";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: -1.5em;
  padding-right: 0.75em;
  font-size: 87.5%;
  color: #c8c8c8;
  text-align: cleft;
}

.csstransitions .hd_snav li:first-child:after,
.no-csstransitions .hd_snav li:first-child:before {
  display: none;
}

@media screen and (max-width:640px) {
  .hd_snav {
    display: none;
  }
}

/*----------------------------------------------------------------------------------------------------

  nav
  
----------------------------------------------------------------------------------------------------*/

#glNav-warp {
  width: 100%;
  position: relative;
  background-color: #0d579a;
}

#glNav ul {
  width: 1100px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  display: table;
  box-sizing: border-box;
}

#glNav>ul>li {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  overflow: visible;
  cursor: pointer;
}

/*#glNav > ul > li.ov-v{
overflow: visible;
}*/

#glNav>ul>li>a {
  display: block;
  z-index: 1;
  position: relative;
  padding: 1em 0;
}

#glNav>ul>li>a,
#glNav>ul>li>a:visited,
#glNav>ul>li.active>a,
#glNav>ul>li>a:hover {
  color: #fff;
  text-decoration: none;
}

/*#glNav > ul > li > a:after,
#glNav > ul > li:last-child > a:before {
  content:"";
  width:1px;
  height:1em;
  position:absolute;
  left:0;
  top:50%;
  margin-top:-0.5em;
  background-color:rgba(255,255,255,0.2);
}

@media all and (-ms-high-contrast:none) {
  #glNav > ul > li a:after,
  #glNav > ul > li:last-child a:before {
    margin-top:-0.6em;
  }
}

.no-rgba #glNav > ul > li > a:after,
.no-rgba #glNav > ul > li:last-child > a:before {
  background-color:#3d79ae;
}

#glNav > ul > li:last-child > a:before {
  right:0;
  left:inherit;
}

#glNav > ul > li:before {
  content:"";
  display:block;
  width:100%;
  height:70px;
  background-color:rgba(20,140,200,0.6);
  position:absolute;
  left:0;
  top:-70px;
}*/

#glNav>ul>li>a.btn05 {
  background-size: 100% 200%;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 50%, rgba(20, 140, 200, 1) 50%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(20, 140, 200, 1) 50%);
  -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
  transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

#glNav>ul>li>a.btn05:hover {
  background-color: rgba(20, 140, 200, 0.6);
  background-position: 100% -100%;
}

#glNav>ul>li>a {
  transition: background-color 0.2s ease;
}

.no-rgba #glNav>ul>li:before,
.no-csstransitions #glNav li a:hover {
  background-color: #1177b6;
}

#glNav>ul>li.active {
  background-color: #148cc8;
}

#glNav>ul>li:before {
  transition: top 0.2s ease;
}

#glNav>ul>li:hover:before {
  top: 0;
}

#glNav>ul>li:hover a:after,
#glNav>ul>li:hover+li a:after,
#glNav>ul>li.active+li a:after,
#glNav>ul>li.active a:after {
  display: none;
}

#glNav>ul>li:last-child:hover a:before,
#glNav>ul>li:last-child.active a:before {
  display: none;
}

#glNav li span {
  position: relative;
  z-index: 2;
  padding: 0 1em;
}

#glNav li img {
  vertical-align: middle;
  margin-bottom: 2px;
}

@media screen and (max-width:640px) {
  #glNav-warp {
    display: none;
  }
}


#glNav>ul>li ul.child {
  position: absolute;
  list-style: none;
  width: 220px;
  z-index: 9999;
  top: 100%;
  right: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

#glNav>ul>li ul.child li {
  width: 100%;
  background-color: rgba(20, 140, 200, 0.6);
  overflow: hidden;
  height: 0;
  transition: .3s;
}

#glNav>ul>li ul.child li a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 5px;
}

#glNav>ul>li:hover ul.child li {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.3;
  font-size: 87.5%;
}

#glNav>ul>li:hover ul.child li:last-child {
  border-bottom: 0px;
}

#glNav>ul>li:hover ul.child li:hover {
  background-color: rgba(20, 140, 200, 1);
  transform: scale(1.05, 1.05);
}


/*-----------------------------------------------------------------------------------
  open nav
-----------------------------------------------------------------------------------*/

html.openNav_on {
  overflow-y: hidden;
}

#openNav-warp {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -70px;
  right: -70px;
  z-index: 100;
  overflow: hidden;
}

#openNav-warp.on {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  overflow-y: auto;
  background-color: #fff;
}

.lte-ie8 #openNav-warp {
  display: none !important;
}

.lte-ie8 #openNav-warp.on {
  min-width: 1200px;
}

@media screen and (min-width:641px) {
  #openNav-warp.on {
    min-width: 1100px;
  }
}

@media screen and (max-width:640px) {
  #openNav-warp {
    width: 90px;
    height: 90px;
    top: -90px;
    right: -90px;
  }
}

#openNav_sw {
  width: 100%;
  height: 100vh;
  filter: alpha(opacity=0);
  opacity: 0;
  -moz-opacity: 0;
  transition: opacity 0.2s ease;
}

#openNav-warp.on #openNav_sw {
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-opacity: 1;
}

#openNav {
  width: 100%;
  height: 100%;
  display: table;
}

#openNav:before {
  content: "";
  width: 40%;
  display: table-cell;
  background: url(../image/openNav_photo.jpg) no-repeat center center;
  background-size: cover;
}

#openNav nav {
  width: 60%;
  display: table-cell;
  box-sizing: border-box;
  padding: 50px;
  background-color: #0d579a;
  text-align: left;
}

#openNav a,
#openNav a:visited {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width:641px) {
  #openNav a:hover {
    color: #fff;
    text-decoration: underline;
  }

  #openNav a {
    transition: opacity 0.1s ease;
  }

  #openNav a:hover {
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.6;
  }

  #openNav nav ul {
    max-width: 1000px;
  }
}

#openNav nav>ul.mnav {
  list-style: none;
  margin-left: -50px;
}

#openNav nav>ul.mnav>li {
  width: 33.333333%;
  float: left;
  padding-left: 50px;
  box-sizing: border-box;
}

#openNav nav>ul.mnav>li>a {
  display: inline-block;
  font-size: 125.0%;
  font-weight: bold;
  padding-top: 1.5em;
}

@media screen and (min-width:641px) {
  #openNav nav>ul.mnav>li ul.child {
    display: block !important;
  }

  #openNav nav>ul.mnav>li.parent>a {
    pointer-events: none;
    cursor: default;
  }
}

#openNav nav>ul.mnav>li ul {
  padding-left: 14px;
  list-style: none;
  font-size: 93.8%;
}

#openNav nav>ul.mnav>li ul li {
  line-height: 1.4;
}

#openNav nav>ul.mnav>li ul li a {
  position: relative;
  display: inline-block;
  padding-top: 0.25em;
}

#openNav nav>ul.mnav>li ul li a:before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -12px;
  top: 1.25em;
}

#openNav nav ul.snav {
  list-style: none;
  padding-top: 1.25em;
}

#openNav nav ul.snav li {
  padding-top: 0.25em;
}

@media screen and (max-width:640px) {
  #openNav:before {
    display: none;
  }

  #openNav nav {
    width: 100%;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    font-size: 120%;
  }

  #openNav nav>ul.mnav>li {
    width: 100%;
  }

  #openNav nav>ul.mnav>li>a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    display: block;
    font-size: 118.8%;
    font-weight: normal;
  }

  #openNav nav>ul.mnav>li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  #openNav nav>ul.mnav>li.parent>a {
    position: relative;
    pointer-events: inherit;
    cursor: pointer;
  }

  #openNav nav>ul.mnav>li.parent>a:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    margin-top: -4px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid #fff;
  }

  #openNav nav>ul.mnav>li.parent a.active:after {
    margin-top: -4px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid #fff;
    border-top: 0;
  }

  #openNav nav>ul.mnav>li ul {
    font-size: 100%;
  }

  #openNav nav>ul.mnav>li ul.child {
    display: none;
    padding-left: 2.65rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #openNav nav>ul.mnav>li ul.child li a {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  #openNav nav>ul.mnav>li ul.child li a:before {
    top: 1.35em;
  }

  #openNav nav ul.snav {
    padding-top: 1.5rem;
  }
}


/* language ----------------------------------------*/

.nav_lang {
  display: none;
}

@media screen and (max-width:640px) {

  .nav_lang,
  .nav_lang li {
    display: inline-block;
  }

  .nav_lang {
    margin-bottom: 2.5rem;
    color: #fff;
    letter-spacing: -0.5em;
    white-space: nowrap;
  }

  .nav_lang li {
    cursor: pointer;
    letter-spacing: normal;
    margin-right: 0.5rem;
  }

  .nav_lang li a {
    display: block;
    padding: 0.25em 0.5em;
  }

  .nav_lang li a,
  .nav_lang li a:visited,
  .nav_lang li a:hover {
    border: 1px solid #fff;
    color: #fff !important;
    text-decoration: none;
  }

  .nav_lang li.active a,
  .nav_lang li.active a:visited,
  .nav_lang li.active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0d579a !important;
  }
}


/* ボタン ----------------------------------------*/

#openNav_btn {
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 0;
  top: -70px;
  text-align: center;
  color: #fff;
  background-color: #0d579a;
  z-index: 101;
  -webkit-transition: top ease 0.2s;
  -moz-transition: top ease 0.2s;
  -ms-transition: top ease 0.2s;
  -o-transition: top ease 0.2s;
  transition: top ease 0.2s;
}

.preload #openNav_btn {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

#openNav_btn.fixed {
  top: 0;
}

#openNav-warp.on #openNav_btn {
  position: absolute;
}

.lte-ie8 #openNav_btn {
  display: none !important;
}

@media screen and (max-width:640px) {
  #openNav_btn {
    top: 0 !important;
    width: 90px;
    height: 90px;
  }

  #openNav_btn {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}

.openNav_btn_ic,
.openNav_btn_ic span,
.openNav_btn_ic span:before,
.openNav_btn_ic span:after {
  display: inline-block;
  transition: transform .4s, opacity .4s;
  box-sizing: border-box;
}

.openNav_btn_ic {
  position: relative;
  width: 26px;
  height: 20px;
  margin-top: 22px;
}

.openNav_btn_ic span,
.openNav_btn_ic span:nth-of-type(2),
.openNav_btn_ic span:nth-of-type(3) {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.openNav_btn_ic span:nth-of-type(1) {
  top: 0;
}

.openNav_btn_ic span:nth-of-type(2) {
  top: 9px;
}

.openNav_btn_ic span:nth-of-type(3) {
  bottom: 0;
}

#openNav_btn.close .openNav_btn_ic span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
  transform: translateY(9px) rotate(-315deg);
}

#openNav_btn.close .openNav_btn_ic span:nth-of-type(2) {
  opacity: 0;
}

#openNav_btn.close .openNav_btn_ic span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

.preload .openNav_btn_ic,
.preload .openNav_btn_ic span,
.preload .openNav_btn_ic span:before,
.preload .openNav_btn_ic span:after {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

@media screen and (max-width:640px) {
  .openNav_btn_ic {
    width: 36px;
    height: 30px;
    margin-top: 28px;
  }

  .openNav_btn_ic span:nth-of-type(2) {
    top: 14px;
  }

  #openNav_btn.close .openNav_btn_ic span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-315deg);
    transform: translateY(14px) rotate(-315deg);
  }

  #openNav_btn.close .openNav_btn_ic span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(315deg);
    transform: translateY(-14px) rotate(315deg);
  }
}

@media print {
  #openNav_btn {
    display: none !important;
  }
}


/*----------------------------------------------------------------------------------------------------

  3.  contents
  
----------------------------------------------------------------------------------------------------*/

.ct {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ct.cols {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.ct.cols:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.ct-main,
.ct-side {
  box-sizing: border-box;
}

.ct.cols .ct-main {
  width: 800px;
  float: left;
}

.ct.cols .ct-side {
  width: 260px;
  float: right;
}

.ct-side.hide {
  display: none;
}

@media screen and (max-width:640px) {
  .ct, .ct.cols {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ct.line {
    border-bottom: 1px solid #dcdcdc;
  }

  .ct.cols .ct-main, .ct.cols .ct-side {
    width: 100%;
    float: none;
  }

  .ct-main {
    padding: 2.5rem 1rem 2.5rem 1rem;
    min-height: inherit !important;
  }
}


/*-----------------------------------------------------------------------------------
  ページ見出し
-----------------------------------------------------------------------------------*/

#pg-headline {
  width: 100%;
  height: 200px;
  display: table;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}

#pg-headline h2 {
  font-weight: normal;
  line-height: 1;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  z-index: 2;
  position: relative;
  font-size: 250%;
  font-family: "Noto Sans Japanese";
  font-weight: 500;
}

@media screen and (max-width:640px) {
  #pg-headline {
    font-size: 90%;
  }

  #pg-headline h2 {
    font-size: 230%;
  }
}


/*-----------------------------------------------------------------------------------
  パンくず
-----------------------------------------------------------------------------------*/

.pan {
  background-color: #eee;
  padding: 0.5em 0;
}

.pan ul {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 87.5%;
  list-style: none;
}

.pan li {
  display: inline-block;
  position: relative;
  padding-left: 1.25em;
  padding-left: 1.25rem;
}

.pan li:before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.6em;
  left: 0.15em;
  border-right: 1px solid #3c4655;
  border-bottom: 1px solid #3c4655;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: background-color ease 0.1s;
  -moz-transition: background-color ease 0.1s;
  -ms-transition: background-color ease 0.1s;
  -o-transition: background-color ease 0.1s;
  transition: background-color ease 0.1s;
}

@media all and (-ms-high-contrast:none) {
  .pan li:before {
    top: 0.5em;
  }
}

@media screen and (max-width:640px) {
  .pan {
    padding: 0.5rem 1rem;
    text-align: left;
  }

  .pan ul {
    width: inherit;
    display: inline-block;
  }
}

.lte-ie8 .pan li:before {
  content: ">";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: none;
  position: absolute;
  top: 0.15em;
  text-decoration: none;
  color: #92959d;
}

.pan li:first-child {
  padding-left: 0;
}

.pan li:first-child:before {
  display: none;
}


/*-----------------------------------------------------------------------------------
  見出し
-----------------------------------------------------------------------------------*/

.l-headlineB {
  color: #0d579a;
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  font-size: 200.0%;
  border-top: 2px solid #0d579a;
  border-bottom: 1px solid #dcdcdc;
  padding: 18px 0.75em 17px 0.75em;
  padding: 16px 1rem 17px 1rem;
  box-sizing: border-box;
  line-height: 1.5;
  margin-bottom: 30px;
}

.l-headline {
  background-color: #f4f4f4;
  color: #262c33;
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  font-size: 145%;
  border-left: 2px solid #0d579a;
  box-sizing: border-box;
  padding: 0.75em 0.75em;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.l-headlineS-bg {
  background-color: #669ed0;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  font-size: 137.5%;
  padding: 0.65em 0.75em;
  padding: 0.85rem 1rem;
}

.l-headlineS-line {
  border-bottom: 1px solid #dcdcdc;
  font-weight: bold;
  font-size: 137.5%;
  line-height: 1.5;
  padding-bottom: 0.5em;
  padding-bottom: 0.75rem;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

  .l-headline,
  .l-headlineB {
    font-weight: 600;
  }
}

@media screen and (max-width:640px) {
  .l-headlineB {
    margin-bottom: 2rem;
    font-size: 165%;
  }

  .l-headline {
    margin-bottom: 0.5rem;
    font-size: 125%;
  }

  .l-headlineS-bg {
    font-size: 125%;
  }

  .l-headlineS-line {
    font-size: 125%;
  }
}


/*-----------------------------------------------------------------------------------
  side nav
-----------------------------------------------------------------------------------*/

.sideNav dl {
  padding-bottom: 30px;
}

.sideNav dt {
  box-sizing: border-box;
  line-height: 1.4;
  background-color: #0d579a;
  color: #fff;
  font-size: 137.5%;
  padding-left: 0.65em;
  padding-left: 1rem;
  padding-top: 1.3em;
  padding-top: 1.65rem;
  padding-bottom: 1.25em;
  padding-bottom: 1.65rem;
  font-weight: bold;
}

.sideNav dd {
  background-color: #f4f4f4;
  border-bottom: 1px solid #dcdcdc;
  cursor: pointer;
  line-height: 1.4;
  padding: 0.85em 0.85em;
  padding: 0.85rem 0.85rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.sideNav dd:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #fff;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  -ms-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}

.sideNav dd.active:before {
  background-color: #e4e4e4;
}

.sideNav dd.active:before,
.no-csstransitions .sideNav dd:hover:before {
  left: 0;
}

@media screen and (min-width:641px) {
  .sideNav dd:hover:before {
    left: 0;
  }
}

@media screen and (max-width:640px) {
  .no-csstransitions .sideNav dd:hover:before {
    left: -100%;
  }
}

.sideNav dd:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 0.75em;
  right: 0.75rem;
  top: 50%;
  margin-top: -4px;
  border-left: 5px solid #0d579a;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.sideNav dd.active {
  border-left: 2px solid #0d579a;
}

.sideNav dd a {
  position: relative;
  z-index: 1;
}

.sideNav dd a,
.sideNav dd a:visited,
.sideNav dd:hover a,
.sideNav dd a:hover {
  color: inherit;
  text-decoration: none;
}


@media screen and (max-width:640px) {
  .sideNav dl {
    padding-bottom: 0;
  }

  .sideNav .ctBtnList {
    display: none;
  }

  .sideNav dt {
    padding: 1.5rem 1rem;
  }

  .sideNav dd {
    padding: 1.25rem 1rem;
  }

  .sideNav dd:after {
    right: 1rem;
  }
}


/*-----------------------------------------------------------------------------------
  空き情報・パンフ
-----------------------------------------------------------------------------------*/

.ctBtnList {
  list-style: none;
  box-sizing: border-box;
  font-size: 112.5%;
}

.ctBtnList li {
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  box-sizing: border-box;
}

.ctBtnList li:first-child {
  margin-top: 0;
}

.ctBtnList li a {
  display: block;
  position: relative;
  padding: 25px 15px;
  border: 1px solid #aacae5;
}

.ctBtnList li span {
  position: relative;
  z-index: 2;
}

.ctBtnList li a,
.ctBtnList li a:visited {
  color: #0d579a;
  text-decoration: none;
}

.lte-ie8 .ctBtnList li:hover a,
.lte-ie8 .ctBtnList li a:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width:641px) {

  .ctBtnList li:hover a,
  .ctBtnList li a:hover {
    color: #fff;
    text-decoration: none;
  }
}

@media screen and (max-width:640px) {

  .lte-ie8 .ctBtnList li:hover a,
  .lte-ie8 .ctBtnList li a:hover {
    color: #0d579a;
    text-decoration: none;
  }
}

.ctBtnList li span:before {
  content: "";
  width: 100%;
  height: 70px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  margin-bottom: 0.75em;
  z-index: 3;
  position: relative;
}

.ctBtnList li.cal span:before {
  background-image: url(../image/top/btn-ic-cal.png);
}

.ctBtnList li.pamph span:before {
  background-image: url(../image/top/btn-ic-pamph.png);
}

.ctBtnList li.access span:before {
  background-image: url(../image/top/btn-ic-access.png);
}

.ctBtnList li.movie span:before {
  background-image: url(../image/top/btn-ic-movie.png);
}

@media screen and (min-width:641px) {
  .ctBtnList li.cal:hover span:before {
    background-image: url(../image/top/btn-ic-cal_on.png);
  }

  .ctBtnList li.pamph:hover span:before {
    background-image: url(../image/top/btn-ic-pamph_on.png);
  }

  .ctBtnList li.access:hover span:before {
    background-image: url(../image/top/btn-ic-access_on.png);
  }

  .ctBtnList li.movie:hover span:before {
    background-image: url(../image/top/btn-ic-movie_on.png);
  }
}

.no-backgroundsize .ctBtnList li.cal span:before {
  background-image: url(../image/top/btn-ic-cal_s.png);
}

.no-backgroundsize .ctBtnList li.pamph span:before {
  background-image: url(../image/top/btn-ic-pamph_s.png);
}

.no-backgroundsize .ctBtnList li.access span:before {
  background-image: url(../image/top/btn-ic-access_s.png);
}

.no-backgroundsize .ctBtnList li.movie span:before {
  background-image: url(../image/top/btn-ic-movie_s.png);
}

.no-backgroundsize .ctBtnList li.cal:hover span:before {
  background-image: url(../image/top/btn-ic-cal_s_on.png);
}

.no-backgroundsize .ctBtnList li.pamph:hover span:before {
  background-image: url(../image/top/btn-ic-pamph_s_on.png);
}

.no-backgroundsize .ctBtnList li.access:hover span:before {
  background-image: url(../image/top/btn-ic-access_s_on.png);
}

.no-backgroundsize .ctBtnList li.movie:hover span:before {
  background-image: url(../image/top/btn-ic-movie_s_on.png);
}

.ctBtnList li:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #148cc8;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transition: top ease 0.25s;
  -moz-transition: top ease 0.25s;
  -ms-transition: top ease 0.25s;
  -o-transition: top ease 0.25s;
  transition: top ease 0.25s;
  z-index: 1;
}

.no-csstransitions .ctBtnList li:hover:after {
  display: none;
}

.preload .ctBtnList li:after {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.ctBtnList li .pc-none {
  display: none;
}

@media screen and (min-width:641px) {
  .ctBtnList li:hover:after {
    top: 0;
  }
}

@media screen and (max-width:640px) {
  .ctBtnList {
    padding: 0 0.5rem;
    font-size: 90%;
  }

  .ctBtnList li {
    width: 50%;
    float: left;
    padding: 0 0.5rem;
    margin-top: 20px;
  }

  .ctBtnList li:first-child,
  .ctBtnList li:nth-child(2) {
    margin-top: 0;
  }

  .ctBtnList li a {
    padding: 1.5rem 1rem;
  }

  .ctBtnList li a,
  .ctBtnList li a:visited,
  .ctBtnList li:hover a,
  .ctBtnList li a:hover {
    color: #0d579a;
    text-decoration: none;
  }

  .ctBtnList li:after {
    display: none;
  }
}


/*----------------------------------------------------------------------------------------------------

  4.  footer
  
----------------------------------------------------------------------------------------------------*/

footer {
  position: relative;
  background-color: #0a3764;
  color: #fff;
  padding: 20px;
  font-size: 93.8%;
  text-align: left;
}

.ft_qsc {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
}

.ft_ad,
.ft_tel {
  text-align: left;
  line-height: 1.5;
}

.ft_ad {
  padding-top: 0.25em;
}

.ft_ad .pc-none {
  display: none;
}

.ft_copy {
  position: absolute;
  right: 20px;
  bottom: 25px;
}

@media screen and (max-width:640px) {
  footer {
    padding: 1.5rem 1rem;
  }

  .ft_ad {
    padding-top: 0.5rem;
  }

  .ft_tel {
    padding: 0.5rem 0;
  }

  .ft_copy {
    position: relative;
    right: inherit;
    bottom: inherit;
  }

  .ft_ad .pc-none {
    display: inherit;
  }

  .ft_copy .sp-none {
    display: none;
  }
}


/*-----------------------------------------------------------------------------------
  page top
-----------------------------------------------------------------------------------*/

html.openNav_on .page-top {
  z-index: 0;
}

.page-top {
  display: none;
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: #fff;
  text-align: center;
  font-size: 62.5%;
  font-family: "Roboto Condensed";
  font-weight: 300;
}

.page-top.fixed {
  position: fixed;
  right: 0;
  bottom: 0 !important;
  top: inherit;
}

.page-top a {
  width: 70px;
  height: 70px;
  display: block;
  position: relative;
}

.page-top a,
.page-top a:visited,
.page-top a:hover {
  color: #0d579a;
  text-decoration: none;
}

.page-top span {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 15px;
  text-align: center;
}

.page-top span:before {
  content: "";
  display: block;
  position: absolute;
  top: -14px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-left: 1px solid #0d579a;
  border-top: 1px solid #0d579a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.preload .page-top span:before {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

@media screen and (min-width:641px) {
  .cssanimations .page-top:hover span:before {
    top: -18px;
  }
}

.lte-ie8 .page-top span:before {
  border: none;
  background: url(../image/icon/up-blue.png?v=1) no-repeat top center;
  top: -25px;
  height: 35px;
}

@media screen and (max-width:640px) {
  .page-top {
    display: inherit !important;
    width: 100%;
    height: 70px;
    position: relative !important;
    right: inherit !important;
    bottom: inherit !important;
    top: inherit !important;
    text-align: center;
  }

  .page-top a {
    width: 100%;
    height: 100%;
  }
}

@media print {
  .page-top {
    display: none !important;
  }
}


/*----------------------------------------------------------------------------------------------------

  99. parts
  
----------------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------
  arrow
-----------------------------------------------------------------------------------*/

.l-next,
.l-prev {
  display: inline-block;
  position: relative;
}

.l-next:before,
.l-prev:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  border-right-style: solid;
  border-bottom-style: solid;
  border-right-width: 1px;
  border-bottom-width: 1px;
  -webkit-transition: background-color ease 0.1s;
  -moz-transition: background-color ease 0.1s;
  -ms-transition: background-color ease 0.1s;
  -o-transition: background-color ease 0.1s;
  transition: background-color ease 0.1s;
}

.preload .l-next:before,
.preload .l-prev:before {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

.l-next:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 0.25em;
}

.l-prev:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 0.25em;
}

.lte-ie8 .l-next:before,
.lte-ie8 .l-prev:before {
  display: none;
}


/*-----------------------------------------------------------------------------------
  button
-----------------------------------------------------------------------------------*/

.preload .l-btn,
.preload .l-btn * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  animation: none !important;
}

.l-btn {
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  margin: 0;
  outline: none;
  text-align: center;
  text-decoration: none;
  font-size: inherit;
  cursor: pointer;
  line-height: 1;
  padding: 0.75em 1.5em;
  position: relative;
  -webkit-transition: background ease 0.2s, border ease 0.2s, color ease 0.1s;
  -moz-transition: background ease 0.2s, border ease 0.2s, color ease 0.1s;
  -ms-transition: background ease 0.2s, border ease 0.2s, color ease 0.1s;
  -o-transition: background ease 0.2s, border ease 0.2s, color ease 0.1s;
  transition: background ease 0.2s, border ease 0.2s, color ease 0.1s;
}

.preload .l-btn {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}

.l-btnS {
  padding: 0.75em 1em;
  font-size: 87.5%;
}

.l-btnM {
  padding: 0.75em 2em;
  font-size: 112.5%;
}

.l-btnL {
  padding: 0.75em 2em;
  font-size: 125%;
}

@media screen and (max-width:640px) {
  .l-btnS {
    padding: 1rem 1.5rem;
  }

  .l-btnM {
    padding: 1rem 2.5rem;
  }

  .l-btnL {
    padding: 1rem 2.5rem;
  }
}

.l-btn .l-next:before,
.l-btn .l-prev:before {
  width: 0.4em;
  height: 0.4em;
  margin-top: -0.25em;
}

.l-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  -webkit-transition: left ease 0.2s;
  -moz-transition: left ease 0.2s;
  -ms-transition: left ease 0.2s;
  -o-transition: left ease 0.2s;
  transition: left ease 0.2s;
}

.l-btnS:before {
  -webkit-transition: left ease 0.25s;
  -moz-transition: left ease 0.25s;
  -ms-transition: left ease 0.25s;
  -o-transition: left ease 0.25s;
  transition: left ease 0.25s;
}

@media screen and (min-width:641px) {
  .l-btn:hover:before {
    left: 0;
  }
}

/* 矢印
=====================================================================================*/

.l-btn .l-next {
  padding-right: 1.5em;
  padding-left: 0.75em;
}

.l-btn .l-prev {
  padding-left: 1.5em;
  padding-right: 0.75em;
}

.lte-ie8 .l-btn .l-next,
.lte-ie8 .l-btn .l-prev {
  padding-left: 0;
  padding-right: 0;
}


/* カラー
=====================================================================================*/

.l-btn--dblue {
  background-color: #0a3764;
  color: #fff;
}

.l-btn--dblue:before {
  background-color: #148cc8;
}

.l-btn--dblue .l-next:before,
.l-btn--dblue .l-prev:before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.l-btn--dblue,
.l-btn--dblue:visited,
.l-btn--dblue:hover {
  color: #fff;
  background-color: #0a3764;
}


.l-btn--blueLine {
  border: 1px solid #0d579a;
  background-color: #fff;
  color: #0d579a;
}

.l-btn--blueLine:before {
  background-color: #0d579a;
}

.l-btn--blueLine .l-next:before,
.l-btn--blueLine .l-prev:before {
  border-right-color: #0d579a;
  border-bottom-color: #0d579a;
}

.l-btn--blueLine,
.l-btn--blueLine:visited,
.l-btn--blueLine:hover {
  color: #0d579a;
}

@media screen and (min-width:641px) {

  .l-btn--blueLine:hover .l-next:before,
  .l-btn--blueLine:hover .l-prev:before {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }

  .l-btn--blueLine:visited,
  .l-btn--blueLine:hover {
    color: #fff;
    background-color: #0d579a;
  }
}


/*-----------------------------------------------------------------------------------
  table
-----------------------------------------------------------------------------------*/

.l-tbl {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

.l-tbl th,
.l-tbl td {
  font-weight: normal;
  border: 1px solid #94bcde;
  box-sizing: border-box;
  padding: 0.85em 1em;
  line-height: 1.5;
}

.l-tbl th {
  background-color: #e0ecf6;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
}

.l-tbl tr.md th {
  background-color: #669ed0;
  color: #fff;
  border-top-color: #669ed0;
  border-bottom-color: #669ed0;
}

.l-tbl tr.md th:first-child {
  border-left-color: #669ed0;
}

.l-tbl tr.md th:last-child {
  border-right-color: #669ed0;
}

@media screen and (max-width:640px) {

  .l-tbl th,
  .l-tbl td {
    padding: 0.85rem;
  }

  .l-tbl .sp-kai {
    display: block;
  }
}


/*-----------------------------------------------------------------------------------

  ファイルダウンロードボタン
  
-----------------------------------------------------------------------------------*/

.l-fileDL {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #e0ecf6;
  padding: 15px;
}

.l-fileDL li {
  display: block;
  width: calc(50% - 5px);
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.l-fileDL li:nth-child(even) {
  margin-left: 10px;
}

a.fileIc {
  display: flex;  
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  box-sizing: border-box;
  padding: 1rem 1rem 1rem 55px;
  position: relative;
  line-height: 1.4;
}

a.fileIc,
a.fileIc:visited {
  color: #0d579a;
  text-decoration: none;
}

a.fileIc:hover {
  color: #148cc8;
  text-decoration: underline;
}

a.fileIc:before {
  content: "";
  width: 26px;
  height: 34px;
  position: absolute;
  left: 1em;
  left: 1rem;
  top: 50%;
  top: 50%;
  margin-top: -17px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

a.fileIc.pdf:before {
  background-image: url(../image/icon/pdf.png);
}

a.fileIc.doc:before {
  background-image: url(../image/icon/doc.png);
}

a.fileIc.xls:before {
  background-image: url(../image/icon/xls.png);
}

a.fileIc.ppt:before {
  background-image: url(../image/icon/ppt.png);
}

.no-backgroundsize a.fileIc.pdf:before {
  background-image: url(../image/icon/pdf_s.png);
}

.no-backgroundsize a.fileIc.doc:before {
  background-image: url(../image/icon/doc_s.png);
}

.no-backgroundsize a.fileIc.xls:before {
  background-image: url(../image/icon/xls_s.png);
}

.no-backgroundsize a.fileIc.ppt:before {
  background-image: url(../image/icon/ppt_s.png);
}

@media screen and (max-width:640px) {
  .l-fileDL {
    padding: 0.5rem;
  }

  .l-fileDL li {
    width: 100%;
    float: none;
    padding: 0 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .l-fileDL li:nth-child(even) {
    margin-left: 0;
  }

  a.fileIc {
    padding: 1.25rem 1rem 1.25rem 65px;
  }

  a.fileIc:before {
    width: 32px;
    height: 42px;
    margin-top: -21px;
  }
}


/* 単体 ----------------------------------------*/

.ic-file {
  content: "";
  display: inline-block;
  width: 20px;
  height: 26px;
  margin-right: 10px;
  margin-top: -0.15em;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ic-file.pdf {
  background-image: url(../image/icon/pdf.png);
}

.ic-file.doc {
  background-image: url(../image/icon/doc.png);
}

.ic-file.xls {
  background-image: url(../image/icon/xls.png);
}

.ic-file.ppt {
  background-image: url(../image/icon/ppt.png);
}

.ic-file.pdf {
  background-image: url(../image/icon/pdf_s.png);
}

.ic-file.doc.doc {
  background-image: url(../image/icon/doc_s.png);
}

.ic-file.xls {
  background-image: url(../image/icon/xls_s.png);
}

.ic-file.ppt {
  background-image: url(../image/icon/ppt_s.png);
}


/*-----------------------------------------------------------------------------------

  ブログパターン
  
-----------------------------------------------------------------------------------*/

.glog {
  margin-bottom: 30px;
  text-align: left;
}

.glog:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.glog ul,
.glog ol {
  list-style: inherit;
  margin-left: 1.25em;
  margin-left: 1.25rem;
}

.glog ol {
  list-style: decimal;
}

.glog-txt {
  box-sizing: border-box;
  word-break: break-all;
}

.glog-image-left .glog-txt {
  float: right;
}

.glog-image-right .glog-txt {
  float: left;
}

.glog-image-left .glog-img,
.glog-image-right .glog-img {
  display: inline-block;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.glog-image-left .glog-img {
  float: left;
  margin-right: 20px;
}

.glog-image-right .glog-img {
  float: right;
  margin-left: 20px;
}

.glog-image-center .glog-img {
  display: block;
  text-align: center;
  margin-bottom: 25px;
}

.glog-img_cp {
  display: block;
  font-size: 93.8%;
  padding-top: 0.5em;
  padding-top: 0.5rem;
  line-height: 1.4;
}

.glog .datafile {
  margin-bottom: 15px;
  display: inline-block;
}

.glog .datafile img {
  vertical-align: middle;
  margin-right: 10px;
}

.glog-in {
  padding-left: 1em;
  padding-right: 1em;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width:640px) {
  .glog {
    margin-bottom: 2rem;
  }
}


/* 見出し ----------------------------------------*/

.lte-ie8 .glog .l-headline {
  font-size: 135%;
  padding: 0.65em 0.75em;
}

.lte-ie8 .glog .l-headlineS-bg {
  font-size: 125%;
  padding: 0.55em 0.75em;
}

.lte-ie8 .glog .l-headlineS-line {
  font-size: 125%;
}

@media screen and (min-width:641px) {
  .glog .l-headline {
    font-size: 135%;
    padding: 0.65rem 1rem;
  }

  .glog .l-headlineS-bg {
    font-size: 125%;
    padding: 0.75rem 1rem;
  }

  .glog .l-headlineS-line {
    font-size: 125%;
  }
}


/* file icon ----------------------------------------*/

.glog a.fileIc {
  display: inline-block;
  background-color: none;
  padding: 0.5em 0 0.5em 30px;
  padding: 0.5rem 0 0.5rem 30px;
  position: relative;
}

.glog a.fileIc:before {
  width: 20px;
  height: 26px;
  margin-top: -13px;
  left: 0;
}

.glog a.fileIc,
.glog a.fileIc:visited {
  color: #148cc8;
  text-decoration: underline;
}

.glog a.fileIc:hover {
  color: #41b4eb;
  text-decoration: none;
}

.no-backgroundsize .glog a.fileIc.fileIc.pdf:before {
  background-image: url(../image/icon/pdf_ss.png);
}

.no-backgroundsize .glog a.fileIc.fileIc.doc:before {
  background-image: url(../image/icon/doc_ss.png);
}

.no-backgroundsize .glog a.fileIc.fileIc.xls:before {
  background-image: url(../image/icon/xls_ss.png);
}

.no-backgroundsize .glog a.fileIc.fileIc.ppt:before {
  background-image: url(../image/icon/ppt_ss.png);
}


/*-----------------------------------------------------------------------------------
  pagination
-----------------------------------------------------------------------------------*/

.glog-pagination {
  text-align: center;
}

.glog-pagination ul {
  list-style: none;
  margin-left: -3px;
}

.glog-pagination li {
  float: left;
  display: inline-block;
  margin: 3px;
  font-size: 87.5%;
}

.glog-pagination li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.glog-pagination li a {
  display: block;
}

.glog-pagination li a,
.glog-pagination li a:visited {
  color: #5f646e;
  text-decoration: none;
}

.glog-pagination li span:hover,
.glog-pagination li span:hover a,
.glog-pagination li a:hover {
  color: #fff;
}

.glog-pagination li span {
  line-height: 1;
  width: 2em;
  height: 2em;
  padding-top: 0.5em;
  display: block;
  color: #0d579a;
  border: 1px solid #0d579a;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-transition: background ease 0.1s, border ease 0.1s;
  -moz-transition: background ease 0.1s, border ease 0.1s;
  -ms-transition: background ease 0.1s, border ease 0.1s;
  -o-transition: background ease 0.1s, border ease 0.1s;
  transition: background ease 0.1s, border ease 0.1s;
}

.glog-pagination li span.active:hover,
.glog-pagination li span.active {
  color: #fff;
  background-color: #0d579a;
  border-color: #0d579a;
}

.glog-pagination li span:hover {
  color: #fff;
  background-color: #669ed0;
  border-color: #669ed0;
}


/*-----------------------------------------------------------------------------------
  非公開
-----------------------------------------------------------------------------------*/

.hnone-box {
  text-align: center;
  box-sizing: border-box;
  padding: 1em;
  padding: 1rem;
  color: #c82d32;
  border: 1px solid #d3575b;
}

.hnone-box b {
  font-size: 146.2%;
}