@charset "utf-8";

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

　　Base Setting

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


/*  Overall Setting
--------------------------------------------- */

html,
body {
  width: 100%;
  height: 100%;
}
.gs-title{
   height:25px;
}
body {
  font-family: "segoe UI","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.5em;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}


/*  Color Setting
-------------------------- */

/* -- Common Color -- */

body {
  color: #000;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: inherit;
}

/* -- Custom Color -- */

/* Default */
.txt-default,
a.txt-default,
a.txt-default:hover,
a.txt-default:focus {
  color: #000;
}

.bg-default {
  background-color: #000;
}

.txt-default-light,
a.txt-default-light,
a.txt-default-light:hover,
a.txt-default-light:focus {
  color: #ccc;
}

.bg-default-light {
/*  background-color: #f4f4f4;*/
  background-color: #dddddd;
}

.txt-default-dark,
a.txt-default-dark,
a.txt-default-dark:hover,
a.txt-default-dark:focus {
  color: #000;
}

.bg-default-dark {
  background-color: #000;
}

/* Base */
.txt-base,
a.txt-base,
a.txt-base:hover,
a.txt-base:focus {
  color: #666;
}

.bg-base {
  background-color: #666;
}

.txt-base-light,
a.txt-base-light,
a.txt-base-light:hover,
a.txt-base-light:focus {
  color: #888;
}

.bg-base-light {
  background-color: #888;
}

.txt-base-dark,
a.txt-base-dark,
a.txt-base-dark:hover,
a.txt-base-dark:focus {
  color: #333;
}

.bg-base-dark {
  background-color: #333;
}

/* Primary */
.txt-primary,
a.txt-primary,
a.txt-primary:hover,
a.txt-primary:focus {
  color: #0083b6;
}

.bg-primary {
  background-color: #0083b6;
}

.txt-primary-light,
a.txt-primary-light,
a.txt-primary-light:hover,
a.txt-primary-light:focus {
}

.bg-primary-light {
  background-color: #f0f8fb;
}

.txt-primary-dark,
a.txt-primary-dark,
a.txt-primary-dark:hover,
a.txt-primary-dark:focus {
  color: #39546e;
}

.bg-primary-dark {
  background-color: #38546f;
}

/* Accent */
.txt-accent,
a.txt-accent,
a.txt-accent:hover,
a.txt-accent:focus {
  color: #d80000;
}

.bg-accent {
  background-color: #d80000;
}

.txt-accent-light,
a.txt-accent-light,
a.txt-accent-light:hover,
a.txt-accent-light:focus {
}

.bg-accent-light {
}

.txt-accent-dark,
a.txt-accent-dark,
a.txt-accent-dark:hover,
a.txt-accent-dark:focus {
}

.bg-accent-dark {
}

/* Sub */
.txt-sub,
a.txt-sub,
a.txt-sub:hover,
a.txt-sub:focus {
  color: #ff7f00;
}

.bg-sub {
  background-color: #ff7f00;
}

.txt-sub-light,
a.txt-sub-light,
a.txt-sub-light:hover,
a.txt-sub-light:focus {
}

.bg-sub-light {
  background-color: #fbf9f2;
}

.txt-sub-dark,
a.txt-sub-dark,
a.txt-sub-dark:hover,
a.txt-sub-dark:focus {
}

.bg-sub-dark {
}

/* -- Form Color -- */

.form-control,
.search-input {
  border-radius: 0;
  border: 1px solid #ccc;
  box-shadow: none !important;
  color: #333;
}

.form-control:focus,
.search-input:focus {
  border-color: #ccc;
  outline: 0;
}


/* -- Placeholder Color -- */

:placeholder-shown {
  color: #888;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}


/*  Switch Display
-------------------------- */

.media-sp {
  display: none;
}


/*  Link Setting
-------------------------- */

a {
  text-decoration: none;
}

a,
a img {
  transition: opacity .3s ease-in-out,color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
}

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


/*  Form Setting
-------------------------- */

.form-control {
  height: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select-input,
textarea {
  border-radius: 0;
  padding: 5px;
  font-size: .9em;
  font-family: "segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 8px;
  padding: 0;
  font-size: 1.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  transition: border-color .3s ease-in-out;
}

select {
  min-width: 200px;
  height: 30px;
  padding: 0;
}


/*  Container Setting
--------------------------------------------- */

#container {
  position: relative;
  width: 100% !important;
  min-width: 1300px;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  text-align: center;
}

#container.gt768 {
  position: relative !important;
  right: auto !important;
}

.inner {
  width: 1300px;
  margin: 0 auto;
  padding-right: 50px;
  padding-left: 50px;
  text-align: left;
}


/*  Header Setting
--------------------------------------------- */

#header {
  min-height: 0;
  color: #fff;
}

/* ------ Blockskip ------ */

#blockskip {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  text-align: left;
}

#blockskip a {
  overflow: hidden;
  width: 1px;
  height: 1px;
  transition: opacity .4s ease-in-out;
  color: transparent;
  text-decoration: none;
}

#blockskip .focus {
  overflow: visible;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  z-index: 2000;
  width: auto;
  height: 35px;
  padding: 5px 15px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  line-height: 22px;
  letter-spacing: 0.5px;
}

/* ------ Site Logo ------ */

#logo {
  position: absolute;
  top: 39px;
  left: 8px;
}

#logo h1 {
  margin: 0;
}

#logo h1 a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}

/* -------- Site Menu -------- */

#sitemenu {
  font-weight: bold;
}

/* -- Menu Button -- */

#sitemenu #menu-btn {
  display: none;
}

/* -- Menu Content -- */

#sitemenu #menu {
}

/* ------ Search ------ */

#menu-search {
  position: absolute;
  top: 435px;
  right: 0;
  left: 0;
}

#menu-search:before,
#menu-search .search-inner,
#menu-search .search-inner:before {
  background: #3a546d;
}

#menu-search:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  content: "";
}

#menu-search .inner {
  overflow: hidden;
  text-align: right;
  font-size: .9em;
}

#menu-search .search-inner {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  width: 900px;
  padding: 10px 0 15px 10px;
}

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

  #menu-search .search-inner {
    padding-right: 15px;
  }

}

#menu-search .search-inner:before {
  position: absolute;
  top: -5px;
  left: -22px;
  bottom: -5px;
  width: 85px;
  transform: rotate(21deg) skewY(-21deg);
  content: "";
}

#menu-search dl {
  display: table;
  width: 100%;
}

#menu-search dt,
#menu-search dd {
  display: table-cell;
  vertical-align: middle;
  padding-top: 45px;
  line-height: 1.4;
}

#menu-search dt {
  position: relative;
  width: 60%;
  padding-right: 30px;
  text-align: left;
  letter-spacing: -.02em;
  white-space: nowrap;
}

#menu-search dt .txt-sm {
  padding-left: 10px;
}

#menu-search dd {
  width: 40%;
}

/* ------ Search obama------ */

#menu-search_obama {
  position: absolute;
  top: 435px;
  right: 0;
  left: 0;
}

#menu-search_obama:before,
#menu-search_obama .search-inner,
#menu-search_obama .search-inner:before {
  background: #337ab7;
}
#menu-search.obama:before,
#menu-search.obama .search-inner,
#menu-search.obama .search-inner:before {
  background: #337ab7;
}

#menu-search_obama:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  content: "";
}

#menu-search_obama .inner {
  overflow: hidden;
  text-align: right;
  font-size: .9em;
}

#menu-search_obama .search-inner {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  width: 900px;
  padding: 10px 0 15px 10px;
}

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

  #menu-search_obama .search-inner {
    padding-right: 15px;
  }

}

#menu-search_obama .search-inner:before {
  position: absolute;
  top: -5px;
  left: -22px;
  bottom: -5px;
  width: 85px;
  transform: rotate(21deg) skewY(-21deg);
  content: "";
}

#menu-search_obama dl {
  display: table;
  width: 100%;
}

#menu-search_obama dt,
#menu-search_obama dd {
  display: table-cell;
  vertical-align: middle;
  padding-top: 45px;
  line-height: 1.4;
}

#menu-search_obama dt {
  position: relative;
  width: 60%;
  padding-right: 30px;
  text-align: left;
  letter-spacing: -.02em;
  white-space: nowrap;
}

#menu-search_obama dt .txt-sm {
  padding-left: 10px;
}

#menu-search_obama dd {
  width: 40%;
}

/* ------ Global Navi ------ */

#gnav {
  position: absolute;
  top: 380px;
  right: 0;
  left: 0;
}

#gnav,
#gnav ul {
  height: 97px;
}

#gnav:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
}

#gnav:before,
#gnav ul,
#gnav ul:before {
  background: #0084b4;
}

#gnav .menu-list {
  overflow: hidden;
  font-size: 1.05em;
  line-height: 1.25;
}

#gnav ul {
  position: relative;
  display: table;
  width: auto;
  margin-left: -6px;
  letter-spacing: -.40em;
}

#gnav ul:before {
  position: absolute;
  top: -4px;
  right: -22px;
  bottom: -4px;
  width: 85px;
  transform: rotate(23deg) skewY(-23deg);
  content: "";
}

#gnav li {
  display: table-cell;
  position: relative;
  min-width: 132px;
  padding: 0 6px;
  letter-spacing: normal;
  vertical-align: middle;
  text-align: center;
}

#gnav li.btn-wide {
  /* width: 165px; */
  min-width: 0;
}

#gnav li:before {
  position: absolute;
  top: 37px;
  left: 0;
  width: 1px;
  height: 22px;
  background: #c0e1ec;
  transform: rotate(21deg);
  content: "";
}

#gnav li:first-child:before {
  display: none;
}

#gnav li:hover,
#gnav li:focus {
  cursor: pointer;
}

#gnav li a {
  display: block;
  position: relative;
  z-index: 200;
  padding: 10px;
  text-decoration: none;
}

#gnav li a:hover,
#gnav li a:focus {
  opacity: .7;
}

#gnav li a span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
}

/* ------ Global Navi obama------ */

#gnav_obama {
  position: absolute;
  top: 380px;
  right: 0;
  left: 0;
}

#gnav_obama,
#gnav_obama ul {
  height: 97px;
}

#gnav_obama:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
}

#gnav_obama:before,
#gnav_obama ul,
#gnav_obama ul:before {
  background: #3b3a6d;
}
#gnav.obama:before,
#gnav.obama ul,
#gnav.obama ul:before {
  background: #3b3a6d;
}

#gnav_obama .menu-list {
  overflow: hidden;
  font-size: 1.05em;
  line-height: 1.25;
}

#gnav_obama ul {
  position: relative;
  display: table;
  width: auto;
  margin-left: -6px;
  letter-spacing: -.40em;
}

#gnav_obama ul:before {
  position: absolute;
  top: -4px;
  right: -22px;
  bottom: -4px;
  width: 85px;
  transform: rotate(23deg) skewY(-23deg);
  content: "";
}

#gnav_obama li {
  display: table-cell;
  position: relative;
  min-width: 132px;
  padding: 0 6px;
  letter-spacing: normal;
  vertical-align: middle;
  text-align: center;
}

#gnav_obama li.btn-wide {
  width: 165px;
  min-width: 0;
}

#gnav_obama li:before {
  position: absolute;
  top: 37px;
  left: 0;
  width: 1px;
  height: 22px;
  background: #c0e1ec;
  transform: rotate(21deg);
  content: "";
}

#gnav_obama li:first-child:before {
  display: none;
}

#gnav_obama li:hover,
#gnav_obama li:focus {
  cursor: pointer;
}

