@charset "UTF-8";
/* COMMON */
.m-sec01-w .top-sec-head {
  margin-bottom: 50px;
}
.m-sec01-s .top-sec-head {
  margin-bottom: 33px;
}

.top-sec-title {
  color: #0342ab;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
.top-sec-head .top-sec-title {
  margin-bottom: 0;
}

.top-sec-en {
  margin: 0.5em 0 0;
  color: #94abcc;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
}

.top-sec-lead {
  font-size: 1.125em;
  font-weight: 500;
  text-align: justify;
}

.top-bg-text {
  margin: 0;
  font-size: 145px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 0.7;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .m-sec01-w .top-sec-head {
    margin-bottom: 30px;
  }
  .m-sec01-s .top-sec-head {
    margin-bottom: 22px;
  }
  .top-sec-title {
    font-size: min(8vw, 38px); /*30px*/
  }
  .top-sec-en {
    font-size: min(4vw, 20px); /*15px*/
  }
  .top-bg-text {
    font-size: min(21.33vw, 92px); /*80px*/
  }
}
/* KV */
.top-kv {
  position: relative;
  padding: 0 0 100px 100px;
}
.top-kv::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 57.333%;
  background: #0342ab;
}
.top-kv__inner {
  position: relative;
}
.top-kv__title {
  position: absolute;
  left: 15px;
  top: 15px;
  max-width: 22%;
  text-align: center;
}
.top-kv__area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.278em 0.667em; /*5px 12px*/
  margin: 0 auto;
  background: #fff;
  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.top-kv__logo {
  margin: 10px 0 0;
}
.top-kv__visual {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 50% 50%;
  width: 100%;
  aspect-ratio: 1300/650;
}
.top-kv__img img {
  width: 100%;
}
.top-kv__img--main {
  grid-column: 1/2;
  grid-row: 1/3;
}
.top-kv__img--sub01 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.top-kv__img--sub02 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.top-kv__scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-animation: bounceArrow_pc 1.4s ease-in-out infinite;
          animation: bounceArrow_pc 1.4s ease-in-out infinite;
}
.top-kv__scroll a {
  display: block;
  width: 56px;
  padding: 6px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

@-webkit-keyframes bounceArrow_pc {
  0%, 100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  50% {
    -webkit-transform: translate(-100%, 10px);
            transform: translate(-100%, 10px);
  }
}

@keyframes bounceArrow_pc {
  0%, 100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  50% {
    -webkit-transform: translate(-100%, 10px);
            transform: translate(-100%, 10px);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .top-kv {
    padding: 0 0 60px 60px;
  }
  .top-kv__title {
    max-width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .top-kv {
    padding: 0 0 40px;
  }
  .top-kv__title {
    left: 2.666%; /*10px*/
    top: 10px;
    max-width: none;
  }
  .top-kv__area {
    font-size: min(2.67vw, 18px);
  }
  .top-kv__logo {
    margin-top: 2px;
  }
  .top-kv__logo img {
    max-width: 34.67vw; /*130px*/
  }
  .top-kv__visual {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-rows: 73.333% 26.667%;
    aspect-ratio: 750/1050;
  }
  .top-kv__img--main {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .top-kv__img--sub01 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .top-kv__img--sub02 {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .top-kv__scroll {
    left: 0;
    bottom: -4px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 12px;
    -webkit-animation: bounceArrow_sp 1.4s ease-in-out infinite;
            animation: bounceArrow_sp 1.4s ease-in-out infinite;
  }
  .top-kv__scroll a {
    width: 40px;
    padding: 4px;
  }
  @-webkit-keyframes bounceArrow_sp {
    0%, 100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    50% {
      -webkit-transform: translate(0, 10px);
              transform: translate(0, 10px);
    }
  }
  @keyframes bounceArrow_sp {
    0%, 100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    50% {
      -webkit-transform: translate(0, 10px);
              transform: translate(0, 10px);
    }
  }
}
/* INTRO */
.top-intro {
  background: #fff url("../img/top/intro_bg.jpg") 100% 100% no-repeat;
  background-size: 80.714%;
}
.top-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 115px 0 105px;
}
.top-intro__body {
  width: 43.636%;
}
.top-intro__visual {
  position: relative;
  width: 48.182%;
  padding-right: 0.91%;
}
.top-intro__visual .top-bg-text {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(-90deg) translate(92%, 0.4em);
          transform: rotate(-90deg) translate(92%, 0.4em);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  color: #bfccde;
}
.top-intro__img {
  position: relative;
}
.top-intro__img + .top-intro__img {
  margin-top: 25px;
}
.top-intro__img--01 {
  padding-left: 17.3%;
  text-align: right;
}
.top-intro__img--02 {
  padding-right: 17.3%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .top-intro {
    background-image: url("../img/top/intro_bg__sp.jpg");
    background-size: 100%;
  }
  .top-intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
    width: 100%;
    padding: 65px 0 75px;
  }
  .top-intro__body {
    width: 100%;
    padding: 0 2.666%;
  }
  .top-intro__visual {
    width: 100%;
    padding-right: 0;
  }
  .top-intro__visual .top-bg-text {
    -webkit-transform: rotate(-90deg) translate(76%, -0.15em);
            transform: rotate(-90deg) translate(76%, -0.15em);
  }
  .top-intro__img + .top-intro__img {
    margin-top: 20px;
  }
  .top-intro__img img {
    width: 100%;
  }
  .top-intro__img--01 {
    padding-left: 14.133%;
  }
  .top-intro__img--02 {
    padding-right: 14.133%;
  }
}
/* WORKFLOW 業務の流れ */
.top-flow {
  background: #e9ecf4;
}
.top-flow__slider {
  margin-right: -7.693%;
}
.top-flow__dsr {
  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;
  gap: 30px;
  margin-top: 60px;
}
.top-flow__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-flow__arrow {
  position: static;
  width: 85px;
  height: 85px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: solid 1px #94abcc;
  background: #fff;
}
.top-flow__arrow svg {
  display: none;
}
.top-flow__fraction {
  min-width: 5em;
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.top-flow__lead {
  max-width: 656px;
}

@media screen and (min-width: 1200px) {
  .top-flow__slider {
    margin-right: calc((100vw - 1100px) / 2 * -1);
  }
}
.top-flow-card__img {
  margin-bottom: 30px;
}
.top-flow-card__title {
  position: relative;
  margin-bottom: 0.35em; /*7px*/
  padding-left: 3em; /*60px*/
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.top-flow-card__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: -0.233em; /*-7px*/
  width: 1.5em;
  height: 1.5em; /*45px*/
  background: #66cc99;
  color: #fff;
  font-size: 1.5em; /*30px*/
  font-weight: 700;
}

#worksSlider:not(.swiper-initialized) .swiper-wrapper {
  gap: 10px;
}
#worksSlider:not(.swiper-initialized) .swiper-slide {
  width: 40%;
}

@media screen and (min-width: 768px) {
  .top-flow .m-sec01-s {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .top-flow__dsr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 38px;
  }
  .top-flow__control {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .top-flow__arrow {
    width: 64px;
    height: 64px;
  }
  .top-flow__arrow img {
    -webkit-transform: scale(0.77);
            transform: scale(0.77);
  }
  .top-flow__fraction {
    font-size: min(3.73vw, 18px);
  }
  .top-flow__lead {
    max-width: none;
  }
  .top-flow-card__img {
    margin-bottom: 22px;
  }
  .top-flow-card__title {
    font-size: min(4.8vw, 20px);
  }
  #worksSlider:not(.swiper-initialized) .swiper-wrapper {
    gap: 5px;
  }
  #worksSlider:not(.swiper-initialized) .swiper-slide {
    width: 100%;
  }
}
/* FEATURE 強み */
.top-feature {
  background: #fff url("../img/top/feature_bg.jpg") 100% 100% no-repeat;
  background-size: 100%;
}

.top-feature-item {
  margin-bottom: 80px;
}
.top-feature-item:last-child {
  margin-bottom: 0;
}
.top-feature-item__title {
  position: relative;
  margin-bottom: 2.188em; /*70px*/
  padding: 0.406em 0 0 4.219em; /*13px 0 0 135px*/
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.top-feature-item__num {
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 0.222em; /*20px*/
  border-bottom: solid 1px;
  color: #66cc99;
  font-size: 2.813em; /*90px*/
  font-weight: 500;
  line-height: 0.7;
}
.top-feature-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top-feature-item--reverse .top-feature-item__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-feature-item__img {
  width: 45.454%;
}
.top-feature-item__img img {
  width: 100%;
}
.top-feature-item__text {
  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;
  width: 54.546%;
  min-height: 320px;
  padding: 45px 8.182%;
  background: #e9ecf4;
}

@media screen and (max-width: 767px) {
  .top-feature {
    background-image: url("../img/top/feature_bg__sp.jpg");
  }
  .top-feature-item {
    margin-bottom: 48px;
  }
  .top-feature-item__title {
    margin-bottom: 0.667em; /*36px*/
    font-size: min(6.4vw, 32px); /*24px*/
    line-height: 1.5;
  }
  .top-feature-item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-feature-item--reverse .top-feature-item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-feature-item__img {
    width: auto;
    margin-right: -7.7%;
  }
  .top-feature-item__text {
    width: auto;
    min-height: 0;
    padding: 4.8% 6.666%;
    margin-left: -7.7%;
    margin-right: -7.7%;
  }
}
/* STAFF スタッフ紹介 */
.top-staff {
  background: #e9ecf4;
}
.top-staff__message {
  display: grid;
  grid-template-columns: 46.364% 45.454%;
  grid-template-rows: auto 1fr;
  gap: 0 8.182%;
  width: 100%;
}
.top-staff__messageTitle {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-bottom: 0.563em; /*18px*/
  margin-bottom: 1.094em; /*35px*/
  border-bottom: solid 1px #8097c2;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.top-staff__messageImgBox {
  grid-column: 2/3;
  grid-row: 1/3;
}
.top-staff__messageImg {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 485px;
  margin-bottom: 33px;
}
.top-staff__messageImg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 15px;
  top: 15px;
  width: 100%;
  height: 100%;
  background: #fff;
}
.top-staff__messageBody {
  grid-column: 1/2;
  grid-row: 2/3;
}
.top-staff__messageName {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}
.top-staff__messageName .sholder {
  display: block;
  margin-bottom: 10px;
  font-size: 0.727em; /*16px*/
}
.top-staff__cards, .top-staff__card {
  margin-top: 75px;
}
.top-staff__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 46.364%));
  gap: 80px 7.272%;
}

