@charset "UTF-8";
/* =====
 * 共通レイアウト
============================================================================= */
/* -----
 * setting
----------------------------------------------------------------------------- */
body {
  font-family: Helvetica, Arial, verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  line-height: 1.85;
  letter-spacing: 0.035em;
  color: #333;
}

/* -----
 * font family
----------------------------------------------------------------------------- */
.font-serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "HiraMinPro-W3", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

/* -----
 * link setting
----------------------------------------------------------------------------- */
a:link, a:visited, a:active {
  outline: 0px none #000;
}

a img {
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0;
}

/* -----
 * common-style
----------------------------------------------------------------------------- */
p, ul, ol, table {
  margin: 1em 0;
}

p:last-child, ul:last-child, ol:last-child, table:last-child {
  margin-bottom: 0;
}

p:first-child, ul:first-child, ol:first-child, table:first-child {
  margin-top: 0;
}

.image {
  display: block;
}

.image img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.br-sp {
  display: none;
}

.hidden-text {
  text-indent: -9999px;
  overflow: hidden;
}

.content-inner {
  width: 850px;
  margin: 0 auto;
}

.common-cap {
  text-align: center;
  font-size: 32px;
  line-height: 1em;
}

.common-cap > .sub {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 25px;
}

.tel-link,
.contact-link {
  display: block;
  text-decoration: none;
  font-size: 20px;
  background-position: left 20px center;
  background-repeat: no-repeat;
  padding: 20px 25px 20px 65px;
  line-height: 1em;
}

.tel-link {
  color: #000;
  background-image: url(../images/common/icon_phone.png);
  -webkit-background-size: 35px 27px;
          background-size: 35px 27px;
}

.contact-link {
  background-color: #000;
  color: #fff;
  background-image: url(../images/common/icon_mail.png);
  -webkit-background-size: 25px 18px;
          background-size: 25px 18px;
}

/* -----
 * modules
----------------------------------------------------------------------------- */
#Header {
  width: 100%;
  min-width: 1050px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

#Header > .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Header > .logo img {
  width: 122px;
}

#Header > .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Header > .navigation > .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}

#Header > .navigation > .links > .link {
  display: block;
  font-size: 15px;
  margin: 0 15px;
  text-decoration: none;
  color: #000;
}

#Header > .navigation > .tel-link {
  border-left: 1px solid #ddd;
}

#ContentBody {
  min-width: 1050px;
}

#Footer {
  min-width: 1050px;
  background-color: #000;
}

#Footer > .content-inner {
  padding: 45px 0;
  border-bottom: 1px solid #3B3B3B;
}

#Footer > .content-inner > .logo {
  width: 122px;
  margin: 0 auto;
}

#Footer > .copy {
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1em;
  padding: 25px 0;
  margin: 0;
}

.page #Header:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 17px;
  z-index: -1;
  display: block;
  background-image: url(../images/index/keyvisual.jpg);
  -webkit-background-size: cover;
          background-size: cover;
}

.page #ContentBody {
  padding-top: 77px;
}

/* -----
 * responsive
----------------------------------------------------------------------------- */
@media screen and (min-width: 1000px) {
  /* PC */
  .contact-link {
    -webkit-transition: 0.4s !important;
    transition: 0.4s !important;
  }
  .contact-link:hover {
    background-color: #fcc419;
  }
  #Header > .logo {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #Header > .logo:hover {
    background-color: #fcc419;
  }
  #Header > .logo:hover img {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  #Header > .navigation > .links > .link {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #Header > .navigation > .links > .link:hover {
    color: #fcc419;
  }
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a:link, a:visited, a:active {
    transition: color 0.1s linear 0s;
    -moz-transition: color 0.1s linear 0s;
    -webkit-transition: color 0.1s linear 0s;
    -o-transition: color 0.1s linear 0s;
    -ms-transition: color 0.1s linear 0s;
  }
  a img {
    transition: opacity 0.1s linear 0s;
    -moz-transition: opacity 0.1s linear 0s;
    -webkit-transition: opacity 0.1s linear 0s;
    -o-transition: opacity 0.1s linear 0s;
    -ms-transition: opacity 0.1s linear 0s;
  }
  a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  }
  a.tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  /* tablet */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a.tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

@media screen and (max-width: 767px) {
  /* smart phone */
  .common-cap {
    font-size: 25px;
  }
  .common-cap > .sub {
    font-size: 13px;
    margin-top: 25px;
  }
  .content-inner {
    width: auto;
    margin: 0 auto;
  }
  .tel-link,
  .contact-link {
    font-size: 17px;
    padding: 20px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    text-align: center;
  }
  .tel-link {
    border: 2px solid #000;
    background-position: left 13px center;
  }
  #Header {
    width: 100%;
    min-width: 0;
    position: fixed;
    background-color: transparent;
  }
  #Header > .logo {
    width: 100px;
    height: 100px;
  }
  #Header > .logo img {
    width: 80px;
  }
  #Header > .navigation {
    position: absolute;
    right: calc(-100% + 100px);
    top: 0;
    display: block;
    background-color: #fff;
    width: calc(100% - 100px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #Header > .navigation.__open {
    right: 0;
  }
  #Header > .navigation > .links {
    padding: 50px 0 30px;
    display: block;
    text-align: center;
  }
  #Header > .navigation > .links > .link {
    display: block;
    font-size: 15px;
    margin: 0;
    padding: 15px;
    text-decoration: none;
    color: #000;
  }
  #Header > .navigation > .tel-link {
    margin-top: 10px;
    border-left: 2px solid #000;
  }
  #Header > .navigation > .contact-link {
    margin-top: 10px;
  }
  #Header > .js-menu-btn {
    position: fixed;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 1050;
    margin-left: 20px;
    top: 0;
    right: 0;
    background-color: #000;
  }
  #Header > .js-menu-btn > span {
    width: 24px;
    height: 3px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #Header > .js-menu-btn > span:before, #Header > .js-menu-btn > span:after {
    content: '';
    width: 24px;
    height: 3px;
    display: block;
    background-color: #fff;
    position: absolute;
  }
  #Header > .js-menu-btn > span:before {
    top: -11px;
    right: 0;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #Header > .js-menu-btn > span:after {
    bottom: -11px;
    right: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  #Header > .js-menu-btn.__open > span {
    width: 0;
  }
  #Header > .js-menu-btn.__open > span:before {
    top: 0;
    left: -12px;
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  #Header > .js-menu-btn.__open > span:after {
    bottom: 0;
    right: -12px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #ContentBody {
    min-width: 0;
  }
  #Footer {
    min-width: 0;
  }
  #Footer > .content-inner > .logo {
    width: 80px;
  }
  #Footer > .copy {
    font-size: 11px;
  }
  #Overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    visibility: hidden;
  }
  #Overlay.__show {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .pages #Header:after {
    height: 8px;
  }
  .pages #ContentBody {
    padding-top: 8px;
  }
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a.tel-link {
    pointer-events: auto;
  }
  /* -----
   * br setting
  ----------------------------------------------------------------------------- */
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
