﻿@charset 'utf-8';

body {
  padding-top: 9rem;
}

#header {
  position: fixed;
  border-top: 8px solid #212549;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  background-color: #fff;
}

/* .header-inner  */
  #header .header-inner {
    position: relative;
    margin: 0 auto;
    max-width: 1024px;
  }

  /* ロゴ */
  #header .header-inner #ci {
    float: left;
    padding: 3rem 0 0 1.2rem;
    width: 102px;
  }
    #header .header-inner #ci img {
      display: block;
      width: 100%;
      height: auto;
    }

  /* .hd-sub */
  #header .header-inner .hd-sub {
    float: right;
    padding: 3rem 0 0;
  }

    /* GLOBALNAVIGATION */
    #gnav-wrap {
      display: table-cell;
      vertical-align: middle;
    }
      #gnav > li {
        float: left;
      }
      #gnav > li#switch {
        padding: 0 0 7px;
      }
      #gnav > li > span,
      #gnav > li > a:link,
      #gnav > li > a:visited,
      #gnav > li > a:hover,
      #gnav > li > a:active {
        display: block;
        font-size: 1.5rem;
        color: #222222;
        padding: 1rem 2.5rem;
      }
      #gnav #switch > span,
      #gnav #switch > a {
        background: url('../images/common/ico-arrow-down.svg') bottom center no-repeat;
        -webkit-background-size: 10px 5px;
        background-size: 10px 5px;
      }
      #gnav li ul {
        display: none;
        overflow: hidden;
        position: absolute;
        top: 8rem;
        left: 0;
        width: 100%;
        padding: 0 0 1rem 0;
        background-color: rgba(255,255,255,.9);
      }
        #gnav li ul li {
          float: left;
          margin: 1rem 1.9rem 0;
          font-size: 1.4rem;
        }
          #gnav li ul li i {
            margin-right: .25rem;
          }

    /* 電話番号 */
    #header .header-inner #hd-tel {
      display: table-cell;
      vertical-align: middle;
      padding: 0 0 0 2.5rem;
    }
    #header .header-inner .hd-tel-inner {
      /*font-family: '新ゴ M', 'Shin Go Medium';*/
      font-weight: bold;
      font-size: 1.6rem;
      text-align: right;
    }
      #header .header-inner .hd-tel-inner i {
        margin-right: .25rem;
      }
      #header .header-inner .hd-tel-inner .time {
        font-size: 1.3rem;
      }

    /* メール */
    #header .header-inner #hd-mail {
      display: table-cell;
      vertical-align: middle;
      padding: 0 1rem;
    }
      #header .header-inner #hd-mail a {
        display: inline-block;
        padding: .75rem;
        border-radius: 4px;
        background-color: #212549;
        color: #fff;
        font-size: 2.2rem;
        line-height: 1;
      }

/* COMPACT-HEADER */
#header-c {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

#nav-drawer {
  position: relative;
  z-index: 99;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  position: absolute;
  top: 12px;
  left: 3%;
  display: inline-block;
  width: 40px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 6px;/*線の太さ*/
    width: 40px;/*長さ*/
    background: #212449;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -12px;
}
#nav-open span:after {
    bottom: -24px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;/*最前面に*/
  width: 90%;/*右側に隙間を作る*/
  max-width: 330px;/*最大幅*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
  #nav-content .nav li {
    border-bottom: 1px solid #e2e2e2;
  }
    #nav-content .nav li li {
      border-top: 1px dashed #e2e2e2;
      border-bottom: none;
    }
    #nav-content .nav li i {
      margin-right: .5rem;
    }
    #nav-content .nav li a {
      display: block;
      text-align: left;
      padding: 15px 10px 15px 15px;
      font-size: 1.6rem;
      -webkit-background-size: 6px 10px;
      background-size: 6px 10px;
    }

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* スマホのTEL */
#sp_phone01 {
  display: none;
  position: absolute;
  top: 6px;
  right: 3%;
}
  #sp_phone01 a:link,
  #sp_phone01 a:visited,
  #sp_phone01 a:hover,
  #sp_phone01 a:active {
    display: block;
    border: 1px solid #aaa;
    padding: .75rem;
    border-radius: 4px;
  }
  #sp_phone01 .fa-phone {
    font-size: 2.4rem;
    color: #777;
  }

/* STYLE: FOOTER */
#footer {
  padding: 0 1.8rem;
  background-color: #f0f0f0;
}
  #footer .footer-inner {
    margin: 0 auto;
    max-width: 1024px;
  }
    #footer .ft-upper {
      overflow: hidden;
      text-align: left;
      padding: 1.75rem 1.8rem 3.6rem;
      border-bottom: 1px solid #969696;
    }
      #ft-profile {
        float: left;
      }
        #ft-profile p {
          padding-bottom: .5rem;
          /*font-family: '新ゴ M', 'Shin Go Medium';*/
          font-weight: bold;
          font-size: 1.4rem;
        }
        #ft-profile li {
          font-size: 1.3rem;
        }
      #ft-nav {
        float: right;
      }
        #ft-nav > ul {
          overflow: hidden;
        }
          #ft-nav > ul > li {
            float: left;
            font-size: 1.6rem;
            line-height: 1;
          }
          #ft-nav > ul > li:nth-of-type(3) li {
            margin-top: 1.5rem;
          }
          #ft-nav > ul > li:nth-of-type(3) li:nth-of-type(1) {
            margin-top: 0;
          }
          #ft-nav > ul > li:nth-of-type(1) {
            padding-right: 2.4rem;
          }
          #ft-nav > ul > li:nth-of-type(2) {
            padding-right: 6rem;
          }
          #ft-nav ul.ft-nav-inner {
            padding-left: 1.25rem;
          }
          #ft-nav ul.ft-nav-inner li {
            font-size: 1.4rem;
            margin: .75rem 0 0;
          }
          #ft-nav > ul > li > i {
            margin-right: .5rem;
          }
  #copyright {
    text-align: center;
    padding: 2rem;
  }
    #copyright small {
      font-size: 1.5rem;
    }

/* パン屑 */
#breadcrumbs{
    background: #EEF3F5;
}
  #breadcrumbs ul{
    max-width: 1024px;
    padding:8px 0;

    margin:0 auto;
  }
  #breadcrumbs li{
    font-size: 1.2rem;
    float: left;
    padding:0 15px 0 0;
    position: relative;
  }
  #breadcrumbs li:after{
    display: inline-block;
    content:'>';
    position: absolute;
    top:0;
    right:2px;
  }
  #breadcrumbs li:last-of-type:after{
    content:'';
  }
/* H1：アンダーバー付タイトル */
h1#title {
  padding: 2rem 1rem;
  border-bottom: 1px solid #d5dadb;
  font-size: 3rem;
  font-family: '新ゴ L';
}

