@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #293650;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1080px;
  --width-content-l: 1280px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.7;
  font-size: 16px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-ptb {
  padding: 50px 0 64px;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 60px 0 80px;
  }
}

.u-text-link {
  text-decoration: underline;
  font-size: 12px !important;
}
@media screen and (min-width: 768px) {
  .u-text-link {
    font-size: 14px !important;
  }
}

.solution-arrow {
  margin: 32px auto 24px;
  width: 112px;
}
@media screen and (min-width: 768px) {
  .solution-arrow {
    margin: 40px auto 24px;
  }
}

.solution-business {
  padding: 18px 16px;
  border-radius: 8px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .solution-business {
    padding: 32px 63px;
  }
}
.solution-business p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .solution-business p {
    font-size: 20px;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  max-width: 380px;
  height: 80px;
  position: relative;
  overflow: hidden;
  transition: scale 0.3s;
}
.c-button::before {
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.c-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  mask-image: url("../img/icon-arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button:hover {
    scale: 1.02;
  }
}
.c-button.--orange {
  background: linear-gradient(90deg, #ed7530 0%, #f9a34c 100%);
}
.c-button.--blue {
  background: linear-gradient(90deg, #005be1 0%, #4c9ce7 100%);
}
.c-button.--large {
  height: 80px;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .c-button.--large {
    max-width: 600px;
    height: 104px;
  }
}
.c-button.--large .c-button-text01 {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-button.--large .c-button-text01 {
    font-size: 24px;
  }
}
.c-button.--large .c-button-text02 {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-button.--large .c-button-text02 {
    font-size: 18px;
  }
}
.c-button > * {
  position: relative;
  z-index: 2;
}

.c-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
}

.c-button-text01 {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-button-text01 {
    font-size: 20px;
  }
}

.c-button-text02 {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-button-text02 {
    font-size: 14px;
  }
}

.c-button-small {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  width: 100%;
  height: 48px;
  position: relative;
  overflow: hidden;
  transition: scale 0.3s;
  font-weight: bold;
  font-size: 14px;
}
.c-button-small::before {
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.c-button-small::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1/1;
  mask-image: url("../img/icon-arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button-small:hover {
    scale: 1.02;
  }
}
.c-button-small.--orange {
  background: linear-gradient(90deg, #ed7530 0%, #f9a34c 100%);
}
.c-button-small.--blue {
  background: linear-gradient(90deg, #005be1 0%, #4c9ce7 100%);
}

.c-button-skeleton {
  border: 1px solid #fff;
  width: 100%;
  max-width: 340px;
  height: 56px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: scale 0.3s;
}
@media (any-hover: hover) {
  .c-button-skeleton:hover {
    scale: 1.02;
  }
}
.c-button-skeleton::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  mask-image: url("../img/icon-arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-button-skeleton {
    font-size: 18px;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 32px;
  }
}
.c-title > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title > span {
    display: inline;
  }
}
.c-title.--white {
  color: #fff;
}

.c-title-blue {
  color: #1e62c8;
}

/*!
component > cta
------------------------------
*/
.cta {
  background-image: url(../img/cta-bg-sp.png);
  background-size: cover;
  background-position: center;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 32px 0 40px;
    background-image: url(../img/cta-bg.png);
  }
}

.cta-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .cta-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1080px) {
  .cta-title {
    font-size: 32px;
  }
}
.cta-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .cta-title span:nth-child(2), .cta-title span:nth-child(3) {
    display: inline;
  }
}

.cta-button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .cta-button {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    max-width: 784px;
    margin-top: 24px;
    margin-inline: auto;
  }
}
.cta-button > * {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-button > *:last-child {
    grid-column: 1/-1;
  }
}

/*!
layout > container
------------------------------
*/
.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

.l-container-l {
  width: min(90%, var(--width-content-l));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  --header-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 5;
  background-color: #fff;
  box-shadow: 0px 4px 16px rgba(56, 63, 73, 0.1);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 0 16px;
  }
}
@media screen and (min-width: 1080px) {
  .l-header {
    padding: 0 80px;
  }
}

.l-header-logo {
  width: 100%;
  max-width: 218px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    max-width: 200px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-logo {
    max-width: 263px;
  }
}

.l-header-menu {
  position: fixed;
  left: auto;
  right: 0;
  top: var(--header-height);
  width: 100%;
  height: calc(100% - var(--header-height));
  background-color: rgba(0, 0, 0, 0.6);
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    position: static;
    display: block;
    opacity: 1 !important;
    width: auto;
    height: auto;
    background-color: transparent;
    margin: 0;
  }
}

