@charset "UTF-8";
:root {
  --gray-color:#5F5F5F;
  --gray-sub-color:#F0F0F0;
  --gray-main-color:#9B9B9B;
  --blrack-color:#151515;
  --white-color:#FFFFFF;
  --main-color:#334149;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.header {
  width: 100%;
  height: 90px;
}

.header-outer {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  width: 100%;
  height: inherit;
}

.header-outer--logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

.header-outer__links {
  display: flex;
  gap: 20px;
}
.header-outer__links li a {
  color: var(--blrack-color);
}

.breadcrumb {
  width: 100%;
  height: 60px;
  background-color: var(--main-color);
}

.breadcrumb__links {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  height: inherit;
  color: var(--white-color);
  font-size: 12px;
}

.breadcrumb__links-item {
  white-space: nowrap;
}
.breadcrumb__links-item a {
  color: var(--white-color);
}

.breadcrumb__links-item-space {
  margin: 0 8px;
}
.breadcrumb__links-item-space a {
  color: var(--white-color);
}

.cta {
  margin-top: 100px;
  width: 100%;
  background: url(../img/cta-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.cta-outer {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.cta-outer--title {
  margin-top: 60px;
  text-align: center;
}
.cta-outer--title img {
  width: 380px;
  text-align: center;
}

.cta-outer--txt {
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
  color: var(--white-color);
  line-height: 1.8;
}

.cta-outer--link {
  display: block;
  margin: 40px auto;
  padding: 24px 170px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 20px;
  color: #AF1C1C;
  background-color: var(--white-color);
  border-radius: 40px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.footer {
  width: 100%;
  height: auto;
  background-color: var(--blrack-color);
  overflow: hidden;
}

.footer-outer {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
}

.footer-outer-inner {
  margin-top: 40px;
}

.footer-outer-inner__links {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-outer-inner--service {
  font-size: 16px;
  color: var(--white-color);
}

.footer-outer-inner--banner {
  margin-top: 10px;
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.footer-outer-inner--banner img {
  width: inherit;
  height: auto;
}

.footer-outer-inner--banner-txt {
  margin-top: 10px;
  font-size: 12px;
  color: var(--white-color);
}

.footer-outer:first-child {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-sub-color);
}
.footer-outer:last-child {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.footer-outer__company {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.footer-outer__company li a {
  font-size: 12px;
  color: var(--white-color);
}

.footer-outer--copy {
  color: var(--white-color);
  font-size: 11px;
}

/*
* 汎用CSS
*/
/* カテゴリー用 */
.category-tag {
  display: block;
  margin: 10px 0;
  padding: 4px 12px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid var(--gray-color);
  border-radius: 10px;
  font-size: 11px;
  color: var(--gray-color);
}

/* クリック時の下線 */
.on-under-line {
  position: relative;
  text-decoration: none;
  color: #1075ff;
  transition: 0.3s;
}

.on:hover .on-under-line {
  color: #0055df;
}

.on-under-line::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--main-color);
  border-bottom: solid 1px #0055df;
  line-height: 1;
  transition: 0.6s;
}

.on:hover .on-under-line::before {
  left: 0;
  width: 100%;
}

/* クリック時の画像スケール */
.on-image-scale {
  overflow: hidden;
}

.on:hover .on-image-scale img {
  transform: scale(1.1);
  transition: 0.6s;
}

/*
* レスポンシブ
*/
@media screen and (max-width: 900px) {
  .header .header-outer, .breadcrumb .breadcrumb__links, .footer .footer-outer {
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .header .header-outer .header-outer__links {
    display: none;
  }
  .footer .footer-outer {
    justify-content: center;
    flex-direction: column;
  }
  .footer .footer-outer:last-child .footer-outer__company {
    justify-content: center;
  }
  .footer-outer--copy {
    margin-top: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .cta .cta-outer {
    width: calc(100% - 20px);
  }
  .cta .cta-outer .cta-outer--title img {
    width: 90%;
  }
  .cta .cta-outer .cta-outer--txt {
    font-size: 18px;
  }
  .cta .cta-outer .cta-outer--link {
    padding: 24px 100px;
  }
}/*# sourceMappingURL=common.css.map */