@charset "utf-8";

/* ****************************************************************************************************
   * 共用
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * フォント設定
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* アイコンフォント：_font/icomoon/demo.html にて一覧を閲覧可 */

@import url('../../_font/icomoon/style.css');

/* ゴシック体 */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Light.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Bold.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Bold.otf') 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.otf') format('opentype');
}

/* 明朝体 */

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 300;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Light.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Light.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Regular.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 600;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-SemiBold.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-SemiBold.otf') format('opentype');
}

@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Bold.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Bold.otf') 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.otf') format('opentype');
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 全体
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body {
  min-width: 320px;
  padding-bottom: 45px;
  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;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  body {
    padding-top: 65px;
    padding-bottom: 0;
  }

}

/* -------------------------------------------------------------------------------------------------
   * レイアウト用
/* ---------------------------------------------------------------------------------------------- */

div.body {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  div.body {
    max-width: 1130px;
  }

}

/* ****************************************************************************************************
   * ヘッダー
**************************************************************************************************** */

#header {
  font-family: 'NotoSerifCJKjp', serif;
  border-bottom: 1px solid #eaeaea;
  background-color: #f4f4f4;
}

#header div.body {
  width: 100%;
  max-width: 1366px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #header {
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
  }

}

@media screen and (min-width:1121px) {

  #header div.body {
    flex-wrap: nowrap;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ロゴ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.logo a {
  padding: 1.34vw 2vw;
  text-decoration: none;
  display: inline-block;
}

#header div.logo .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header div.logo .item img {
  opacity: 1;
}

#header div.logo .item img:nth-child(1) {
  width: auto;
  height: 24px;
}

#header div.logo .item img:nth-child(2) {
  width: auto;
  height: 12px;
  margin-left: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #header div.logo a {
    padding: 10px 15px;
  }

  #header div.logo .item img:nth-child(1) {
    height: 45px;
  }

  #header div.logo .item img:nth-child(2) {
    height: 17px;
    margin-left: 20px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * SP コンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.header-1 {
  padding: 0.67vw 2vw;
}

#header div.header-1 ul.list,
#header div.header-1 ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header div.header-1 ul.list {
  display: flex;
  justify-content: flex-end;
}

#header div.header-1 ul.list li a {
  padding: 5px 15px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: block;
}

#header div.header-1 ul.list li img {
  width: auto;
  height: 8px;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #header div.header-1 {
    display: none;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * グローバルナビ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header nav.header-2 {
  width: 100%;
}

#header nav.header-2 ul.list,
#header nav.header-2 ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header nav.header-2 ul.list {
  display: flex;
}

#header nav.header-2 ul.list li {
  width: 25%;
  border: 1px solid #eaeaea;
}

#header nav.header-2 ul.list li a {
  padding: 12px 0.5em;
  color: inherit;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: #fff;
  position: relative;
}

#header nav.header-2 ul.list li:not(.current) a[href]:hover {
  background-color: #f4f4f4;
}

#header nav.header-2 ul.list li a[href]::after {
  content: '\e928';
  line-height: 1;
  font-family: 'icomoon';
  font-size: 0.75em;
  font-weight: 900;
  position: absolute;
  left: calc(50% - 0.5em);
  bottom: 0.25em;
  transition: opacity 0.3s ease-in-out 0.0s;
  opacity: 0;
}

#header nav.header-2 ul.list li.current a[href]::after {
  opacity: 1;
}

#header nav.header-2 ul.list li img {
  opacity: 0.2;
}

#header nav.header-2 ul.list li a[href] img {
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #header nav.header-2 {
    order: 3;
  }

  #header nav.header-2 ul.list li a {
    padding: 15px;
  }

}

@media screen and (min-width:1121px) {

  #header nav.header-2 {
    width: auto;
    margin-left: auto;
    margin-right: 0;
    padding-left: 40px;
    flex-grow: 1;
    order: 0;
  }

  #header nav.header-2 ul.list {
    justify-content: flex-end;
  }

  #header nav.header-2 ul.list li {
    width: auto;
    margin: 0 10px;
    border: none;
  }

  #header nav.header-2 ul.list li a {
    padding: 10px;
    background-color: transparent;
  }

  #header nav.header-2 ul.list li a[href]::after {
    bottom: -0.5em;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 空室情報・お問い合わせ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header div.header-3 {
  margin: 0 15px;
  display: none;
  align-self: flex-start;
  flex-shrink: 0;
}

