@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
/* ============================
//_mixin.scss
============================ */
/* ============================
 SP / base.scss
============================ */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.under-main {
  color: #1f2933;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

br {
  visibility: hidden;
}

.scroll {
  overflow-x: auto;
}

/* ============================
 SP / button.scss
============================ */
.button {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 250px;
  max-width: 400px;
  height: 54px;
  transform: translateZ(0);
  transition: background-position 0.3s ease;
  border-radius: 100px;
  background: linear-gradient(to right, #15b256, #008f43) left center/200% 100%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  will-change: background-position;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 12px;
  height: 12px;
  transition: 0.3s ease;
  -webkit-mask-image: url("../../images/icon_arrow.svg");
  mask-image: url("../../images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #fff;
}
.button--secondary {
  border: 2px solid #15b256;
  background: #fff;
  color: #008f43;
}
.button--secondary::after {
  display: none;
}
.button--02 {
  border: 2px solid #1f2933;
  background: #fff;
  color: #1f2933;
}
.button--02::after {
  background-color: #1f2933;
}

.button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  text-align: center;
}
.button-area__text {
  font-size: 16px;
  text-align: center;
}

.button-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

/* ============================
 SP / case.scss
============================ */
.case {
  padding-bottom: 40px;
  background: #f5f5f5;
}
.case__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.case__text {
  margin-top: 16px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.case__slide {
  padding: 32px 0;
  overflow: hidden;
}
.case__item {
  box-sizing: border-box;
  width: 232px;
  margin-right: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(31, 41, 51, 0.1);
}
.case__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 124px;
}
.case__image img {
  width: 100%;
  height: auto;
}
.case__title {
  text-align: center;
}
.case__action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: -80px auto 0;
  background: transparent;
}
.case__button {
  position: relative;
  z-index: 1;
  top: 0;
  right: 16px;
  width: 50px;
  height: 50px;
  transition: 0.3s ease;
  border: 2px solid #effaed;
  border-radius: 100px;
  background: linear-gradient(to right, #15b256, #008f43) left center/200% 100%;
  box-shadow: 0 0 8px 0 rgba(31, 41, 51, 0.5);
}
.case__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../../images/icon_pause.svg") no-repeat center center/contain;
}
.case__button.is-pause::before {
  background: url("../../images/icon_play.svg") no-repeat center/contain;
}
.case--logo {
  padding-top: 32px;
}
.case--logo .case__slide {
  padding: 0;
  background: #fff;
}
.case--logo .case__item {
  width: auto;
  margin: 0;
  box-shadow: none;
}
.case--logo .case__image {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 50px;
}
.case--logo .case__action {
  position: absolute;
  top: 50%;
  right: 0;
  margin: 0;
  transform: translateY(-50%);
}

.slick-track {
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

.case-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}
.case-column__item {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  transition: 0.3s ease;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(31, 41, 51, 0.1);
  color: #1f2933;
}
.case-column__item::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
  -webkit-mask-image: url("../../images/icon_arrow.svg");
  mask-image: url("../../images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #15b256;
}
.case-column__item:hover {
  background: #effaed;
  box-shadow: none;
}
.case-column__item:hover::after {
  right: 12px;
}
.case-column__image {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}
.case-column__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.case-column__title {
  margin-bottom: 8px;
  font-weight: bold;
}
.case-column__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  font-size: 12px;
}
.case-column__tag {
  position: relative;
  padding-left: 8px;
}
.case-column__tag::before {
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================
 SP / common.scss
============================ */
/* stylelint-disable-next-line selector-class-pattern */
.is-onlyPC {
  display: none;
}

/* stylelint-disable-next-line selector-class-pattern */
.is-onlySP {
  display: inline-block;
}

.pkz::after {
  filter: drop-shadow(0 5px 4px rgba(31, 41, 51, 0.05));
}

.marker {
  background: linear-gradient(transparent 70%, #fff600 70%);
}

.text-link {
  display: flex;
  justify-content: flex-end;
}
.text-link__item {
  position: relative;
  padding-right: 16px;
  color: #1f2933;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}
.text-link__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 12px;
  transition: 0.3s ease;
  -webkit-mask-image: url("../../images/icon_arrow.svg");
  mask-image: url("../../images/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #1f2933;
}

/* ============================
 SP / cv-contact.scss
============================ */
.cv {
  box-sizing: border-box;
  width: 100%;
  padding: 32px 24px;
  background: #1f2933;
  color: #fff;
}
.cv__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cv__heading {
  width: 100%;
}
.cv__point {
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cv__item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.cv__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 1px;
  background: #fff;
}
.cv__title, .cv__text {
  width: 100%;
}
.cv__title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 150px;
  margin-right: 32px;
  padding: 0 16px 0 8px;
  font-size: 12px;
}
.cv__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 27px;
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.cv__text {
  position: relative;
  box-sizing: border-box;
  padding-right: 8px;
  font-size: 16px;
  font-weight: bold;
}
.cv__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 5px;
  height: 27px;
  transform: translateY(-50%) scale(-1, 1);
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.cv__unit {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
.cv__sub {
  font-size: 12px;
}
.cv__button {
  display: flex;
  flex: 1 1 300px;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}
.cv__button .button {
  margin: 0 auto;
}
.cv__full {
  width: 100%;
}
.cv__full .cv__point {
  margin-bottom: 16px;
}
.cv__full .cv__item {
  position: relative;
  flex-direction: column;
}
.cv__full .cv__item::before, .cv__full .cv__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 43px;
}
.cv__full .cv__item::before {
  left: 0;
  margin: 0;
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.cv__full .cv__item::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.cv__full .cv__title {
  margin: 0;
  padding: 0;
  text-align: center;
}
.cv__full .cv__title::before {
  display: none;
}
.cv__full .cv__text::after {
  display: none;
}

/* ============================
 SP / faq.scss
============================ */
.faq {
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 40px;
  background: #f5f5f5;
}
.faq__contents {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  gap: 32px;
}
.faq__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px dotted #bebebe;
}
.faq__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.faq__title {
  position: relative;
  padding-left: 40px;
  color: #008f43;
  font-size: 18px;
  font-weight: bold;
}
.faq__title::before {
  content: "Q.";
  position: absolute;
  top: -6px;
  left: 0;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
}
.faq__answer {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 8px;
  padding-left: 40px;
}
.faq__answer::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

/* ============================
 SP / heading.scss
============================ */
.heading01 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 28px;
  line-height: 1.3;
}
.heading01 span {
  display: block;
  font-size: 14px;
}

.heading02 {
  color: #008f43;
  font-size: 24px;
  text-align: center;
}
.heading02--black {
  color: #1f2933;
}

.heading03 {
  font-size: 20px;
  text-align: center;
}

.heading04 {
  position: relative;
  margin-bottom: 6px;
  padding-left: 16px;
  font-size: 16px;
  font-weight: bold;
}
.heading04::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 20px;
  transform: translateY(-50%) rotate(25deg);
  background: #15b256;
}

