@charset "UTF-8";
/* -------------------------------------------- */
/* 全体 */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* 見出し・パーツ */
/* -------------------------------------------- */
/* 全体 */
/* TOP */
/* 下層 */
body {
  font-family: "Noto Sans JP", sans-serif;
}
@media print, only screen and (max-width: 850px) {
  body {
    min-width: unset;
  }
}
body {
  /* ハンバーガーメニュー展開時、背景を固定 */
}
body.active {
  height: 100%;
  overflow: hidden;
}

a,
a:visited {
  text-decoration: none;
}

li {
  list-style: none;
}

@media print, only screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }
}

@media print, only screen and (min-width: 851px) {
  .sp {
    display: none !important;
  }
}
@media print, only screen and (max-width: 850px) {
  .sp {
    display: block !important;
  }
}

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

main {
  overflow: hidden;
}

/* -------------------------------------------- */
/* header */
/* -------------------------------------------- */
.header {
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0;
  background-color: #fff;
}
.header.front-header {
  background-color: unset;
  transition: 0.3s;
}
.header.front-header.scroll-header {
  background-color: #fff;
}
.header-inner {
  padding-left: 40px;
  padding-right: 20px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 1000px;
  box-sizing: border-box;
}
@media print, only screen and (max-width: 1080px) {
  .header-inner {
    min-width: unset;
    padding-left: 20px;
    padding-right: 0;
    height: 60px;
  }
}
.header-right {
  display: flex;
  align-items: center;
}
@media print, only screen and (max-width: 1080px) {
  .header-right {
    display: none;
  }
}
.header-logo {
  width: 187px;
}
@media print, only screen and (max-width: 1080px) {
  .header-logo {
    width: 150px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-menu-item {
  margin-right: 40px;
}
.header-menu-item__link {
  font-weight: 500;
  font-size: 15px;
  color: #222;
  position: relative;
}
.header-menu-item__link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f40214;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header-menu-item__link:hover {
  color: #f40214;
}
.header-menu-item__link:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header-contact {
  display: flex;
  align-items: center;
  position: relative;
}
.header-contact-item {
  margin-right: 5px;
}
.header-contact-item:nth-of-type(1) .header-contact-item__link {
  background-color: #222;
  border: 1px solid #222;
}
.header-contact-item:nth-of-type(1) .header-contact-item__link:hover {
  color: #222;
  background-color: #fff;
}
.header-contact-item:last-of-type {
  margin-right: 0;
}
.header-contact-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 40px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background-color: #f40214;
  border: 1px solid #f40214;
  box-sizing: border-box;
  transition: 0.3s;
  border-radius: 20px;
}
.header-contact-item__link:hover {
  color: #f40214;
  background-color: #fff;
}
.header-sp {
  display: none;
}
@media print, only screen and (max-width: 1080px) {
  .header-sp {
    display: block;
  }
}
.header-sp-logo {
  position: absolute;
  top: 30px;
  left: 20px;
  transform: translateY(-50%);
}
.header-sp-logo-link__img {
  width: 150px;
}
.header-sp-nav {
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 2;
  transition: all 0.8s;
  overflow-y: auto;
  max-height: 100vh;
}
.header-sp-nav.active {
  transform: translateY(0%);
}
.header-sp-nav-inner {
  padding-top: 80px;
  background-color: #fff;
  position: relative;
}
.header-sp-nav-menu {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 35px;
  box-sizing: border-box;
}
.header-sp-nav-menu-item {
  box-sizing: border-box;
  border-top: 1px solid #e1e1e1;
}
.header-sp-nav-menu-item:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}
.header-sp-nav-menu-item__link {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #222;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 10px;
  padding-right: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.header-sp-nav-menu-item__link::before {
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header-sp-nav-contact {
  display: flex;
  width: 100%;
}
.header-sp-nav-contact-item {
  width: 50%;
}
.header-sp-nav-contact-item:nth-of-type(1) .header-sp-nav-contact-item__link {
  background-color: #222;
}
.header-sp-nav-contact-item:nth-of-type(2) .header-sp-nav-contact-item__link {
  background-color: #f40214;
}
.header-sp-nav-contact-item__link {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.header-sp-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  background-color: #222;
}
.header-sp-btn-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31px;
  height: 24px;
}
.header-sp-btn span {
  display: block;
  position: absolute;
  width: 31px;
  height: 2px;
  background-color: #fff;
  transition: 0.35s ease-in-out;
  border-radius: 2px;
}
.header-sp-btn span:nth-child(1) {
  top: 0px;
}
.header-sp-btn span:nth-child(2) {
  top: 10px;
}
.header-sp-btn span:nth-child(3) {
  top: 20px;
}
.header-sp-btn.active {
  position: fixed;
  /* 最初のspanをマイナス45度に */
}
.header-sp-btn.active span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.header-sp-btn.active span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg);
}
.header-sp-btn.active span:nth-child(3) {
  top: 50%;
  transform: rotate(45deg);
}

/* -------------------------------------------- */
/* footer */
/* -------------------------------------------- */
.footer-slider {
  padding-top: 50px;
}
@media print, only screen and (max-width: 850px) {
  .footer-slider {
    padding-top: 40px;
  }
}
.footer-slider-item {
  margin-right: 100px;
}
@media print, only screen and (max-width: 850px) {
  .footer-slider-item {
    margin-right: 60px;
  }
}
@media print, only screen and (max-width: 850px) {
  .footer-slider-item img {
    height: 56px;
  }
}
.footer-contact {
  background-image: url(../img/common/footer-contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-contact-inner {
  max-width: 820px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-inner {
    max-width: 90%;
    width: 100%;
  }
}
.footer-contact-inner {
  padding-top: 90px;
  padding-bottom: 120px;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-inner {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.footer-contact-heading__main {
  color: #333;
  font-family: "Poppins";
  font-size: 62px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-heading__main {
    font-size: 48px;
  }
}
.footer-contact-heading__sub {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-contact-heading {
  text-align: center;
  margin-bottom: 55px;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-heading {
    margin-bottom: 30px;
  }
}
.footer-contact-heading__main {
  color: #f40214;
}
.footer-contact-text {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.04em;
}
.footer-contact-list {
  display: flex;
  width: 100%;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-list {
    flex-direction: column;
  }
}
.footer-contact-list-item {
  width: 100%;
  max-width: 400px;
  margin-right: 20px;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-list-item {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
.footer-contact-list-item:last-of-type {
  margin-right: 0;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-list-item:last-of-type {
    margin-right: auto;
    margin-bottom: 0;
  }
}
.footer-contact-list-item:nth-of-type(1) .footer-contact-list-item__link {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid #fff;
  box-sizing: border-box;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-list-item:nth-of-type(1) .footer-contact-list-item__link {
    font-size: 18px;
  }
}
.footer-contact-list-item:nth-of-type(1) .footer-contact-list-item__link::before {
  content: "";
  width: 15px;
  height: 24px;
  display: block;
  margin-right: 6px;
  background-image: url(../img/common/contact-tel-icon.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: 0.3s;
}
.footer-contact-list-item:nth-of-type(1) .footer-contact-list-item__link:hover {
  background: rgba(244, 2, 20, 0.25);
}
.footer-contact-list-item:nth-of-type(2) .footer-contact-list-item__link {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #222;
}
.footer-contact-list-item:nth-of-type(2) .footer-contact-list-item__link:hover {
  background-color: #f40214;
}
.footer-contact-list-item:nth-of-type(2) .footer-contact-list-item__link::before {
  content: "";
  width: 24px;
  height: 16px;
  display: block;
  margin-right: 15px;
  background-image: url(../img/common/contact-mail-icon.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: 0.3s;
}
.footer-contact-list-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  line-height: 80px;
  box-sizing: border-box;
  transition: 0.3s;
}
@media print, only screen and (max-width: 850px) {
  .footer-contact-list-item__link {
    height: 70px;
    line-height: 70px;
  }
}
.footer-content {
  background-color: #4A4A48;
  background-color: #000000;
}
.footer-content .infiniteslide_wrap {
  background-color: #f40214;
  padding: 20px 0;
}
.footer-content .infiniteslide_wrap .footer-slider {
  padding: 0;
}
.footer-content-inner {
  max-width: 1200px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media print, only screen and (max-width: 850px) {
  .footer-content-inner {
    max-width: 90%;
    width: 100%;
  }
}
.footer-content-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 107px;
}
@media print, only screen and (max-width: 850px) {
  .footer-content-inner {
    padding-top: 40px;
    padding-bottom: 50px;
    flex-direction: column;
  }
}
.footer-left {
  display: flex;
  flex-direction: column;
  width: 40%;
  max-width: 400px;
}
@media print, only screen and (max-width: 850px) {
  .footer-left {
    width: 100%;
    max-width: 100%;
  }
}
.footer-right {
  width: 54%;
  max-width: 540px;
}
@media print, only screen and (max-width: 850px) {
  .footer-right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}
.footer-map {
  width: 100%;
  height: 360px;
  min-height: 200px;
}
@media print, only screen and (max-width: 850px) {
  .footer-map {
    height: auto;
  }
}
.footer-logo {
  /* width: 190px; */
  height: auto;
}
@media print, only screen and (max-width: 850px) {
  .footer-logo {
    /* width: 150px; */
  }
}
.footer-logo-link {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}
.footer-address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-menu {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 23px;
}
@media print, only screen and (max-width: 850px) {
  .footer-menu {
    max-width: 100%;
  }
}
@media print, only screen and (max-width: 850px) {
  .footer-menu-list {
    width: 50%;
  }
}
.footer-menu-list-item__link {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 2em;
}
.footer-menu-list-item__link:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.footer-copyright {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  padding-top: 44px;
  margin-top: auto;
}

.breadcrumb-inner {
  max-width: 1200px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media print, only screen and (max-width: 850px) {
  .breadcrumb-inner {
    max-width: 90%;
    width: 100%;
  }
}
.breadcrumb-inner {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #999999;
  padding-top: 93px;
}
@media print, only screen and (max-width: 850px) {
  .breadcrumb-inner {
    padding-top: 50px;
  }
}
.breadcrumb-inner > span a {
  color: #999999;
}
.breadcrumb-inner > span:last-of-type {
  color: #222;
}/*# sourceMappingURL=common.css.map */