@charset "UTF-8";
/* https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", Helvetica, sans-serif !important;
  color: #01294d;
}
body.noScroll {
  overflow: hidden;
}

* {
  min-height: 0;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

main {
  display: block;
  display: flex;
}

.main__inner {
  width: max(880px, 100% - 400px);
}
@media screen and (max-width: 767px) {
  .main__inner {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .contents {
    width: calc(var(--vw) - 400px);
  }
}
@media screen and (max-width: 767px) {
  .contents {
    width: 100%;
  }
}

ul li {
  list-style: none;
}

.floatingButton {
  position: fixed;
  bottom: 0;
  z-index: 15;
  width: 100%;
  visibility: hidden;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.4s;
}
.floatingButton.isVisible {
  visibility: visible;
  opacity: 1;
}
.floatingButton__inner {
  display: flex;
  justify-content: center;
  padding: 16px 36px;
}

.onlyPc {
  display: block;
}
.onlyPc.--inline {
  display: inline;
}
.onlyPc.--flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .onlyPc {
    display: none;
  }
  .onlyPc.--inline {
    display: none;
  }
  .onlyPc.--flex {
    display: none;
  }
}

.onlySp {
  display: none;
}
@media screen and (max-width: 767px) {
  .onlySp {
    display: block;
  }
  .onlySp.--inline {
    display: inline;
  }
  .onlySp.--flex {
    display: flex;
  }
}

@keyframes fade-out {
  0% {
    background-color: #c8e6f9;
  }
  100% {
    background-color: #fff;
  }
}
.heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading__textWrapper {
  margin: 0 auto;
}
.heading__text {
  font-size: 32px;
  line-height: 1.25;
  color: #01294d;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .heading__text {
    font-size: 24px;
  }
}
.heading__text--small {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .heading__text--small {
    font-size: 20px;
  }
}
.heading__text--occupation {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .heading__text--occupation {
    margin-top: 0;
  }
}
.heading__textEmphasis {
  font-size: 50px;
  line-height: 1.5;
  background: linear-gradient(105deg, #2c83d0 0%, #0065bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .heading__textEmphasis {
    margin-top: 12px;
    font-size: 32px;
  }
}
.heading__separate {
  position: relative;
  width: 62px;
  height: 3px;
  margin-top: 16px;
  background: #bfbfbf;
}
.heading__separate::after {
  position: absolute;
  top: 0;
  left: 25%;
  width: 32px;
  height: 3px;
  content: "";
  background: #3980cb;
}
.heading__note {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}
.heading__note--occupation {
  align-items: center;
}
.heading__noteText {
  display: flex;
  align-items: flex-end;
  margin-left: 21px;
  font-weight: 600;
  color: #01294d;
}
@media screen and (max-width: 767px) {
  .heading__noteText {
    font-size: 14px;
  }
}
.heading__noteText--large {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .heading__noteText--large {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }
}
.heading__noteDecoration--reverse {
  margin-left: 13px;
  transform: scaleX(-1);
}
.heading__noteEmphasis {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 810px) {
  .heading__noteEmphasis {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .heading__noteEmphasis {
    font-size: 16px;
  }
}
.heading__noteEmphasis--blue {
  color: #3980cb;
}
.heading__noteEmphasis--deepBlue {
  color: #1b75c3;
}
.heading__noteEmphasis--large {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .heading__noteEmphasis--large {
    font-size: 20px;
  }
}
.heading__noteEmphasisSuffix {
  color: #3980cb;
}
@media screen and (max-width: 767px) {
  .heading__noteEmphasisSuffix {
    font-size: 14px;
  }
}
.heading__noteSuffix {
  align-self: center;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .heading__noteSuffix {
    align-self: start;
  }
}
.heading__subText {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #3980cb;
}
@media screen and (max-width: 767px) {
  .heading__subText {
    font-size: 16px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.16);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 57px;
    padding: 0 16px;
  }
}
.header__logoImage {
  transition: all 0.2s;
}
@media screen and (max-width: 1280px) {
  .header__logoImage {
    width: 200px;
    height: 23px;
  }
}
.header__menuWrapper {
  display: flex;
  align-items: center;
}
.header__menu {
  display: flex;
  gap: 24px;
  margin-right: 32px;
  transition: all 0.2s;
}
@media screen and (max-width: 1400px) {
  .header__menu {
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu {
    display: none;
  }
}
.header__menuItemLink {
  font-size: 14px;
  font-weight: bold;
  color: #01294d;
  text-decoration: none;
  transition: all 0.2s;
}
.header__menuItemLink:hover {
  color: #3980cb;
}
@media screen and (max-width: 1400px) {
  .header__menuItemLink {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menuItemLink {
    font-size: 10px;
  }
}
.header__separate {
  width: 1px;
  height: 50px;
  background: #e6e6e6;
}
.header__guidance {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__guidance {
    display: none;
  }
}
.header__guidanceInner {
  display: flex;
  justify-content: center;
  width: 400px;
}
.header__guidanceText {
  margin-left: 12px;
  font-weight: bold;
  line-height: 1.25;
  color: #01294d;
  letter-spacing: 2px;
}
.header__guidanceEmphasisText {
  color: #3980cb;
  text-decoration: none;
}
.header__hamburgerButton {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburgerButton {
    position: relative;
    display: block;
    width: 32px;
    height: 22px;
    cursor: pointer;
    background: #fff;
    border: none;
  }
}
.header__hamburgerLine {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #3980cb;
  transition: all 0.2s;
}
.header__hamburgerLine:nth-child(1) {
  top: 0;
}
.header__hamburgerLine:nth-child(2) {
  top: 10px;
}
.header__hamburgerLine:nth-child(3) {
  bottom: 0;
}
.header__hamburgerLine.active:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__hamburgerLine.active:nth-child(2) {
  opacity: 0;
}
.header__hamburgerLine.active:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.spNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  margin-top: 56px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.spNav.active {
  visibility: visible;
  opacity: 1;
}
.spNav__inner {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: 32px;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: cover;
  -webkit-backdrop-filter: blur(3px) opacity(80%);
  backdrop-filter: blur(3px) opacity(80%);
}
.spNav__list {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}
.spNav__listItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.spNav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #434e54;
  text-decoration: none;
}
.spNav__link::before {
  display: block;
  width: 12px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: #3980cb;
}
.spNav__rightArrow {
  width: 20px;
  height: 5px;
}
.spNav__buttonWrapper {
  margin-top: 36px;
}

.mv {
  position: relative;
  height: 460px;
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/mv-background.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: all 0.3s;
}
@media screen and (max-width: 1400px) {
  .mv {
    background-position: 52% 50%;
  }
}
@media screen and (max-width: 1200px) {
  .mv {
    background-position: 55% 50%;
  }
}
@media screen and (max-width: 1100px) {
  .mv {
    width: calc(var(--vw) - 400px);
    height: auto;
    background: none;
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    width: 100vw;
  }
}
.mv__bgImage {
  width: 100%;
}
.mv__bgImageWrapper{
  display: none;
}
@media screen and (max-width: 1100px) {
  .mv__bgImageWrapper {
    display:block;
  }
}
.mv__textImageWrapper {
  max-width: 1040px;   
  padding-top: 46px;
  padding-left: 170px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .mv__textImageWrapper {      
    padding-top: 60px;
    padding-left: 74px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__textImageWrapper {        
    padding-top: 70px;
    padding-left: 36px;
  }
}
@media screen and (max-width: 1100px) {
  .mv__textImageWrapper {
    display: none;
  }
}
.mv__textImage {
  transition: all 0.3s;
}
@media screen and (max-width: 1400px) {
  .mv__textImage {
    width: 340px;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  .mv__textImage {
    width: 300px;
  }
}
.mv__ctaButton {
  position: absolute;
  bottom: 12%;
  left: 50%;
  box-shadow: 0 0 8px rgba(18, 94, 183, 0.24);
  transform: translateX(-50%);
}

.speechBalloon {
  position: relative;
}
.speechBalloon__text {
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.trouble {
  padding: 0 15px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding: 0;
    margin-top: 48px;
  }
}
.trouble__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trouble__mainMessage {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .trouble__mainMessage {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
  }
}
.trouble__mainMessageText {
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  color: #01294d;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .trouble__mainMessageText {
    font-size: clamp(20px, 2.6041666667vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .trouble__mainMessageText {
    display: block;
    font-size: 18px;
    line-height: 1.5;
  }
}
.trouble__mainMessageOccupation {
  display: inline-block;
  padding: 12px 18px;
  margin: 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background-color: #3980cb;
  border-radius: 6px;
}
@media screen and (max-width: 1020px) {
  .trouble__mainMessageOccupation {
    font-size: clamp(20px, 2.6041666667vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .trouble__mainMessageOccupation {
    padding: 10px 16px;
    margin-top: 4px;
    font-size: 21px;
  }
}
.trouble__mainMessageEmphasis {
  margin-top: 16px;
  font-size: 26px;
  font-weight: 600;
  color: #3980cb;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .trouble__mainMessageEmphasis {
    font-size: clamp(20px, 2.6041666667vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .trouble__mainMessageEmphasis {
    font-size: 18px;
  }
}
.trouble__listWrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .trouble__listWrapper {
    width: 100%;
    padding: 0 36px 280px;
  }
}
.trouble__manImage {
  position: absolute;
  top: 8%;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .trouble__manImage {
    top: auto;
    bottom: 4%;
    left: 50%;
    width: 105px;
    height: 275px;
  }
}
.trouble__list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: clamp(110px, 14.3229166667vw, 180px);
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .trouble__list {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 12px 8px 0;
    margin-top: 24px;
    background-color: #faf8f8;
  }
}
@media screen and (max-width: 767px) {
  .trouble__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0 14px;
    border-bottom: 2px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .trouble__item:last-child {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__itemImage {
    width: 160px;
    height: 110px;
  }
}
.trouble__itemContent {
  gap: 8px;
  width: 100%;
  padding-left: clamp(18px, 2.34375vw, 32px);
  font-weight: 600;
  color: #01294d;
}
@media screen and (max-width: 767px) {
  .trouble__itemContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 226px;
    margin-left: 0;
  }
}
.trouble__itemCheckMark {
  margin-top: 4px;
}
.trouble__itemHeading {
  margin-bottom: 8px;
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: #0b62bf;
}
@media screen and (max-width: 767px) {
  .trouble__itemHeading {
    margin-bottom: 0;
    font-size: 18px;
    color: #1b75c3;
  }
}
.trouble__itemDetails {
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.390625vw, 6px);
}
@media screen and (max-width: 767px) {
  .trouble__itemDetails {
    width: 100%;
  }
}
.trouble__itemDetail {
  display: flex;
  gap: 6px;
}
.trouble__itemDetailText {
  align-self: flex-end;
  font-size: clamp(12px, 1.5625vw, 14px);
  font-weight: 600;
  line-height: 1.5;
}
.trouble__itemIcon {
  width: clamp(18px, 2.34375vw, 28px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .trouble__itemIcon {
    width: 28px;
  }
}
.trouble__itemCheckIcon {
  width: clamp(18px, 2.34375vw, 24px);
  height: clamp(18px, 2.34375vw, 24px);
}
.trouble__downArrow {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .trouble__downArrow {
    margin-top: 12px;
  }
}
.trouble__supportImage {
  position: absolute;
  top: -55%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .trouble__supportImage {
    top: -80%;
  }
}
.trouble__support {
  position: relative;
  width: 100%;
  overflow: visible;
}
.trouble__backgroundWrapper {
  width: 100%;
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .trouble__backgroundWrapper {
    padding-top: 160px;
  }
}
.trouble__background {
  position: relative;
  height: 200px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: -100px;
  margin-left: -100px;
  background: #f2f8fc;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.trouble__background::before {
  position: absolute;
  top: 20px;
  width: 100%;
  height: 200px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: -100px;
  margin-left: -100px;
  content: "";
  background: #f2f8fa;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
@media screen and (max-width: 767px) {
  .trouble__background {
    height: 180px;
  }
}

.advantages__wrapper {
  position: relative;
  padding: 0 15px;
  margin-top: 64px;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .advantages__wrapper {
    padding: 0;
    margin-top: 40px;
  }
}
.advantages__circle {
  position: absolute;
  bottom: 0;
  left: -24%;
  z-index: 5;
  width: 833px;
  height: 833px;
}
@media screen and (max-width: 767px) {
  .advantages__circle {
    width: 430px;
    height: 430px;
  }
}
.advantages__listWrapper {
  position: relative;
  max-width: 880px;
  margin: 32px auto 0;
}
.advantages__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 0 20px;
  }
}
.advantages__note {
  position: relative;
  z-index: 10;
  max-width: 428px;
  margin: 12px 0 0 auto;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .advantages__note {
    padding: 0 20px;
    margin-top: 8px;
  }
}
.advantages__inductionWrapper {
  height: 44px;
  padding: 0 15px;
  background-color: #f2f8fa;
}
@media screen and (max-width: 767px) {
  .advantages__inductionWrapper {
    height: 40px;
  }
}
.advantages__induction {
  position: relative;
  bottom: -100%;
  margin: 120px auto 0;
}
.advantages__induction--sp {
  margin-top: 120px;
}
.advantages__inductionBottomSpace {
  height: 30px;
  background-color: #f2f8fa;
}

.advantage {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  max-width: 428px;
  padding: 32px;
  background-color: #f2f8fa;
  border-radius: 8px;
}
.advantage::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 120px;
  height: 4px;
  content: "";
  background-color: #1b75c3;
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .advantage {
    display: list-item;
    max-width: initial;
    padding: 32px 16px;
  }
}
.advantage__point {
  font-family: newnord, sans-serif;
  color: #1b75c3;
  text-align: center;
  text-transform: uppercase;
}
.advantage__title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .advantage__title {
    margin-top: 16px;
    font-size: 20px;
  }
}
.advantage__detail {
  font-size: 14px;
  line-height: 1.75;
  color: #434e54;
}
@media screen and (max-width: 767px) {
  .advantage__detail {
    margin-top: 8px;
  }
}
.advantage__detailEmphasis {
  font-size: 14px;
  font-weight: 600;
  color: #de4f00;
}
.advantage__image {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 20px auto 0;
}

.occupation {
  padding: 0 15px 80px;
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/bg-grid.png");
}
@media screen and (max-width: 767px) {
  .occupation {
    padding: 0 0 80px;
  }
}
.occupation__headingWrapper {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .occupation__headingWrapper {
    padding-top: 56px;
  }
}
.occupation__wrapper {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .occupation__wrapper {
    width: 100vw;
    padding: 0 20px;
  }
}
.occupation__tabList {
  display: flex;
  gap: 8px;
  height: 48px;
  margin-top: 40px;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 1280px) {
  .occupation__tabList {
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  .occupation__tabList {
    gap: 4px;
  }
}
.occupation__tabArrow {
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 20px;
  height: 47px;
  visibility: hidden;
  background-color: #f4f5f6;
  border: 1px solid #dde0e4;
  border-bottom: none;
  opacity: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .occupation__tabArrow {
    height: 46px;
  }
}
@media screen and (max-width: 767px) {
  .occupation__tabArrow.isActive {
    visibility: visible;
    opacity: 1;
  }
}
.occupation__tabArrow--prev {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .occupation__tabArrow--prev {
    left: 20px;
  }
}
.occupation__tabArrow--prev::before {
  position: absolute;
  top: 45%;
  left: 50%;
  display: inline-block;
  width: 2px;
  height: 10px;
  content: "";
  background-color: #3980cb;
  border-radius: 4px 4px 0 0;
  transform: rotate(-45deg) translateX(-50%);
}
.occupation__tabArrow--prev::after {
  position: absolute;
  top: 32%;
  left: 45%;
  display: inline-block;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #3980cb;
  border-radius: 0 4px 4px 0;
  transform: rotate(-45deg) translateX(-50%);
}
.occupation__tabArrow--next {
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .occupation__tabArrow--next {
    right: 20px;
  }
}
.occupation__tabArrow--next::before {
  position: absolute;
  top: 45%;
  left: 50%;
  display: inline-block;
  width: 2px;
  height: 10px;
  content: "";
  background-color: #3980cb;
  border-radius: 0 0 4px 4px;
  transform: rotate(45deg) translateX(-50%);
}
.occupation__tabArrow--next::after {
  position: absolute;
  top: 46%;
  left: 45%;
  display: inline-block;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #3980cb;
  border-radius: 4px 0 0 4px;
  transform: rotate(45deg) translateX(-50%);
}
.occupation__tabItem {
  width: calc((100% - 32px) / 5);
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .occupation__tabItem {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .occupation__tabItem {
    border: 1px solid #dde0e4;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .occupation__tabItem.isZoom {
    width: calc((100% - 32px) / 5);
  }
}
@media screen and (max-width: 1020px) {
  .occupation__tabItem.isZoom {
    width: auto;
  }
}
.occupation__tabButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 100%;
  color: #01294d;
  background-color: #fff;
  border: none;
  border-radius: 4px 4px 0 0;
  transition: width 0.2s;
}
@media screen and (max-width: 1020px) {
  .occupation__tabButton {
    width: 125px;
    font-size: 13px;
  }
}
.occupation__tabButton.isActive {
  padding-top: 2px;
  margin-bottom: -10px;
  font-weight: bold;
  color: #3980cb;
  background-color: #f2f8fa;
  border-bottom: 2px solid #3980cb;
}
@media screen and (max-width: 767px) {
  .occupation__tabButton.isActive {
    border: 1px solid #3980cb;
  }
}
.occupation__tabButton.isZoom {
  width: 100%;
  font-size: 13px;
}
@media screen and (max-width: 1020px) {
  .occupation__tabButton.isZoom {
    width: 125px;
  }
}
.occupation__tabButton:hover {
  opacity: 0.4;
}
.occupation__tabButton:hover.isActive {
  opacity: 1;
}
.occupation__occupationContainer {
  padding: 32px 24px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-top: none;
  border-radius: 0 0 6px 6px;
}
@media screen and (max-width: 767px) {
  .occupation__occupationContainer {
    padding: 18px 16px;
  }
}
.occupation__occupationItem {
  display: none;
}
.occupation__occupationItem.isActive {
  display: block;
}
.occupation__occupationName {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .occupation__occupationName {
    gap: 8px;
  }
}
.occupation__occupationIcon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 90px;
  background-color: #3980cb;
  border-radius: 6px 0 0;
}
@media screen and (max-width: 767px) {
  .occupation__occupationIcon {
    width: 56px;
    height: 56px;
  }
}
.occupation__occupationNameText {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #3980cb;
}
@media screen and (max-width: 767px) {
  .occupation__occupationNameText {
    display: block;
    display: flex;
    align-items: center;
    height: 56px;
    padding-top: 0;
    padding-left: 16px;
  }
}
.occupation__occupationNameHeading {
  font-size: 20px;
  font-weight: 600;
}
.occupation__occupationDetail {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .occupation__occupationDetail {
    margin-top: 16px;
    line-height: 1.5;
  }
}
.occupation__categoryListWrapper {
  margin: 32px auto 0;
}
.occupation__categoryListWrapper--others {
  max-width: 721px;
}
@media screen and (max-width: 767px) {
  .occupation__categoryListWrapper {
    margin-top: 20px;
  }
}
.occupation__categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .occupation__categoryList {
    justify-content: flex-start;
  }
}
.occupation__categoryItem {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  background-color: #f2f8fa;
  border: 1px solid #d6eaf0;
  border-radius: 4px;
}
.occupation__categoryItem--expert {
  padding: 8px 12px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .occupation__categoryItem {
    padding: 8px 12px;
    font-size: 11px;
  }
}
.occupation__exampleWrapper {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  border: 1px solid #dde0e4;
  border-radius: 6px;
}
@media screen and (max-width: 1020px) {
  .occupation__exampleWrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.occupation__exampleImage {
  flex-shrink: 0;
  align-self: stretch;
  width: 300px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage {
    width: 100%;
    aspect-ratio: 303/189;
  }
}
.occupation__exampleImage--sales {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/sales-image.png");
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage--sales {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/sales-image-sp.png");
  }
}
.occupation__exampleImage--expert {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/expert-image.png");
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage--expert {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/expert-image-sp.png");
  }
}
.occupation__exampleImage--foreignLanguage {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/foreign-language-image.png");
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage--foreignLanguage {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/foreign-language-image-sp.png");
  }
}
.occupation__exampleImage--medical {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/medical-image.png");
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage--medical {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/medical-image-sp.png");
  }
}
.occupation__exampleImage--others {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/others-image.png");
}
@media screen and (max-width: 1020px) {
  .occupation__exampleImage--others {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/others-image-sp.png");
  }
}
.occupation__examples {
  width: 100%;
  padding-top: 27px;
  padding-right: 32px;
}
@media screen and (max-width: 1020px) {
  .occupation__examples {
    padding: 0;
  }
}
.occupation__exampleItem {
  padding-bottom: 20px;
  border-bottom: 1px solid #dde0e4;
}
.occupation__exampleItem:last-child {
  border: none;
}
.occupation__exampleItem:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 1020px) {
  .occupation__exampleItem {
    margin: 0 22px;
  }
}
.occupation__jobTitle {
  font-weight: 600;
}
.occupation__jobExamples {
  margin-top: 20px;
}
.occupation__jobExample {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.occupation__jobExample:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .occupation__jobExample {
    flex-direction: column;
  }
}
.occupation__jobName {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #3980cb;
}
.occupation__jobDetail {
  font-size: 13px;
  line-height: 1.5;
}

.area {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/bg-grid.png");
}
@media screen and (max-width: 767px) {
  .area {
    padding-bottom: 56px;
  }
}
.area__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  margin-top: 24px;
  font-weight: 300;
  color: #01294d;
}
@media screen and (max-width: 767px) {
  .area__message {
    padding: 0 20px;
    margin-top: 24px;
    text-align: left;
  }
}
.area__mainMessage {
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .area__mainMessage {
    padding: 0 5px;
  }
}
.area__subMessage {
  margin-top: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .area__subMessage {
    display: flex;
    gap: 5px;
    margin-top: 6px;
  }
}
.area__subMessagePrefix {
  font-size: 12px;
  line-height: 1.5;
}
.area__subMessageSentence {
  font-size: 12px;
  line-height: 1.5;
}
.area__mapImage {
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .area__mapImage {
    max-width: 336px;
    margin-top: 0;
  }
}

.contactFlow {
  padding-top: 86px;
  padding-bottom: 80px;
  background-color: #f2f8fa;
}
@media screen and (max-width: 767px) {
  .contactFlow {
    padding-top: 56px;
  }
}
.contactFlow .heading {
  padding: 0 15px;
}
.contactFlow__note {
  margin-top: 32px;
  font-weight: 600;
  color: #01294d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contactFlow__note {
    font-size: 14px;
  }
}
.contactFlow__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 910px;
  padding: 0 15px;
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .contactFlow__steps {
    gap: 34px;
    padding: 0 20px;
    margin-top: 32px;
  }
}
.contactFlow__arrowWrapper {
  position: relative;
  height: 12px;
  margin-top: 56px;
  background-color: #f2f8fa;
}
.contactFlow__arrow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.step__imageWrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: #d6e9f2;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 767px) {
  .step__imageWrapper {
    flex-direction: row;
    height: 50px;
    border-radius: 8px 8px 0 0;
  }
}
.step__image--1 {
  width: 42px;
  height: 29px;
}
@media screen and (max-width: 767px) {
  .step__image--1 {
    width: 27px;
    height: 20px;
  }
}
.step__image--2 {
  width: 39px;
  height: 31px;
}
@media screen and (max-width: 767px) {
  .step__image--2 {
    width: 26px;
    height: 21px;
  }
}
.step__image--3 {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .step__image--3 {
    width: 24px;
    height: 24px;
  }
}
.step__image--4 {
  width: 46px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .step__image--4 {
    width: 31px;
    height: 23px;
  }
}
.step__contents {
  padding: 32px 55px;
  background-color: #fbfdfd;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 767px) {
  .step__contents {
    padding: 24px 24px 20px;
    border-radius: 0 0 8px 8px;
  }
}
.step__numberWrapper {
  margin-bottom: 12px;
  font-family: newnord, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  color: #3980cb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .step__numberWrapper {
    margin-right: 16px;
    margin-bottom: 0;
    font-size: 24px;
  }
}
.step__numberPrefix {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .step__numberPrefix {
    font-size: inherit;
  }
}
.step__number {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .step__number {
    font-size: inherit;
  }
}
.step__title {
  font-size: 20px;
  font-weight: bold;
  color: #01294d;
}
@media screen and (max-width: 767px) {
  .step__title {
    line-height: 1.25;
    word-break: keep-all;
  }
}
.step__detailWrapper {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .step__detailWrapper {
    padding-bottom: 16px;
    margin-top: 8px;
    border-bottom: 1px solid #91b9e2;
  }
}
.step__detail {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #01294d;
}
.step__detail::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  background-color: #3980cb;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .step__detail {
    display: flex;
    margin-top: 8px;
    line-height: 1.5;
  }
  .step__detail:first-child {
    margin-top: 0;
  }
  .step__detail::before {
    display: block;
    flex-shrink: 0;
    margin-top: 10px;
  }
}
.step__point {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #91b9e2;
}
@media screen and (max-width: 767px) {
  .step__point {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .step__pointImage {
    width: 240px;
    height: 162px;
  }
}
.step__pointTitle {
  font-weight: 600;
  line-height: 1.5;
  color: #d95b23;
}
.step__pointDetail {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.step__pointDetailNote {
  margin-top: 6px;
  font-size: 12px;
}
.step__arrow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  z-index: 10;
  width: 40px;
  height: 16px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #91b9e2;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .step__arrow {
    bottom: -18px;
    width: 48px;
    height: 18px;
    background-color: #3980cb;
  }
}

.faq__inner {
  padding: 80px 15px;
  background: #f4f5f6;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding: 56px 0;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 724px;
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .faq__list {
    max-width: auto;
    padding: 0 20px;
  }
}
.faq__item {
  padding: 24px 32px;
  background: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 24px 20px;
  }
}
.faq__faqMark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.faq__faqMark--question {
  background-color: #e9f1f9;
}
.faq__faqMark--answer {
  background-color: #fcede6;
}
.faq__itemRow {
  display: flex;
  gap: 16px;
}
.faq__itemRow--answer {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .faq__itemRow {
    gap: 8px;
  }
}
.faq__itemText {
  font-weight: 600;
  line-height: 1.5;
}
.faq__itemText--answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}
.faq__induction {
  padding: 70px 15px 56px;
}
@media screen and (max-width: 767px) {
  .faq__induction.onlyPc {
    display: none;
  }
}
.faq__induction.onlySp {
  display: none;
}
@media screen and (max-width: 767px) {
  .faq__induction.onlySp {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .faq__induction {
    padding: 40px 0 164px;
  }
}

.footer {
  margin-right: 400px;
  border-top: 5px solid #65b6e8;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-right: 0;
  }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  padding: 20px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: auto;
    padding: 10px 0 100px 10px;
  }
}
.footer__company {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1020px) {
  .footer__company {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__company {
    flex-direction: row;
    gap: 20px;
  }
}
.footer__copyright {
  padding-top: 10px;
  font-size: 11px;
}
.footer__privacy {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1020px) {
  .footer__privacy {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    display: none;
  }
}
.footer__links {
  font-size: 11px;
}
.footer__link {
  font-size: 11px;
  color: #ad95e6;
  text-decoration: none;
}

.carousel {
  position: relative;
  width: calc(100vw - 400px);
  margin-top: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .carousel {
    width: 100vw;
  }
}
.carousel__slideContainer {
  height: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(42, 88, 150, 0.24);
}
.carousel__slideContainer.swiper-slide-active {
  z-index: 10;
}
.carousel__slideContainer:not(.swiper-slide-active) {
  opacity: 0.4;
  transform: scale(0.9);
}
.carousel__slide {
  height: 100%;
  padding: 32px 48px;
  color: #01294d;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .carousel__slide {
    padding: 24px 20px;
  }
}
.carousel__companyInfo {
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .carousel__companyInfo {
    font-size: 14px;
  }
}
.carousel__companyName {
  font-size: inherit;
  font-weight: 600;
  color: #1b75c3;
}
@media screen and (max-width: 767px) {
  .carousel__companyName {
    font-size: 16px;
  }
}
.carousel__companyDetail {
  font-size: inherit;
}
@media screen and (max-width: 767px) {
  .carousel__companyDetail {
    display: block;
    font-size: 12px;
  }
}
.carousel__title {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .carousel__title {
    margin-top: 12px;
    font-size: 20px;
  }
}
.carousel__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .carousel__examples {
    gap: 4px;
    margin-top: 24px;
  }
}
.carousel__exampleArrow {
  width: 78px;
  height: 24px;
  padding: 6px 10px;
  font-size: 12px;
  color: #fff;
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/right-arrow.png");
  background-position: center;
}
@media screen and (max-width: 767px) {
  .carousel__exampleArrow {
    width: 60px;
    height: 24px;
    padding: 6px 5px;
    font-size: 11px;
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/right-arrow-sp.png");
  }
}
.carousel__exampleItem {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b7b7b7;
  background-color: #f4f5f6;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.carousel__exampleItem--featured {
  color: #3980cb;
  background-color: #f2f8fa;
  border-color: #d0e2e8;
}
@media screen and (max-width: 767px) {
  .carousel__exampleItem--featured {
    color: #1b75c3;
  }
}
.carousel__contents {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 1280px) {
  .carousel__contents {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .carousel__contents {
    gap: 0;
    margin-top: 16px;
  }
}
.carousel__exampleDetail {
  padding-top: 11px;
}
@media screen and (max-width: 767px) {
  .carousel__exampleDetail {
    padding-top: 0;
    margin-top: 24px;
  }
}
.carousel__exampleDivision {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.carousel__exampleDivisionNote {
  margin-left: 40px;
  font-size: 12px;
  font-weight: 600;
}
.carousel__examplePoint {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  margin-top: 14px;
  border-bottom: 1px solid #dde0e4;
}
.carousel__examplePoint:last-child {
  padding-top: 8px;
  padding-bottom: 0;
  margin-top: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .carousel__examplePoint {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding-bottom: 10px;
    margin-top: 12px;
    border: none;
  }
  .carousel__examplePoint:last-child {
    padding-top: 4px;
  }
}
.carousel__examplePointNumber {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #3980cb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .carousel__examplePointNumber {
    color: #1b75c3;
    text-align: left;
  }
}
.carousel__examplePointText {
  font-size: 14px;
  line-height: 1.5;
}
.carousel__image {
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .carousel__image {
    width: 100%;
    height: auto;
  }
}
.carousel__slideInner {
  display: flex;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .carousel__slideInner {
    flex-direction: column;
    gap: 16px;
  }
}
.carousel__staffImageWrapper {
  position: relative;
  flex-shrink: 0;
  width: 244px;
  min-height: 272px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.carousel__staffImageWrapper--1 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image01.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--1 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image01-sp.png");
  }
}
.carousel__staffImageWrapper--2 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image02.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--2 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image02-sp.png");
  }
}
.carousel__staffImageWrapper--3 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image03.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--3 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image03-sp.png");
  }
}
.carousel__staffImageWrapper--4 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image04.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--4 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image04-sp.png");
  }
}
.carousel__staffImageWrapper--5 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image05.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--5 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image05-sp.png");
  }
}
.carousel__staffImageWrapper--6 {
  background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image06.png");
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper--6 {
    background-image: url("/sol/contents/client/lp/officework_01/assets/images/staff-image06-sp.png");
  }
}
@media screen and (max-width: 1280px) {
  .carousel__staffImageWrapper {
    width: auto;
    aspect-ratio: 1/1.2;
  }
}
@media screen and (max-width: 767px) {
  .carousel__staffImageWrapper {
    min-height: auto;
    aspect-ratio: 289/195;
  }
}
.carousel__staffImageBg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 61px;
  background: linear-gradient(rgba(33, 40, 54, 0) 0%, #212836 100%);
  opacity: 0.8;
}
.carousel__staffNameWrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  height: 50px;
  color: #f7f7f7;
}
.carousel__staffJapaneseName {
  display: inline-block;
  padding-left: 20px;
  font-weight: 600;
  text-wrap: nowrap;
  opacity: 1;
}
.carousel__staffEnglishName {
  display: inline-block;
  padding-top: 3px;
  font-family: newnord, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  text-wrap: nowrap;
}
.carousel__staffOccupationWrapper {
  display: flex;
}
.carousel__staffOccupation {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid #3980cb;
  border-radius: 4px;
}
.carousel__staffOccupationName {
  font-size: 12px;
  font-weight: 600;
  color: #3980cb;
}
.carousel__staffInfoHeading {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .carousel__staffInfoHeading {
    margin-top: 4px;
  }
}
.carousel__staffInfoDetail {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .carousel__staffInfoDetail {
    margin-top: 8px;
  }
}
.carousel__slideButton {
  top: 45%;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #fff;
  border: 1px solid #3980cb;
  border-radius: 50%;
  transition: background 0.3s;
}
.carousel__slideButton:hover {
  background: #3980cb;
}
.carousel__slideButton::after {
  display: none;
}
.carousel__slideButtonInner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.carousel__slideButtonInner::before, .carousel__slideButtonInner::after {
  position: absolute;
  top: 50%;
  left: 35%;
  display: block;
  width: 12px;
  height: 2px;
  content: "";
  background: #3980cb;
  border-radius: 100px;
  transition: background 0.3s;
  transform: rotate(35deg);
  transform-origin: 100% 50%;
}
.carousel__slideButtonInner::after {
  transform: rotate(-35deg);
}
.carousel__slideButtonInner--prev {
  transform: scaleX(-1);
}
.carousel__slideButtonInner:hover::before, .carousel__slideButtonInner:hover::after {
  background: #fff;
}
.carousel__pagination {
  position: static;
  margin-top: 16px;
}
.carousel__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  margin: 0 2px !important;
  background: #dde0e4;
  border-radius: 0;
  opacity: 1;
}
.carousel__pagination .swiper-pagination-bullet-active {
  background: #1b75c3;
}

.induction {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(32, 81, 110, 0.1);
}
.induction--introduction, .induction--contact-flow {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 620px;
  transform: translateX(-50%);
}
.induction--faq {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f2f8fa;
  box-shadow: none;
}
.induction__image {
  position: absolute;
  bottom: 0;
  left: 4%;
}
@media screen and (max-width: 810px) {
  .induction__image {
    left: 0;
  }
}
.induction__image--introduction, .induction__image--contact-flow {
  width: 100%;
  max-width: clamp(100px, 13.0208333333vw, 147px);
  height: auto;
}
.induction__image--faq {
  left: 1%;
  max-width: 228px;
  height: auto;
}
@media screen and (max-width: 1020px) {
  .induction__image--faq {
    max-width: clamp(120px, 15.625vw, 228px);
  }
}
@media screen and (max-width: 810px) {
  .induction__image--faq {
    left: 0;
    max-width: clamp(100px, 13.0208333333vw, 228px);
  }
}
.induction__message {
  position: relative;
  left: 27%;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: #01294d;
  text-align: left;
}
_::-webkit-full-page-media,
_:future, :root .induction__message.isZoom {
  font-size: clamp(8px, 1.0416666667vw, 20px);
}

@media screen and (max-width: 810px) {
  .induction__message {
    left: 25%;
  }
}
.induction__messageEmphasis {
  font-size: clamp(12px, 1.5625vw, 20px);
  color: #3980cb;
}
_::-webkit-full-page-media,
_:future, :root .induction__messageEmphasis.isZoom {
  font-size: clamp(8px, 1.0416666667vw, 20px);
}

.induction__message--faq {
  left: 37%;
}
@media screen and (max-width: 1020px) {
  .induction__message--faq {
    left: 30%;
  }
}
@media screen and (max-width: 810px) {
  .induction__message--faq {
    left: 25%;
  }
}
.induction__animation {
  position: absolute;
  top: 50%;
  right: -18%;
  width: clamp(20px, 2.6041666667vw, 32px);
  height: auto;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 810px) {
  .induction__animation {
    right: -16%;
  }
}
@media screen and (max-width: 1020px) {
  .induction__animation--faq {
    right: -16%;
  }
}

.inductionSp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 319px;
  padding: 12px 0;
  background: #fff;
  border: 2px solid #72a8db;
  border-radius: 8px;
}
.inductionSp--introduction, .inductionSp--contact-flow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.inductionSp--faq {
  margin: 0 auto;
  background-color: #f2f8fa;
  border: none;
  box-shadow: none;
}
.inductionSp__message {
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.inductionSp__messageEmphasis {
  color: #3980cb;
}
.inductionSp__image {
  position: absolute;
  bottom: -130%;
}

.ctaButton {
  width: 328px;
  height: 54px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #2c83d0, #0065bd);
  border: none;
  border-radius: 4px;
}
.ctaButton--isInSpNav {
  width: 303px;
}

#fixedForm {
  border: none;
  border-left: solid 1px #dde0e4;
}

#form_officework_01 {
  border: none;
}

.fixedForm {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
  box-sizing: border-box;
  width: 400px;
  height: 100%;
  max-height: 100%;
  padding-top: 74px;
  background-color: #fff;
  border: solid 1px #707070;
  transition: height 0.2s;
}
@media screen and (max-width: 767px) {
  .fixedForm {
    display: none;
  }
}

.fixedForm__content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.fixedForm__iframe {
  width: 100%;
}

.fixedForm__iframe.bgcolor {
  background-color: #c8e6f9;
  animation: fadeOut 1.5s linear forwards;
}

@keyframes fadeOut {
  0% {
    background-color: #c8e6f9;
  }
  100% {
    background-color: #fff;
  }
}
.fixedForm__openButton {
  display: none;
}

.fixedForm__closeButton {
  display: none;
}

.fixedForm--fullHeight {
  height: 100%;
}

.fixedForm--fullHeight .fixedForm__content {
  overflow: scroll;
}

.fixedForm--fullHeight .fixedForm__openButton {
  display: none;
}

.fixedForm--isOpenInSp {
  display: block;
}

@media screen and (width <= 767px) {
  .fixedForm {
    left: 0;
    box-sizing: border-box;
    width: 100vw;
    height: 100%;
    padding-top: 54px;
  }
  .fixedForm__content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fixedForm__openButton {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #057cd0;
    border: 0;
    border-radius: 0;
  }
  .fixedForm__closeButton {
    position: absolute;
    top: 54px;
    right: 0;
    display: block;
    padding: 10px;
    cursor: pointer;
  }
  .fixedForm__closeButtonIcon {
    display: inline-block;
    width: 4px;
    height: 20px;
    padding: 0;
    margin: 0 10px;
    background: #707070;
    transform: rotate(45deg);
  }
  .fixedForm__closeButtonIcon::before {
    position: absolute;
    top: 50%;
    left: -8px;
    display: block;
    width: 20px;
    height: 4px;
    margin-top: -2px;
    content: "";
    background: #707070;
  }
  .header {
    height: 54px;
  }
  .header .logo img {
    height: 24px;
    margin: 15px 0 15px 20px;
  }
  .header .menubtn {
    top: 7px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .header .menubtn .line {
    width: 40px;
    height: 5px;
  }
  .header .menubtn .line::before,
  .header .menubtn .line::after {
    width: 40px;
    height: 5px;
  }
  .header .menubtn .line::before {
    top: -12px;
  }
  .header .menubtn .line::after {
    top: 12px;
  }
  .menunav {
    width: 100%;
  }
  .menunav ul:nth-child(1) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .menunav ul li a {
    padding: 8px 0 8px 1.4em;
    font-size: 16px;
  }
  .badge_no1 {
    position: absolute;
    right: 5vw;
    bottom: 33vw;
    width: 32vw;
  }
  .forSP {
    display: block;
  }
  .forTab {
    display: none;
  }
  .forPC {
    display: none;
  }
}