@charset "UTF-8";
/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #333;
  font-size: 14px;
  line-height: 2.285;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

a {
  color: #29a7de;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1500px) {
  #side {
    width: 16.66667vw;
  }
}

@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
}

#header h1 {
  padding-left: 10px;
  margin-bottom: 10px;
  padding-top: 5px;
  z-index: 1;
  color: #333;
  font-size: 10px;
  line-height: 1.2;
}

#header .top {
  position: relative;
  width: 100%;
  height: 120px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header .h-links {
  width: 37%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .h-links .dial {
  margin-right: 25px;
  padding-top: 10px;
  color: #000000;
  font-size: 12px;
  line-height: 1.5;
}

#header .h-links .contact a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  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;
  width: 120px;
  height: 91px;
  text-decoration: none;
  color: #fff;
  background-color: #ff0000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  padding-top: 30px;
  background-image: url(../images/h-cont-icon.png);
  background-repeat: no-repeat;
  background-position: top 20px center;
}

#header .h-links .contact a:hover {
  opacity: 0.6;
}

#header .logo {
  width: 60%;
}

@media (max-width: 999px) {
  #header .top {
    padding-right: 0;
    height: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .logo {
    width: 55%;
  }
  #header .h-links {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 40%;
  }
  #header .h-links .dial {
    margin-right: 15px;
    padding-top: 5px;
    font-size: 12px;
  }
  #header .h-links .contact a {
    width: 100px;
    height: 80px;
    font-size: 14px;
    padding-top: 25px;
    background-position: top 15px center;
  }
}

@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    width: auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    max-height: 50px;
    min-width: 0px;
    width: auto;
  }
  #header h1 {
    display: none;
  }
  #header .h-links {
    display: none;
  }
}

#gnav {
  border-top: solid 1px #999999;
  border-bottom: solid 1px #999999;
}

#gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

#gnav ul li {
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  padding: 15px 0;
}

#gnav ul li::after {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  background-color: #ff0100;
  bottom: 0px;
  left: 0;
  z-index: 0;
  width: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav ul li:hover::after {
  width: 100%;
}

#gnav ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}

#gnav ul li.current::after {
  width: 100%;
}

#gnav ul li:last-child a {
  border-right: solid 1px #000000;
}

#gnav ul li a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  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;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  border-left: solid 1px #000000;
}

@media (max-width: 767px) {
  #gnav {
    border-top: none;
  }
  #gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #gnav ul li {
    padding: 0;
    height: auto;
  }
  #gnav ul li::after {
    display: none;
  }
  #gnav ul li a {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    border-left: none;
    border-right: none !important;
  }
  #gnav ul li a:hover {
    opacity: 0.6;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  padding-top: 30px;
  border-top: solid 1px #999999;
}

#footer .inner {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

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

#footer .logo a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .text {
  padding: 0 10px;
  line-height: 1.71429;
}

#footer #copyright {
  height: 80px;
  padding: 0 10px;
  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;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

#footer #fnav {
  border-top: solid 1px #999999;
  border-bottom: solid 1px #999999;
  background-color: #f2f2f2;
}

#footer #fnav ul {
  height: 73px;
  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;
}

#footer #fnav ul li:not(:first-child)::before {
  content: "|";
  padding: 0 15px;
}

#footer #fnav ul li a {
  color: #333;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
}

#footer #fnav ul li a:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  #footer .inner {
    max-width: 400px;
  }
  #footer #fnav {
    display: none;
  }
  #footer #copyright {
    height: 50px;
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */