@charset "UTF-8";
:root {
  /* カラー設定 */
  --primary-color: #1447E6;
  --secondary-color: #101828;
  --accent-color: #1447E6;
  --back-color: #1F3979;
  --white-color: #FFFFFF;
  --right-gray-color: #F6F6F6;
  /* グラデーション */
  --gradation-1: linear-gradient(to bottom right, #155DFC, #0092B8);
  --gradation-2: linear-gradient(to bottom right, #EFF6FF, #ECFEFF);
}

/*----------------------------------------------------------*/
/* トップページ */
/*----------------------------------------------------------*/
/*---
mv
---*/
.mv {
  height: 57vw;
  min-height: 790px;
  background-image: url(../images/mv_pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 680px;
    min-height: inherit;
  }
}
.mv__content {
  width: 100%;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  color: var(--white-color);
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .mv__content {
    padding: 0 20px;
    gap: 20px;
    margin-top: 0px;
  }
}
.mv__content h2 {
  font-size: 6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mv__content h2 {
    font-size: 3.2rem;
  }
}
.mv__content h2 span {
  font-size: 6.8rem;
}
@media screen and (max-width: 768px) {
  .mv__content h2 span {
    font-size: 4.4rem;
  }
}
.mv__content .link-btn {
  justify-content: flex-start;
}
.mv__content .link-btn a {
  max-width: fit-content;
  padding-left: 24px;
  padding-right: 24px;
}

/*---
section-copy
---*/
.section-copy .sec-title h2 {
  margin-top: 8px;
}

/*---
section-reasons
---*/
.section-reasons__list {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
@media screen and (max-width: 768px) {
  .section-reasons__list {
    grid-template-columns: 1fr;
  }
}
.section-reasons__item {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section-reasons__item {
    padding: 20px;
  }
}
.section-reasons__item__title-height {
  min-height: 60px;
}
@media screen and (max-width: 768px) {
  .section-reasons__item__title-height {
    min-height: unset;
  }
}

/*---
section-function
---*/
.section-function__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .section-function__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .section-function__list {
    grid-template-columns: 1fr;
    width: 80%;
    margin: auto;
    gap: 20px;
  }
}
.section-function__item {
  padding: 24px 32px;
}
.section-function__item__icon {
  display: block;
  width: fit-content;
  margin: auto;
}

/*---
section-value
---*/
.section-value__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 32px;
}
@media screen and (max-width: 768px) {
  .section-value__list {
    grid-template-columns: 1fr;
  }
}
.section-value__item {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section-value__item {
    padding: 20px;
  }
}
.section-value__item__title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-value__item__list {
  display: grid;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .section-value__item__list {
    gap: 4px;
  }
}
.section-value__item__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.section-value__item__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  min-width: 6px;
  height: 6px;
  min-height: 6px;
  border-radius: 100%;
  background-color: var(--accent-color);
}

/*---
section-skills
---*/
.section-skills {
  background-color: #F6F6F6;
}
.section-skills__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .section-skills__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .section-skills__list {
    grid-template-columns: 1fr;
    width: 80%;
    margin: auto;
    gap: 20px;
  }
}
.section-skills__item {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .section-skills__item {
    padding: 20px;
  }
}

/*---
section-poc
---*/
.section-poc__target {
  width: 100%;
  max-width: 768px;
  margin: auto;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section-poc__target {
    padding: 20px;
  }
}
.section-poc__target__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .section-poc__target__title {
    align-items: flex-start;
  }
}
.section-poc__target__title__text {
  display: grid;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .section-poc__target__title__text {
    gap: 8px;
  }
}
.section-poc__faq {
  width: 100%;
  max-width: 768px;
  margin: auto;
}
.section-poc__faq__title {
  display: flex;
  gap: 12px;
}
.section-poc__faq .accordion {
  display: grid;
  gap: 16px;
}
.section-poc__faq .accordion__wrapper {
  border: solid 1px #DCDCDC;
}
.section-poc__faq .accordion-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-poc__faq .accordion-header {
    padding: 16px;
    gap: 16px;
  }
}
.section-poc__faq .accordion-header h5 {
  max-width: 86%;
}
@media screen and (max-width: 500px) {
  .section-poc__faq .accordion-header h5 {
    max-width: 92%;
  }
}
.section-poc__faq .accordion-header::after {
  content: "";
  background-image: url("../images/accordion_arrow.svg");
  display: block;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .section-poc__faq .accordion-header::after {
    width: 16px;
    height: 16px;
  }
}
.section-poc__faq .accordion-header::after {
  transform: rotate(-180deg);
  transition: transform 0.3s;
}
.section-poc__faq .accordion-header.active::after {
  transform: rotate(0deg);
}
.section-poc__faq .accordion-content {
  display: none;
  padding: 0 24px 24px;
}
@media screen and (max-width: 768px) {
  .section-poc__faq .accordion-content {
    padding: 0 16px 16px;
  }
}

/*---
section-cta
---*/
/*---
section-overview
---*/
.section-overview__list {
  width: 100%;
  max-width: 768px;
  margin: auto;
  background-color: var(--white-color);
}
.section-overview__item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-bottom: solid 1px #E5E7EB;
}
@media screen and (max-width: 768px) {
  .section-overview__item {
    padding: 16px;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .section-overview__item img {
    width: 40px;
    height: 40px;
  }
}
.section-overview__item:last-of-type {
  border-bottom: none;
}

/*----------------------------------------------------------*/
/* 下層ページ_共通 */
/*----------------------------------------------------------*/
.page {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 52px;
  }
}

/*----------------------------------------------------------*/
/* お問い合わせページ */
/*----------------------------------------------------------*/
.page-contact {
  background-color: #F6F6F6;
}
.page-contact .form {
  background-color: var(--white-color);
  padding: 40px;
  width: 100%;
  max-width: 768px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-contact .form {
    padding: 24px 16px;
  }
}
.page-contact .form .form-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page-contact .form .form-title {
    margin-bottom: 8px;
  }
}
.page-contact .form .form-title__required {
  color: #FB2C36;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}
.page-contact .form__privacy {
  font-weight: 400;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .form__privacy-link {
  color: #155DFC;
  text-decoration: underline;
  margin-left: 12px;
}
.page-contact__terms {
  color: #6A7282;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-contact__terms {
    margin-top: 0;
  }
}
.page-contact__terms a {
  text-decoration: underline;
}
.page-contact select,
.page-contact input,
.page-contact textarea {
  border: solid 1px #DCDCDC;
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-contact select,
  .page-contact input,
  .page-contact textarea {
    padding: 12px;
    border-radius: 8px;
    font-size: 1.4rem;
  }
}
.page-contact select::placeholder,
.page-contact input::placeholder,
.page-contact textarea::placeholder {
  font-size: 1.6rem;
  color: #B8B8B8;
}
@media screen and (max-width: 768px) {
  .page-contact select::placeholder,
  .page-contact input::placeholder,
  .page-contact textarea::placeholder {
    font-size: 1.4rem;
  }
}
.page-contact #inquiry_type.is-empty {
  color: #B8B8B8;
}
.page-contact textarea {
  height: 160px;
}
@media screen and (max-width: 768px) {
  .page-contact textarea {
    height: 140px;
  }
}
.page-contact .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-contact .select-wrap::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/form_select.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 26px;
  right: 3%;
}
@media screen and (max-width: 768px) {
  .page-contact .select-wrap::after {
    top: 20px;
  }
}
.page-contact input[type=submit] {
  background-color: var(--primary-color);
  border: none;
  border-radius: 12px;
  color: var(--white-color);
  width: 100%;
  margin: auto;
  margin-top: 32px;
  display: block;
  text-align: center;
  font-weight: 700;
}

/*----------------------------------------------------------*/
/* プライバシーポリシーページ */
/*----------------------------------------------------------*/
.page-privacy__content {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: grid;
}
.page-privacy__item {
  display: grid;
  gap: 1em;
}
.page-privacy__item ol {
  list-style: decimal;
}
@media screen and (max-width: 768px) {
  .page-privacy__item ol {
    margin-left: 1em;
  }
}
.page-privacy__item ol li {
  margin-left: 1.6rem;
}
.page-privacy__item ol li::marker {
  font-size: 1.6rem;
}

/*----------------------------------------------------------*/
/* 運営会社ページ */
/*----------------------------------------------------------*/
.page-company tbody {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page-company tbody {
    gap: 20px;
  }
}
.page-company tr {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-company tr {
    flex-direction: column;
    align-items: start;
  }
}
.page-company tr th {
  min-width: 200px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .page-company tr th {
    padding-right: 0;
    padding-bottom: 4px;
  }
}

/*----------------------------------------------------------*/
/* 404ページ*/
/*----------------------------------------------------------*/
.section-404 h2 {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .section-404 h2 {
    font-size: 5.2rem;
  }
}
.section-404__text {
  text-align: center;
}
.section-404 .top-link {
  border: solid 1px var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}

/*----------------------------------------------------------*/
/* thanksページ */
/*----------------------------------------------------------*/
.section-thanks {
  min-height: calc(100svh - 375px);
  display: flex;
}
.section-thanks__text {
  text-align: center;
}
.section-thanks .top-link {
  border: solid 1px var(--primary-color);
  color: var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}