@charset "utf-8";

/* ****************************************************************************************************
   * 共用
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * フォント設定
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* アイコンフォント：_font/icomoon/demo.html にて一覧を閲覧可 */

@import url('../../_font/icomoon/style.css');

/* ゴシック体 */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: normal;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: bold;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Black.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Black.ttf') format('opentype');
}

/* 明朝体 */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: normal;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: bold;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Black.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Black.ttf') format('opentype');
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 全体
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body {
  min-width: 320px;
  color: #333;
  font: 12px/1.5 'NotoSansCJKjp', sans-serif;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

a {
  transition: color 0.3s ease-in-out 0.0s;
  color: #0064aa;
}

a:hover {
  color: #73b8e9;
  text-decoration: none;
}

/* -------------------------------------------------------------------------------------------------
   * レイアウト用
/* ---------------------------------------------------------------------------------------------- */

div.body {
  padding-left: 10px;
  padding-right: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  div.body {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

}

/* ****************************************************************************************************
   * ヘッダー
**************************************************************************************************** */

#header {
  font-family: 'NotoSerifCJKjp', serif;
}

#header div.header {
  padding: 10px 0;
  background-color: #f4f4f4;
}

#header div.body {
  width: 100%;
  max-width: 1366px;
  padding-right: 60px;
  display: table;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header {
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
  }

  #header div.body {
    padding-right: 20px;
    padding-left: 20px;
  }

  /* スクロール時 */

  #header div.header {
    transition: background-color 0.5s ease-in-out 0.0s;
  }

  body.scroll-active
  #header div.header {
    background-color: #fff;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ロゴ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.logo {
  vertical-align: top;
  display: table-cell;
}

#header div.logo a {
  color: inherit;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}

#header div.logo .item {
  letter-spacing: -0.4em;
}

#header div.logo .item > * {
  letter-spacing: normal;
}

#header div.logo .item img[src*="logo-image"] {
  width: 45px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  z-index: 1;
}

#header div.logo .item img[src*="logo-text"] {
  vertical-align: middle;
  display: inline-block;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header div.logo .item {
    min-width: 350px;
  }

  #header div.logo .item img[src*="logo-image"] {
    margin-right: 20px;
  }

  /* スクロール時 */

  #header div.logo .item img[src*="logo-text"] {
    transition:
      visibility 0.3s ease-in-out 0.0s,
      opacity 0.3s ease-in-out 0.0s;
    visibility: visible;
    opacity: 1;
  }

  body.scroll-active
  #header div.logo .item img[src*="logo-text"] {
    visibility: hidden;
    opacity: 0;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * コンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.contents {
  padding-left: 20px;
  vertical-align: middle;
  display: table-cell;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header div.contents {
    width: 70%;
  }

}

/* -------------------------------------------------------------------------------------------------
   * ナビ（お問い合わせ・資料請求）
/* ---------------------------------------------------------------------------------------------- */

#header div.contents ul.nav,
#header div.contents ul.nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header div.contents ul.nav {
  margin-left: auto;
  margin-right: -5px;
  letter-spacing: -0.4em;
  display: table;
  overflow: hidden;
}

#header div.contents ul.nav li {
  margin-right: 5px;
  margin-bottom: 5px;
  letter-spacing: normal;
  vertical-align: middle;
  display: inline-block;
}

#header div.contents ul.nav li a {
  width: 32px;
  height: 32px;
  color: #666;
  letter-spacing: -0.4em;
  text-decoration: none;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
}

#header div.contents ul.nav li a > * {
  letter-spacing: normal;
}

#header div.contents ul.nav li a i {
  font-size: 32px;
  vertical-align: middle;
  display: inline-block;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #header div.contents ul.nav {
    transition: margin-right 0.3s ease-in-out 0.0s;
    margin-right: -2em;
  }

  /* スクロール時 */

  body.scroll-active
  #header div.contents ul.nav {
    margin-right: -5px;
  }

  #header div.contents ul.nav li {
    transition: margin-right 0.3s ease-in-out 0.0s;
    margin-right: 2em;
  }

  /* スクロール時 */

  body.scroll-active
  #header div.contents ul.nav li {
    margin-right: 5px;
  }

  #header div.contents ul.nav li a {
    width: auto;
    height: auto;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    transition: color 0.3s ease-in-out 0.0s;
  }

  #header div.contents ul.nav li a:hover {
    color: #000;
  }

  #header div.contents ul.nav li a .text {
    vertical-align: middle;
    display: inline-block;
    transition:
      color 0.3s ease-in-out 0.0s,
      opacity 0.3s ease-in-out 0.3s,
      font-size 0.3s ease-in-out 0.0s;
    opacity: 1;
    font-size: 100%;
  }

  /* スクロール時 */

  body.scroll-active
  #header div.contents ul.nav li a .text {
    transition:
      opacity 0.3s ease-in-out 0.0s,
      font-size 0.3s ease-in-out 0.15s;
    opacity: 0;
    font-size: 0;
  }

  #header div.contents ul.nav li a i {
    margin-right: 0.125em;
    font-size: 20px;
    vertical-align: bottom;
    transition: font-size 0.3s ease-in-out 0.3s;
  }

  /* スクロール時 */

  body.scroll-active
  #header div.contents ul.nav li a i {
    margin-right: 0;
    font-size: 32px;
    vertical-align: middle;
  }

}

/* ****************************************************************************************************
   * グローバル ナビ
**************************************************************************************************** */

#global-nav {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #global-nav {
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background-color: #fff;
    display: block;
    transition: margin-top 0.3s ease-in-out 0.0s;
    margin-top: 0;
  }

  /* スクロール時 */
  
  body.scroll-active
  #global-nav.window-top {
    margin-top: -65px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
  }

  #global-nav div.body {
    width: 84%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 800px;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * リスト
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#global-nav ul,
#global-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#global-nav ul.list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: table;
}

#global-nav ul.list a {
  color: #666;
}

/* ----------------------------------------------------------------------------------------------------
   * 1階層目
/* ------------------------------------------------------------------------------------------------- */

#global-nav ul.list > li {
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}

#global-nav ul.list > li > a {
  padding: 15px 1em;
  line-height: 1;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out 0.0s;
}

#global-nav ul.list > li > a::after {
  content: '\e902';
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  z-index: -1;
  top: 50%;
  margin-top: -0.375em;
  transition:
    opacity 0.3s ease-in-out 0.0s,
    right 0.0s ease-in-out 0.3s;
  opacity: 0;
  right: 1.5em;
}

#global-nav ul.list > li > a:hover {
  color: #000;
}

#global-nav ul.list > li > a:hover::after {
  transition:
    opacity 0.3s ease-in-out 0.0s,
    right 0.2s ease-in-out 0.0s;
  opacity: 1;
  right: 0;
}

#global-nav ul.list > li.current > a {
  color: #0064aa;
}

#global-nav ul.list > li.current > a::after {
  content: '\e928';
  margin-top: 0;
  margin-left: -0.5em;
  transition: none;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  opacity: 1;
}

/* ****************************************************************************************************
   * メニュー
**************************************************************************************************** */

#menu {
  width: 60%;
  height: 100%;
  border-left: 1px solid #ddd;
  background-color: #f5f5f5;
  transition: all 0.5s ease-in-out 0.0s;
  position: fixed;
  top: 0;
  right: -60%;
  z-index: 2;
}

#menu a {
  color: inherit;
}

body.menu-active
#menu {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

/* :::::::: ブレイクポイント :::::::: */

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

  #menu {
    display: none;
    transition: none;
    right: -60%;
  }

  body.menu-active
  #menu {
    right: -60%;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ハンバーガー
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

div.drawer-trigger {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: -50px;
  transition: background-color 0.5s ease-in-out 0.0s;
  background-color: transparent;
}

body.scroll-active
div.drawer-trigger {
  background-color: #0064aa;
}

div.drawer-trigger i.icon {
  width: 30px;
  height: 0;
  display: block;
  border-bottom: 2px solid #555;
  position: absolute;
  left: 5px;
}

