@charset "utf-8";

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

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

/* アイコン */

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

/* 英数字 */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url('../../_font/Anton/Anton-Regular.ttf') format('opentype');
}

/* ゴシック体 */

@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.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: normal;
  src: url('../../_font/NotoSans/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../../_font/NotoSans/NotoSansCJKjp-Regular.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: 300;
  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: normal;
  src: url('../../_font/NotoSerif/NotoSerifCJKjp-Regular.woff') format('woff'),
       url('../../_font/NotoSerif/NotoSerifCJKjp-Regular.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: 14px/1.6 'NotoSansCJKjp', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

a[href] {
  transition: color 0.3s ease-in-out 0.0s;
  color: #ff8400;
}

a[href]:hover {
  text-decoration: none;
}

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

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

  body {
    padding-bottom: 0 !important;
    font-size: 15px;
  }

}

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

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

#body::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  transition:
    visibility 0.5s ease-in-out 0.0s,
    opacity 0.5s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.menu-active
#body::before {
  visibility: visible;
  opacity: 1;
}

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

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

#menu {
  width: 70%;
  height: 100vh;
  padding-top: 28px;
  color: #fff;
  font-weight: 700;
  border-left: 2px solid rgba(255, 255, 255, 1.0);
  background-color: #ff8400;
  transition: all 0.4s ease-in-out 0.0s;
  position: fixed;
  z-index: 2;
  top: 0;
  right: -70%;
}

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

#menu div.list {
  height: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

}

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

#menu div.drawer div.trigger {
  width: 46px;
  margin-left: auto;
  margin-right: 0;
  padding: 21px 10px;
  background-color: #ff8400;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  left: -56px;
  transition: top 0.3s ease-in-out 0.0s;
  top: 30px;
}

body.scroll-active
#menu div.drawer div.trigger {
  transition: top 0.3s ease-in-out 0.3s;
  top: 8px;
}

/** :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 * ライン
 */

#menu div.drawer div.trigger i.icon {
  width: 100%;
  height: 0;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 1;
}

#menu div.drawer div.trigger i.icon::before,
#menu div.drawer div.trigger i.icon::after {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
}

/* 上 */

#menu div.drawer div.trigger i.icon::before {
  margin-top: -10px;
  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.drawer div.trigger i.icon::before {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
  margin-left: -100px;
}

/* 中 */

#menu div.drawer div.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.drawer div.trigger i.icon {
  margin-left: 100px;
}

/* 下 */

#menu div.drawer div.trigger i.icon::after {
  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.drawer div.trigger i.icon::after {
  -webkit-transform: translateY(-9px) rotate(315deg);
          transform: translateY(-9px) rotate(315deg);
  margin-left: -100px;
}

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

#menu ul.list {
  height: 100%;
  letter-spacing: 1px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#menu ul.list li {
  border-top: 1px dotted rgba(255, 255, 255, 0.6);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}

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

#menu ul.list li a {
  padding: 0.875em 1em;
  color: inherit;
  text-decoration: none;
  display: block;
}

#menu ul.list li.current a {
  padding-left: 2.75em;
  background: url("../../_image/_common/icon-arrow-1.png") 1em center no-repeat;
  background-size: 16px 16px;
  background-color: #ff931f;
}

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

#header {
  width: 100%;
  padding-bottom: 15px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 0.7));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1.0), rgba(255, 255, 255, 0.7));
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  transition: padding-top 0.3s ease-in-out 0.0s;
  padding-top: 0;
}

body.scroll-active
#header {
  transition: padding-top 0.3s ease-in-out 0.3s;
  padding-top: 15px;
}

#header div.body {
  max-width: 1610px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

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

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

  body.scroll-active
  #header {
    padding-top: 0;
  }

  #header div.body {
    padding-right: 0;
  }

}

@media print, screen and (min-width:1401px) {

  #header div.body {
    flex-wrap: nowrap;
  }

}

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