.heading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  text-align: center;
}
.heading-center img {
  width: auto;
  height: 40px;
}

.heading-title {
  margin: 0 16px;
  font-size: 24px;
  text-align: center;
}
.heading-title__sub-title {
  display: inline-block;
  position: relative;
  font-size: 18px;
}
.heading-title__sub-title::before, .heading-title__sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  transform: translateY(-50%) rotate(25deg);
  background: #1f2933;
}
.heading-title__sub-title::before {
  left: -12px;
}
.heading-title__sub-title::after {
  right: -12px;
}
.heading-title__sub-title span {
  display: inline-block;
}
.heading-title__title {
  display: block;
}

.title-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.title-head__number {
  position: relative;
  margin-bottom: -8px;
  color: #15b256;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: bold;
}
.title-head__number span {
  margin-right: 8px;
  font-size: 20px;
}
.title-head__number::before, .title-head__number::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  transform: translateY(-50%) rotate(25deg);
  background: #15b256;
}
.title-head__number::before {
  left: -12px;
}
.title-head__number::after {
  right: -12px;
}
.title-head__title {
  margin-top: -4px;
  padding: 8px 24px;
  border-radius: 50px;
  background: #fff;
  color: #15b256;
  font-size: 14px;
  font-weight: bold;
}
.title-head__desc {
  font-size: 16px;
  text-align: left;
}

/* ============================
 SP language.scss
============================ */
.language {
  box-sizing: border-box;
  padding: 24px;
  border-radius: 16px;
  background: #effaed;
}
.language__box {
  box-sizing: border-box;
  margin: 0 -16px;
  padding: 16px;
  background: #effaed;
}
.language__box--aws {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  gap: 16px;
}
.language__box--ruby {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 16px;
}
.language__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.language__title {
  font-size: 18px;
  text-align: center;
}
.language__row {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0 0;
  gap: 16px;
}
.language__image {
  width: auto;
  height: 100px;
}