#gnav_obama li a {
  display: block;
  position: relative;
  z-index: 200;
  padding: 10px;
  text-decoration: none;
}

#gnav_obama li a:hover,
#gnav_obama li a:focus {
  opacity: .7;
}

#gnav_obama li a span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
}

/* ------ User Navi ------ */

#usernav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#usernav .inner {
}

/* ---- Link List ---- */

#usernav .link-list {
  position: absolute;
  top: 0;
}

#usernav .link-list li,
#usernav .link-list dl,
#usernav .link-list dt,
#usernav .link-list dd {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#usernav .link-list .btn {
  position: relative;
  z-index: 200;
  height: 30px;
  padding: 5px 12px;
  border: none;
  font-weight: bold;
}

#usernav .link-list .btn:before {
  display: none;
}

/* -- Link List 1 -- */

#usernav .link-list.link-1 {
  right: 0;
  padding-right: 10px;
}

#usernav .link-list.link-1 .btn {
  padding-top: 8px\9;
}

/* IE11 */
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #usernav .link-list.link-1 .btn {
    padding-top: 8px;
  }
}

/* -- Link Side -- */

#usernav .link-list.link-side {
  width: 46px;
  text-align: left;
}

#usernav .link-list.link-side li,
#usernav .link-list.link-side .btn {
  display: block;
  width: 100%;
  height: 100%;
}

#usernav .link-list.link-side li {
  height: 88px;
  background-color: #fff;
}

#usernav .link-list.link-side .btn {
  padding: 0;
  font-size: 0;
  background-repeat: no-repeat;
}

#usernav .link-list.link-side .btn:hover,
#usernav .link-list.link-side .btn:focus {
  opacity: .8;
}

#usernav .link-list.link-side .btn-1 .btn {
  background-position: 0 0;
}

#usernav .link-list.link-side .btn-2 .btn {
  background-position: 0 -88px;
}

#usernav .link-list.link-side .btn-3 .btn {
  background-position: 0 -176px;
}

#usernav .link-list.link-side .btn-4 .btn {
  background-position: 0 -264px;
}

#usernav .link-list.link-side .btn-5 .btn {
  background-position: 0 -352px;
}

/* -- Link List 2 / 3 -- */

#usernav .link-list.link-2,
#usernav .link-list.link-3 {
  position: fixed;
  z-index: 99999;
}

/* -- Link List 2 -- */

#usernav .link-list.link-2 {
  top: 150px;
  left: 0;
}

#usernav .link-list.link-2 .btn {
  border-top: 1px solid #fff;
  background-image: url(../imgs/index-link-side-left.png);
}

#usernav .link-list.link-2 .btn-1 .btn {
  border-top-width: 0;
  background-color: #538fc0;
}

#usernav .link-list.link-2 .btn-2 .btn {
  background-color: #227aad;
}

#usernav .link-list.link-2 .btn-3 {
  height: 75px;
}

#usernav .link-list.link-2 .btn-3 .btn {
  background-color: #005388;
}

#usernav .link-list.link-2 .btn-4 {
  height: 123px;
}

#usernav .link-list.link-2 .btn-4 .btn {
  background-position: 0 -250px;
  background-color: #003f6b;
}

#usernav .link-list.link-2 .btn-5 .btn {
  background-position: 0 -372px;
  background-color: #002245;
}

/* -- Link List 3 -- */

#usernav .link-list.link-3 {
  top: 150px;
  right: 0;
}

#usernav .link-list.link-3 .btn {
  background-image: url(../imgs/index-link-side-right2.png);
}

#usernav .link-list.link-3 .btn-1 .btn {
  background-color: #d81a60;
}

#usernav .link-list.link-3 .btn-2 .btn {
  background-color: #398e3b;
}

/* ---- User Navi List ---- */

#usernav .link-list.usernav {
  position: relative;
  top: auto;
  z-index: 100;
  width: 100%;
  background: rgba(255,255,255,.7);
  background: #fff\9;
  color: #000;
  font-size: .88em;
}

