@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: justify;
  font-weight: 400;
  color: #1d1d1f;
  line-height: 1.6;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
html body {
  overflow-x: hidden;
  background: #f6f6f8;
}
@media screen and (max-width: 430px) {
  html body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

p,
li,
tr {
  font-size: 1.5rem;
  line-height: 2;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
/* fadeUp */
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade,
.fade2 {
  opacity: 0;
  visibility: hidden;
}

.fade.fadeUp,
.fade2.fadeUp {
  -webkit-animation: fadeUpAnime 2s 0.4s ease forwards;
          animation: fadeUpAnime 2s 0.4s ease forwards;
  opacity: 0;
  visibility: visible;
}

.fade.fadeUp.delay,
.fade2.fadeUp.delay {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    translate: 0 10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    translate: 0 10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.upper {
  text-transform: uppercase;
}

.cont {
  width: 84.1%;
  max-width: 928px;
  margin: 0 auto;
}

.cont2 {
  width: 84.1%;
  max-width: 1120px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

.none {
  display: none;
}

a {
  color: #1d1d1f;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

button {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
}

.al {
  font-family: "Albert Sans", sans-serif;
}

.header {
  position: fixed;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 11;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(246, 246, 248, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

@media screen and (min-width: 1100px) {
  .header__inner {
    width: 100%;
    height: 100%;
    padding: 20px 56px;
    position: relative;
  }
  .gnav {
    height: 100%;
  }
  .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .gnav ul .ham_block {
    display: none;
  }
  .gnav ul li {
    position: relative;
    margin-right: 24px;
  }
  .gnav ul li a {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    letter-spacing: 0;
    min-width: 60px;
    display: block;
  }
  .gnav ul li a:hover {
    opacity: 1;
    color: #366eb4;
  }
  .gnav ul .h_insta a,
  .gnav ul .h_facebook a {
    min-width: unset;
    width: 24px;
    height: 24px;
    background: #1d1d1f;
    border-radius: 50%;
    display: grid;
  }
  .gnav ul .h_insta a:hover,
  .gnav ul .h_facebook a:hover {
    background: #366eb4;
  }
  .gnav ul .h_insta img,
  .gnav ul .h_facebook img {
    width: 100%;
    height: 100%;
  }
  .gnav ul .h_insta {
    margin-left: 1px;
    margin-right: 8px;
  }
  .gnav ul .h_facebook {
    margin-right: 0;
  }
  .ham_block {
    display: none;
  }
}
@media screen and (max-width: 1099.9px) {
  .ham_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ham_none {
    display: none;
  }
  .header {
    height: 64px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
    position: fixed;
  }
  .header h1 {
    width: 160px;
  }
  .header .header__inner {
    padding: 0 32px;
    height: 100%;
  }
  .header .header-wrap {
    border-radius: 0;
    background: #f6f6f8;
    display: block;
    margin: 0;
    width: 100%;
    top: 0;
    height: calc(100svh - 64px);
    height: calc(100dvh - 64px);
    min-height: 0;
    margin-top: 64px;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.4s, 0.1s;
            transition-duration: 0.4s, 0.1s;
    -webkit-transition-timing-function: ease, ease;
            transition-timing-function: ease, ease;
    -webkit-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    left: 0;
    z-index: -1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
  .header .header-wrap-inner {
    width: 100vw;
    padding: 0 40px;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .gnav ul {
    display: block;
  }
  .header .gnav li a {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4444444444;
    padding: 17px 0 19px;
    display: block;
    border-bottom: 1px solid #cfcfcf;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    letter-spacing: 0;
  }
  .header .gnav li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #366eb4;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header .gnav li a:hover {
    color: #366eb4;
    opacity: 1;
  }
  .header .gnav li:last-child a {
    padding-bottom: 0;
  }
  .header .h_insta a,
  .header .h_facebook a {
    min-width: unset;
    width: 40px;
    height: 40px;
    background: #1d1d1f;
    border-radius: 50%;
    display: grid;
  }
  .header .h_insta a:hover,
  .header .h_facebook a:hover {
    background: #366eb4;
  }
  .header .h_insta a::before,
  .header .h_facebook a::before {
    content: none;
  }
  .header .h_insta img,
  .header .h_facebook img {
    width: 100%;
    height: 100%;
  }
  .header .ham_block {
    margin-top: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1099.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 32px;
    height: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 32px;
    z-index: 99;
    background: none;
    border: none;
    color: #fff;
    text-align: center;
    position: absolute;
  }
  .hamburger__line,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 32px;
    height: 1px;
    background: #1d1d1f;
  }
  .hamburger__line {
    left: 0;
    top: 12px;
  }
  .hamburger__line::after {
    content: "";
    top: 8px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 10px;
    -webkit-transform: translateY(6px) rotate(14deg);
            transform: translateY(6px) rotate(14deg);
    width: 33px;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(-28deg);
            transform: rotate(-28deg);
    width: 33px;
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.2s, 0.2s;
            transition-duration: 0.2s, 0.2s;
    z-index: 98;
  }
}
.swiper-slide {
  width: 100%;
}
.swiper-slide img {
  width: 100%;
}

.page_top {
  margin-top: 75px;
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-position: center;
}
@media screen and (max-width: 1099.9px) {
  .page_top {
    margin-top: 64px;
    height: 368px;
  }
}
.page_top .cont {
  position: absolute;
  bottom: 32px;
  left: 64px;
  background: #fff;
  padding: 22px 34px 24px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    left: 32px;
    padding: 12px 24px 14px 28px;
  }
}
.page_top .cont h1 {
  margin-bottom: 4px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4642857143;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont h1 {
    font-size: 2rem;
    margin-bottom: 3px;
  }
}
.page_top .cont span {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  display: block;
  line-height: 1.1666666667;
  padding-right: 6px;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont span {
    font-size: 1rem;
  }
}

.post-type-archive-internship .page_top {
  background-image: url(../img/page_internship.jpg);
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-internship .page_top {
    background-image: url(../img/page_internship-sp.jpg);
  }
}

.post-type-archive-works .page_top {
  background-image: url(../img/page_works.jpg);
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-works .page_top {
    background-image: url(../img/page_works-sp.jpg);
  }
}

.post-type-archive-works .page_top {
  background-image: url(../img/page_works.jpg);
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-works .page_top {
    background-image: url(../img/page_works-sp.jpg);
  }
}

.page-id-8 .page_top {
  background-image: url(../img/page_business.jpg);
}
@media screen and (max-width: 767.9px) {
  .page-id-8 .page_top {
    background-image: url(../img/page_business-sp.jpg);
  }
}

.page-id-2 .page_top {
  background-image: url(../img/page_company.jpg);
}
@media screen and (max-width: 767.9px) {
  .page-id-2 .page_top {
    background-image: url(../img/page_company-sp.jpg);
  }
}

.page_recruit .page_top4 {
  background-image: url(../img/page_recruit-2.jpg);
}
@media screen and (max-width: 767.9px) {
  .page_recruit .page_top4 {
    background-image: url(../img/page_recruit-2-sp.jpg);
  }
}

.page_top2 {
  padding-top: 203px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_top2 {
    padding-top: 112px;
  }
}
.page_top2 .cont {
  position: relative;
  height: 182px;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .cont {
    height: 77px;
  }
}
.page_top2 .sub_title {
  position: absolute;
  left: 56px;
  top: 50%;
  padding-bottom: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(0rem, 10.55vw, 15.2rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page_top2 .sub_title {
    font-size: 6.4rem;
    line-height: 1.203125;
    left: auto;
    right: -2px;
    left: auto;
  }
}
.page_top2 h1 {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding-top: 6px;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .page_top2 h1 {
    font-size: 2.4rem;
    padding-top: 0;
    padding-bottom: 6px;
  }
}

.page_top3 {
  margin-top: 75px;
  height: 420px;
  position: relative;
}
@media screen and (max-width: 1099.9px) {
  .page_top3 {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top3 {
    height: 368px;
  }
}
.page_top3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
  z-index: 1;
}
.page_top3 .cont {
  position: absolute;
  bottom: 32px;
  left: 64px;
  background: #fff;
  padding: 20px 40px 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top3 .cont {
    left: 32px;
    padding: 12px 28px 14px 28px;
  }
}
.page_top3 .cont h1 {
  margin-bottom: 6px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4642857143;
}
@media screen and (max-width: 767.9px) {
  .page_top3 .cont h1 {
    font-size: 2rem;
    margin-bottom: 3px;
  }
}
.page_top3 .cont span {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  display: block;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767.9px) {
  .page_top3 .cont span {
    font-size: 1rem;
  }
}

.page_top4 {
  margin-top: 75px;
  height: 624px;
  background-size: cover;
  position: relative;
  background-position: center;
}
@media screen and (max-width: 1099.9px) {
  .page_top4 {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_top4 {
    height: calc(100svh - 64px);
    min-height: 500px;
  }
}
.page_top4 .cont {
  position: absolute;
  top: 64px;
  right: 64px;
  background: #fff;
  padding: 20px 34px 24px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .cont {
    top: 32px;
    right: 32px;
    padding: 12px 24px 14px 28px;
  }
}
.page_top4 .cont h1 {
  margin-bottom: 6px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4642857143;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .cont h1 {
    font-size: 2rem;
    margin-bottom: 3px;
  }
}
.page_top4 .cont span {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  display: block;
  line-height: 1.1666666667;
  padding-right: 5px;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .cont span {
    font-size: 1rem;
  }
}
.page_top4 .page_recruit_lead {
  position: absolute;
  bottom: 68px;
  left: 63px;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .page_recruit_lead {
    bottom: 48px;
    left: 32px;
  }
}
.page_top4 .page_recruit_lead h2 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6944444444;
  letter-spacing: 0.32em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .page_recruit_lead h2 {
    font-size: 2.3rem;
    line-height: 1.8260869565;
    margin-bottom: 16px;
  }
}
.page_top4 .page_recruit_lead p {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 767.9px) {
  .page_top4 .page_recruit_lead p {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}

.page_news .page_top2 {
  margin-bottom: 46px;
}

.news_list_wrap {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .news_list_wrap {
    margin-bottom: 104px;
    margin-top: -8px;
  }
}

.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 48px;
}
.news_list li {
  background: #fff;
}
.news_list li a {
  gap: 40px;
  padding: 32px 64px;
}
@media screen and (max-width: 767.9px) {
  .news_list li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 16px 24px;
  }
}
.news_list li time {
  min-width: 96px;
  font-size: 1.5rem;
  font-weight: 600;
}
.news_list li .news_title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .news_list li .news_title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
  }
}

time {
  color: #777777;
}

.newslist_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px 12px;
}
.newslist_pagination a,
.newslist_pagination span {
  color: #366eb4;
  background: #fff;
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
  border: solid 1px #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.newslist_pagination a:hover {
  background: #366eb4;
  color: #fff;
  opacity: 1;
}
.newslist_pagination .current {
  background: #366eb4;
  color: #fff;
}
.newslist_pagination .prev::before,
.newslist_pagination .next::before {
  content: "";
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 9px;
  height: 8px;
  -webkit-filter: brightness(0) saturate(100%) invert(38%) sepia(38%) saturate(1476%) hue-rotate(181deg) brightness(89%) contrast(81%);
          filter: brightness(0) saturate(100%) invert(38%) sepia(38%) saturate(1476%) hue-rotate(181deg) brightness(89%) contrast(81%);
}
.newslist_pagination .prev:hover::before,
.newslist_pagination .next:hover::before {
  -webkit-filter: none;
          filter: none;
}
.newslist_pagination .prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px 12px;
  width: 100%;
}
.pagination a,
.pagination span {
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  color: #366eb4;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
  border: solid 1px #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination a:hover {
  background: #366eb4;
  color: #fff;
  opacity: 1;
}
.pagination .current {
  background: #366eb4;
  color: #fff;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 9px;
  height: 8px;
  -webkit-filter: brightness(0) saturate(100%) invert(38%) sepia(38%) saturate(1476%) hue-rotate(181deg) brightness(89%) contrast(81%);
          filter: brightness(0) saturate(100%) invert(38%) sepia(38%) saturate(1476%) hue-rotate(181deg) brightness(89%) contrast(81%);
}
.pagination .prev:hover::before,
.pagination .next:hover::before {
  -webkit-filter: none;
          filter: none;
}
.pagination .prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.page_news_single {
  padding-top: 235px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_news_single {
    padding-top: 128px;
    padding-bottom: 104px;
  }
}
.page_news_single .news_title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .page_news_single .news_title {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
.page_news_single time {
  display: block;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .page_news_single time {
    margin-bottom: 32px;
  }
}
.page_news_single .content {
  background: #fff;
  padding: 64px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .page_news_single .content {
    padding: 32px;
    margin-bottom: 56px;
  }
}
.page_news_single .content figure {
  margin: 40px 0;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .page_news_single .content figure {
    margin-inline: -32px;
  }
}
.page_news_single .content img {
  display: inline;
}
.page_news_single .content a {
  text-decoration: underline;
}

.more_btn {
  min-width: 240px;
  margin-inline: auto;
  border: solid 1px #366eb4;
  border-radius: 100px;
  font-size: 1.6rem;
  color: #366eb4;
  font-weight: 600;
  padding: 10px 20px 9px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.75;
}
.more_btn span {
  letter-spacing: 0.08em;
  text-align: left;
}
.more_btn .arrow {
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.more_btn:hover {
  opacity: 1;
}
.more_btn:hover .arrow {
  -webkit-transform: scale(1.66);
          transform: scale(1.66);
}

.page_pp {
  padding-top: 235px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_pp {
    padding-top: 128px;
    margin-bottom: 104px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_pp .wp-block-spacer {
    height: 16px !important;
  }
}
.page_pp .cont {
  max-width: 800px;
}
.page_pp h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5714285714;
  margin-bottom: 48px;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 767.9px) {
  .page_pp h1 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
}
.page_pp h1 span {
  font-size: 2.4rem;
  line-height: 1.8333333333;
  display: block;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 767.9px) {
  .page_pp h1 span {
    font-size: 2rem;
    line-height: 1.8;
  }
}
.page_pp h2 {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  padding-bottom: 20px;
  border-bottom: solid 1px #cfcfcf;
  font-weight: 600;
  margin-top: 64px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .page_pp h2 {
    margin-top: 48px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
.page_pp ul,
.page_pp ol {
  list-style-position: outside;
  padding-left: 22px;
}
.page_pp ul li {
  list-style: disc;
}
.page_pp ol li {
  list-style: decimal;
}

.accordion_list,
.internship_list,
.job_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.accordion_item--accordion {
  margin-bottom: 24px;
  background: #fff;
  padding-bottom: 2px;
}
@media screen and (max-width: 767.9px) {
  .accordion_item--accordion {
    margin-bottom: 16px;
  }
}
.accordion_item--accordion:last-child {
  margin-bottom: 0;
}

.accordion_toggle {
  background: #fff;
  width: 100%;
  padding: 48px 100px 46px 64px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4615384615;
  text-align: left;
  border: none;
  position: relative;
  letter-spacing: 0.24em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .accordion_toggle {
    font-size: 2rem;
    padding: 32px;
  }
}
.accordion_toggle::before, .accordion_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 65px;
  width: 24px;
  height: 2px;
  background: #777;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .accordion_toggle::before, .accordion_toggle::after {
    width: 16px;
    height: 2px;
    right: 31px;
  }
}
.accordion_toggle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.accordion_toggle[aria-expanded=true]::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion_toggle:hover {
  opacity: 0.8;
}

.accordion_panel {
  padding: 0 64px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel {
    padding: 0 32px;
  }
}
.accordion_panel .accordion_detail {
  font-weight: 500;
  padding-right: 64px;
  margin-bottom: 48px;
  line-height: 2.1333333333;
  color: #1d1d1f;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel .accordion_detail {
    padding-right: 0;
  }
}
.accordion_panel table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #cfcfcf;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel table {
    margin-bottom: 48px;
  }
}
.accordion_panel table tbody tr {
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel table tbody tr {
    padding: 24px 0;
    display: block;
  }
}
.accordion_panel table tbody tr td,
.accordion_panel table tbody tr th {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel table tbody tr td,
  .accordion_panel table tbody tr th {
    display: block;
  }
}
.accordion_panel table tbody tr th {
  font-weight: 600;
  padding: 24px 0 24px 0;
  width: 160px;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel table tbody tr th {
    padding: 0;
    margin-bottom: 16px;
    line-height: 1.4666666667;
  }
}
.accordion_panel table tbody tr td {
  padding: 24px 0;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel table tbody tr td {
    padding: 0;
  }
}
.accordion_panel .more_btn {
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .accordion_panel .more_btn {
    margin-bottom: 48px;
    gap: 15px;
  }
}

@media screen and (max-width: 767.9px) {
  .page_internship .page_top .cont h1 {
    letter-spacing: 0.1em;
  }
}

.internship_list_wrap {
  padding: 160px 0 192px;
}
@media screen and (max-width: 767.9px) {
  .internship_list_wrap {
    padding: 64px 0 104px;
    overflow: hidden;
  }
}
.internship_list_wrap .cont {
  gap: 48px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1120px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .internship_list_wrap .cont {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.internship_list_wrap h2 {
  margin: -10px 0 0;
}
@media screen and (max-width: 767.9px) {
  .internship_list_wrap h2 {
    margin-top: 0;
    padding-right: 2px;
  }
  .internship_list_wrap h2.active {
    -webkit-animation: none;
            animation: none;
  }
}
.internship_list_wrap h2 span {
  font-size: 3.2rem;
  margin-bottom: 48px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.9px) {
  .internship_list_wrap h2 span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 2;
    letter-spacing: 0.24em;
  }
}
.internship_list_wrap ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 928px;
}
@media screen and (max-width: 767.9px) {
  .internship_list_wrap ul {
    width: calc(100% + 7.95vw);
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-left: calc(50% - 50vw);
  }
}

.job_list_wrap {
  padding: 46px 0 192px;
}
@media screen and (max-width: 767.9px) {
  .job_list_wrap {
    padding-top: 40px;
    padding-bottom: 104px;
  }
}
.job_list_wrap .accordion_panel table {
  margin-bottom: 48px;
  border-top: none;
}
@media screen and (max-width: 767.9px) {
  .job_list_wrap .accordion_panel table tr:first-child {
    padding-top: 0;
  }
}
.job_list_wrap .accordion_panel table tr:first-child th,
.job_list_wrap .accordion_panel table tr:first-child td {
  padding-top: 2px;
}
@media screen and (max-width: 767.9px) {
  .job_list_wrap .accordion_panel table tr:first-child th,
  .job_list_wrap .accordion_panel table tr:first-child td {
    padding-top: 0;
  }
}
.job_list_wrap .accordion_toggle {
  font-size: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .job_list_wrap .accordion_toggle {
    font-size: 2rem;
  }
}

.bottom_contact {
  background-image: url(../img/bottom_contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 224px 0;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact {
    padding: 96px 0;
    background-image: url(../img/bottom_contact-sp.jpg);
  }
}
.bottom_contact .cont {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .cont {
    gap: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bottom_contact h3 {
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact h3 {
    margin-bottom: 24px;
  }
}
.bottom_contact .bottom_contact_tel .flex,
.bottom_contact .bottom_contact_mail .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  width: 400px;
  height: 160px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .bottom_contact_tel .flex,
  .bottom_contact .bottom_contact_mail .flex {
    width: 338px;
    height: 112px;
    margin: 0 auto;
  }
}
.bottom_contact .bottom_contact_tel .flex {
  gap: 24px;
}
.bottom_contact .bottom_contact_tel img {
  width: 52px;
}
.bottom_contact .bottom_contact_tel a {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 4px;
  display: block;
}
.bottom_contact .bottom_contact_tel p {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1764705882;
  letter-spacing: 0;
}
.bottom_contact .bottom_contact_mail a {
  gap: 29px;
  padding-right: 6px;
}
@media screen and (max-width: 767.9px) {
  .bottom_contact .bottom_contact_mail a {
    padding-left: 6px;
    padding-bottom: 4px;
  }
}
.bottom_contact .bottom_contact_mail .img {
  position: relative;
  width: 49px;
  aspect-ratio: 48/35;
  overflow: hidden;
  margin: 0;
}
.bottom_contact .bottom_contact_mail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 49px;
}
.bottom_contact .bottom_contact_mail .icon-first {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.bottom_contact .bottom_contact_mail .icon-second {
  -webkit-transform: translateX(calc(-100% - 20px));
          transform: translateX(calc(-100% - 20px));
}
.bottom_contact .bottom_contact_mail div {
  margin-top: 3px;
}
.bottom_contact .bottom_contact_mail p:nth-child(1) {
  background: #366eb4;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5333333333;
  padding: 8px 32px 6px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.bottom_contact .bottom_contact_mail p:nth-child(2) {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4615384615;
  letter-spacing: 0;
}
.bottom_contact .bottom_contact_mail a:hover {
  opacity: 1;
}
.bottom_contact .bottom_contact_mail a:hover .icon-first {
  -webkit-animation: first-out 0.6s forwards;
          animation: first-out 0.6s forwards;
}
.bottom_contact .bottom_contact_mail a:hover .icon-second {
  -webkit-animation: second-in 0.6s forwards;
          animation: second-in 0.6s forwards;
}
.bottom_contact .bottom_contact_mail a:not(:hover) .icon-first.is-animated {
  -webkit-animation: first-in 0.6s forwards;
          animation: first-in 0.6s forwards;
}
.bottom_contact .bottom_contact_mail a:not(:hover) .icon-second.is-animated {
  -webkit-animation: second-out 0.6s forwards;
          animation: second-out 0.6s forwards;
}
@-webkit-keyframes first-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 20px));
            transform: translateX(calc(100% + 20px));
  }
}
@keyframes first-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 20px));
            transform: translateX(calc(100% + 20px));
  }
}
@-webkit-keyframes first-in {
  from {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes first-in {
  from {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes second-in {
  from {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes second-in {
  from {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes second-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 20px));
            transform: translateX(calc(100% + 20px));
  }
}
@keyframes second-out {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 20px));
            transform: translateX(calc(100% + 20px));
  }
}

.footer {
  padding: 111px 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 48px 0;
  }
}
.footer .cont {
  max-width: 1120px;
}
.footer .f_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer .f_top {
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 72px;
  margin-bottom: 79px;
}
@media screen and (max-width: 1024px) {
  .footer .f_top {
    padding-right: 0;
    margin-bottom: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.footer .f_top .f_logo {
  width: 236px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_top .f_logo {
    width: 99px;
    margin: 0 auto 24px;
  }
}
.footer .f_top .f_logo a,
.footer .f_top .f_logo img {
  display: block;
}
.footer .f_top address,
.footer .f_top p {
  font-style: normal;
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .footer .f_top address,
  .footer .f_top p {
    text-align: center;
  }
}
.footer .f_top .fnav {
  gap: 132px;
  margin-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_top .fnav {
    gap: 16px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .f_top .fnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_top .fnav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.footer .f_top .fnav ul a {
  font-size: 1.5rem;
  line-height: 1.5333333333;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  letter-spacing: 0;
}
.footer .f_top .fnav ul a:hover {
  opacity: 1;
  color: #366eb4;
}
.footer .f_bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .f_bottom a {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .f_bottom a:hover {
  color: #366eb4;
  opacity: 1;
}
.footer .f_bottom small {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2142857143;
  letter-spacing: 0;
  display: block;
}

.works_list_wrap {
  padding: 160px 0 192px;
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap {
    padding: 64px 0 104px;
  }
}
.works_list_wrap .pagination {
  margin-top: 104px;
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap .pagination {
    margin-top: 48px;
  }
}
.works_list_wrap .works_list {
  gap: 64px 32px;
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap .works_list {
    gap: 48px;
  }
}
.works_list_wrap .works_list li {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap .works_list li {
    width: 100%;
  }
}
.works_list_wrap .works_list .img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 352/240;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .works_list_wrap .works_list .img {
    aspect-ratio: 338/240;
  }
}
.works_list_wrap .works_list .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_list_wrap .works_list .works_title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6470588235;
  margin-bottom: 16px;
}
.works_list_wrap .works_list .btn {
  border: solid 1px #366eb4;
  border-radius: 100px;
  font-size: 1.4rem;
  color: #366eb4;
  font-weight: 600;
  padding: 0 14px 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  letter-spacing: 0.08em;
}
.works_list_wrap .works_list .btn .arrow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works_list_wrap .works_list a:hover {
  opacity: 1;
}
.works_list_wrap .works_list a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works_list_wrap .works_list a:hover .arrow {
  -webkit-transform: scale(1.66);
          transform: scale(1.66);
}

.single-works_wrapper {
  margin-top: 75px;
  margin-bottom: 192px;
  overflow: hidden;
}
@media screen and (max-width: 1099.9px) {
  .single-works_wrapper {
    margin-top: 64px;
    margin-bottom: 104px;
  }
}
.single-works_wrapper .page_title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6363636364;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .page_title {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-bottom: 32px;
  }
}
.single-works_wrapper .detail .cont {
  max-width: 736px;
  padding-top: 64px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .detail .cont {
    padding: 32px 24px 0;
  }
}
.single-works_wrapper table {
  display: block;
  border-top: solid 1px #cfcfcf;
  margin-bottom: 129px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper table {
    margin-bottom: 85px;
  }
}
.single-works_wrapper table tbody {
  display: block;
}
.single-works_wrapper table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #cfcfcf;
  padding: 24px 0;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px 0;
  }
}
.single-works_wrapper table th {
  min-width: 96px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper table th {
    line-height: 2.1333333333;
  }
}
.single-works_wrapper table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.single-works_wrapper .comment .cont {
  background: #fff;
  position: relative;
  padding: 96px 40px 158px;
  margin-bottom: 80px;
  max-width: 864px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont {
    padding: 54px 36px 37px;
    margin-bottom: 56px;
  }
}
.single-works_wrapper .comment .cont h2 {
  position: absolute;
  padding: 5px 10px 5px 16px;
  border-radius: 100px;
  background: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 1.2083333333;
  border: solid 6px #f5f5f5;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont h2 {
    font-size: 1.8rem;
    top: -21px;
    padding: 4px 11px 4px 17px;
  }
}
.single-works_wrapper .comment .cont .flex-top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 56px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.single-works_wrapper .comment .cont .flex-top .img {
  max-width: 224px;
  width: 29%;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top .img {
    width: 100%;
    max-width: 176px;
  }
}
.single-works_wrapper .comment .cont .flex-top .img img {
  height: auto;
  aspect-ratio: 224/269;
  border-radius: 8px;
  display: block;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top .img img {
    margin-bottom: 16px;
    aspect-ratio: 176/200;
  }
}
.single-works_wrapper .comment .cont .flex-top .img p {
  text-align: center;
}
.single-works_wrapper .comment .cont .flex-top .img .name_wrap {
  display: contents;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top .img .name_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-works_wrapper .comment .cont .flex-top .img p.name1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4615384615;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top .img p.name1 {
    margin-bottom: 0;
    font-weight: 500;
  }
}
.single-works_wrapper .comment .cont .flex-top .img p.name2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .flex-top .img p.name2 {
    font-size: 1.6rem;
  }
}
.single-works_wrapper .comment .cont .flex-top .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 392px;
}
.single-works_wrapper .comment .cont .bg_text {
  position: absolute;
  bottom: -38px;
  font-size: 12.6rem;
  font-weight: 800;
  line-height: 1.1984126984;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #f5f5f5;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .single-works_wrapper .comment .cont .bg_text {
    display: none;
  }
}