.language-item {
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
}
.language-item__title {
  color: #008f43;
  font-size: 14px;
  text-align: center;
}

.language-list {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  margin: 16px 0 0;
  gap: 8px;
}
.language-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc((100% - 16px) / 3);
  min-height: 80px;
  gap: 8px;
}
.language-list__image {
  width: auto;
  height: 40px;
}
.language-list__title {
  font-size: 12px;
}
.language-list__text {
  margin: 16px 0 0;
  font-size: 12px;
  text-align: center;
}

.language-case {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
}
.language-case__title {
  font-size: 18px;
  text-align: center;
}
.language-case__box {
  display: flex;
  flex-direction: column;
}
.language-case__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 8px 0 0;
  gap: 4px;
}
.language-case__text {
  width: 85px;
  font-size: 12px;
}
.language-case__achievements {
  color: #008f43;
  font-size: 12px;
}
.language-case__number {
  font-size: 28px;
}

.language-qualification {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
  gap: 16px;
}
.language-qualification:first-child {
  margin: 16px 0 0;
}
.language-qualification__title {
  flex: 1 1 auto;
  font-size: 12px;
}
.language-qualification__achievements {
  flex: 0 0 auto;
  color: #008f43;
  font-size: 12px;
}
.language-qualification__number {
  font-size: 16px;
}

/* ============================
 SP / license.scss
============================ */
.license {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
  border-radius: 8px;
  background: #fff;
}
.license__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-align: center;
}
.license__title span {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

/* ============================
 SP / hero.scss
============================ */
.hero {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
  padding: 128px 16px 0;
  background: #f5f5f5;
}
.hero__inner {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  gap: 24px;
}
.hero__box {
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  align-items: center;
}
.hero__button {
  margin-top: 24px;
}
.hero .heading01 {
  width: 100%;
}

.hero-point {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 24px 0 0;
}
.hero-point__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.hero-point__item-inner {
  position: relative;
}
.hero-point__item-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 1px;
  background: #1f2933;
}
.hero-point__title, .hero-point__text {
  width: 100%;
}
.hero-point__title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 150px;
  margin-right: 32px;
  padding: 0 16px 0 8px;
  font-size: 12px;
}
.hero-point__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 27px;
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.hero-point__text {
  position: relative;
  box-sizing: border-box;
  padding-right: 8px;
  font-size: 16px;
  font-weight: bold;
}
.hero-point__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 5px;
  height: 27px;
  transform: translateY(-50%) scale(-1, 1);
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.hero-point__unit {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}
.hero-point__sub {
  font-size: 12px;
}
.hero-point--full .hero-point__item {
  position: relative;
  flex-direction: column;
}
.hero-point--full .hero-point__item::before, .hero-point--full .hero-point__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 43px;
}
.hero-point--full .hero-point__item::before {
  left: 0;
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.hero-point--full .hero-point__item::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
  background: url("../../images/icon_parentheses.svg") no-repeat center center/contain;
}
.hero-point--full .hero-point__title {
  margin: 0;
  padding: 0;
  text-align: center;
}
.hero-point--full .hero-point__title::before {
  display: none;
}
.hero-point--full .hero-point__text::after {
  display: none;
}

.hero-lead {
  display: flex;
  flex: 1 1 200px;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.hero-lead__item {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex-grow: 1;
  align-items: center;
  padding: 8px 16px 8px 40px;
  border: 2px solid #15b256;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}
.hero-lead__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../../images/icon_check.svg");
  mask-image: url("../../images/icon_check.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #15b256;
}

/* ============================
 SP / item-box.scss
============================ */
.item-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.item-box--02 .item-box__item {
  padding: 32px;
  border-radius: 16px;
  background: #effaed;
}
.item-box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.item-box__item:last-of-type {
  padding-bottom: 0;
}
.item-box__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.item-box__icon {
  width: auto;
  height: 90px;
}
.item-box__pict {
  width: auto;
  height: 100%;
  max-height: 120px;
}
.item-box__title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.item-box__text {
  font-size: 14px;
}

.item-box-2column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.item-box-2column__box {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  background: #effaed;
  gap: 16px;
}
.item-box-2column__heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.item-box-2column__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px dotted #15b256;
}
.item-box-2column__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.item-box-2column__title {
  color: #008f43;
  font-weight: bold;
}

/* ============================
 SP / list.scss
============================ */
.list-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.list-text__item {
  position: relative;
  padding-left: 16px;
}
.list-text__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}