.top-staff-card {
  position: relative;
  padding: 30px 35px 25px;
  background: #fff;
}
.top-staff-card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border: solid transparent;
  border-top-color: #66cc99;
  border-left-color: #66cc99;
  border-width: 25px;
}
.top-staff-card__title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
.top-staff-card__img {
  margin-bottom: 15px;
}
.top-staff-card .flex-lr__l {
  width: 42.72%;
}
.top-staff-card .flex-lr__r {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .top-staff__message {
    display: block;
  }
  .top-staff__messageTitle {
    font-size: min(6.4vw, 32px);
  }
  .top-staff__messageImgBox {
    max-width: 485px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-staff__messageImg {
    max-width: none;
    margin-bottom: 22px;
  }
  .top-staff__messageImg::before {
    left: 10px;
    top: 10px;
  }
  .top-staff__messageBody {
    margin-top: 25px;
  }
  .top-staff__messageName {
    margin-right: -10px;
    font-size: min(4.8vw, 22px);
  }
  .top-staff__messageName .sholder {
    margin-bottom: 5px;
  }
  .top-staff__cards, .top-staff__card {
    margin-top: 45px;
  }
  .top-staff__cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .top-staff-card {
    max-width: 540px;
    padding: 25px 7.69% 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-staff-card::before {
    border-width: 19px;
  }
  .top-staff-card__title {
    margin-bottom: 10px;
    font-size: min(5.33vw, 28px);
  }
  .top-staff-card__img {
    margin-bottom: 20px;
  }
}
/* RECRUIT OUTLINE 募集要項 */
.top-recruit {
  background: #fff url("../img/top/recruit_bg.jpg") 100% 100% no-repeat;
  background-size: 72.5%;
}
.top-recruit__imgs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 30%));
  gap: 45px 5%;
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .top-recruit {
    background-image: url("../img/top/recruit_bg__sp.jpg");
    background-size: 100%;
  }
  .top-recruit__imgs {
    display: block;
    margin-bottom: 28px;
    text-align: center;
  }
  .top-recruit__imgs img {
    max-width: 62.3%;
  }
  .top-recruit__imgs > img:nth-child(1),
  .top-recruit__imgs > img:nth-child(3) {
    display: none;
  }
}
/* FAQ よくあるご質問 */
.top-faq {
  background: #e9ecf4;
}

