@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@300;400;700&family=Noto+Serif+JP:wght@400;500;700&family=Oswald:wght@400;500;700&display=swap");
@font-face {
  font-family: "Apple LiGothic";
  src: url(../font/apple-ligothic-medium.woff);
}
html {
  overflow-x: hidden;
}

body {
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}

a[href*=tel] {
  pointer-events: none;
}
@media screen and (max-width: 1279px) {
  a[href*=tel] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
  vertical-align: middle;
}

video {
  display: block;
}

.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  padding: 30px 50px 30px 30px;
}
@media screen and (max-width: 767px) {
  .l_header {
    padding: 10px 30px;
  }
}
.l_header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l_header__logo {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}
@media screen and (max-width: 767px) {
  .l_header__logo {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
}
.l_header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.l_header__item {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.l_header__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .l_header__link:hover {
    opacity: 0.7;
  }
}

.l_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.l_main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .l_main {
    margin-top: 60px;
  }
}
.l_main__inner {
  padding: 125px 0;
}
@media screen and (max-width: 1279px) {
  .l_main__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .l_main__inner {
    padding: 50px 0;
  }
}

.l_sect {
  margin-top: 150px;
}
@media screen and (max-width: 1279px) {
  .l_sect {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l_sect {
    margin-top: 75px;
  }
}
.l_sect__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10.87%;
     -moz-column-gap: 10.87%;
          column-gap: 10.87%;
}
@media screen and (max-width: 1279px) {
  .l_sect__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
.l_sect__heading {
  -ms-flex-preferred-size: 20.15%;
      flex-basis: 20.15%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l_sect__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.l_drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  background-color: #fff;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
}
.l_drawer.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.l_drawer__inner {
  padding-top: 60px;
}
.l_drawer__nav {
  padding-top: 2px;
}
.l_drawer__item {
  text-align: center;
  color: #14238a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  border-top: 2px solid #d9d9d9;
}
.l_drawer__item:last-child {
  border-bottom: 2px solid #d9d9d9;
}
.l_drawer__link {
  display: block;
  padding: 20px 0;
}

.l_footer__contact {
  background: -webkit-gradient(linear, left top, right top, from(#12084a), to(#0c0630));
  background: linear-gradient(to right, #12084a, #0c0630);
  color: #fff;
  text-align: center;
}
.l_footer__link {
  display: block;
  padding: 65px 0 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .l_footer__link:hover {
    opacity: 0.7;
    background-color: rgba(255, 255, 255, 0.25);
  }
  .l_footer__link:hover .l_footer__txt--arrow {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media screen and (max-width: 767px) {
  .l_footer__link {
    padding: 30px 0;
  }
}
.l_footer__txt--ja {
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l_footer__txt--ja {
    font-size: 14px; /*IE9以前に対応する*/
    font-size: 0.875rem;
  }
}
.l_footer__txt--en {
  margin-top: 5px;
  color: #e8ff59;
  font-size: 70px; /*IE9以前に対応する*/
  font-size: 4.375rem;
  line-height: 1;
  font-family: "Apple LiGothic", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .l_footer__txt--en {
    font-size: 50px; /*IE9以前に対応する*/
    font-size: 3.125rem;
  }
}
.l_footer__txt--arrow {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l_footer__txt--arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translateX(-75%) translateY(-50%) rotate(45deg);
          transform: translateX(-75%) translateY(-50%) rotate(45deg);
}
.l_footer__copy {
  padding: 20px 0;
  font-size: 12px; /*IE9以前に対応する*/
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Apple LiGothic", sans-serif;
  font-weight: 500;
  color: #a5a5a5;
}
@media screen and (max-width: 767px) {
  .l_footer__copy {
    padding: 10px 0;
  }
}

.c_acd__head {
  cursor: pointer;
}
.c_acd__body {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.c_acd.open > .acd__body {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}

.c_breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
.c_breadcrumb__item {
  display: inline;
}
.c_breadcrumb__sep {
  margin: 0 0.5em;
}

.c_btn {
  background-color: #14238a;
  color: #fff;
  display: block;
  width: 258px;
  text-align: center;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .c_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c_btn {
    font-size: 14px;
  }
}
.c_btn--center {
  margin-left: auto;
  margin-right: auto;
}
.c_btn__arrow {
  position: relative;
}
.c_btn__arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateX(20px) translateY(-50%) rotate(45deg);
          transform: translateX(20px) translateY(-50%) rotate(45deg);
}
.c_btn-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #14238a;
  color: #fff;
  cursor: pointer;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 98;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .c_btn-scroll:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c_btn-scroll {
    right: 0;
    bottom: 0;
  }
}
.c_btn-scroll__icon {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(25%) rotate(-45deg);
          transform: translateY(25%) rotate(-45deg);
}
.c_btn-burger {
  width: 30px;
  height: 40px;
  padding: 10px 0;
}
.c_btn-burger__inner {
  position: relative;
  height: 100%;
}
.c_btn-burger__item {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
}
.c_btn-burger__item._top {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}
.c_btn-burger__item._middle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c_btn-burger__item._bottom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
}
.c_btn-burger.is-open .c_btn-burger__item._top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c_btn-burger.is-open .c_btn-burger__item._middle {
  opacity: 0;
}
.c_btn-burger.is-open .c_btn-burger__item._bottom {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.c_card {
  width: calc((100% - 80px) / 3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c_card {
    width: 100%;
  }
}
@media (hover: hover) {
  .c_card:hover {
    opacity: 0.7;
  }
}
.c_card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 60px;
}

.c_container {
  padding-left: 5.12vw;
  padding-right: 5.12vw;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1260px + 10.24vw);
}
@media screen and (max-width: 1279px) {
  .c_container {
    max-width: 750px;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
@media screen and (max-width: 767px) {
  .c_container {
    max-width: 100%;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}

.c_sm-container {
  padding-left: 5.12vw;
  padding-right: 5.12vw;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1200px + 10.24vw);
}
@media screen and (max-width: 1279px) {
  .c_sm-container {
    max-width: 750px;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
@media screen and (max-width: 767px) {
  .c_sm-container {
    max-width: 100%;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}

.c_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_pagination__item {
  width: 40px;
  height: 44px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c_pagination__item:not(.current) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .c_pagination__item:not(.current):hover {
    opacity: 0.7;
  }
}
.c_pagination__item--prev .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  -webkit-transform: translateX(25%) rotate(-45deg);
          transform: translateX(25%) rotate(-45deg);
}
.c_pagination__item--next .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}

.c_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.c_tab__item.is-btn-active {
  cursor: default;
  pointer-events: none;
}

.c_heading--en {
  position: relative;
  font-size: 30px; /*IE9以前に対応する*/
  font-size: 1.875rem;
  line-height: 1;
  font-family: "Apple LiGothic", sans-serif;
  font-weight: 500;
  color: #14238a;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1279px) {
  .c_heading--en {
    display: inline-block;
    padding-right: 116px;
  }
}
@media screen and (max-width: 767px) {
  .c_heading--en {
    font-size: 24px; /*IE9以前に対応する*/
    font-size: 1.5rem;
  }
}
.c_heading--en::before {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  background-color: #d9d9d9;
  position: absolute;
  right: 0;
  bottom: 0;
}
.c_heading--ja {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #9b9b9b;
}
@media screen and (max-width: 767px) {
  .c_heading--ja {
    margin-top: 5px;
    font-size: 12px; /*IE9以前に対応する*/
    font-size: 0.75rem;
  }
}

.p_mv {
  position: relative;
}
.p_mv__bg img {
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_mv__msg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.p_mv__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
}
.p_mv__txt {
  background: -webkit-gradient(linear, left top, right top, from(#314287), to(#004286));
  background: linear-gradient(to right, #314287, #004286);
  color: #fff;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.7;
  padding: 0 0.5em;
}
@media screen and (max-width: 1279px) {
  .p_mv__txt {
    font-size: 35px; /*IE9以前に対応する*/
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p_mv__txt {
    font-size: 25px; /*IE9以前に対応する*/
    font-size: 1.5625rem;
  }
}

.p_msg__txt {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 1279px) {
  .p_msg__txt {
    font-size: 18px; /*IE9以前に対応する*/
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p_msg__txt {
    font-size: 14px; /*IE9以前に対応する*/
    font-size: 0.875rem;
  }
}

.p_service__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p_service__item:not(:first-child) {
    margin-top: 30px;
  }
}
.p_service__ttl {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  color: #14238a;
  padding-bottom: 7px;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p_service__ttl {
    font-size: 16px; /*IE9以前に対応する*/
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.p_service__ttl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #d9d9d9;
}
.p_service__txt {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p_service__txt {
    font-size: 12px; /*IE9以前に対応する*/
    font-size: 0.75rem;
  }
}

.p_works {
  width: 68.98%;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1279px) {
  .p_works {
    width: 100%;
  }
}
.p_works__inner {
  overflow: hidden;
  width: 100%;
}
.p_works__slider {
  width: 100%;
}
.p_works__cat {
  display: inline-block;
  background-color: #535da8;
  color: #fff;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1;
  padding: 5px 10px;
  margin-top: 10px;
}
.p_works__ttl {
  margin-top: 5px;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p_works__ttl {
    font-size: 16px; /*IE9以前に対応する*/
    font-size: 1rem;
  }
}
.p_works__url {
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.6;
  color: #535da8;
}

.p_outline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.75%;
     -moz-column-gap: 5.75%;
          column-gap: 5.75%;
}
.p_outline__item:not(:first-child) {
  margin-top: 30px;
}
.p_outline__head {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  color: #000c5f;
}
@media screen and (max-width: 767px) {
  .p_outline__head {
    font-size: 14px; /*IE9以前に対応する*/
    font-size: 0.875rem;
  }
}
.p_outline__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p_outline__body {
    font-size: 14px; /*IE9以前に対応する*/
    font-size: 0.875rem;
  }
}
.p_outline__link {
  color: #535da8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .p_outline__link:hover {
    opacity: 0.7;
  }
}

.u_black {
  color: #333333;
}

._sp {
  display: none;
}

._tb {
  display: none;
}

._tb-sp {
  display: none;
}

@media screen and (max-width: 1599px) {
  ._pc {
    display: none;
  }
  ._tb {
    display: block;
  }
  ._tb-sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  ._pc-tb {
    display: none;
  }
  ._tb {
    display: none;
  }
  ._sp {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .mfp-img {
    max-height: unset !important;
  }
}
/*# sourceMappingURL=style.css.map */