.works_swiper {
  overflow: hidden;
  height: auto;
  aspect-ratio: 1440/624;
  position: relative;
}
.works_swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.works_swiper .swiper-slide {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .works_swiper .swiper-slide img {
    border-radius: 0;
  }
}
.works_swiper .swiper-button-next,
.works_swiper .swiper-button-prev {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  display: grid;
  place-content: center;
  margin-top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works_swiper .swiper-button-next::after,
.works_swiper .swiper-button-prev::after {
  content: "";
  background-image: url(../img/swiper_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: auto;
  aspect-ratio: 9/15;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
@media screen and (max-width: 767.9px) {
  .works_swiper .swiper-button-next::after,
  .works_swiper .swiper-button-prev::after {
    width: 7px;
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
}
.works_swiper .swiper-button-next:hover,
.works_swiper .swiper-button-prev:hover {
  background: #366eb4;
}
.works_swiper .swiper-button-next:hover::after,
.works_swiper .swiper-button-prev:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10%) hue-rotate(197deg) brightness(104%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10%) hue-rotate(197deg) brightness(104%) contrast(103%);
}
.works_swiper .swiper-button-prev {
  left: auto;
}
.works_swiper .swiper-button-next {
  right: auto;
}
.works_swiper .swiper-button-prev::after {
  -webkit-transform: scaleX(-1) translateX(2px);
          transform: scaleX(-1) translateX(2px);
}
@media screen and (max-width: 767.9px) {
  .works_swiper {
    aspect-ratio: 402/368;
  }
  .works_swiper .swiper-slide {
    width: 100%;
  }
  .works_swiper .swiper-button-next,
  .works_swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
  .works_swiper .swiper-button-prev {
    left: 20px !important;
  }
  .works_swiper .swiper-button-next {
    right: 20px !important;
  }
}

.page_contact {
  text-align: left;
}
.page_contact .cont {
  max-width: 800px;
}

.contact1 {
  margin-top: 11px;
}
@media screen and (max-width: 767.9px) {
  .contact1 {
    margin-top: 40px;
  }
}

.contact1 {
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .contact1 {
    margin-bottom: 48px;
  }
}

.contact2 {
  margin-bottom: 96px;
}
@media screen and (max-width: 767.9px) {
  .contact2 {
    margin-bottom: 48px;
  }
}

.contact2 h2,
.contact3 h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6666666667;
  padding-bottom: 24px;
  border-bottom: solid 1px #cfcfcf;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .contact2 h2,
  .contact3 h2 {
    padding-bottom: 16px;
    margin-bottom: 15px;
  }
}
.contact2 ul,
.contact3 ul {
  margin-left: 20px;
}
.contact2 ul li,
.contact3 ul li {
  list-style: disc;
  list-style-position: outside;
}

.contact2 ul {
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .contact2 ul {
    margin-bottom: 24px;
  }
}
.contact2 .contact2_tel {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px 40px;
  gap: 12px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .contact2 .contact2_tel {
    gap: 16px 14px;
    padding: 24px 24px 32px;
  }
}
.contact2 .contact2_tel img {
  width: 52px;
}
@media screen and (max-width: 767.9px) {
  .contact2 .contact2_tel img {
    width: 42px;
  }
}
.contact2 .contact2_tel div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact2 .contact2_tel a {
  margin-bottom: 6px;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2105263158;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .contact2 .contact2_tel a {
    font-size: 3rem;
    margin-bottom: 4px;
    line-height: 1.2;
    text-align: center;
  }
}
.contact2 .contact2_tel p.description {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .contact2 .contact2_tel p.description {
    line-height: 1.7333333333;
  }
}
.contact2 .contact2_tel p.time {
  font-size: 1.3rem;
  line-height: 1.2307692308;
  padding-left: 7px;
}
@media screen and (max-width: 767.9px) {
  .contact2 .contact2_tel p.time {
    font-size: 1.2rem;
    text-align: center;
    padding-left: 0;
    line-height: 1.1666666667;
  }
}

.contact3 {
  margin-bottom: 75px;
}
@media screen and (max-width: 767.9px) {
  .contact3 {
    margin-bottom: 48px;
  }
}
.contact3 p {
  margin-bottom: 24px;
}
.contact3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.form {
  width: 100%;
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding-bottom: 104px;
  }
}
.form table {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .form table {
    margin-bottom: 32px;
  }
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .form table tr {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.form table tr:last-child {
  margin-bottom: 0;
}
.form table tr th {
  width: 192px;
  margin-top: 16px;
}
@media screen and (max-width: 767.9px) {
  .form table tr th {
    margin-top: 0;
  }
}
.form table tr th p {
  text-align: left;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .form table tr th p {
    line-height: 1.4666666667;
  }
}
.form table tr th .check {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4545454545;
  background: #c9e1ff;
  padding: 2px 4px;
  color: #366eb4;
}
.form table tr th.text-top {
  margin-top: 0;
}
.form table tr td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.5rem;
}
.form table tr td br {
  display: none;
}
.form table tr td input,
.form table tr td textarea {
  font-weight: 500;
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 16px 24px;
  letter-spacing: 0;
  margin-left: 0;
  border-radius: 4px;
  border: none;
  line-height: 1.6;
}
.form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder {
  color: #777 !important;
  font-size: 1.5rem;
  font-weight: 400;
}
.form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder {
  color: #777 !important;
  font-size: 1.5rem;
  font-weight: 400;
}
.form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder {
  color: #777 !important;
  font-size: 1.5rem;
  font-weight: 400;
}
.form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder {
  color: #777 !important;
  font-size: 1.5rem;
  font-weight: 400;
}
.form table tr td input[type=text]::placeholder,
.form table tr td input[type=email]::placeholder,
.form table tr td input[type=tel]::placeholder,
.form table tr td textarea::placeholder {
  color: #777 !important;
  font-size: 1.5rem;
  font-weight: 400;
}
.form table tr td textarea {
  height: 311px;
  display: block;
  padding-top: 24px;
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 25px;
  margin-top: 2px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.form table tr td .wpcf7-list-item {
  margin: 0;
  line-height: 1.2;
}
.form table tr td .wpcf7-list-item-label {
  vertical-align: middle;
}
.form table tr td .wpcf7-list-item-label::before {
  content: none;
}
.form table tr .address_wrap textarea {
  height: 60px;
}
@media screen and (max-width: 767.9px) {
  .form table tr .address_wrap textarea {
    height: 41px;
  }
}
.form input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: #fff;
  border-radius: 3px;
  border: solid 1px #777777;
  padding: 0;
  margin: 0 10px 0 0;
}
.form .privacy_policy_check {
  text-align: center;
  margin-bottom: 32px;
}
.form .privacy_policy_check p {
  line-height: 1;
}
.form .privacy_policy_check span {
  margin: 0;
}
.form .privacy_policy_check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form .privacy_policy_check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check input {
  margin-right: 8px;
}
.form .privacy_policy_check .wpcf7-list-item-label {
  margin-top: 3px;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 240px;
  max-width: 100%;
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  width: 100%;
  height: 100%;
  color: #366eb4;
  background: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding: 9px 24px 9px 24px;
  border: solid 1px #366eb4;
  border-radius: 100px;
  cursor: pointer;
  text-align: left;
}
.form p.submit::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form p.submit:hover::before {
  -webkit-transform: translateY(-50%) scale(1.66);
          transform: translateY(-50%) scale(1.66);
}
.form p.submit2 {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .form p.submit2 {
    margin-top: 20px;
  }
}

.page_interview {
  padding-bottom: 192px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_interview {
    padding-bottom: 104px;
  }
}
.page_interview .page_top3 .cont {
  padding-right: 34px;
}
@media screen and (max-width: 767.9px) {
  .page_interview .page_top3 .cont {
    padding-right: 24px;
  }
}
.page_interview .page_top3 .cont span {
  padding-right: 6px;
}

.interview_content {
  padding-top: 158px;
}
@media screen and (max-width: 767.9px) {
  .interview_content {
    padding-top: 64px;
  }
}
.interview_content .interview_content_top {
  position: relative;
  z-index: 2;
}
.interview_content .interview_content_top .flex-top {
  gap: 96px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .flex-top {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interview_content .interview_content_top .detail {
  max-width: 580px;
  min-width: 448px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .detail {
    min-width: unset;
  }
}
.interview_content .interview_content_top .detail h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .detail h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.8888888889;
  }
}
.interview_content .interview_content_top .detail p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview_content .interview_content_top .detail p span {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .detail p span {
    font-size: 1.8rem;
  }
}
.interview_content .interview_content_top .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .img {
    margin: 0 32px;
  }
}
.interview_content .interview_content_top .img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 576/384;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_content_top .img img {
    aspect-ratio: 274/224;
  }
}
.interview_content .interview_faq .cont {
  margin-top: -110px;
  padding: 222px 64px 58px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont {
    margin-top: -114px;
    padding: 164px 32px 8px;
  }
}
.interview_content .interview_faq .cont .bg_text {
  position: absolute;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  top: 513px;
  left: -30px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #f5f5f5;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont .bg_text {
    font-size: 9.6rem;
    top: auto;
    bottom: -9px;
    left: -29px;
  }
}
.interview_content .interview_faq .cont .interview_faq_inner {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding-left: 2px;
  margin: 0 auto 72px;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont .interview_faq_inner {
    margin-bottom: 40px;
  }
}
.interview_content .interview_faq .cont .interview_faq_inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont .interview_faq_inner h3 {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 16px;
    gap: 10px;
  }
}
.interview_content .interview_faq .cont .interview_faq_inner h3 span {
  color: #366eb4;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2142857143;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont .interview_faq_inner h3 span {
    font-size: 2.4rem;
    line-height: 1.2083333333;
  }
}
.interview_content .interview_faq .cont img {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 72px;
  border-radius: 8px;
  height: auto;
  width: 100%;
  aspect-ratio: 800/288;
}
@media screen and (max-width: 767.9px) {
  .interview_content .interview_faq .cont img {
    aspect-ratio: 338/224;
    border-radius: 0;
    margin-bottom: 40px;
    width: calc(100% + 64px);
    max-width: unset;
    margin-left: -32px;
  }
}