/* H2：アンダーバー付タイトル */
h2.title-ubar {
  font-size: 3rem;
  position: relative;
  padding-bottom: 3rem;
  color: #24292b;
}
h2.title-ubar::after {
  display: block;
  content: ' ';
  border-bottom: 2px solid #212549;
  width: 30px;
  margin: 1.8rem auto 0;
}

h2.title-ubar-fullwidth{
  padding: 2rem 1rem;
  border-bottom: 1px solid #d5dadb;
  font-size: 3rem;
  font-family: '新ゴ L';
}

/* 共通 */
/* 取り扱い商品 */
#content-items .article-inner {
  margin: 0 auto;
  padding: 7rem 0 9rem;
  max-width: 1024px;
}
  #content-items .items {
    overflow: hidden;
    margin: -7rem 0 0;
    padding: 0 1.5%;
  }
    #content-items .items li {
      float: left;
      margin: 7rem 1.5% 0;
      width: 30.3%;
      font-size: 1.8rem;
    }
    #content-items .items li:nth-of-type(3n+1) {
      clear: both;
    }
      #content-items .items li span {
        display: block;
      }
      #content-items .items li .figure {
        border: 5px solid #dce1e3;
      }
      #content-items .items li .figure img {
        display: block;
        width: 100%;
        height: auto;
      }
      #content-items .items li .txt {
        display: inline-block;
        margin: 1rem 0 0;
      }
        #content-items a .txt {
          position: relative;
          display: inline-block;
          padding: .5rem 2rem;
          /*border: 2px solid #333;*/
          color: #333;
          text-align: center;
          text-decoration: none;
          transition: .3s;
        }
        #content-items a .txt::before {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          z-index: -1;
          content: '';
          background: #eef3f6;
          transform-origin: right top;
          transform: scale(0, 1);
          transition: transform .3s;
        }

/* 共通 */
/* オーダー犬舎 */
#content-order {
  background-color: #212549;
  color: #fff;
}
  #content-order .article-inner {
    overflow: hidden;
    margin: 0 auto;
    padding: 6rem 4% 7.5rem;
    max-width: 1024px
  }
  #content-order .context {
    float: left;
    width: 50%;
    text-align: left;
  }
    #content-order .context h2 {
      /*font-family: '新ゴ M', 'Shin Go Medium';*/
      font-weight: bold;
      padding: 0 0 2.5rem;
      font-size: 2.8rem;
      font-weight: bold;
      line-height: 1;
    }
    #content-order .context p {
      padding: 0;
      font-size: 1.8rem;
      line-height: 1.8;
    }
    #content-order .context .btn-wrap {
      padding: 20px 0 0;
    }
    #content-order .context a.btn-default:link,
    #content-order .context a.btn-default:visited,
    #content-order .context a.btn-default:hover,
    #content-order .context a.btn-default:active {
      color: #fff;
      font-size: 1.5rem;
    }
    #content-order .context a.btn-default {
      position: relative;
      display: inline-block;
      /*padding: .5rem 2rem;*/
      color: #333;
      text-align: center;
      text-decoration: none;
      transition: .3s;
      overflow: hidden;
    }
    #content-order .context a.btn-default::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      content: '';
      background: #eef3f6;
      transform-origin: right top;
      transform: scale(0, 1);
      transition: transform .3s;
    }
  #content-order .figure {
    float: right;
    width: 42.2%;
    border: 7px solid #343873;
  }
    #content-order .figure img {
      display: block;
      width: 100%;
      height: auto;
    }

/* 共通 */
/* お気軽にお問合せください */
#content-contact .article-inner {
  max-width: 1028px;
  margin: 0 auto;
  padding: 7rem 0 0;
}
  #content-contact .context {
    text-align: left;
    max-width: 645px;
    margin: 0 auto;
  }
    #content-contact .context h2 {
      font-size: 2.8rem;
      padding: 0 0 .5rem;
    }
      #content-contact .context h2 i {
        margin-right: 1rem;
        font-size: 4rem;
      }
    #content-contact .context-inner-wrap {
      display: table;
      border: 6px solid #c5cacc;
      width: 100%;
    }
      #content-contact .context-inner {
        display: table-cell;
        padding: 1.5rem;
        vertical-align: middle;
      }
      #content-contact .context-inner:nth-of-type(1) {
        width: 365px;
        white-space: nowrap;
      }
        #content-contact .context-inner .tel {
          display: block;
          /*font-family: '新ゴ M', 'Shin Go Medium';*/
          font-weight: bold;
          font-size: 4rem;
          line-height: 1;

        }
          #content-contact .context-inner .tel i {
            font-size: 3.2rem;
            margin-right: .5rem;
          }
        #content-contact .context-inner .time {
          display: block;
          text-align: center;
          font-size: 2.2rem;
        }
      #content-contact .context-inner:nth-of-type(2) a:link,
      #content-contact .context-inner:nth-of-type(2) a:visited,
      #content-contact .context-inner:nth-of-type(2) a:hover,
      #content-contact .context-inner:nth-of-type(2) a:active {
        display: table;
        width: 100%;
        height: 100%;
        color: #fff;
        background-color: #212549;
        border-radius: 4px;
      }
        #content-contact .context-inner:nth-of-type(2) a > span {
          display: table-cell;
          vertical-align: middle;
        }
          #content-contact .context-inner:nth-of-type(2) a .ico-mail {
            white-space: nowrap;
            padding: 1rem 1.1rem;
            width: 30px;
            font-size: 3rem;
          }
          #content-contact .context-inner:nth-of-type(2) a .txt span {
            display: block;
            /*font-family: '新ゴ M', 'Shin Go Medium';*/
            font-weight: bold;
            font-size: 1.6rem;
            line-height: 1.4;
            font-weight: bold;
          }
          #content-contact .context-inner:nth-of-type(2) a .txt span .fa-arrow-right {
            margin-left: .5rem;
          }
      #content-contact .context-inner:nth-of-type(2) a {
        transition: .1s;
        border-bottom: 4px solid #7e82a0;
      }

/* 共通 */
/* 会社概要 */
#content-corporate {
  padding: 8.5rem 0 6rem;
}
  #content-corporate .article-inner {
    max-width: 850px;
    margin: 0 auto;
  }
    #content-corporate .context {
      margin: 0 5%;
    }
      #content-corporate table {
        border-top: 1px solid #d5dadb;
        margin: 0 auto;
      }
        #content-corporate th,
        #content-corporate td {
          text-align: left;
          padding: 1rem 2rem 1.5rem;
          border-bottom: 1px solid #d5dadb;
          font-size: 1.8rem;
          line-height: 1.6;
        }
        #content-corporate th {
          white-space: nowrap;
          width: 28.2%;
        }

/* 共通 */
/* アクセス */
#content-access {
  padding: 8.5rem 0 6rem;
}
#content-access .article-inner {
  max-width: 1024px;
  margin: 0 auto;
}
  #gmap {
    width: 100%;
    height: 550px;
  }
  #content-access .footer {
    text-align: right;
    padding: .5rem;
    font-size: 1.4rem;
  }
  #content-access .footer i {
    margin-left: .5rem;
  }
  #content-access .footer a:link,
  #content-access .footer a:visited,
  #content-access .footer a:hover,
  #content-access .footer a:active {
    text-decoration: underline;
  }

/* 汎用CSS */
.wsnw {
  white-space: nowrap !important;
}
.va-t {
  vertical-align: top !important;
}
.va-m {
  vertical-align: middle !important;
}
.va-b {
  vertical-align: bottom !important;
}
.ta-l {
  text-align: left !important;
}
.ta-c {
  text-align: center !important;
}
.ta-r {
  text-align: right !important;
}
.mt-1r {
  margin-top: 1rem !important;
}
.mt-2r {
  margin-top: 2rem !important;
}
.mt-3r {
  margin-top: 3rem !important;
}
.mt-4r {
  margin-top: 4rem !important;
}
.mt-5r {
  margin-top: 5rem !important;
}
.mt-6r {
  margin-top: 6rem !important;
}
.mt-7r {
  margin-top: 7rem !important;
}
.mt-8r {
  margin-top: 8rem !important;
}
.mt-9r {
  margin-top: 9rem !important;
}
.mt-10r {
  margin-top: 10rem !important;
}
.mt-11r {
  margin-top: 11rem !important;
}
.mt-12r {
  margin-top: 12rem !important;
}
.w10p {
  width: 10% !important;
}
.w15p {
  width: 15% !important;
}
.w20p {
  width: 20% !important;
}
.w25p {
  width: 25% !important;
}
.w30p {
  width: 30% !important;
}
.w35p {
  width: 35% !important;
}
.w40p {
  width: 40% !important;
}
.w45p {
  width: 45% !important;
}
.w50p {
  width: 50% !important;
}
.w55p {
  width: 55% !important;
}
.w60p {
  width: 60% !important;
}
.w65p {
  width: 65% !important;
}
.w70p {
  width: 70% !important;
}
.w75p {
  width: 75% !important;
}
.w80p {
  width: 80% !important;
}
.w85p {
  width: 85% !important;
}
.w90p {
  width: 90% !important;
}
.w95p {
  width: 95% !important;
}
.w100p {
  width: 100% !important;
}
.w260 {
  width: 260px;
}
.btn-default {
  border: 1px solid #d5d5d5;
  padding: 1rem 2rem;
  border-radius: 2.4rem;
}
.btn.btn-white {
  border-color: #fff;
}

/* パンくず */
#breadcrimb {
  background-color: #eef3f5;
  padding: .5rem 1rem;
  font-size: 1.2rem;
}
  #breadcrimb ul {
    overflow: hidden;
    max-width: 1024px;
    margin: 0 auto;
  }
    #breadcrimb li {
      float: left;
    }
    #breadcrimb li::before {
      content: '>';
      padding: 0 .5rem;
    }
    #breadcrimb li:nth-of-type(1)::before {
      display: none;
    }


#content-order-items {
    padding:70px 0 0;
    color: #FFF;
}
  #content-order-items .content-wrap {
    display: block;
    background: #212549;
    overflow: hidden;
    margin: 0 auto;
    max-width: 645px;
    padding:15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    transition: .3s;
  }
    #content-order-items .content-wrap:link,
    #content-order-items .content-wrap:visited,
    #content-order-items .content-wrap:hover,
    #content-order-items .content-wrap:active {
      color: #fff;
    }
      #content-order-items .content-wrap .btn-wrap .btn {
        display: inline-block;
        font-size: 1.4rem;
      }
  #content-order-items .context {
    float: left;
    width: 65%;
    text-align: left;
  }
    #content-order-items .context h2 {
      /*font-family: '新ゴ M', 'Shin Go Medium';*/
      font-weight: bold;
      padding: 0 0 10px;
      font-size: 2.4rem;
      font-weight: bold;
      line-height: 1;
    }
    #content-order-items .context p {
      padding: 0;
      font-size: 1.4rem;
      line-height: 1.6;
    }

    #content-order-items .btn-wrap{
        padding:20px 0 0;
    }

    #content-order-items .context a.btn-default:link,
    #content-order-items .context a.btn-default:visited,
    #content-order-items .context a.btn-default:hover,
    #content-order-items .context a.btn-default:active {
      color: #fff;
      font-size: 1.5rem;
    }
    #content-order-items .context a.btn-default {
      position: relative;
      display: inline-block;
      /*padding: .5rem 2rem;*/
      color: #333;
      text-align: center;
      text-decoration: none;
      transition: .3s;
      overflow: hidden;
    }
    #content-order-items .context a.btn-default::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      content: '';
      background: #eef3f6;
      transform-origin: right top;
      transform: scale(0, 1);
      transition: transform .3s;
    }
  #content-order-items .figure {
    float: right;
    width: 35%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    overflow: hidden;
  }
    #content-order-items .figure img {
      display: block;
      width: 100%;
      height: auto;
    }


@media screen and (max-width: 1024px) {
  /* パンくず */
  #breadcrumbs ul {
    padding: 8px 2.5%;
  }
}

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

  /* フッタの調整 */
  #ft-profile {
    float: left;
    width: 48%;
  }
    #ft-profile p {
      padding-bottom: .5rem;
      font-size: 1.4rem;
      font-weight: bold;
    }
    #ft-profile li {
      font-size: 1.3rem;
    }
  #ft-nav {
    float: right;
    width: 48%;
  }
    #ft-nav > ul {
      overflow: hidden;
    }
      #ft-nav > ul > li {
        float: none;
        font-size: 1.6rem;
        line-height: 1;
      }
      #ft-nav > ul > li:nth-of-type(3) li {
        margin-top: 1.5rem;
      }
      #ft-nav > ul > li:nth-of-type(3) li:nth-of-type(1) {
        margin-top: 1.5rem;
      }
      #ft-nav > ul > li:nth-of-type(1) {
        padding-right: 0;
      }
      #ft-nav > ul > li:nth-of-type(2) {
        margin-top: 1.5rem;
        padding-right: 0;
      }
      #ft-nav ul.ft-nav-inner {
        padding-left: 1.25rem;
      }
      #ft-nav ul.ft-nav-inner li {
        font-size: 1.4rem;
        margin: .75rem 0 0;
      }
      #ft-nav > ul > li > i {
        margin-right: .5rem;
      }
}

@media screen and (max-width: 830px) {
  /* グローバルナビ：ボタンのマージンを調整 */
      #gnav > li > span,
      #gnav > li > a:link,
      #gnav > li > a:visited,
      #gnav > li > a:hover,
      #gnav > li > a:active {
        font-size: 1.5rem;
        color: #222222;
        padding: 1rem 1rem;
      }
}

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