div.drawer-trigger i.icon::before,
div.drawer-trigger i.icon::after {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  border-bottom: 2px solid #555;
  position: absolute;
  left: 0;
}

body.scroll-active
div.drawer-trigger i.icon,

body.scroll-active
div.drawer-trigger i.icon::before,

body.scroll-active
div.drawer-trigger i.icon::after {
  border-color: #fff;
}

/* 上 */

div.drawer-trigger i.icon::before {
  transition:
    all 0.6s ease-in-out 0.0s,
    left 0.8s ease-in-out 0.0s;
  top: -9px;
}

body.menu-active
div.drawer-trigger i.icon::before {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
  left: -250%;
}

/* 中 */

div.drawer-trigger i.icon {
  margin-top: -1px;
  transition:
    all 0.6s ease-in-out 0.0s,
    left 0.8s ease-in-out 0.0s;
  opacity: 1;
  top: 50%;
}

body.menu-active
div.drawer-trigger i.icon {
  left: 200%;
}

/* 下 */

div.drawer-trigger i.icon::after {
  transition:
    all 0.6s ease-in-out 0.0s,
    left 0.8s ease-in-out 0.0s;
  top: 9px;
}

body.menu-active
div.drawer-trigger i.icon::after {
  -webkit-transform: translateY(-9px) rotate(315deg);
          transform: translateY(-9px) rotate(315deg);
  left: -250%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * サイトコンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#body {
  transition: transform 0.5s ease-in-out 0.0s;
  position: relative;
  z-index: 1;
}

body.menu-active
#body {
  -webkit-transform: translate(-60%, 0);
          transform: translate(-60%, 0);
}

/* :::::::: ブレイクポイント :::::::: */

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

  #body {
    transition: none;
  }

  body.menu-active
  #body {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 一覧
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul,
#menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu ul.list {
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 13px;
  border-left: 1px solid #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#menu ul.list li a {
  padding: 0.75em 1em 0.75em 1.5em;
  color: inherit;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

#menu ul.list li a::before,
#menu ul.list li a::after {
  color: #0064aa;
  line-height: 1;
  font-family: icomoon;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  z-index: -1;
  top: 50%;
  margin-top: -8px;
}

#menu ul.list a:hover img {
  opacity: 1.0;
}

#menu ul.list ul {
  overflow: hidden;
}

#menu ul.list ul li {
  transition:
    margin-top 1.0s ease-in 0.3s,
    opacity 0.4s ease-in 0.0s;
  margin-top: -100%;
  opacity: 0;
}

#menu ul li.active > ul > li {
  transition:
    margin-top 0.8s ease-out 0.0s,
    opacity 0.4s ease-out 0.7s;
  margin-top: 0;
  opacity: 1;
}

/* 現在表示中のページ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list li.current > a::before {
  content: '\e5ca';
  left: -1px;
}

/* スライドボタン :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list li.parent > a {
  padding-right: 2em;
}

#menu ul.list li.parent > a::after {
  content: '\e9d0';
  right: 5px;
}

#menu ul.list li.active > a {
  padding-right: 2em;
}

#menu ul.list li.active > a::after {
  content: '\e9cf';
  right: 5px;
}

/* 1階層目 :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list > li {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#menu ul.list > li ~ li {
  border-top: none;
}

/* 2階層目～ :::::::::::::::::::::::::::::::::::::::::::::::::: */

#menu ul.list ul {
  margin-left: 0;
  padding-left: 1.5em;
}

#menu ul.list ul li {
  list-style: none;
}

#menu ul.list ul li {
  border-top: 1px dotted #ddd;
}

/* ****************************************************************************************************
   * メイン
**************************************************************************************************** */

#main {
  padding-bottom: 30px;
  line-height: 1.5;
  font-size: 14px;
}

body.layout-lower
#main {
  padding: 20px 0 60px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #main {
    line-height: 1.6;
    font-size: 16px;
  }

  body.layout-lower
  #main {
    padding: 40px 0 80px;
  }

  body.layout-2column
  #main > div.body {
    width: 100%;
    display: table;
    table-layout: fixed;
  }

}

/* ****************************************************************************************************
   * メイン コンテンツ
**************************************************************************************************** */

body.layout-2column
#main-contents {
  margin-bottom: 50px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.layout-2column
  #main-contents {
    margin-bottom: 0;
    padding-right: 30px;
    vertical-align: top;
    display: table-cell;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * セクショニング
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower
#main-contents .section ~ .section {
  margin-top: 50px;
}

body.layout-lower
#main-contents .column ~ .column {
  margin-top: 30px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.layout-lower
  #main-contents .section ~ .section {
    margin-top: 80px;
  }

  body.layout-lower
  #main-contents .column ~ .column {
    margin-top: 40px;
  }

}

/* ****************************************************************************************************
   * サイド コンテンツ
**************************************************************************************************** */

/* :::::::: ブレイクポイント :::::::: */

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

  #side-contents {
    width: 250px;
    padding-top: 90px;
    vertical-align: top;
    display: table-cell;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * セクショニング
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#side-contents .section ~ .section {
  margin-top: 40px;
}

#side-contents .column ~ .column {
  margin-top: 20px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * さらに条件を絞り込む
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#side-condition div.section-body {
  padding: 10px 10px 20px;
  background-color: #eee;
}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

#side-condition .section-title {
  padding: 0.5em 1em;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'NotoSerifCJKjp', serif;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: rgba(0, 0, 0, 1.0);
}

#side-condition .section-title::before {
  content: '\e145';
  margin-top: -2px;
  margin-right: 0.25em;
  line-height: 1;
  font-family: icomoon;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

#side-condition .section-title::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: -5px;
  border: 10px solid transparent;
  border-top: 20px solid;
  display: block;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 50%;
  transition: border-top-color 0.3s ease-in-out 0.0s;
  border-top-color: rgba(0, 0, 0, 1.0);
}

/* -------------------------------------------------------------------------------------------------
   * 一覧
/* ---------------------------------------------------------------------------------------------- */

#side-condition dl.item,
#side-condition dl.item > * {
  margin: 0;
  padding: 0;
}

#side-condition dl.item {
  padding: 10px 0 10px;
  border-bottom: 1px solid #ddd;
}

#side-condition dl.item dt {
  margin-bottom: 5px;
  letter-spacing: 1px;
}

#side-condition dl.item label.radio {
  min-width: 7.8em;
  max-width: 12em;
}

#side-condition dl.item label.checkbox {
  min-width: 7.8em;
  max-width: 12em;
}

#side-condition dl.item label.select select {
  padding-right: 2em;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #side-condition dl.item dd {
    font-size: 14px;
  }

  #side-condition dl.item label.radio {
    min-width: 49%;
    padding-right: 4px;
  }

  #side-condition dl.item label.checkbox {
    min-width: 49%;
    padding-right: 4px;
  }

}

/* -------------------------------------------------------------------------------------------------
   * 検索ボタン
/* ---------------------------------------------------------------------------------------------- */

#side-condition div.form-button ul.list {
  margin-bottom: 0;
}

#side-condition div.form-button ul.list li {
  width: 100%;
  margin: 0;
  padding: 0;
}

#side-condition div.form-button ul.list li ~ li {
  margin-top: 10px;
}

#side-condition div.form-button .button-search-1 {
  width: 100%;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #side-condition div.form-button .button-search-1 {
    font-size: 1em;
  }

}

/* ****************************************************************************************************
   * フッター
**************************************************************************************************** */

#footer {
  position: relative;
  z-index: 1;
}

#footer div.body {
  max-width: 1366px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * フッター コンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.footer {
  padding: 30px 0;
  background-color: #f4f4f4;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.footer {
    padding: 40px 0;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 会社情報
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.company {
  padding: 15px 0;
  text-align: center;
}

#footer div.company div.body {
  letter-spacing: -0.4em;
}

#footer div.company div.body > * {
  letter-spacing: normal;
}

#footer div.company div.body::after {
  content: '.';
  display: block;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.company {
    padding: 20px 0;
    text-align: left;
  }

  #footer div.company div.body {
    width: 100%;
    display: table;
  }

  #footer div.company div.body::after {
    content: none;
  }

}

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