#header .text {
  width: 100%;
  line-height: 1.4;
  transition:
    min-height 0.3s ease-in-out 0.0s,
    padding 0.3s ease-in-out 0.0s,
    font-size 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.3s;
  min-height: 3.8em;
  padding: 0.5em 0;
  font-size: 11px;
  opacity: 1;
}

body.scroll-active
#header .text {
  transition:
    min-height 0.3s ease-in-out 0.3s,
    padding 0.3s ease-in-out 0.3s,
    font-size 0.3s ease-in-out 0.3s,
    opacity 0.3s ease-in-out 0.0s;
  min-height: 0;
  padding: 0;
  font-size: 0;
  opacity: 0;
}

#header .text + * {
  margin-top: 0;
}

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

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

  #header .text {
    width: calc(100% - 180px);
    padding: 0;
    font-size: 0.875em;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 10px;
  }

  body.scroll-active
  #header .text {
    min-height: 3.8em;
    padding: 0;
    font-size: 0.875em;
    opacity: 1;
  }

}

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

#header div.logo {
  align-self: center;
}

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

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

  #header div.logo {
    padding-top: 40px;
    flex-shrink: 0;
    align-self: center;
  }

}

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

#header div.header {
  display: none;
}

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

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

  #header div.header {
    display: block;
  }

}

@media print, screen and (min-width:1401px) {

  #header div.header {
    order: 3;
    flex-shrink: 0;
  }

}

/** ===========================================================================
 * TEL / LINE / 予約する
 */

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

#header div.header ul.contact {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: bold;
  text-align: center;
}

#header div.header ul.contact li a {
  text-decoration: none;
  display: block;
}

#header div.header ul.contact li a.tel-number {
  padding: 0 15px;
  font-size: 2.125em;
  font-weight: normal;
}

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

#header nav.global-nav {
  padding-top: 15px;
  padding-left: 2.5%;
  padding-right: 2.5%;
  flex-grow: 3;
  flex-shrink: 3;
  align-self: center;
  display: none;
}

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

#header nav.global-nav ul.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#header nav.global-nav ul.list li {
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  z-index: 1;
}

#header nav.global-nav ul.list li:not(:last-child) {
  padding-right: 2em;
}

#header nav.global-nav ul.list li:not(:last-child)::after {
  content: '／';
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
}

#header nav.global-nav ul.list li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

#header nav.global-nav ul.list li a:hover,
#header nav.global-nav ul.list li.current a {
  color: #ff8400;
}

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

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

  #header nav.global-nav {
    width: 100%;
    display: block;
  }

}

@media print, screen and (min-width:1401px) {

  #header nav.global-nav {
    padding-top: /*40px*/10px;
  }

}

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

#breadcrumb {
  font-size: 13px;
}

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

#breadcrumb ol.list,
#breadcrumb ol.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumb ol.list {
  letter-spacing: -0.4em;
}

#breadcrumb ol.list li {
  letter-spacing: normal;
  vertical-align: middle;
  display: inline-block;
}

#breadcrumb ol.list li::after {
  content: '\e906';
  margin-left: 0.625em;
  margin-right: 0.75em;
  color: #8bb922;
  line-height: 1;
  font-family: icomoon;
  vertical-align: middle;
  display: inline-block;
}

#breadcrumb ol.list li:last-child::after {
  content: none;
}

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

#main {
  padding-bottom: 60px;
  background: url("../../_image/_common/bg-1.jpg") center bottom no-repeat;
  background-size: 100% auto;
  position: relative;
  transition:
    top 0.8s ease-in-out 0.0s,
    opacity 0.4s ease-in-out 0.4s;
  top: 200px;
  opacity: 0;
}

body.loaded
#main {
  top: 0;
  opacity: 1;
}

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

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

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

  #main {
    padding-bottom: 200px;
    font-size: 18px;
  }

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

}

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

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

#main .column ~ .column {
  margin-top: 50px;
}

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

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

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

  #main .column ~ .column {
    margin-top: 70px;
  }

}

/** ***************************************************************************
 * おそうじのことなら Respec にお任せ
 * ************************************************************************* */

aside.common-contact {
  padding: 30px 0 60px;
}

