/* -- color --*/
/*-- fonts --*/
/* line 9, sass/_default.scss */
.en {
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
/* line 14, sass/_default.scss */
.en.bold {
  font-weight: 700;
}

/* line 18, sass/_default.scss */
.caslon {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: normal;
}

/*-- default --*/
/* line 26, sass/_default.scss */
html {
  font-size: 62.5%;
}

/* line 30, sass/_default.scss */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  color: #222;
  position: relative;
  line-height: 1.6;
}

/* line 39, sass/_default.scss */
main {
  padding-top: 7.172rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 1024px) {
  /* line 44, sass/_default.scss */
  main {
    padding-top: 9vw;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 50, sass/_default.scss */
  body {
    font-size: 1.4rem;
  }

  /* line 53, sass/_default.scss */
  main {
    padding-top: 12vw;
    padding-bottom: 24vw;
  }
}
/* line 59, sass/_default.scss */
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

/* line 62, sass/_default.scss */
caption, th, td {
  font-weight: 500;
}

/* line 66, sass/_default.scss */
a {
  text-decoration: none;
  color: #222;
}

/* line 71, sass/_default.scss */
img {
  max-width: 100%;
  height: auto;
}

/*-- common --*/
/* line 78, sass/_default.scss */
.flex {
  display: flex;
}

/* line 82, sass/_default.scss */
.center {
  text-align: center;
}

/* line 86, sass/_default.scss */
.right {
  text-align: right;
}

/* line 90, sass/_default.scss */
.left {
  text-align: left;
}

/* line 95, sass/_default.scss */
.bold {
  font-weight: 600;
}

/* line 100, sass/_default.scss */
.inner {
  width: 92%;
  max-width: 140rem;
  margin: 0 auto 0;
}

/* line 106, sass/_default.scss */
h2.title {
  color: #001c55;
  font-size: 1.8rem;
  margin-bottom: 10rem;
}
/* line 110, sass/_default.scss */
h2.title .en {
  font-size: 4.8rem;
}

/* line 115, sass/_default.scss */
.page-btn {
  text-align: center;
  margin-top: 6rem;
}
/* line 118, sass/_default.scss */
.page-btn a {
  display: inline-block;
  color: #fff;
  background: #222;
  padding: 1.4rem 6.8rem;
  position: relative;
}
/* line 124, sass/_default.scss */
.page-btn a::after {
  content: '';
  width: 1.6rem;
  height: .6rem;
  background: url(../img/common/arrow.png) no-repeat center center/cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* line 137, sass/_default.scss */
.more-link {
  color: #001c55;
  text-align: right;
  padding-right: 3.4rem;
  position: relative;
  margin-top: 1.6rem;
}
/* line 143, sass/_default.scss */
.more-link a {
  color: #001c55;
}
/* line 146, sass/_default.scss */
.more-link::after {
  content: '';
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/beginner/arrow.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  /* line 158, sass/_default.scss */
  .more-link {
    padding-right: 7vw;
    margin-top: 4vw;
  }
  /* line 161, sass/_default.scss */
  .more-link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* ------------------------- 
            button
--------------------------- */
/* line 181, sass/_default.scss */
.pconly {
  display: block;
}

/* line 184, sass/_default.scss */
.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  /* line 189, sass/_default.scss */
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  /* line 195, sass/_default.scss */
  .pconly {
    display: none;
  }

  /* line 198, sass/_default.scss */
  .sponly {
    display: block;
  }
}
/* ------------------------- 
            header
--------------------------- */
/* line 207, sass/_default.scss */
#header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3%;
  background: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  border-bottom: .1rem solid #eeeeee;
}
/* line 219, sass/_default.scss */
#header .logo {
  width: 5.2%;
}
/* line 222, sass/_default.scss */
#header .head-menu-area {
  width: 40%;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 229, sass/_default.scss */
#header .head-menu-list {
  width: calc(100% - 8rem);
  justify-content: space-between;
  align-items: center;
}
/* line 234, sass/_default.scss */
#header .toggle {
  width: 3.4rem;
  height: 1.4rem;
  position: relative;
}
/* line 238, sass/_default.scss */
#header .toggle::before, #header .toggle::after {
  content: '';
  width: 100%;
  height: .2rem;
  background-color: #222;
  position: absolute;
  transition: .3s;
}
/* line 246, sass/_default.scss */
#header .toggle::before {
  top: 0;
  left: 0;
}
/* line 250, sass/_default.scss */
#header .toggle::after {
  bottom: 0;
  left: 0;
}
/* line 255, sass/_default.scss */
#header .toggle.open::before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
/* line 259, sass/_default.scss */
#header .toggle.open::after {
  transform: rotate(-45deg) translateY(-50%);
  bottom: auto;
  top: 50%;
}
/* line 266, sass/_default.scss */
#header .head-humb-area {
  width: 100%;
  height: calc(100vh - 7.172rem);
  background: #fff;
  padding: 10% 4%;
  position: absolute;
  top: 7.172rem;
  left: 0;
  display: none;
}
/* line 275, sass/_default.scss */
#header .head-humb-area .inner {
  justify-content: center;
}
/* line 279, sass/_default.scss */
#header .humb-item {
  display: flex;
}
/* line 281, sass/_default.scss */
#header .humb-item.humb-top {
  width: 15%;
}
/* line 284, sass/_default.scss */
#header .humb-item.humb-sec {
  width: 35%;
}
/* line 287, sass/_default.scss */
#header .humb-item.humb-third {
  width: 35%;
}
/* line 291, sass/_default.scss */
#header .humb-list {
  justify-content: space-between;
}
/* line 293, sass/_default.scss */
#header .humb-list a {
  color: #001c55;
  font-size: 2rem;
  font-weight: 600;
}
/* line 298, sass/_default.scss */
#header .humb-list .en {
  font-size: 4.8rem;
  line-height: 1.2;
}
/* line 302, sass/_default.scss */
#header .humb-list:nth-of-type(2) {
  margin-left: 14%;
}
/* line 306, sass/_default.scss */
#header .humb-list > li:not(:last-child) {
  margin-bottom: 3rem;
}
/* line 310, sass/_default.scss */
#header .humb-list .humb-list-child {
  margin-top: 2rem;
  padding-left: 1.2rem;
  border-left: 0.1rem solid #001c55;
}
/* line 315, sass/_default.scss */
#header .humb-list .humb-list-child li:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 1024px) {
  /* line 323, sass/_default.scss */
  #header {
    padding: 1.8vw 4vw;
  }
  /* line 325, sass/_default.scss */
  #header .logo {
    width: 10%;
  }
  /* line 328, sass/_default.scss */
  #header .head-menu-area {
    width: auto;
  }
  /* line 331, sass/_default.scss */
  #header .head-menu-list {
    display: none;
  }
  /* line 334, sass/_default.scss */
  #header .head-humb-area {
    top: 8vw;
    overflow: scroll;
  }
  /* line 337, sass/_default.scss */
  #header .head-humb-area .inner {
    display: block;
  }
  /* line 341, sass/_default.scss */
  #header .humb-item {
    justify-content: flex-start;
  }
  /* line 343, sass/_default.scss */
  #header .humb-item.humb-top {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 347, sass/_default.scss */
  #header .humb-item.humb-sec {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 351, sass/_default.scss */
  #header .humb-item.humb-third {
    width: 100%;
  }
  /* line 355, sass/_default.scss */
  #header .humb-list {
    width: 50%;
  }
  /* line 357, sass/_default.scss */
  #header .humb-list:nth-of-type(2) {
    margin-left: 0;
  }
  /* line 361, sass/_default.scss */
  #header .humb-list > li:not(:last-child) {
    margin-bottom: 4vw;
  }
  /* line 365, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.8rem;
  }
  /* line 368, sass/_default.scss */
  #header .humb-list .en {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 375, sass/_default.scss */
  #header {
    padding: 2vw 4vw;
  }
  /* line 377, sass/_default.scss */
  #header .logo {
    width: 18%;
  }
  /* line 380, sass/_default.scss */
  #header .toggle {
    width: 3rem;
  }
  /* line 383, sass/_default.scss */
  #header .head-humb-area {
    top: 5.1rem;
  }
  /* line 387, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.3rem;
  }
  /* line 390, sass/_default.scss */
  #header .humb-list .en {
    font-size: 6.4vw;
  }
  /* line 393, sass/_default.scss */
  #header .humb-list .humb-list-child {
    margin-top: 2vw;
  }
  /* line 396, sass/_default.scss */
  #header .humb-list .humb-list-child li:not(:last-child) {
    margin-bottom: 1vw;
  }
}
/* ------------------------- 
            footer
--------------------------- */
/* line 409, sass/_default.scss */
#footer .top-bnr {
  background: #173c5f;
  padding: 6rem 0;
}
/* line 412, sass/_default.scss */
#footer .top-bnr .bnr-flex {
  justify-content: center;
}
/* line 415, sass/_default.scss */
#footer .top-bnr .bnr-item {
  margin: 0 1rem;
}
/* line 417, sass/_default.scss */
#footer .top-bnr .bnr-item a {
  display: block;
  transition: .3s;
}
/* line 420, sass/_default.scss */
#footer .top-bnr .bnr-item a:hover {
  opacity: .8;
}
/* line 426, sass/_default.scss */
#footer .btm-footer {
  color: #fff;
  padding: 13rem 0 7rem;
  background: #0b121e;
}
/* line 430, sass/_default.scss */
#footer .btm-footer .inner {
  justify-content: center;
  align-items: center;
}
/* line 434, sass/_default.scss */
#footer .btm-footer .footer-symbol {
  width: 22.4%;
  text-align: center;
  margin-right: 4rem;
}
/* line 438, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn {
  margin: 2.6rem 0 1rem;
}
/* line 440, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a {
  font-size: 2.6rem;
  color: #fff;
  border: 0.1rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
/* line 448, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a .icon {
  margin-right: 1.2rem;
}
/* line 454, sass/_default.scss */
#footer .btm-footer .sns-wrap {
  padding-top: 7rem;
}
/* line 457, sass/_default.scss */
#footer .btm-footer .sns-list {
  justify-content: center;
  align-items: center;
}
/* line 460, sass/_default.scss */
#footer .btm-footer .sns-list li {
  margin: 0 .4rem;
}
/* line 464, sass/_default.scss */
#footer .btm-footer .copy {
  padding-top: 3rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  /* line 472, sass/_default.scss */
  #footer .top-bnr {
    padding: 4vw 0;
  }
  /* line 475, sass/_default.scss */
  #footer .btm-footer {
    padding: 12vw 0 6vw;
  }
  /* line 477, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 40%;
    margin-right: 4vw;
  }
  /* line 480, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    margin: 2.4vw 0 1vw;
  }
  /* line 482, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn a {
    font-size: 2rem;
  }
  /* line 487, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 6vw;
  }
  /* line 490, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 3vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 498, sass/_default.scss */
  #footer .top-bnr {
    padding: 8vw 0;
  }
  /* line 501, sass/_default.scss */
  #footer .btm-footer {
    padding: 18vw 0 10vw;
  }
  /* line 503, sass/_default.scss */
  #footer .btm-footer .inner {
    display: block;
  }
  /* line 506, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 92%;
    margin: 0 auto 10vw;
  }
  /* line 509, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    width: 80%;
    margin: 8vw auto 4vw;
  }
  /* line 514, sass/_default.scss */
  #footer .btm-footer .footer-info {
    text-align: center;
  }
  /* line 517, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 10vw;
  }
  /* line 520, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 8vw;
  }
}
/* ------------------------- 
            CTA
--------------------------- */
/* ------------------------- 
        page under_FV
--------------------------- */
/* ------------------------- 
            404
--------------------------- */
@media screen and (max-width: 1024px) {
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
  /* ------------------------- 
          404
  --------------------------- */
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
          header
  --------------------------- */
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
}
/* line 5, sass/recruit.scss */
.page-recruit .mainv {
  padding: 4.2rem 0 1rem;
  background: url(../img/recruit/mainv-bg_pc.jpg) no-repeat center center/cover;
}
/* line 10, sass/recruit.scss */
.page-recruit .section {
  padding-top: 24rem;
}
/* line 13, sass/recruit.scss */
.page-recruit .btn-flex {
  justify-content: center;
}
/* line 15, sass/recruit.scss */
.page-recruit .btn-flex .page-btn {
  margin: 0 1.4rem;
}
/* line 18, sass/recruit.scss */
.page-recruit .btn-flex a {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 22, sass/recruit.scss */
.page-recruit .btn-flex a span {
  margin-right: 2rem;
}
/* line 28, sass/recruit.scss */
.page-recruit .msg-container {
  padding-top: 20rem;
}
/* line 30, sass/recruit.scss */
.page-recruit .msg-container .msg-flex {
  justify-content: space-between;
  flex-flow: row-reverse;
}
/* line 34, sass/recruit.scss */
.page-recruit .msg-container .msg-logo {
  position: relative;
  width: 45%;
}
/* line 37, sass/recruit.scss */
.page-recruit .msg-container .msg-logo img {
  position: sticky;
  top: 7.2rem;
}
/* line 42, sass/recruit.scss */
.page-recruit .msg-container .msg-detail {
  width: 50%;
}
/* line 45, sass/recruit.scss */
.page-recruit .msg-container .msg-ttl {
  color: #001c55;
  font-size: 7rem;
  margin-bottom: 3rem;
}
/* line 51, sass/recruit.scss */
.page-recruit .msg-container .msg-text p {
  font-size: 2rem;
}
/* line 53, sass/recruit.scss */
.page-recruit .msg-container .msg-text p:not(:last-of-type) {
  margin-bottom: 2rem;
}
/* line 56, sass/recruit.scss */
.page-recruit .msg-container .msg-text p .blue {
  color: #2652ab;
}
/* line 61, sass/recruit.scss */
.page-recruit .msg-container .msg-per {
  margin-top: 8rem;
}
/* line 64, sass/recruit.scss */
.page-recruit .msg-container .btn-flex {
  margin-top: 10rem;
}
/* line 69, sass/recruit.scss */
.page-recruit .point-container .inner {
  max-width: 112rem;
}
/* line 72, sass/recruit.scss */
.page-recruit .point-container .point-ttl {
  margin-bottom: 6rem;
}
/* line 75, sass/recruit.scss */
.page-recruit .point-container .point-item {
  background: #f5f7fc;
  padding: 5rem;
}
/* line 78, sass/recruit.scss */
.page-recruit .point-container .point-item:not(:last-of-type) {
  margin-bottom: 3rem;
}
/* line 81, sass/recruit.scss */
.page-recruit .point-container .point-item .point-item-ttl {
  color: #001c55;
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
}
/* line 88, sass/recruit.scss */
.page-recruit .point-container .point-item .point-item-ttl .en {
  margin-right: 3rem;
}
/* line 92, sass/recruit.scss */
.page-recruit .point-container .point-item .point-content {
  font-size: 2rem;
}
/* line 96, sass/recruit.scss */
.page-recruit .point-container .point-img {
  margin-top: 6rem;
}
/* line 101, sass/recruit.scss */
.page-recruit .strength-container .st-ttl {
  margin-bottom: 8rem;
}
/* line 104, sass/recruit.scss */
.page-recruit .strength-container .st-item {
  width: 86.4%;
  background: #eff2f8;
  margin-left: auto;
}
/* line 108, sass/recruit.scss */
.page-recruit .strength-container .st-item:nth-of-type(even) {
  margin-right: auto;
  margin-left: 0;
}
/* line 111, sass/recruit.scss */
.page-recruit .strength-container .st-item:nth-of-type(even) .st-item-flex {
  flex-flow: row-reverse;
}
/* line 114, sass/recruit.scss */
.page-recruit .strength-container .st-item:nth-of-type(even) .st-wrap {
  margin: 0 4% 0 auto;
}
/* line 118, sass/recruit.scss */
.page-recruit .strength-container .st-item:not(:last-of-type) {
  margin-bottom: 8rem;
}
/* line 121, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-item-flex {
  justify-content: space-between;
  align-items: center;
}
/* line 125, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-photo {
  width: 37%;
}
/* line 128, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-wrap {
  width: 45%;
  margin: 0 auto 0 4%;
}
/* line 132, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-wrap-ttl {
  color: #001c55;
  margin-bottom: 3rem;
}
/* line 135, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-num {
  font-size: 1.4583333333333333vw;
}
/* line 137, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-num span {
  font-size: 110%;
}
/* line 141, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-txt {
  font-size: 1.875vw;
  font-weight: 600;
}
/* line 146, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-content-txt {
  font-size: 2rem;
}
/* line 148, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-content-txt .blue {
  color: #001c55;
  font-size: 1.8rem;
}
/* line 153, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-backup-wrap {
  padding: 7rem 6rem 10rem;
}
/* line 156, sass/recruit.scss */
.page-recruit .strength-container .st-item .st-backup-wrap .st-backup-item:first-of-type {
  margin-right: 4rem;
}
/* line 164, sass/recruit.scss */
.page-recruit .flow-container .flow-ttl {
  margin-bottom: 7rem;
}
/* line 169, sass/recruit.scss */
.page-recruit .voice-container .inner {
  max-width: 100rem;
}
/* line 172, sass/recruit.scss */
.page-recruit .voice-container .voice-ttl {
  margin-bottom: 6rem;
}
/* line 175, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap {
  border: 0.1rem solid #001c55;
}
/* line 177, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap:not(:last-of-type) {
  margin-bottom: 6rem;
}
/* line 180, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap .voice-prof {
  margin-bottom: 4rem;
}
/* line 184, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap .voice-msg-wrap .voice-msg {
  padding: 0 7rem;
}
/* line 187, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap .voice-msg-wrap .more-read-cont {
  display: none;
  margin-top: 2rem;
}
/* line 194, sass/recruit.scss */
.page-recruit .voice-container .voice-wrap .voice-msg p:not(:last-of-type) {
  margin-bottom: 2rem;
}
/* line 200, sass/recruit.scss */
.page-recruit .voice-container .more-read {
  color: #fff;
  text-align: center;
  background: #001c55;
  padding: 1rem;
  margin-top: 4rem;
}
/* line 208, sass/recruit.scss */
.page-recruit .cp-container {
  padding: 14rem 0;
  margin-top: 14rem;
  background: url(../img/recruit/sec06-bg.jpg) no-repeat center center/cover;
}
/* line 212, sass/recruit.scss */
.page-recruit .cp-container .cp-ttl {
  margin-bottom: 6rem;
}
/* line 215, sass/recruit.scss */
.page-recruit .cp-container .cp-flex {
  justify-content: center;
}
/* line 217, sass/recruit.scss */
.page-recruit .cp-container .cp-flex .cp-item {
  margin: 0 2rem;
}
/* line 223, sass/recruit.scss */
.page-recruit .rec-container .inner {
  max-width: 94rem;
}
/* line 226, sass/recruit.scss */
.page-recruit .rec-container .cp-ttl {
  margin-bottom: 6rem;
}
/* line 229, sass/recruit.scss */
.page-recruit .rec-container .table {
  display: flex;
  flex-flow: wrap;
  font-size: 2rem;
  border: .1rem solid #ccc;
}
/* line 234, sass/recruit.scss */
.page-recruit .rec-container .table dt {
  width: 30%;
  color: #fff;
  background: #001c55;
  text-align: center;
}
/* line 239, sass/recruit.scss */
.page-recruit .rec-container .table dt:not(:last-of-type) {
  border-bottom: 0.1rem solid #fff;
}
/* line 243, sass/recruit.scss */
.page-recruit .rec-container .table dd {
  width: 70%;
}
/* line 245, sass/recruit.scss */
.page-recruit .rec-container .table dd:not(:last-of-type) {
  border-bottom: .1rem solid #ccc;
}
/* line 249, sass/recruit.scss */
.page-recruit .rec-container .table dt, .page-recruit .rec-container .table dd {
  padding: 2rem;
}
/* line 255, sass/recruit.scss */
.page-recruit .faq-container .inner {
  max-width: 100rem;
}
/* line 258, sass/recruit.scss */
.page-recruit .faq-container .faq-ttl {
  margin-bottom: 6rem;
}
/* line 262, sass/recruit.scss */
.page-recruit .faq-container .tab-container .hide {
  display: none;
}
/* line 266, sass/recruit.scss */
.page-recruit .faq-container .acWrap {
  border-bottom: .1rem solid #ccc;
  padding: 3rem 0;
}
/* line 269, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acMenu, .page-recruit .faq-container .acWrap .acCont {
  padding-left: 4.8rem;
  position: relative;
  font-size: 2rem;
}
/* line 273, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acMenu::before, .page-recruit .faq-container .acWrap .acCont::before {
  content: '';
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  left: 0;
}
/* line 282, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acMenu::before {
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/recruit/icon-q.png) no-repeat center center/cover;
}
/* line 287, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acMenu:hover {
  cursor: pointer;
}
/* line 291, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acCont {
  margin-top: 2rem;
  display: none;
}
/* line 294, sass/recruit.scss */
.page-recruit .faq-container .acWrap .acCont::before {
  top: 0;
  background: url(../img/recruit/icon-a.png) no-repeat center center/cover;
}
/* line 302, sass/recruit.scss */
.page-recruit .step-container .inner {
  max-width: 100rem;
}
/* line 305, sass/recruit.scss */
.page-recruit .step-container .step-ttl {
  margin-bottom: 4rem;
}
/* line 308, sass/recruit.scss */
.page-recruit .step-container .step-item {
  padding: 4rem 0;
  border-bottom: .1rem solid #ccc;
  margin-left: 8rem;
  align-items: center;
  position: relative;
}
/* line 314, sass/recruit.scss */
.page-recruit .step-container .step-item.step01 {
  align-items: flex-start;
}
/* line 316, sass/recruit.scss */
.page-recruit .step-container .step-item.step01::before {
  height: 75%;
}
/* line 321, sass/recruit.scss */
.page-recruit .step-container .step-item.step05::before {
  height: 50%;
  bottom: auto;
  top: 0;
}
/* line 327, sass/recruit.scss */
.page-recruit .step-container .step-item::before {
  content: '';
  width: .2rem;
  height: 100%;
  background: #001c55;
  position: absolute;
  bottom: 0;
  left: -5.6rem;
}
/* line 337, sass/recruit.scss */
.page-recruit .step-container .step-num {
  color: #001c55;
  font-size: 2.083333333333333vw;
  line-height: 1;
  margin-right: 4.6rem;
  position: relative;
}
/* line 343, sass/recruit.scss */
.page-recruit .step-container .step-num span {
  font-size: 4.166666666666666vw;
  display: block;
  margin-top: -1rem;
}
/* line 348, sass/recruit.scss */
.page-recruit .step-container .step-num::after {
  content: '';
  width: 3rem;
  height: 3rem;
  background: #001c55;
  border-radius: 10vw;
  position: absolute;
  left: -7rem;
  top: 50%;
  transform: translateY(-50%);
}
/* line 360, sass/recruit.scss */
.page-recruit .step-container .step-cont-ttl {
  color: #001c55;
  font-size: 2.4rem;
  font-weight: 600;
}
/* line 365, sass/recruit.scss */
.page-recruit .step-container .step-detail {
  margin-top: 3rem;
}
/* line 367, sass/recruit.scss */
.page-recruit .step-container .step-detail .step-detail-ttl {
  color: #001c55;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  position: relative;
}
/* line 373, sass/recruit.scss */
.page-recruit .step-container .step-detail .step-detail-ttl::after {
  content: '';
  width: 60%;
  height: .1rem;
  background: #001c55;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
/* line 383, sass/recruit.scss */
.page-recruit .step-container .step-detail .step-detail-ttl span {
  background: #fff;
  padding-right: 2rem;
}
/* line 390, sass/recruit.scss */
.page-recruit .last-container {
  padding-top: 14rem;
}
/* line 392, sass/recruit.scss */
.page-recruit .last-container .last-ttl {
  margin-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
  /* line 400, sass/recruit.scss */
  .page-recruit .section {
    padding-top: 20vw;
  }
  /* line 403, sass/recruit.scss */
  .page-recruit .btn-flex {
    display: block;
  }
  /* line 405, sass/recruit.scss */
  .page-recruit .btn-flex .page-btn {
    margin-bottom: 2vw;
  }
  /* line 407, sass/recruit.scss */
  .page-recruit .btn-flex .page-btn a {
    display: inline-block;
    width: 50%;
  }
  /* line 414, sass/recruit.scss */
  .page-recruit .msg-container {
    padding-top: 16vw;
  }
  /* line 416, sass/recruit.scss */
  .page-recruit .msg-container .msg-logo {
    width: 40%;
  }
  /* line 419, sass/recruit.scss */
  .page-recruit .msg-container .msg-detail {
    width: 55%;
  }
  /* line 422, sass/recruit.scss */
  .page-recruit .msg-container .msg-ttl {
    font-size: 7vw;
    margin-bottom: 3vw;
  }
  /* line 427, sass/recruit.scss */
  .page-recruit .msg-container .msg-text p {
    font-size: 1.6rem;
  }
  /* line 429, sass/recruit.scss */
  .page-recruit .msg-container .msg-text p:not(:last-of-type) {
    margin-bottom: 2vw;
  }
  /* line 434, sass/recruit.scss */
  .page-recruit .msg-container .msg-per {
    margin-top: 8vw;
  }
  /* line 437, sass/recruit.scss */
  .page-recruit .msg-container .btn-flex {
    margin-top: 10vw;
  }
  /* line 443, sass/recruit.scss */
  .page-recruit .point-container .point-ttl {
    margin-bottom: 6vw;
  }
  /* line 446, sass/recruit.scss */
  .page-recruit .point-container .point-item {
    padding: 4vw;
  }
  /* line 448, sass/recruit.scss */
  .page-recruit .point-container .point-item:not(:last-of-type) {
    margin-bottom: 3vw;
  }
  /* line 451, sass/recruit.scss */
  .page-recruit .point-container .point-item .point-item-ttl {
    font-size: 3.2vw;
    margin-bottom: 2.6vw;
  }
  /* line 455, sass/recruit.scss */
  .page-recruit .point-container .point-item .point-content {
    font-size: 1.6rem;
  }
  /* line 462, sass/recruit.scss */
  .page-recruit .strength-container .st-ttl {
    margin-bottom: 8vw;
  }
  /* line 465, sass/recruit.scss */
  .page-recruit .strength-container .st-item {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, #eff2f8 30%);
    padding-bottom: 4vw;
  }
  /* line 469, sass/recruit.scss */
  .page-recruit .strength-container .st-item:not(:last-of-type) {
    margin-bottom: 8vw;
  }
  /* line 473, sass/recruit.scss */
  .page-recruit .strength-container .st-item:nth-of-type(odd) .st-photo {
    margin-left: auto;
  }
  /* line 477, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap {
    width: 92%;
    margin: 0 auto;
  }
  /* line 481, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-item-flex {
    display: block;
  }
  /* line 484, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-photo {
    width: 80%;
    margin-bottom: 4vw;
  }
  /* line 488, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl {
    margin-bottom: 3vw;
  }
  /* line 490, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-num {
    font-size: 3.2vw;
  }
  /* line 493, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-txt {
    font-size: 3.8vw;
  }
  /* line 497, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-content-txt {
    font-size: 1.6rem;
  }
  /* line 500, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-backup-wrap {
    padding: 6vw 4vw 4vw;
  }
  /* line 507, sass/recruit.scss */
  .page-recruit .flow-container .flow-ttl {
    margin-bottom: 6vw;
  }
  /* line 513, sass/recruit.scss */
  .page-recruit .voice-container .voice-ttl {
    margin-bottom: 6vw;
  }
  /* line 517, sass/recruit.scss */
  .page-recruit .voice-container .voice-wrap:not(:last-of-type) {
    margin-bottom: 6vw;
  }
  /* line 520, sass/recruit.scss */
  .page-recruit .voice-container .voice-wrap .voice-prof {
    margin-bottom: 4vw;
  }
  /* line 524, sass/recruit.scss */
  .page-recruit .voice-container .voice-wrap .voice-msg-wrap .voice-msg {
    padding: 0 4vw;
  }
  /* line 529, sass/recruit.scss */
  .page-recruit .voice-container .more-read {
    margin-top: 4vw;
  }
  /* line 534, sass/recruit.scss */
  .page-recruit .cp-container {
    padding: 14vw 0;
  }
  /* line 536, sass/recruit.scss */
  .page-recruit .cp-container .cp-ttl {
    margin-bottom: 6vw;
  }
  /* line 539, sass/recruit.scss */
  .page-recruit .cp-container .cp-flex {
    justify-content: space-between;
  }
  /* line 541, sass/recruit.scss */
  .page-recruit .cp-container .cp-flex .cp-item {
    margin: 0;
  }
  /* line 548, sass/recruit.scss */
  .page-recruit .rec-container .cp-ttl {
    margin-bottom: 6vw;
  }
  /* line 551, sass/recruit.scss */
  .page-recruit .rec-container .table {
    font-size: 1.6rem;
  }
  /* line 553, sass/recruit.scss */
  .page-recruit .rec-container .table dt, .page-recruit .rec-container .table dd {
    padding: 2vw 4vw;
  }
  /* line 560, sass/recruit.scss */
  .page-recruit .faq-container .faq-ttl {
    margin-bottom: 6vw;
  }
  /* line 563, sass/recruit.scss */
  .page-recruit .faq-container .acWrap {
    padding: 3vw 0;
  }
  /* line 565, sass/recruit.scss */
  .page-recruit .faq-container .acWrap .acMenu, .page-recruit .faq-container .acWrap .acCont {
    font-size: 1.6rem;
  }
  /* line 572, sass/recruit.scss */
  .page-recruit .step-container .step-ttl {
    margin-bottom: 4vw;
  }
  /* line 575, sass/recruit.scss */
  .page-recruit .step-container .step-item {
    padding: 4vw 0;
    margin-left: 8vw;
  }
  /* line 579, sass/recruit.scss */
  .page-recruit .step-container .step-item.step01::before {
    height: 80%;
  }
  /* line 584, sass/recruit.scss */
  .page-recruit .step-container .step-num {
    font-size: 3.083333vw;
  }
  /* line 586, sass/recruit.scss */
  .page-recruit .step-container .step-num span {
    font-size: 6.166667vw;
  }
  /* line 590, sass/recruit.scss */
  .page-recruit .step-container .step-cont-ttl {
    font-size: 2rem;
  }
  /* line 593, sass/recruit.scss */
  .page-recruit .step-container .step-detail {
    margin-top: 3vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 603, sass/recruit.scss */
  .page-recruit .section {
    padding-top: 28vw;
  }
  /* line 608, sass/recruit.scss */
  .page-recruit .btn-flex .page-btn a {
    width: 100%;
    display: flex;
  }
  /* line 614, sass/recruit.scss */
  .page-recruit .mainv {
    padding: 10vw 0;
  }
  /* line 616, sass/recruit.scss */
  .page-recruit .mainv .inner {
    width: 88%;
    margin: 0 auto 0 0;
  }
  /* line 621, sass/recruit.scss */
  .page-recruit .msg-container {
    padding-top: 20vw;
  }
  /* line 623, sass/recruit.scss */
  .page-recruit .msg-container .msg-flex {
    display: block;
  }
  /* line 626, sass/recruit.scss */
  .page-recruit .msg-container .msg-ttl {
    font-size: 9.333333333333334vw;
    text-align: center;
    margin-bottom: 6vw;
  }
  /* line 631, sass/recruit.scss */
  .page-recruit .msg-container .msg-detail {
    width: 100%;
  }
  /* line 634, sass/recruit.scss */
  .page-recruit .msg-container .msg-logo {
    width: 62%;
    margin: 10vw auto 0;
  }
  /* line 639, sass/recruit.scss */
  .page-recruit .msg-container .msg-text p {
    font-size: 1.4rem;
  }
  /* line 643, sass/recruit.scss */
  .page-recruit .msg-container .msg-per {
    margin-top: 10vw;
  }
  /* line 650, sass/recruit.scss */
  .page-recruit .point-container .point-item .point-item-ttl {
    font-size: 5.6000000000000005vw;
  }
  /* line 652, sass/recruit.scss */
  .page-recruit .point-container .point-item .point-item-ttl .en {
    margin-right: 3vw;
  }
  /* line 656, sass/recruit.scss */
  .page-recruit .point-container .point-item .point-content {
    font-size: 1.4rem;
  }
  /* line 663, sass/recruit.scss */
  .page-recruit .strength-container .st-ttl {
    width: 80%;
    margin: 0 auto 10vw;
  }
  /* line 667, sass/recruit.scss */
  .page-recruit .strength-container .st-item {
    padding-bottom: 12vw;
  }
  /* line 669, sass/recruit.scss */
  .page-recruit .strength-container .st-item:not(:last-of-type) {
    margin-bottom: 16vw;
  }
  /* line 672, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-photo {
    width: 90%;
    margin-bottom: 8vw;
  }
  /* line 676, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl {
    margin-bottom: 6vw;
  }
  /* line 678, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-num {
    font-size: 5.066666666666666vw;
  }
  /* line 681, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-wrap-ttl .st-wrap-txt {
    font-size: 6.133333333333333vw;
  }
  /* line 685, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-content-txt {
    font-size: 1.4rem;
  }
  /* line 687, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-content-txt .blue {
    font-size: 1.4rem;
  }
  /* line 691, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-backup-wrap {
    display: block;
    padding: 10vw 4vw 0;
  }
  /* line 695, sass/recruit.scss */
  .page-recruit .strength-container .st-item .st-backup-wrap .st-backup-item:first-of-type {
    margin-right: 0;
    margin-bottom: 10vw;
  }
  /* line 705, sass/recruit.scss */
  .page-recruit .voice-container .voice-ttl {
    width: 66%;
    margin: 0 auto 10vw;
  }
  /* line 710, sass/recruit.scss */
  .page-recruit .voice-container .voice-wrap:not(:last-of-type) {
    margin-bottom: 10vw;
  }
  /* line 713, sass/recruit.scss */
  .page-recruit .voice-container .voice-wrap .voice-prof {
    margin-bottom: 8vw;
  }
  /* line 717, sass/recruit.scss */
  .page-recruit .voice-container .more-read {
    margin-top: 8vw;
  }
  /* line 722, sass/recruit.scss */
  .page-recruit .cp-container {
    padding: 18vw 0 !important;
  }
  /* line 724, sass/recruit.scss */
  .page-recruit .cp-container .cp-ttl {
    width: 80%;
    margin: 0 auto 10vw;
  }
  /* line 728, sass/recruit.scss */
  .page-recruit .cp-container .cp-flex {
    display: block;
  }
  /* line 731, sass/recruit.scss */
  .page-recruit .cp-container .cp-flex .cp-item:first-of-type {
    margin-bottom: 10vw;
  }
  /* line 739, sass/recruit.scss */
  .page-recruit .rec-container .cp-ttl {
    width: 80%;
    margin: 0 auto 10vw;
  }
  /* line 743, sass/recruit.scss */
  .page-recruit .rec-container .table {
    display: block;
  }
  /* line 745, sass/recruit.scss */
  .page-recruit .rec-container .table dt, .page-recruit .rec-container .table dd {
    width: 100%;
  }
  /* line 748, sass/recruit.scss */
  .page-recruit .rec-container .table dt {
    text-align: left;
  }
  /* line 751, sass/recruit.scss */
  .page-recruit .rec-container .table dd {
    padding: 4vw;
  }
  /* line 759, sass/recruit.scss */
  .page-recruit .faq-container .tab li {
    width: calc(100% / 3) !important;
  }
  /* line 763, sass/recruit.scss */
  .page-recruit .faq-container .faq-ttl {
    width: 60%;
    margin: 0 auto 10vw;
  }
  /* line 767, sass/recruit.scss */
  .page-recruit .faq-container .acWrap {
    padding: 4vw 0;
  }
  /* line 769, sass/recruit.scss */
  .page-recruit .faq-container .acWrap .acMenu, .page-recruit .faq-container .acWrap .acCont {
    padding-left: 8vw;
    font-size: 1.4rem;
  }
  /* line 772, sass/recruit.scss */
  .page-recruit .faq-container .acWrap .acMenu::before, .page-recruit .faq-container .acWrap .acCont::before {
    width: 2rem;
    height: 2rem;
  }
  /* line 782, sass/recruit.scss */
  .page-recruit .step-container .step-item::before {
    width: .1rem;
    left: -4vw;
  }
  /* line 787, sass/recruit.scss */
  .page-recruit .step-container .step-num {
    font-size: 5.066666666666666vw;
    margin-right: 6vw;
  }
  /* line 790, sass/recruit.scss */
  .page-recruit .step-container .step-num span {
    font-size: 10.133333333333333vw;
  }
  /* line 793, sass/recruit.scss */
  .page-recruit .step-container .step-num::after {
    width: 1rem;
    height: 1rem;
    left: -5vw;
  }
  /* line 799, sass/recruit.scss */
  .page-recruit .step-container .step-cont-ttl {
    font-size: 4.533333333333333vw;
  }
  /* line 803, sass/recruit.scss */
  .page-recruit .step-container .step-detail .step-detail-ttl {
    font-size: 1.4rem;
    margin-bottom: 2vw;
  }
  /* line 806, sass/recruit.scss */
  .page-recruit .step-container .step-detail .step-detail-ttl::after {
    left: auto;
    right: 0;
  }
}
/* line 818, sass/recruit.scss */
.page-recruit2 .mainv {
  background: url(../img/recruit2/mainv-bg_pc.jpg) no-repeat center center/cover;
}
/* line 820, sass/recruit.scss */
.page-recruit2 .mainv .inner {
  text-align: right;
}
/* line 827, sass/recruit.scss */
.page-recruit2 .point-container .point-item .point-item-ttl {
  justify-content: center;
}
/* line 830, sass/recruit.scss */
.page-recruit2 .point-container .point-item .point-content {
  text-align: center;
}
/* line 832, sass/recruit.scss */
.page-recruit2 .point-container .point-item .point-content .blue {
  color: #2652ab;
  font-weight: 600;
}
/* line 837, sass/recruit.scss */
.page-recruit2 .point-container .point-item .point-exp {
  margin-top: 4rem;
}
/* line 844, sass/recruit.scss */
.page-recruit2 .work-container .work-ttl {
  margin-bottom: 6rem;
}
/* line 847, sass/recruit.scss */
.page-recruit2 .work-container .work-flex {
  justify-content: center;
}
/* line 849, sass/recruit.scss */
.page-recruit2 .work-container .work-flex .work-item {
  margin: 0 2rem;
}
/* line 851, sass/recruit.scss */
.page-recruit2 .work-container .work-flex .work-item .work-item-name {
  color: #001c55;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
/* line 859, sass/recruit.scss */
.page-recruit2 .work-container .work-text {
  font-size: 2rem;
  margin-top: 4rem;
}
/* line 866, sass/recruit.scss */
.page-recruit2 .interview-container .interview-ttl {
  margin-bottom: 8rem;
}
/* line 869, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex {
  justify-content: space-between;
}
/* line 871, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview-prof {
  width: 45%;
  text-align: left;
}
/* line 875, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview-prof-detail {
  color: #001c55;
  font-weight: 600;
  text-align: left;
  margin-bottom: 3rem;
}
/* line 880, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-store {
  font-size: 2.8rem;
}
/* line 883, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-name {
  font-size: 4.4rem;
}
/* line 885, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-name .en {
  font-size: 50%;
  margin-left: 2rem;
}
/* line 891, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview {
  width: 50%;
  text-align: left;
}
/* line 894, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview dt {
  display: inline-block;
  color: #fff;
  background: #001c55;
  font-size: 2rem;
  padding: .6rem 3rem;
  position: relative;
  border-radius: 10vw;
  margin-bottom: 2.6rem;
}
/* line 903, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview dt::after {
  content: '';
  width: 2.2rem;
  height: 1.2rem;
  background: url(../img/recruit2/fukidashi.png) no-repeat center center/cover;
  position: absolute;
  left: 3rem;
  top: 100%;
}
/* line 913, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview dd {
  font-size: 1.8rem;
}
/* line 915, sass/recruit.scss */
.page-recruit2 .interview-container .interview-flex .interview dd:not(:last-of-type) {
  margin-bottom: 3rem;
}
/* line 924, sass/recruit.scss */
.page-recruit2 .step-container .btn-flex {
  margin-top: 2rem;
}
/* line 929, sass/recruit.scss */
.page-recruit2 .step-container .step-item.step01::before {
  height: 56%;
}

@media screen and (max-width: 1024px) {
  /* line 939, sass/recruit.scss */
  .page-recruit2 .mainv .inner {
    width: 58%;
    margin: 0 3% 0 auto;
  }
  /* line 947, sass/recruit.scss */
  .page-recruit2 .work-container .work-flex .work-item {
    margin: 0 2vw;
  }
  /* line 951, sass/recruit.scss */
  .page-recruit2 .work-container .work-text {
    margin-top: 4vw;
    font-size: 1.8rem;
  }
  /* line 957, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex {
    display: block;
  }
  /* line 959, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof {
    width: 72%;
    margin: 0 auto 6vw;
  }
  /* line 963, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview {
    width: 100%;
  }
  /* line 965, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dt {
    font-size: 1.8rem;
  }
  /* line 968, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dd {
    font-size: 1.6rem;
  }
  /* line 970, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dd:not(:last-of-type) {
    margin-bottom: 3vw;
  }
  /* line 980, sass/recruit.scss */
  .page-recruit2 .step-container .step-item.step01::before {
    height: 76%;
  }
  /* line 986, sass/recruit.scss */
  .page-recruit2 .step-container .btn-flex .page-btn {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 989, sass/recruit.scss */
  .page-recruit2 .step-container .btn-flex .page-btn a {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  /* line 999, sass/recruit.scss */
  .page-recruit2 .mainv {
    padding: 10vw 0 6vw;
    background: url(../img/recruit2/mainv-bg_sp.jpg) no-repeat center center/cover;
  }
  /* line 1002, sass/recruit.scss */
  .page-recruit2 .mainv .inner {
    width: 62%;
  }
  /* line 1009, sass/recruit.scss */
  .page-recruit2 .point-container .point-item .point-item-ttl {
    display: block;
    text-align: center;
  }
  /* line 1012, sass/recruit.scss */
  .page-recruit2 .point-container .point-item .point-item-ttl .en {
    margin: 0;
  }
  /* line 1019, sass/recruit.scss */
  .page-recruit2 .work-container .work-ttl {
    margin-bottom: 10vw;
  }
  /* line 1022, sass/recruit.scss */
  .page-recruit2 .work-container .work-flex {
    display: block;
  }
  /* line 1024, sass/recruit.scss */
  .page-recruit2 .work-container .work-flex .work-item {
    width: 100%;
    margin: 0;
  }
  /* line 1027, sass/recruit.scss */
  .page-recruit2 .work-container .work-flex .work-item:first-of-type {
    margin-bottom: 8vw;
  }
  /* line 1030, sass/recruit.scss */
  .page-recruit2 .work-container .work-flex .work-item .work-item-name {
    font-size: 4.533333333333333vw;
    margin-bottom: 4vw;
  }
  /* line 1036, sass/recruit.scss */
  .page-recruit2 .work-container .work-text {
    font-size: 1.6rem;
    margin-top: 6vw;
  }
  /* line 1043, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof {
    width: 100%;
  }
  /* line 1047, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-store {
    font-size: 5.066666666666666vw;
  }
  /* line 1050, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-name {
    font-size: 7.199999999999999vw;
  }
  /* line 1052, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof-detail .interview-name .en {
    font-size: 70%;
  }
  /* line 1057, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview-prof-detail {
    margin-bottom: 4vw;
  }
  /* line 1061, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dt {
    font-size: 1.4rem;
    padding: 1.4vw 4vw;
    margin-bottom: 4vw;
  }
  /* line 1065, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dt::after {
    width: 1.8rem;
    height: 0.8rem;
  }
  /* line 1070, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dd {
    font-size: 1.4rem;
  }
  /* line 1072, sass/recruit.scss */
  .page-recruit2 .interview-container .interview-flex .interview dd:not(:last-of-type) {
    margin-bottom: 6vw;
  }
  /* line 1082, sass/recruit.scss */
  .page-recruit2 .step-container .btn-flex .page-btn a {
    padding: 3vw;
  }
  /* line 1089, sass/recruit.scss */
  .page-recruit2 .step-container .step-item.step01::before {
    height: 82%;
  }
}
