@charset "UTF-8";

html {
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    line-height: 2;
    margin: 0;
}
/* body.active {
    position: relative;
    overflow: hidden;
} */
img {
    height: auto;
	vertical-align: bottom;
}
a {
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
@media screen and (max-width:767px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}
@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
    }

.inner {
    width: 100%;
    max-width: 120rem;
    margin: auto;
}
::placeholder {
    color: #999999;
  }
  /* 旧Edge対応 */
  ::-ms-input-placeholder {
    color: #999999;
  }
  /* IE対応 */
  :-ms-input-placeholder {
    color: #999999;
  }
.header {
    width: 100%;
    height: 9rem;
    background: rgba(255, 255, 255, 0.8);
  }
.header.header-top{
  position: fixed;
  z-index: 10;
  top: 0;
}
.header__inner {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    height: inherit;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
.header__wrap {
    display: flex;
    align-items: center;
    width: 100%;
}
.header__title {
    width: 100%;
    height: 100%;
    max-width:43rem;
    margin: 0;
    display: flex;
    align-items: center;
}
.header__logo {
    display: flex;
    align-items: center;
    height: inherit;
    width: 100%;
}
.header__logo picture {
    width: 100%;
    height: inherit;
}
.header__logo img {
    width: 100%;
    height: 100%;
    vertical-align: initial;
}
.header-shigoto__title {
    width: 100%;
    max-width: 18rem;
    margin-left: 3rem;
}
.header-shigoto__logo {
    display: flex;
    width: 100%;
}
.header-shigoto__logo img {
    width: 100%;
    height: 100%;
}
.header__navs {
    width: 100%;
    max-width: 46.3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__btn {
    width: 100%;
    max-width: 34rem;
}
.header__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 34rem;
    height: 7rem;
    line-height: 7rem;
    text-align: center;
    font-size: 2.4rem;
    color: #F26E40;
    border: 2px solid #F26E40;
    border-radius: 3.5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    font-weight: bold;
}
.header__link::before {
    position: absolute;
    content: "";
    display: block;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-orange.svg) center center / cover no-repeat;
    width: .8rem;
    height: 1.1rem;
}

/* ヘッダーのナビ部分 */

.header__nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    /* overflow: auto; */
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #F26E40;
    transition: ease .4s;
    z-index: 5;
    pointer-events: none;

  }




.nav__items {
  width: 100%;
  max-width: 32rem;
  display: flex;
  align-items: center;
  height: initial;
  flex-direction: column;
}


  .nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    list-style-type: none;
    margin: 0;
  }
  .nav-items__wrap {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 70rem;
    margin: auto;
  }

    .header__nav.active .nav-items__wrap{
      display: flex;
    }

    .nav-items {
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);

    }

  /* ナビのリンク */
  .nav-items__item {
    display: block;
    width: 100%;
  }
  .nav-items__item a {
    width: 100%;
    padding: 1.5rem 1rem;
    display: inline-block;
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    position: relative;
    box-sizing: border-box;
    font-weight: bold;
  }
  .nav-items__item a::before {
    position: absolute;
    content: "";
    display: block;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-white.svg) center center / cover no-repeat;
    width: .7rem;
    height: .9rem;

  }

  .nav-items__item:last-child a {
    margin-bottom: 0;
  }

    .nav-items__item a {
      margin-bottom: 0;
    }


  /* ハンバーガーメニュー */

  .header__hamburger {
    width: 100%;
    max-width: 9rem;
    height: 100%;
    padding: 3rem 2rem;

  }

  .hamburger {
    background-color: #F26E40;
    border-color: transparent;
    z-index: 9999;
    outline: none;
  }
  .hamburger:hover {
    cursor: pointer;
  }
  .hamburger:focus{
    outline: none;
  }

  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }


  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    opacity: 1;
    pointer-events: initial;
    /* position: sticky;
    top: 5.5rem; */
  }

  .hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(30deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;

  }

  .hamburger.active span:nth-child(3) {
    top: -10px;
    transform: rotate(-30deg);
  }

  .drawer-btn {
    width: 100%;
    max-width: 32rem;
    margin-top: 5rem;
  }
  .drawer-btn__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 32rem;
    height: 6.4rem;
    line-height: 6.4rem;
    text-align: center;
    font-size: 2.1rem;
    color: #F26E40;
    background: #fff;
    border-radius: 3.5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
  }
  .drawer-btn__link::before {
    position: absolute;
    content: "";
    display: block;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-orange.svg) center center / cover no-repeat;
    width: .8rem;
    height: 1.1rem;
  }
  .drawer-btn__link.drawer-btn__link--company {
    border: 2px solid #fff;
    background: #F26E40;
    color: #fff;
  }
  .drawer-btn__link.drawer-btn__link--company::before {
    position: absolute;
    content: "";
    display: block;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-white.svg) center center / cover no-repeat;
    width: .8rem;
    height: 1.1rem;
  }

.mv.mv-top {
    margin: 0;
    background: url(../images/mv-bg.webp) center center / cover no-repeat !important;
    padding: 9rem 2rem 1rem 2rem;
}
.mv__image {
    width: 100%;
    max-width: 120rem;
    margin: auto;
    position: relative;
}
.mv__image::before {
    display: block;
    content: "";
    padding-top: 63.285%;
}
.mv__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}
.anchor {

}
.cta {
    text-align: center;
    margin-bottom: 1.5rem;
}
.cta__fukidashi {
    font-size: 2.2rem;
    color: #F26E40;
    display: inline-block;
    position: relative;
    font-weight: bold;
}
.cta__fukidashi::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    transform: translateY(-37%);
    left: -1.5rem;
    background: url(../images/fukidashi-orange-line_left.webp) center center / cover no-repeat;
    width: 1rem;
    height: 2rem;
}
.cta__fukidashi::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    transform: translateY(-39%);
    right: -1.1rem;
    background: url(../images/fukidashi-orange-line_right.webp) center center / cover no-repeat;
    width: 1rem;
    height: 2rem;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 48rem;
    height: 10rem;
    line-height: 10rem;
    text-align: center;
    font-size: 3.1rem;
    color: #fff;
    background: #F26E40;
    border-radius: 5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
    transition: .3s;
}
.btn:hover {
    opacity: .7;
}
.btn::after {
    position: absolute;
    content: "";
    display: block;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/bottom_arrow-white.svg) center center / cover no-repeat;
    width: 1.3rem;
    height: .7rem;
}
.btn.form-btn {
    max-width: 41rem;
    height: 9rem;
    font-size: 2.6rem;
    transition: .3s;
    line-height: 2;
}
.btn.form-btn:hover {
    cursor: pointer;
    opacity: .7;
}
.anchor__items {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 6rem auto;
    max-width: 62.5rem;
}
.anchor__item {
    width: calc(33.333% - 8rem / 3);
    text-align: center;
}
.anchor__item + .anchor__item {
    margin-left: 4rem;
}
.anchor__item:nth-child(3) .anchor__icon img {
    max-width: 7rem;
}
.anchor__item:nth-child(4) {
    margin-left: 0;
}
.anchor__item:nth-child(n + 4) {
    margin-top: 4rem;
}
.anchor__link {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 15rem;
    text-decoration: none;
    background: #FCDA3B;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}
.anchor__link::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: .5rem;
    background: url(../images/bottom_arrow-blue.svg) center center / cover no-repeat;
}
.anchor__icon {
    height: 5rem;
    width: 100%;
}
.anchor__icon img {
    width: 100%;
    max-width: 4.5rem;
}
.anchor__title {
    color: #008D44;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}
.top-about {
    padding-top: 15rem;
    padding-bottom: 17rem;
}
.section__head {
    text-align: center;
}
.section__title {
    width: 100%;
    margin: auto;
}
.section__title img {
    width: 100%;
}
.top-about__title {
    max-width: 48.8rem;
}
.top-about__lead {
    text-align: center;
    width: 100%;
    max-width: 100rem;
    margin: auto;
}
.top-about__text {
    color: #008D44;
    font-size: 3rem;
    line-height: 2;
    font-weight: bold;
}
.top-about__youtube {
    width: 100%;
    max-width: 67rem;
    margin: 4rem auto 0;
    display: none;
}
.top-about__youtube img {
    width: 100%;
}
.top-about__btn {
    text-align: center;
    margin-top: 8rem;
}
.btn-long {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 60rem;
    height: 9rem;
    line-height: 9rem;
    text-align: center;
    font-size: 2.6rem;
    color: #008D44;
    background: #FCDA3B;
    border-radius: 4.5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
}
.btn-long::after {
    position: absolute;
    content: "";
    display: block;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-blue.svg) center center / cover no-repeat;
    width: .7rem;
    height: 1.3rem;
}
.top-merit {
    background: #FFE6D2;
    position: relative;
    z-index: 1;
}
.top-merit::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 30vw;
    bottom: -160px;
    left: 0;
    z-index: -1;
    background: url(../lp/img/merit-bg.png) center center / cover no-repeat;
}
.top-merit__title {
    max-width: 60rem;
}
.top-merit__title img {
    margin-top: -3rem;
}
.top-merit__items {
    display: flex;
    margin-top: 10rem;
}
.top-merit__item {
    width: calc(33.333% - 4rem / 3);
}
.top-merit__item + .top-merit__item {
    margin-left: 2rem;
}
.top-merit__image img {
    width: 100%;
}
.top-merit__item:last-child .top-merit__text {
    position: relative;
}
.top-merit__item:last-child .top-merit__text::after {
    position: absolute;
    right: 162px;
    bottom: -25px;
    display: block;
    content: "※支給要件あり";
    font-size: 1.6rem;
    color: #008D44;
}
.top-merit__text {
    margin-top: 10px;
}
.top-merit__desc {
    font-size: 3.2rem;
    color: #008D44;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
.top-merit__desc span {
    font-size: 1.8rem;
}
.top-support {
    background: #FFD79C;
    margin-top: -5rem;
    padding-bottom: 11rem;
}
.top-support__head {
    width: 100%;
    max-width: 53rem;
    margin: auto;
    padding-top: 31rem;
}
.top-support__title {

}
.top-support__title img {
    width: 100%;
}
.top-support__items {
    display: flex;
    margin-top: 9rem;
}
.top-support__item {
    width: calc(33.333% - 8rem / 3);
    padding: 3rem 2.5rem;
    background: #fff;
    border-radius: 4rem;
    position: relative;
    box-sizing: border-box;
}
.top-support__item::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/support-item-title01.webp) center center / cover no-repeat;
    right: -2rem;
    top: -3rem;
    width: 100%;
    max-width: 14.3rem;
    height: 7.3rem;
}
.top-support__item:nth-child(2)::before {
    background: url(../images/support-item-title02.webp) center center / cover no-repeat;
    max-width: 15.1rem;
}
.top-support__item:nth-child(3)::before {
    background: url(../images/support-item-title03.webp) center center / cover no-repeat;
    max-width: 15.3rem;
}
.top-support__item + .top-support__item {
    margin-left: 4rem;
}
.top-support__image img {
    width: 100%;
}
.top-support__text {
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.top-support__desc {
    font-size: 2.8rem;
    color: #008D44;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 1.7;
}
.top-support__desc span {
    font-size: 1.8rem;
}
.condition {
    padding-top: 9rem;
    padding-bottom: 11rem;
}
.condition__title {
    max-width: 26.5rem;
}
.condition__image {
    width: 100%;
    max-width: 62.7rem;
    margin: -4rem auto 0;
}
.condition__image img {
    width: 100%;
}
.condition__text {
    margin-top: 2rem;
}
.condition__lead {
    font-size: 3rem;
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    margin: 3rem 0 0 0;
}
.condition__desc {
    color: #333333;
    font-size: 2rem;
    line-height: 2;
    margin: 1rem 0 0 0;
    text-align: center;
}
.condition__caution {
    color: #333333;
    font-size: 2rem;
    line-height: 2;
    width: 100%;
    max-width: 84rem;
    margin: auto;
    padding-left: 7%;

}
.more-btn {
    text-align: center;
    margin-top: 5rem;
}
.more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 41rem;
    height: 9rem;
    line-height: 9rem;
    text-align: center;
    font-size: 2.4rem;
    color: #008D44;
    background: #FCDA3B;
    border-radius: 4.5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
}
.more::after {
    position: absolute;
    content: "";
    display: block;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-blue.svg) center center / cover no-repeat;
    width: .7rem;
    height: 1.3rem;
}