.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-nav {
  width: 100%;
  background-color: #fff;
  padding: 20px 20px 28px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-nav {
    width: auto;
    background-color: transparent;
    padding: 0;
    color: var(--color-font-base);
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header-menu-list {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.l-header-menu-item a {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item .l-header-button {
    width: 170px;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-menu-item .l-header-button {
    width: 188px;
  }
}

@media screen and (min-width: 1080px) {
  .l-header-text-link {
    margin-right: 8px;
  }
}

.l-header-menu-item-link {
  display: block;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item-link {
    display: inline-block;
    text-decoration: none;
  }
}

/* ハンバーガーボタン */
.l-header-menu-open-button,
.l-header-menu-close-button {
  width: var(--header-height);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.l-header-menu-open-button img,
.l-header-menu-close-button img {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-close-button {
  position: absolute;
  right: 0;
  top: calc(var(--header-height) * -1);
  outline: none;
  z-index: var(--z-index-header);
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  background-color: #fff;
  padding: 24px 0;
}

.l-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  max-width: 760px;
  margin-inline: auto;
}

.l-footer-item a {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .l-footer-item a {
    font-size: 16px;
  }
}
.l-footer-item::after {
  content: "/";
  margin: 0 16px;
}
.l-footer-item:last-child::after {
  content: none;
}

.l-footer-copyright {
  font-size: 13px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    margin-top: 16px;
  }
}

/*!
page > kv
------------------------------
*/
.kv {
  padding: 0 0 24px;
  overflow: hidden;
  background-color: #0045ad;
}
@media screen and (min-width: 1080px) {
  .kv {
    background-image: url(../img/kv-bg.png);
    background-size: cover;
    background-position: center;
    padding: 0;
  }
}

.kv-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1080px) {
  .kv-inner {
    width: 90%;
    max-width: 1280px;
    margin-inline: auto;
    grid-template-columns: 1fr 40%;
    align-items: center;
    gap: 24px;
  }
}

.kv-main {
  color: #fff;
  order: 2;
}
@media screen and (min-width: 1080px) {
  .kv-main {
    order: initial;
  }
}

.kv-main-inner {
  width: 90%;
  margin-inline: auto;
  translate: 0 -24px;
}
@media screen and (min-width: 1080px) {
  .kv-main-inner {
    width: auto;
    translate: 0 0;
    padding: 64px 0 40px;
  }
}

.kv-title {
  margin-left: 8px;
  position: relative;
}
.kv-title > span {
  position: relative;
  z-index: 2;
}
.kv-title > span > span {
  display: block;
  font-weight: 700;
  line-height: 1.4;
}
.kv-title > span > span:nth-child(1) {
  font-size: 20px;
}
@media screen and (min-width: 1080px) {
  .kv-title > span > span:nth-child(1) {
    font-size: 26px;
  }
}
.kv-title > span > span:nth-child(2) {
  font-size: 23px;
  margin-top: 6px;
}
@media screen and (min-width: 1080px) {
  .kv-title > span > span:nth-child(2) {
    font-size: 34px;
  }
}
.kv-title > span > span:nth-child(3) {
  font-size: 38px;
  margin-top: 16px;
  position: relative;
  padding: 0 12px;
  width: fit-content;
}
.kv-title > span > span:nth-child(3)::before, .kv-title > span > span:nth-child(3)::after {
  content: "";
  width: 19px;
  height: 33px;
  display: block;
  position: absolute;
}
.kv-title > span > span:nth-child(3)::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  top: 4px;
  left: -2px;
}
.kv-title > span > span:nth-child(3)::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  bottom: 0;
  right: -10px;
}
@media screen and (min-width: 1080px) {
  .kv-title > span > span:nth-child(3) {
    font-size: 64px;
  }
}
.kv-title::before {
  content: "";
  display: block;
  width: 100vw;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 69, 173, 0) 0%, #0045ad 60%, #0045ad 100%);
  position: absolute;
  left: -7vw;
  top: -33px;
}
@media screen and (min-width: 1080px) {
  .kv-title::before {
    display: none;
  }
}

.kv-text {
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 6px;
  border-radius: 8px;
  margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .kv-text {
    padding: 16px 24px;
    margin-top: 24px;
  }
}

.kv-text-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 1080px) {
  .kv-text-title {
    font-size: 18px;
  }
}
.kv-text-title span {
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .kv-text-title span {
    font-size: 14px;
  }
}

