@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 / box.scss
============================ */
.box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.box__item {
  box-sizing: border-box;
  padding: 24px;
  border-radius: 16px;
  background: #f5f5f5;
}
.box__desc {
  font-size: 16px;
}

/* ============================
 SP / button.scss
============================ */
.button {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 32px 0 20px;
  transform: translateZ(0);
  transition: background-position 0.3s ease;
  border-radius: 100px;
  background: linear-gradient(to right, #15b256, #08873d) left center/200% 100%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  will-change: background-position;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 12px;
  height: 12px;
  transition: 0.3s ease;
  -webkit-mask-image: url("../../../assets/images/icon_arrow.svg");
  mask-image: url("../../../assets/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 {
  background-color: #008f43;
}
.button--tertiary {
  transition: 0.3s ease;
  border: 2px solid #1f2933;
  background: #fff;
  color: #1f2933;
}
.button--tertiary::after {
  background-color: #1f2933;
}

.button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  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 / card.scss
============================ */
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card--white .card__item {
  background: #fff;
}
.card--gray .card__item {
  background: #f5f5f5;
}
.card__item {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 32px 24px 24px;
  border-radius: 8px;
}
.card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  margin: 0 auto;
}
.card__image img {
  width: 240px;
  height: 120px;
}
.card__title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.4;
}
.card__title span {
  display: block;
  color: #008f43;
  font-size: 16px;
}
.card__desc {
  flex: 1;
  font-size: 14px;
}
.card__note {
  position: relative;
  margin-top: 16px;
  padding: 8px 8px 8px 24px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 11px;
}
.card__note::before {
  content: "※";
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 11px;
}

.card-case {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card-case__item {
  display: flex;
  position: relative;
  flex-direction: column;
}
.card-case__image {
  width: 100%;
  height: 240px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}
.card-case__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.3s ease;
}
.card-case__icon {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 216px;
  right: 16px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
  border-radius: 20px;
  background: #15b256;
  font-size: 0;
}
.card-case__icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask-image: url("../../../assets/images/icon_search.svg");
  mask-image: url("../../../assets/images/icon_search.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.card-case__title {
  margin-bottom: 8px;
  transition: 0.3s ease;
  font-size: 24px;
  line-height: 1.4;
}
.card-case__title span {
  display: block;
  color: #008f43;
  font-size: 18px;
}
.card-case__desc {
  margin-top: 16px;
  font-size: 16px;
}

/* ============================
 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: 12px;
  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, #08873d) left center/200% 100%;
  box-shadow: 0 0 8px 0 rgba(31, 41, 51, 0.1);
}
.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: 11px;
}
.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));
}

.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag__item {
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid #bebebe;
  border-radius: 4px;
  font-size: 12px;
}

.text-link {
  display: flex;
  justify-content: flex-end;
}
.text-link__item {
  position: relative;
  padding-right: 16px;
  color: #1f2933;
  font-size: 12px;
  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__body {
  width: 100%;
}
.cv__body .heading02 {
  margin-bottom: 24px;
}
.cv__banner {
  width: 100%;
  height: auto;
}

/* ============================
 SP / faq.scss
============================ */
.faq {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding: 64px 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 / flow.scss
============================ */
.flow {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.flow--white .flow__item {
  background: #fff;
}
.flow__item {
  position: relative;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 8px;
  background: #f5f5f5;
}
.flow__item::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -30px;
  width: 20px;
  height: 20px;
  background-color: #bebebe;
  -webkit-mask-image: url("../../../assets/images/icon_arrow-down.svg");
  mask-image: url("../../../assets/images/icon_arrow-down.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.flow__item:last-of-type::after {
  display: none;
}
.flow__desc {
  font-size: 16px;
}

/* ============================
 SP / heading.scss
============================ */
.heading01 {
  font-size: 28px;
  line-height: 1.4;
}
.heading01__catch {
  display: block;
  font-size: 14px;
}

.heading02 {
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 1.4;
}

.heading03 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}
.heading03 strong {
  position: relative;
  font-weight: 600;
}
.heading03 strong::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -2px;
  width: 100%;
  height: 5px;
  background: #fff600;
}
.heading03--step {
  display: flex;
  flex-direction: column;
}
.heading03__step {
  position: relative;
  width: fit-content;
  margin-left: 20px;
  color: #15b256;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}
.heading03__step::before, .heading03__step::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  transform: translateY(-50%) rotate(25deg);
  background: #15b256;
}
.heading03__step::before {
  left: -12px;
}
.heading03__step::after {
  right: -12px;
}

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

/* ============================
 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: 12px;
  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: 11px;
}
.language-list__text {
  margin: 16px 0 0;
  font-size: 11px;
  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: 11px;
}
.language-case__achievements {
  color: #008f43;
  font-size: 11px;
}
.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: 11px;
}
.language-qualification__achievements {
  flex: 0 0 auto;
  color: #008f43;
  font-size: 11px;
}
.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: 12px;
  text-align: center;
}
.license__title span {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

/* ============================
 SP / modal.scss
============================ */
.modal {
  display: flex;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  background: rgba(31, 41, 51, 0.8);
  inset: 0;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}
.modal .heading02 {
  margin-bottom: 24px;
}
.modal__content {
  position: relative;
  box-sizing: border-box;
  width: 90%;
  height: fit-content;
  max-height: calc(100vh - 24px);
  padding: 40px 24px 24px;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
  opacity: 0;
  background: #fff;
}
.modal__content.is-active {
  transform: translateY(0);
  opacity: 1;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
  background-color: #1f2933;
  -webkit-mask-image: url("../../../assets/images/icon_close.svg");
  mask-image: url("../../../assets/images/icon_close.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  cursor: pointer;
}
.modal__image {
  width: 100%;
  height: auto;
  border: 1px solid #bebebe;
}
.modal__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.modal__text {
  font-size: 16px;
  font-weight: bold;
}

/* ============================
 SP / service.scss
============================ */
.other-service {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.other-service__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
  gap: 16px;
}
.other-service__title {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.other-service__heading {
  font-size: 24px;
  line-height: 1.4;
}
.other-service__heading span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}
.other-service__image {
  width: 100%;
  height: auto;
  border: 1px solid #bebebe;
  border-radius: 8px;
}
.other-service__image img {
  width: 100%;
  height: auto;
}

/* ============================
 SP / hero.scss
============================ */
.hero {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding: 64px 16px;
  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;
}
.hero__desc {
  margin-top: 4px;
  font-size: 16px;
}
.hero__button-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  gap: 8px;
}

.hero-point {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 24px 0 0;
  gap: 4px;
}
.hero-point__item {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  padding: 0 16px;
  letter-spacing: 0;
  text-align: center;
}
.hero-point__item--image {
  width: 60px;
  padding: 0;
}
.hero-point__item--image::before, .hero-point__item--image::after {
  display: none;
}
.hero-point__item--image img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 8px 0 rgba(31, 41, 51, 0.1);
}
.hero-point__item::before, .hero-point__item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 40px;
  background: url("../../../assets/images/icon_parentheses.svg") no-repeat center center/contain;
}
.hero-point__item::before {
  left: 0;
}
.hero-point__item::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
.hero-point__title {
  font-size: 11px;
  font-weight: bold;
}
.hero-point__text {
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.hero-point__unit {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.hero-point__sub {
  font-size: 12px;
}
.hero-point__note {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
  bottom: -4px;
  font-size: 11px;
  font-weight: normal;
}
.hero-point__note a {
  transition: 0.3s ease;
  color: #1f2933;
  text-decoration: underline;
}

.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: 12px;
  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("../../../assets/images/icon_check.svg");
  mask-image: url("../../../assets/images/icon_check.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #15b256;
}

/* ============================
 SP / infomatino.scss
============================ */
.infomation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
}
.infomation__title {
  font-size: 24px;
  font-weight: bold;
}
.infomation__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.infomation__desc {
  width: 100%;
  font-size: 16px;
}
.infomation__desc strong {
  font-size: 18px;
  font-weight: bold;
}
.infomation__note {
  position: relative;
  padding-left: 14px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 11px;
}
.infomation__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
}
.infomation .hero-point {
  justify-content: center;
  width: 100%;
  margin: 0;
}
.infomation .hero-point__unit {
  font-size: 16px;
}

/* ============================
 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: 12px;
}

.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 / 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: 12px;
}
.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: 11px;
  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: 12px;
  font-weight: bold;
}

/* ============================
 SP / problem.scss
============================ */
.problem {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding: 64px 16px;
}
.problem__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.problem__box--answer .problem__item {
  width: 100%;
}
.problem__box--answer .problem__item::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -18px;
  width: 34px;
  height: 18px;
  -webkit-mask-image: url("../../images/icon_pylon.svg");
  mask-image: url("../../images/icon_pylon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #15b256;
}
.problem__item {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex: 1;
  flex-direction: column;
  width: calc(100% - (16px * 2) / 4);
  padding: 24px;
  border: 2px solid #15b256;
  border-radius: 8px;
  gap: 16px;
}
.problem__label {
  position: absolute;
  top: -14px;
  padding: 0 16px;
  background: #fff;
  color: #15b256;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.problem__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.problem__text {
  font-size: 16px;
}
.problem__text strong {
  font-size: 18px;
  font-weight: bold;
}
.problem__answer-box {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: calc(100% - (16px * 2) / 4);
}
.problem__text-answer {
  padding: 24px;
  border-radius: 8px;
  background: #effaed;
  font-size: 16px;
}
.problem__text-answer strong {
  font-size: 18px;
  font-weight: bold;
}

/* ============================
 SP / section.scss
============================ */
.section {
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  padding: 64px 16px;
}
.section:nth-of-type(even) {
  background: #f5f5f5;
}
.section__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section__box {
  display: flex;
  flex-direction: column;
}

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