@charset "UTF-8";
/* タイトル系
---------------------------------------------------------------------------- */
/*------------- .m-ttl-ywrks -------------*/
.m-ttl-ywrks {
  display: flex;
  flex-direction: column;
}

.m-ttl-ywrks-en {
  font-family: "Roboto";
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--col-main);
  padding-left: 3.7rem;
  position: relative;
}
.m-ttl-ywrks-en._wh {
  color: #fff;
}

.m-ttl-ywrks-en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.7rem;
  aspect-ratio: 27/11;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(./../../images/ywrks/icn_ttl_before.svg);
  background-color: currentColor;
}

.m-ttl-ywrks-jp {
  font-size: 5.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.m-ttl-ywrks-jp._wh {
  color: #fff;
}
.m-ttl-ywrks-jp._fzSmall {
  font-size: 4.6rem;
}

@media screen and (max-width: 767px) {
  .m-ttl-ywrks._sp-align-center {
    align-items: center;
  }
  .m-ttl-ywrks-en {
    font-size: 4.2666666667vw;
    padding-left: 9.8666666667vw;
  }
  .m-ttl-ywrks-en::before {
    width: 7.2vw;
  }
  .m-ttl-ywrks-jp,
  .m-ttl-ywrks-jp._fzSmall {
    font-size: 9.6vw;
  }
}
/*------------- .m-ttl-border-left -------------*/
.m-ttl-border-left {
  font-size: 3.6rem;
  line-height: 1.1111111111;
  letter-spacing: 0.06em;
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
.m-ttl-border-left._blue {
  color: #073190;
}

.m-ttl-border-left::before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: linear-gradient(-45deg, #073190 50%, #2E58B7 50%);
  border-radius: 10vmax;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

@media screen and (max-width: 767px) {
  .m-ttl-border-left {
    font-size: 6.4vw;
    line-height: 1.5;
    padding-left: calc(1.0666666667vw + 4vw);
  }
  .m-ttl-border-left::before {
    width: 1.0666666667vw;
    height: 100%;
  }
}
/*------------- .m-ttl-border-bottom -------------*/
.m-ttl-border-bottom {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-bottom: 1.7rem;
  border-bottom: 2px solid #BEBEBE;
  position: relative;
}
.m-ttl-border-bottom::before {
  content: "";
  width: 10rem;
  height: 2px;
  background-color: #073190;
  position: absolute;
  top: 100%;
  left: 0;
}

@media screen and (max-width: 767px) {
  .m-ttl-border-bottom {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    padding-bottom: 4.2666666667vw;
  }
  .m-ttl-border-bottom::before {
    width: 21.3333333333vw;
  }
}
/*------------- .m-ttl-border-left-background -------------*/
.m-ttl-border-left-background {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  background-color: #ECECEC;
  border-left: 0.5rem solid #2E58B7;
  border-radius: 0.4rem;
}

@media screen and (max-width: 767px) {
  .m-ttl-border-left-background {
    font-size: 6.4vw;
    line-height: 1.5;
    padding-block: 2.6666666667vw;
    padding-inline: 4vw;
    border-left-width: 1.3333333333vw;
    border-radius: 1.0666666667vw;
  }
}
/* ボタン系
---------------------------------------------------------------------------- */
/*------------- .m-btn-arrow-right -------------*/
.m-btn-arrow-right {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  padding-block: 1.7rem 1.9rem;
  padding-inline: 3rem 2rem;
  background-color: var(--col-main);
  border: 1px solid var(--col-main);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: color 0.5s ease;
}

.m-btn-arrow-right span {
  position: relative;
}

.m-btn-arrow-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.m-btn-arrow-right::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  rotate: 45deg;
}

.m-btn-arrow-right._wh {
  color: var(--col-btn-blue);
  background-color: #fff;
  border-color: #fff;
}

.m-btn-arrow-right._wh::before {
  background-color: var(--col-btn-blue);
}

@media (any-hover: hover) {
  .m-btn-arrow-right:hover {
    color: var(--col-main);
  }
  .m-btn-arrow-right:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .m-btn-arrow-right._wh:hover {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-arrow-right {
    font-size: 4.2666666667vw;
    padding-block: 4vw 4.5333333333vw;
    padding-inline: 8vw 5.3333333333vw;
    border-radius: 1.3333333333vw;
  }
  .m-btn-arrow-right::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top: 0.5333333333vw solid currentColor;
    border-right: 0.5333333333vw solid currentColor;
  }
}
/*------------- .m-btn-arrow-circle -------------*/
.m-btn-arrow-circle {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  padding-inline: 3rem;
  background-color: var(--col-main);
  border: 1px solid var(--col-main);
  border-radius: 0.5rem;
  position: relative;
  transition: color 0.5s ease;
}

.m-btn-arrow-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.m-btn-arrow-circle ._txt {
  position: relative;
}

.m-btn-arrow-circle ._arrow::before,
.m-btn-arrow-circle ._arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.m-btn-arrow-circle ._arrow::before {
  right: 3.7rem;
  z-index: 1;
  width: 1.2rem;
  aspect-ratio: 1/1;
  border-top: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.m-btn-arrow-circle ._arrow::after {
  right: 2rem;
  width: 4rem;
  aspect-ratio: 1/1;
  border: 0.2rem solid currentColor;
  border-radius: 50%;
}

@media (any-hover: hover) {
  .m-btn-arrow-circle:hover {
    color: var(--col-main);
  }
  .m-btn-arrow-circle:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-arrow-circle {
    font-size: 5.3333333333vw;
    line-height: 1.25;
    height: 26.6666666667vw;
    padding-inline: 5.3333333333vw;
    border-radius: 1.3333333333vw;
  }
  .m-btn-arrow-circle ._arrow::before {
    right: 9.0666666667vw;
    width: 2.1333333333vw;
    border-width: 0.5333333333vw;
  }
  .m-btn-arrow-circle ._arrow::after {
    right: 5.3333333333vw;
    width: 8vw;
  }
}
/* コンポーネント系
---------------------------------------------------------------------------- */
.m-ywrks-mv._recruit .l-breadcrumbs li:not(:last-child)::after {
  border-color: #fff;
}

.m-ywrks-mv._recruit .l-breadcrumbs li a {
  color: #fff;
}

.m-ywrks-mv._recruit .l-breadcrumbs li:last-child a {
  color: #fff;
}

/*------------- .m-ywrks-mv -------------*/
.m-ywrks-mv {
  height: 30rem;
  padding-top: 1.7rem;
  position: relative;
}

.m-ywrks-mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(./../../images/ywrks/bg_child_mv_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.m-ywrks-mv._news::before {
  background-image: url(./../../images/ywrks/bg_child_mv_news_pc.png);
}

.m-ywrks-mv._business::before {
  background-image: url(./../../images/ywrks/bg_child_mv_business_pc.png);
}

.m-ywrks-mv._company::before {
  background-image: url(./../../images/ywrks/bg_child_mv_company_pc.png);
}

.m-ywrks-mv._recruit::before {
  background-image: url(./../../images/ywrks/bg_child_mv_recruit_pc.png);
}

.m-ywrks-mv-inner > :nth-child(1) {
  margin-bottom: 7.2rem;
}

.m-ywrks-mv-ttl-en {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #2E58B7;
  font-family: "Roboto";
  margin-bottom: 1.5rem;
}

.m-ywrks-mv-ttl-en::before {
  content: "";
  width: 2.615rem;
  height: 1.045rem;
  mask-image: url(./../../images/ywrks/icn_ttl_before.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #2E58B7;
}

.m-ywrks-mv._recruit .m-ywrks-mv-ttl-en {
  color: #fff;
}

.m-ywrks-mv._recruit .m-ywrks-mv-ttl-en::before {
  background-color: #fff;
}

.m-ywrks-mv-ttl-jp {
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #1A1A1A;
}

.m-ywrks-mv._recruit .m-ywrks-mv-ttl-jp {
  color: #fff;
}

.m-ywrks-mv-subttl {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .m-ywrks-mv {
    height: 48vw;
    padding-top: 3.7333333333vw;
  }
  .m-ywrks-mv._business,
  .m-ywrks-mv._company,
  .m-ywrks-mv._news {
    height: 68.2666666667vw;
  }
  .m-ywrks-mv._recruit {
    height: 53.3333333333vw;
  }
  .m-ywrks-mv::before {
    background-image: url(./../../images/ywrks/bg_child_mv_sp.png);
  }
  .m-ywrks-mv._news::before {
    background-image: url(./../../images/ywrks/bg_child_mv_news_sp.png);
  }
  .m-ywrks-mv._business::before {
    background-image: url(./../../images/ywrks/bg_child_mv_business_sp.png);
  }
  .m-ywrks-mv._company::before {
    background-image: url(./../../images/ywrks/bg_child_mv_company_sp.png);
  }
  .m-ywrks-mv._recruit::before {
    background-image: url(./../../images/ywrks/bg_child_mv_recruit_sp.png);
  }
  .m-ywrks-mv-inner > :nth-child(1) {
    margin-bottom: 12.2666666667vw;
  }
  .m-ywrks-mv._business .m-ywrks-mv-inner > :nth-child(1),
  .m-ywrks-mv._company .m-ywrks-mv-inner > :nth-child(1),
  .m-ywrks-mv._news .m-ywrks-mv-inner > :nth-child(1) {
    margin-bottom: 7.2vw;
  }
  .m-ywrks-mv._recruit .m-ywrks-mv-inner > :nth-child(1) {
    margin-bottom: 9.6vw;
  }
  .m-ywrks-mv-ttl-en {
    gap: 0 2.6666666667vw;
    font-size: 4.2666666667vw;
    margin-bottom: 1.8666666667vw;
  }
  .m-ywrks-mv-ttl-en::before {
    width: 6.9733333333vw;
    height: 2.7866666667vw;
  }
  .m-ywrks-mv-ttl-jp {
    font-size: 7.4666666667vw;
    line-height: 1.5;
  }
  .m-ywrks-mv-subttl {
    font-size: 3.7333333333vw;
    margin-top: 3.4666666667vw;
  }
}
/*------------- .m-cta-ywrks -------------*/
.m-cta-ywrks {
  padding-block: 8.3rem;
  padding-inline: 8rem;
  position: relative;
}

.m-cta-ywrks::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(./../../images/ywrks/bg_contact_ywrks_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.m-cta-ywrks-wrapper {
  display: flex;
  align-items: center;
  gap: 0 22.3rem;
}

.m-cta-ywrks-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

.m-cta-ywrks-wrap-txt {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #fff;
}

.m-cta-ywrks-btn {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--col-main);
  width: 38rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  overflow: hidden;
  position: relative;
  transition: color 0.5s ease;
}

.m-cta-ywrks-btn span {
  position: relative;
}

.m-cta-ywrks-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--col-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

@media (any-hover: hover) {
  .m-cta-ywrks-btn:hover {
    color: #fff;
  }
  .m-cta-ywrks-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 767px) {
  .m-cta-ywrks {
    padding-block: 14.1333333333vw 21.3333333333vw;
    padding-inline: initial;
  }
  .m-cta-ywrks::after {
    background-image: url(./../../images/ywrks/bg_contact_ywrks_sp.png);
  }
  .m-cta-ywrks-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.2vw;
  }
  .m-cta-ywrks-wrap {
    gap: 6.6666666667vw;
  }
  .m-cta-ywrks-button {
    width: 100%;
  }
  .m-cta-ywrks-wrap-txt {
    font-size: 4.2666666667vw;
    line-height: 1.8125;
  }
  .m-cta-ywrks-btn {
    width: 100%;
    font-size: 4.2666666667vw;
    height: 16vw;
    border-radius: 1.3333333333vw;
  }
}
/* レイアウト系
---------------------------------------------------------------------------- */
/*------------- .l-footer-ywrks-wrapper -------------*/
.l-footer-ywrks-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.l-footer-ywrks-wrap {
  width: max-content;
}

.l-footer-ywrks-wrap-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem min(4.5833333333vw, 88px);
}

.l-footer-ywrks-wrap-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.l-footer-ywrks-wrap-item._mb {
  margin-bottom: 11rem;
}

.l-footer-ywrks-wrap-title a,
.l-footer-ywrks-wrap-item-link {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #242E44;
  padding-left: 2.8rem;
  position: relative;
}

.l-footer-ywrks-wrap-title a::before,
.l-footer-ywrks-wrap-title a::after,
.l-footer-ywrks-wrap-item-link::before,
.l-footer-ywrks-wrap-item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.l-footer-ywrks-wrap-title a::before,
.l-footer-ywrks-wrap-item-link::before {
  left: 0.4rem;
  z-index: 1;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.l-footer-ywrks-wrap-title a::after,
.l-footer-ywrks-wrap-item-link::after {
  left: 0;
  width: 1.8rem;
  aspect-ratio: 1/1;
  background-color: #073190;
  border-radius: 50%;
}

.l-footer-ywrks-wrap-icon {
  display: none;
}

.l-footer-ywrks-wrap-content-items {
  display: flex;
  flex-direction: column;
}

.l-footer-ywrks-wrap-content-item {
  padding-left: 1.8rem;
  position: relative;
}

.l-footer-ywrks-wrap-content-item::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 0.8rem;
  height: 1px;
  background-color: #1A1A1A;
}

.l-footer-ywrks-wrap-content-item a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #1A1A1A;
}

.l-footer-ywrks-privacy {
  flex-shrink: 0;
}

.l-footer-ywrks-privacy a {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #242E44;
  text-decoration: underline;
}
.l-footer-ywrks-privacy a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .l-footer-ywrks-wrapper {
    flex-direction: column;
    align-items: initial;
    gap: initial;
    margin-top: 7.2vw;
  }
  .l-footer-ywrks-wrap {
    width: 100%;
  }
  .l-footer-ywrks-wrap-items {
    gap: 5.3333333333vw;
    height: initial;
    flex-direction: column;
  }
  .l-footer-ywrks-wrap-item {
    gap: 2.6666666667vw;
    padding-bottom: 3.2vw;
    border-bottom: 1px solid #BEBEBE;
  }
  .l-footer-ywrks-wrap-item._mb {
    margin-bottom: initial;
  }
  .l-footer-ywrks-wrap-title a {
    display: inline-block;
  }
  .l-footer-ywrks-wrap-item-link {
    display: block;
  }
  .l-footer-ywrks-wrap-title a,
  .l-footer-ywrks-wrap-item-link {
    font-size: 4.2666666667vw;
    line-height: 1.8125;
    padding-left: initial;
  }
  .l-footer-ywrks-wrap-title a::before,
  .l-footer-ywrks-wrap-title a::after {
    content: none;
  }
  .l-footer-ywrks-wrap-item-link::before {
    top: 2.1333333333vw;
    left: initial;
    right: 2.4vw;
    width: 1.6vw;
    border-width: 0.5333333333vw;
    transform: rotate(45deg);
  }
  .l-footer-ywrks-wrap-item-link::after {
    top: 0;
    left: initial;
    right: 0;
    width: 6.4vw;
    transform: initial;
  }
  .l-footer-ywrks-wrap-title {
    position: relative;
  }
  .l-footer-ywrks-wrap-title.open .l-footer-ywrks-wrap-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .l-footer-ywrks-wrap-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0.5333333333vw;
    width: 6.4vw;
    aspect-ratio: 1/1;
    background-color: #073190;
    border-radius: 50%;
  }
  .l-footer-ywrks-wrap-icon::before,
  .l-footer-ywrks-wrap-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.2vw;
    height: 0.5333333333vw;
    background-color: #fff;
    transition: transform 0.3s ease 0s;
  }
  .l-footer-ywrks-wrap-icon::before {
    transform: translate(-50%, -50%);
  }
  .l-footer-ywrks-wrap-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .l-footer-ywrks-wrap-content-items {
    gap: 3.2vw;
  }
  .l-footer-ywrks-wrap-content-item {
    padding-left: 4.8vw;
  }
  .l-footer-ywrks-wrap-content-item::before {
    top: 3.7333333333vw;
    width: 2.1333333333vw;
  }
  .l-footer-ywrks-wrap-content-item a {
    font-size: 4.2666666667vw;
    line-height: 1.8125;
  }
}