.kv-text-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .kv-text-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .kv-text-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media screen and (min-width: 1300px) {
  .kv-text-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.kv-text-item {
  text-align: center;
  padding: 14px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(93deg, #043f87 39.65%, #22599c 115.86%);
  font-size: 16px;
}
.kv-text-item p {
  line-height: 1.55;
}
.kv-text-item p > span {
  display: block;
}

.kv-text-item-number {
  text-decoration: underline;
}

.kv-text-note {
  opacity: 0.8;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 1080px) {
  .kv-text-note {
    font-size: 14px;
  }
}

.kv-people {
  background-image: url(../img/kv-bg.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1080px) {
  .kv-people {
    align-self: end;
    background-image: none;
  }
}
.kv-people img {
  aspect-ratio: 972/750;
  max-width: 500px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .kv-people img {
    aspect-ratio: 1038/1048;
  }
}

.kv-cta {
  padding: 22px 0;
  background: #d2e2f9;
}
@media screen and (min-width: 768px) {
  .kv-cta {
    padding: 32px 0;
  }
}

.kv-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .kv-cta-inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.solution {
  background-color: #f2f6fc;
}

.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .solution-cards {
    margin-top: 40px;
  }
}

.solution-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .solution-card {
    padding: 37px 47px;
  }
}
@media screen and (min-width: 1080px) {
  .solution-card {
    display: grid;
    grid-template-columns: 1fr 740px;
    align-items: center;
    gap: 40px;
  }
}

.solution-card-header {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1080px) {
  .solution-card-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (min-width: 1080px) and (min-width: 1080px) {
  .solution-card-header img {
    width: 112px;
    margin-inline: auto;
  }
}

.solution-card-title {
  color: #1e62c8;
  font-weight: 700;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .solution-card-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .solution-card-title {
    text-align: center;
  }
}

.solution-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
@media screen and (min-width: 1080px) {
  .solution-card-list {
    margin-top: 0;
  }
}

.solution-card-item {
  padding: 8px 16px;
  background-color: #eff3f9;
  border-radius: 4px;
}
.solution-card-item p {
  color: #293650;
  line-height: 1.6;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .solution-card-item p {
    font-size: 16px;
  }
}
.solution-card-item p:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.feature {
  background-image: url(../img/feature-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1080px) {
  .feature {
    background-image: url(../img/feature-bg.png);
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .feature-cards {
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1080px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .feature-card {
    display: grid;
    grid-template-columns: 26% 1fr;
    align-items: center;
  }
}

@media screen and (min-width: 1080px) {
  .feature-card-img {
    height: 100%;
  }
}
.feature-card-img img {
  aspect-ratio: 335/152;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .feature-card-img img {
    aspect-ratio: 284/188;
  }
}

.feature-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1080px) {
  .feature-card-body {
    padding: 20px 40px;
    gap: 12px;
  }
}

.feature-card-title {
  color: #1e62c8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .feature-card-title {
    font-size: 20px;
  }
}

.feature-card-text {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .feature-card-text {
    font-size: 16px;
  }
}

.freelancer {
  background: linear-gradient(90deg, rgb(0, 91, 225) 0%, rgb(76, 156, 231) 100%);
}
.freelancer .splide {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .freelancer .splide {
    margin-top: 40px;
  }
}
.freelancer .splide__arrows .splide__arrow {
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  width: 54px;
  height: 54px;
  border-radius: 40px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
}
.freelancer .splide__arrows .splide__arrow:disabled {
  opacity: 0.3;
}
.freelancer .splide__arrows .splide__arrow svg {
  width: 18px;
  fill: #1e62c8;
}
.freelancer .splide__arrows .splide__arrow--prev {
  left: -4%;
}
.freelancer .splide__arrows .splide__arrow--prev svg {
  rotate: 180deg;
}
.freelancer .splide__arrows .splide__arrow--next {
  right: -4%;
}
@media screen and (min-width: 1440px) {
  .freelancer .splide__arrows .splide__arrow--prev {
    left: -78px;
  }
  .freelancer .splide__arrows .splide__arrow--next {
    right: -78px;
  }
}
.freelancer .splide__pagination {
  margin-top: 24px;
  height: 13px;
}
@media screen and (min-width: 768px) {
  .freelancer .splide__pagination {
    margin-top: 40px;
  }
}
.freelancer .splide__pagination li {
  display: grid;
  place-items: center;
}
.freelancer .splide__pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: #fff;
  margin: 0 7.5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.freelancer .splide__pagination .splide__pagination__page.is-active {
  width: 13px;
  height: 13px;
  transform: none;
}

.freelancer-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 28px 20px 36px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .freelancer-card {
    padding: 28px 20px 36px;
  }
}

.freelancer-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.freelancer-card-avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.freelancer-card-avatar img {
  border-radius: 50%;
}

.freelancer-card-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}

.freelancer-card-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #1e62c8;
  margin-bottom: 12px;
  font-weight: bold;
}