#footer div.company .logo {
  width: 80px;
  vertical-align: middle;
  display: inline-block;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.company .logo {
    width: 100px;
    display: table-cell;
  }

  #footer div.company .logo img {
    width: 100%;
  }

}

/* -------------------------------------------------------------------------------------------------
   * ナビ
/* ---------------------------------------------------------------------------------------------- */

#footer div.company ul.nav,
#footer div.company ul.nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer div.company ul.nav {
  padding-left: 10px;
  letter-spacing: -0.4em;
  vertical-align: middle;
  display: inline-block;
}

#footer div.company ul.nav li {
  letter-spacing: normal;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  vertical-align: top;
  display: inline-block;
}

#footer div.company ul.nav li {
  letter-spacing: normal;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  vertical-align: top;
  display: inline-block;
}

#footer div.company ul.nav li ~ li {
  border-left: none;
}

#footer div.company ul.nav li a {
  padding: 0 1em;
  color: inherit;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}

#footer div.company ul.nav li a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.company ul.nav {
    display: table-cell;
  }

}

/* -------------------------------------------------------------------------------------------------
   * バナー
/* ---------------------------------------------------------------------------------------------- */

#footer div.company ul.banner,
#footer div.company ul.banner li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer div.company ul.banner {
  max-width: none;
  margin: 5px -10px -5px;
  letter-spacing: -0.4em;
  overflow: hidden;
}

#footer div.company ul.banner li {
  width: 45%;
  padding: 5px 10px;
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
}

#footer div.company ul.banner li img {
  max-height: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.company ul.banner {
    text-align: right;
    vertical-align: middle;
    display: table-cell;
  }

  #footer div.company ul.banner li {
    width: auto;
    padding: 5px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ページトップ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.pagetop {
  color: #fff;
  font-size: 20px;
  background-color: #000;
  position: fixed;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  transition:
    visibility 0.5s ease-in-out 0.0s,
    opacity 0.5s ease-in-out 0.0s,
    margin-top 0.0s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
  margin-top: 0;
}

#footer div.pagetop a {
  padding: 10px;
  color: inherit;
  text-decoration: none;
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer div.pagetop {
    font-size: 26px;
    right: 20px;
    bottom: 20px;
  }

  #footer div.pagetop a {
    padding: 17px;
  }

}

/* -------------------------------------------------------------------------------------------------
   * スクロール時
/* ---------------------------------------------------------------------------------------------- */

body.scroll-active
#footer div.pagetop {
  bottom: 10px;
  transition:
    visibility 0.5s ease-in-out 0.0s,
    opacity 0.5s ease-in-out 0.5s;
  visibility: visible;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

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

  body.scroll-active
  #footer div.pagetop {
    bottom: 20px;
  }

}

/* * 停止設定
/* ････････････････････････････････････････････････････････････････････････････････････････････ */

body.scroll-active
#footer.window-in div.pagetop {
  position: absolute;
  top: 10px;
  bottom: auto;
  transition: margin-top 0.3s ease-in-out 0.0s;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * コピーライト
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer address.copyright {
  padding: 10px 0;
  color: #fff;
  font-size: 10px;
  background-color: #222;
}

#footer address.copyright div.body::after {
  content: '.';
  display: block;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

#footer address.copyright a {
  color: inherit;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer address.copyright {
    padding: 30px 0;
  }

}

/* -------------------------------------------------------------------------------------------------
   * テキスト
/* ---------------------------------------------------------------------------------------------- */

#footer address.copyright .text {
  padding: 5px 10px;
  letter-spacing: 1px;
}

#footer address.copyright .text a {
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer address.copyright .text {
    float: left;
  }

}

/* -------------------------------------------------------------------------------------------------
   * コピーライト
/* ---------------------------------------------------------------------------------------------- */

#footer address.copyright p.copyright {
  margin-top: 0;
  padding: 5px 10px;
  letter-spacing: 1px;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

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

  #footer address.copyright p.copyright {
    float: right;
  }

}