.top-faq-item + .top-faq-item {
  margin-top: 10px;
}
.top-faq-item__q {
  position: relative;
  padding: 12px 45px 12px 98px;
  font-size: 1.375em; /*22px*/
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}
.top-faq-item__q::before, .top-faq-item__q::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  display: block;
  width: 22px;
  border-top: solid 2px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.top-faq-item__q::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-faq-item__q::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.top-faq-item__q.is-active::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.top-faq-item__q.is-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.top-faq-item:nth-of-type(odd) .top-faq-item__q {
  background: #66cc99;
  color: #fff;
}
.top-faq-item:nth-of-type(even) .top-faq-item__q {
  background: #8097c2;
  color: #fff;
}
.top-faq-item__a {
  position: relative;
  height: 0;
  padding: 0 70px 0 100px;
  background: #fff;
  text-align: justify;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top-faq-item__a.is-open {
  height: auto;
  padding: 10px 70px 10px 100px;
}
.top-faq-item .q,
.top-faq-item .a {
  position: absolute;
  left: 16px;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.8;
}
.top-faq-item .q::after,
.top-faq-item .a::after {
  content: "";
  display: block;
  position: absolute;
  right: -46px;
  width: 35px;
  border-top: solid 1px;
}
.top-faq-item .q {
  top: 0.35em;
}
.top-faq-item .q::after {
  top: 15px;
}
.top-faq-item .a {
  top: 0.4em;
  color: #8097c2;
}
.top-faq-item .a::after {
  top: 13px;
}

@media screen and (max-width: 767px) {
  .top-faq-item + .top-faq-item {
    margin-top: 8px;
  }
  .top-faq-item__q {
    padding: 9px 30px 9px 65px;
    font-size: 0.938em; /*15px*/
    line-height: 1.467;
  }
  .top-faq-item__q::before, .top-faq-item__q::after {
    right: 10px;
    width: 16px;
  }
  .top-faq-item__a {
    padding: 0 15px 0 65px;
    font-size: 0.813em; /*13px*/
    line-height: 1.846;
  }
  .top-faq-item__a.is-open {
    padding: 10px 15px 10px 65px;
  }
  .top-faq-item .q,
  .top-faq-item .a {
    left: 8px;
    font-size: 28px;
  }
  .top-faq-item .q::after,
  .top-faq-item .a::after {
    right: -29px;
    width: 20px;
  }
  .top-faq-item .q::after {
    top: 11px;
  }
  .top-faq-item .a::after {
    top: 9px;
  }
}
/* ENTRY 応募方法 */
.top-entry__head {
  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;
  max-width: 1400px;
  margin: 0 auto 30px;
  text-align: center;
}
.top-entry__head .top-sec-head {
  position: relative;
  z-index: 1;
  margin: 0;
  white-space: nowrap;
}
.top-entry__head .top-bg-text {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  padding: 0.15em 0.25em;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #e9ecf4;
  background: #fff;
  font-style: normal;
}
.top-entry {
  /*&__deco {

  }*/
}
.top-entry .top-sec-lead {
  margin-bottom: 55px;
}
.top-entry__methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 972px;
  margin: 0 auto 120px;
  border-left: solid 2px #66cc99;
  border-right: solid 2px #66cc99;
}