.list-function {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-function__item {
  display: flex;
  box-sizing: border-box;
  flex: 1 1 250px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}
.list-function__item span {
  display: block;
  font-size: 12px;
}
.list-function__category {
  color: #8c8c8c;
}

.list-function-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.list-function-row__box {
  width: 100%;
}
.list-function-row__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-function-row__item {
  display: flex;
  box-sizing: border-box;
  flex: 1 1 250px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  background: #effaed;
  font-size: 14px;
}

.list-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list-team__item {
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
}
.list-team__tag {
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
}
.list-team__tag--green {
  background: #15b256;
}
.list-team__tag--blue {
  background: #2f4ad1;
}
.list-team__tag--purple {
  background: #6f33bd;
}
.list-team__title {
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: bold;
}
.list-team__text {
  font-size: 14px;
}

/* ============================
 SP / panel.scss
============================ */
.panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.panel__item {
  display: flex;
  box-sizing: border-box;
  flex: 1 1 250px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #effaed;
  gap: 16px;
}
.panel__title {
  position: relative;
  color: #008f43;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.panel__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #15b256;
}
.panel__text {
  flex: 1;
  font-size: 14px;
}
.panel__member {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  text-align: center;
}
.panel__tag {
  position: relative;
}
.panel__tag::after {
  content: "｜";
  position: absolute;
  top: 0;
  right: -12px;
}
.panel__tag:last-child::after {
  display: none;
}
.panel__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 250px;
  max-width: 400px;
  padding: 16px 0;
  transition: 0.3s ease;
  border: 3px solid #15b256;
  border-radius: 50px;
  background: #fff;
  color: #008f43;
  font-size: 14px;
  font-weight: bold;
}

/* ============================
 SP / problem.scss
============================ */
.problem {
  padding-right: 16px;
  padding-left: 16px;
}
.problem__box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.problem__item {
  display: flex;
  position: relative;
  flex: 1 1 250px;
  flex-direction: column;
  gap: 16px;
  padding: 24px 24px 16px;
  border: 2px solid #15b256;
  border-radius: 8px;
}
.problem__label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 0 16px;
  transform: translateX(-50%);
  background: #fff;
  color: #15b256;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.problem__title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.problem__text {
  font-size: 14px;
}
.problem__text strong {
  font-size: 16px;
  font-weight: bold;
}

/* ============================
 SP / section.scss
============================ */
.section {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}
.section--white {
  background: #fff;
}
.section--white .section__contents {
  background: #f5f5f5;
}
.section__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}
.section__contents {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  gap: 16px;
}
.section__head {
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__lead {
  text-align: left;
}
.section__image {
  width: 100%;
  height: auto;
}
.section__text {
  font-size: 14px;
}
.section__box {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(31, 41, 51, 0.1);
  gap: 24px;
}
.section__block {
  flex-direction: column;
  padding-bottom: 24px;
  border-bottom: 1px dotted #bebebe;
}
.section__block:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.section__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* ============================
 SP / service.scss
============================ */
.service {
  padding-right: 16px;
  padding-left: 16px;
}
.service__contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.service__item {
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(31, 41, 51, 0.1);
  gap: 16px;
}
.service__title {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  padding: 16px 12px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.service__heading {
  font-size: 20px;
  text-align: center;
}
.service__heading span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.service__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

/* ============================
 SP / solution.scss
============================ */
.solution {
  display: flex;
  flex-direction: column;
  gap: 64px;
  background: #f5f5f5;
}
.solution__box {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  padding: 56px;
  border-radius: 16px;
  background: #fff;
  gap: 32px;
}

.solution-point {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.solution-point__item {
  position: relative;
  box-sizing: border-box;
  width: calc((100% - 16px) / 2);
  padding: 16px;
  border: 1px solid #bebebe;
  border-radius: 8px;
}
.solution-point__title {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 60px;
  padding: 0 16px;
  transform: translateX(-50%);
  background: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.solution-point__heading {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.solution-point__heading--user {
  color: #ef6d53;
}
.solution-point__heading--owner {
  color: #2f4ad1;
}
.solution-point__heading--outside {
  color: #6f33bd;
}
.solution-point__text {
  font-size: 14px;
}
.solution-point__text span {
  font-size: 14px;
  font-weight: bold;
}

.solution-head {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 8px;
}
.solution-head__icon {
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
}
.solution-head__icon img {
  width: 100%;
  height: auto;
}
.solution-head__title {
  font-size: 16px;
  font-weight: bold;
}
.solution-head__text {
  grid-column: span 2 / span 2;
  font-size: 14px;
}
.solution-head__list {
  position: relative;
  padding-left: 16px;
}
.solution-head__list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}

/* ============================
 SP / strengths.scss
============================ */
.strengths {
  display: flex;
  flex-direction: column;
  gap: 100px;
  background: #f5f5f5;
}
.strengths__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.strengths__number {
  position: relative;
  margin-bottom: -8px;
  color: #15b256;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: bold;
}
.strengths__number::before, .strengths__number::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  transform: translateY(-50%) rotate(25deg);
  background: #15b256;
}
.strengths__number::before {
  left: -12px;
}
.strengths__number::after {
  right: -12px;
}
.strengths__contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #effaed;
}
.strengths__contents--border {
  padding: 24px;
  border: 2px solid #15b256;
  background: #fff;
}
.strengths__box--white {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.strengths-heading {
  font-size: 18px;
  text-align: center;
}
.strengths-heading--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.strengths-heading__icon {
  width: 35px;
  height: 40px;
  margin-right: 8px;
}
.strengths-heading__subtitle {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 24px;
  border-radius: 40px;
  background: #c8edc2;
  font-size: 14px;
  font-weight: bold;
}
.strengths-heading__subtitle span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
}
.strengths-heading__maintitle {
  margin-bottom: 8px;
  font-size: 18px;
}
.strengths-heading__maintitle strong {
  color: #008f43;
  font-size: 18px;
}
.strengths-heading__desc {
  font-size: 14px;
  text-align: left;
}

.strengths-list02 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.strengths-list02__box {
  width: 100%;
}
.strengths-list02__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strengths-list02__item {
  display: flex;
  box-sizing: border-box;
  flex: 1 1 250px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  background: #effaed;
  font-size: 14px;
}

.strengths-box {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  gap: 32px;
}
.strengths-box__item {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(31, 41, 51, 0.1);
  gap: 16px;
}
.strengths-box__image {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.strengths-box__image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.strengths-box__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.strengths-box__title {
  font-size: 18px;
}

/* ============================
 SP / table.scss
============================ */
.skill-table {
  width: 988px;
  margin: 0;
  border-spacing: 8px;
  border-collapse: separate;
}
.skill-table--box {
  width: 100%;
}
.skill-table th,
.skill-table td {
  border-radius: 4px;
  font-size: 14px;
}
.skill-table__caption {
  position: relative;
  z-index: 1;
  width: calc(100% - 16px);
  margin: 0 auto 4px;
  color: #008f43;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.skill-table__caption::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 2px;
  background: #15b256;
}
.skill-table__caption span {
  padding: 0 24px 0 0;
  background: #fff;
}
.skill-table__header {
  width: 120px;
  padding: 12px 0;
  background-color: #15b256;
  color: #fff;
  text-align: center;
}
.skill-table__title {
  width: 120px;
  padding: 12px 0;
  background: #c8edc2;
  color: #008f43;
  font-weight: bold;
  text-align: center;
}
.skill-table__data {
  padding: 12px 16px;
  background: #effaed;
}
.skill-table__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 8px 0;
}
.skill-table__item {
  box-sizing: border-box;
  flex: 1 1 250px;
  width: 100%;
  padding: 16px;
  border: 1px solid #15b256;
  border-radius: 4px;
  background: #fff;
  color: #008f43;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.skill-table-tile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.skill-table-tile__caption {
  position: relative;
  z-index: 1;
  width: calc(100% - 16px);
  margin: 0 auto 4px;
  color: #008f43;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.skill-table-tile__caption::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 2px;
  background: #15b256;
}
.skill-table-tile__caption span {
  padding: 0 24px 0 0;
  background: #fff;
}
.skill-table-tile__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 8px 0;
}
.skill-table-tile__item {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: calc((100% - 8px) / 2);
  height: 60px;
  padding: 8px;
  border-radius: 4px;
  background: #15b256;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