/* IE9 */
#usernav .link-list.usernav:not(:target) {
  background: rgba(255,255,255,.7) \9;
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav .link-list.usernav { 
    background: rgba(255,255,255,.7);
    margin-top: -2px;
  }
}

#usernav .link-list.usernav a:hover,
#usernav .link-list.usernav a:focus {
  text-decoration: none !important;
}

#usernav .link-list.usernav > ul {
  height: 30px;
  padding: 0 142px 0 0;
  text-align: right;
}

#usernav .link-list.usernav li {
  margin: 0 3px;
}

#usernav .link-list.usernav ul > li > a,
#usernav .link-list.usernav .menu-acc a {
  display: block;
  padding: 6px;
}

#usernav .link-list.usernav ul > li > a:hover,
#usernav .link-list.usernav ul > li > a:focus,
#usernav .link-list.usernav .menu-acc a:hover,
#usernav .link-list.usernav .menu-acc a:focus {
  color: #0083b6;
}

/* ------ Inverse ------ */

#usernav #inverse {
  position: relative;
}

#usernav #inverse a {
  display: block;
  position: relative;
  padding-right: 17px;
}

#usernav #inverse a:before {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  margin-top: -8px\9;
  margin-right: -5px;
  width: 8px;
  height: 8px;
  border-width: 0 0 2px 2px;
  border-style: solid;
  border-color: #0084b4;
  content: "";
}

/* IE11 */
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #usernav #inverse a:before {
    margin-top: -8px;
  }
}

/* Menu Accodion  */
#usernav #inverse .menu-acc-cont {
  display: block !important;
  position: absolute;
  left: 0;
  top: 30px;
  top: 27px\9;
  width: 100%;
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav #inverse .menu-acc-cont { 
    top: 27px;
  }
}

/* IE11 */
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #usernav #inverse .menu-acc-cont {
    top: 27px;
  }
}

/* Edge */
@supports (-ms-ime-align:auto) {
  #usernav #inverse .menu-acc-cont {
    top: 30px;
  }
}

/* Menu Accodion Content Inner */
#usernav #inverse .cont-inner {
  display: block !important;
  position: relative;
  overflow: hidden;
  transition: opacity .25s ease-in-out,height .5s ease-in-out,min-height .5s ease-in-out;
  opacity: 0;
  height: 0;
  min-height: 0;
}

#usernav #inverse .cont-inner.show {
  display: none !important \9;
  opacity: 1;
  height: auto;
  min-height: 100px;
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav #inverse .cont-inner.show { 
    display: block !important \9;
  }
}

#usernav #inverse .cont-inner ul {
  padding: 8px 5px;
  background: rgba(255,255,255,.7);
  background: #fff\9;
}

/* IE9 */
#usernav #inverse .cont-inner ul:not(:target) {
  background: rgba(255,255,255,.7) \9;
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav #inverse .cont-inner ul { 
    background: rgba(255,255,255,.7);
  }
}

#usernav #inverse .cont-inner ul li {
  display: block !important;
  width: auto;
  padding-top: 4px;
}

#usernav #inverse .cont-inner ul li:first-child {
  padding-top: 0;
}

#usernav #inverse .btn {
  display: block;
  width: auto;
  height: 24px;
  margin: 0;
  padding: 0 5px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #000;
  color: #000;
  font-size: .92em;
  font-weight: bold;
  font-weight: normal\9;
  line-height: 22px;
  line-height: 25px\9;
  text-align: center;
  text-decoration: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav #inverse .btn {
    line-height: 25px;
    font-weight: normal;
  }
}

#usernav #inverse #inverse-btn-black .btn {
  background: #000;
  color: #fff;
} 

#usernav #inverse .btn:hover,
#usernav #inverse .btn:focus {
  opacity: .5;
}

/* ------ Fontsize ------ */

#usernav #fontsize {
}

#usernav #fontsize li {
  margin: 0;
}

#usernav #fontsize li a {
  position: relative;
}

#usernav #fontsize li a:before {
  display: none\9;
  opacity: 0;
  transition: opacity .2s ease-in-out;
  position: absolute;
  top: 0;
  top: -3px\9;
  right: 1px;
  left: 1px;
  height: 4px;
  background: #0084b4;
  content: "";
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #usernav #fontsize li a:before { 
    top: -1px;
  }
}

/* Edge */
@supports (-ms-ime-align:auto) {
  #usernav #fontsize li a:before {
    top: 0;
  }
}

#usernav #fontsize .on a:before {
  display: block\9;
  opacity: 1;
}

#usernav #fontsize .on + li a:before {
  display: none\9;
  opacity: 0;
}

#usernav #fontsize .icn-arw {
  padding: 0 12px 0 0;
}

#usernav #fontsize .icn-arw:before {
  top: 50%;
  left: auto;
  right: -2px;
  margin: -3px 0 0;
  margin-top: -5px\9;
}

/* IE11 */
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #usernav #fontsize .icn-arw:before {
    margin-top: -5px;
  }
}



/*  Content Settings
--------------------------------------------- */

#content {
  overflow: hidden;
}

/*  Content Top
----------------------------------- */

#content-top {
}

/*  Content Main
----------------------------------- */

#content-main {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

#content-main > .inner {
  position: relative;
}

/*  Content Bottom
----------------------------------- */

#content-bottom {
}


/*  2 Column Setting
----------------------------------- */

/* ---- Main ---- */

#main {
  float: left;
  width: 860px;
}

/* ---- Side ---- */

#side {
  float: right;
  width: 288px;
}


/*  Footer Setting
--------------------------------------------- */

#footer {
  border-top: 1px dotted #333;
}

#footer .inner {
  padding-top: 35px;
  padding-bottom: 90px;
  background: url(/share/imgs/footer-bg-map.png) no-repeat 95% center;
}

#footer-top,
#footer-bottom {
  margin: 40px 0 0;
}

/* ---- Logo / Address ---- */

.footer-logo,
.footer-address,
.footer-address dl {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin-right: 30px;
}

/* ---- Logo ---- */

.footer-logo {
}

/* ---- Address ---- */

.footer-address {
  width: 60%;
  font-size: .95em;
  line-height: 1.7;
}

.footer-address dt {
  padding-bottom: 2px;
  font-size: 1.1em;
}

/* ---- Footer Navi ---- */

.footer-nav {
  overflow: hidden;
  max-width: 72%;
  margin-bottom: 15px;
  letter-spacing: -.02em;
  line-height: 1.6;
}

.footer-nav ul {
  margin-left: -10px;
  margin-bottom: 5px;
}

.footer-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}

.footer-nav li:before {
  margin-left: -3px;
  letter-spacing: -.05em;
  content: "｜";
}

/* ---- Page Top ---- */

#pagetop {
  display: none;
  position: fixed;
  top: auto !important;
  right: 20px;
  left: auto;
  bottom: 20px;
  z-index: 10;
  width: 42px;
  height: 42px;
  margin-left: 0;
  padding: 0 !important;
}

#pagetop a {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  overflow: hidden;
  transition: background .4s ease-in-out;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #111;
}

#pagetop a:before,
#pagetop a:after {
  transition: border-color .4s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -25px;
  margin-left: -18px;
  border-width: 18px;
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-radius: 100%;
  content: "";
}

#pagetop a:after {
  margin-top: -23px;
  border-bottom-color: #111;
}

#pagetop a:hover,
#pagetop a:focus {
  opacity: 1;
  background-color: #666;
}

#pagetop a:hover:after,
#pagetop a:focus:after {
  border-bottom-color: #666;
}

#pagetop a span {
  display: none;
}


/*  Overlay Setting
--------------------------------------------- */

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: rgba(0,0,0,.75);
}
/*Add 2018.10.15*/
#logo2 {
  position: absolute;
  left: 360px;
  top: 60px;
}