.top-entry-method {
  padding: 22px 12px 17px;
  text-align: center;
}
.top-entry-method + .top-entry-method {
  border-left: solid 2px #66cc99;
}
.top-entry-method__title {
  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;
  gap: 15px;
  position: relative;
  padding-bottom: 60px;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.top-entry-method__title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 47px;
  margin-left: -8px;
  background: url("../img/common/icon_arrow_btm.svg") 50% 50% no-repeat;
  background-size: contain;
}
.top-entry-method__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1em;
}
.top-entry-method__tel {
  font-size: 55px;
  font-size: min(5.5vw, 55px);
  font-weight: 500;
  line-height: 0.8;
  white-space: nowrap;
}
.top-entry-method__tel a {
  display: inline-block;
  padding: 0.2em;
  color: inherit;
  text-decoration: none;
}
.top-entry-method__info {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.571;
}
.top-entry-method__time {
  margin-bottom: 5px;
}
.top-entry-method__for {
  margin-bottom: 22px;
  font-size: 1.143em;
}
.top-entry-method__note {
  max-width: 28.286em; /*396px*/
  margin: 0 auto;
  text-align: left;
}
.top-entry-method__linebody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
.top-entry-method__linetext {
  max-width: 212px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.571;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .top-entry .m-sec01-w {
    padding-top: 0;
  }
  .top-entry__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
  .top-entry__head .top-sec-head {
    padding: 35px 0 40px;
  }
  .top-entry__head .top-bg-text {
    padding: 0;
    background: transparent;
    font-size: min(26.67vw, 145px);
  }
  .top-entry__deco, .top-entry__deco img {
    width: 100%;
  }
  .top-entry .top-sec-lead {
    margin-bottom: 30px;
    line-height: 1.778;
  }
  .top-entry__methods {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0 -4.615% 120px;
    border: none;
    border-top: solid 2px #66cc99;
    border-bottom: solid 2px #66cc99;
  }
  .top-entry-method {
    padding: 25px 7.04% 22px;
  }
  .top-entry-method + .top-entry-method {
    border-left: none;
    border-top: solid 2px #66cc99;
  }
  .top-entry-method__title {
    gap: 5px;
    padding-bottom: 45px;
    margin-bottom: 15px;
    font-size: min(5.87vw, 30px);
  }
  .top-entry-method__title::after {
    -webkit-transform: scale(0.77);
            transform: scale(0.77);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    margin-left: -3px;
  }
  .top-entry-method__icon {
    -webkit-transform: scale(0.74);
            transform: scale(0.74);
  }
  .top-entry-method__tel {
    font-size: min(10.67vw, 55px);
  }
  .top-entry-method__info {
    font-size: min(3.2vw, 1.4rem);
    line-height: 1.5;
  }
  .top-entry-method__for {
    margin-bottom: 7px;
    font-size: 1.167em;
  }
  .top-entry-method__note {
    max-width: 24em; /*288px*/
  }
  .top-entry-method__linebody {
    gap: 17px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-entry-method__lineqr {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 37.05%;
  }
  .top-entry-method__linetext {
    max-width: none;
    font-size: min(3.2vw, 1.4rem);
    line-height: 1.5;
  }
}
/* form */
.form-box {
  padding: 25px 33px 10px;
  border: solid 2px #bfccde;
}

.form-input {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.556;
}
.form-input > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-input > div > dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
  padding: 25px 0.5em 25px 0;
}
.form-input > div > dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px 10px 15px 0;
}
.form-input > div.lb-hide > dt {
  padding: 0;
  white-space: nowrap;
  visibility: hidden;
  overflow: hidden;
}
.form-input > div.lb-hide > dd {
  padding-top: 0;
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input input[type=url],
.form-input select,
.form-input textarea {
  width: 100%;
  border-radius: 0;
  border: solid 1px #ccc;
  font-size: 1em;
  line-height: 1.4;
  padding: 10px;
  padding: 0.5em;
}
.form-input textarea {
  vertical-align: top;
  height: 265px;
  resize: vertical;
}
.form-input input[type=text]::-webkit-input-placeholder, .form-input input[type=email]::-webkit-input-placeholder, .form-input input[type=tel]::-webkit-input-placeholder, .form-input textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-input input[type=text]::-moz-placeholder, .form-input input[type=email]::-moz-placeholder, .form-input input[type=tel]::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #ccc;
}
.form-input input[type=text]:-ms-input-placeholder, .form-input input[type=email]:-ms-input-placeholder, .form-input input[type=tel]:-ms-input-placeholder, .form-input textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-input input[type=text]::-ms-input-placeholder, .form-input input[type=email]::-ms-input-placeholder, .form-input input[type=tel]::-ms-input-placeholder, .form-input textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-input input[type=text]::placeholder,
.form-input input[type=email]::placeholder,
.form-input input[type=tel]::placeholder,
.form-input textarea::placeholder {
  color: #ccc;
}
.form-input input[type=text]::-webkit-input-placeholder,
.form-input input[type=email]::-webkit-input-placeholder,
.form-input input[type=tel]::-webkit-input-placeholder,
.form-input textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-input input[type=text]:-ms-input-placeholder,
.form-input input[type=email]:-ms-input-placeholder,
.form-input input[type=tel]:-ms-input-placeholder,
.form-input textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-input input[type=text]::-moz-placeholder,
.form-input input[type=email]::-moz-placeholder,
.form-input input[type=tel]::-moz-placeholder,
.form-input textarea::-moz-placeholder {
  color: #ccc;
}
.form-input label {
  cursor: pointer;
}
.form-input input[type=radio],
.form-input input[type=checkbox] {
  display: none;
}
.form-input .checkTxt,
.form-input .radioItem .wpcf7-list-item-label,
.form-input .agreeItem + .wpcf7-list-item-label {
  display: inline-block;
  line-height: 1.3;
  padding-left: 2.1em;
  position: relative;
}
.form-input .checkTxt::before,
.form-input .radioItem .wpcf7-list-item-label::before,
.form-input .agreeItem + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border: solid 1px #ccc;
  border-radius: 50%;
  width: 1.412em;
  height: 1.412em;
  position: absolute;
  top: 0;
  left: 0;
}
.form-input .checkTxt::after,
.form-input .radioItem .wpcf7-list-item-label::after,
.form-input .agreeItem + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.353em;
  left: 0.353em;
  display: block;
  border-radius: 50%;
  background: #0342ab;
  width: 0.706em;
  height: 0.706em;
  opacity: 0;
}
.form-input input[type=radio]:checked + .checkTxt::after,
.form-input input[type=checkbox]:checked + .checkTxt::after,
.form-input input[type=radio]:checked + .wpcf7-list-item-label::after,
.form-input input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form-input .radioItem .wpcf7-list-item:first-child,
.form-input .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.form-input .checkTxt {
  font-size: 0.85em;
}
.form-input .must {
  display: inline-block;
  vertical-align: text-bottom;
  background: #8097c2;
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  padding: 0.3em 0.55em 0.35em;
  margin-left: 0.94em;
}
.form-input .txtbox {
  padding: 10px 0;
}
.form-input .agree {
  margin-top: 25px;
}

.wpcf7-select,
.wpcf7-list-item-label {
  font-size: 0.85em !important;
}

.policy-link {
  display: inline-block;
  margin-left: 2em;
  color: inherit;
  font-size: 0.75em;
}

.form-note {
  line-height: 1.688;
  text-align: center;
  margin-top: 35px;
}

#wpcf7cpcnf button,
#wpcf7cpcnf input[type=submit], .form-button input,
.form-button button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.682em;
  height: 3.636em;
  padding: 0;
  border-radius: 3em;
  border: none;
  background: #0342ab;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
#wpcf7cpcnf button:hover,
#wpcf7cpcnf input[type=submit]:hover, .form-button input:hover,
.form-button button:hover {
  opacity: 0.7;
}

.form-button {
  position: relative;
  text-align: center;
  margin-top: 30px;
}
.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
}

.wpcf7-not-valid-tip {
  font-size: 0.8em;
}

/* form confirm */
#wpcf7cpcnf table {
  border-collapse: collapse;
  border: solid 1px #0342ab;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.556;
}
#wpcf7cpcnf table tr:first-child th,
#wpcf7cpcnf table tr:first-child td {
  padding-top: 50px;
}
#wpcf7cpcnf table tr:last-child th,
#wpcf7cpcnf table tr:last-child td {
  padding-bottom: 50px;
}
#wpcf7cpcnf table th,
#wpcf7cpcnf table td {
  vertical-align: middle;
  border: none;
  padding: 25px 25px 25px 90px;
}
#wpcf7cpcnf table th {
  width: 315px;
  text-align: left;
}
#wpcf7cpcnf button,
#wpcf7cpcnf input[type=submit] {
  max-width: 46%;
  margin: 0 1%;
}
#wpcf7cpcnf .wpcf7-spinner {
  margin-left: 73px;
}
#wpcf7cpcnf .wpcf7cp-btns {
  position: relative;
  margin-top: 35px;
  text-align: center;
}
#wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  background: #aaa;
}

