@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Oswald:wght@700&display=swap");
html {
  font-size: 10px;
}

body {
  font-size: 18px;
  color: #0f1315;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

@keyframes scrollAnim {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 140px;
    opacity: 0;
  }
}
.l-header {
  position: absolute;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
}
.l-header__logo {
  position: absolute;
  left: 60px;
  top: 40px;
}
@media screen and (max-width: 1079px) {
  .l-header__logo {
    left: 15px;
    top: 8px;
    max-width: 140px;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 30px;
  }
  .l-header__nav .c-list-nav {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1079px) {
  .l-header__nav {
    padding: 50px 0;
    height: 100vh;
    max-width: 310px;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    overflow-y: scroll;
    right: -50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s, right 0.5s;
  }
  .l-header__nav .c-list-nav {
    display: block;
  }
  .l-header__nav .c-list-nav__item {
    border-bottom: 2px solid #0f1315;
  }
  .l-header__nav .c-list-nav__item:not(:first-child)::before {
    content: normal;
  }
  .l-header__nav .c-list-nav__item a {
    color: #0f1315;
    padding: 10px 20px;
    position: relative;
  }
  .l-header__nav .c-list-nav__item a::before {
    content: "\f054";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
  }
}
.l-header__ham {
  display: none;
}
@media screen and (max-width: 1079px) {
  .l-header__ham {
    display: block;
    position: fixed;
    right: 0;
    width: 50px;
    height: 50px;
    top: 0;
    background-color: #0f1315;
    z-index: 9999;
  }
  .l-header__ham::before, .l-header__ham::after {
    content: "";
    height: 2px;
    width: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    background-color: #fff;
    transition: all 0.3s;
  }
  .l-header__ham::before {
    margin-top: -3px;
  }
  .l-header__ham::after {
    margin-top: 3px;
  }
  .l-header__ham.is-active::before, .l-header__ham.is-active::after {
    margin-top: 0;
  }
  .l-header__ham.is-active::before {
    transform: rotate(-15deg);
  }
  .l-header__ham.is-active::after {
    transform: rotate(15deg);
  }
}
.l-header__overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(15, 19, 21, 0.5);
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (max-width: 1079px) {
  .l-header.is-active .l-header__nav {
    opacity: 1;
    visibility: visible;
    right: 0;
  }
}
@media screen and (max-width: 1079px) {
  .l-header.is-active .l-header__overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1080px) {
  .subpage .l-header {
    position: static;
    background-color: #fff;
  }
  .subpage .l-header__logo {
    top: 20px;
  }
  .subpage .l-header .c-list-nav__item a {
    color: #0f1315;
  }
}

.l-footer {
  padding: 60px 0 15px;
  background: url(../img/common/f_bg.jpg) no-repeat center center/cover;
  color: #fff;
  position: relative;
}
.l-footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(15, 19, 21, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.l-footer .c-inner {
  position: relative;
  z-index: 2;
}
.l-footer__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .l-footer__flex {
    display: block;
  }
}
.l-footer__add {
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .l-footer__add {
    margin-bottom: 40px;
  }
}
.l-footer__add h2 {
  margin-bottom: 10px;
}
.l-footer__add p {
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .l-footer__add p {
    font-size: 1.4rem;
  }
}
.l-footer__copy {
  margin-top: 120px;
}
@media screen and (max-width: 800px) {
  .l-footer__copy {
    margin-top: 80px;
  }
}
.l-footer__copy small {
  font-size: 1rem;
}

@media screen and (max-width: 1079px) {
  .l-main--sub {
    margin-top: 50px;
  }
}
.l-main--sub__hdg {
  padding: 30px;
}
@media screen and (max-width: 800px) {
  .l-main--sub__hdg {
    padding: 20px;
  }
}
.l-main--sub__hdg .c-hdg02::before, .l-main--sub__hdg .c-hdg02::after {
  content: normal;
}
.l-main--sub + .p-top-link {
  border-bottom: 1px solid #0f1315;
}

.c-hdg01 {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .c-hdg01 {
    font-size: 2rem;
  }
}

.c-hdg02 {
  width: fit-content;
  font-weight: bold;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .c-hdg02 {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}
.c-hdg02__en {
  font-size: 5rem;
  display: block;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 800px) {
  .c-hdg02__en {
    font-size: 3rem;
  }
}
.c-hdg02::before, .c-hdg02::after {
  content: "";
  width: 2px;
  height: 100px;
  background-color: #0f1315;
  position: absolute;
  top: 0;
  transform: rotate(20deg);
}
@media screen and (max-width: 800px) {
  .c-hdg02::before, .c-hdg02::after {
    height: 100%;
  }
}
.c-hdg02::before {
  left: 0;
}
.c-hdg02::after {
  right: -10px;
}

.c-hdg03 {
  font-size: 3.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .c-hdg03 {
    font-size: 2rem;
  }
}
.c-hdg03__en {
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 800px) {
  .c-hdg03__en {
    font-size: 1.5rem;
  }
}

.c-hdg04 {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  padding-top: 55px;
  padding-left: 110px;
}
@media screen and (max-width: 800px) {
  .c-hdg04 {
    font-size: 2rem;
    padding-top: 30px;
    padding-left: 70px;
    margin-bottom: 20px;
  }
}
.c-hdg04__num {
  font-size: 8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .c-hdg04__num {
    font-size: 5rem;
  }
}
.c-hdg04__num::before {
  content: attr(data-en);
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 800px) {
  .c-hdg04__num::before {
    font-size: 1.2rem;
  }
}

.c-hdg05 {
  font-weight: bold;
  position: relative;
  letter-spacing: 0.04em;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .c-hdg05 {
    font-size: 1.2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.c-hdg05::after {
  content: attr(data-en);
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 800px) {
  .c-hdg05::after {
    font-size: 2.4rem;
  }
}
.c-hdg05::before {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #006faa;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.c-btn-tel {
  display: block;
  width: 280px;
  background-color: #0f1315;
  color: #fff;
  padding: 14px 25px 14px 80px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 1079px) {
  .c-btn-tel {
    width: 100%;
    padding: 12px 20px 12px 60px;
  }
}
.c-btn-tel__txt {
  font-size: 1.4rem;
  display: block;
}
.c-btn-tel__num {
  font-size: 2.4rem;
  display: block;
}
@media screen and (max-width: 1079px) {
  .c-btn-tel__num {
    font-size: 2rem;
  }
}
.c-btn-tel::before {
  content: "\f2a0";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  left: 30px;
  top: 46%;
  font-size: 3.5rem;
  transform: rotate(-20deg) translateY(-50%);
}
@media screen and (max-width: 1079px) {
  .c-btn-tel::before {
    font-size: 3rem;
    left: 25px;
  }
}
.c-btn-tel::after {
  content: "";
  width: 2px;
  height: 44px;
  background-color: #fff;
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}
@media screen and (max-width: 1079px) {
  .c-btn-tel::after {
    left: 50px;
    height: 40px;
  }
}
.c-btn-tel:hover {
  background-color: #006faa;
}

.c-btn01 {
  display: block;
  background-color: #0f1315;
  color: #fff;
  max-width: 300px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 15px;
  position: relative;
  transition: all 0.3s;
}
.c-btn01::after {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  right: 30px;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .c-btn01::after {
    right: 20px;
  }
}
.c-btn01:hover {
  background-color: #006faa;
}

.c-btn-card {
  display: block;
  position: relative;
  color: #fff;
  text-align: center;
}
.c-btn-card::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(15, 19, 21, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: opacity 0.5s;
}
.c-btn-card::after {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid #fff;
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 15px;
}
@media screen and (max-width: 800px) {
  .c-btn-card::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
  }
}
.c-btn-card__img {
  overflow: hidden;
}
.c-btn-card__img img {
  transition: transform 0.5s;
}
.c-btn-card__txt {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}
.c-btn-card__txt .c-hdg03 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .c-btn-card__txt .c-hdg03 {
    margin-bottom: 20px;
  }
}
.c-btn-card__more {
  display: block;
  background-color: #fff;
  color: #0f1315;
  font-size: 1.5rem;
  width: 250px;
  padding: 10px;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .c-btn-card__more {
    font-size: 1.3rem;
    width: 200px;
  }
}
.c-btn-card__more::after {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn-card:hover::before {
  opacity: 0.5;
}
.c-btn-card:hover .c-btn-card__img img {
  transform: scale(1.05);
}
.c-btn-card:hover .c-btn-card__more {
  background-color: #0f1315;
  color: #fff;
}

.c-btn-tel02 {
  display: block;
  text-align: center;
  background-color: #006faa;
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.2;
  padding: 20px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .c-btn-tel02 {
    font-size: 2.2rem;
    padding: 15px;
  }
}
.c-btn-tel02__txt {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .c-btn-tel02__txt {
    font-size: 1.3rem;
  }
}
.c-btn-tel02 i {
  font-size: 0.8em;
  transform: rotate(-20deg);
  margin-right: 0.2em;
  position: relative;
  top: -0.1em;
}
.c-btn-tel02::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #fff;
  position: absolute;
  left: 10px;
  top: 10px;
  transition: border-color 0.3s;
}
@media screen and (max-width: 800px) {
  .c-btn-tel02::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    top: 5px;
  }
}
.c-btn-tel02:hover {
  background-color: #fff;
  color: #006faa;
}
.c-btn-tel02:hover::before {
  border-color: #006faa;
}

.c-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;
  font-size: 2rem;
  border: 3px solid #0f1315;
  background-color: #fff;
  padding: 29px 0;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .c-btn-contact {
    font-size: 1.6rem;
    gap: 20px;
    padding: 15px;
  }
}
.c-btn-contact:hover {
  background-color: #0f1315;
  color: #fff;
}

.c-btn-line {
  display: block;
  border: 10px solid #fff;
  background-color: #0fa203;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  padding: 25px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .c-btn-line {
    font-size: 1.6rem;
    padding: 13px;
    border-width: 7px;
  }
}
.c-btn-line::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 3px solid #0fa203;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .c-btn-line::before {
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    left: -7px;
    top: -7px;
  }
}
.c-btn-line::after {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .c-btn-line::after {
    right: 15px;
  }
}
.c-btn-line:hover {
  border-color: #0fa203;
  color: #0fa203;
  background-color: #fff;
}

.c-inner {
  max-width: 1130px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.c-list-nav {
  display: flex;
  font-size: 15px;
}
@media screen and (max-width: 800px) {
  .c-list-nav {
    display: block;
  }
}
.c-list-nav__item {
  position: relative;
}
@media screen and (min-width: 801px) {
  .c-list-nav__item:not(:first-child)::before {
    content: "";
    width: 2px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 6px;
    transform: rotate(15deg);
  }
}
.c-list-nav__item a {
  color: #fff;
  display: block;
  padding: 5px 25px;
  position: relative;
  transition: color 0.3s;
}
@media screen and (max-width: 800px) {
  .c-list-nav__item a {
    padding: 5px 1em;
  }
  .c-list-nav__item a::before {
    content: "\f054";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
  }
}
.c-list-nav__item a:hover {
  color: #006faa !important;
}

.c-list-service {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 25px;
}
@media screen and (max-width: 800px) {
  .c-list-service {
    gap: 30px 10px;
  }
}
.c-list-service__item {
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 800px) {
  .c-list-service__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 499px) {
  .c-list-service__item {
    width: 100%;
  }
}

.c-list-link {
  display: flex;
}
@media screen and (max-width: 800px) {
  .c-list-link {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 801px) {
  .c-list-link__item {
    flex: 1;
  }
  .c-list-link__item:nth-child(even) {
    margin-top: 30px;
  }
}

.c-list-cv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 40px;
}
@media screen and (max-width: 800px) {
  .c-list-cv {
    gap: 20px;
  }
}
.c-list-cv__item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 800px) {
  .c-list-cv__item {
    width: 100%;
    max-width: 300px;
  }
}

.c-list-service02__item {
  margin-top: 80px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .c-list-service02__item {
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
}
.c-list-service02__item__txt {
  max-width: 650px;
}
.c-list-service02__item__txt p {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .c-list-service02__item__txt p {
    margin-bottom: 20px;
  }
}
.c-list-service02__item:nth-child(odd) .c-list-service02__item__img {
  margin-left: -300px;
}
@media screen and (max-width: 1699px) {
  .c-list-service02__item:nth-child(odd) .c-list-service02__item__img {
    margin-left: -15px;
  }
}
.c-list-service02__item:nth-child(even) {
  flex-direction: row-reverse;
}
.c-list-service02__item:nth-child(even) .c-list-service02__item__img {
  margin-right: -300px;
}
@media screen and (max-width: 1699px) {
  .c-list-service02__item:nth-child(even) .c-list-service02__item__img {
    margin-right: -15px;
  }
}

.c-card01 {
  padding: 30px 20px 40px;
  border: 2px solid #d6d6d6;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .c-card01 {
    padding: 15px 10px 20px;
  }
}
.c-card01__num {
  font-size: 8rem;
  color: #d6d6d6;
  position: absolute;
  left: 20px;
  top: 0;
  transform: translateY(-45%);
}
@media screen and (max-width: 800px) {
  .c-card01__num {
    font-size: 5rem;
    top: -5px;
    left: 10px;
  }
}
.c-card01__hdg {
  width: fit-content;
  padding: 10px 30px 0 0;
  background-color: #fff;
  position: relative;
  font-weight: bold;
  top: -15px;
}
@media screen and (max-width: 800px) {
  .c-card01__hdg {
    top: -10px;
    padding: 5px 15px 0 0;
  }
}
.c-card01__hdg + p {
  border-top: 2px solid #707070;
  font-size: 1.5rem;
  padding-top: 1em;
}

.c-card02 {
  padding: 40px;
}
@media screen and (max-width: 800px) {
  .c-card02 {
    padding: 20px 15px;
  }
}
.c-card02__dt {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .c-card02__dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.c-card02__dd {
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .c-card02__dd {
    font-size: 1.4rem;
  }
}

.c-cv {
  padding: 60px 0 100px;
}
@media screen and (max-width: 800px) {
  .c-cv {
    padding: 60px 0;
  }
}
.c-cv .c-hdg02 {
  margin-bottom: 40px;
}

.c-form table {
  margin: 2em 0;
  width: 100%;
}
.c-form table th {
  width: 200px;
  padding: 1.6em 0;
}
@media screen and (max-width: 800px) {
  .c-form table th {
    padding: 0;
    display: block;
    width: 100%;
  }
}
.c-form table td {
  padding: 1em 0;
}
@media screen and (max-width: 800px) {
  .c-form table td {
    padding: 0.5em 0 1em;
    display: block;
    width: 100%;
  }
}
.c-form table td input,
.c-form table td textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.5em 1em;
  outline: none;
  border: 2px solid #d5d5d5;
}
@media screen and (max-width: 800px) {
  .c-form table td input,
  .c-form table td textarea {
    padding: 0.5em;
  }
}
.c-form table td input:focus,
.c-form table td textarea:focus {
  border-color: #006faa;
}
.c-form table td input {
  max-width: 450px;
}
.c-form__privacy__box {
  background-color: #fff;
  height: 180px;
  overflow-y: scroll;
  padding: 2em 2.5em 1em;
  line-height: 1.4;
  margin-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .c-form__privacy__box {
    font-size: 1.4rem;
    padding: 20px 15px 10px;
  }
}
.c-form__privacy__box h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #0f1315;
}
@media screen and (max-width: 800px) {
  .c-form__privacy__box h2 {
    font-size: 1.6rem;
  }
}
.c-form__privacy__box dt {
  margin-bottom: 0.5em;
}
.c-form__privacy__box dd {
  margin-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .c-form__privacy__box dd {
    margin-bottom: 1.5em;
  }
}
.c-form__privacy__box dd ul li {
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}
.c-form .mwform-checkbox-field {
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.c-form .mwform-checkbox-field input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  border-radius: 2px;
  line-height: 1;
  cursor: pointer;
  padding-left: 30px;
}
.c-form .mwform-checkbox-field input[type=checkbox] + span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid #c1c1c1;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}
.c-form .mwform-checkbox-field input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-left: 3px solid #006faa;
  border-bottom: 3px solid #006faa;
  transform: rotate(-40deg);
  transition: all 0.3s;
  opacity: 0;
}
.c-form .mwform-checkbox-field input[type=checkbox]:checked + span::before {
  border-color: #006faa;
}
.c-form .mwform-checkbox-field input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.c-form .c-btn01 {
  margin: 40px auto 0;
}

.p-top {
  overflow-x: hidden;
}

.p-top-fv {
  position: relative;
}
.p-top-fv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.p-top-fv__catch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 43%;
}
@media screen and (max-width: 800px) {
  .p-top-fv__catch {
    width: 60%;
  }
}
.p-top-fv__catch img {
  width: 100%;
}
.p-top-fv__scroll-down {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  bottom: 0;
  padding: 0 0 15px 4px;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 3;
}
.p-top-fv__scroll-down::before {
  content: "";
  width: 2px;
  height: 140px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: scrollAnim 1.6s ease-in-out 0s infinite;
}
@media screen and (max-width: 800px) {
  .p-top-fv__scroll-down {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .p-top-fv__slider img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }
}

.p-top-desc {
  padding: 140px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-top-desc {
    padding: 60px 0;
  }
}
.p-top-desc__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .p-top-desc__flex {
    display: block;
  }
}
.p-top-desc__txt {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .p-top-desc__txt {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-top-desc__txt .c-hdg01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .p-top-desc__txt .c-hdg01 {
    margin-bottom: 20px;
  }
}
.p-top-desc__img {
  width: calc(50vw - 50px);
  margin-right: calc(-50vw + 50%);
}
@media screen and (max-width: 800px) {
  .p-top-desc__img {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
}
.p-top-desc__img img {
  width: 100%;
}
.p-top-desc__img02 {
  position: absolute;
  max-width: 330px;
  left: 60px;
  bottom: -240px;
}
@media screen and (max-width: 800px) {
  .p-top-desc__img02 {
    position: static;
    margin-top: 40px;
  }
}

.p-top-service {
  padding: 130px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-top-service {
    padding: 60px 0;
  }
}
.p-top-service .c-hdg02 {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .p-top-service .c-hdg02 {
    margin-bottom: 40px;
  }
}
.p-top-service .c-btn01 {
  margin: 40px auto 0;
}

.p-top-link {
  padding: 60px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-top-link {
    padding: 60px 0;
  }
}

.p-top-company {
  padding: 60px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-top-company {
    padding: 60px 0;
  }
}
.p-top-company .c-hdg02 {
  margin-bottom: 40px;
}
.p-top-company__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .p-top-company__flex {
    display: block;
  }
}
.p-top-company__img {
  width: calc(50vw - 50px);
  margin-left: calc(-50vw + 50%);
}
@media screen and (max-width: 800px) {
  .p-top-company__img {
    width: calc(100% + 15px);
    margin-left: -15px;
  }
}
.p-top-company__txt {
  padding-top: 40px;
  width: 50%;
}
@media screen and (max-width: 800px) {
  .p-top-company__txt {
    width: 100%;
  }
}
.p-top-company__txt .c-hdg01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .p-top-company__txt .c-hdg01 {
    margin-bottom: 20px;
  }
}
.p-top-company__txt p {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .p-top-company__txt .c-btn01 {
    margin: 0 auto;
  }
}

.p-service {
  overflow-x: hidden;
}
.p-service-cont {
  padding: 80px 0 100px;
}
@media screen and (max-width: 800px) {
  .p-service-cont {
    padding: 60px 0 80px;
  }
}
.p-service-cont .c-hdg01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .p-service-cont .c-hdg01 {
    margin-bottom: 30px;
  }
}

.p-company-message {
  padding: 60px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-company-message {
    padding: 40px 0 60px;
  }
}
.p-company-message__flex {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .p-company-message__flex {
    max-width: 500px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.p-company-message__flex .img {
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .p-company-message__flex .img {
    flex-shrink: unset;
    width: 100%;
    text-align: center;
  }
}
.p-company-message__flex .txt .c-hdg01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .p-company-message__flex .txt .c-hdg01 {
    margin-bottom: 20px;
  }
}
.p-company-overview {
  padding: 60px 0 80px;
}
@media screen and (max-width: 800px) {
  .p-company-overview {
    padding: 40px 0 60px;
  }
}
.p-company-overview table {
  width: 100%;
  border: 1px solid #d5d5d5;
}
.p-company-overview table th {
  padding: 25px 50px;
  font-weight: bold;
  background-color: #f2f4f5;
}
@media screen and (max-width: 800px) {
  .p-company-overview table th {
    padding: 15px;
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-company-overview table td {
  vertical-align: middle;
  padding: 10px 50px;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .p-company-overview table td {
    padding: 15px;
    font-size: 1.4rem;
  }
}
.p-company-overview table tr:not(:last-child) th,
.p-company-overview table tr:not(:last-child) td {
  border-bottom: 2px dashed #d5d5d5;
}

.p-vehicle-cont {
  padding: 60px 0 100px;
}
@media screen and (max-width: 800px) {
  .p-vehicle-cont {
    padding: 40px 0 60px;
  }
}
.p-vehicle-cont__item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .p-vehicle-cont__item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-vehicle-cont__item p {
  margin: 40px 0 30px;
}
@media screen and (max-width: 800px) {
  .p-vehicle-cont__item p {
    margin: 20px 0;
    line-height: 1.4;
  }
}
.p-vehicle-cont__flex {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .p-vehicle-cont__flex {
    flex-wrap: wrap;
  }
  .p-vehicle-cont__flex .img {
    width: 100%;
    text-align: center;
  }
}
.p-vehicle-cont__flex .c-card02 {
  width: 100%;
}

.p-price-cont {
  padding: 60px 0 100px;
}
@media screen and (max-width: 800px) {
  .p-price-cont {
    padding: 40px 0 60px;
  }
}

.p-contact-cont {
  padding: 60px 0 100px;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .p-contact-cont {
    padding: 40px 0 60px;
  }
}
.p-contact-cont .u-bg-gray {
  padding: 40px 20px 100px;
}
@media screen and (max-width: 800px) {
  .p-contact-cont .u-bg-gray {
    padding: 20px 15px 60px;
  }
}
.p-contact-cont__inner {
  max-width: 900px;
  margin: 0 auto;
}
.p-contact-cont__inner > p {
  line-height: 1.6;
}

.u-bold {
  font-weight: bold;
}

.u-tac {
  text-align: center;
}

.u-bg-gray {
  background-color: #f2f4f5;
}

.u-bg-black {
  background-color: #0f1315;
  color: #fff;
}

.u-blue {
  color: #006faa;
}

.u-red {
  color: #b93232;
}

.u-bg-blue {
  background-color: #006faa;
  color: #fff;
}

.u-bg01 {
  background: url(../img/common/bg01.jpg) no-repeat center center/cover;
}

.u-oswald {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.04em;
}/*# sourceMappingURL=style.css.map */