@media screen and (min-width: 721px) {
    #content-order-items .content-wrap:hover {
      opacity: .7;
    }

  /* 汎用CSS */
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items a:hover .txt {
    color: #000002;
  }
  #content-items a:hover .txt::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  /* 共通 */
  /* オーダー犬舎 */
  #content-order .context a.btn-default:hover {
    color: #000002;
  }
  #content-order .context a.btn-default:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  /* 共通 */
  /* お気軽にお問合せください */
  #content-contact .context-inner:nth-of-type(2) a:hover {
    background-color: #3a3f69;
    border-bottom: 1px solid #7e82a0;
  }
}

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

  body {
    padding-top: 6.5rem;
  }

  /* 汎用CSS */
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }

  /* ヘッダのheightを調整 */
  #header {
    position: fixed;
    border-top: 8px solid #212549;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.5rem;
    background-color: #fff;
  }
  #header .header-inner {
    text-align: center;
  }

  /* .hd-sub */
  #header .header-inner .hd-sub {
    float: right;
    padding: 1.2rem 0 0;
  }

  /* ヘッダUIの切り替え */
  .hd-sub {
    display: none;
  }
  #header-c {
    display: block;
  }

  /* ロゴ */
  #header .header-inner #ci {
    float: none;
    padding: 0;
    margin: 4px auto 0;
    width: 102px;
  }

  /* 電話番号 */
  #header .header-inner #hd-tel {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
  }
  #header .header-inner .hd-tel-inner {
    /*font-family: '新ゴ M', 'Shin Go Medium';*/
    font-weight: bold;
    font-size: 1.6rem;
    text-align: right;
  }
    #header .header-inner .hd-tel-inner i {
      margin-right: .25rem;
    }
    #header .header-inner .hd-tel-inner .time {
      font-size: 1.3rem;
      line-height: 1;
    }

  /* メール */
  #header .header-inner #hd-mail {
    display: table-cell;
    vertical-align: middle;
    padding: 0 1rem;
  }
    #header .header-inner #hd-mail a {
      display: inline-block;
      padding: .75rem;
      border-radius: 4px;
      background-color: #212549;
      color: #fff;
      font-size: 2.2rem;
      line-height: 1;
    }

  /* ロゴ */
  #header .header-inner #ci {
    float: none;
    padding: 0;
    margin: 4px auto 0;
    width: 102px;
  }

  #sp_phone01 {
    display: block;
  }

  /* STYLE: FOOTER */
  #footer {
    padding: 1rem 0;
    background-color: #f0f0f0;
  }
    #footer .footer-inner {
      margin: 0 auto;
      max-width: 1024px;
    }
      #footer .ft-upper {
        overflow: hidden;
        text-align: left;
        padding: 0;
        border-bottom: 1px solid #969696;
      }
        #ft-profile {
          float: none;
          width: 100%;
          padding: 3rem 2rem;
        }
          #ft-profile p {
            padding-bottom: .5rem;
            font-size: 2.4rem;
            font-weight: bold;
          }
          #ft-profile li {
            font-size: 2rem;
          }
        #ft-nav {
          float: none;
          width: 100%;
        }
          #ft-nav > ul {
            overflow: hidden;
          }
            #ft-nav > ul > li {
              float: none;
              font-size: 1.6rem;
              line-height: 1;
              border-bottom: 1px solid #969696;
            }
            #ft-nav > ul > li:nth-last-of-type(1) {
              border-bottom: none;
            }
            #ft-nav a {
              display: block;
              padding: 2rem;
              font-size: 2.2rem;
            }
            #ft-nav > ul > li:nth-of-type(3) li {
              margin-top: 0;
              border-bottom: 1px solid #969696;
            }
            #ft-nav > ul > li:nth-of-type(3) li:nth-of-type(1) {
              margin-top: 0;
            }
            #ft-nav > ul > li:nth-of-type(1) {
              padding-right: 0;
            }
            #ft-nav > ul > li:nth-of-type(2) {
              margin-top: 0;
              padding-right: 0;
            }
            #ft-nav ul.ft-nav-inner {
              padding-left: 0;
            }
            #ft-nav ul.ft-nav-inner li {
              font-size: 1.4rem;
              margin: 0;
              border-top: 1px dashed #969696;
            }
            #ft-nav ul.ft-nav-inner li a {
              padding: 2rem 2rem 2rem 4rem;
            }
            #ft-nav > ul > li i {
              margin-right: 1rem;
            }
    #copyright {
      text-align: center;
      padding: 2rem;
    }
      #copyright small {
        font-size: 2rem;
      }

  /* H1：アンダーバー付タイトル */
  h1#title {
    padding: 2rem 1rem;
    border-bottom: 1px solid #d5dadb;
    font-size: 3.4rem;
    font-family: '新ゴ L';
  }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items .article-inner {
    margin: 0 auto;
    padding: 6.34rem 0 8.15rem;
    max-width: 1024px;
  }
    #content-items h2.title-ubar {
      font-size: 3.62rem;
      position: relative;
      padding-bottom: 3.62rem;
      color: #24292b;
    }
    #content-items h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #content-items .items {
      overflow: hidden;
      margin: -3rem 0 0;
      padding: 0 1.5%;
    }
      #content-items .items li {
        float: left;
        margin: 2rem 1.5% 0;
        width: 47%;
        font-size: 2.71rem;
      }
      #content-items .items li:nth-of-type(3n+1) {
        clear: none;
      }
      #content-items .items li:nth-of-type(2n+1) {
        clear: both;
      }
        #content-items .items li .figure {
          border: 7.24px solid #dce1e3;
        }
        #content-items .items li .txt {
          margin: .9rem 0 0;
          font-size: 1.4rem;
        }

  /* 共通 */
  /* オーダー犬舎 */
    #content-order .article-inner {
      overflow: hidden;
      margin: 0 auto;
      padding: 4.53rem 4% 8.15rem;
      max-width: 1024px
    }
    #content-order .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order h2 {
        text-align: left;
        padding: 0 0 4rem;
        font-size: 3.44rem;
        font-weight: bold;
        line-height: 1;
      }
      #content-order .context p {
        padding: 0 0 4.98rem;
        font-size: 2.71rem;
        line-height: 1.5;
      }
      #content-order .context .btn-wrap {
        text-align: center;
      }
        #content-order .context a.btn-default:link,
        #content-order .context a.btn-default:visited,
        #content-order .context a.btn-default:hover,
        #content-order .context a.btn-default:active {
          color: #fff;
          font-size: 2.89rem;
          border-radius: 4rem;
          margin: 0 auto;
          padding: 1.5rem 2.5rem;
        }
    #content-order .figure {
      float: none;
      width: 100%;
      border: none;
      padding: 0 6% 4rem;
    }

  /* 共通 */
  /* お気軽にお問合せください */
  #content-contact .article-inner {
    max-width: 1028px;
    margin: 0 auto;
    padding: 7rem 4% 0;
  }
      #content-contact .context h2 {
        font-size: 2.8rem;
        padding: 0 0 .5rem;
      }
        #content-contact .context h2 i {
          margin-right: 1rem;
          font-size: 4rem;
        }
      #content-contact .context-inner-wrap {
        display: block;
        overflow: hidden;
        /*border: 6px solid #c5cacc;*/
        border: none;
        width: 100%;
      }
        #content-contact .context-inner {
          display: block;
          padding: 1.5rem;
          vertical-align: middle;
        }
        #content-contact .context-inner:nth-of-type(1) {
          float: left;
          text-align: center;
          width: 77%;
          white-space: nowrap;
          border: 6px solid #c5cacc;
        }
          #content-contact .context-inner .tel {
            display: block;
            font-size: 3.4rem;
            line-height: 1;

          }
            #content-contact .context-inner .tel i {
              font-size: 3.2rem;
              margin-right: .5rem;
            }
          #content-contact .context-inner .time {
            display: block;
            text-align: center;
            font-size: 2rem;
          }
        #content-contact .context-inner:nth-of-type(2) {
          overflow: hidden;
          float: right;
          width: 23%;
          text-align: right;
          padding: 0;
        }
          #content-contact .context-inner:nth-of-type(2) a:link,
          #content-contact .context-inner:nth-of-type(2) a:visited,
          #content-contact .context-inner:nth-of-type(2) a:hover,
          #content-contact .context-inner:nth-of-type(2) a:active {
            float: right;
            display: table;
            width: 124px;
            height: 110px;
            color: #fff;
            background-color: #212549;
            border-radius: 10px;
          }
            #content-contact .context-inner:nth-of-type(2) a > span {
              display: table-cell;
              vertical-align: middle;
              text-align: center;
            }
              #content-contact .context-inner:nth-of-type(2) a .ico-mail {
                white-space: nowrap;
                padding: 0;
                font-size: 6rem;
              }
              #content-contact .context-inner:nth-of-type(2) a .txt {
                display: none;
              }

  /* 共通 */
  /* 会社概要 */
  #content-corporate h2.title-ubar {
    font-size: 3.62rem;
    position: relative;
    padding-bottom: 3.62rem;
    color: #24292b;
  }
    #content-corporate th,
    #content-corporate td {
      font-size: 2.35rem;
    }

  /* 共通 */
  /* アクセス */
  #content-access {
    padding: 9.5rem 0 3.6rem;
  }
    #content-access .article-inner {
      padding: 0 4%;
    }
    #content-access h2.title-ubar {
      font-size: 3.62rem;
      position: relative;
      padding-bottom: 3.62rem;
      color: #24292b;
    }
    #content-access h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #gmap {
      width: 100%;
      height: 498px;
    }
    #content-access .footer {
      text-align: right;
      padding: .5rem;
      font-size: 2.35rem;
    }

  #content-order-items .content-wrap {
    padding: 25px;
  }
  #content-order-items {
      padding: 0;
  }
      #content-order-items .sp {
        padding: 0 0 1rem;
        font-size: 2.19rem;
      }
      #content-order-items .article-inner {
          margin: 0 auto;
          padding: 5rem 4% 0;
      }

}

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

  /* STYLE: FOOTER */
  #footer {
    padding: .85rem 0;
    background-color: #f0f0f0;
  }
        #ft-profile {
          float: none;
          width: 100%;
          padding: 2.55rem 1.7rem;
        }
          #ft-profile p {
            padding-bottom: .5rem;
            font-size: 2.21rem;
            font-weight: bold;
          }
          #ft-profile li {
            font-size: 2.04rem;
          }
            #ft-nav > ul > li {
              float: none;
              font-size: 1.6rem;
              line-height: 1;
              border-bottom: 1px solid #969696;
            }
            #ft-nav a {
              display: block;
              padding: 2rem;
              font-size: 1.8rem;
            }
            #ft-nav ul.ft-nav-inner li {
              font-size: 1.4rem;
              margin: 0;
              border-top: 1px dashed #969696;
            }
            #ft-nav ul.ft-nav-inner li a {
              padding: 2rem 2rem 2rem 4rem;
            }
            #ft-nav > ul > li i {
              margin-right: 1rem;
            }
    #copyright {
      text-align: center;
      padding: 2rem;
    }
      #copyright small {
        font-size: 2.38rem;
      }

  /* H1：アンダーバー付タイトル */
  h1#title {
    padding: 2rem 1rem;
    border-bottom: 1px solid #d5dadb;
    font-size: 3rem;
    font-family: '新ゴ L';
  }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items .article-inner {
    margin: 0 auto;
    padding: 5.95rem 0 7.65rem;
    max-width: 1024px;
  }
    #content-items h2.title-ubar {
      font-size: 3.06rem;
      position: relative;
      padding-bottom: 3.06rem;
      color: #24292b;
    }
    #content-items h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #content-items .items {
      overflow: hidden;
      margin: -3rem 0 0;
      padding: 0 1.5%;
    }
      #content-items .items li {
        float: left;
        margin: 2rem 1.5% 0;
        width: 47%;
        font-size: 2.55rem;
      }
      #content-items .items li:nth-of-type(3n+1) {
        clear: none;
      }
      #content-items .items li:nth-of-type(2n+1) {
        clear: both;
      }
        #content-items .items li .figure {
          border: 7px solid #dce1e3;
        }
        #content-items .items li .txt {
          margin: .85rem 0 0;
        }

  /* 共通 */
  /* オーダー犬舎 */
    #content-order .article-inner {
      overflow: hidden;
      margin: 0 auto;
      padding: 4.25rem 4% 7.65rem;
      max-width: 1024px
    }
    #content-order .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order h2 {
        padding: 0 0 2.12rem;
        font-size: 3.23rem;
        font-weight: bold;
        line-height: 1;
      }
      #content-order .context p {
        padding: 0;
        font-size: 2.55rem;
        line-height: 1.5;
      }
      #content-order .context .btn-wrap {
        text-align: center;
      }
        #content-order .context a.btn-default:link,
        #content-order .context a.btn-default:visited,
        #content-order .context a.btn-default:hover,
        #content-order .context a.btn-default:active {
          color: #fff;
          font-size: 2.72rem;
          border-radius: 4rem;
          margin: 0 auto;
          padding: 1.27rem 2.12rem;
        }
    #content-order .figure {
      float: none;
      width: 100%;
      border: none;
    }

  /* 共通 */
  /* お気軽にお問合せください */
  #content-contact .article-inner {
    max-width: 1028px;
    margin: 0 auto;
    padding: 5.95rem 4% 0;
  }
      #content-contact .context h2 {
        font-size: 2.4rem;
        padding: 0 0 .5rem;
      }
        #content-contact .context h2 i {
          margin-right: 1rem;
          font-size: 2.8rem;
        }
      #content-contact .context-inner-wrap {
        display: block;
        overflow: hidden;
        /*border: 6px solid #c5cacc;*/
        border: none;
        width: 100%;
      }
        #content-contact .context-inner {
          display: block;
          padding: 1.5rem;
          vertical-align: middle;
        }
        #content-contact .context-inner:nth-of-type(1) {
          float: left;
          text-align: center;
          width: 77%;
          white-space: nowrap;
          border: 5px solid #c5cacc;
          padding: 1.27rem;
        }
          #content-contact .context-inner .tel {
            display: block;
            font-size: 3rem;
            line-height: 1;

          }
            #content-contact .context-inner .tel i {
              font-size: 2.72rem;
              margin-right: .5rem;
            }
          #content-contact .context-inner .time {
            display: block;
            text-align: center;
            font-size: 2rem;
          }
        #content-contact .context-inner:nth-of-type(2) {
          overflow: hidden;
          float: right;
          width: 23%;
          text-align: right;
          padding: 0;
        }
          #content-contact .context-inner:nth-of-type(2) a:link,
          #content-contact .context-inner:nth-of-type(2) a:visited,
          #content-contact .context-inner:nth-of-type(2) a:hover,
          #content-contact .context-inner:nth-of-type(2) a:active {
            float: right;
            display: table;
            width: 105px;
            height: 100px;
            color: #fff;
            background-color: #212549;
            border-radius: 8px;
          }
            #content-contact .context-inner:nth-of-type(2) a > span {
              display: table-cell;
              vertical-align: middle;
              text-align: center;
            }
              #content-contact .context-inner:nth-of-type(2) a .ico-mail {
                white-space: nowrap;
                padding: 0;
                font-size: 5rem;
              }
              #content-contact .context-inner:nth-of-type(2) a .txt {
                display: none;
              }

  /* 共通 */
  /* 会社概要 */
  #content-corporate {
    padding: 6rem 0 0;
  }
    #content-corporate h2.title-ubar {
      font-size: 3.4rem;
      position: relative;
      padding-bottom: 3.62rem;
      color: #24292b;
    }
      #content-corporate th,
      #content-corporate td {
        display: block;
        font-size: 2.35rem;
        line-height: 1.5;

      }
      #content-corporate table {
        border-top: 1px solid #d5dadb;
      }
      #content-corporate th {
        border-bottom: none;
        padding: 2rem 2rem 0;
        line-height: 1;
      }
        #content-corporate th span {
          display: block;
          border-left: 6px solid #000;
          padding: 0 0 4px .75rem;
        }
      #content-corporate td {
        border-bottom: 1px solid #d5dadb;
        padding: 1rem 2rem 2rem;
      }

  /* 共通 */
  /* アクセス */
  #content-access {
    padding: 6rem 0 3.4rem;
  }
    #content-access h2.title-ubar {
      font-size: 3.4rem;
      position: relative;
      padding-bottom: 3.4rem;
      color: #24292b;
    }
    #content-access h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #gmap {
      width: 100%;
      height: 467px;
    }
    #content-access .footer {
      text-align: right;
      padding: .5rem;
      font-size: 2.6rem;
    }

    #content-order-items .article-inner {
      overflow: hidden;
    }
    #content-order-items .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order-items .context p {
        font-size: 1.4rem;
        padding: 20px 20px 0;
      }
      #content-order-items .context .btn-wrap {
        text-align: center;
      }
        #content-order-items .context a.btn-default:link,
        #content-order-items .context a.btn-default:visited,
        #content-order-items .context a.btn-default:hover,
        #content-order-items .context a.btn-default:active {
          font-size: 1.4rem;
        }
  #content-order-items .content-wrap {
    padding: 25px 0;
  }
    #content-order-items .figure {
      float: none;
      width: 100%;
      padding:0 20px;
    }


}

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

  /* STYLE: FOOTER */
  #footer {
    padding: .72rem 0;
    background-color: #f0f0f0;
  }
        #ft-profile {
          float: none;
          width: 100%;
          padding: 2.16rem 1.44rem;
        }
          #ft-profile p {
            padding-bottom: .5rem;
            font-size: 1.87rem;
            font-weight: bold;
          }
          #ft-profile li {
            font-size: 1.72rem;
          }
            #ft-nav > ul > li {
              float: none;
              font-size: 1.6rem;
              line-height: 1;
              border-bottom: 1px solid #969696;
            }
            #ft-nav a {
              display: block;
              padding: 2rem;
              font-size: 1.8rem;
            }
            #ft-nav ul.ft-nav-inner li {
              font-size: 1.4rem;
              margin: 0;
              border-top: 1px dashed #969696;
            }
            #ft-nav ul.ft-nav-inner li a {
              padding: 2rem 2rem 2rem 4rem;
            }
            #ft-nav > ul > li i {
              margin-right: 1rem;
            }
    #copyright {
      text-align: center;
      padding: 2rem;
    }
      #copyright small {
        font-size: 2rem;
      }

  /* H1：アンダーバー付タイトル */
  h1#title {
    padding: 2rem 1rem;
    border-bottom: 1px solid #d5dadb;
    font-size: 2.8rem;
    font-family: '新ゴ L';
  }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items .article-inner {
    margin: 0 auto;
    padding: 4.27rem 0 5.49rem;
    max-width: 1024px;
  }
    #content-items h2.title-ubar {
      font-size: 2.59rem;
      position: relative;
      padding-bottom: 2.59rem;
      color: #24292b;
    }
    #content-items h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #content-items .items {
      overflow: hidden;
      margin: -4.27rem 0 0;
      padding: 0 1.5%;
    }
      #content-items .items li {
        float: left;
        margin: 4.27rem 1.5% 0;
        width: 47%;
        font-size: 2.16rem;
      }
      #content-items .items li:nth-of-type(3n+1) {
        clear: none;
      }
      #content-items .items li:nth-of-type(2n+1) {
        clear: both;
      }
        #content-items .items li .figure {
          border: 6px solid #dce1e3;
        }
        #content-items .items li .txt {
          margin: .72rem 0 0;
        }

  /* 共通 */
  /* オーダー犬舎 */
    #content-order .article-inner {
      overflow: hidden;
      margin: 0 auto;
      padding: 3.6rem 4% 6.48rem;
      max-width: 1024px
    }
    #content-order .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order h2 {
        padding: 0 0 1.8rem;
        font-size: 2.73rem;
        font-weight: bold;
        line-height: 1;
      }
      #content-order .context p {
        padding: 0;
        font-size: 2.16rem;
        line-height: 1.5;
      }
      #content-order .context .btn-wrap {
        text-align: center;
      }
        #content-order .context a.btn-default:link,
        #content-order .context a.btn-default:visited,
        #content-order .context a.btn-default:hover,
        #content-order .context a.btn-default:active {
          color: #fff;
          font-size: 2.3rem;
          border-radius: 4rem;
          margin: 0 auto;
          padding: 1.08rem 1.8rem;
        }
    #content-order .figure {
      float: none;
      width: 100%;
      border: none;
    }

  /* 共通 */
  /* お気軽にお問合せください */
  #content-contact .article-inner {
    max-width: 1028px;
    margin: 0 auto;
    padding: 4.27rem 4% 0;
  }
      #content-contact .context h2 {
        font-size: 2.19rem;
        padding: 0 0 .5rem;
      }
        #content-contact .context h2 i {
          margin-right: 1rem;
          font-size: 2.44rem;
        }
      #content-contact .context-inner-wrap {
        display: block;
        overflow: hidden;
        /*border: 6px solid #c5cacc;*/
        border: none;
        width: 100%;
      }
        #content-contact .context-inner {
          display: block;
          padding: 1.5rem;
          vertical-align: middle;
        }
        #content-contact .context-inner:nth-of-type(1) {
          float: left;
          text-align: center;
          width: 77%;
          white-space: nowrap;
          border: 4px solid #c5cacc;
          padding: .9rem;
        }
          #content-contact .context-inner .tel {
            display: block;
            font-size: 2.68rem;
            line-height: 1;

          }
            #content-contact .context-inner .tel i {
              font-size: 1.95rem;
              margin-right: .5rem;
            }
          #content-contact .context-inner .time {
            display: block;
            text-align: center;
            font-size: 1.83rem;
          }
        #content-contact .context-inner:nth-of-type(2) {
          overflow: hidden;
          float: right;
          width: 23%;
          text-align: right;
          padding: 0;
        }
          #content-contact .context-inner:nth-of-type(2) a:link,
          #content-contact .context-inner:nth-of-type(2) a:visited,
          #content-contact .context-inner:nth-of-type(2) a:hover,
          #content-contact .context-inner:nth-of-type(2) a:active {
            float: right;
            display: table;
            width: 76px;
            height: 76px;
            color: #fff;
            background-color: #212549;
            border-radius: 6px;
          }
            #content-contact .context-inner:nth-of-type(2) a > span {
              display: table-cell;
              vertical-align: middle;
              text-align: center;
            }
              #content-contact .context-inner:nth-of-type(2) a .ico-mail {
                white-space: nowrap;
                padding: 0;
                font-size: 5.12rem;
              }
              #content-contact .context-inner:nth-of-type(2) a .txt {
                display: none;
              }

  /* 共通 */
  /* 会社概要 */
  #content-corporate {
    padding: 5.5rem 0 0;
  }
    #content-corporate h2.title-ubar {
      font-size: 2.88rem;
      position: relative;
      padding-bottom: 2.88rem;
      color: #24292b;
    }
      #content-corporate th,
      #content-corporate td {
        display: block;
        font-size: 1.87rem;
        line-height: 1.5;

      }
      #content-corporate table {
        border-top: 1px solid #d5dadb;
      }
      #content-corporate th {
        border-bottom: none;
        padding: 2rem 2rem 0;
        line-height: 1;
      }
        #content-corporate th span {
          display: block;
          border-left: 6px solid #000;
          padding: 0 0 4px .75rem;
        }
      #content-corporate td {
        border-bottom: 1px solid #d5dadb;
        padding: 1rem 2rem 2rem;
      }

  /* 共通 */
  /* アクセス */
  #content-access {
    padding: 5.5rem 0 4.32rem;
  }
    #content-access h2.title-ubar {
      font-size: 2.88rem;
      position: relative;
      padding-bottom: 2.88rem;
      color: #24292b;
    }
    #content-access h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #gmap {
      width: 100%;
      height: 396px;
    }
    #content-access .footer {
      text-align: right;
      padding: .5rem;
      font-size: 1.87rem;
    }
}

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

  /* STYLE: FOOTER */
  #footer {
    padding: .61rem 0;
    background-color: #f0f0f0;
  }
        #ft-profile {
          float: none;
          width: 100%;
          padding: 1.83rem 1.22rem;
        }
          #ft-profile p {
            padding-bottom: .5rem;
            font-size: 1.58rem;
            font-weight: bold;
          }
          #ft-profile li {
            font-size: 1.46rem;
          }
            #ft-nav > ul > li {
              float: none;
              font-size: 1.6rem;
              line-height: 1;
              border-bottom: 1px solid #969696;
            }
            #ft-nav a {
              display: block;
              padding: 2rem;
              font-size: 1.83rem;
            }
            #ft-nav ul.ft-nav-inner li {
              font-size: 1.4rem;
              margin: 0;
              border-top: 1px dashed #969696;
            }
            #ft-nav ul.ft-nav-inner li a {
              padding: 2rem 2rem 2rem 4rem;
            }
            #ft-nav > ul > li i {
              margin-right: 1rem;
            }
    #copyright {
      text-align: center;
      padding: 2rem;
    }
      #copyright small {
        font-size: 1.7rem;
      }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items .article-inner {
    margin: 0 auto;
    padding: 4.27rem 0 5.49rem;
    max-width: 1024px;
  }
    #content-items h2.title-ubar {
      font-size: 2.19rem;
      position: relative;
      padding-bottom: 2.19rem;
      color: #24292b;
    }
    #content-items h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #content-items .items {
      overflow: hidden;
      margin: -1.5rem 0 0;
      padding: 0 1.5%;
    }
      #content-items .items li {
        float: left;
        margin: 2rem 1.5% 0;
        width: 47%;
        font-size: 1.83rem;
      }
      #content-items .items li:nth-of-type(3n+1) {
        clear: none;
      }
      #content-items .items li:nth-of-type(2n+1) {
        clear: both;
      }
        #content-items .items li .figure {
          border: 5px solid #dce1e3;
        }
        #content-items .items li .txt {
          margin: 0;
        }

  /* 共通 */
  /* オーダー犬舎 */
    #content-order .article-inner {
      overflow: hidden;
      margin: 0 auto;
      padding: 3.05rem 4% 5.49rem;
      max-width: 1024px
    }
    #content-order .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order h2 {
        padding: 0 0 1.52rem;
        font-size: 2.31rem;
        font-weight: bold;
        line-height: 1;
      }
      #content-order .context p {
        padding: 0;
        font-size: 1.59rem;
        line-height: 1.5;
      }
      #content-order .context .btn-wrap {
        text-align: center;
      }
        #content-order .context a.btn-default:link,
        #content-order .context a.btn-default:visited,
        #content-order .context a.btn-default:hover,
        #content-order .context a.btn-default:active {
          color: #fff;
          font-size: 1.69rem;
          border-radius: 4rem;
          margin: 0 auto;
          padding: 1rem 1.5rem;
        }
    #content-order .figure {
      float: none;
      width: 100%;
      border: none;
    }

  /* 共通 */
  /* 会社概要 */
  #content-corporate {
    padding: 5.5rem 0 0;
  }
    #content-corporate h2.title-ubar {
      font-size: 2.44rem;
      position: relative;
      padding-bottom: 2.44rem;
      color: #24292b;
    }
      #content-corporate th,
      #content-corporate td {
        display: block;
        font-size: 1.58rem;
        line-height: 1.5;

      }
      #content-corporate table {
        border-top: 1px solid #d5dadb;
      }
      #content-corporate th {
        border-bottom: none;
        padding: 2rem 2rem 0;
        line-height: 1;
      }
        #content-corporate th span {
          display: block;
          border-left: 6px solid #000;
          padding: 0 0 4px .75rem;
        }
      #content-corporate td {
        border-bottom: 1px solid #d5dadb;
        padding: 1rem 2rem 2rem;
      }

  /* 共通 */
  /* アクセス */
  #content-access {
    padding: 5.5rem 0 3.66rem;
  }
    #content-access h2.title-ubar {
      font-size: 2.44rem;
      position: relative;
      padding-bottom: 2.44rem;
      color: #24292b;
    }
    #content-access h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #gmap {
      width: 100%;
      height: 274px;
    }
    #content-access .footer {
      text-align: right;
      padding: .5rem;
      font-size: 1.58rem;
    }
}

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

  /* STYLE: FOOTER */
  #footer {
    padding: .53rem 0;
    background-color: #f0f0f0;
  }
        #ft-profile {
          float: none;
          width: 100%;
          padding: 1.59rem 1.06rem;
        }
          #ft-profile p {
            padding-bottom: .5rem;
            font-size: 1.4rem;
            font-weight: bold;
          }
          #ft-profile li {
            font-size: 1.3rem;
          }
            #ft-nav > ul > li {
              float: none;
              font-size: 1.6rem;
              line-height: 1;
              border-bottom: 1px solid #969696;
            }
            #ft-nav a {
              display: block;
              padding: 2rem;
              font-size: 1.59rem;
            }
            #ft-nav ul.ft-nav-inner li {
              font-size: 1.4rem;
              margin: 0;
              border-top: 1px dashed #969696;
            }
            #ft-nav ul.ft-nav-inner li a {
              padding: 2rem 2rem 2rem 4rem;
            }
            #ft-nav > ul > li i {
              margin-right: 1rem;
            }
    #copyright {
      text-align: center;
      padding: 2rem;
    }
      #copyright small {
        font-size: 1.48rem;
      }

  /* H1：アンダーバー付タイトル */
  h1#title {
    padding: 2rem 1rem;
    border-bottom: 1px solid #d5dadb;
    font-size: 2.6rem;
    font-family: '新ゴ L';
  }

  /* 共通 */
  /* 取り扱い商品 */
  #content-items .article-inner {
    margin: 0 auto;
    padding: 3.71rem 0 4.77rem;
    max-width: 1024px;
  }
    #content-items h2.title-ubar {
      font-size: 1.9rem;
      position: relative;
      padding-bottom: 1.9rem;
      color: #24292b;
    }
    #content-items h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #content-items .items {
      overflow: hidden;
      margin: -1.5rem 0 0;
      padding: 0 1.5%;
    }
      #content-items .items li {
        float: left;
        margin: 2rem 1.5% 0;
        width: 47%;
        font-size: 1.59rem;
      }
      #content-items .items li:nth-of-type(3n+1) {
        clear: none;
      }
      #content-items .items li:nth-of-type(2n+1) {
        clear: both;
      }
        #content-items .items li .figure {
          border: 4px solid #dce1e3;
        }
        #content-items .items li .txt {
          margin: 0;
        }

  /* 共通 */
  /* オーダー犬舎 */
    #content-order .article-inner {
      overflow: hidden;
      margin: 0 auto;
      padding: 2.65rem 4% 4.77rem;
      max-width: 1024px
    }
    #content-order .context {
      float: none;
      width: 100%;
      text-align: left;
    }
      #content-order h2 {
        padding: 0 0 1.32rem;
        font-size: 2.01rem;
        font-weight: bold;
        line-height: 1;
      }
      #content-order .context p {
        padding: 0;
        font-size: 1.59rem;
        line-height: 1.5;
      }
      #content-order .context .btn-wrap {
        text-align: center;
      }
        #content-order .context a.btn-default:link,
        #content-order .context a.btn-default:visited,
        #content-order .context a.btn-default:hover,
        #content-order .context a.btn-default:active {
          color: #fff;
          font-size: 1.69rem;
          border-radius: 4rem;
          margin: 0 auto;
          padding: 1rem 1.5rem;
        }
    #content-order .figure {
      float: none;
      width: 100%;
      border: none;
    }

  /* 共通 */
  /* お気軽にお問合せください */
  #content-contact .article-inner {
    max-width: 1028px;
    margin: 0 auto;
    padding: 3.71rem 4% 0;
  }
      #content-contact .context h2 {
        font-size: 1.9rem;
        padding: 0 0 .5rem;
      }
        #content-contact .context h2 i {
          margin-right: 1rem;
          font-size: 2.12rem;
        }
      #content-contact .context-inner-wrap {
        display: block;
        overflow: hidden;
        /*border: 6px solid #c5cacc;*/
        border: none;
        width: 100%;
      }
        #content-contact .context-inner {
          display: block;
          padding: .79rem;
          vertical-align: middle;
        }
        #content-contact .context-inner:nth-of-type(1) {
          float: left;
          text-align: center;
          width: 75%;
          white-space: nowrap;
          border: 3px solid #c5cacc;
          padding: .8rem;
        }
          #content-contact .context-inner .tel {
            display: block;
            font-size: 2.33rem;
            line-height: 1;

          }
            #content-contact .context-inner .tel i {
              font-size: 2.33rem;
              margin-right: .5rem;
            }
          #content-contact .context-inner .time {
            display: block;
            text-align: center;
            font-size: 1.59rem;
          }
        #content-contact .context-inner:nth-of-type(2) {
          overflow: hidden;
          float: right;
          width: 25%;
          text-align: right;
          padding: 0;
        }
          #content-contact .context-inner:nth-of-type(2) a:link,
          #content-contact .context-inner:nth-of-type(2) a:visited,
          #content-contact .context-inner:nth-of-type(2) a:hover,
          #content-contact .context-inner:nth-of-type(2) a:active {
            float: right;
            display: table;
            width: 66px;
            height: 66px;
            color: #fff;
            background-color: #212549;
            border-radius: 5px;
          }
            #content-contact .context-inner:nth-of-type(2) a > span {
              display: table-cell;
              vertical-align: middle;
              text-align: center;
            }
              #content-contact .context-inner:nth-of-type(2) a .ico-mail {
                white-space: nowrap;
                padding: 0;
                font-size: 4.5rem;
              }
              #content-contact .context-inner:nth-of-type(2) a .txt {
                display: none;
              }

  /* 共通 */
  /* アクセス */
  #content-access {
    padding: 5.56rem 0 3.18rem;
  }
    #content-access h2.title-ubar {
      font-size: 2.12rem;
      position: relative;
      padding-bottom: 2.12rem;
      color: #24292b;
    }
    #content-access h2.title-ubar::after {
      display: block;
      content: ' ';
      border-bottom: 2px solid #212549;
      width: 8%;
      margin: 1.8rem auto 0;
    }
    #gmap {
      width: 100%;
      height: 238px;
    }
    #content-access .footer {
      text-align: right;
      padding: .5rem;
      font-size: 1.5rem;
    }
}

@media screen and (min-width: 376px) {
  #gnav #switch:hover {
    cursor: pointer;
  }
}

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