@media screen and (max-width: 767px) {
  .form-box {
    padding: 2.817% 3.662% 1.972%;
  }
  .form-input {
    font-size: 15px;
  }
  .form-input > div {
    display: block;
    padding: 11px 0;
  }
  .form-input > div > dt,
  .form-input > div > dd {
    padding: 0;
  }
  .form-input > div > dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-input > div:first-child, .form-input > div.lb-hide {
    padding-top: 0;
  }
  .form-input > div.lb-hide > dt {
    display: none;
  }
  .form-input textarea {
    height: 175px;
  }
  .form-input .txtbox {
    padding: 0;
  }
  .form-input .agree {
    margin-top: 0;
  }
  .form-note {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.692;
  }
  .form-button {
    margin-top: 20px;
  }
  .form-button input,
  .form-button button {
    font-size: 18px;
  }
  #wpcf7cpcnf table {
    padding: 6% 8% 2%;
    font-size: 17px;
  }
  #wpcf7cpcnf table,
  #wpcf7cpcnf table tr,
  #wpcf7cpcnf table th,
  #wpcf7cpcnf table td {
    display: block;
  }
  #wpcf7cpcnf table tr {
    padding: 15px 0;
  }
  #wpcf7cpcnf table th,
  #wpcf7cpcnf table td {
    padding: 0 !important;
  }
  #wpcf7cpcnf table th {
    width: 100%;
    margin-bottom: 12px;
  }
  #wpcf7cpcnf button,
  #wpcf7cpcnf input[type=submit] {
    font-size: 17px;
  }
  #wpcf7cpcnf .wpcf7-spinner {
    margin-left: 60px;
  }
}
/* COMPANY 未在について */
.top-company {
  position: relative;
  background: #e9ecf4;
}
.top-company .m-sec01-s {
  padding-bottom: 75px;
}
.top-company .top-bg-text {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(-90deg) translate(0.42em, 100%);
          transform: rotate(-90deg) translate(0.42em, 100%);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  color: #fff;
}
.top-company__img {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-company .m-sec01-s {
    padding-bottom: 30px;
  }
  .top-company .top-bg-text {
    -webkit-transform: rotate(-90deg) translate(0.02em, 90%);
            transform: rotate(-90deg) translate(0.02em, 90%);
  }
  .top-company__img {
    width: 90.7986%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: -7.7%;
  }
  .top-company__img img {
    width: 100%;
  }
}/*# sourceMappingURL=style_top.css.map */