@charset "UTF-8";
/*変数設定用*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover img:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-size: 62.5%;
  letter-spacing: 1px;
  color: #000;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}
header h1 {
  position: relative;
  padding: 16px 60px 16px 16px;
}
@media screen and (max-width: 767px) {
  header h1 {
    max-width: 50%;
    padding: 10px 50px 10px 10px;
  }
}
header h1:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo_bg.png);
  background-position: right;
  content: "";
  z-index: -1;
}
header nav.vpc ul {
  display: flex;
  align-items: center;
}
header nav.vpc ul li a {
  font-size: 1.4rem;
  color: #fff;
  display: block;
  padding: 20px;
}
header nav.vpc ul li.red a {
  background: #c31e24;
  padding: 37px 20px;
}
header nav.vpc ul li.red span {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
header nav.vpc ul li.black a {
  background: #000;
}
header nav.vpc ul li.black span {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

footer {
  width: 100%;
  background: #000;
  padding: 60px 0 20px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}
footer .fl {
  max-width: 412px;
  width: 40%;
  float: left;
}
@media screen and (max-width: 767px) {
  footer .fl {
    width: 100%;
    float: none;
  }
}
footer .fl .f_logo {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  footer .fl .f_logo {
    width: 50%;
    margin-bottom: 20px;
  }
}
footer .fl .f_address,
footer .fl .f_tel {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  footer .fl .f_address,
  footer .fl .f_tel {
    font-size: 3.5vw;
  }
}
footer .fr {
  float: right;
  max-width: 510px;
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  footer .fr.pc {
    display: none;
  }
}
footer .fr.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  footer .fr.sp {
    margin-top: 20px;
    float: none;
    width: 100%;
    display: block;
  }
}
footer .fr ul {
  width: auto;
}
@media screen and (max-width: 767px) {
  footer .fr ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
footer .fr ul:nth-child(2) {
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  footer .fr ul:nth-child(2) {
    margin: 0;
  }
}
footer .fr ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .fr ul li {
    margin-bottom: 15px;
    width: 50%;
    float: left;
  }
}
footer .fr ul li a {
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .fr ul li a {
    font-size: 1.2rem;
  }
}
footer .copy {
  margin-top: 80px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  footer .copy {
    margin-top: 30px;
    font-size: 1vw;
  }
}

@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.container {
  max-width: 1200px;
  margin: auto;
  width: 95%;
}

.inner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
}

/* ページTOP */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 10px;
  }
}
#page-top a {
  background: #c31e24;
  border: 1px solid #c31e24;
  text-decoration: none;
  color: #fff;
  width: 100px;
  padding: 30px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 70px;
    padding: 15px 0;
  }
}
#page-top a:hover {
  text-decoration: none;
  background: #fff;
  color: #c31e24;
}

.drawer-nav {
  width: 80%;
}

.drawer--right .drawer-hamburger {
  right: 10px;
}

.drawer--right .drawer-nav {
  right: -80%;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background: #c31e24;
}

.drawer--right.drawer-open .drawer-hamburger,
.drawer-hamburger {
  right: 80%;
  z-index: 11000;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  background-color: #c31e24;
}

.drawer-nav li {
  border-bottom: 1px solid #ccc;
}

.drawer-nav li a {
  font-size: 1.4rem;
  padding: 15px;
  color: #000;
  display: block;
}/*# sourceMappingURL=common.css.map */