@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
} 
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 100%; /* 相対基準を統一 */
  font-size: calc(16 / 1002.4 * 0.85 * 100vw);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  color: #26344F;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.--jobseeker {
  color: #3E3E3E;
}

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
  padding: 0;
  border: none;
}

a,
span {
  display: inline-block;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .container {
    background: none;
    padding-left: 0;
  }
}
.container.no-scroll {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  background: #fff;
  width: 24.375rem;
  margin-left: calc(55vw - 24.375rem / 2);
}
@media screen and (max-width: 767px) {
  .wrapper {
    margin-left: 0;
  }
}

.inner {
  padding-inline: 1.5625rem;
}

.heading {
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}

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

.button {
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.0625rem;
  padding-left: 4.0625rem;
  padding-right: 3.125rem;
  border: 0.0625rem solid currentColor;
  border-radius: 0.3125rem;
  position: relative;
  z-index: 1;
}
.--jobseeker .button {
  padding-top: 1.25rem;
  padding-bottom: 1.125rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}
.side-cta .button {
  width: fit-content;
  padding-top: 1.328125vw;
  padding-bottom: 1.09375vw;
  padding-left: 3.90625vw;
  padding-right: 3.75vw;
}
.side-cta.--jobseeker .button {
  padding-left: 1.40625vw;
  padding-right: 1.171875vw;
}
.drawer-content .button {
  width: fit-content;
  margin-inline: auto;
}

.button__txt {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.side-cta .button__txt {
  font-size: max(12px, 1.25vw);
}
.side-cta.--jobseeker .button__txt {
  font-size: max(12px, 1.171875vw);
}
.button__txt .--large {
  font-size: 1.25rem;
  margin-top: -0.25rem;
}
.side-cta .button__txt .--large {
  font-size: max(15px, 1.5625vw);
}
.side-cta.--jobseeker .button__txt .--large {
  font-size: max(15px, 1.40625vw);
}
.button__txt span {
  flex-shrink: 0;
}
.button__txt svg {
  width: 1.4375rem;
  margin-right: 0.5625rem;
  flex-shrink: 0;
}
.side-cta .button__txt svg {
  width: 1.875vw;
}
.side-cta.--jobseeker .button__txt svg {
  margin-right: 0.3125vw;
}

.button {
  color: #fff;
  background: #67C2C5;
  transition: color 0.3s ease, background 0.3s ease;
}
.--jobseeker .button {
  background: #BB88C9;
}
.button svg path {
  transition: fill 0.3s ease;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 1;
    color: #67C2C5;
    background: #fff;
  }
  .--jobseeker .button:hover {
    color: #BB88C9;
  }
  .button:hover svg path {
    fill: #67C2C5;
  }
  .--jobseeker .button:hover svg path {
    fill: #BB88C9;
  }
}

.cta {
  color: #fff;
  background: url("../img/company/bg_cta-b.webp") no-repeat center top/cover;
  position: relative;
}
.--jobseeker .cta {
  background: url("../img/jobseeker/bg_cta-b.webp") no-repeat center top/cover;
}
.cta.--type1 {
  background: none;
  margin-top: -7rem;
}
.--jobseeker .cta.--type1 {
  margin-top: -7.75rem;
}
.cta.--type2 {
  padding-top: 2.6875rem;
  padding-bottom: 3.125rem;
  z-index: 0;
}
.cta.--type3 {
  padding-top: 2.6875rem;
  padding-bottom: 2.6875rem;
}
.cta.--type4 {
  padding-top: 2.6875rem;
  padding-bottom: 2.6875rem;
}

.cta__heading {
  text-align: center;
}

.cta__heading-upper {
  font-size: 1rem;
  font-weight: 900;
}
.cta__heading-upper svg {
  width: 11.4375rem;
  height: auto;
  margin-top: -0.3125rem;
}
.--jobseeker .cta__heading-upper svg {
  width: 13.875rem;
  margin-top: -0.5rem;
}

.cta__heading-lower {
  font-size: 1.4375rem;
  font-weight: 900;
}
.cta__heading-lower .--large {
  color: #67BFC2;
  font-size: 2.75rem;
  border-bottom: 0.125rem solid currentColor;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.5rem;
}
.--jobseeker .cta__heading-lower .--large {
  color: #fff;
}

.cta__inner {
  padding-inline: 2.5rem;
}
.--type1 .cta__inner {
  width: 100%;
  height: 100%;
  padding-top: 7.125rem;
  position: absolute;
  top: 0;
  left: 0;
}
.--jobseeker .--type1 .cta__inner {
  padding-top: 7.875rem;
}

.cta__highlight {
  display: flex;
  flex-direction: column;
  row-gap: 0.3125rem;
  position: relative;
  z-index: 1;
}
.--type1 .cta__highlight {
  margin-top: 2.25rem;
}
.--jobseeker .--type1 .cta__highlight {
  margin-top: 2.1875rem;
}

.cta__highlight-txt {
  display: inline;
  color: #26344F;
  background: linear-gradient(to bottom, transparent 0%, #fff 0%, #fff 100%, transparent 100%);
  font-size: 0.9375rem;
  font-weight: 900;
  width: fit-content;
  padding-block: 0.3125rem;
  padding-inline: 0.3125rem;
  border-radius: 0.1875rem;
}
.--jobseeker .cta__highlight-txt {
  font-size: 1.375rem;
  font-weight: 700;
  width: 100%;
  padding-block: 0.625rem;
  padding-inline: 0.9375rem;
  text-align: center;
}
.--jobseeker .--type2 .cta__highlight-txt {
  font-size: 1rem;
  width: fit-content;
  padding-block: 0.4375rem;
  padding-inline: 0.5rem;
}
.--jobseeker .--type2 .cta__highlight-txt:nth-of-type(1) {
  font-size: 0.8125rem;
  padding-block: 0.4375rem;
  padding-inline: 0.4375rem;
}
.--type3 .cta__highlight-txt {
  font-size: 1.375rem;
  width: 100%;
  padding-block: 0.625rem;
  text-align: center;
}
.--type4 .cta__highlight-txt {
  padding-block: 0.375rem;
  padding-inline: 0.5rem;
}
.cta__highlight-txt .--accent {
  color: #4FA8AB;
  font-size: 1.25rem;
}
.--jobseeker .cta__highlight-txt .--accent {
  font-size: 2rem;
}
.--jobseeker .--type2 .cta__highlight-txt .--accent {
  font-size: 1.5625rem;
}
.--type3 .cta__highlight-txt .--accent {
  font-size: 2rem;
}

.cta__desc {
  font-size: 0.75rem;
  line-height: 1.3;
  margin-top: 0.5625rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.--jobseeker .cta__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  text-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.25);
  margin-top: 1.0625rem;
}
.cta__desc .--bold {
  font-size: 1rem;
  font-weight: 700;
}
.--jobseeker .--type2 .cta__desc {
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}
.--type3 .cta__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 1.125rem;
}
.--jobseeker .--type3 .cta__desc {
  margin-top: 0.875rem;
}
.--type4 .cta__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.cta__button {
  margin-top: 1.1875rem;
  position: relative;
}
.--jobseeker .cta__button {
  margin-top: 1.4375rem;
}
.--jobseeker .--type2 .cta__button {
  margin-top: 0.875rem;
}
.--type3 .cta__button {
  margin-top: 1.0625rem;
}

.cta__img {
  width: 7rem;
  height: auto;
  position: absolute;
  bottom: 1.4375rem;
  right: -0.875rem;
  z-index: 0;
}
.--jobseeker .cta__img {
  width: 6.1875rem;
  bottom: calc(100% - 0.0625rem);
  right: 0.1875rem;
}
.--type2 .cta__img {
  width: 6.25rem;
}
.--jobseeker .--type2 .cta__img {
  width: 6.4375rem;
  bottom: calc(100% - 0.1875rem);
  right: 0;
}
.--type3 .cta__img {
  width: 4.5rem;
  bottom: 2.4375rem;
  right: 0;
}
.--jobseeker .--type3 .cta__img {
  width: 4.6875rem;
}
.--type4 .cta__img {
  width: 5.0625rem;
  bottom: 3.6875rem;
  right: -0.3125rem;
}

.side-cta {
  background: url("../img/bg_side-cta.webp") no-repeat center top/cover;
  width: calc(55vw - 24.375rem / 2);
  padding-top: 16.09375vw;
  padding-bottom: 6.25vw;
  z-index: 1;
}

.side-cta__logo {
  margin-bottom: 0;
}

.side-cta__logo-link {
  text-align: center;
}
.side-cta__logo-link img {
  width: 8.28125vw;
  height: auto;
  aspect-ratio: 1;
}
.--jobseeker .side-cta__logo-link img {
  width: 9.921875vw;
}
.side-cta__logo-link span {
  font-size: 1.40625vw;
  font-weight: 700;
  margin-top: 0.625vw;
}

.side-cta__title {
  font-size: max(14px, 1.5625vw);
  font-weight: 700;
  margin-top: 2.1875vw;
}

.side-cta__lead {
  font-size: max(12px, 1.015625vw);
  line-height: 1.5;
  margin-top: 1.015625vw;
}
.side-cta__lead .--bold {
  font-weight: 700;
}

.side-cta__button {
  margin-top: 1.484375vw;
}

.side-menu {
  background: url("../img/bg_side-menu.webp") no-repeat center top/cover;
  width: calc(100vw - 24.375rem - (55vw - 24.375rem / 2));
  padding-bottom: 3.125vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .side-menu {
    padding-left: 3.828125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu {
    padding-left: 2.34375vw;
  }
}

.side-menu__link {
  color: #3E3E3E;
  font-size: max(12px, 1.25vw);
  font-weight: 500;
  letter-spacing: 0;
}

.side-menu__bottom {
  color: #020202;
  font-size: max(7.5px, 0.78125vw);
  margin-top: 12.5vw;
  display: flex;
  position: fixed;
  bottom: 2.34375vw;
  left: calc(55vw - 24.375rem / 2 + 24.375rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .side-menu__bottom {
    padding-left: 3.828125vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu__bottom {
    padding-left: 2.34375vw;
  }
}

.side-menu__bottom-link {
  padding-right: 0.703125vw;
}

.side-menu__bottom-copyright {
  padding-left: 0.703125vw;
  position: relative;
}
.side-menu__bottom-copyright::before {
  content: "";
  background: #020202;
  width: 0.0625rem;
  height: 0.6875rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.header {
  width: fit-content;
  height: fit-content;
  position: fixed;
  top: 1.5625rem;
  left: 1.5625rem;
  z-index: 10;
}
.header.--top {
  top: 2.9333333333vw;
  left: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .header.--top {
    display: block;
    top: 1.171875vw;
    left: 1.484375vw;
  }
}

.header__logo {
  text-align: center;
}
.header__logo img {
  width: 1.9375rem;
}
.--top .header__logo img {
  width: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .--top .header__logo img {
    width: 5.703125vw;
  }
}
.header__logo span {
  display: block;
  font-size: 2.624vw;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.8vw;
}
@media screen and (min-width: 768px) {
  .header__logo span {
    font-size: 0.76875vw;
    margin-top: 0.234375vw;
  }
}

.drawer-icon {
  cursor: pointer;
  background: transparent;
  width: 1.25rem;
  height: 1rem;
  border: none;
  position: fixed;
  top: 2rem;
  right: 1.5625rem;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  content: "";
  display: block;
  background: #26344F;
  width: inherit;
  height: 0.125rem;
  transition: top 0.3s linear, bottom 0.3s linear, transform 0.3s linear;
  position: absolute;
  left: 0;
}
.drawer-icon__bar.--bar1 {
  top: 0;
}
.drawer-icon__bar.--bar2 {
  top: 50%;
  translate: 0 -50%;
}
.drawer-icon__bar.--bar3 {
  bottom: 0;
}
.drawer-icon.is-show .drawer-icon__bar.--bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.drawer-icon.is-show .drawer-icon__bar.--bar2 {
  display: none;
}
.drawer-icon.is-show .drawer-icon__bar.--bar3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-content {
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: -100%;
  left: 50%;
  translate: -50%;
  z-index: 9;
  transition: top 0.3s linear;
}
.drawer-content.is-show {
  top: 0;
}

.drawer-content__body {
  background: url("../img/company/bg_drawer-content.webp") no-repeat center top/cover;
  padding-top: 5.75rem;
  padding-bottom: 6.75rem;
  padding-left: 3.4375rem;
  flex: 1;
}
.--jobseeker .drawer-content__body {
  background: url("../img/jobseeker/bg_drawer-content.webp") no-repeat center top/cover;
}

.drawer-content__item {
  width: fit-content;
}
.drawer-content__item:nth-of-type(n + 2) {
  margin-top: 1.25rem;
}

.drawer-content__link {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.drawer-content__cta {
  color: #fff;
  background: url("../img/company/bg_drawer-content-cta.webp") no-repeat center top/cover;
  padding-inline: 2.5rem;
  padding-top: 1.75rem;
  padding-bottom: 2.4375rem;
  text-align: center;
  position: relative;
}
.--jobseeker .drawer-content__cta {
  background: url("../img/jobseeker/bg_drawer-content-cta.webp") no-repeat center top/cover;
}

.drawer-content__img {
  width: 7.04625rem;
  height: 6.75rem;
  overflow: hidden;
  position: absolute;
  bottom: 100%;
  right: 1.3125rem;
}
.--jobseeker .drawer-content__img {
  width: 6.465625rem;
  right: 1.9375rem;
}

.drawer-content__button {
  margin-top: 0.75rem;
}

.drawer-content__lead {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.375rem;
}

.drawer-content__desc {
  font-size: 0.75rem;
  margin-top: 1rem;
}
.--jobseeker .drawer-content__desc {
  font-size: 0.625rem;
  line-height: 1.6;
}
.drawer-content__desc .--bold {
  font-weight: 700;
}

.top {
  height: unset;
  padding-top: 42.1333333333vw;
}
@media screen and (min-width: 768px) {
  .top {
    padding-top: 3.75vw;
  }
}

.top__container {
  padding-bottom: 29.6vw;
  padding-inline: 8vw;
}
@media screen and (min-width: 768px) {
  .top__container {
    padding-bottom: 2.421875vw;
  }
}

.top .top__title {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .top .top__title {
    font-size: 1.875vw;
    margin-bottom: 1.71875vw;
  }
}
.top .top__title span {
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .top .top__title span {
    font-size: 2.5vw;
  }
}

.top__list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top__list {
    column-gap: 12.65625vw;
  }
}

.top__item {
  width: 39.4666666667vw;
  height: 39.4666666667vw;
  max-height: 39.4666666667vw;
  aspect-ratio: 1;
  border-width: 1.6vw !important;
}
@media screen and (min-width: 768px) {
  .top__item {
    width: 24.1796875vw;
    height: 24.1796875vw;
    max-height: 24.1796875vw;
    border-width: clamp(5px, 0.46875vw, 7px) !important;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .top .top__item02 {
    border-width: clamp(5px, 0.46875vw, 7px) !important;
  }
}

.item__title {
  font-size: 3.2vw !important;
  margin-top: 7.2vw;
}
.item__title.item__title01, .item__title.item__title02 {
  margin-top: 7.2vw;
}
@media screen and (min-width: 768px) {
  .item__title.item__title01, .item__title.item__title02 {
    font-size: 1.171875vw !important;
    margin-top: 4.921875vw;
  }
}
.item__title span {
  font-size: 3.7333333333vw !important;
}
@media screen and (min-width: 768px) {
  .item__title span {
    font-size: 1.875vw !important;
  }
}
.item__title.item__title01 span {
  color: #283F64;
}
.item__title.item__title02 span {
  color: #BB88C9;
}

.top .img-company {
  width: 5.1171875vw;
  height: auto;
  aspect-ratio: 0.8451612903;
  margin-top: 1.015625vw;
}
@media screen and (max-width: 767px) {
  .top .img-company {
    width: 7.8133333333vw;
    aspect-ratio: 0.7918918919;
  }
}

.top .img-person {
  width: 9.8666666667vw;
  height: auto;
  aspect-ratio: 1;
  margin-top: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .top .img-person {
    width: 6.5390625vw;
    margin-top: 1.015625vw;
  }
}

.top .item__arrow {
  background: #283F64;
  width: 20.3125vw;
  height: auto;
  aspect-ratio: 5.2;
  top: 18%;
  left: 48%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top .item__arrow {
    width: 21.0666666667vw;
    aspect-ratio: 3.7619047619;
    top: 13%;
    left: 46.8%;
  }
}

.top .item__arrow02 {
  background: #BB88C9;
  top: 82.5%;
  left: unset;
  right: 22.8%;
}
@media screen and (max-width: 767px) {
  .top .item__arrow02 {
    top: 88%;
    right: 21%;
  }
}

.item__arrow-triangle {
  background: #283F64;
  content: "";
  width: 4.6875vw;
  height: 6.953125vw;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 3%;
  left: 59.4%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .item__arrow-triangle {
    width: 5.3333333333vw;
    height: 9.8666666667vw;
    top: 0.3%;
    left: 58.3%;
  }
}
.item__arrow-triangle.--triangle2 {
  background: #BB88C9;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  top: 67%;
  left: unset;
  right: 58.2%;
}
@media screen and (max-width: 767px) {
  .item__arrow-triangle.--triangle2 {
    top: 75%;
    right: 58.5%;
  }
}

.top .item__arrow-text {
  font-size: 1.25vw;
  top: 50%;
  left: 59%;
}
@media screen and (max-width: 767px) {
  .top .item__arrow-text {
    font-size: 2.4vw;
  }
}
.top .item__arrow-text.--text2 {
  left: unset;
  right: 24%;
}
@media screen and (max-width: 767px) {
  .top .item__arrow-text.--text2 {
    right: unset;
    left: 42.7%;
  }
}

.top__text {
  font-size: 4vw;
  padding-block: 2.1333333333vw;
  margin-top: -0.2666666667vw;
  margin-bottom: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .top__text {
    font-size: 1.5625vw;
    width: 57.1875vw;
    padding-block: 1.25vw;
    margin-inline: auto;
    margin-top: -0.15625vw;
    margin-bottom: 1.25vw;
  }
}
.top__text span {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .top__text span {
    font-size: 1.171875vw;
  }
}

.top__text-box {
  margin-top: 1.6vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__text-box {
    margin-top: 0.3125vw;
  }
}
@media screen and (min-width: 768px) {
  .top__text-box img {
    width: 40.15625vw;
  }
}

.top__text-small {
  font-size: 3.4666666667vw;
  letter-spacing: 0.2666666667vw;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .top__text-small {
    font-size: 1.25vw;
    letter-spacing: 0.078125vw;
  }
}

.top .item__text {
  background: linear-gradient(90deg, #283E62 0%, #345994 100%);
  font-size: 2.4vw;
  width: fit-content;
  padding-block: 0.2666666667vw;
  padding-inline: 4.2666666667vw;
  border-radius: 100vmax;
  margin-inline: auto;
  margin-top: 2.1333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top .item__text {
    font-size: 1.09375vw;
    padding-block: 0.703125vw;
    padding-inline: 3.203125vw;
    margin-top: 1.953125vw;
  }
}
.top .item__text.item__text02 {
  background: linear-gradient(90deg, #BC89CA 0%, #D696E7 100%);
}
@media screen and (min-width: 768px) {
  .top .item__text.item__text02 {
    margin-top: 1.484375vw !important;
  }
}

.item__text-arrow {
  content: "";
  width: 0.25rem;
  height: auto;
  aspect-ratio: 1;
  rotate: 45deg;
  border-top: 0.09375rem solid;
  border-right: 0.09375rem solid;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}

.top__item a .item__text {
  overflow: hidden;
  position: relative;
}
.top__item a .item__text::before {
  content: "";
  background: linear-gradient(90deg, #283E62 0%, #345994 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.top__item a .item__text.item__text02::before {
  background: linear-gradient(90deg, #BC89CA 0%, #D696E7 100%);
}
.top__item a .item__text::after {
  content: "";
  background: transparent;
  width: calc(100% - 0.5333333333vw);
  height: calc(100% - 0.5333333333vw);
  border-radius: 100vmax;
  rotate: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  transition: background 0.5s ease;
}
@media screen and (min-width: 768px) {
  .top__item a .item__text::after {
    width: calc(100% - 0.15625vw);
    height: calc(100% - 0.15625vw);
  }
}
.top__item a .item__text-txt {
  color: #fff;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.top__item a .item__text-arrow {
  border-color: #fff;
  right: 2.9333333333vw;
  transition: border-color 0.3s ease, right 0.3s ease;
}
@media screen and (min-width: 768px) {
  .top__item a .item__text-arrow {
    right: 2.109375vw;
  }
}
@media (any-hover: hover) {
  .top__item a {
    opacity: 1;
  }
  .top__item a:hover .item__text::after {
    background: #fff;
  }
  .top__item a:hover .item__text-txt {
    background: linear-gradient(90deg, #283E62 0%, #345994 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .top__item a:hover .item__text-txt.--txt2 {
    background: linear-gradient(90deg, #BC89CA 0%, #D696E7 30%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .top__item a:hover .item__text-arrow {
    border-color: #283E62;
    right: 2.1333333333vw;
  }
  .top__item a:hover .item__text-arrow.--arrow2 {
    border-color: #BB88C9;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .top__item a:hover .item__text-arrow {
    right: 1.5625vw;
  }
}

.fv {
  background: #ECF4FF url("../../assets/img/company/img_fv.webp") no-repeat center top/101% auto;
  height: auto;
  padding-top: 0;
}
.--jobseeker .fv {
  background: #ECF4FF url("../../assets/img/jobseeker/img_fv.webp") no-repeat center top/101% auto;
  height: auto;
  padding-top: 0;
}
.fv::before {
  display: none;
}

.fv__inner {
  overflow: hidden;
  position: relative;
}

.fv__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 3.75rem;
  text-align: center;
}
.--jobseeker .fv__title {
  color: #34ABAF;
  margin-top: 3.5625rem;
}
.fv__title .--lower {
  margin-top: 1.25rem;
}
.--jobseeker .fv__title .--lower {
  margin-top: 1.0625rem;
}
.fv__title .--middle {
  margin-top: 1.125rem;
}
.fv__title .--large {
  font-size: 1.5rem;
}
.fv__title .--highlight {
  display: inline;
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, #26344F 0%, #26344F 100%, transparent 100%);
  font-size: 1.875rem;
  letter-spacing: 0;
  padding-inline: 0.2em;
  border-radius: 0.1875rem;
}
.--jobseeker .fv__title .--highlight {
  background: linear-gradient(to bottom, transparent 0%, #34ABAF 0%, #34ABAF 100%, transparent 100%);
}

.fv__image {
  background: #ECF4FF;
  width: 24.38375rem;
  height: auto;
  aspect-ratio: 0.9145763983;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.fv__cards {
  margin-top: 11.0625rem;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
.--jobseeker .fv__cards {
  margin-top: 10.3125rem;
}

.fv__card {
  color: #fff;
  background: linear-gradient(180deg, #87DBDE 16%, #68C2C5 55%);
  width: 10.3125rem;
  padding-top: 1.3125rem;
  padding-bottom: 0.9375rem;
  border-radius: 0.3125rem;
  box-shadow: 0rem 0.0625rem 0.25rem 0rem rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.--jobseeker .fv__card {
  background: linear-gradient(180deg, #D09FDE 11%, #BB88C9 60%);
}

.fv__card-img {
  width: 3.125rem;
  margin-inline: auto;
}

.fv__card-txt {
  font-size: 0.6875rem;
  line-height: 1.3;
  margin-top: 0.375rem;
  text-align: center;
}
.--jobseeker .fv__card-txt {
  line-height: 1.5;
  margin-top: 0.5rem;
}
.fv__card-txt .--bold {
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 0.0625rem solid #fff;
}

.first {
  background: #ECF4FF;
  padding-top: 2rem;
}
.--jobseeker .first {
  background: #fff;
}

.first__inner {
  position: relative;
}

.first__heading {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.first__heading .--large {
  font-size: 1.5rem;
}

.first__card {
  margin-top: 0.875rem;
  position: relative;
  z-index: 2;
}

.first__card-container {
  width: 100%;
  height: 100%;
  padding-block: 1.5rem;
  padding-inline: 0.9375rem;
  position: absolute;
  top: 0;
  left: 0;
}
.--jobseeker .first__card-container {
  padding-block: 2.125rem;
}

.first__item {
  padding-block: 0.8125rem;
  padding-inline: 1.25rem;
  background-image: radial-gradient(circle, #94A8C6 0.0625rem, transparent 0.0625rem);
  background-position: 0 100%;
  background-size: 0.5rem 0.125rem; /* 水平方向の間隔、垂直方向の太さ */
  background-repeat: repeat-x; /* 水平方向にのみ繰り返す */
  display: flex;
  align-items: center;
  column-gap: 0.8125rem;
}
.--jobseeker .first__item {
  padding-inline: 0.1875rem;
}
.first__item:first-of-type {
  padding-top: 0;
}
.first__item:last-of-type {
  background: none;
  padding-bottom: 0;
}
.first__item svg {
  width: 1.1875rem;
  height: auto;
  flex-shrink: 0;
}

.first__item-txt {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.55;
  white-space: nowrap;
}
.first__item-txt .--bold {
  font-size: 0.9375rem;
  font-weight: 700;
}

.matching {
  background: url("../img/company/bg_matching.webp") no-repeat center center/cover;
  padding-top: 2.0625rem;
  padding-bottom: 2.875rem;
  overflow: hidden;
  position: relative;
}
.--jobseeker .matching {
  padding-top: 2.6875rem;
  padding-bottom: 1.9375rem;
  background: url("../img/jobseeker/bg_matching.webp") no-repeat center center/cover;
}

.matching__inner {
  padding-inline: 2.5rem;
}

.matching__heading {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}
.--jobseeker .matching__heading {
  color: #BB88C9;
  font-size: 1.5625rem;
  line-height: 1;
}
.matching__heading .--large {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-right: 0.4375rem;
}
.--jobseeker .matching__heading .--large {
  font-size: 1.75rem;
}
.matching__heading .--middle, .matching__heading .--lower {
  margin-top: 0.625rem;
}
.matching__heading .--highlight {
  display: inline;
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, #26344F 0%, #26344F 100%, transparent 100%);
  padding-block: 0.5rem 0.25rem;
  padding-inline: 0.25rem;
  border-radius: 0.1875rem;
  margin-right: 0.375rem;
}
.--jobseeker .matching__heading .--highlight {
  background: linear-gradient(to bottom, transparent 0%, #BB88C9 0%, #BB88C9 100%, transparent 100%);
  padding-block: 0;
}

.matching__desc {
  line-height: 1.5;
  margin-top: 0.8125rem;
}
.--jobseeker .matching__desc {
  font-size: 0.8125rem;
  margin-top: 1.375rem;
}
.matching__desc .--strong {
  font-size: 1rem;
  font-weight: 700;
  display: inline;
  background: linear-gradient(to bottom, transparent 70%, #BED6FA 70%, #BED6FA 100%, transparent 100%);
}
.--jobseeker .matching__desc .--strong {
  background: linear-gradient(to bottom, transparent 70%, #EAD0F1 70%, #EAD0F1 100%, transparent 100%);
}

.matching__img {
  width: 11.75rem;
  height: auto;
  position: absolute;
  bottom: -0.4375rem;
  right: 0;
}
.--jobseeker .matching__img {
  width: 5.5625rem;
  bottom: unset;
  right: 2.5rem;
  top: 6rem;
}

.problem {
  position: relative;
  z-index: 1;
}

.problem__bg {
  background: #26344F;
}

.problem__container {
  width: 100%;
  height: 100%;
  padding-top: 2.75rem;
  padding-bottom: 3.5625rem;
  position: absolute;
  top: 0;
  left: 0;
}

.problem__inner {
  padding-inline: 2.5rem;
}

.problem__heading {
  color: #fff;
  font-size: 1.25rem;
}
.problem__heading .--strong {
  font-size: 1.5rem;
  position: relative;
}
.problem__heading .--strong::before {
  content: "";
  background: #fff;
  width: 0.1875rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50%;
}

.problem__list {
  overflow: hidden;
  margin-top: 1.375rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
}
.--jobseeker .problem__list {
  overflow: unset;
  row-gap: 1.1875rem;
}

.problem__item {
  background: #fff;
  width: 17.5rem;
  padding-block: 0.6875rem;
  padding-inline: 0.9375rem;
  border-radius: 0.3125rem;
  margin-right: auto;
  position: relative;
}
.--jobseeker .problem__item {
  padding-block: 1.3125rem;
}
.problem__item:nth-of-type(even) {
  padding-left: 4.6875rem;
  margin-left: auto;
  margin-right: 0;
}
.--jobseeker .problem__item:nth-of-type(even) {
  padding-left: 4.1875rem;
}

.--jobseeker .problem__item.--item3 {
  padding-block: 0.8125rem;
  padding-inline: 2.1875rem;
}
.--jobseeker .problem__item.--item3 .problem__item-txt {
  line-height: 1.35;
}

.problem__item-txt {
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.--jobseeker .problem__item-txt {
  font-size: 0.8125rem;
}
.problem__item-txt .--strong {
  font-size: 0.9375rem;
  font-weight: 700;
  display: inline;
  background: linear-gradient(to bottom, transparent 70%, #D5E6FF 70%, #D5E6FF 100%, transparent 100%);
}
.--jobseeker .problem__item-txt .--strong {
  background: linear-gradient(to bottom, transparent 70%, #EEDFF2 70%, #EEDFF2 100%, transparent 100%);
  font-size: 0.9375rem;
}

.problem__item-img {
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.--item1 .problem__item-img {
  width: 3.3125rem;
  right: 1.1875rem;
}
.--jobseeker .--item1 .problem__item-img {
  width: 6.3125rem;
  right: -1.875rem;
}
.--item2 .problem__item-img {
  width: 2.9375rem;
  left: 0.9375rem;
}
.--jobseeker .--item2 .problem__item-img {
  width: 2.8125rem;
}
.--item3 .problem__item-img {
  width: 2.9375rem;
  right: 0.8125rem;
}
.--jobseeker .--item3 .problem__item-img {
  width: 3rem;
  right: 1.625rem;
}

.problem__arrow {
  width: 7.5625rem;
  height: auto;
  position: absolute;
  bottom: -2.125rem;
  left: 50%;
  translate: -50%;
}

.reason {
  background: url("../img/company/bg_reason.webp") no-repeat center top/cover;
  padding-top: 5.25rem;
  padding-bottom: 3.1875rem;
  margin-top: -2.6875rem;
  position: relative;
}
.--jobseeker .reason {
  background: url("../img/jobseeker/bg_reason.webp") no-repeat center top/cover;
  margin-top: -2.625rem;
}

.reason__heading-upper {
  font-size: 1.25rem;
  padding-bottom: 1rem;
  position: relative;
}
.--jobseeker .reason__heading-upper {
  font-size: 1.125rem;
}
.reason__heading-upper svg {
  width: 12.375rem;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
.--jobseeker .reason__heading-upper svg {
  width: 18.375rem;
  bottom: -0.125rem;
}

.reason__heading-lower {
  font-size: 2.25rem;
  margin-top: -0.0625rem;
}
.reason__heading-lower .--large {
  font-size: 2.75rem;
}

.reason__desc {
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}
.--jobseeker .reason__desc {
  font-size: 0.8125rem;
  margin-top: 1.125rem;
}
.reason__desc .--strong {
  font-size: 1rem;
  font-weight: 700;
  display: inline;
  background: linear-gradient(to bottom, transparent 70%, #BED6FA 70%, #BED6FA 100%, transparent 100%);
}
.--jobseeker .reason__desc .--strong {
  background: linear-gradient(to bottom, transparent 70%, #EAD0F1 70%, #EAD0F1 100%, transparent 100%);
}

.reason__cards {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.875rem;
}

.reason__card {
  background: #fff;
  padding-block: 1.875rem;
  padding-inline: 0.6875rem;
  border-radius: 0.625rem;
  box-shadow: 0rem 0rem 0.875rem 0rem rgb(167, 186, 213);
  text-align: center;
}
.--jobseeker .reason__card {
  box-shadow: 0rem 0rem 0.875rem 0rem #E6D7E6;
}

.reason__card-num {
  color: #fff;
  background: #26344F;
  font-size: 0.75rem;
  font-weight: 700;
  padding-block: 0.4375rem;
  padding-inline: 2.375rem;
  border-radius: 100vmax;
  margin-inline: auto;
}
.--jobseeker .reason__card-num {
  background: #BB88C9;
}
.reason__card-num .--large {
  font-size: 0.8125rem;
}

.reason__card__title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 1rem;
}

.reason__card-img {
  margin-inline: auto;
}
.--card1 .reason__card-img {
  width: 18.3125rem;
  margin-top: 1rem;
}
.--card2 .reason__card-img {
  width: 18.875rem;
  margin-top: 0.625rem;
}
.--card3 .reason__card-img {
  width: 18.3125rem;
  margin-top: 0.9375rem;
}

.reason__card-lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.375rem;
  border-bottom: 0.125rem solid #BCCDE7;
  margin-top: 0.9375rem;
}
.--jobseeker .reason__card-lead {
  border-color: #D5BDDC;
}
.--card2 .reason__card-lead {
  margin-top: 1.25rem;
}
.--jobseeker .--card2 .reason__card-lead {
  margin-top: 0.625rem;
}
.--card3 .reason__card-lead {
  margin-top: 0.5rem;
}
.--jobseeker .--card3 .reason__card-lead {
  margin-top: 1.3125rem;
}

.reason__card-desc {
  line-height: 1.5;
  margin-top: 0.5625rem;
}
.reason__card-desc .--strong {
  display: inline;
  background: linear-gradient(to bottom, transparent 70%, #D5E6FF 70%, #D5E6FF 100%, transparent 100%);
  font-size: 1rem;
  font-weight: 700;
}
.--jobseeker .reason__card-desc .--strong {
  background: linear-gradient(to bottom, transparent 70%, #EEDFF2 70%, #EEDFF2 100%, transparent 100%);
}
.--jobseeker .--card1 .reason__card-desc .--strong {
  font-size: 0.875rem;
}

.support {
  background: url("../img/company/bg_support.webp") no-repeat center center/cover;
  padding-top: 1.9375rem;
  padding-bottom: 2.0625rem;
}

.support__inner {
  padding-inline: 2.5rem;
  position: relative;
}

.support__heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.support__heading .--small {
  font-size: 1rem;
}
.support__heading .--highlight {
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, #26344F 0%, #26344F 100%, transparent 100%);
  font-size: 1.4375rem;
  padding-inline: 0.5625rem;
  border-radius: 0.1875rem;
  margin-top: 0.3125rem;
}

.support__desc {
  line-height: 1.5;
  margin-top: 1.375rem;
}
.support__desc .--strong {
  display: inline;
  background: linear-gradient(to bottom, transparent 70%, #BED6FA 70%, #BED6FA 100%, transparent 100%);
  font-size: 1rem;
  font-weight: 700;
}

.support__img {
  width: 4.875rem;
  height: auto;
  position: absolute;
  top: 0.75rem;
  right: 2.3125rem;
}

.follow {
  background: url("../img/jobseeker/bg_follow.webp") no-repeat center top/cover;
  padding-top: 3.3125rem;
  padding-bottom: 2rem;
}

.follow__inner {
  position: relative;
}

.follow__img {
  width: 5.8125rem;
  height: auto;
  position: absolute;
  right: 1.5625rem;
  top: -1.4375rem;
  z-index: 0;
}

.follow__heading {
  color: #BB88C9;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 0.5625rem;
  position: relative;
  z-index: 1;
}
.follow__heading .--upper {
  padding-left: 0.5rem;
  margin-bottom: 0.3125rem;
}
.follow__heading .--highlight {
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, #BB88C9 0%, #BB88C9 100%, transparent 100%);
  font-size: 1.5625rem;
  padding-block: 0.1em;
  padding-inline: 0.4375rem;
  border-radius: 0.1875rem;
}

.follow__lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1rem;
  padding-bottom: 0.3125rem;
  border-bottom: 0.125rem solid #D5BDDC;
  margin-top: 1.8125rem;
}

.follow__desc {
  line-height: 1.5;
  padding-left: 1rem;
  margin-top: 0.625rem;
}
.follow__desc .--strong {
  background: linear-gradient(to bottom, transparent 70%, #EAD0F1 70%, #EAD0F1 100%, transparent 100%);
  font-size: 1rem;
  font-weight: 700;
}

.qa {
  background: #ECF4FF;
  padding-top: 3.375rem;
  padding-bottom: 2.9375rem;
}
.--jobseeker .qa {
  background: url("../img/jobseeker/bg_qa.webp") no-repeat center top/cover;
  padding-bottom: 3rem;
}

.qa__inner {
  padding-inline: 2.5rem;
}

.qa__boxes {
  margin-top: 1.5625rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.53125rem;
}
.--jobseeker .qa__boxes {
  row-gap: 0.58125rem;
}

.qa__box {
  background: #fff;
  padding-inline: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0rem 0rem 0.4375rem 0rem rgb(167, 186, 213);
  overflow: hidden;
}
.--jobseeker .qa__box {
  box-shadow: 0rem 0rem 0.4375rem 0rem #E6D7E6;
}

.qa__box-head-icon, .qa__box-body-icon {
  font-size: 1.0625rem;
  font-weight: 700;
}

.qa__box-head-container, .qa__box-body-container {
  display: flex;
  column-gap: 0.625rem;
}

.qa__box-head {
  cursor: pointer;
  width: 100%;
  padding-block: 0.8125rem;
  padding-right: 1.1875rem;
  position: relative;
}
.--jobseeker .qa__box-head {
  padding-bottom: 0.75rem;
}

.qa__box-body {
  display: none;
  padding-block: 0.75rem;
  border-top: 0.125rem solid #BCCDE7;
}
.--jobseeker .qa__box-body {
  border-color: #D5BDDC;
}

.qa__box-head-txt, .qa__box-body-txt {
  line-height: 1.5;
  text-align: left;
}

.qa__box-head-btn {
  display: block;
  width: 0.75rem;
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  top: 1.3125rem;
}

.qa__box-head-btn svg {
  width: 100%;
  transition: rotate 0.3s ease;
}
.qa__box.is-open .qa__box-head-btn svg {
  rotate: 180deg;
}

.qa__box-body-desc {
  padding-right: 1.0625rem;
}

.qa__box-body-list-head {
  margin-top: 0.9375rem;
}

.qa__box-body-list {
  margin-top: 0.9375rem;
  display: flex;
  flex-direction: column;
}
.--box2 .qa__box-body-list {
  row-gap: 0.9375rem;
}
.--jobseeker .--box4 .qa__box-body-list {
  margin-top: 0;
  row-gap: 0.9375rem;
}
.--box6 .qa__box-body-list {
  padding-right: 1.4375rem;
  margin-top: 0;
}

.footer {
  padding-top: 2.75rem;
  padding-bottom: 0.625rem;
}

.footer__inner {
  padding-inline: 1.5625rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 3.0625rem;
}

.footer__logo {
  width: 3.25rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}
.footer__logo a {
  row-gap: 0.25rem;
}
.footer__logo img {
  width: 100%;
}

.footer__title {
  font-size: 0.5625rem;
}

.footer__list {
  margin: 0;
}

.footer__item dt {
  font-weight: 500;
  width: 6.1875rem;
  flex-shrink: 0;
}
.footer__item dt, .footer__item dd {
  color: #3E3E3E;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0;
}

.footer__copyright {
  color: #26344F;
  background: #fff;
  font-size: 0.5rem;
  font-weight: 400;
  margin-top: 0.6875rem;
}

.footer__top {
  padding-top: 8.5333333333vw;
  padding-bottom: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .footer__top {
    padding-top: 1.40625vw;
  }
}

.footer__top-inner {
  padding-block: 0;
  padding-inline: 18.1333333333vw;
}

.footer__top-list {
  width: fit-content;
  margin-bottom: 0;
}

.footer__top-item {
  gap: 0;
}
.footer__top-item dt, .footer__top-item dd {
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .footer__top-item dt, .footer__top-item dd {
    font-size: max(10px, 0.78125vw);
  }
}
.footer__top-item dt {
  width: 28.8vw;
}
@media screen and (min-width: 768px) {
  .footer__top-item dt {
    width: 8.59375vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__top-item dt {
    width: 13.0208333333vw;
  }
}
.footer__top-item dd {
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer__top-item dd {
    width: calc(100% - 8.59375vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__top-item dd {
    width: fit-content;
  }
}

.footer__top-copyright {
  font-size: max(8px, 2.1333333333vw);
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .footer__top-copyright {
    font-size: max(8px, 0.625vw);
    margin-top: 1.328125vw;
  }
}/*# sourceMappingURL=styles.css.map */