.freelancer-card-highlight {
  background-color: #1e62c8;
  border-radius: 4px;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.55;
  font-weight: bold;
}
.freelancer-card-highlight span {
  font-size: 18px;
  color: #fff;
}

.freelancer-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 0 6px;
}

.freelancer-card-tag {
  font-size: 15px;
  color: #1e62c8;
}
.freelancer-card-tag::before {
  content: "#";
  display: inline-block;
  margin-right: 4px;
}

.freelancer-card-description {
  font-size: 16px;
  margin-top: 10px;
}

.freelancer-button {
  display: grid;
  place-items: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .freelancer-button {
    margin-top: 40px;
  }
}

.voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .voice-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
    margin-top: 40px;
  }
}

@media (any-hover: hover) {
  .voice-item a:hover img {
    scale: 1.02;
  }
}

.voice-item-image {
  overflow: hidden;
  aspect-ratio: 518/289;
  border-radius: 8px;
  overflow: hidden;
}
.voice-item-image img {
  aspect-ratio: 518/289;
  object-fit: cover;
  transition: scale 0.3s;
}

.voice-item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.voice-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #1e62c8;
}
@media screen and (min-width: 768px) {
  .voice-item-title {
    font-size: 20px;
  }
}

.voice-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.voice-item-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  font-size: 16px;
}

.price {
  background: #f2f6fc;
}

.price-head-text {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-head-text {
    margin-top: 40px;
    font-size: 24px;
  }
}
.price-head-text > span {
  display: block;
}

.price-head-text-number {
  color: #1e62c8;
}

.price-tabmenu {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .price-tabmenu {
    margin-top: 40px;
  }
}

.price-tabmenu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .price-tabmenu-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-tab {
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 4px;
  background: rgba(30, 98, 200, 0.1);
  color: rgba(41, 54, 80, 0.3);
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .price-tab {
    padding: 12px 0;
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .price-tab:hover {
    color: rgba(41, 54, 80, 0.8);
  }
}
.price-tab.is-active {
  background-color: #1e62c8;
  color: #fff;
  font-weight: bold;
}

.price-tabmenu-contents-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .price-tabmenu-contents-wrap {
    margin-top: 40px;
  }
}

.price-tabmenu-contents {
  display: none;
}
.price-tabmenu-contents.is-active {
  display: block;
}

.price-box-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media screen and (min-width: 1080px) {
  .price-box-wrap {
    grid-template-columns: 1fr 61px 1fr;
    gap: 28px;
  }
}

.price-box {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.price-box-head {
  background-color: #1e62c8;
  padding: 16px 0;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .price-box-head {
    font-size: 24px;
  }
}
.price-box-head.--light {
  background-color: #4798e7;
}
.price-box-head span {
  font-size: 16px;
}

.price-box-content {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .price-box-content {
    padding: 20px 24px;
  }
}

.price-box-label {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-box-label {
    font-size: 20px;
  }
}

.price-box-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .price-box-price {
    line-height: 1;
  }
}

.price-box-price-number {
  font-size: 32px;
  font-weight: 700;
  color: #1e62c8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-box-price-number {
    font-size: 60px;
  }
}

.price-box-price-unit {
  font-size: 18px;
  color: #1e62c8;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .price-box-price-unit {
    font-size: 24px;
  }
}

.price-box-note {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .price-box-note {
    margin-top: 20px;
  }
}

.price-add {
  width: 36px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .price-add {
    width: 61px;
    align-self: center;
  }
}

.price-cta-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .price-cta-title {
    font-size: 24px;
  }
}
.price-cta-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .price-cta-title span {
    display: inline;
  }
}
.price-cta-title span:first-child {
  color: #1e62c8;
}

.price-cta {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .price-cta {
    margin-top: 40px;
  }
}

.price-button {
  display: grid;
  place-items: center;
  margin-top: 16px;
}

.flow {
  background: #e5eefb;
}

.flow-content {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: repeat(6, 1fr);
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .flow-content {
    margin-top: 40px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
  }
}