.interview_other {
  margin-top: 96px;
}
@media screen and (max-width: 767.9px) {
  .interview_other {
    margin-top: 48px;
  }
}
.interview_other h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .interview_other h2 {
    font-size: 1.7rem;
    line-height: 1.4705882353;
    margin-bottom: 32px;
  }
}
.interview_other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 767.9px) {
  .interview_other ul {
    gap: 48px;
  }
}
.interview_other li {
  position: relative;
  padding: 0 48px 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .interview_other li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 57px 40px;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
.interview_other li::before {
  content: "";
  background: #fff;
  width: 100%;
  height: calc(100% - 41px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .interview_other li::before {
    height: calc(100% - 32px);
  }
}
.interview_other li .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 448px;
  height: 217px;
}
@media screen and (max-width: 767.9px) {
  .interview_other li .img {
    height: unset;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.interview_other li .img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .interview_other li .img img {
    height: auto;
    aspect-ratio: 224/112;
  }
}
.interview_other li .detail {
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .interview_other li .detail {
    margin-bottom: 0;
  }
}
.interview_other li .detail p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .interview_other li .detail p {
    margin-bottom: 20px;
  }
}
.interview_other li .detail p span {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767.9px) {
  .interview_other li .detail p span {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
@media (min-width: 768px) {
  .interview_other li .detail .more_btn {
    min-width: 280px;
    font-size: 1.8rem;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 14px;
    padding-bottom: 15px;
    line-height: 1.4444444444;
  }
}

.main_visual {
  height: calc(100svh - 75px);
  margin-top: 75px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1099.9px) {
  .main_visual {
    height: calc(100svh - 64px);
    margin-top: 64px;
  }
}
.main_visual .main_swiper {
  width: 100%;
  height: 100%;
}
.main_visual .main_swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main_visual .main_swiper img {
  display: block;
  width: 100%;
  height: 100%;
}
.main_visual .main_visual_copy {
  position: absolute;
  bottom: 24px;
  left: 56px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1200px) {
  .main_visual .main_visual_copy {
    bottom: 140px;
    width: calc(100% - 112px);
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_copy {
    bottom: 112px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.main_visual .main_visual_copy p {
  color: #fff;
  text-align: left;
}
.main_visual .main_visual_copy .copy1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  margin-bottom: -8px;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_copy .copy1 {
    font-size: 1.6rem;
    line-height: 1.4375;
    margin-bottom: 20px;
    padding-left: 0;
    letter-spacing: 0.25em;
    text-align: center;
  }
}
.main_visual .main_visual_copy .copy2.sp-none {
  font-size: 12.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.main_visual .main_visual_copy .copy2.sp-block img {
  width: 250px;
  margin: 0 auto;
}

/*流れるテキスト*/
.loop-wrap {
  width: 100vw;
  height: 216px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap {
    height: 173px;
  }
}

.loop-wrap p {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.loop-wrap p img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 216px;
  width: auto;
  aspect-ratio: 2279/216;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap p img {
    height: 173px;
  }
}

.loop-wrap p:nth-child(1) {
  -webkit-animation: MoveLeft 100s -50s infinite linear;
  animation: MoveLeft 100s -50s infinite linear;
}

.loop-wrap p:nth-child(2) {
  -webkit-animation: MoveLeft2 100s infinite linear;
  animation: MoveLeft2 100s infinite linear;
}

@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.top_about {
  padding: 168px 0 197px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_about {
    padding: 88px 0 130px;
    margin-bottom: 12px;
  }
}
.top_about .cont2 {
  position: relative;
  z-index: 3;
}
.top_about .flex {
  gap: 159px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top_about .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 56px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .top_about .flex .detail {
    padding-left: 24px;
  }
}
.top_about .flex .detail h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.32em;
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .top_about .flex .detail h2 {
    font-size: 2.8rem;
    line-height: 1.8571428571;
    margin-bottom: 32px;
  }
}
.top_about .flex .detail p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .top_about .flex .detail p {
    letter-spacing: 0.15em;
    line-height: 2.25;
  }
}
.top_about .flex .detail span {
  height: 24px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .top_about .flex .detail span {
    height: 16px;
  }
}
.top_about .flex .image {
  margin-right: calc(50% - 50vw);
  height: auto;
  aspect-ratio: 800/720;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 767.9px) {
  .top_about .flex .image {
    aspect-ratio: 370/304;
  }
}
.top_about .flex .image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_about .loop-wrap {
  position: absolute;
  left: 0;
  bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .top_about .loop-wrap {
    bottom: 0;
  }
}

.top_slider_css {
  overflow: hidden;
  height: 492px;
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .top_slider_css {
    zoom: 0.5;
    margin-bottom: 0;
  }
}

.slider_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slideLoop 70s linear infinite;
          animation: slideLoop 70s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}
.slide img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .slide img {
    border-radius: 16px;
  }
}

/* 各スライドサイズ */
.top_slide1-1 {
  width: 560px;
  height: 368px;
  margin-top: 72px;
}

.top_slide1-2 {
  width: 320px;
  height: 320px;
}

.top_slide1-3 {
  width: 480px;
  height: 320px;
  margin-top: 80px;
}

.top_slide1-4 {
  width: 400px;
  height: 400px;
  margin-top: 40px;
}

.top_slide1-5 {
  width: 240px;
  height: 400px;
  margin-top: 92px;
}

.top_slide1-6 {
  width: 560px;
  height: 320px;
  margin-top: 61px;
}

/* 無限ループ */
@-webkit-keyframes slideLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top_flex {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_flex {
    position: relative;
  }
}
.top_flex .bg_text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f6f6f8;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1.1979166667;
  right: -91px;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767.9px) {
  .top_flex .bg_text {
    top: auto;
    right: -25px;
    bottom: -11px;
    -webkit-transform: unset;
            transform: unset;
    z-index: 2;
  }
}
.top_flex .cont2 {
  position: relative;
  padding: 96px 0;
}
@media screen and (max-width: 767.9px) {
  .top_flex .cont2 {
    padding: 48px 0 56px;
  }
}
.top_flex .cont2::before {
  content: "";
  display: block;
  width: 100vw;
  background: #fff;
  position: absolute;
  left: 96px;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top_flex .cont2::before {
    left: 0;
  }
}
.top_flex .flex-top {
  position: relative;
  z-index: 2;
  gap: 128px;
}
@media screen and (max-width: 1024px) {
  .top_flex .flex-top {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_flex .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.top_flex .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_flex .img {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 83%;
    margin-left: calc(50% - 50vw);
  }
}
.top_flex .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 640/528;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .top_flex .img img {
    border-radius: 0 8px 8px 0;
    aspect-ratio: 280/320;
  }
}
.top_flex .detail {
  padding-right: 19px;
}
.top_flex .detail p {
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .top_flex .detail p {
    margin-bottom: 32px;
  }
}
.top_flex .detail .more_btn {
  margin-left: 0;
}
.top_flex .detail div {
  padding-left: 72px;
}
@media screen and (max-width: 767.9px) {
  .top_flex .detail div {
    padding-left: 48px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_flex .top_title {
    position: absolute;
    top: -1px;
    margin-top: 0;
    left: calc(83% + 8px);
  }
}

.top_title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 70px;
  padding: 0 2px 0 0;
  visibility: hidden;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
  margin-top: -6px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.top_title span {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .top_title span {
    font-size: 2.6rem;
  }
}

.top_company {
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .top_company {
    margin-top: 88px;
    margin-bottom: 88px;
  }
}

.top_business {
  margin-bottom: 186px;
}
@media screen and (max-width: 767.9px) {
  .top_business {
    margin-bottom: 88px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .bg_text {
    right: auto;
    left: -25px;
  }
}
.top_business .top_title {
  margin-bottom: 98px;
}
@media screen and (max-width: 767.9px) {
  .top_business .top_title {
    position: absolute;
    top: 0;
    right: calc(83% + 8px);
    left: auto;
  }
}
.top_business .cont2::before {
  left: auto;
  right: 96px;
}
@media screen and (max-width: 767.9px) {
  .top_business .cont2::before {
    right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .img {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
  .top_business .img img {
    border-radius: 8px 0 0 8px;
  }
}
.top_business .img .bg_text {
  right: auto;
  left: -91px;
}
.top_business .flex-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 108px;
}
@media screen and (max-width: 1024px) {
  .top_business .flex-top {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_business .detail {
    padding-left: 8px;
  }
}
.top_business .detail div {
  padding: 0;
  margin-right: 72px;
}
@media screen and (max-width: 767.9px) {
  .top_business .detail div {
    margin-right: 0;
  }
}
.top_business .top_title {
  margin-left: auto;
}

.top_title.active {
  -webkit-animation: down2show 1s ease backwards;
          animation: down2show 1s ease backwards;
  visibility: visible;
}

@-webkit-keyframes down2show {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes down2show {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.top_projects {
  margin-bottom: 186px;
}
@media screen and (max-width: 767.9px) {
  .top_projects {
    margin-bottom: 88px;
  }
}
.top_projects .top_projects_swiper_wrapper {
  height: 560px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top_projects .top_projects_swiper_wrapper {
    height: 448px;
    margin-bottom: 32px;
  }
}
.top_projects .top_swiper2 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.top_projects .top_swiper2 .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 384px;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top_projects .top_swiper2 .swiper-slide {
    width: 307px;
  }
}
.top_projects .top_swiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
}
.top_projects .top_title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 18px 19px 13px 13px;
  background: #fff;
  margin-top: 0;
}
@media screen and (max-width: 767.9px) {
  .top_projects .top_title {
    padding: 19px 23px 14px 15px;
  }
}
.top_projects .bg_text {
  position: absolute;
  z-index: 2;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  padding-right: 6px;
}
@media screen and (max-width: 767.9px) {
  .top_projects .bg_text {
    font-size: 8.2rem;
    bottom: -22px;
  }
}
.top_projects .cont {
  max-width: 800px;
  gap: 48px;
}
@media screen and (max-width: 767.9px) {
  .top_projects .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    max-width: 290px;
  }
}
.top_projects .cont p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.top_projects .cont .more_btn {
  margin-top: 15px;
}
@media screen and (max-width: 767.9px) {
  .top_projects .cont .more_btn {
    margin-top: 0;
  }
}

.top_recruit {
  margin-bottom: 192px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_recruit {
    margin-bottom: 64px;
  }
}
.top_recruit .wrapper {
  max-width: 1328px;
  width: 93%;
  padding: 72px 0;
  background: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .wrapper {
    width: 100%;
    padding: 32px 0 55px;
  }
}
.top_recruit .flex {
  gap: 108px;
  padding-right: 4px;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  .top_recruit .flex {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .top_recruit .flex {
    width: 84.1%;
    padding-right: 0;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_recruit .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .img {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.top_recruit .img .bg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(5.6rem, 8.33vw, 12rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  padding-left: 16px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .img .bg_text {
    padding-left: 8px;
  }
}
.top_recruit .img img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.top_recruit .detail {
  width: 240px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .detail {
    width: 100%;
    padding: 0 23px;
  }
}
.top_recruit .detail .top_title {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
}
.top_recruit .detail h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  margin-top: -48px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .detail h3 {
    margin-top: -96px;
    margin-bottom: 24px;
  }
}
.top_recruit .detail p {
  margin-bottom: 20px;
  width: 240px;
}
@media screen and (max-width: 767.9px) {
  .top_recruit .detail p {
    margin-bottom: 32px;
  }
}
.top_recruit .detail .more_btn {
  margin-left: 0;
}

.top_news {
  position: relative;
  z-index: 2;
}
.top_news .cont {
  padding-bottom: 96px;
  max-width: 992px;
  background: #f6f6f8;
}
@media screen and (max-width: 767.9px) {
  .top_news .cont {
    padding-bottom: 112px;
  }
}
.top_news .top_news_content {
  width: 84%;
  max-width: 736px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top_news .top_news_content {
    width: 100%;
    position: relative;
  }
}
.top_news h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767.9px) {
  .top_news h2 {
    font-size: 1.8rem;
    gap: 16px;
  }
}
.top_news h2 span {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news h2 span {
    font-size: 3.2rem;
  }
}
.top_news .more_btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .top_news .more_btn2 {
    position: absolute;
    bottom: -48px;
    right: 0;
  }
}
.top_news .more_btn2 .arrow {
  background: #366eb4;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  border: solid 1px #366eb4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_news .more_btn2 .arrow img {
  width: 9px;
  height: auto;
  aspect-ratio: 9/8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top_news .more_btn2 .arrow .icon-first {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top_news .more_btn2 .arrow .icon-second {
  -webkit-transform: translate(calc(-50% - 24px), -50%);
          transform: translate(calc(-50% - 24px), -50%);
}
.top_news .more_btn2:hover {
  opacity: 1;
}
.top_news .more_btn2:hover .arrow {
  background: #fff;
}
.top_news .more_btn2:hover .arrow img {
  -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(59%) saturate(630%) hue-rotate(173deg) brightness(99%) contrast(90%);
          filter: brightness(0) saturate(100%) invert(35%) sepia(59%) saturate(630%) hue-rotate(173deg) brightness(99%) contrast(90%);
}
.top_news .more_btn2:hover .arrow .icon-first {
  -webkit-animation: arrow-first-out 0.6s forwards;
          animation: arrow-first-out 0.6s forwards;
}
.top_news .more_btn2:hover .arrow .icon-second {
  -webkit-animation: arrow-second-in 0.6s forwards;
          animation: arrow-second-in 0.6s forwards;
}
.top_news .more_btn2:not(:hover) .icon-first.is-animated {
  -webkit-animation: arrow-first-in 0.6s forwards;
          animation: arrow-first-in 0.6s forwards;
}
.top_news .more_btn2:not(:hover) .icon-second.is-animated {
  -webkit-animation: arrow-second-out 0.6s forwards;
          animation: arrow-second-out 0.6s forwards;
}
.top_news .news_list {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 0;
  gap: 0;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list {
    margin-top: 8px;
  }
}
.top_news .news_list li {
  background: none;
}
.top_news .news_list li a {
  padding: 24px 0;
  border-bottom: solid 1px #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-right: 75px;
  gap: 0;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list li a {
    padding: 23px 0 19px;
    gap: 12px;
    padding-right: 24px;
  }
}
.top_news .news_list li a .arrow {
  position: absolute;
  top: 50%;
  right: -8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list li a .arrow {
    top: 58px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.top_news .news_list li a .arrow img {
  width: 9px;
  height: auto;
  aspect-ratio: 9/8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(59%) saturate(630%) hue-rotate(173deg) brightness(99%) contrast(90%);
          filter: brightness(0) saturate(100%) invert(35%) sepia(59%) saturate(630%) hue-rotate(173deg) brightness(99%) contrast(90%);
}
.top_news .news_list li a .arrow .icon-first {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top_news .news_list li a .arrow .icon-second {
  -webkit-transform: translate(calc(-50% - 24px), -50%);
          transform: translate(calc(-50% - 24px), -50%);
}
.top_news .news_list li a time {
  color: #366eb4;
  min-width: 86px;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-top: 6px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .top_news .news_list li a time {
    margin-top: 0;
    margin-bottom: -2px;
  }
}
.top_news .news_list li a .news_title {
  line-height: 1.7333333333;
}
.top_news .news_list li a p {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top_news .news_list li a:hover {
  opacity: 1;
}
.top_news .news_list li a:hover p {
  color: #366eb4;
}
.top_news .news_list li a:hover .icon-first {
  -webkit-animation: arrow-first-out 0.6s forwards;
          animation: arrow-first-out 0.6s forwards;
}
.top_news .news_list li a:hover .icon-second {
  -webkit-animation: arrow-second-in 0.6s forwards;
          animation: arrow-second-in 0.6s forwards;
}
.top_news .news_list li a:not(:hover) .icon-first.is-animated {
  -webkit-animation: arrow-first-in 0.6s forwards;
          animation: arrow-first-in 0.6s forwards;
}
.top_news .news_list li a:not(:hover) .icon-second.is-animated {
  -webkit-animation: arrow-second-out 0.6s forwards;
          animation: arrow-second-out 0.6s forwards;
}

@-webkit-keyframes arrow-first-out {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    -webkit-transform: translate(calc(-50% + 24px), -50%);
            transform: translate(calc(-50% + 24px), -50%);
  }
}

@keyframes arrow-first-out {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    -webkit-transform: translate(calc(-50% + 24px), -50%);
            transform: translate(calc(-50% + 24px), -50%);
  }
}
@-webkit-keyframes arrow-first-in {
  from {
    -webkit-transform: translate(calc(-50% - 24px), -50%);
            transform: translate(calc(-50% - 24px), -50%);
  }
  to {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes arrow-first-in {
  from {
    -webkit-transform: translate(calc(-50% - 24px), -50%);
            transform: translate(calc(-50% - 24px), -50%);
  }
  to {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes arrow-second-in {
  from {
    -webkit-transform: translate(calc(-50% - 24px), -50%);
            transform: translate(calc(-50% - 24px), -50%);
  }
  to {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes arrow-second-in {
  from {
    -webkit-transform: translate(calc(-50% - 24px), -50%);
            transform: translate(calc(-50% - 24px), -50%);
  }
  to {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes arrow-second-out {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    -webkit-transform: translate(calc(-50% + 24px), -50%);
            transform: translate(calc(-50% + 24px), -50%);
  }
}
@keyframes arrow-second-out {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    -webkit-transform: translate(calc(-50% + 24px), -50%);
            transform: translate(calc(-50% + 24px), -50%);
  }
}
body.home .bottom_contact {
  margin-top: -128px;
  background-image: url(../img/bottom_contact_top.jpg);
  padding-top: 312px;
}
@media screen and (max-width: 767.9px) {
  body.home .bottom_contact {
    margin-top: 0;
    padding-top: 96px;
    background-image: url(../img/bottom_contact-sp.jpg);
  }
}

.page_business .page_top {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_business .page_top {
    margin-bottom: 64px;
  }
}

.page_business .top_title {
  margin-top: 0;
}
.page_business .top_title span {
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.9px) {
  .page_business .top_title span {
    font-size: 2.4rem;
    letter-spacing: 0.18em;
  }
}

.business1 {
  margin-bottom: 146px;
}
@media screen and (max-width: 767.9px) {
  .business1 {
    margin-bottom: 104px;
  }
}
.business1 .cont {
  max-width: 930px;
}
.business1 h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.9230769231;
  letter-spacing: 0.24em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .business1 h2 {
    padding-left: 24px;
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 16px;
  }
}
.business1 p {
  font-weight: 500;
  line-height: 2.1333333333;
}
@media screen and (max-width: 767.9px) {
  .business1 p {
    padding: 0 24px;
  }
}

.business2 {
  overflow: hidden;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .business2 {
    position: relative;
    margin-bottom: 96px;
  }
}
.business2 .bg_text {
  position: absolute;
  top: 96px;
  right: -32px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #f6f6f8;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .business2 .bg_text {
    top: 0;
    right: -23px;
    font-size: 8.8rem;
    line-height: 1.2045454545;
    color: #fff;
  }
}
.business2 .cont2 {
  padding-top: 8px;
  gap: 160px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .business2 .cont2 {
    gap: 44px;
    padding-top: 0;
  }
}
.business2 .detail {
  margin-top: 5px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 96px;
  padding-right: 192px;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail {
    padding-right: 32px;
    padding-top: 30px;
    margin-top: 0;
  }
}
.business2 .detail::before {
  content: "";
  width: 100vw;
  height: calc(100% - 96px);
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail::before {
    height: calc(100% - 32px);
  }
}
.business2 .detail .description {
  padding-bottom: 32px;
  border-bottom: solid 1px #cfcfcf;
  margin-bottom: 32px;
}
.business2 .detail h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 2;
}
.business2 .detail .flex-top {
  gap: 0 20px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .flex-top {
    margin-bottom: 40px;
    gap: 2px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business2 .detail .flex-top ul {
  margin-left: 22px;
}
.business2 .detail .flex-top ul li {
  list-style: disc;
  list-style-position: outside;
  font-weight: 600;
  line-height: 2.1333333333;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .flex-top ul li {
    line-height: 1.7333333333;
    margin-bottom: 3px;
  }
}
.business2 .detail .img_parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .img_parent {
    gap: 5px;
    width: 92.05vw;
    max-width: none;
  }
}
.business2 .detail .img_parent img {
  border-radius: 8px;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business2 .detail .div1 {
  grid-column: span 3/span 3;
  aspect-ratio: 736/528;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .div1 {
    aspect-ratio: 370/264;
  }
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .div1 img {
    border-radius: 8px 0 0 8px;
  }
}
.business2 .detail .div2,
.business2 .detail .div3,
.business2 .detail .div4 {
  aspect-ratio: 240/200;
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .div2,
  .business2 .detail .div3,
  .business2 .detail .div4 {
    aspect-ratio: 120/126;
  }
}
@media screen and (max-width: 767.9px) {
  .business2 .detail .div4 img {
    border-radius: 8px 0 0 8px;
  }
}

.business3 {
  overflow: hidden;
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .business3 {
    margin-bottom: 104px;
    position: relative;
  }
}
.business3 .bg_text {
  position: absolute;
  top: 96px;
  left: -32px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #f6f6f8;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .business3 .bg_text {
    top: 0;
    left: -23px;
    font-size: 8.8rem;
    line-height: 1.2045454545;
    color: #fff;
  }
}
.business3 .top_title.active {
  -webkit-animation: down2show 2s ease backwards;
          animation: down2show 2s ease backwards;
  visibility: visible;
}
.business3 .top_title {
  margin-top: 2px;
}
@media screen and (max-width: 767.9px) {
  .business3 .top_title {
    margin-left: -2px;
  }
}
.business3 .top_title span .span2 {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .business3 .top_title span .span2 {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  @supports (-webkit-touch-callout: none) and (not (pointer: fine)) {
    .business3 .top_title span .span2 {
      -webkit-transform: unset;
              transform: unset;
    }
  }
}
.business3 .top_title span .span1 {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  margin: 2px 0 4px;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .business3 .top_title span .span1 {
    margin: 0px 0 2px;
  }
}
.business3 .cont2 {
  gap: 155px;
}
@media screen and (max-width: 767.9px) {
  .business3 .cont2 {
    gap: 41px;
  }
}
.business3 .detail {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 96px;
  padding-left: 192px;
}
@media screen and (max-width: 767.9px) {
  .business3 .detail {
    padding-left: 32px;
    padding-top: 30px;
  }
}
.business3 .detail::before {
  content: "";
  width: 100vw;
  height: calc(100% - 96px);
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  background: #fff;
  z-index: -1;
}
.business3 .detail .description {
  padding-bottom: 32px;
  border-bottom: solid 1px #cfcfcf;
  margin-bottom: 32px;
}
.business3 .detail h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 2;
}
.business3 .detail ul {
  margin-left: 22px;
}
.business3 .detail ul li {
  list-style: disc;
  list-style-position: outside;
  font-weight: 600;
  line-height: 2.1333333333;
}
@media screen and (max-width: 767.9px) {
  .business3 .detail ul li {
    line-height: 1.7333333333;
  }
}
.business3 .detail ul li sub {
  font-size: 1rem;
  vertical-align: sub;
}
.business3 .detail ul .letter {
  letter-spacing: 0.1em;
}
.business3 .detail ul .img_wrap {
  margin-top: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding-right: 22px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .business3 .detail ul .img_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: -22px;
  }
}
.business3 .detail ul .img_wrap div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 290px;
}
.business3 .detail ul .img_wrap h4 {
  text-align: center;
  margin-bottom: -4px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4615384615;
  padding-left: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .business3 .detail ul .img_wrap h4 {
    padding-left: 0;
    margin-bottom: -3px;
  }
}
.business3 .detail .detail_wrap1 {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: solid 1px #cfcfcf;
}
.business3 .detail .detail_wrap2 ul {
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .business3 .detail .detail_wrap2 ul {
    margin-bottom: 40px;
  }
}
.business3 .img_parent {
  display: grid;
  grid-template-columns: 454fr 268fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
@media screen and (max-width: 767.9px) {
  .business3 .img_parent {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    width: 92.05vw;
    margin-left: calc(50% - 50vw);
    -webkit-transform: translateX(-52px);
            transform: translateX(-52px);
    max-width: none;
    margin-right: 32px;
  }
}
.business3 .img_parent img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business3 .div1 {
  grid-column: 1;
  grid-row: span 2/span 2;
  aspect-ratio: 454/400;
}
@media screen and (max-width: 767.9px) {
  .business3 .div1 {
    grid-column: 1/-1;
    grid-row: 1;
    aspect-ratio: 370/264;
  }
  .business3 .div1 img {
    border-radius: 0 8px 8px 0;
  }
}
.business3 .div2 {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 268/193;
}
@media screen and (max-width: 767.9px) {
  .business3 .div2 {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 182/126;
  }
  .business3 .div2 img {
    border-radius: 0 8px 8px 0;
  }
}
.business3 .div3 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 268/193;
}
@media screen and (max-width: 767.9px) {
  .business3 .div3 {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 182/126;
  }
  .business3 .div3 img {
    border-radius: 0 8px 8px 0;
  }
}

.page_company .top_title span {
  font-size: 2.4rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767.9px) {
  .page_company .top_title span {
    letter-spacing: 0.2em;
  }
}
.page_company .bg_text {
  font-size: 15.2rem;
  font-weight: 800;
  line-height: 1.1973684211;
  letter-spacing: 0;
  position: absolute;
  color: #fff;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page_company .bg_text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 8.8rem;
  }
}
.page_company .page_top {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_company .page_top {
    margin-bottom: 65px;
  }
}
.page_company section {
  overflow-x: clip;
  position: relative;
  z-index: 2;
}

.company1 {
  margin-bottom: 160px;
  padding-bottom: 86px;
}
@media screen and (max-width: 767.9px) {
  .company1 {
    margin-bottom: 0;
    padding-bottom: 104px;
  }
}
.company1 .top_title {
  margin-top: 9px;
}
.company1 .bg_text {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 4px;
}
@media screen and (max-width: 767.9px) {
  .company1 .bg_text {
    -webkit-transform: unset;
            transform: unset;
    top: 0;
    left: -23px;
  }
}
.company1 .cont {
  max-width: 650px;
  padding-left: 20px;
  gap: 198px;
}
@media screen and (max-width: 767.9px) {
  .company1 .cont {
    gap: 46px;
    padding-left: 0;
  }
}
.company1 .description {
  margin-top: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .company1 .description {
    margin-top: 0;
  }
}
.company1 .description h3 {
  margin-top: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.9230769231;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .company1 .description h3 {
    margin-top: 0;
    letter-spacing: 0.24em;
    font-size: 1.8rem;
    line-height: 1.8888888889;
  }
}
.company1 .description p {
  margin-bottom: 12px;
  line-height: 2.1333333333;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .company1 .description p {
    margin-bottom: 0;
  }
}
.company1 .description p:last-child {
  margin-bottom: 0;
}

.company2 {
  margin-bottom: 184px;
}
@media screen and (max-width: 767.9px) {
  .company2 {
    margin-bottom: 104px;
  }
}
.company2 .bg_text {
  left: 64px;
  bottom: 82px;
}
@media screen and (max-width: 767.9px) {
  .company2 .bg_text {
    left: auto;
    right: -19px;
    top: 0;
    bottom: auto;
  }
}
.company2 .cont {
  position: relative;
  padding-top: 46px;
}
@media screen and (max-width: 767.9px) {
  .company2 .cont {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 44px;
  }
}
.company2 .flex-top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .company2 .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.company2 .top_title {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
}
@media screen and (max-width: 767.9px) {
  .company2 .top_title {
    position: relative;
  }
}
.company2 picture {
  display: block;
}
.company2 .img {
  width: 41.4%;
}
@media screen and (max-width: 767.9px) {
  .company2 .img {
    margin-left: -7.95vw;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.company2 .img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .company2 .img img {
    aspect-ratio: 300/200;
    border-radius: 0 8px 8px 0;
  }
}
.company2 .detail {
  width: 48.28%;
  padding-right: 110px;
}
@media screen and (max-width: 767.9px) {
  .company2 .detail {
    width: 100%;
    padding-right: 0;
  }
}
.company2 h3 {
  padding-right: 64px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.9230769231;
  letter-spacing: 0.24em;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.9px) {
  .company2 h3 {
    padding: 0;
    margin-bottom: 24px;
    font-size: 1.8rem;
    line-height: 1.8888888889;
  }
}

.company3 {
  padding-top: 136px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .company3 {
    padding-top: 0;
    margin-bottom: 56px;
  }
}
.company3 .bg_text {
  right: 51px;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .company3 .bg_text {
    right: auto;
    left: -20px;
  }
}
.company3 .cont2 {
  gap: 165px;
}
@media screen and (max-width: 767.9px) {
  .company3 .cont2 {
    gap: 44px;
  }
}
.company3 .top_title {
  margin-left: 96px;
  margin-top: 3px;
}
@media screen and (max-width: 1024px) {
  .company3 .top_title {
    margin-left: 0;
  }
}
.company3 .overview {
  position: relative;
  padding: 40px 0 64px 64px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .company3 .overview {
    padding: 20px 0 40px 32px;
  }
}
.company3 .overview::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
}
.company3 .overview table {
  position: relative;
  display: block;
}
.company3 .overview table tbody {
  display: block;
}
.company3 .overview table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  border-bottom: solid 1px #cfcfcf;
}
@media screen and (max-width: 767.9px) {
  .company3 .overview table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
}
.company3 .overview table th,
.company3 .overview table td {
  line-height: 1.6666666667;
}
.company3 .overview table th {
  width: 128px;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .company3 .overview table th {
    line-height: 1.4666666667;
  }
}
.company3 .overview table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .company3 .overview table td {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    line-height: 1.7333333333;
  }
}

.map {
  width: 100%;
  height: 405px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .map {
    height: 360px;
    margin-bottom: 88px;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
}

.company4 {
  padding-top: 102px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .company4 {
    padding-top: 0;
    margin-bottom: 104px;
  }
}
.company4 .bg_text {
  right: 61px;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .company4 .bg_text {
    right: -19px;
    top: 16px;
  }
}
.company4 .flex-top {
  gap: 104px;
  max-width: 800px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .company4 .flex-top {
    gap: 44px;
  }
}
.company4 .top_title {
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .company4 .top_title {
    margin-top: 16px;
  }
}
.company4 .history_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.company4 table {
  display: block;
}
.company4 table tbody {
  display: block;
}
.company4 table tr {
  padding: 24px 0;
  border-bottom: solid 1px #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .company4 table tr {
    padding: 16px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.company4 table th,
.company4 table td {
  line-height: 1.4666666667;
}
.company4 table th {
  width: 191px;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .company4 table th {
    line-height: 1.4666666667;
  }
}
.company4 table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .company4 table td {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    line-height: 1.7333333333;
  }
}

.company5 {
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .company5 {
    margin-bottom: 104px;
  }
}
.company5 .cont {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 80px 96px 88px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .company5 .cont {
    padding: 48px 41px;
    gap: 32px;
  }
}
.company5 .bg_text {
  left: -10px;
  top: -40px;
  z-index: 2;
  color: #f6f6f8;
}
@media screen and (max-width: 767.9px) {
  .company5 .bg_text {
    top: 108px;
    left: -22px;
    padding: 0;
  }
}
.company5 .top_title {
  margin-top: 2px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .company5 .top_title {
    position: absolute;
    top: 55px;
    left: 41px;
  }
}
.company5 .policy_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 544px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .company5 .policy_content {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.company5 p {
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .company5 p {
    margin-bottom: 32px;
    padding-left: 64px;
  }
}
.company5 .btn_wrap {
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .company5 .btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.company5 .btn_wrap a {
  margin: 0;
  width: 264px;
  max-width: 100%;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page_recruit .page_top4 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .page_top4 {
    margin-bottom: 64px;
  }
  .page_recruit .page_top4::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/page_recruit-sp-bg.png);
    background-size: cover;
    background-position: bottom;
  }
}
.page_recruit .top_title {
  margin-top: 0;
}
.page_recruit .top_title span {
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .top_title span {
    font-size: 2.4rem;
    letter-spacing: 0.18em;
  }
}
.page_recruit .recruit1 {
  margin-bottom: 192px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 {
    margin-bottom: 96px;
    position: relative;
  }
}
.page_recruit .recruit1 .cont {
  gap: 192px;
  max-width: 886px;
}
@media screen and (max-width: 1024px) {
  .page_recruit .recruit1 .cont {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 48px;
  }
}
.page_recruit .recruit1 .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.page_recruit .recruit1 .img img {
  display: block;
  border-radius: 0 8px 8px 0;
  height: 256px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .img img {
    height: auto;
    aspect-ratio: 370/144;
  }
}
.page_recruit .recruit1 .detail {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .detail {
    position: static;
  }
}
.page_recruit .recruit1 .detail .bg_text {
  position: absolute;
  top: 50%;
  left: -112px;
  color: #fff;
  font-size: 15.2rem;
  font-weight: 800;
  line-height: 1.1973684211;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .detail .bg_text {
    top: 85px;
    -webkit-transform: unset;
            transform: unset;
    right: -21px;
    font-size: 8.8rem;
    line-height: 1.2045454545;
    left: auto;
  }
}
.page_recruit .recruit1 .detail h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.1666666667;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .detail h2 {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 16px;
  }
}
.page_recruit .recruit1 .detail p {
  font-weight: 500;
  line-height: 2.5333333333;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.9px) {
  .page_recruit .recruit1 .detail p {
    line-height: 2.4;
  }
}

button {
  color: #1d1d1f;
}

.recruit2 {
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .recruit2 {
    margin-bottom: 0;
  }
}
.recruit2 .sp-none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .sp-none {
    display: none;
  }
}
.recruit2 .sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .sp-block {
    display: block;
  }
}
.recruit2 .recruit2_wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit2 .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0 24px;
}
.recruit2 .detail_content {
  max-width: 384px;
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .detail_content {
    padding: 0 73px 96px;
    min-height: unset;
    height: auto;
    max-width: unset;
  }
}
.recruit2 .detail_content .flex {
  gap: 48px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 40px;
  padding-left: 8px;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .detail_content .flex {
    margin-top: -88px;
    padding-top: 0;
    gap: 28px;
    max-width: 176px;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
    margin-bottom: 21px;
  }
}
.recruit2 .detail_content .flex h2 {
  font-size: 8.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .detail_content .flex h2 {
    font-size: 6.4rem;
    padding-top: 0;
  }
}
.recruit2 .detail_content .flex h2 span {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #366eb4;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
}
.recruit2 .detail_content .flex img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  aspect-ratio: 1/1;
  border-radius: 8px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .recruit2 .detail_content .flex img {
    max-width: 100%;
    height: 176px;
    max-height: 176px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.recruit2 .detail_content p {
  font-weight: 500;
}
.recruit2 .recruit2_swiper {
  width: 48.9%;
  height: calc(100svh - 75px);
  position: sticky;
  overflow: hidden;
  top: 75px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.recruit2 .recruit2_swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 8px 0 0 8px;
}
.recruit2 .recruit2_swiper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.recruit2 .recruit2_swiper .swiper-slide:nth-child(1) img {
  -webkit-transition: none;
  transition: none;
}
.recruit2 .recruit2_swiper .swiper-slide:nth-child(3) img {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: none;
  transition: none;
}
.recruit2 .recruit2_wrapper.sp-block .img {
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.recruit2 .recruit2_wrapper.sp-block .img img {
  width: 100%;
  height: 100%;
}
.recruit2 .recruit2_wrapper.sp-block .img.js-sp-parallax img {
  -webkit-transform: translate3d(0, var(--sp-parallax-y, 0px), 0) scale(1.06);
          transform: translate3d(0, var(--sp-parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .recruit2 .recruit2_wrapper.sp-block .img.js-sp-parallax img {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.recruit3 {
  position: relative;
  overflow: hidden;
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 {
    margin-bottom: 96px;
  }
}
.recruit3 .cont2 {
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .cont2 {
    width: 94%;
    margin-right: 0;
  }
}
.recruit3 .recruit3_swiper {
  padding-bottom: 72px;
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper {
    padding-bottom: 48px;
  }
}
.recruit3 .recruit3_swiper .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.recruit3 .recruit3_swiper .swiper-slide .inner {
  padding: 84px 0;
  position: relative;
  z-index: 2;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .inner .bg_text {
  position: absolute;
  font-size: min(12.9rem, 8.95vw);
  line-height: 1.2015503876;
  letter-spacing: 0;
  font-weight: 800;
  position: absolute;
  right: 51px;
  bottom: -35px;
  color: #f6f6f8;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .inner .bg_text {
    right: -17px;
    bottom: auto;
    top: 52px;
    font-size: 6.4rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    z-index: -1;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .inner::before {
  content: "";
  width: calc(100% - 160px);
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .inner::before {
    content: none;
  }
}
.recruit3 .recruit3_swiper .swiper-slide img {
  width: 42.86%;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide img {
    width: 80.4%;
    aspect-ratio: 304/136;
    margin-bottom: -104px;
    margin-left: 0;
    position: relative;
    z-index: 3;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail {
    padding-left: 32px;
    position: relative;
    z-index: 2;
    padding-top: 128px;
    padding-bottom: 40px;
    margin-left: 32px;
    padding-right: 32px;
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    z-index: -1;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail .container {
  width: 90%;
  margin: 0 auto;
  max-width: 448px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail .container {
    width: 100%;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail h3 {
    font-size: 1.8rem;
    line-height: 1.8888888889;
    margin-bottom: 16px;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail .position {
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail .position {
    margin-bottom: 16px;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail .position span {
  margin-left: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6666666667;
}
.recruit3 .recruit3_swiper .swiper-slide .detail .description {
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail .description {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
  }
}
.recruit3 .recruit3_swiper .swiper-slide .detail .more_btn {
  margin-left: 0;
}
@media (min-width: 768px) {
  .recruit3 .recruit3_swiper .swiper-slide .detail .more_btn {
    min-width: 280px;
    font-size: 1.8rem;
    padding-left: 40px;
    padding-top: 14px;
    padding-bottom: 15px;
    padding-right: 41px;
    line-height: 1.4444444444;
  }
}
.recruit3 .recruit3_swiper .swiper-button-next,
.recruit3 .recruit3_swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: 0;
  top: auto;
  display: grid;
  place-content: center;
  margin-top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #366eb4;
  border: solid 1px #366eb4;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-button-next,
  .recruit3 .recruit3_swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}
.recruit3 .recruit3_swiper .swiper-button-next::after,
.recruit3 .recruit3_swiper .swiper-button-prev::after {
  content: "";
  background-image: url(../img/swiper_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 9px;
  height: auto;
  aspect-ratio: 9/15;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10%) hue-rotate(197deg) brightness(104%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10%) hue-rotate(197deg) brightness(104%) contrast(103%);
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-button-next::after,
  .recruit3 .recruit3_swiper .swiper-button-prev::after {
    width: 8px;
    padding-left: 1px;
  }
}
.recruit3 .recruit3_swiper .swiper-button-next:hover,
.recruit3 .recruit3_swiper .swiper-button-prev:hover {
  background: #fff;
}
.recruit3 .recruit3_swiper .swiper-button-next:hover::after,
.recruit3 .recruit3_swiper .swiper-button-prev:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(38%) sepia(36%) saturate(1038%) hue-rotate(173deg) brightness(95%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(38%) sepia(36%) saturate(1038%) hue-rotate(173deg) brightness(95%) contrast(85%);
}
.recruit3 .recruit3_swiper .swiper-button-prev {
  right: 56px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-button-prev {
    right: 76px;
  }
}
.recruit3 .recruit3_swiper .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit3 .recruit3_swiper .swiper-button-next {
    right: 32px;
  }
}
.recruit3 .recruit3_swiper .swiper-button-prev::after {
  -webkit-transform: scaleX(-1) translateX(1px);
          transform: scaleX(-1) translateX(1px);
}

.recruit4 {
  margin-bottom: 192px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .recruit4 {
    margin-bottom: 112px;
  }
}
.recruit4 .top_title {
  margin: 0;
}
.recruit4 .cont2 {
  gap: 160px;
  padding-bottom: 123px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .recruit4 .cont2 {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit4 .cont2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
  }
}
.recruit4 .cont2 .bg_text {
  position: absolute;
  font-size: 15.2rem;
  line-height: 1.1973684211;
  letter-spacing: 0;
  font-weight: 800;
  color: #fff;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .recruit4 .cont2 .bg_text {
    font-size: 8.8rem;
    line-height: 1.1955307263;
    bottom: auto;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.recruit4 .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  aspect-ratio: 928/522;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .recruit4 .image {
    aspect-ratio: 338/190;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.recruit4 .image iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.recruit5 {
  overflow: hidden;
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 {
    margin-bottom: 96px;
    position: relative;
  }
}
.recruit5 .cont2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 160px;
}
@media screen and (max-width: 1024px) {
  .recruit5 .cont2 {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit5 .cont2 {
    gap: 44px;
  }
}
.recruit5 .top_title {
  margin-top: 77px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .top_title {
    margin-top: 28px;
  }
}
.recruit5 .bg_text {
  position: absolute;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  color: #f6f6f8;
  right: -36px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: -1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .bg_text {
    font-size: 8.8rem;
    line-height: 1.2045454545;
    bottom: auto;
    top: 0;
    right: -23px;
    left: auto;
    -webkit-transform: unset;
            transform: unset;
    color: #fff;
    padding-top: 0;
  }
}
.recruit5 .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
  padding-right: 192px;
  padding-bottom: 136px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail {
    padding-bottom: 48px;
    padding-right: 32px;
  }
}
.recruit5 .detail::before {
  content: "";
  width: 100vw;
  height: calc(100% - 81px);
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail::before {
    height: calc(100% - 25px);
  }
}
.recruit5 .detail .img_wrap {
  gap: 8px;
  margin-bottom: 64px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .img_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
    width: calc(100% + 7.95vw);
    margin-left: -7.95vw;
  }
}
.recruit5 .detail .img_wrap img {
  border-radius: 8px;
  aspect-ratio: 364/296;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .img_wrap img {
    aspect-ratio: 268/136;
    border-radius: 0 8px 8px 0;
  }
}
.recruit5 .detail h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail h3 {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    margin-bottom: 16px;
  }
}
.recruit5 .detail .description {
  margin-bottom: 38px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .description {
    margin-bottom: 16px;
  }
}
.recruit5 .detail .benefit_item {
  padding: 40px 0;
  border-bottom: solid 1px #cfcfcf;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .benefit_item {
    padding: 24px 0;
  }
}
.recruit5 .detail .benefit_item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .benefit_item h4 {
    font-size: 1.6rem;
    line-height: 1.4375;
    margin-bottom: 10px;
  }
}
.recruit5 .detail .benefit_item:last-child {
  padding-bottom: 32px;
  border-bottom: none;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .benefit_item:last-child {
    padding-bottom: 20px;
  }
}
.recruit5 .detail .license_wrap h4 {
  color: #366eb4;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4666666667;
  margin-bottom: 16px;
}
.recruit5 .detail .license_wrap ul {
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .recruit5 .detail .license_wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit5 .detail .license_wrap ul li {
  padding: 7px 12px 8px;
  border-radius: 100px;
  border: solid 1px #cfcfcf;
  line-height: 1.2;
}

.recruit6 {
  margin-bottom: 174px;
}
@media screen and (max-width: 767.9px) {
  .recruit6 {
    margin-bottom: 88px;
  }
}
.recruit6 .cont2 {
  gap: 158px;
}
@media screen and (max-width: 1024px) {
  .recruit6 .cont2 {
    gap: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit6 .cont2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.recruit6 .top_title {
  margin-top: -6px;
}
.recruit6 .heading_wrap {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .heading_wrap {
    width: 100%;
  }
}
.recruit6 .heading_wrap .bg_text {
  position: absolute;
  font-size: 15.2rem;
  line-height: 1.1973684211;
  letter-spacing: 0;
  font-weight: 800;
  color: #fff;
  top: 136px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .heading_wrap .bg_text {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: unset;
            transform: unset;
    font-size: 8.8rem;
    line-height: 1.2045454545;
    text-align: center;
  }
}
@media screen and (max-width: 767.9px) {
  .recruit6 .heading_wrap h2.sp-block {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 2.4rem;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    line-height: 1;
  }
  .recruit6 .heading_wrap h2.sp-block span {
    letter-spacing: 0.12em;
  }
}
.recruit6 .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .detail {
    width: 100%;
  }
}
.recruit6 .accordion_item--accordion {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_item--accordion {
    margin-bottom: 8px;
  }
}
.recruit6 .accordion_toggle {
  font-size: 1.8rem;
  position: relative;
  padding: 34px 122px 34px 110px;
  letter-spacing: 0;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_toggle {
    padding: 23px 56px 23px 59px;
    font-size: 1.6rem;
  }
}
.recruit6 .accordion_toggle span {
  content: "Q";
  color: #366eb4;
  font-size: 3.2rem;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 28px;
  left: 64px;
  line-height: 1.1875;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_toggle span {
    left: 32px;
    font-size: 2.4rem;
    top: 19px;
    line-height: 1.2083333333;
  }
}
.recruit6 .accordion_toggle::before, .recruit6 .accordion_toggle::after {
  width: 16px;
  right: 64px;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_toggle::before, .recruit6 .accordion_toggle::after {
    width: 12px;
    right: 32px;
  }
}
.recruit6 .accordion_item--accordion {
  padding-bottom: 0;
}
.recruit6 .accordion_panel {
  padding: 0 112px 0 110px;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_panel {
    padding: 0 32px;
  }
}
.recruit6 .accordion_panel p {
  margin-top: 4px;
  margin-bottom: 28px;
  padding-right: 0;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .recruit6 .accordion_panel p {
    margin-top: -4px;
    margin-bottom: 20px;
  }
}

.recruit_link {
  margin-bottom: 192px;
}
@media screen and (max-width: 767.9px) {
  .recruit_link {
    margin-bottom: 104px;
  }
}
.recruit_link .recruit_link_item:first-child {
  margin-bottom: 48px;
}
.recruit_link .recruit_link_item {
  padding-top: 68px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .recruit_link .recruit_link_item {
    padding-top: 35px;
  }
}
.recruit_link .recruit_link_item .bg_text {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 7.2rem;
  font-weight: 800;
  line-height: 1.1944444444;
  letter-spacing: 0;
  color: #fff;
  z-index: -1;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .recruit_link .recruit_link_item .bg_text {
    font-size: 3.7rem;
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    line-height: 1.1891891892;
  }
}
.recruit_link .recruit_link_item .recruit_link_item_inner {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 61px 61px 61px 82px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .recruit_link .recruit_link_item .recruit_link_item_inner {
    padding: 41px 49px 40px;
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit_link .recruit_link_item .recruit_link_item_inner p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .recruit_link .recruit_link_item .recruit_link_item_inner p {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
@media (min-width: 768px) {
  .recruit_link .recruit_link_item .recruit_link_item_inner .more_btn {
    width: 280px;
    margin: 0;
    padding: 14px 40px 15px;
  }
  .recruit_link .recruit_link_item .recruit_link_item_inner .more_btn .text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.fixed_btn {
  position: fixed;
  z-index: 10;
  bottom: 56px;
  right: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .fixed_btn {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 32px;
    right: auto;
  }
}
.fixed_btn .more_btn {
  background: #366eb4;
  color: #fff;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 7px 17px 6px 17px;
  min-width: 216px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .fixed_btn .more_btn {
    min-width: 164px;
    padding: 5px 0px 4px 14px;
    gap: 6px;
  }
}
.fixed_btn .more_btn img {
  width: 24px;
  height: 24px;
  margin-bottom: 1px;
}
.fixed_btn .more_btn .arrow {
  background: #fff;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .fixed_btn .more_btn .arrow {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .fixed_btn .more_btn .text {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=common.css.map */