aside.common-contact .column ~ .column {
  margin-top: 50px;
}

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

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

  aside.common-contact {
    padding: 60px 0;
    font-size: 16px;
  }

}

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

aside.common-contact .section-title {
  width: 100%;
  max-width: 24em;
  margin: auto;
  margin-bottom: 30px;
  padding-top: 40px;
  padding-left: 13.97%;
  padding-right: 13.97%;
  padding-bottom: 5px;
  line-height: 1.4;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: table;
  background: url("../../_image/_common/common-contact-title.png") no-repeat;
  background-size: 100% 100%;
}

aside.common-contact .section-title + * {
  margin-top: 0;
}

aside.common-contact .section-title .ruby {
  margin-top: 0.125em;
  color: #ff8400;
  letter-spacing: 1px;
  font-family: Anton;
  font-size: 24px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  z-index: 1;
  top: -0.125em;
}

aside.common-contact .section-title .ruby::before {
  font-size: 0.375em;
  top: -0.375em;
}

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

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

  aside.common-contact .section-title {
    width: auto;
    max-width: 100%;
    margin-bottom: 50px;
    padding-top: 4.17%;
    padding-left: 12.5%;
    padding-right: 12.5%;
    padding-bottom: 1.25%;
    line-height: 1.3;
    font-size: 2.95vw;
  }

  aside.common-contact .section-title .ruby {
    margin-top: 0;
    vertical-align: text-bottom;
    font-size: 3.6vw;
    top: 0;
  }

  aside.common-contact .section-title .ruby::before {
    font-size: 0.25em;
    top: -0.25em;
  }

}

@media print, screen and (min-width:1401px) {

  aside.common-contact .section-title {
    font-size: 36px;
  }

  aside.common-contact .section-title .ruby {
    font-size: 44px;
  }

}

/** ***************************************************************************
 * お問い合わせ 一覧
 */

aside.common-contact div.list div.item ~ div.item {
  margin-top: 50px;
}

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

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

  aside.common-contact div.list {
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -40px;
    letter-spacing: -0.4em;
    text-align: center;
    overflow: hidden;
  }

  aside.common-contact div.list > * {
    letter-spacing: normal;
    text-align: left;
  }

  aside.common-contact div.list div.item {
    width: 50%;
    max-width: 410px;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    vertical-align: top;
    display: inline-block;
  }

  aside.common-contact div.list div.item ~ div.item {
    margin-top: 0;
  }

}

/** ===========================================================================
 * タイトル
 */

aside.common-contact div.list div.item .title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

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

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

  aside.common-contact div.list div.item .title {
    font-size: 24px;
  }

}

/** ===========================================================================
 * メッセージ
 */

aside.common-contact div.list div.item .message {
  margin-left: auto;
  margin-right: auto;
  display: table;
  text-align: center;
}

/** ===========================================================================
 * 画像
 */

aside.common-contact div.list div.item div.image {
  margin-top: 20px;
  text-align: center;
}

aside.common-contact div.list div.item.tel div.image img {
  max-width: 200px;
}

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

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

  aside.common-contact div.list div.item.tel div.image img {
    max-width: 100%;
  }

}

/** ===========================================================================
 * 電話
 */

aside.common-contact div.list div.item .tel {
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: table;
}

aside.common-contact div.list div.item .tel .tel-number {
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-shadow:
    #fff 3px 0px 3px,  #fff -3px 0px 3px,
    #fff 0px -3px 3px, #fff -3px 0px 3px,
    #fff 3px 3px 3px,  #fff -3px 3px 3px,
    #fff 3px -3px 3px, #fff -3px -3px 3px,
    #fff 1px 3px 3px,  #fff -1px 3px 3px,
    #fff 1px -3px 3px, #fff -1px -3px 3px,
    #fff 3px 1px 3px,  #fff -3px 1px 3px,
    #fff 3px -1px 3px, #fff -3px -1px 3px,
    #fff 1px 1px 3px,  #fff -1px 1px 3px,
    #fff 1px -1px 3px, #fff -1px -1px 3px;
}

aside.common-contact div.list div.item .tel .head {
  color: #ff8400;
  font-weight: bold;
}

/** ===========================================================================
 * ボタン
 */

aside.common-contact div.list div.item .button {
  margin-top: 20px;
  text-align: center;
}

/** ***************************************************************************
 * 支払方法 一覧
 */

aside.common-contact div.payment {
  margin-bottom: -5.59%;
  letter-spacing: -0.4em;
  text-align: center;
  overflow: hidden;
}

aside.common-contact div.payment > * {
  letter-spacing: normal;
}

aside.common-contact div.payment div.item {
  width: 33.33%;
  max-width: 200px;
  margin-bottom: 5.59%;
  padding-left: 5.59%;
  padding-right: 5.59%;
  text-align: center;
  vertical-align: top;
  display: inline-block;
}

aside.common-contact div.payment div.item a {
  text-decoration: none;
  display: block;
}

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

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

  aside.common-contact div.payment {
    margin-bottom: -3.75%;
  }

  aside.common-contact div.payment div.item {
    max-width: 210px;
    margin-bottom: 3.75%;
    padding-left: 3.75%;
    padding-right: 3.75%;
  }

}

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

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

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

#footer nav.nav {
  padding: 40px 0;
  background-color: #ececec;
  display: none;
}

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

#footer nav.nav ul.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#footer nav.nav ul.list li {
  padding-left: 0.75em;
  padding-right: 0.75em;
  position: relative;
  z-index: 1;
}

#footer nav.nav ul.list li:not(:last-child) {
  padding-right: 2em;
}

#footer nav.nav ul.list li:not(:last-child)::after {
  content: '／';
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
}

#footer nav.nav ul.list li a {
  padding: 0.25em;
  color: inherit;
  text-decoration: none;
  display: block;
}

#footer nav.nav ul.list li a:hover,
#footer nav.nav ul.list li.current a {
  color: #ff8400;
}

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

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

  #footer nav.nav {
    display: block;
  }

}

/** ***************************************************************************
 * 管理者
 */

#footer aside.admin {
  padding: 60px 0 30px;
  color: #fff;
  text-align: center;
  background-color: #ff8400;
}

#footer aside.admin a {
  color: inherit;
}

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

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

  #footer aside.admin {
    margin-bottom: -20px;
    padding: 40px 0 30px;
    font-size: 15px;
    overflow: hidden;
  }
  
  #footer aside.admin div.body > * {
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    vertical-align: middle;
    display: inline-block;
  }

}

/** ===========================================================================
 * ロゴ
 */

#footer aside.admin .logo {
  margin-bottom: 20px;
}

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

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

  #footer aside.admin .logo {
    margin-bottom: 0;
  }

}

/** ===========================================================================
 * TEL
 */

#footer aside.admin .tel .tel-number {
  margin-left: auto;
  margin-right: auto;
  color: inherit !important;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  display: table;
}

/** ===========================================================================
 * 所在地
 */

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

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

  #footer aside.admin .address {
    font-size: 18px;
    font-weight: bold;
  }

}

/** ***************************************************************************
 * スマホ下部固定ナビ
 */

#footer nav.fixed-nav {
  width: 100%;
  background-color: #ff8400;
  position: fixed;
  z-index: 2;
  left: 0;
  bottom: 0;
}

#footer nav.fixed-nav div.body {
  padding: 0;
}

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

#footer nav.fixed-nav ul.list {
  width: 100%;
  display: table;
  border-collapse: collapse;
}

#footer nav.fixed-nav ul.list li {
  border: 2px solid #fff;
  vertical-align: middle;
  display: table-cell;
}

#footer nav.fixed-nav ul.list li a {
  padding: 10px 10px;
  text-decoration: none;
  display: block;
}

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

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

  #footer nav.fixed-nav {
    display: none;
  }

}

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

#footer div.pagetop {
  position: absolute;
  z-index: 2;
  top: -40px;
  right: 0;
}

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

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

  #footer div.pagetop {
    top: -50px;
  }

}