#header div.header-3 ul.list,
#header div.header-3 ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header div.header-3 ul.list {
  display: flex;
}

#header div.header-3 ul.list li {
  margin: 0 1px;
}

#header div.header-3 ul.list li .memo {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 0;
  color: #666;
  line-height: 1.4;
  font-size: 0.75em;
  display: block;
}

#header div.header-3 ul.list li a {
  padding: 9px 2em 7px;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: #a9b1b4;
}

#header div.header-3 ul.list li a:hover {
  background-color: #939a9d;
}

#header div.header-3 ul.list li a::before {
  content: url("../../_image/_common/icon-mail.svg");
  width: 21px;
  height: auto;
  margin: auto auto 1px;
  line-height: 1;
  display: block;
}

#header div.header-3 ul.list li.contact a {
  background-color: #5693c6;
}

#header div.header-3 ul.list li.contact a:hover {
  background-color: #3c7baf;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #header div.header-3 {
    display: block;
  }

}

/* ****************************************************************************************************
   * メイン
**************************************************************************************************** */

#main {
  padding-bottom: 30px;
  font-size: 14px;
}

body.layout-lower
#main {
  padding: 40px 0 60px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #main {
    font-size: 16px;
  }

  body.layout-lower
  #main {
    padding: 60px 0 80px;
  }

}

/** ***************************************************************************
 * セクショニング
 */

body.layout-lower
#main .section ~ .section {
  margin-top: 60px;
}

body.layout-lower
#main .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  body.layout-lower
  #main .section ~ .section {
    margin-top: 100px;
  }

  body.layout-lower
  #main .column ~ .column {
    margin-top: 60px;
  }

}

/* ****************************************************************************************************
   * 共用コンテンツ
**************************************************************************************************** */

/** ***************************************************************************
 * ページナビ
 */

#common-pagenav ul.list,
#common-pagenav ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#common-pagenav ul.list {
  display: flex;
  flex-wrap: wrap;
}

#common-pagenav ul.list li {
  width: 50%;
}

#common-pagenav ul.list li a {
  text-decoration: none;
  display: block;
  position: relative;
}

#common-pagenav ul.list li a::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

#common-pagenav ul.list li a[href] {
  transition: filter 0.4s ease-in-out 0.0s;
}

#common-pagenav ul.list li a[href]:hover {
  filter: brightness(160%);
}

#common-pagenav ul.list li a[href]::before {
  content: none;
}

#common-pagenav ul.list li img {
  width: 100%;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #common-pagenav ul.list li {
    width: 25%;
  }

}

/* ****************************************************************************************************
   * フッター
**************************************************************************************************** */

#footer {
  position: relative;
  z-index: 1;
}

#footer div.body {
  max-width: 1366px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * フッター コンテンツ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.footer {
  padding: 30px 0;
  background-color: #f4f4f4;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #footer div.footer {
    padding: 40px 0;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * お問い合わせ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.contact {
  padding: 30px 0;
  color: #fff;
  font-size: 13px;
  background-color: #a9b1b4;
}

#footer div.contact a {
  color: inherit;
}

#footer div.contact div.content {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #footer div.contact {
    padding: 60px 0;
    font-size: 16px;
  }

}

/* -------------------------------------------------------------------------------------------------
   * タイトル
/* ---------------------------------------------------------------------------------------------- */

#footer div.contact .title-1 {
  font-size: 1.5em;
}

/* -------------------------------------------------------------------------------------------------
   * TEL
/* ---------------------------------------------------------------------------------------------- */

#footer div.contact .tel {
  margin-top: 0;
  font-size: 20px;
}

#footer div.contact .tel .number {
  font-size: 30px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #footer div.contact .tel .number {
    font-size: 40px;
  }

}

/* -------------------------------------------------------------------------------------------------
   * ボタン
/* ---------------------------------------------------------------------------------------------- */

#footer div.contact div.button-list {
  margin-top: 20px;
  letter-spacing: -0.4em;
  text-align: center;
}

#footer div.contact div.button-list > * {
  letter-spacing: normal;
}

#footer div.contact div.button-list .item {
  margin: 0;
  padding: 10px;
  vertical-align: top;
  display: inline-block;
}

#footer div.contact div.button-list .item a {
  padding: 1em 1em;
  padding-right: 3em;
  letter-spacing: 1px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: 3px solid #fff;
  vertical-align: top;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition:
    color 0.3s ease-in-out 0.0s,
    background-color 0.3s ease-in-out 0.0s;
  color: inherit;
  background-color: transparent;
}

#footer div.contact div.button-list .item a:hover {
  color: inherit;
  background-color: rgba(255, 255, 255, 0.2);
}

#footer div.contact div.button-list .item a::before {
  content: '\e904';
  margin-top: -6px;
  margin-right: 0.5em;
  line-height: 1;
  font-family: icomoon;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

#footer div.contact div.button-list .item a::after {
  content: '\e902';
  line-height: 1;
  font-family: icomoon;
  font-size: 24px;
  font-style: 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%;
  right: 0.75em;
  margin-top: -12px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #footer div.contact div.button-list {
    margin-top: 40px;
  }

  #footer div.contact div.button-list .item a {
    padding: 1em 4em;
    font-size: 20px;
  }

  #footer div.contact div.button-list .item a::before {
    margin-top: -5px;
    font-size: 24px;
  }

  #footer div.contact div.button-list .item a::after {
    margin-top: -10px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 会社情報
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.company {
  padding: 15px 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #footer div.company {
    padding: 20px 0;
  }

  #footer div.company div.body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

}

/* -------------------------------------------------------------------------------------------------
   * ロゴ
/* ---------------------------------------------------------------------------------------------- */

#footer div.company div.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer div.company div.logo a {
  margin: 5px 10px;
  text-align: center;
  text-decoration: none;
}

/* -------------------------------------------------------------------------------------------------
   * ナビ
/* ---------------------------------------------------------------------------------------------- */

#footer div.company ul.nav,
#footer div.company ul.nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer div.company ul.nav {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}

#footer div.company ul.nav li {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

#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 {
    margin-left: 1.25em;
    margin-right: auto;
  }

}

/* -------------------------------------------------------------------------------------------------
   * バナー
/* ---------------------------------------------------------------------------------------------- */

#footer div.company ul.banner,
#footer div.company ul.banner li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer div.company ul.banner {
  margin-top: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer div.company ul.banner li {
  padding: 5px;
}

#footer div.company ul.banner li a {
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ページトップ
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer div.pagetop {
  color: #fff;
  font-size: 20px;
  background-color: #000;
  position: fixed;
  z-index: 2;
  right: 10px;
  bottom: 55px;
  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: 70px;
  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;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * コピーライト
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#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;
  }

}

/** ***************************************************************************
 * メニュー
 * ************************************************************************* */

#menu {
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: fixed;
  z-index: 3;
  left: 0;
  bottom: 0;
}

#menu * {
  pointer-events: auto;
}

#menu ul,
#menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu ul a {
  color: inherit;
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  #menu {
    display: none;
  }

}

/** ***************************************************************************
 * リスト
 */

#menu nav.nav {
  width: 100%;
  min-height: 100%;
  padding: 5% 10%;
  background-color: #fff;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 44px;
  transition:
    visibility 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.menu-active
#menu nav.nav {
  visibility: visible;
  opacity: 1;
}

#menu nav.nav ul:last-child {
  margin-bottom: 10%;
}

/** ===========================================================================
 * リスト
 */

#menu nav.nav ul.list {
  width: 100%;
  align-self: flex-end;
}

#menu nav.nav ul.list li a {
  padding: 0.75em 0.5em;
  color: #999;
  letter-spacing: 2px;
  font-size: 1.125em;
  text-align: center;
  display: block;
}

#menu nav.nav ul.list li a[href] {
  color: #000;
}

#menu nav.nav ul.list li.new a[href]::after {
  content: url("../../_image/_common/nav-new.png");
  margin-left: 5px;
  vertical-align: baseline;
  display: inline-block;
}

/** ===========================================================================
 * 資料請求 / 来場予約
 */

#menu nav.nav ul.link {
  margin-top: 40px;
  align-self: flex-start;
}

#menu nav.nav ul.link li {
  text-align: center;
}

#menu nav.nav ul.link li a {
  padding: 0.5em 1em;
  padding-right: 3em;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.125em;
  text-align: center;
  text-decoration: none;
  border: 3px solid #000;
  vertical-align: top;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: rgba(0, 0, 0, 1.0);
}

#menu nav.nav ul.link li a:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

#menu nav.nav ul.link li a::before {
  content: '\e904';
  margin-top: -6px;
  margin-right: 0.5em;
  line-height: 1;
  font-family: icomoon;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: inline-block;
}

#menu nav.nav ul.link li a::after {
  content: '\e902';
  line-height: 1;
  font-family: icomoon;
  font-size: 24px;
  font-style: 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%;
  right: 0.75em;
  margin-top: -12px;
}

/** ***************************************************************************
 * メニュー
 */

#menu div.menu {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: fixed;
  z-index: 3;
  left: 0;
  bottom: 0;
}

/** ===========================================================================
 * リスト
 */

#menu div.menu div.list {
  padding: 8px 0;
  color: #fff;
  font-size: 9px;
  background-color: #1368a3;
  flex-grow: 1;
}

#menu div.menu div.list .message {
  margin-bottom: 10px;
  text-align: center;
}

#menu div.menu div.list ul.list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

#menu div.menu ul.list li {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.25em;
  text-align: center;
  flex-grow: 1;
}

#menu div.menu ul.list li ~ li {
  border-left: 1px solid #89b4d1;
}

#menu div.menu ul.list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

#menu div.menu ul.list li a img {
  margin-right: 8px;
  opacity: 1;
}

#menu div.menu ul.list li .text {
  margin-top: 0.75em;
  font-size: 7px;
}

/** ===========================================================================
 * ハンバーガー
 */

#menu div.menu div.drawer {
  width: 60px;
  color: #fff;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#menu div.menu div.drawer div.title {
  margin-top: 3px;
  letter-spacing: 1px;
  font-size: 0.875em;
  font-weight: 700;
  text-align: center;
}

#menu div.menu div.drawer div.drawer-trigger {
  width: 30px;
  padding-top: 9px;
  padding-bottom: 9px;
}

/** ---------------------------------------------------------------------------
 * ライン
 */

#menu div.menu div.drawer div.drawer-trigger i.icon {
  width: 100%;
  height: 0;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}

#menu div.menu div.drawer div.drawer-trigger i.icon::before,
#menu div.menu div.drawer div.drawer-trigger i.icon::after {
  content: '';
  width: 100%;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
}

/* 上 */
#menu div.menu div.drawer div.drawer-trigger i.icon::before {
  margin-top: -8px;
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#menu div.menu div.drawer div.drawer-trigger i.icon::before {
  -webkit-transform: translateY(7px) rotate(-315deg);
          transform: translateY(7px) rotate(-315deg);
  margin-left: -100px;
}

/* 中 */
#menu div.menu div.drawer div.drawer-trigger i.icon {
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#menu div.menu div.drawer div.drawer-trigger i.icon {
  margin-left: 100px;
}

/* 下 */
#menu div.menu div.drawer div.drawer-trigger i.icon::after {
  margin-top: 6px;
  transition:
    all 0.4s ease-in-out 0.0s,
    margin-left 0.4s ease-in-out 0.0s;
  margin-left: 0;
}

body.menu-active
#menu div.menu div.drawer div.drawer-trigger i.icon::after {
  -webkit-transform: translateY(-7px) rotate(315deg);
          transform: translateY(-7px) rotate(315deg);
  margin-left: -100px;
}