.top-flow {
    padding-top: 11rem;
    padding-bottom: 11rem;
    background: #E7E7E7;
}
.top-flow__title {
    max-width: 26.5rem;
}
.top-flow__lead {
    font-size: 2.4rem;
    color: #008D44;
    font-weight: bold;
    text-align: center;
}
.top-flow__items {
    width: 100%;
    max-width: 67rem;
    margin: 4rem auto 0 auto;
}
.top-flow__item {
    display: flex;
    align-items: center;
    position: relative;
}
.top-flow__item::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/flow-arrow.svg) center center / cover no-repeat;
    bottom: -2rem;
    bottom: -4rem;
    left: 56%;
    width: 2rem;
    height: 1.3rem;
}
.top-flow__item:nth-child(n + 5)::after {
    left: 50%;
    transform: translateX(-50%);
}
.top-flow__item + .top-flow__item {
    margin-top: 7rem;
}
.top-flow__number {
    width: 100%;
    max-width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: #5ABC97;
    color: #fff;
    font-size: 5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.top-flow__number::before {
    position: absolute;
    content: "";
    display: block;
    width: .6rem;
    height: 160%;
    background: #5ABC97;
    bottom: -160%;
    left: 50%;
    transform: translateX(-50%);

}
.top-flow__number img {
    width: 100%;
}
.top-flow__item:nth-child(5) .top-flow__number::before {
    display: none;
}
.top-flow__item:last-child::after {
    display: none;
}
.top-flow__item-text {
    flex: 1;
    margin-left: 2rem;
    background: #fff;
    border-radius: 2rem;
    text-align: center;
    padding: 3rem 0;
}
.top-flow__item-title {
    margin: 0;
    line-height: 1;
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
}
.top-flow__item-desc {
    margin: 2rem 0 0 0;
    line-height: 1;
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
}
.top-flow__item.top-flow__banner {
    margin-left: 0;
}
.top-flow__item.top-flow__banner > .top-flow__item-text {
    margin-left: 0;
}
.top-flow__item.top-flow__banner > .top-flow__item-text {
    background: #F26E40;
}
.top-flow__item.top-flow__banner.top-flow__banner--green > .top-flow__item-text {
    background: #5ABC97;
}
.top-flow__item.top-flow__banner > .top-flow__item-text > .top-flow__item-title {
    font-size: 3.2rem;
    color: #fff;
}
.top-flow__item.top-flow__banner > .top-flow__item-text > .top-flow__item-desc {
    font-size: 2.6rem;
    color: #fff;
}
.industry {
    padding-top: 13rem;
    padding-bottom: 15rem;
}
.top-industry__title {
    max-width: 26.4rem;
}
.industry__items {
    display: flex;
    flex-wrap: wrap;
    max-width: 62.5rem;
    list-style: none;
    padding: 0;
    margin: 3rem auto 0;
}
.industry__item {
    width: calc(33.333% - 8rem / 3);
    height: 17rem;
}
.industry__item + .industry__item {
    margin-left: 4rem;
}
.industry__item:nth-child(4) {
    margin-left: 0;
}
.industry__item:nth-child(n + 4) {
    margin-top: 5rem;
}

.industry__item:nth-child(2) .industry__item-image {
    max-width: 6.4rem;
}
.industry__item:nth-child(3) .industry__item-image {
    max-width: 6.1rem;
}
.industry__item:nth-child(4) .industry__item-image {
    max-width: 6.6rem;
}
.industry__item:nth-child(5) .industry__item-image {
    max-width: 4.9rem;
}
.industry__item:nth-child(6) .industry__item-image {
    max-width: 4.4rem;
}
.industry__item:nth-child(n + 2) .industry__item-image {
    height: 5.7rem;
    display: flex;
    align-items: end;
}

.industry__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    text-align: center;
    background: #FCDA3B;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
}
.industry__item-image {
    width: 100%;
    max-width: 3.6rem;
    margin: 0 auto;
}
.industry__item-image img {
    width: 100%;
}
.industry__item-text {
    margin-top: 1rem;
}
.industry__item-title {
    font-size: 1.6rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.05em;
}
.top-flow__btn {
    margin-top: 7rem;
}
.voice {
    padding-top: 12rem;
    padding-bottom: 10rem;
    background: #DFF2FC;
}
.top-voice__title {
    max-width: 26.7rem;
}
.voice__items {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-left: -1.5rem;
    box-sizing: border-box;
    padding-top: 5rem;
}
.voice__item {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    width: calc(19%);
    margin: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

.voice__item:nth-child(n + 5) {
    margin-top: 1.5rem;
}
.voice__item-image img {
    width: 100%;
}
.voice__item-text {
    margin-top: 1rem;
}
.voice__item-title {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #008D44;
    font-weight: bold;
    text-align: center;
}
.voice__item-desc {
    font-size: 1.8rem;
    color: #008D44;
    margin: .5rem 0 2rem 0;
}
.voice__item-btn {
    margin-top: auto;
}
.voice__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 24rem;
    height: 7rem;
    line-height: 7rem;
    text-align: center;
    font-size: 2.6rem;
    color: #008D44;
    background: #FCDA3B;
    border-radius: 3.5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
}
.voice__item-link::after {
    position: absolute;
    content: "";
    display: block;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/right_arrow-blue.svg) center center / cover no-repeat;
    width: .7rem;
    height: 1.3rem;
}
.voice__btn {
    margin-top: 5rem;
}
.faq {
    padding-top: 10rem;
    padding-bottom: 9rem;
}
.top-faq__title {
    max-width: 26.5rem;
}
.faq__items {
    width: 100%;
    max-width: 100rem;
    margin: 5rem auto 0 auto;
}
.faq__accordion {
    display: none;
    margin-top: 3rem;
}
.faq__item {
    padding: 2.5rem 2rem 3.5rem 3.5rem;
    background: #E7E7E7;
    border-radius: 1rem;
}
.faq__item + .faq__item {
    margin-top: 3rem;
}
.faq__q {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #333333;
}
.faq__q span {
    width: 100%;
    max-width: 4.8rem;
    margin-right: 3rem;
}
.faq__q span img {
    width: 100%;
}