.flow-period {
  writing-mode: vertical-rl;
  width: 30px;
  color: #fff;
  background-color: #568ddf;
  font-weight: bold;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin: 16px 0;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .flow-period {
    writing-mode: inherit;
    width: auto;
    height: 38px;
    font-size: 16px;
    margin: 0 16px;
  }
}
.flow-period::before, .flow-period::after {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  background-color: #568ddf;
}
.flow-period::before {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: -15.5px;
}
@media screen and (min-width: 1080px) {
  .flow-period::before {
    clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
    width: 16px;
    height: 38px;
    top: 0;
    left: -15.5px;
  }
}
.flow-period::after {
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  bottom: -15.5px;
}
@media screen and (min-width: 1080px) {
  .flow-period::after {
    clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
    width: 16px;
    height: 38px;
    bottom: 0;
    left: auto;
    right: -15.5px;
  }
}
.flow-period:nth-child(1) {
  grid-row: 1/-1;
  grid-column: 1/2;
  background-color: #1e62c8;
}
.flow-period:nth-child(1)::before, .flow-period:nth-child(1)::after {
  background-color: #1e62c8;
}
@media screen and (min-width: 1080px) {
  .flow-period:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/-1;
  }
}
.flow-period:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media screen and (min-width: 1080px) {
  .flow-period:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.flow-period:nth-child(3) {
  grid-row: 3/5;
  grid-column: 2/3;
}
@media screen and (min-width: 1080px) {
  .flow-period:nth-child(3) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
.flow-period:nth-child(4) {
  grid-row: 5/6;
  grid-column: 2/3;
}
@media screen and (min-width: 1080px) {
  .flow-period:nth-child(4) {
    grid-column: 5/6;
    grid-row: 2/3;
  }
}

.flow-period-number {
  text-combine-upright: all;
}

.flow-steps {
  display: contents;
  counter-reset: flow-counter;
}

.flow-step {
  grid-column: 3/4;
  border-radius: 4px;
  background: #fff;
  padding: 32px 4px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  counter-increment: flow-counter;
}
.flow-step::before {
  content: "0" counter(flow-counter);
  display: block;
  color: #1e62c8;
  font-size: 15px;
}
@media screen and (min-width: 1080px) {
  .flow-step:nth-child(1) {
    grid-column: 1/2;
  }
  .flow-step:nth-child(2) {
    grid-column: 2/3;
  }
  .flow-step:nth-child(3) {
    grid-column: 3/4;
  }
  .flow-step:nth-child(4) {
    grid-column: 4/5;
  }
  .flow-step:nth-child(5) {
    grid-column: 5/6;
  }
  .flow-step:nth-child(6) {
    grid-column: 6/7;
  }
}

.flow-step-badge {
  position: absolute;
  top: 5px;
  right: 7px;
  background-color: #d83030;
  border-radius: 4px;
  padding: 2px 8px;
  color: #fff;
  font-size: 12px;
}

.flow-step-text {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (min-width: 1200px) {
  .flow-step-text {
    font-size: 16px;
  }
}

/*!
page > faq
------------------------------
*/
.faq {
  background: #f8f8f8;
}

.faq-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .faq-inner {
    gap: 40px;
  }
}

.faq-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-summary {
  cursor: pointer;
  background: #fff;
  display: block;
  padding: 16px;
  font-weight: bold;
  position: relative;
  border-radius: 8px;
}

.faq-q-text {
  display: flex;
}
.faq-q-text::before {
  content: "Q.";
  font-weight: normal;
  display: inline-block;
  color: #1e62c8;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-a-text {
  display: flex;
}
.faq-a-text::before {
  content: "A.";
  font-weight: normal;
  display: inline-block;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.faq-icon span {
  content: "";
  display: block;
  background-color: var(--color-font-base);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon span:nth-child(1) {
  width: 100%;
  height: 2px;
}

.faq-icon span:nth-child(2) {
  width: 2px;
  height: 100%;
  transition: 0.3s;
}

.faq-details[open] .faq-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-details.is-open .faq-summary {
  border-radius: 8px 8px 0 0;
}
.faq-details.is-open .faq-contents {
  border-radius: 0 0 8px 8px;
}

.faq-contents {
  background-color: #f2f6fc;
  overflow: hidden;
  border-radius: 8px;
}

.faq-contents-inner {
  padding: 16px;
}

/*!
page > contact
------------------------------
*/
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .contact-inner {
    gap: 40px;
  }
}

.contact-body {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */