@charset "UTF-8";
/*===================================================================
# colors
===================================================================*/
/*===================================================================
# font-family
===================================================================*/
.en {
  font-family: "Lato", sans-serif;
}

.ja {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
}

/*===================================================================
# width
===================================================================*/
/*===================================================================
# mixins
===================================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/*===================================================================
# common - 共通するスタイル
===================================================================*/
body {
  font-size: 24px;
  line-height: 1.7916666667;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  color: #202F55;
}

main {
  overflow: hidden;
  margin-top: 101px;
}

.inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .inner {
    padding: 0 40px;
    max-width: 1080px;
    box-sizing: content-box;
  }
}

.section-title {
  padding: 36px 5px;
  text-align: center;
  color: #fff;
  line-height: 1.1607142857;
  background: #202F55;
}
.section-title .en {
  font-size: 56px;
  display: block;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.section-title .ja {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}
.section-title:after {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  color: #202F55;
}
@media screen and (max-width: 767px) {
  .section-title:after {
    font-size: 14px;
  }
}

.header {
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  height: 102px;
  z-index: 100;
  position: fixed;
  padding: 9px 0;
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
    height: 70px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  height: 100%;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 0 40px;
    max-width: 1080px;
    box-sizing: content-box;
  }
}

.header-logo {
  margin-right: auto;
  height: inherit;
  width: 205px;
  animation-name: fadein;
  animation-duration: 1s;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 182px;
    margin-right: auto;
  }
}
.header-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: inherit;
  max-height: 100%;
  width: 100%;
  max-width: 58%;
  background: #fff;
}

.header-nav {
  margin-left: auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav {
    margin-top: 70px;
    background: #0ae8ef;
    height: 100%;
    width: 270px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.5s ease;
    transform: translateX(105%);
    z-index: 300;
    opacity: 0;
  }
  .header-nav.open {
    opacity: 1;
    transform: translateX(0%);
  }
}

.header-nav-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav-list {
    display: block;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-item {
    text-align: right;
    margin-top: 40px;
  }
}
.header-nav-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .header-nav-item:not(:last-child) {
    margin-right: 0;
  }
}
.header-nav-item .header-nav-item-link {
  color: #202F55;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  text-align: center;
  display: block;
  line-height: 1.1666666667;
  padding-right: 20px;
  transform: scale(100%);
  transition: all 0.3s ease;
}
.header-nav-item .header-nav-item-link .en {
  display: block;
  font-size: 18px;
}
.header-nav-item .header-nav-item-link .ja {
  font-size: 16px;
}
.header-nav-item .header-nav-item-link:hover {
  opacity: 0.7;
}
.header-nav-item .header-nav-item-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 2px;
  width: 0;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header-nav-item .header-nav-item-link:hover::after, .header-nav-item .header-nav-item-link.current::after {
  background: #116cf5;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header-icon-bars {
    width: 30px;
    height: 18px;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 30;
    transition: ease 0.5s;
  }
  .header-icon-bars .header-icon-bar1,
  .header-icon-bars .header-icon-bar2,
  .header-icon-bars .header-icon-bar3 {
    width: 30px;
    height: 2px;
    left: 0;
    background: #202F55;
    position: absolute;
    transition: transform 0.5s ease;
  }
  .header-icon-bars .header-icon-bar1 {
    top: 0;
  }
  .header-icon-bars .header-icon-bar1.open {
    transform: rotate(45deg);
    top: 8px;
  }
  .header-icon-bars .header-icon-bar2 {
    top: 8px;
  }
  .header-icon-bars .header-icon-bar2.open {
    display: none;
  }
  .header-icon-bars .header-icon-bar3 {
    bottom: 0;
  }
  .header-icon-bars .header-icon-bar3.open {
    transform: rotate(-45deg);
    bottom: 8px;
  }
}

.main-visual {
  padding-top: 6.563vw;
  padding-bottom: 6.563vw;
  background: #202F55;
}
@media screen and (max-width: 767px) {
  .main-visual {
    padding-top: 22.667vw;
    padding-bottom: 22.667vw;
  }
}
.main-visual .inner {
  max-width: 864px;
}
@media screen and (max-width: 767px) {
  .main-visual .inner {
    padding: 0 36.5px;
  }
}

.main-visual-txt-1 {
  margin: 0 auto 2.135vw;
}
@media (min-width: 768px) {
  .main-visual-txt-1 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-txt-1 {
    width: 90%;
    margin-bottom: 6vw;
  }
}

.main-visual-txt-2 {
  margin: 0 auto 2.396vw;
}
@media (min-width: 768px) {
  .main-visual-txt-2 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-txt-2 {
    width: 55%;
    margin-bottom: 10.933vw;
  }
}

.main-visual-title {
  margin: 0 auto 2.76vw;
}
@media (min-width: 768px) {
  .main-visual-title {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-title {
    margin-bottom: 12vw;
  }
}

.main-visual-subtitle {
  margin: 0 auto 2.656vw;
}
@media (min-width: 768px) {
  .main-visual-subtitle {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-subtitle {
    width: 95%;
    margin-bottom: 12vw;
  }
}

.cv-btn {
  background: #084AF3;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 6px 6px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 404px;
  margin: 0 auto;
  padding: 18px 32px;
}
@media (min-width: 768px) {
  .cv-btn {
    border-radius: 7px;
    padding: 15px 38px;
  }
}

.company {
  margin-top: 100px;
  margin-bottom: 100px;
}
.company .inner {
  max-width: 916px;
}
@media (min-width: 768px) {
  .company .inner {
    padding: 0 40px;
    max-width: 1080px;
    box-sizing: content-box;
  }
}
.company table {
  border-top: 1px dotted #222222;
  width: 100%;
}
.company .company th, .company .company td {
  border-collapse: collapse;
}
.company tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.company th {
  border-bottom: 1px dotted #222222;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: left;
  padding: 20px 40px;
  white-space: nowrap;
}
.company td {
  border-bottom: 1px dotted #222222;
  letter-spacing: 0.05em;
  color: #222;
  padding: 20px 40px 20px 0;
}

.section-title-2 {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 63px;
  position: relative;
}
.section-title-2::after {
  position: absolute;
  content: "";
  width: 94px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  background: #202F55;
}

.profile {
  padding-bottom: 100px;
}
.profile .inner {
  max-width: 800px;
}

.profile-img {
  margin: 100px auto 40px;
  max-width: 400px;
}

.profile-txt {
  background: #fff;
  padding: 60px 0;
}

.onayami {
  padding-top: 100px;
  padding-bottom: 142px;
  background: #F7F8F8;
}

.onayami-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 52px;
}

.onayami-list {
  background: #fff;
  padding: 50px;
  max-width: 904px;
  margin: 0 auto 88px;
  box-shadow: rgba(0, 0, 0, 0.16) 3px 3px 8px;
  position: relative;
}
.onayami-list ::after {
  position: absolute;
  content: "";
  background: transparent url(../img/yazirushi-1.png) no-repeat center center/contain;
  width: 480px;
  height: 37px;
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
}

.onayami-list ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.onayami-list ul li {
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-left: 1.4em;
  position: relative;
  background: url(../img/check.png) left 0px top 12px no-repeat;
  background-size: 25px auto;
}

.onayami-list ul li span {
  font-size: 29px;
}

.yellow-line {
  font-weight: bold;
  background: linear-gradient(to bottom, transparent, transparent 55%, #FFD700 55%, #FFD700 95%, transparent 95%);
}

.onayami-txt {
  position: relative;
}
.onayami-txt h3 {
  text-align: center;
  font-size: 30px;
}
.onayami-txt h3 span {
  font-size: 48px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #084AF3;
}
.onayami-txt img {
  position: absolute;
  content: "";
  background: transparent url(../img/onayami-img.png) no-repeat center center/contain;
  width: 188px;
  height: 171px;
  bottom: -37px;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}

.solution {
  padding-bottom: 51px;
  background: #F7F8F8;
  text-align: center;
}

.solution-title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 101px;
}

.solution-txt {
  background: #fff;
  max-width: 1086px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .solution-txt {
    box-shadow: rgba(0, 0, 0, 0.16) 3px 3px 8px;
    padding: 50px 61px;
    margin-bottom: 52px;
  }
}
.solution-txt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .solution-txt ul li {
    width: calc(25% - 12px);
    margin-right: 12px;
  }
}
.solution-txt ul li::nth-child(4n) {
  margin-right: 0;
}

.solution-subtitle {
  font-size: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.bold {
  font-weight: bold;
}

.but-txt {
  letter-spacing: 0.05em;
}

.service {
  margin-bottom: 100px;
  background: #F7F8F8;
}
.service .inner {
  max-width: 1150px;
}
@media (min-width: 768px) {
  .service .inner {
    padding: 80px 40px;
    max-width: 1080px;
    box-sizing: content-box;
  }
}

.service-txt {
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 77px;
}

.service-contents {
  display: flex;
}

.service-content {
  background: #fff;
}
@media (min-width: 768px) {
  .service-content {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 40px;
    padding: 2% 4%;
  }
}
.service-content::nth-child(2n) {
  margin-right: 0;
}

.service-content-title {
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 34px;
  color: #fff;
  padding: 0 5px;
}

.strength {
  margin-bottom: 100px;
}
.strength .inner {
  max-width: 1150px;
}

.section-title-2 span {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.strength-contents {
  display: flex;
  flex-wrap: wrap;
}

.strength-content {
  background: #fff;
}
@media (min-width: 768px) {
  .strength-content {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 40px;
    padding: 4%;
    border: 5px solid #084AF3;
  }
}
.strength-content::nth-child(2n) {
  margin-right: 0;
}

.strength-content-title {
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 62px;
}

.strength-img {
  margin: 0 auto 5px;
}
.strength-img img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.strength-txt span {
  font-weight: bold;
}

.flow {
  padding-bottom: 100px;
}
.flow .inner {
  max-width: 1150px;
}

.flow-inner {
  background: #fff;
  padding: 80px 20px;
}

.flow-contents {
  display: flex;
  margin-top: 100px;
}

.flow-content {
  position: relative;
}
.flow-content::after {
  position: absolute;
  content: "";
}
@media (min-width: 768px) {
  .flow-content {
    width: calc(25% - 8px);
    margin-right: 10px;
  }
  .flow-content::after {
    background: transparent url(../img/yazirushi-5.png) no-repeat center center/contain;
    width: 38px;
    height: 34px;
    top: 55px;
    right: -25px;
  }
}

@media (min-width: 768px) {
  .flow-step {
    width: 65%;
    margin: 0 auto 40px;
  }
}

.flow-txt {
  background: #F7F8F8;
  padding: 15% 10%;
}
.flow-txt p {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.flow-content-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.contact-inner {
  background: #F7F8F8;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact-inner .inner {
  max-width: 1084px;
}

.contact-txt-1 {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7916666667;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 47px;
}

@media (min-width: 768px) {
  .contact-img {
    position: absolute;
    width: 112px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.contact-btn {
  background: #084AF3;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 6px 6px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 54px;
  margin-bottom: 50px;
}
.contact-btn img {
  vertical-align: middle;
}

.contact-txt-2 {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7916666667;
  font-weight: bold;
}

.blog-inner {
  background: #F7F8F8;
  padding-top: 100px;
  padding-bottom: 100px;
}
.blog-inner .inner {
  max-width: 1084px;
}

.blog-txt {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7916666667;
  margin-bottom: 47px;
}

.blog-btn {
  text-align: center;
}

.btn-1 a {
  background: #fff;
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 10px;
  border: 1px solid #202F55;
}
.btn-1 a span {
  position: relative;
}
.btn-1 a span::after {
  position: absolute;
  content: "";
  background: transparent url(../img/yazirushi-2.png) no-repeat center center/contain;
  width: 13px;
  height: 19px;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
}

.contact__head:after {
  content: "-お問い合わせ-";
}

.contact-form {
  background-color: #fff;
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 40px;
    padding: 24px;
  }
}

.contact-form__row {
  display: flex;
}
.contact-form__row:not(:first-child) {
  margin-top: 59px;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
  .contact-form__row:not(:first-child) {
    margin-top: 30px;
  }
}

.contact-form__label {
  width: 160px;
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    width: 100%;
  }
}

label {
  font-weight: 700;
}
label.is-required {
  position: relative;
  display: inline-block;
}
label.is-required::before {
  content: "必須";
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  font-size: 14px;
  color: #fff;
  background-color: #e81919;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  label.is-required::before {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 8px);
    width: 44px;
  }
}

.contact-form__input {
  width: calc(100% - 160px);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .contact-form__input {
    width: 100%;
    margin-top: 10px;
  }
}
.contact-form__input input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: #202F55;
  font-family: inherit;
  font-size: 14px;
  padding: 9px 16px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form__input input[type=email] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 8px 16px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form__input textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 8px 16px 12px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.contact-form__submit {
  margin-top: 31px;
  text-align: center;
}
.contact-form__submit input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  margin: 0;
  background: #3143e0 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: 15px 20px;
  text-decoration: none;
  width: 304px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form__submit input[type=submit]:hover {
  opacity: 0.7;
}
.contact-form__submit.required {
  color: #3143e0;
}

.contact-message {
  margin-top: 60px;
  text-align: center;
  display: none;
}
.contact-message.error {
  color: #f00;
}

.footer {
  background: #000;
  padding: 50px 0;
}

.footer-inner {
  padding-top: 20px;
  padding-bottom: 21px;
  text-align: center;
  position: relative;
}

.footer__copyright {
  color: #fff;
  font-size: 16px;
}

.fab {
  font-family: "Font Awesome 5 Brands";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-twitter:before {
  content: "\f099";
}/*# sourceMappingURL=style.css.map */