.faq__a {
    display: flex;
    align-items: center;
    margin: 1rem 0 0 0;
    font-size: 2rem;
    color: #333333;
}
.faq__a span {
    width: 100%;
    max-width: 4.8rem;
    margin-right: 3rem;
}
.faq__a span img {
    width: 100%;
}
.faq-btn {
    text-align: center;
    margin-top: 5rem;
}
.faq-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 21rem;
    height: 6rem;
    line-height: 6rem;
    text-align: center;
    font-size: 2rem;
    color: #008D44;
    border: 3px solid #008D44;
    background: #fff;
    border-radius: 3rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
}
.faq-more::after {
    position: absolute;
    content: "";
    display: block;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/bottom_arrow-blue.svg) center center / cover no-repeat;
    width: 1.3rem;
    height: .7rem;
    transition: .3s;
}
.faq-more.open::after {
    transform: rotate(180deg) translateY(50%);
}
.news {
    margin-top: 2rem;
    padding-top: 6rem;
    padding-bottom: 9rem;
    background: #DFF2FC;
}
.top-news__title {
    max-width: 26.5rem;
}
.news__items {
    width: 100%;
    max-width: 100rem;
    margin: 2rem auto 0 auto;
    list-style: none;
    padding: 0;
}
.news__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #BFBFBF;
}
.news__item:not(:first-child) {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}
.news__article {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.news__date {
    flex: 0 0 12rem;
    color: #333333;
    font-size: 2rem;
    letter-spacing: 0;
}
.news__text {
    flex: 1;
    display: flex;
    margin-left: 3rem;
}
.news__category {
    color: #333333;
    font-size: 2rem;
    margin: 0;
}
.news__category span {
    color: #333333;
    font-size: 2rem;
}
.news__title {
    color: #333333;
    font-size: 2rem;
    margin: 0;
}
.schedule {
    padding-top: 9rem;
    padding-bottom: 9rem;
}
.top-schedule__title {
    max-width: 26.7rem;
}

.toggle_wrap:not(:first-of-type) .toggle_switch{
    border-top: 2px solid #008D44;
  }
  .toggle_wrapper {
    border: 2px solid #008D44;
    width: 100%;
    max-width: 100rem;
    margin: 2rem auto 0 auto;
  }
  .toggle_switch {

    cursor: pointer;
    text-align: center;
  }
  .toggle_switch p {
    display: inline-block;
    color: #008D44;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
    position: relative;
  }
  .toggle_switch.open {
    /* border-bottom: 1px solid gray; */
    background: #008D44;
  }
  .toggle_switch.open p {
    color: #fff;
  }
  /* .toggle_switch:hover {
    background-color: #eee;
  } */
  .toggle_switch p::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 11px;
    background: url(../images/bottom_arrow-blue.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -3rem;
    transition: transform .2s;
    background-repeat: no-repeat;
  }
  .toggle_switch.open p::after {
    /* transform: rotateZ(180deg); */
    /* top: 46%; */
    background: url(../images/top_arrow-white.svg);
    background-repeat: no-repeat;

  }
  .toggle_contents {
    display: block;
    padding: 4rem 3rem;
  }
  .toggle_contents p {
    font-size: 2rem;
    color: #008D44;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  .toggle_contents p span {
    display: inline-block;
    width: 1.5rem;
    flex: 0 0 1.5rem;
    height: 1.5rem;
    background: #008D44;
    margin-right: .5rem;
  }

  .toggle_contents p + p {
    margin-top: 2.2rem;
  }

.access {
    padding-top: 2rem;
    padding-bottom: 10rem;
}
.top-access__title {
    max-width: 26.5rem;
}
.access__items {
    width: 100%;
    max-width: 100rem;
    margin: 3rem auto 0 auto;
}
.access__item + .access__item {
    margin-top: 5rem;
}
.access__head {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #008D44;
}
.access__title {
    font-size: 2.4rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.access__genre {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}
.access__genre span {
    font-size: 1.8rem;
    color: #008D44;
    background: #fff;
    border: 1.5px solid #008D44;
    font-weight: bold;
    padding: .5rem 1rem;
    border-radius: .5rem;
    line-height: 1;
}
.access__genre span + span {
    margin-left: 1rem;
}
.access__contact {
    margin: 1rem 0 0 0;
}
.access__post {
    font-size: 2rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.access__address {
    font-size: 2rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.access__tel a {
    font-size: 2rem;
    color: #008D44;
    font-weight: bold;
    margin: 0 0 0 1rem;
}

.access__maps {
    display: flex;
    margin-top: 1rem;
}
.access__map {
    position: relative;
    padding-top: 34%;
    flex: 0 0 60rem;
    width: 100%;
    height: 0;
    margin: 0 auto;
    overflow: hidden;
}
.access__map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

}
.access__root {
    flex: 1;
    margin-left: 2rem;
}
.access__station {
    margin: 0;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2;
}
.footer__content {
    padding-bottom: 5rem;
    width: 100%;
    max-width: 64rem;
    margin: auto;
    text-align: center;
}
.footer__line {
    text-align: center;
}
.footer__line-text {
    display: inline-block;
    text-align: center;
    color: #31A338;
    font-size: 2.2rem;
    position: relative;
    font-weight: bold;
}
.footer__line-text::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/fukidashi-line-left.webp) center center / cover no-repeat;
    width: 1.3rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    left: -3rem;

}
.footer__line-text::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/fukidashi-line-right.webp) center center / cover no-repeat;
    width: 1.3rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    right: -3rem;
}
.footer__line-link img {
    width: 100%;
}
.footer__x {
    margin-top: 3rem;
}
.footer__x-link  {
    display: inline-block;
}
.footer__x-link img {
    width: 100%;
}
.footer__btn {
    margin-top: 6rem;
}
.footer-more.more {
    max-width: 49rem;
    font-size: 2.6rem;
}
.footer__contact {
    margin: 3rem auto 0 auto;
}
.footer__contact-lead {
    font-size: 2rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.footer__contact-tel {
    display: inline-block;
    text-decoration: none;
    font-size: 3.2rem;
    color: #008D44;
    font-weight: bold;
    line-height: 1;
}
.footer__contact-date {
    font-size: 1.4rem;
    color: #008D44;
    margin: 0;
}
.footer__row {
    background: #E7E7E7;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.footer__row-content {
    width: 100%;
    max-width: 67rem;
    margin: auto;
    text-align: center;
}
.footer__logo {
    width: 100%;
    max-width: 40.5rem;
    margin: auto;
}
.footer__logo div {
    display: inline-block;
    width: 100%;
}
.footer__logo div img {
    width: 100%;
}
.footer__row-desc {
    font-size: 1.4rem;
    color: #333333;
}
.footer__row-items {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 3rem auto 0 auto;
}
.footer__row-item {
    line-height: 1;
    display: flex;
    align-items: center;
}
.footer__row-item:first-child {
    padding-right: .5rem;
}
.footer__row-item + .footer__row-item{
    padding-left: .5rem;
    border-left: 1px solid #008D44;
}
.footer__row-link {
    display: inline-block;
    font-size: 1.4rem;
    color: #213C7F;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
    padding: .5rem 0;
}

/*　voiceページ　*/
#page-voice {
    padding-top: 9rem;
}
.page-head {
    background: #DCDBD5;
    height: 8rem;
}
.page-head-image {
    width: 100%;
    max-width: 64.7rem;
    margin: auto;
}
.page-head-image img {
    width: 100%;
}
.page-voice__top {
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.page-voice__heading {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-voice__number {
    width: 100%;
    max-width: 10rem;
    height: 10rem;
    border: 1px solid #008DD6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-voice__number-heading {
    font-size: 2rem;
    color: #008DD6;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    margin: 0;
    line-height: 1;
}
.page-voice__number-number {
    font-size: 5.3rem;
    color: #008DD6;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
}
.page-voice__title {
    margin-left: 2rem;
}
.page-voice__experiences {
    font-size: 3.5rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}
.page-voice__companyName {
    margin: 1rem 0 0 0;
    font-size: 2.4rem;
    color: #333333;
    line-height: 1;
}
.page-voice__mv {
    width: 100%;
    max-width: 120rem;
    margin: 3rem auto 0 auto;
}
.page-voice__mv-image {
    position: relative;
}
.page-voice__mv-image img {
    width: 100%;
}
.page-voice__mv-text {
    position: absolute;
    content: "";
    display: inline-block;
    bottom: 6%;
    left: 3%;
}
.page-voice__mv-lead {
    display: inline-block;
    padding: 1rem 2rem;
    background: #008D44;
    color: #fff;
    font-weight: bold;
    font-size: 3.8rem;
    line-height: 1;
    margin: .5rem;
}
.page-voice__content {
    background: #DFF2FC;
    padding-top: 5rem;
    padding-bottom: 9rem;
}
.page-voice__article {
    width: 100%;
    max-width: 110rem;
    margin: auto;
    padding-top: 6rem;
    padding-bottom: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    background: #fff;
    box-sizing: border-box;
}
.page-voice__name {
    font-size: 2.6rem;
    color: #008D44;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}
.page-voice__name:nth-of-type(2) {
    margin-top: 5rem;
  }
.page-voice__before {
    background: #F1F1F1;
    border-radius: 1.5rem;
    padding: 2rem 5rem 2rem 3rem;
    display: flex;
    margin: 3rem 0 0 0;
}
.page-voice__before-title {
    flex: 0 0 10rem;
    font-size: 2.2rem;
    margin: 0;
    color: #000000;
}
.page-voice__before-text {
    margin: 0 0 0 2rem;
}
.page-voice__before-desc {
    font-size: 2.2rem;
    line-height: 2;
    margin: 0;
    color: #000000;
}
.page-voice__after {
    background: #F1F1F1;
    border-radius: 1.5rem;
    padding: 2rem 5rem 2rem 3rem;
    display: flex;
    margin: 2rem 0 0 0;
}
.page-voice__after-title {
    flex: 0 0 10rem;
    font-size: 2.2rem;
    margin: 0;
    color: #008D44;
    font-weight: bold;
}
.page-voice__after-text {
    margin: 0 0 0 2rem;
}
.page-voice__after-desc {
    font-size: 2.2rem;
    line-height: 2;
    margin: 0;
    color: #008D44;
    font-weight: bold;
}

.page-voice__lead {
    font-size: 1.8rem;
    line-height: 2;
    color: #333333;
    margin: 2rem 0 0 0;
}
.page-voice__items {
    margin: 6rem 0 0 0;
}
.page-voice__item + .page-voice__item {
    margin-top: 7rem;
}

.page-voice__item-image {
    width: 100%;
    max-width: 70rem;
    position: relative;
    margin: auto;
}
.page-voice__item-image::before {
    display: block;
    content: "";
    padding-top: 54%;
}
.page-voice__item-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    border-radius: 1.6rem;
}
.page-voice__item-text {
    margin: 3rem 0 0 0;
}
.page-voice__item-title {
    font-size: 2.6rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.page-voice__item-desc {
    color: #333333;
    line-height: 2;
    margin: 1rem 0 0 0;
    font-size: 1.8rem;
}
.page-voice__company {
    width: 100%;
    max-width: 110rem;
    margin: 5rem auto 0 auto;
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    box-sizing: border-box;
}
.page-voice__company-heading {
    display: block;
    border-radius: 1.5rem;
    padding: 2rem;
    background: #008DD6;
}
.page-voice__company-title {
    color: #fff;
    font-size: 2.6rem;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}
.page-voice__company-name {
    font-size: 2.6rem;
    color: #008DD6;
    margin: 2rem 0 0 0;
    line-height: 1;
    font-weight: bold;
}
.page-voice__company-image {
    width: 100%;
    max-width: 70rem;
    position: relative;
    margin: 5rem auto 0 auto;
}
.page-voice__company-image::before {
    display: block;
    content: "";
    padding-top: 54%;
}
.page-voice__company-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}
.page-voice__company-text {
    margin: 5rem 0 0 0;
}
.page-voice__company-desc {
    font-size: 2.4rem;
    line-height: 2;
    color: #333333;
    margin: 0;
}
.page-voice__future {
    background: #F1F1F1;
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 3rem 0 0 0;
}
.page-voice__future-title {
    margin: 0;
    font-size: 2.6rem;
    color: #5abc97;
    font-weight: 500;

}
.page-voice__future-desc {
    font-size: 2.4rem;
    line-height: 2;
    color: #333333;
    margin: 0rem 0 0 0;
}
/* aboutページ */
.about-mv {
    background: url(../images/page-about/about-bg.webp) center center / cover no-repeat;
    padding-bottom: 5rem;
    margin: 0;
}
.about-mv__image {
    width: 66%;
    margin: auto;
    padding-top: 15rem;
}
.about-mv__image img {
    width: 100%;
}
.about-mv__cta{
    margin-top: 2rem;
}
.about-merit {
    background: #FFE6D2;
    padding-bottom: 10rem;
}
.about-merit__heading-title {
    max-width: 60rem;
    margin: auto;

}
.about-merit__heading-title img {
    margin: -4rem auto 0 auto;
}
.about-merit__items {
    width: 100%;
    max-width: 105rem;
    margin: 7rem auto 0 auto;
}
.about-merit__item {
    display: flex;
    align-items: center;
}
.about-merit__item + .about-merit__item {
    margin-top: 6rem;
}
.about-merit__item-image {
    width: 100%;
    max-width: 42.5rem;
}
.about-merit__item-image img {
    width: 100%;
}
.about-merit__item:last-child .about-merit__text {
    position: relative;
}
.about-merit__item:last-child .about-merit__text::after {
    position: absolute;
    left: 0px;
    bottom: -40px;
    display: block;
    content: "※支給要件あり";
    font-size: 1.6rem;
    color: #008D44;
}
.about-merit__text {
    margin-left: 6rem;
    margin-top: -4rem;
}
.about-merit__title {
    font-size: 3rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.about-merit__title span {
    font-size: 2.4rem;
}
.about-merit__desc {
    font-size: 2.4rem;
    color: #008D44;
    margin: 0 0 0 0;
}
.about-support {
    padding-top: 8rem;
    padding-bottom: 12rem;
}
.about-support__title {
    width: 100%;
    max-width: 52.9rem;
    margin: auto;
}
.about-support__title img {
    width: 100%;
}
.about-support__items {
    width: 100%;
    max-width: 105rem;
    margin: 5rem auto 0 auto;
}
.about-support__item {
    display: flex;
    padding: 3.5rem 3.5rem;
    border: 3px solid #F26E40;
    border-radius: 2rem;
    position: relative;
    box-shadow: 3px 3px 0px pink;
}
.about-support__item:first-child .about-support__item-text::after {
    position: absolute;
    content: "など";
    display: block;
    right: 180px;
    bottom: 9px;
    font-size: 2.2rem;
    font-weight: bold;
}
.about-support__item::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/page-about/about-support_title01.webp) center center / contain no-repeat;
    width: 171px;
    height: 101px;
    top: -33px;
    left: -4px;
    border-radius: 5px;
}
.about-support__item:nth-child(2)::before {
    background: url(../images/page-about/about-support_title02.webp) center center / contain no-repeat;
}
.about-support__item:nth-child(3)::before {
    background: url(../images/page-about/about-support_title03.webp) center center / contain no-repeat;
}
.about-support__item + .about-support__item {
    margin-top: 5rem;
}
.about-support__item-image {
    width: 100%;
    max-width: 41rem;
}
.about-support__item-image img {
    width: 100%;
}
.about-support__item-text {
    margin-left: 4rem;
    flex: 1;
}
.about-support__item-title {
    font-size: 2.4rem;
    line-height: 1.7;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.about-support__item-desc {
    font-size: 1.8rem;
    color: #333333;
    margin: 0 0 0 0;
}
.about-support__item-desc.about-support__item-desc--large {
    font-size: 2.2rem;
    margin: 1.5rem 0 0 0;
    line-height: 1;
    font-weight: bold;
}
.about-support__item-desc.about-support__item-desc--large + .about-support__item-desc.about-support__item-desc--large {
    margin-top: 1.5rem;
}
.about-flow {
    padding-top: 12rem;
    padding-bottom: 16rem;
    background: #F2F2F2;
}
.about-flow__title {
    max-width: 26.5rem;
}
.about-flow__title img {
    width: 100%;
}
.about-flow__lead {
    text-align: center;
    font-size: 2.4rem;
    color: #008D44;
    font-weight: bold;
    margin: 0;
}
.about-flow__cta {
    margin-top: 1rem;
}
.about-flow__cta > .cta__fukidashi {
    font-size: 1.8rem;
}
.about-flow__cta > a {
    font-size: 2.4rem;
    max-width: 38.4rem;
    height: 8rem;
    line-height: 8rem;
}

.about-flow__items {
    width: 100%;
    max-width: 100rem;
    margin: 5rem auto 0 auto;
}
.about-flow__item {
    display: flex;
    position: relative;
}
.about-flow__item::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/page-about/about-flow_arrow.webp) center center / cover no-repeat;
    bottom: -2rem;
    bottom: -4rem;
    left: 54%;
    width: 2rem;
    height: 1.3rem;
}
.about-flow__item:last-child::after {
    display: none;
}
.about-flow__item + .about-flow__item {
    margin-top: 7rem;
}
.about-flow__icon {
    max-width: 8rem;
    width: 100%;
    height: 8rem;
    position: relative;
}
.about-flow__icon::before {
    position: absolute;
    content: "";
    display: block;
    width: 6px;
    height: 960%;
    bottom: -760px;
    left: 50%;
    transform: translateX(-50%);
    background: #5ABC97;
}
.about-flow__icon img {
    width: 100%;
}
.about-flow__item-text {
    background: #fff;
    border: 2rem;
    padding: 3rem 2.5rem;
    margin-left: 2rem;
    border-radius: 2rem;
    width: 100%;
}
.about-flow__item-title {
    font-size: 2.8rem;
    color: #333333;
    margin: 0;
    text-align: center;
    font-weight: bold;
}
.about-flow__item-desc {
    font-size: 2rem;
    color: #333333;
    margin: 0 0 0 0;
}
.about-flow__example {
    border-radius: 2rem;
    background: #E6F5EF;
    padding: 1rem 3rem 4rem;
    margin: 1rem 0 0 0;
    position: relative;
}
.about-flow__example::after {
    position: absolute;
    content: "など";
    font-size: 2rem;
    color: #333333;
    right: 38%;
    bottom: 10px;
}
.about-flow__item:nth-child(5) .about-flow__example::after {
    right: 70%;
}
.about-flow__example-title {
    color: #5ABC97;
    font-size: 2.2rem;
    margin: 0;
    font-weight: bold;
}
.about-flow__example-desc {
    font-size: 2rem;
    color: #333333;
    margin: 0 0 0 0;
    display: flex;
}
.about-flow__example-desc span {
    margin-left: 20px;
}
.about-flow__banner {
    background: #5ABC97;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    height: 15rem;
    padding-left: 10rem;
    width: 100%;
    position: relative;
}
.about-flow__banner::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/page-about/about-flow_human01.webp) center center / cover no-repeat;
    width: 16.8rem;
    height: 19.6rem;
    bottom: -1.5px;
    right: 3rem;
}
.about-flow__banner--orange {
    background: #F26E40;
}
.about-flow__banner--orange::after {
    background: url(../images/page-about/about-flow_human02.webp) center center / cover no-repeat;
    width: 17.1rem;
    height: 19.2rem;
    bottom: 0;
}
.about-flow__banner03::after {
    background: url(../images/page-about/about-flow_human03.webp) center center / cover no-repeat;
    width: 22.1rem;
    height: 19.2rem;
    bottom: 0;
}
.about-flow__banner--orange > .about-flow__banner-text {
    font-size: 5.6rem;
}
.about-flow__banner-text {
    font-size: 4.4rem;
    color: #fff;
    font-weight: bold;
}
.about-flow__banner-text span {
    font-size: 2.8rem;
    color: #fff;
}
.about-flow__item-section {
    margin: 3rem 0 0 0;
}
.about-flow__item-section-title {
    margin: 0;
    font-size: 2.4rem;
    color: #5ABC97;
    border: 1px solid #5ABC97;
    text-align: center;
    padding: 1.5rem 0;
    line-height: 1;
    font-weight: bold;
}
.about-flow__item-section-desc {
    margin: 1rem 0 0 0;
}
.about-flow__row {
    width: 100%;
    max-width: 100rem;
    margin: 3rem auto 0 auto;
}
.about-flow__item-desc--green {
    color: #5ABC97;
    font-weight: bold;
}
.about-flow__item-desc--green + .about-flow__item-desc {
    margin: 1rem 0 0 0;
}
.about-incentive {
    padding-top: 5rem;
    padding-bottom: 10rem;
}
.about-incentive__image {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    padding: 0 2rem;
    box-sizing: border-box;
}
.about-incentive__image img {
    width: 100%;
}
/* industryページ */
#page-industry {
    margin-top: 9rem;
}
.page-industry__main-image {
    background: url(../images/page-industry/industry-mv.webp) center center / cover no-repeat;
    height: 31.71vw;
}
.page-industry__main-image img {
    width: 100%;
}

.page-industry__main-inner {
    width: 100%;
    height: 100%;
    max-width: 120rem;
    margin: auto;
    padding: 0 2rem;
    box-sizing: border-box;
    position: relative;
}

.page-industry__main-text {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
}
.page-industry__main-title {
    margin: 0;
    max-width: 24rem;
}
.page-industry__main-title img {
    width: 100%;
}
.page-industry__main-title--en {
    font-size: 2.4rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: .5rem 0 0 0;
}
.page-industry__main-rowlead {
    font-size: 2.4rem;
    background: #fff;
    border-radius: 1rem;
    color: #F26E40;
    padding: 1rem 1.5rem;
    width: 58%;
    margin: 2rem 0 0 0;
    font-weight: bold;

}
.page-industry__main-rowdesc {
    font-size: 1.6rem;
    background: #fff;
    border-radius: 1rem;
    color: #008D44;
    padding: 2rem 1rem;
    width: 60%;
}
.page-industry__anchor {
    width: 100%;
    max-width: 120rem;
    margin: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.page-industry__contents {
    padding-top: 1rem;
    padding-bottom: 5rem;
}
.page-industry__content {
    background: #F2F2F2;
}
.page-industry__content + .page-industry__content {
    margin-top: 6rem;
}
.page-industry__content-inner {
    width: 100%;
    max-width: 120rem;
    padding: 0 2rem;
    margin: auto;
    box-sizing: border-box;
    padding-top: 5rem;
    padding-bottom: 6rem;
}
.page-industry__content-heading {
    text-align: center;
}
.page-industry__content-title {
    display: inline-block;
    padding: 4rem 1rem 6rem;
    border: 6px solid #008D44;
    font-size: 3.2rem;
    color: #008D44;
    margin: 0;
    line-height: 1;
    position: relative;
    min-width: 40rem;
    box-sizing: border-box;
}
.page-industry__content-title01 img {
    width: 100%;
    max-width: 65.7rem;
}
.page-industry__content-title02 img {
    width: 100%;
    max-width: 12.8rem;
}
.page-industry__content-title03 img {
    width: 100%;
    max-width: 6.3rem;
}
.page-industry__content-title04 img {
    width: 100%;
    max-width: 6.5rem;
}
.page-industry__content-title05 img {
    width: 100%;
    max-width: 13rem;
}
.page-industry__content-title06 img {
    width: 100%;
    max-width: 17rem;
}
.page-industry__content-title:hover {
    cursor: pointer;
}
.page-industry__content-title::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/page-industry/bottom-arrow.svg) center center / cover no-repeat;
    width: 2.1rem;
    height: 1.1rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.page-industry__content-title.open::after {
    transform: translateX(-50%) rotate(180deg);
}
.page-industry__content-image {
    margin: 3rem 0 0 0;
}
.page-industry__content-image img {
    width: 100%;
}
.page-industry__content-text {
    background: #fff;
    padding: 5rem 5rem 4rem 5rem;
    width: 100%;
    max-width: 100rem;
    margin: -5rem auto 0 auto;
    position: relative;
    box-sizing: border-box;
}
.page-industry__content-lead {
    font-size: 1.8rem;
    color: #333333;
    margin: 0;
}
.page-industry__content-item {
    margin: 3rem 0 0 0;
}
.page-industry__content-item-title {
    font-size: 2.6rem;
    color: #008D44;
    margin: 0;
    position: relative;
    font-weight: bold;
}
.page-industry__content-item-title::before {
    position: absolute;
    content: "";
    display: block;
    background: #F26E40;
    width: 5rem;
    height: .6rem;
    top: 50%;
    transform: translateY(-50%);
    left: -7rem;
}
.page-industry__content-item-desc {
    font-size: 1.8rem;
    color: #333333;
    margin: 0;
}
.page-industry__content-days {
    margin: 2rem 0 0 0;
}
.page-industry__content-day {
    display: flex;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #008D44;
}
.page-industry__content-day + .page-industry__content-day {
    margin-top: 1.5rem;
}
.page-industry__content-day-time {
    font-size: 2.2rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: #008D44;
    margin: 0;
    width: 100%;
    max-width: 8rem;
}
.page-industry__content-day-desc {
    font-size: 2.2rem;
    color: #333333;
    margin: 0 0 0 3rem;
    font-weight: bold;
}
.industry-voice__wrap {
    background: #DFF2FC;
    padding: 2rem 0 10rem 0;
}
.industry-voice__items {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
}
.industry-voice__main-image.page-industry__main-image {
    background: url(../images/page-industry/industry-voice_mv.webp) center right / cover no-repeat;
}
.industry-voice__main-text.page-industry__main-text {
    height: 290px;
    bottom: 45px;
}
.contact {
    background: #4EAA77;
    padding-top: 9rem;
    padding-bottom: 8rem;
}
.contact__heading {
    width: 100%;
    max-width: 41rem;
    margin: auto;
}
.contact__title {
    margin: 0;
}
.contact__title img {
    width: 100%;
}
.form {
    max-width: 700px;
    margin: 3rem auto 0 auto;
}
.form__items {}
.form__item{
  margin-bottom: 3rem;
}
.form__item + .form__item {
    margin-top: 2rem;
}
.form__label {
    display: flex;
    align-items: center;
    line-height: 1;
}
.form__title {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
}
.form__required {
    display: inline-block;
    width: 54px;
    height: 27px;
    line-height: 27px;
    font-size: 1.6rem;
    background: #fff;
    color: #F26E40;
    border: 1px solid #F26E40;
    border-radius: .5rem;
    text-align: center;
    margin-left: .5rem;
    font-weight: bold;
}
.form__input {
   margin-top: 1rem;
}
.form__input input,
.form__input select,
.form__input textarea
{
    border: none;
    width: 100%;
    background: #fff;
    font-size: 2rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    color: #222222;
    border-radius: .5rem;
}
.form__input select {
    color: #333;
}
.form__input input {
    max-width: 80rem;
}

.form__input select {
    max-width: 19rem;
}
.form-radio__items {
    display: flex;
    flex-wrap: wrap;
}
.form-radio__item {
    display: flex !important;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: .5rem;
    box-sizing: border-box;
    border: 4px solid #fff;
    width: calc(50% - 2rem / 2) !important;
}
.form-radio__item:hover {
    cursor: pointer;
}
.form-radio__item + .form-radio__item {
    margin-left: 2rem;
}
.form-radio__item + .form-radio__item:nth-child(odd) {
    margin-left: 0;
}
.form-radio__item + .form-radio__item:nth-child(n + 3) {
    margin-top: 2rem;
}
.form-radio__item:has(.form-radio__input input:checked) {
    border: 4px solid #F26E40;
}
.form-radio__text {
    margin-left: 2rem;
}
.form-radio__heading {
    display: flex;
    align-items: center;
}
.form-radio__date {
    margin: 0;
    font-size: 3.1rem;
    color: #333333;
    line-height: 1;
    font-weight: bold;
}
.form-radio__time {
    margin: 0;
    font-size: 2.2rem;
    color: #333333;
    line-height: 1;
    font-weight: bold;
}
.form-radio__row {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.form-radio__cate {
    margin: 0;
    font-size: 2rem;
    color: #333333;
    line-height: 1;
    display: inline-block;
    padding: .5rem 1rem;
    border: 1px solid #333;
    text-align: center;
    border-radius: .5rem;
    min-width: 11.4rem;
    font-weight: bold;
}
.form-radio__detail {
    margin: 0;
    font-size: 1.4rem;
    color: #333333;
    line-height: 1;
    margin-left: 2rem;
}
.form__input textarea {
    height: 17rem;
    max-width: 100rem;
}
.form__row {
    margin-top: 4rem;
}
.form__privacy {
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    padding-bottom: 2rem;
}
.form__privacy a {
    display: inline;
    font-size: 1.8rem;
    color: #fff;
}
.form__submit {

}
.form-btn::after {
    background: url(../images/right_arrow-white.svg) center center / cover no-repeat;
    width: .7rem;
    height: 1.3rem;
}
.form__caution {
    margin-top: 4rem;
}
.form__caution-desc {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
}
input[type="radio"] {
    position: relative;
    width: 30px;
    height: 30px;
    background: #A7A7A7;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F26E40;
    content: '';
  }
  .form__input--age {
    width: 100%;
    max-width: 330px;
    position: relative;
  }
  .form__input--age::before {
    content: "";
    width: 13px;
    height: 7px;
    background: url(../images/select-arrow.svg) center center / cover no-repeat;
    position: absolute;
    top: 50%;
    right: 165px;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .form__input--age:has(.error)::before {
    top: 34%;
  }
  .form__input--age select {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }
  .form__input--age select::-ms-expand {
    display: none;
  }
  .floating-btn {
    position:fixed;
    z-index:4;
    right:160px;
    bottom:20px;
  }
  .floating-btn a {
    display: inline-block;
    width: 100%;
    max-width: 7rem;
  }
  .floating-btn a img {
    width: 100%;
  }
  .floating-cta {
    position:fixed;
    z-index:4;
    left: 50%;
    transform: translateX(-50%);
    bottom:10px;
    width: 100%;
    max-width: 24rem;
  }
  .floating-cta a {
    display: inline-block;
    width: 100%;
    max-width: 24rem;
    margin: auto;
  }
  .floating-cta a img {
    width: 100%;
  }



  .swiper {
    margin-top: 1rem !important;
    margin-bottom: 5rem !important;
  }
  span.mwform-radio-field-text {
    display: none;
  }
  .contact-next {
    background: #4EAA77;
    padding-top: 9rem;
    padding-bottom: 8rem;
  }
  .contact-next__inner {
    width: 100%;
    max-width: 120rem;
    margin: auto;
  }
  .contact-next .form__required {
    display: none;
  }
  .contact-next .form__input--age::before {
    display: none;
  }
  .form #back {
    display: none;
  }
  .contact-next #back {
    display: flex;
  }
  #back {
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 31rem;
    height: 7rem;
    line-height: 7rem;
    text-align: center;
    font-size: 2.6rem;
    color: #fff;
    background: #a9a9a9;
    border-radius: 5rem;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    font-weight: bold;
    border: none;
    margin-top: 5rem;
    transition: .3s;
  }
  #back:hover {
    cursor: pointer;
    opacity: .7;
  }
  .form__row .btn {
    border: none;
  }
  .form__row .btn {
    border: none;
    background: #FFD500;
    color: #222;
  }
  .contact-next .form__privacy {
    display: none;
  }
  .contact-next .form__caution {
    display: none;
  }
  .form-radio__input > .error {
    font-size: 80% !important;
  }
  .thanks__desc {
    text-align: center;
  }
  .contact-next .form__input {
    font-size: 2.4rem;
    margin-top: 0.5rem;
  }
  .briefing__desc {
    display: none;
  }
  .contact-next .briefing__desc {
    display: block;
    font-size: 2.4rem;
    margin-top: 0.5rem;
  }

  .contact-next .swiper {
    font-size: 2.4rem;
  }
  .no_page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

  }
  .no-page__content {
    width: 100%;
    max-width: 50rem;
    margin: 15rem auto 0 auto;
  }
  .no-page__text {
    text-align: center;
  }
  .no-page__maintext {
    font-size: 175px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    margin: 0;
    line-height: 1;
  }
  .no-page__subtext {
    font-size: 80px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    margin: 1rem 0 5rem 0;
  }
  .no-page__btn {
    margin-bottom: 10rem;
  }
  .no-page__btn > a.btn::after {
    display: none;
  }

@media screen and (max-width:767px) {
    #back {
        font-size: 1.4rem;
        max-width: 20.5rem;
        height: 4.5rem;
        margin-top: 3rem;
    }
    .form__input .error {
        font-size: 70% !important;
        margin-top: .5rem !important;
    }
    .contact-next {
        padding-top: 4rem;
    }
    .contact-next .form__input {
        font-size: 2rem;
        /* height: 4rem; */
    }
    .contact-next .briefing__desc {
        font-size: 1.6rem;
        height: 2rem;
        padding: 0 1.5rem;
        line-height: 1.5;
    }
    .thanks__desc {
        font-size: 1.6rem;
    }
    .contact-next .form__item + .form__item {
        margin-top: 0.5rem;
    }
    .contact-next .form-input--tel a {
        color: #000000;
        text-decoration: none;
        pointer-events: none;
    }
    .contact-next .swiper {
        font-size: 2rem;
        letter-spacing: -0.05em;
    }

}

@media screen and (min-width:768px) and (max-width:1240px) {
    /* .top-about__text {
        font-size: 2.5vw;
        width: 80%;
        margin: 2rem auto 0 auto;
    }
    .top-merit__items {
        display: flex;
        width: 90%;
        margin: 5rem auto 0 auto;
    }
    .top-merit__desc {
        font-size: 2vw;
    } */
    .inner {
        width: 90%;
    }
    .voice__items {
        justify-content: center;
    }
    .voice__item {
        margin: 1rem 1.5rem;
        width: calc(28%);
    }
    .access__maps {
        flex-direction: column;
    }
    .access__map {
        flex: initial;
    }
    .form-radio__date {
        font-size: 2rem;
    }
    .top-support__desc {
        font-size: 2rem;
    }
    .top-merit__desc {
        font-size: 1.8rem;
    }
    .about-merit__item-image {
        max-width: 32.5rem;
    }
    .about-flow__banner-text {
        font-size: 3rem;
    }
    .about-flow__banner--orange > .about-flow__banner-text {
        font-size: 3rem;
    }
    .page-industry__main-text {
        bottom: 0%;
        left: 2%;
        height: initial;
        width: 90%;
    }
    .page-industry__main-title {
        max-width: 14rem;
    }
    .page-industry__main-title--en {
        font-size: 1.4rem;
    }
    .page-industry__main-rowlead {
        font-size: 1.7vw;
        padding: 1rem 1rem;
    }
    .page-industry__main-rowdesc {
        font-size: 1.3vw;
        padding: 1rem 1rem;
    }
    .header__btn {
        width: 70%;
        margin-right: 1rem;
    }
    .header__navs {
        justify-content: end;
    }
    .header__link {
        font-size: 2rem;
    }



}

/* PC時のスタイル */
@media screen and (min-width: 501px) {
    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }
    .swiper-wrapper {
      display: flex !important;
    }
  }

  /* 画像のサイズ調整 */
  .swiper-slide img {
    height: auto;
    width: 100%;
  }
@media screen and (max-width:767px) {
    .form-radio__items {
        flex-wrap: initial;
    }
    .form-radio__item {
        flex-direction: column;
        padding: .5rem .5rem 3rem .5rem;
    }
    .form-radio__heading {
        flex-direction: column;
    }
    .form-radio__row {
        flex-direction: column;
    }
    .form-radio__date {
        font-size: 1.5rem;
    }
    .form-radio__time {
        font-size: 1.2rem;
        margin-top: .5rem;
    }
    .form-radio__cate {
        font-size: 1.4rem;
        width: 90%;
        min-width: initial;
    }
    .form-radio__detail {
        font-size: 1.1rem;
        margin-top: .5rem;
        margin-left: 0;
        text-align: center;
        line-height: 1.5;
    }
    .form-radio__text {
        margin-left: 0;
        margin-top: 1rem;
        height: 11.2rem;
        width: 100%;
    }
    .form-radio__item + .form-radio__item:nth-child(n + 3) {
        margin-top: 0;
    }
    .form-radio__item + .form-radio__item {
        margin-left: 0;
    }
    .form-radio__item {
        /*width: initial !important;*/
		width: 140px !important;
    }
    .inner.contact__inner {
        padding: 0;
    }
    /* スライド全体の余白 */
    .swiper {
        margin-top: 10px !important; /* スライダー上の余白 */
        margin-left: 5vw !important; /* スライダー左の余白 */
        padding-right: 20px !important; /* スライダー右の余白 */
        margin-bottom: 2rem !important;
      }
      /* スライド画像のサイズ */
      .swiper-slide img {
        height: auto;
        width: 100%;
      }
      .form__label {
        padding: 0 1.5rem;
      }
      .form__input {
        padding: 0 1.5rem;
      }
      .form__row {
        padding: 0 1.5rem;
        margin-top: 2rem;
      }
      .btn.form-btn {
        font-size: 1.8rem;
        max-width: 100%;
        height: 6rem;
      }
      .btn.form-btn::after {
        width: .4rem;
        height: .7rem;
      }
      .contact {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
      }
      .contact__title {
        max-width: 20rem;
        margin: auto;
      }
      .contact__title02 {
        max-width: 24rem;
        margin: auto;
      }
      .form__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }
      .form__required {
        font-size: 1rem;
        width: 3rem;
        height: 1.5rem;
        line-height: 1.5rem;
      }
      .form__input input, .form__input select, .form__input textarea {
        padding: 1rem 1.5rem;
        font-size: 18px;
        line-height: 1;
      }
      .form__input textarea {
        height: 9rem;
      }
      .form__input {
        margin-top: .5rem;
        line-height: 1;
      }
      .form__item + .form__item {
        margin-top: 1rem;
      }
      .form__privacy {
        font-size: 1.2rem;
      }
      .form__privacy a {
        font-size: 1.2rem;
      }
      .form__caution {
        margin-top: 5.5rem;
      }
      .form__caution-desc {
        font-size: 1.1rem;
        text-align: left;
      }
      .form__input input {
        max-width: 100%;
      }
      .form__input select {
        max-width: 16.5rem;
      }
      .form__input--age {
        max-width: 20rem;
      }
      .form__input--age::before {
        display: none !important;
        width: 7px;
        height: 4px;
        right: 80px;
      }
      .floating-btn {
        right: 20px;
        bottom: 16%;
      }
      .floating-btn a {
        max-width: 3rem;
      }


}

@media screen and (max-width:767px) {
    .inner {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    .header__navs {
        justify-content: end;
        max-width: 5.5rem;
    }
    .header-top {
        height: 5.5rem !important;
    }
    .header__hamburger {
        max-width: 5.5rem;
        padding: 1rem 1rem;
    }
    .header__inner {
        padding: 0 0 0 2rem;
    }
    .header__inner {
      padding: 0 2%;
      }
    .header__title {
        width: 100%;
        max-width: 18rem;
        height: 100%;
    }

    .header__logo img {
        width: 100%;
        height: 100%;
        vertical-align: super;
    }
    .header__logo {
        max-width: initial;
        height: 100%;
    }
    .header-shigoto__title {
        max-width: 8rem;
        margin-left: 1.5rem;
        height: 100%;
    }
    .header-shigoto__logo {
        height: 100%;
    }
    .nav-items__wrap {
        flex-direction: column;
        padding-top: 4rem;
        height: 100vh;
        justify-content: initial;
    }
    .nav-items__item a {
        font-size: 1.6rem;
        padding: 1rem 1rem;
        line-height: 1;
    }
    .nav-items__item a::before {
        right: 1rem;
    }
    .drawer-btn__link {
        font-size: 1.7rem;
        max-width: 24rem;
        height: 5rem;
        line-height: 5rem;
        margin: auto;
    }
    .drawer-btn__link::before {
        width: 0.4rem;
        height: .7rem;
        right: 2rem;
    }
    .drawer-btn__link.drawer-btn__link--company {
        font-size: 1.3rem;
        max-width: 20rem;
        height: 4rem;
        line-height: 4rem;
        margin: auto;
    }
    .drawer-btn__link.drawer-btn__link--company::before {
        width: 0.4rem;
        height: .7rem;
        right: 2rem;
    }
    .drawer-btn {
        width: 85%;
        margin-top: 2rem;
    }
    .drawer-btn:has(.drawer-btn__link.drawer-btn__link--company) {
        width: 80%;
    }
    .header__nav {
        top: 5.5rem;
        padding-top: 0%;
    }
    .header__nav.active {
        position: sticky;
    }
    .cta {
        line-height: 1;
    }
    .cta__fukidashi {
        font-size: 1.1rem;
        font-weight: 600;
        padding-bottom: .5rem;
    }
    .cta__fukidashi::after,
    .cta__fukidashi::before {
        height: 1.5rem;
    }
    .cta__fukidashi::before {
        transform: translateY(-73%);
    }
    .cta__fukidashi::after {
        transform: translateY(-70%);
    }
    .btn {
        width: 100%;
        max-width: 24rem;
        font-size: 1.7rem;
        height: 5rem;
        line-height: 5rem;
        font-weight: 500;
    }
    .btn::after {
        width: .7rem;
        height: .4rem;
        right: 2rem;
    }
    .footer__content {
        padding: 3rem 2rem;
        box-sizing: border-box;
    }
    .footer__line-text {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    .footer__line-text::before {
        background: url(../images/sp/sp-fukidashi-line-left.webp) center center / cover no-repeat;
        width: 2.3rem;
        height: 3.8rem;
    }
    .footer__line-text::after {
        background: url(../images/sp/sp-fukidashi-line-right.webp) center center / cover no-repeat;
        width: 2.3rem;
        height: 3.8rem;
    }
    .footer__x {
        margin-top: 1.3rem;
    }
    .more {
        font-size: 1.4rem;
        height: 4.5rem;
        line-height: 4.5;
        width: 60%;
    }
    .footer-more.more {
        font-size: 1.4rem;
        height: 4.5rem;
        line-height: 4.5;
        width: 74%;
    }
    .footer-more.more::after {
        width: .4rem;
        height: .7rem;
        right: 1.5rem;
    }
    .footer__contact-lead {
        font-size: 1.2rem;
    }
    .footer__contact-tel {
        font-size: 1.4rem;
    }
    .footer__contact-date {
        font-size: 1.1rem;
    }
    .footer__row-content {
        padding: 0 2rem;
        box-sizing: border-box;
    }
    .footer__logo {
        width: 85%;
    }
    .footer__row-desc {
        font-size: 1.1rem;
    }
    .footer__row-link {
        font-size: 1.2rem;
    }
    .footer__row-items {
        margin: 1rem auto 0 auto;
    }
    /* .footer__row {
        padding-bottom: 13rem;
    } */
    input[type="radio"] {
        width: 15px;
        height: 15px;
    }
    input[type="radio"]:checked:before {
        width: 10px;
        height: 10px;
        transform: translate(-49%, -53%);
    }




}
@media screen and (max-width:767px) {
    #page-voice {
        padding-top: 5.5rem;
    }
    .page-head {
        height: 4rem;
    }
    .page-head-image {
        width: 83%;
    }
    .page-voice__top {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }
    .page-voice__content {
        padding-top: 2rem;
        padding-bottom: 7rem;
    }
    .page-voice__title {
        margin-left: 1rem;
    }
    .page-voice__number {
        max-width: 5rem;
        height: 5rem;
    }
    .page-voice__number-heading {
        font-size: 1rem;
    }
    .page-voice__number-number {
        font-size: 2.65rem;
    }
    .page-voice__experiences {
        font-size: 1.75rem;
    }
    .page-voice__companyName {
        font-size: 1.2rem;
    }
    .page-voice__heading {
        justify-content: initial;
        padding-left: 2rem;
    }
    .page-voice__mv {
        margin: 1.5rem auto 2.5rem auto;
    }
    .page-voice__mv-image {
        width: 100%;
        margin: auto;
    }
    .page-voice__mv-image::before {
        display: block;
        content: "";
        padding-top:  74.6%;
    }
    .page-voice__mv-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center;
    }
    .page-voice__mv-lead {
        font-size: 5vw;
    }
    .page-voice__mv-text {
        top: 55%;
    }
    .page-voice__article {
        width: 90%;
        padding-top: 2rem;
        padding-bottom: 5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        border-radius: 1.5rem;
    }
    .page-voice__name {
        font-size: 1.5rem;
    }
    .page-voice__before {
        padding: 1rem;
        margin: 2rem 0 0 0;
    }
    .page-voice__before-title {
        font-size: 1.2rem;
        flex: 0 0 5rem;
    }
    .page-voice__before-desc {
        font-size: 1.2rem;
    }
    .page-voice__before-text {
        margin: 0 0 0 1rem;
    }
    .page-voice__after {
        padding: 1rem;
        margin: 1rem 0 0 0;
    }
    .page-voice__after-title {
        font-size: 1.2rem;
        flex: 0 0 5rem;
    }
    .page-voice__after-desc {
        font-size: 1.2rem;
    }
    .page-voice__after-text {
        margin: 0 0 0 1rem;
    }
    .page-voice__lead {
        font-size: 1.2rem;
    }
    .page-voice__item-title {
        font-size: 1.5rem;
    }
    .page-voice__item-desc {
        font-size: 1.2rem;
        margin: 0rem 0 0 0;
    }
    .page-voice__item + .page-voice__item {
        margin-top: 6rem;
    }
    .page-voice__company {
        width: 90%;
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        border-radius: 1.5rem;
        margin: 3rem auto 0 auto;
    }
    .page-voice__company-heading {
        padding: 1.5rem;
    }
    .page-voice__company-title {
        font-size: 1.5rem;
    }
    .page-voice__company-name {
        font-size: 1.3rem;
        margin: 1rem 0 0 0;
    }
    .page-voice__company-image {
        margin: 3rem auto 0 auto;
    }
    .page-voice__company-text {
        margin: 2rem 0 0 0;
    }
    .page-voice__company-desc {
        font-size: 1.2rem;
    }
    .page-voice__future {
        padding: 1.5rem;
        margin: 1rem 0 0 0;
    }
    .page-voice__future-title {
        font-size: 1.5rem;
    }
    .page-voice__future-desc {
        font-size: 1.2rem;
    }
    .page-voice__items {
        margin: 2rem 0 0 0;
    }
    .page-voice__item-text {
        margin: 2rem 0 0 0;
    }
    .mv {
        height: 105vw;
        padding: 6rem 0 1rem 0;
        margin-bottom: 15%;
    }
    .mv__image {
        width: 95%;
    }
    .mv__image::before {
        padding-top: 138.285%;
    }
    .anchor__items {
        padding: initial;
        margin: 12rem auto 3rem auto;
    }
    .anchor__item {
        width: calc(33.333% - 4rem / 3);
    }
    .anchor__item + .anchor__item {
        margin-left: 2rem;
    }
    .anchor__item:nth-child(4) {
        margin-left: 0 !important;
    }
    .anchor__item:nth-child(n + 4) {
        margin-top: 2rem;
    }
    .anchor__item:nth-child(3) .anchor__icon img {
        max-width: 4rem;
    }
    .anchor__title {
        font-size: 1.2rem;
    }
    .anchor__link {
        height: 8.5rem;
    }
    .anchor__icon {
        height: 2.5rem;
        display: flex;
        justify-content: center;
    }
    .anchor__icon img {
        max-width: 2.5rem;
    }
    .anchor__link::after {
        bottom: 1rem;
    }
    .anchor__items {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    .top-about {
        padding-top: 5rem;
        padding-bottom: 11rem;
    }
    .top-about__title {
        max-width: 30rem;
    }
    .top-about__text {
        font-size: 1.5rem;
        margin: 1rem 0 0 0;
    }
    .top-about__youtube {
        margin: 1rem auto 0;
    }
    .top-about__btn {
        margin-top: 4rem;
    }
    .btn-long {
        max-width: 30rem;
        height: 4.5rem;
        line-height: 4.5rem;
        font-size: 1.4rem;
    }
    .top-merit__title {
        max-width: 25.5rem;
    }
    .top-merit__items {
        flex-direction: column;
        margin-top: 1rem;
    }
    .top-merit__item {
        width: 100%;
    }
    .top-merit__item + .top-merit__item {
        margin-left: initial;
        margin-top: 2rem;
        text-align: center;
    }
    .top-merit::after {
        height: 20%;
        bottom: -10%;
    }
    .top-merit__image {
        max-width: 21rem;
        margin: auto;
    }
    .top-merit__desc {
        font-size: 1.8rem;
    }
    .top-support__head {
        padding-top: 14rem;
    }
    .top-support__title {
        max-width: 26.5rem;
        margin: auto;
    }
    .top-support {
        padding-bottom: 2rem;
    }
    .top-support__items {
        flex-direction: column;
        max-width: 31rem;
        margin: 3rem auto 0 auto;
    }
    .top-support__item {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 1.5rem 1.5rem;
        border-radius: 2rem;
    }
    .top-support__item::before {
        right: -1rem;
        top: -2rem;
        width: 24%;
        max-width: initial;
        height: 3.3rem;
    }
    .top-support__item + .top-support__item {
        margin-left: 0;
        margin-top: 2rem;
    }
    .top-support__desc {
        font-size: 1.5rem;
        text-align: left;
        width: 100%;
    }
    .top-support__desc span {
        font-size: 1.5rem;
    }
    .top-support__image {
        width: 100%;
        max-width: 11rem;
        position: relative;
        margin: auto;
    }
    .top-support__image::before {
        display: block;
        content: "";
        padding-top: 85.7%;
    }
    .top-support__image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: left;
    }
    .top-support__item:first-child .top-support__image img {
        object-position: center;
    }
    .top-support__text {
        height: initial;
        margin-top: initial;
        margin-left: 2rem;
        flex: 1;
    }
    .condition {
        padding-top: 3rem;
        padding-bottom: 9rem;
    }
    .condition__title {
        max-width: 16rem;
    }
    .condition__image {
        max-width: 25rem;
        margin: -1rem auto 0;
    }
    .condition__lead {
        font-size: 1.5rem;
        margin: 2rem 0 0 0;
    }
    .condition__desc {
        font-size: 1.2rem;
        margin: 0;
        text-align: left;
    }
    .condition__caution {
        font-size: 1.2rem;
        text-indent: -1em;
        padding-left: 1em;
        margin: 0;
        width: 100%;
    }
    .condition-btn {
        margin-top: 2rem;
    }
    .top-flow {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .top-flow__title {
        max-width: 16rem;
    }
    .top-flow__lead {
        font-size: 1.5rem;
        margin: 0;
    }
    .top-flow__number {
        max-width: 4rem;
        height: 4rem;
    }
    .top-flow__items {
        margin: 2rem auto 0 auto;
    }
    .top-flow__item-text {
        margin-left: 1rem;
        padding: 2rem 0;
    }
    .top-flow__item-title {
        font-size: 1.8rem;
    }
    .top-flow__item-desc {
        font-size: 1.4rem;
        margin: 1rem 0 0 0;
    }
    .top-flow__item + .top-flow__item {
        margin-top: 3rem;
    }
    .top-flow__item::after {
        bottom: -2rem;
    }
    .top-flow__number::before {
        height: 180%;
        bottom: -180%;
    }
    .top-flow__item.top-flow__banner > .top-flow__item-text > .top-flow__item-title {
        font-size: 1.8rem;
    }
    .top-flow__item.top-flow__banner > .top-flow__item-text > .top-flow__item-desc {
        font-size: 1.4rem;
    }
    .industry {
        padding-top: 6rem;
        padding-bottom: 6.5rem;
    }
    .industry-cta {
        margin-top: 2.5rem;
    }
    .top-industry__title {
        max-width: 16rem;
    }
    .industry__item {
        width: calc(33.333% - 2rem / 3);
        height: 8.5rem;
    }
    .industry__item + .industry__item {
        margin-left: 1rem;
    }
    .industry__item:nth-child(4) {
        margin-left: 0;
    }
    .industry__item:nth-child(n + 4) {
        margin-top: 1rem;
    }
    .industry__item:first-child .industry__item-text {
        margin-top: 0;
    }
    .industry__item-text {
        margin-top: 0.5rem;
    }
    .industry__item + .industry__item .industry__item-title {
        font-size: 1.2rem;
    }
    .industry__item-title {
        font-size: 2.5vw;
    }
    .industry__item-image {
        max-width: 1.8rem;
    }
    .industry__item:nth-child(n + 2) .industry__item-image {
        height: 3.5rem;
    }
    .industry__item:nth-child(2) .industry__item-image {
        max-width: 4rem;
    }
    .industry__item:nth-child(3) .industry__item-image {
        max-width: 3.8rem;
    }
    .industry__item:nth-child(4) .industry__item-image {
        max-width: 4rem;
    }
    .industry__item:nth-child(5) .industry__item-image {
        max-width: 3rem;
    }
    .industry__item:nth-child(6) .industry__item-image {
        max-width: 3rem;
    }
    .top-flow__btn {
        margin-top: 3.5rem;
    }
    .top-flow__btn .more::after {
        right: 1rem;
    }
    .voice {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }
    .top-voice__title {
        max-width: 16.5rem;
    }
    .voice__items {
        margin-left: -.5rem;
        justify-content: center;
        padding-top: 1rem;
    }
    .voice__item {
        padding: 1rem .5rem;
        width: calc(44%);
        margin: 0 0 0 1rem;;
    }
    .voice__item:nth-child(n + 3) {
        margin-top: 2rem;
    }
    .voice__item-title {
        font-size: 1.2rem;
    }
    .voice__item-desc {
        font-size: 1.1rem;
    }
    .voice__item-text {
        margin: 1rem 0 0 0;
    }
    .voice__item-link {
        font-size: 1.3rem;
        height: 3.5rem;
        line-height: 3.5rem;
        width: 78%;
    }
    .voice__item-link::after {
        right: 1.5rem;
        width: .4rem;
        height: .7rem;
    }
    .voice__item-image img {
        width: 90%;
        margin: auto;
    }
    .faq {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .top-faq__title {
        max-width: 16rem;
    }
    .faq__items {
        margin: 2rem auto 0 auto;
    }
    .faq__item {
        padding: 1rem;
    }
    .faq__item + .faq__item {
        margin-top: 1rem;
    }
    .faq__q {
        font-size: 1.2rem;
    }
    .faq__q span {
        max-width: 3rem;
        margin-right: 2rem;
    }
    .faq__a {
        font-size: 1.2rem;
        align-items: start;
    }
    .faq__a span {
        max-width: 3rem;
        margin-right: 2rem;
    }
    .faq-more {
        font-size: 1.4rem;
        max-width: 14.5rem;
        height: 4.5rem;
        line-height: 4.5rem;
    }
    .news {
      margin-top: 2rem;
      padding-top: 3rem;
      padding-bottom: 5rem;
    }
    .top-news__title {
        max-width: 16.5rem;
    }
    .news__date {
        font-size: 1.2rem;
        flex: 0 0 8rem;
    }
    .news__text {
        margin-left: 0;
        align-items: center;
    }
    .news__category {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .news__category span {
        font-size: 1.2rem;
    }
    .news__title {
        font-size: 1.2rem;
    }
    .news__items {
        margin: 1rem auto 0 auto;
    }
    .news__item {
        padding-bottom: .5rem;
    }
    .news__item:not(:first-child) {
        padding-bottom: 0.5rem;
        padding-top: .5rem;
    }
    .schedule {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .top-schedule__title {
        max-width: 17rem;
    }
    .toggle_switch p {
        font-size: 1.4rem;
        padding: .5rem 0;
    }
    .toggle_switch p::after {
        width: 13px;
        height: 7px;
        right: -3rem;
    }

    .toggle_contents p {
        font-size: 1.2rem;
        line-height: 1.7;
        align-items: start;
    }
    .toggle_contents p span {
        width: 1rem;
        height: 1rem;
        flex: 0 0 1rem;
        margin-top: 1.5%;
    }
    .toggle_contents p + p {
        margin-top: 1rem;
    }
    .toggle_contents {
        padding: 1.5rem 1rem;
    }
    .access {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
    .top-access__title {
        max-width: 16rem;
    }
    .access__head {
        padding-bottom: .5rem;
    }
    .access__title {
        font-size: 1.5rem;
    }
    .access__items {
        margin: 2rem auto 0 auto;
    }
    .access__contact {
        margin: .5rem 0 0 0;
    }
    .access__genre span {
        font-size: 1.1rem;
        padding: .5rem;
        border-radius: .5rem;
    }
    .access__genre {
        margin-left: 1rem;
    }
    .access__genre span + span {
        margin-left: .5rem;
    }
    .access__post {
        font-size: 1.3rem;
    }
    .access__address {
        font-size: 1.3rem;
    }
    .access__tel a {
        display: inline-block;
        font-size: 1.3rem;
        margin-left: 0;
        color: #008D44;
        text-decoration: none;
    }
    .access__maps {
        flex-direction: column;
    }
    .access__map {
        flex: initial;
        padding-top: 54%;
    }
    .access__item + .access__item {
        margin-top: 2rem;
    }
    .access__root {
        margin-left: 0;
        margin-top: 1rem;
    }
    .access__station {
        font-size: 1.2rem;
    }
    .form {
        margin: 2rem auto 0 auto;
    }
    .form__items {
        margin-left: 0;
    }
    .form__item{
      margin-bottom: 3rem;
    }
    .about-mv {
        padding-bottom: 2rem;
    }
    .about-mv__image {
        width: 90%;
        padding-top: 7rem;
    }
    .about-mv .cta.sp-only {
        margin-top: 1rem;
    }
    .sp-mv__btn {
        display: inline-block;
        width: 100%;
        max-width: 24rem;
        margin: 2rem auto 0 auto;
    }
    .sp-mv__btn img {
        width: 100%;
    }
    .about-merit__heading-title {
        max-width: 25.5rem;
    }
    .about-merit__item {
        flex-direction: column;
    }
    .about-merit__item-image {
        max-width: 21.5rem;
        margin: auto;
    }
    .about-merit__text  {
        margin-left: 0;
        margin-top: 0;
    }
    .about-merit__title {
        font-size: 1.8rem;
        text-align: center;
    }
    .about-merit__title span {
        font-size: 1.8rem;
    }
    .about-merit__desc {
        font-size: 1.4rem;
    }
    .about-merit__item:last-child .about-merit__text::after {
        bottom: -30px;
        font-size: 1.2rem;
    }
    .about-merit__item + .about-merit__item {
        margin-top: 2rem;
    }
    .about-merit {
        padding-bottom: 5rem;
    }
    .about-merit__items  {
        margin: 3rem auto 0 auto;
    }
    .about-support {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }
    .about-support__title {
        max-width: 26.5rem;
    }
    .about-support__items {
        width: 90%;
        margin: 3rem auto 0 auto;
    }
    .about-support__item {
        padding: 1.5rem;
        flex-direction: column;
    }
    .about-support__item:first-child {
        padding: 1.5rem 1.5rem 5rem;
    }
    .about-support__item:first-child .about-support__item-text::after {
        right: 50px;
        bottom: 6px;
        font-size: 1.4rem;
    }
    .about-support__item + .about-support__item {
        margin-top: 3rem;
    }
    .about-support__item-text {
        margin-left: 0;
    }
    .about-support__item-title {
        font-size: 1.6rem;
    }
    .about-support__item-desc {
        font-size: 1.4rem;
        margin: 0;
    }
    .about-support__item-desc.about-support__item-desc--large {
        font-size: 1.4rem;
        margin: .5rem 0 0 0;
    }
    .about-support__item::before {
        width: 85px;
        height: 50px;
        top: -20px;
    }
    .about-flow {
        padding-top: 5rem;
        padding-bottom: 2.5rem;
    }
    .about-flow__title {
        max-width: 16rem;
    }
    .about-flow__lead {
        font-size: 1.5rem;
        margin: 1rem 0 0 0;
    }
    .about-flow__icon {
        max-width: 4rem;
        height: 4rem;
    }
    .about-flow__items {
        margin: 2rem auto 0 auto;
    }
    .about-flow__item-text {
        margin-left: 1rem;
        padding: 1rem 2rem 1rem 2rem;
        border-radius: 1rem;
    }
    .about-flow__item-title {
        font-size: 1.8rem;
    }
    .about-flow__item-desc {
        font-size: 1.2rem;
        margin: 0rem 0 0 0;
    }
    .about-flow__cta > .cta__fukidashi {
        font-size: 1.1rem;
    }
    .about-flow__cta > a {
        font-size: 1.7rem;
        max-width: 24rem;
        height: 5rem;
        line-height: 5rem;
    }
    .about-flow__example {
        padding: 1.5rem 1.5rem 3rem;
        border-radius: 1rem;
    }
    .about-flow__example::after {
        font-size: 1.2rem;
        right: 38px;
    }
    .about-flow__item:nth-child(5) .about-flow__example::after {
        right: 110px;
    }
    .about-flow__example-title {
        font-size: 1.3rem;
    }
    .about-flow__example-desc {
        font-size: 1.2rem;
        margin: .5rem 0 0 0;
        padding-left: 1em;
        text-indent: -1em;
        align-items: end;
    }
    .about-flow__item + .about-flow__item {
        margin-top: 3.5rem;
    }
    .about-flow__item:nth-child(6)::after {
        left: 47%;
    }
    .about-flow__item:nth-child(7)::after {
        left: 47%;
    }
    .about-flow__item::after {
        bottom: -2.5rem;
    }
    .about-flow__row {
        margin: 0 auto 0 auto;
    }
    .about-flow__banner {
        padding-left: 2.5rem;
        height: 10.2rem;
    }
    .about-flow__banner-text {
        margin: 0;
        font-size: 2.2rem;
        line-height: 1.5;
    }
    .about-flow__banner-text span {
        font-size: 1.4rem;
    }
    .about-flow__banner::after {
        width: 8.5rem;
        height: 10rem;
        bottom: -0.5px;
        right: 1rem;
    }
    .about-flow__item-section-title {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
    .about-flow__item-section-desc {
        font-size: 1.2rem;
    }
    .about-flow__banner.about-flow__banner--orange {
        height: 8.5rem;
    }
    .about-flow__banner--orange > .about-flow__banner-text {
        font-size: 2.4rem;
    }
    .about-flow__banner--orange::after {
        width: 9rem;
        height: 10rem;
        right: 2rem;
    }
    .about-flow__banner03::after {
        width: 11rem;
        height: 9.5rem;
        right: 2rem;
    }
    .about-flow__banner.about-flow__banner03 {
        height: 8.5rem;
    }
    .about-flow__row-text {
        font-size: 1.2rem;
    }
    .about-flow__icon::before {
        height: 1680%;
        bottom: -666px;
    }
    .about-incentive {
        padding-top: 2rem;
        padding-bottom: 0;
    }
    .about-incentive__image {
        padding: 0;
    }
    #page-industry {
        margin-top: 5.5rem;
    }
    .page-industry__main-image {
        background: url(../images/page-industry/sp/sp-industry-mv.webp) center center / cover no-repeat;
        height: 149.33vw;
    }
    .page-industry__main-text {
        left: 0;
        bottom: initial;
        top: 0rem;
        padding-left: 2rem;
        box-sizing: border-box;
    }
    .page-industry__main-title {
        max-width: 13.2rem;
    }
    .page-industry__main-title--en {
        font-size: 1.5rem;
    }
    .page-industry__main-rowlead {
        padding: 1rem;
        font-size: 1.5rem;
        width: 64%;
        margin: .5rem 0 0 0;
        line-height: 1.7;
    }
    .page-industry__main-rowdesc {
        padding: 1.5rem;
        font-size: 1.4rem;
        margin: 1rem 0 0 0;
        line-height: 1.85;
    }
    .page-industry__anchor {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    .page-industry__contents{
        padding-top: 3rem;
    }
    .page-industry__content + .page-industry__content {
        margin-top: 2rem;
    }
    .page-industry__content-title {
        font-size: 2rem;
        min-width: 29.5rem;
        line-height: 1.5;
        padding: 2rem 1rem 2.5rem;
        border: 3px solid #008D44;
    }
    .page-industry__content-title::after {
        bottom: 1rem;
    }
    .page-industry__content-title01 img {
        max-width: 18.6rem;
    }
    .page-industry__content-title02 img {
        max-width: 8rem;
    }
    .page-industry__content-title03 img {
        max-width: 4rem;
    }
    .page-industry__content-title04 img {
        max-width: 4rem;
    }
    .page-industry__content-title05 img {
        max-width: 8rem;
    }
    .page-industry__content-title06 img {
        max-width: 8.1rem;
    }
    .page-industry__content-days {
        margin: 0.5rem 0 0 0;
    }
    .page-industry__content-day {
        padding-bottom: .5rem;
    }
    .page-industry__content-day + .page-industry__content-day {
        margin-top: 0.5rem;
    }
    .page-industry__content-text {
        margin: -5rem auto 0 auto;
        padding: 1.5rem 1.4rem;
        width: 90%;
    }
    .page-industry__content-image {
        width: 100%;
        position: relative;
        margin: 3rem auto 0 auto;
    }
    .page-industry__content-image::before {
        display: block;
        content: "";
        padding-top: 64%;
    }
    .page-industry__content-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center;
    }
    .page-industry__content-inner {
        padding: 3rem 0;
    }
    .page-industry__content-heading {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    .page-industry__content-lead {
        font-size: 1.3rem;
    }
    .page-industry__content-item-title {
        font-size: 1.5rem;
    }
    .page-industry__content-item-desc {
        font-size: 1.3rem;
    }
    .page-industry__content-item-title::before {
        width: 1.5rem;
        height: .3rem;
        left: -2rem;
    }
    .page-industry__content-day-time {
        font-size: 1.4rem;
        max-width: 5rem;
    }
    .page-industry__content-day-desc {
        font-size: 1.4rem;
        margin: 0 0 0 1rem;
    }
    .page-industry__content-title::after {
        width: 1.1rem;
        height: .6rem;
    }
    .industry-voice__main-image.page-industry__main-image {
        background: url(../images/page-industry/sp/sp-industry-voice_mv.webp) center center / cover no-repeat;
        height: 112vw;
    }
    .industry-voice__wrap {
        padding: 2rem 0 4rem 0;
    }

    .page-voice__item-image img {
        border-radius: .6rem;
      }

      .page-voice__mv-lead {
        padding: .7rem .6rem;
        margin: .1rem;
      }

      .btn {
        font-weight: 600;
      }

      .page-voice__name:nth-of-type(2) {
        margin-top: 3rem;
      }
      .swiper-wrapper {
        margin-left: -27vw !important;
      }
      .no-page__content {
        margin: 10rem auto 0 auto;
      }
      .no-page__maintext {
        font-size: 100px;
      }
      .no-page__subtext {
        font-size: 40px;
      }
      .top-merit__item:last-child .top-merit__text {
        display: inline-block;
      }
      .top-merit__item:last-child .top-merit__text::after {
        right: initial;
        left: 0;
        bottom: -20px;
        font-size: 1.2rem;
      }
}

/* 202408 ここから */
.btn_new {
  position: relative;
  display: block;
  max-width: 55rem;
  margin: 0 auto;
  overflow: hidden;
}
.btn_new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
  transition: none; /* 初期状態ではアニメーションを無効にする */
  z-index: 999;
}
.shine-active .btn_new::before {
  left: 125%;
  transition: left 0.7s ease-in-out; /* アニメーションのスムーズさを追加 */
}
@media screen and (max-width:767px) {
  .floating-cta_new{
    max-width: 100%;
  }
  .floating-cta_new a{
    max-width: 83%;
  }

}
/* 202408 ここまで */

/* 202505 ここから */
/* txt */
.sc-expansion-wrap{
  line-height: 1.2;
}
.sc-reduction{
  font-size: 1.9rem;
}
.sc-expansion{
  font-size: 2.3rem !important;
  margin: 1.2rem 0;
}
.sc-expansion span{
  font-size: 3.5rem !important;
}
@media screen and (max-width:767px) {
  .sc-expansion-wrap{
    line-height: 1.4;
  }
  .sc-reduction{
    font-size: 1.2rem;
  }
  .sc-expansion{
    line-height: 1.6;
    font-size: 1.8rem !important;
    margin:1.5rem 0;
  }
  .sc-expansion span{
    font-size: 2.3rem !important;
  }
}
/* 202505 ここまで */

/* line用フォームスタイル */
.form__input_jikan {
  font-size: 2rem;
  color: #000 !important;
  background-color: #fff; /* やや濃いグレー背景（任意） */
  padding: 1rem 2rem;
  border-radius: 1rem;
}

/* グループ全体のレイアウト */
.form__input_jikan .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* 各チェックボックスブロック */
.form__input_jikan .vertical-item {
  margin-top: 0 !important;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  border: 2px solid transparent;
  transition: background-color 0.2s, border-color 0.2s;
  width: auto;
  margin-right: 2rem;
}
.form__input_jikan input{
  width: 100%;
}
.form__input_jikan label{
    margin-right: 2rem;
    cursor: pointer;
}
/* チェックボックス自体 */
.form__input_jikan .vertical-item input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.5);
  width: 14px;
}

/* テキスト部分 */
.form__input_jikan .mwform-checkbox-field-text {
  white-space: nowrap;
  color: #000;
  font-weight: 500;
}

/* br無効化 */
.form__input_jikan > br {
  display: none;
}

/* ラベル構造 */
.form__input_jikan label {
  display: flex;
  align-items: center;
}

/* 補足説明テキストなど */
.lileform_info {
  color: #000;
  font-size: 1.6rem;
}
.lileform_info div{
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.contact-next .error,.contact-next .confirm{
  max-width: 700px;
  margin: 0 auto;
}
.contact-line-tnx{
  height: 100vh;
  position: relative;
}
.contact-line-tnx .form-caution{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.line-ico-linelp-txt{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.line-ico-linelp{
  width: 6%;
  margin: 0 .5rem;
}
.content-wrap.content-wrap-step .step_list .step_item.step_item_first a span{
  font-size: 2rem !important;
}
.att{
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  margin-top: 1rem;
}

.line_scale{
  font-size: 3rem;
}
.line-thx-txt{
  font-size: 2rem;
}
@media screen and (max-width:767px) {
  .form__input_jikan {
    padding: 1rem 1rem;
    margin: 1rem 1.5rem;
    height: 100%;
  }
  .form__input_jikan label{
    display: block;
  }
  .form__input_jikan label span label{
    display: flex;
    margin-top: .5rem;
  }
  .form__input_jikan .mwform-checkbox-field .horizontal-item{
    /* display: block;
    margin-left: 0 !important;
    margin-top: 2.5rem; */
  }

  .lileform_info {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .contact-line-conf{
    padding-bottom: 15rem !important;
  }
  .line-ico-linelp-txt{
    justify-content: flex-start;
    margin-top: 1rem;
  }
  .line-ico-linelp{
    width: 10%;
    margin: 0 .2rem;
  }
  .content-wrap.content-wrap-step .step_list .step_item.step_item_first a span{
    font-size: 1.4rem !important;
  }
  .att{
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    margin-top: 0;
    margin-left: 1.5rem;
  }
  .line_scale{
    font-size: 2.4rem;
  }
  .line-thx-txt{
    font-size: 2rem;
  }

}
