body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #232526;
}
body a {
  color: #232526;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.sp_only {
  display: none;
}

.bold {
  font-weight: bold;
}

.mulish {
  font-family: "Mulish", sans-serif;
  font-weight: 900;
}

.inner {
  box-sizing: content-box;
  width: 96%;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

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

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .inner {
    width: 90%;
    padding: 0 5%;
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.header {
  height: 70px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.header_logo {
  max-width: 140px;
  margin-left: 2%;
}

.nav_list {
  display: flex;
  align-items: center;
}
.nav_list li:not(:last-child) {
  font-size: 14px;
  margin-right: 30px;
}

.header_contact {
  display: flex;
  align-items: center;
  width: 200px;
  height: 70px;
  line-height: 1.2;
  background: #51a8ae;
  color: #fff;
  font-size: 14px;
  position: relative;
  padding-left: 50px;
}
.header_contact::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  height: 1px;
  background: #fff;
}

.nav {
  position: relative;
}
.nav::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #51a8ae;
  border-radius: 50%;
  bottom: -15px;
  left: calc(50% - 5px);
  opacity: 0;
  transform: translateY(50%);
}

.menu_toggle {
  display: none;
}

@media screen and (max-width: 1000px) {
  .nav_list li:not(:last-child) {
    margin-right: 20px;
  }
  .header_contact {
    display: block;
    width: 150px;
    height: 70px;
    background: #51a8ae;
    color: #fff;
    font-size: 16px;
    position: relative;
    padding-left: 50px;
    padding-top: 16px;
  }
  .header_contact::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .nav::after {
    transition: all 0.6s ease;
  }
  .nav:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
  .header_logo a,
  .header_contact {
    transition: 0.3s ease-in-out;
  }
  .header_logo a:hover,
  .header_contact:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
  .header_logo {
    margin-left: 5%;
  }
  .nav_list {
    display: block;
  }
  .nav_list li {
    margin: 20px 0;
  }
  .nav_list li:not(:last-child) {
    font-size: 16px;
    margin-right: 0;
  }
  .nav_list li:last-child {
    margin-top: 40px;
  }
  .header_contact {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding-top: 0;
  }
  .nav_wrap {
    background: #fff;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    padding: 10px 5% 0;
  }
  .menu_toggle {
    position: absolute;
    top: 18px;
    right: 3%;
    display: block;
    height: 24px;
    cursor: pointer;
  }
  .menu_toggle div {
    position: relative;
    width: 32px;
  }
  .menu_toggle span {
    width: 100%;
    z-index: 100;
    height: 2px;
    right: 0;
    display: block;
    background: #000;
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .menu_toggle span:nth-child(1) {
    top: 0;
  }
  .menu_toggle span:nth-child(2) {
    top: 11px;
  }
  .menu_toggle span:nth-child(3) {
    top: 22px;
  }
  .is-open {
    overflow: hidden;
  }
  .is-open .nav_wrap {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .is-open .menu_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  .is-open .menu_toggle span:nth-child(2) {
    opacity: 0;
  }
  .is-open .menu_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.mv {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .mv {
    padding-top: 0;
  }
}
/*----------------------------------------------------- */
/*  intro           */
/*----------------------------------------------------- */
.intro {
  padding: 120px 0 60px;
  background: url(../images/bg_intro.png) center bottom 40% no-repeat;
  background-size: 930px;
}

.intro_ttl {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 70px;
}
.intro_ttl span {
  background: url(../images/bg_ttl_01.png) center bottom no-repeat;
  background-size: contain;
  padding-bottom: 40px;
}
.intro_ttl em {
  color: #51a8ae;
  font-weight: bold;
  background-image: radial-gradient(circle at center, #51a8ae 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  padding-top: 0.03em;
}

.intro_txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: 80px;
}

.intro_pic {
  max-width: 1042px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .intro {
    padding: 60px 0 100px;
    background: url(../images/bg_intro.png) center bottom 3% no-repeat;
    background-size: 90%;
  }
  .intro_ttl {
    font-size: 6.15vw;
    margin-bottom: 30px;
  }
  .intro_ttl span {
    display: inline-block;
    background: url(../images/bg_ttl_02.png) center bottom no-repeat;
    background-size: contain;
    padding-bottom: 5%;
  }
  .intro_txt {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .intro_pic {
    max-width: 1042px;
    margin: 0 auto;
  }
}
/*----------------------------------------------------- */
/*  connect           */
/*----------------------------------------------------- */
.connect {
  background: #51a8ae;
  padding: 100px 0 140px;
}

.connect_ttl {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 70px;
}
.connect_ttl span {
  background: url(../images/bg_ttl_01_wht.png) center bottom no-repeat;
  background-size: contain;
  padding-bottom: 30px;
}
.connect_ttl em {
  color: #f4ff00;
  font-weight: bold;
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  padding-top: 0.03em;
}

.connect_txt {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 2.2;
}
.connect_txt em {
  color: #f4ff00;
}

@media screen and (max-width: 767px) {
  .connect {
    padding: 50px 0 70px;
  }
  .connect_ttl {
    font-size: 6.15vw;
    margin-bottom: 30px;
  }
  .connect_ttl span {
    display: inline-block;
    background-size: contain;
    padding-bottom: 5%;
  }
  .connect_txt {
    font-size: 16px;
  }
}
/*----------------------------------------------------- */
/*  top_about           */
/*----------------------------------------------------- */
.top_about {
  background: #f2f5f6;
  padding: 100px 0 140px;
}

.top_about_ttl {
  text-align: center;
  font-size: 96px;
  font-weight: 900;
  color: #51a8ae;
  margin-bottom: 60px;
  padding-bottom: 30px;
  background: url(../images/ico_dot_01.png) center bottom no-repeat;
  background-size: 8px;
}

.top_about_ttl em {
  color: #51a8ae;
  font-weight: bold;
  font-size: 50px;
}

.top_about_txt01 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}

.top_about_txt02 {
  max-width: 740px;
  margin: 0 auto 30px;
}

.top_about_box {
  max-width: 720px;
  margin: 0 auto 70px;
  background: #fff;
  border: 2px solid #51a8ae;
  padding: 40px;
  box-shadow: 10px 10px 0 rgb(255, 255, 255), -10px 10px 0 rgb(255, 255, 255), 10px -10px 0 rgb(255, 255, 255), -10px -10px 0 rgb(255, 255, 255);
}
.top_about_box p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.top_about_box p em {
  color: #51a8ae;
  font-size: 32px;
  font-weight: bold;
  background-image: radial-gradient(circle at center, #51a8ae 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  padding-top: 0.04em;
}
.top_about_box ul {
  text-align: left;
  color: #4a4f50;
  font-size: 20px;
  font-weight: bold;
  margin: 20px auto 0;
}
.top_about_box ul li {
  background: url(../images/ico_check_bg_wht.png) 5px center no-repeat;
  background-color: #f2f5f6;
  background-size: 44px;
  margin: 0 0 10px;
  padding: 5px 0 5px 60px;
}

.top_about_pic {
  max-width: 740px;
  margin: 0 auto 70px;
}

.top_about_txt03 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 80px;
}

.btn {
  display: block;
  max-width: 500px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 8px;
  background: #4a4e50;
  text-align: center;
  margin: 0 auto;
  box-shadow: 5px 5px 4px rgb(74 78 80 / 20%);
}
.btn span {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: url(../images/ico_arrow.png) right center no-repeat;
  background-size: 30px;
  padding: 10px 50px 10px 0;
}
.btn b {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .btn {
    transition: 0.3s ease-in-out;
  }
  .btn:hover {
    box-shadow: none;
    transform: scale(0.99, 0.99) translateY(5px);
  }
}
@media screen and (max-width: 767px) {
  .top_about {
    padding: 50px 0 70px;
  }
  .top_about_ttl {
    font-size: 48px;
    margin-bottom: 30px;
    margin-bottom: 20px;
    padding-bottom: 40px;
    background: url(../images/ico_dot_01.png) center bottom no-repeat;
    background-size: 6px;
  }
  .top_about_ttl em {
    font-size: 24px;
  }  
  .top_about_subttl {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 40px;
    background: url(../images/ico_dot_01.png) center bottom no-repeat;
    background-size: 6px;
  }
  .top_about_subttl em {
    color: #51a8ae;
    font-weight: bold;
    font-size: 24px;
  }
  .top_about_txt01 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .top_about_txt02 {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .top_about_box {
    margin: 0 auto 40px;
    padding: 20px;
    box-shadow: 6px 6px 0 rgb(255, 255, 255), -6px 6px 0 rgb(255, 255, 255), 6px -6px 0 rgb(255, 255, 255), -6px -6px 0 rgb(255, 255, 255);
  }
  .top_about_box p {
    font-size: 16px;
  }
  .top_about_box p em {
    font-size: 24px;
  }
  .top_about_box ul {
    font-size: 16px;
  }
  .top_about_pic {
    margin: 0 auto 30px;
  }
  .top_about_txt03 {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .btn {
    display: block;
    height: 70px;
    line-height: 70px;
  }
  .btn span {
    text-align: center;
    color: #fff;
    font-weight: bold;
    background: url(../images/ico_arrow.png) right center no-repeat;
    background-size: 24px;
    padding: 10px 30px 10px 0;
  }
  .btn b {
    font-size: 18px;
  }
}
/*----------------------------------------------------- */
/*  factoring           */
/*----------------------------------------------------- */
.factoring {
  padding: 140px 0;
}

.factoring_sub_ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.factoring_sub_ttl span {
  background: url(../images/bg_ttl_02.png) center bottom no-repeat;
  background-size: contain;
  padding-bottom: 1%;
}

.factoring_ttl {
  max-width: 507px;
  margin: 0 auto 40px;
}

.factoring_txt {
  max-width: 750px;
  line-height: 2;
  margin: 0 auto 50px;
}

.factoring_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto 70px;
}
.factoring_list li {
  width: 48%;
  background: #fff;
  border: 1px solid #51a8ae;
  padding: 14px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.factoring_list h3 {
  font-size: 20px;
  font-weight: bold;
  background: url(../images/ico_check.png) left center no-repeat;
  background-size: 44px;
  margin-bottom: 10px;
  padding: 5px 0 5px 50px;
}
.factoring_list h3 em {
  color: #51a8ae;
  font-weight: bold;
}
.factoring_list img {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .factoring {
    padding: 70px 0;
  }
  .factoring_sub_ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .factoring_sub_ttl span {
    padding-bottom: 3%;
  }
  .factoring_ttl {
    max-width: 90%;
    margin: 0 auto 30px;
  }
  .factoring_txt {
    margin: 0 auto 30px;
  }
  .factoring_list {
    display: block;
    max-width: 100%;
    margin: 0 auto 40px;
  }
  .factoring_list li {
    width: 100%;
    padding: 10px 10px 20px;
  }
  .factoring_list h3 {
    font-size: 16px;
    background: url(../images/ico_check.png) left center no-repeat;
    background-size: 32px;
    padding: 5px 0 5px 40px;
  }
  .factoring_list img {
    max-width: 70%;
  }
}
/*----------------------------------------------------- */
/*  strength           */
/*----------------------------------------------------- */
.top_strength {
  background: #f2f5f6;
  padding: 100px 0 140px;
}

.top_strength_ttl {
  text-align: center;
  font-size: 96px;
  font-weight: 900;
  color: #51a8ae;
}

.top_strength_txt01 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 10px;
  padding-bottom: 50px;
  background: url(../images/ico_dot_01.png) center bottom no-repeat;
  background-size: 8px;
}
.top_strength_txt01 em {
  color: #51a8ae;
  font-weight: bold;
  font-size: 36px;
}

.top_strength_txt02 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.top_strength_txt02 span {
  background: url(../images/bg_ttl_03.png) center bottom no-repeat;
  background-size: contain;
  padding-bottom: 1%;
}
.top_strength_txt02 em {
  font-size: 36px;
  color: #51a8ae;
  font-weight: bold;
}

.top_strength_txt03 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.top_strength_txt03 em {
  color: #51a8ae;
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 40px;
}

.top_strength_pic {
  max-width: 797px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #51a8ae;
  padding: 40px;
  box-shadow: 10px 10px 0 rgb(255, 255, 255), -10px 10px 0 rgb(255, 255, 255), 10px -10px 0 rgb(255, 255, 255), -10px -10px 0 rgb(255, 255, 255);
}

@media screen and (max-width: 767px) {
  .top_strength {
    padding: 50px 0 70px;
  }
  .top_strength_ttl {
    font-size: 48px;
    line-height: 1.2;
  }
  .top_strength_txt01 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 40px;
    background: url(../images/ico_dot_01.png) center bottom no-repeat;
    background-size: 6px;
  }
  .top_strength_txt01 em {
    font-size: 24px;
  }
  .top_strength_txt02 {
    font-size: 16px;
  }
  .top_strength_txt02 span {
    padding-bottom: 3%;
  }
  .top_strength_txt02 em {
    font-size: 24px;
  }
  .top_strength_txt03 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .top_strength_txt03 em {
    font-size: 32px;
  }
  .top_strength_pic {
    max-width: 797px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #51a8ae;
    padding: 20px;
    box-shadow: 6px 6px 0 rgb(255, 255, 255), -6px 6px 0 rgb(255, 255, 255), 6px -6px 0 rgb(255, 255, 255), -6px -6px 0 rgb(255, 255, 255);
  }
}
/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
  background: #4a4f50;
  padding: 90px 0 20px;
}
.footer .inner {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_wrap {
  max-width: 286px;
  width: 100%;
}

.footer_logo {
  max-width: 120px;
  margin-bottom: 30px;
}

.footer_contact {
  width: 100%;
  background: #51a8ae;
  padding: 15px 0;
  color: #fff;
}
.footer_contact h3 {
  font-size: 14px;
  font-weight: bold;
  padding-left: 48%;
  position: relative;
}
.footer_contact h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 42%;
  height: 1px;
  background: #fff;
}
.footer_contact p {
  font-size: 25px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.footer_contact p span {
  padding-left: 28px;
  background: url(../images/ico_tell.png) left center no-repeat;
  background-size: 18px;
  color: #fff !important;
}

.footer_list {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.footer_list li {
  width: 48%;
  margin-bottom: 25px;
}
.footer_list a {
  color: #fff;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.footer_list a span {
  font-size: 12px;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  display: block;
  transition: 0.3s ease-in-out;
}
.footer_list a:hover,
.footer_list a span:hover {
  opacity: 0.7;
}

.footer_copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer .inner {
    display: block;
  }
  .footer_wrap {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .footer_logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
  .footer_list {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */
