@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Noto+Serif+JP:wght@500..600&display=swap");

* {
  --ff_mincho: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif, "Noto Serif JP";
}

/* -------------------
wrapper
------------------- */
.l-wrapper {
  position: relative;
  overflow: clip;
  width: 100%;
}

/* -------------------
main
------------------- */
.l-main {
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .l-main {
    padding-top: 56px;
    min-height: calc(100vh - 56px);
  }
}

/* -------------------
l-inner
------------------- */
.l-inner {
  padding-inline: 16px;
  margin-inline: auto;
  max-width: 616px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* -------------------
header
------------------- */
.header {
  position: static;
  background: var(--PrimitiveColors-RAG_Blue-900, #081c4d);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  height: 56px;
}
@media (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-inline: 16px 12px;
  gap: 24px;
}
@media (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 648px;
    margin-inline: auto;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.header__logo img {
  width: 190px;
}

.header__button {
  width: 100%;
  height: 32px;
  max-width: 120px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(166, 166, 166, 0.2);
  box-shadow: 0 1px 2px 0 rgba(166, 166, 166, 0.2);
}

.header__button span {
  color: var(--StaticText-Main-ButtonLabel_Blue, #06f);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 18px */
  letter-spacing: 0.24px;
}

/* -------------------
floating
------------------- */
.floating__button_area {
  position: sticky;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 65px;
  padding-block: 8px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  border-top: 1px solid var(--Stroke-Divider);
}

.floating__button_area .button {
  margin-inline: auto;
}

/* -------------------
fv
------------------- */
.fv {
  position: relative;
  width: 100%;
  isolation: isolate;
}
@media (min-width: 768px) {
  .fv {
    height: 460px;
    background: linear-gradient(
      147deg,
      var(--PrimitiveColors-RAG_Blue-900, #081c4d) -0.97%,
      var(--PrimitiveColors-Mono-900, #191919) 100%
    );
  }
}

.fv img {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .fv img {
    position: absolute;
    width: 1440px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 100%;
  padding-block: calc(32 / 375 * 100vw) calc(12 / 375 * 100vw);
  min-height: 460px;
}
@media (min-width: 768px) {
  .fv__inner {
    padding-block: 32px 12px;
    padding-inline: 12px;
    min-height: 460px;
  }
}

.fv__heading {
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .fv__heading {
    line-height: 1.2;
  }
}

.fv__heading span {
  display: inline-block;
  font-family: var(--ff_mincho);
  font-weight: 600;
}

.fv__heading b {
  font-family: var(--ff_mincho);
  font-weight: 600;
}

.fv__heading i {
  display: inline-block;
  -webkit-margin-start: -0.2em;
  margin-inline-start: -0.2em;
  letter-spacing: -0.25em;
  font-size: 0.8em;
  font-style: normal;
}
@media (min-width: 768px) {
  .fv__heading i {
    font-size: 0.9em;
  }
}

.fv__heading > span:nth-of-type(1) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 11px rgba(8, 28, 77, 0.4);
  font-size: calc(32 / 375 * 100vw); /* 375pxで36px */
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .fv__heading > span:nth-of-type(1) {
    font-size: 36px;
  }
}

.fv__heading > span:nth-of-type(1) > span {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(24 / 375 * 100vw); /* 375pxで24px */
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .fv__heading > span:nth-of-type(1) > span {
    font-size: 26px;
  }
}

.fv__heading > span:nth-of-type(2) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(32 / 375 * 100vw); /* 375pxで32px */
  letter-spacing: -0.07em;
}
@media (min-width: 768px) {
  .fv__heading > span:nth-of-type(2) {
    font-size: 36px;
  }
}

.fv__catch {
  position: relative;
  -webkit-margin-before: calc(6 / 375 * 100vw);
  margin-block-start: calc(6 / 375 * 100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(4 / 375 * 100vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .fv__catch {
    -webkit-margin-before: 8px;
    margin-block-start: 8px;
    gap: 2px;
  }
}

.fv__catch + .fv__catch {
  -webkit-margin-before: calc(10 / 375 * 100vw);
  margin-block-start: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .fv__catch + .fv__catch {
    -webkit-margin-before: 8px;
    margin-block-start: 8px;
  }
}

.fv__catch span {
  font-family: var(--ff_mincho);
}

.fv__catch svg {
  width: calc(16 / 375 * 100vw);
  height: calc(32 / 375 * 100vw);
}
@media (min-width: 768px) {
  .fv__catch svg {
    width: 16px;
    height: 32px;
  }
}

.fv__catch > span > span:nth-of-type(1) {
  color: var(--PrimitiveColors-Yellow-500, #e3c53d);
  font-size: calc(15 / 375 * 100vw); /* 375pxで16px */
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .fv__catch > span > span:nth-of-type(1) {
    font-size: 18px;
  }
}

.fv__catch > span > span:nth-of-type(2) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: calc(28 / 375 * 100vw); /* 375pxで28px */
  font-weight: 600;
  line-height: 80%;
}
@media (min-width: 768px) {
  .fv__catch > span > span:nth-of-type(2) {
    font-size: 28px;
  }
}

.fv__catch > span > span:nth-of-type(3) {
  color: var(--PrimitiveColors-Yellow-600, #b28917);
  font-size: calc(14 / 375 * 100vw); /* 375pxで14px */
  font-weight: 600;
  line-height: 100%; /* 14px */
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .fv__catch > span > span:nth-of-type(3) {
    font-size: 16px;
  }
}

.fv__catch sup {
  font-size: 8px;
  font-weight: 400;
  top: -0.8em;
}

.fv__button_area {
  -webkit-margin-before: calc(144 / 375 * 100vw);
  margin-block-start: calc(144 / 375 * 100vw);
}
@media (min-width: 768px) {
  .fv__button_area {
    -webkit-margin-before: 150px;
    margin-block-start: 150px;
  }
}

.fv__button_area > .button.new {
  width: 100%;
  max-width: 343px;
  margin-inline: auto;
  padding-block: 16px;
  font-size: 16px;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .fv__button_area > .button.new {
    max-width: 300px;
  }
}

/* -------------------
c-heading2
------------------- */
.c-heading2 {
  color: var(--StaticText-Main-White, #fff);
  text-align: center;
  font-family: var(--ff_mincho);
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  -webkit-padding-after: 16px;
  padding-block-end: 16px;
  position: relative;
  margin-block: 0 32px;
}
@media (min-width: 768px) {
  .c-heading2 {
    font-size: 28px;
  }
}

.c-heading2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 102, 255, 0)),
    color-stop(15%, #0066ff),
    color-stop(25%, #9de9ed),
    color-stop(50%, #30bfc9),
    color-stop(75%, #0066ff),
    color-stop(85%, #1f4599),
    to(rgba(31, 69, 153, 0))
  );
  background: linear-gradient(
    to right,
    rgba(0, 102, 255, 0) 0%,
    #0066ff 15%,
    #9de9ed 25%,
    #30bfc9 50%,
    #0066ff 75%,
    #1f4599 85%,
    rgba(31, 69, 153, 0) 100%
  );
}

.c-heading2__gold {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--ff_mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.001em;
}
@media (min-width: 768px) {
  .c-heading2__gold {
    font-size: 32px;
  }
}

.c-heading2 b {
  font-family: var(--ff_mincho);
  font-weight: 600;
}

.c-heading2__gold > span {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--ff_mincho);
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}

.c-heading2__sub {
  display: block;
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--StaticText-Main-White, #fff);
  text-align: center;
  font-size: 12px;
  font-weight: 200;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-heading2__sub {
    font-size: 14px;
  }
}

/* -------------------
job
------------------- */
.job {
  background:
    url(../assets/job--bg-sp.png) top center / 375px auto no-repeat,
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--PrimitiveColors-Mono-900, #191919)),
        to(var(--PrimitiveColors-RAG_Blue-900, #081c4d))
      );
  background:
    url(../assets/job--bg-sp.png) top center / 375px auto no-repeat,
    linear-gradient(
      180deg,
      var(--PrimitiveColors-Mono-900, #191919) 0%,
      var(--PrimitiveColors-RAG_Blue-900, #081c4d) 100%
    );
  padding-block: 32px;
}
@media (min-width: 768px) {
  .job {
    background:
      url(../assets/job--bg-pc.png) top center / 600px auto no-repeat,
      -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(var(--PrimitiveColors-Mono-900, #191919)),
          to(var(--PrimitiveColors-RAG_Blue-900, #081c4d))
        );
    background:
      url(../assets/job--bg-pc.png) top center / 600px auto no-repeat,
      linear-gradient(
        180deg,
        var(--PrimitiveColors-Mono-900, #191919) 0%,
        var(--PrimitiveColors-RAG_Blue-900, #081c4d) 100%
      );
    /*width: 648px;
    margin-inline: auto;*/
  }
}

.job__container > * + * {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.job__card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--StaticSurface-Container-White, #fff);
  padding-block: 16px 20px;
  padding-inline: 16px;
}

.job__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0066ff),
    color-stop(25%, #9de9ed),
    color-stop(50%, #30bfc9),
    color-stop(75%, #0066ff),
    to(#1f4599)
  );
  background: linear-gradient(to right, #0066ff 0%, #9de9ed 25%, #30bfc9 50%, #0066ff 75%, #1f4599 100%);
}

.job__card > * + * {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
}

.job__card_name {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.job__card_company {
  color: var(--StaticText-Main-Secondary, #333);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}
@media (min-width: 768px) {
  .job__card_company {
    color: var(--StaticText-Main-Secondary, #333);
    font-size: 18px;
  }
}

.job__card_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 48px;
  padding-inline: 8px;
  border-radius: 4px;
  background: var(--PrimitiveColors-RAG_Blue-100, #f0f3ff);
  color: var(--StaticText-Main-Primary, #1f3566);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .job__card_title {
    font-size: 12px;
  }
}

.job__card_salary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--StaticText-Main-Secondary, #333);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .job__card_salary {
    font-size: 14px;
  }
}

.job__card_salary b {
  display: inline-block;
  color: var(--StaticText-Main-Primary, #1f3566);
  font-family: Roboto;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  -webkit-margin-end: 2px;
  margin-inline-end: 2px;
  padding-block: 2px;
}
@media (min-width: 768px) {
  .job__card_salary b {
    font-size: 32px;
  }
}

.job__card_position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.job__card_position b {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  overflow: hidden;
  color: var(--StaticText-Main-Primary, #1f3566);
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
  padding-block: 2px;
}
@media (min-width: 768px) {
  .job__card_position b {
    font-size: 20px;
  }
}

.job__card_description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  overflow: hidden;
  color: var(--StaticText-Main-Secondary, #333);
  text-overflow: ellipsis;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 18px */
  letter-spacing: 0.24px;
}
@media (min-width: 768px) {
  .job__card_description {
    font-size: 14px;
  }
}

.job__card_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.job__card_data > .job__card_title {
  background: var(--PrimitiveColors-RAG_Blue-050, #f5f6fa);
  color: var(--StaticText-Main-Secondary, #333);
}

.job__card_data span:nth-of-type(2) {
  padding-block: 2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  overflow: hidden;
  color: var(--StaticText-Main-Secondary, #333);
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .job__card_data span:nth-of-type(2) {
    font-size: 14px;
  }
}

.job__note {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--PrimitiveColors-Mono-200, #e5e5e5);
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0.02em;
}

/* -------------------
case
------------------- */
.case {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--PrimitiveColors-RAG_Blue-900, #081c4d)),
    to(var(--PrimitiveColors-Mono-900, #191919))
  );
  background: linear-gradient(
    180deg,
    var(--PrimitiveColors-RAG_Blue-900, #081c4d) 0%,
    var(--PrimitiveColors-Mono-900, #191919) 100%
  );
  padding-block: 32px;
}

.case__container > * + * {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.case__card {
  border-radius: 4px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(137, 103, 10, 0.5)),
    color-stop(14.9%, rgba(215, 175, 81, 0.5)),
    color-stop(37.5%, rgba(255, 213, 77, 0.5)),
    color-stop(50.48%, rgba(255, 232, 154, 0.5)),
    color-stop(70.67%, rgba(255, 213, 77, 0.5)),
    color-stop(85.24%, rgba(215, 175, 81, 0.5)),
    to(rgba(137, 103, 10, 0.5))
  );
  background: linear-gradient(
    90deg,
    rgba(137, 103, 10, 0.5) 0%,
    rgba(215, 175, 81, 0.5) 14.9%,
    rgba(255, 213, 77, 0.5) 37.5%,
    rgba(255, 232, 154, 0.5) 50.48%,
    rgba(255, 213, 77, 0.5) 70.67%,
    rgba(215, 175, 81, 0.5) 85.24%,
    rgba(137, 103, 10, 0.5) 100%
  );
  padding-block: 1px;
  padding-inline: 1px;
}

.case__card_up {
  border-radius: 4px 4px 0 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  text-align: center;
  color: var(--StaticText-Main-Body, #191919);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  padding-block: 4px;
}
@media (min-width: 768px) {
  .case__card_up {
    font-size: 16px;
  }
}

.case__card_up span {
  display: inline-block;
  padding-block: 2px;
  padding-inline: 4px;
  border-radius: 2px;
  background: var(--PrimitiveColors-Mono-900, #191919);
  color: var(--PrimitiveColors-Yellow-600, #b28917);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  margin-inline: 4px;
}
@media (min-width: 768px) {
  .case__card_up span {
    font-size: 16px;
  }
}

.case__card_up b {
  display: inline-block;
  color: var(--StaticText-Main-White, #fff);
  font-family: var(--ff_mincho);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-margin-end: 2px;
  margin-inline-end: 2px;
}
@media (min-width: 768px) {
  .case__card_up b {
    font-size: 28px;
  }
}

.case__card_diff {
  background-color: #191919;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 34px;
  padding-block: 24px;
  padding-inline: 8px;
}
@media (min-width: 768px) {
  .case__card_diff {
    gap: 58px;
  }
}

.case__card_before {
  position: relative;
}

.case__card_before::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  right: -24px;
  margin-block: auto;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
@media (min-width: 768px) {
  .case__card_before::after {
    right: -34px;
  }
}

.case__card_before > p:nth-of-type(1) {
  color: var(--PrimitiveColors-Mono-200, #e5e5e5);
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}

.case__card_before > p:nth-of-type(1) b {
  display: inline-block;
  -webkit-margin-end: 2px;
  margin-inline-end: 2px;
  color: var(--PrimitiveColors-Mono-200, #e5e5e5);
  font-family: var(--ff_mincho);
  font-size: 32px;
  font-weight: 600;
  line-height: 90%;
}
@media (min-width: 768px) {
  .case__card_before > p:nth-of-type(1) b {
    font-size: 36px;
  }
}

.case__card_before > p:nth-of-type(2) {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  text-align: center;
  padding-block: 1px;
  padding-inline: 8px;
  border-radius: 4px;
  border: 1px solid rgba(178, 178, 178, 0.5);
  color: var(--StaticText-Main-White, #fff);
  font-size: 10px;
  font-weight: 600;
  line-height: 140%; /* 14px */
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .case__card_before > p:nth-of-type(2) {
    font-size: 12px;
  }
}

.case__card_after > p:nth-of-type(1) {
  color: var(--PrimitiveColors-Yellow-600, #b28917);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.case__card_after > p:nth-of-type(1) b {
  display: inline-block;
  -webkit-margin-end: 2px;
  margin-inline-end: 2px;
  font-family: var(--ff_mincho);
  font-size: 48px;
  font-weight: 600;
  line-height: 90%;
  letter-spacing: -0.02em;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#89670a),
    color-stop(14.9%, #d7af51),
    color-stop(37.5%, #ffd54d),
    color-stop(50.48%, #ffe89a),
    color-stop(70.67%, #ffd54d),
    color-stop(85.24%, #d7af51),
    to(#89670a)
  );
  background: linear-gradient(
    90deg,
    #89670a 0%,
    #d7af51 14.9%,
    #ffd54d 37.5%,
    #ffe89a 50.48%,
    #ffd54d 70.67%,
    #d7af51 85.24%,
    #89670a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .case__card_after > p:nth-of-type(1) b {
    font-size: 64px;
  }
}

.case__card_after > p:nth-of-type(2) {
  -webkit-margin-before: 5px;
  margin-block-start: 5px;
  text-align: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(137, 103, 10, 0.5)),
    color-stop(14.9%, rgba(215, 175, 81, 0.5)),
    color-stop(37.5%, rgba(255, 213, 77, 0.5)),
    color-stop(50.48%, rgba(255, 232, 154, 0.5)),
    color-stop(70.67%, rgba(255, 213, 77, 0.5)),
    color-stop(85.24%, rgba(215, 175, 81, 0.5)),
    to(rgba(137, 103, 10, 0.5))
  );
  background: linear-gradient(
    90deg,
    rgba(137, 103, 10, 0.5) 0%,
    rgba(215, 175, 81, 0.5) 14.9%,
    rgba(255, 213, 77, 0.5) 37.5%,
    rgba(255, 232, 154, 0.5) 50.48%,
    rgba(255, 213, 77, 0.5) 70.67%,
    rgba(215, 175, 81, 0.5) 85.24%,
    rgba(137, 103, 10, 0.5) 100%
  );
  border-radius: 4px;
  padding-block: 1px;
  padding-inline: 1px;
}
@media (min-width: 768px) {
  .case__card_after > p:nth-of-type(2) {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
  }
}

.case__card_after > p:nth-of-type(2) span {
  background-color: #191919;
  border-radius: 4px;
  display: block;
  width: 100%;
  height: 100%;
  padding-block: 4px;
  padding-inline: 8px;
  color: var(--PrimitiveColors-Yellow-500, #e3c53d);
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .case__card_after > p:nth-of-type(2) span {
    font-size: 12px;
  }
}

.case__card__position {
  padding-block: 12px;
  padding-inline: 16px;
  -webkit-margin-before: 1px;
  margin-block-start: 1px;
  background-color: #191919;
  border-radius: 0 0 4px 4px;
  color: var(--StaticText-Main-White, #fff);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}
@media (min-width: 768px) {
  .case__card__position {
    font-size: 16px;
  }
}

/* -------------------
content-bg
------------------- */
@media (min-width: 768px) {
  .content-bg {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#191919),
      color-stop(36.45%, var(--StaticSurface-Container-Brand, #1156bd)),
      color-stop(91.52%, var(--StaticSurface-Container-Brand, #1156bd))
    );
    background: linear-gradient(
      180deg,
      #191919 0%,
      var(--StaticSurface-Container-Brand, #1156bd) 36.45%,
      var(--StaticSurface-Container-Brand, #1156bd) 91.52%
    );
  }
}

/* -------------------
reason
------------------- */
@media (min-width: 768px) {
  .reason {
    width: 648px;
    margin-inline: auto;
  }
}

.reason__heading {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#191919),
    color-stop(36.45%, var(--StaticSurface-Container-Brand, #1156bd)),
    color-stop(91.52%, var(--StaticSurface-Container-Brand, #1156bd))
  );
  background: linear-gradient(
    180deg,
    #191919 0%,
    var(--StaticSurface-Container-Brand, #1156bd) 36.45%,
    var(--StaticSurface-Container-Brand, #1156bd) 91.52%
  );
  position: relative;
  isolation: isolate;
}

.reason__img_bg {
  display: block;
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
  mix-blend-mode: screen;
}
@media (min-width: 768px) {
  .reason__img_bg {
    max-width: 648px;
  }
}

.reason__img_talent {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 375px;
}
@media (min-width: 768px) {
  .reason__img_talent {
    max-width: 648px;
  }
}

.reason__heading_after {
  position: absolute;
  content: "";
  width: 100%;
  height: 208px;
  background:
    -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(45.78%, rgba(46, 89, 208, 0.7)),
      color-stop(87.31%, rgba(99, 222, 255, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(17, 86, 189, 0)),
        color-stop(82.95%, var(--StaticSurface-Container-Brand, rgba(17, 86, 189, 0.6)))
      ),
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(31, 53, 102, 0)),
        color-stop(54.79%, var(--PrimitiveColors-Mono-900, #191919))
      );
  background:
    linear-gradient(0deg, rgba(46, 89, 208, 0.7) 45.78%, rgba(99, 222, 255, 0) 87.31%),
    linear-gradient(
      180deg,
      rgba(17, 86, 189, 0) 0%,
      var(--StaticSurface-Container-Brand, rgba(17, 86, 189, 0.6)) 82.95%
    ),
    linear-gradient(180deg, rgba(31, 53, 102, 0) 0%, var(--PrimitiveColors-Mono-900, #191919) 54.79%);
  background-blend-mode: multiply, normal, normal;
  left: 0;
  bottom: 0;
}

.reason__heading h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75px;
  margin-inline: auto;
  color: var(--StaticText-Main-White, #fff);
  text-align: center;
  font-family: var(--ff_mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
  -webkit-padding-after: 16px;
  padding-block-end: 16px;
}
@media (min-width: 768px) {
  .reason__heading h2 {
    font-size: 32px;
  }
}

.reason__heading h2 b {
  font-family: var(--ff_mincho);
  font-weight: 600;
}

.reason__heading h2 span {
  display: block;
  -webkit-margin-after: 4px;
  margin-block-end: 4px;
  color: var(--StaticText-Main-White, #fff);
  text-align: center;
  font-family: var(--ff_mincho);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
@media (min-width: 768px) {
  .reason__heading h2 span {
    font-size: 22px;
  }
}

.reason__heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 102, 255, 0)),
    color-stop(15%, #0066ff),
    color-stop(25%, #9de9ed),
    color-stop(50%, #30bfc9),
    color-stop(75%, #0066ff),
    color-stop(85%, #1f4599),
    to(rgba(31, 69, 153, 0))
  );
  background: linear-gradient(
    to right,
    rgba(0, 102, 255, 0) 0%,
    #0066ff 15%,
    #9de9ed 25%,
    #30bfc9 50%,
    #0066ff 75%,
    #1f4599 85%,
    rgba(31, 69, 153, 0) 100%
  );
}

.reason__content {
  background-color: #f0f3ff;
  -webkit-padding-after: 32px;
  padding-block-end: 32px;
}

.reason__container {
  position: relative;
  -webkit-margin-before: -50px;
  margin-block-start: -50px;
}

.reason__container > * + * {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}

.reason__card {
  border-radius: 4px;
  background: var(--StaticSurface-Container-White, #fff);
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  padding-block: 12px 24px;
  padding-inline: 16px 12px;
  position: relative;
  overflow: hidden;
}

.reason__card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background:
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 102, 255, 0)),
      color-stop(20%, #244dc7),
      color-stop(25%, #72d8db),
      color-stop(40%, #244dc7),
      color-stop(80%, #1f3566),
      to(rgba(31, 69, 153, 0))
    ),
    #23348c;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 102, 255, 0) 0%,
      #244dc7 20%,
      #72d8db 25%,
      #244dc7 40%,
      #1f3566 80%,
      rgba(31, 69, 153, 0) 100%
    ),
    #23348c;
}

.reason__card img {
  display: block;
  width: 100%;
}

.reason__card h3 {
  margin-block: 12px 0;
  color: var(--StaticText-Main-Secondary, #333);
  font-size: 18px;
  line-height: 180%;
}
@media (min-width: 768px) {
  .reason__card h3 {
    font-size: 22px;
  }
}

.reason__card h3 b {
  display: inline-block;
  padding-block: 1px;
  padding-inline: 4px;
  border-radius: 2px;
  background: var(--PrimitiveColors-RAG_Blue-900, #081c4d);
  color: #fff;
  font-family: var(--ff_mincho);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  -webkit-margin-end: 4px;
  margin-inline-end: 4px;
}
@media (min-width: 768px) {
  .reason__card h3 b {
    padding-block: 2px 1px;
    padding-inline: 5px 4px;
    font-size: 26px;
  }
}

.reason__card h3 sup {
  font-size: 8px;
  font-weight: 300;
  line-height: 140%;
  top: -1em;
  left: 0.4em;
}

@media (max-width: 366px) {
  .reason__card h3 .sp-hide {
    display: none;
  }
  .reason__card h3 .pc-hide {
    display: none;
  }
}

.reason__card_text {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--StaticText-Main-Secondary, #333);
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .reason__card_text {
    font-size: 14px;
  }
}

.reason__card_text b {
  color: var(--StaticText-Main-Primary, #1f3566);
  font-weight: 600;
}

.reason__card_text sup {
  font-size: 8px;
}

.reason__note {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--StaticText-Main-Caption, #4d4d4d);
  font-size: 10px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0.02em;
}

/* -------------------
faq
------------------- */
.faq {
  padding-block: 40px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--PrimitiveColors-RAG_Blue-900, #081c4d)),
    to(var(--PrimitiveColors-Mono-900, #191919))
  );
  background: linear-gradient(
    180deg,
    var(--PrimitiveColors-RAG_Blue-900, #081c4d) 0%,
    var(--PrimitiveColors-Mono-900, #191919) 100%
  );
}
@media (min-width: 768px) {
  .faq {
    width: 648px;
    margin-inline: auto;
  }
}

.faq__container {
  padding-block: 16px;
  padding-inline: 16px;
  border-radius: 16px;
  background: var(--PrimitiveColors-White-000, #fff);
}

.faq__list {
  margin-block: 0;
}

.faq__list dt {
  display: block;
  position: relative;
  background: var(--StaticSurface-Container-Base, #f5f6fa);
  padding-block: 8px;
  padding-inline: 28px 8px;
  color: var(--StaticText-Main-Primary, #1f3566);
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.faq__list dt::before {
  position: absolute;
  left: 8px;
  top: 8px;
  content: "Q.";
  color: var(--PrimitiveColors-Yellow-600, #b28917);
  font-family: var(--Font-family-en, Roboto);
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.02em;
}

.faq__list dd + dt {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}

.faq__list dd {
  padding-block: 8px 16px;
  padding-inline: 8px;
  border-bottom: 1px solid var(--StaticStroke-Main-Divider, #e5e5e5);
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  color: var(--StaticText-Main-Secondary, #333);
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.02em;
}

/* -------------------
note
------------------- */
.note {
  padding-block: 12px;
  background: var(--StaticSurface-Container-Base, #f5f6fa);
  position: relative;
}
@media (min-width: 768px) {
  .note {
    width: 648px;
    margin-inline: auto;
  }
}
.note__text {
  color: var(--StaticText-Main-Caption, #4d4d4d);
  font-size: 10px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0.02em;
}

.note__text + .note_text {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
}

/* 下にfloatingを配置するための背景 */
.note::after {
  position: absolute;
  bottom: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 100vh;
  height: 65px;
  background: var(--StaticSurface-Container-Base, #f5f6fa);
}
@media (min-width: 768px) {
  .note::after {
    background-color: #1156bd;
  }
}

/* -------------------
button
------------------- */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding-inline: 24px;
  min-height: 48px;
  min-width: 140px;
  max-width: 220px;
  width: 100%;
  border-radius: 12px;
}

.button.new {
  background: #d84001;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(134, 55, 4, 0.3);
  box-shadow: 0px 1px 2px 0px rgba(134, 55, 4, 0.3);
  color: var(--Object-White, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.button.new:hover {
  background: var(--Surface-Interactive-Primary-hover);
}
