@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
/*============================
//_mixin.scss
============================ */
/*============================
//_base.scss
============================ */
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

main {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

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;
}

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

br {
  visibility: hidden;
}

a:focus,
button:focus {
  outline: 4px solid #ff7221;
}

/* ============================
 button.scss
============================ */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  transition: 0.3s ease;
  border: solid 3px #feff69;
  border-radius: 100vh;
  background: #feff69;
  box-shadow: 0 6px 30px rgba(0, 111, 155, 0.35);
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
.button:hover {
  border-color: #fff;
  background-color: #ffeb3b;
}

/* ============================
case.scss
============================ */
.case {
  min-width: 1300px;
  background: url("../../images/img_bg-line01.svg") no-repeat top 5% right -40%/661px 781px, url("../../images/img_bg-line02.svg") no-repeat bottom 6% left -33%/518px 490px, linear-gradient(to bottom, #fff, #e1f6fc);
}
.case__inner {
  padding: 80px 32px;
}

.case-item {
  display: grid;
  box-sizing: border-box;
  grid-template-areas: "header image" "summary image";
  grid-template-columns: 1fr 312px;
  grid-template-rows: auto auto;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 60px 40px;
  border-radius: 48px;
  background-color: #fff;
  box-shadow: 0 6px 30px rgba(0, 111, 155, 0.35);
  gap: 20px 24px;
}
.case-item:last-child {
  margin-bottom: 0;
}
.case-item__header {
  grid-area: header;
}
.case-item__title {
  color: #0291c1;
  font-size: 32px;
  line-height: 1.5;
}
.case-item__tag-wrap {
  display: flex;
  margin-top: 8px;
  gap: 8px;
}
.case-item__tag {
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #0291c1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.case-item__image {
  grid-area: image;
  width: 317px;
  height: 100%;
  max-height: 384px;
}
.case-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.case-item-summary {
  grid-area: summary;
  padding: 20px;
  border-radius: 16px;
  background-color: #effbfd;
}
.case-item-summary__item {
  display: flex;
  gap: 12px;
  padding-block: 16px;
  border-bottom: 1px solid #9adfdd;
}
.case-item-summary__item:first-child {
  padding-top: 0;
}
.case-item-summary__item:last-child {
  padding-bottom: 0;
  border: 0;
}
.case-item-summary__title {
  width: 110px;
  color: #0291c1;
  font-weight: 800;
}
.case-item-summary__detail {
  flex: 1;
}

.case-item-summary-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  gap: 6px;
}
.case-item-summary-list__item {
  display: flex;
  align-items: center;
}
.case-item-summary-list__item::before {
  content: "・";
  margin-right: 8px;
  font-weight: 600;
}

/* ============================
 catergory.scss
============================ */
.category {
  min-width: 1300px;
  background: url("../../images/img_bg-line04.svg") no-repeat bottom 32% right -35%/596px 704px, url("../../images/img_bg-line02.svg") no-repeat top 130% left -30%/518px 490px;
}
.category__inner {
  padding: 110px 32px 80px;
}
.category__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}

.category-item {
  display: flex;
  box-sizing: border-box;
  width: calc((100% - 24px) / 2);
  padding: 40px 20px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 6px 30px rgba(0, 111, 155, 0.35);
  gap: 16px;
}
.category-item--small {
  padding-block: 20px;
}
.category-item__heading {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
}
.category-item__image {
  width: 125px;
  height: 125px;
}
.category-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-item__title {
  min-width: 104px;
  font-size: 24px;
}
.category-item__text {
  display: flex;
  align-items: center;
  line-height: 1.7;
}

/* ============================
 cta.scss
============================ */
.cta {
  position: relative;
  min-width: 1300px;
  height: 428px;
  overflow: hidden;
  background: linear-gradient(45deg, #15cdb9, #009dff);
}
.cta__inner {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  height: 100%;
  padding: 0 100px;
  overflow: hidden;
  gap: 40px;
}
.cta__image-box {
  width: 43vw;
  max-width: 512px;
  aspect-ratio: 1460/1531;
}
.cta__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.cta__text-box {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  color: #fff;
}
.cta__heading {
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.cta__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
.cta .button {
  min-width: 360px;
  margin-top: 16px;
}

/* ============================
 faq.scss
============================ */
.faq {
  min-width: 1300px;
}
.faq__inner {
  padding: 80px 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 1100px;
  margin-inline: auto;
}
.faq-list__item {
  display: flex;
  flex-direction: column;
}
.faq-list__question {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.faq-list__question-icon {
  display: grid;
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  padding-bottom: 5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #15cdb9, #009dff);
  color: #fff;
  place-items: center;
  font-family: "sofia-pro", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.faq-list__question-text {
  color: #0291c1;
  font-size: 24px;
  font-weight: 600;
}
.faq-list__answer {
  margin-left: 56px;
  padding: 20px;
  border-radius: 12px;
  background-color: #effbfd;
  font-size: 18px;
  line-height: 1.7;
}

/* ============================
 flow.scss
============================ */
.flow {
  min-width: 1300px;
  background-color: #effbfd;
}
.flow__inner {
  padding: 80px 32px;
}
.flow__strong {
  background: linear-gradient(to top, #fdff00 8px, transparent 8px);
  font-size: 32px;
}
.flow .section-heading {
  gap: 32px;
}

.flow-list {
  display: flex;
  position: relative;
  z-index: 0;
  flex-direction: column;
  width: 1048px;
  margin-inline: auto;
  padding: 0;
  list-style-type: none;
  gap: 40px;
}
.flow-list::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 4px;
  height: calc(100% - 80px);
  background: linear-gradient(to bottom, #02beb8, #027fbe);
  translate: 40px -50%;
}
.flow-list__item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.flow-list__item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.flow-list__item:first-child::after {
  top: -28px;
  right: 52px;
  width: 182px;
  height: 329px;
  background-image: url("../../images/img_flow01.png");
}
.flow-list__item:nth-child(4)::after {
  top: 10px;
  right: 46px;
  width: 223px;
  height: 249px;
  background-image: url("../../images/img_flow02.png");
}
.flow-list__num {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Helvetica Nue", "Arial", sans-serif;
  font-size: 40px;
  line-height: 1;
  gap: 20px;
}
.flow-list__item:first-child .flow-list__num {
  background-color: #02beb8;
}
.flow-list__item:nth-child(2) .flow-list__num {
  background-color: #02b1be;
}
.flow-list__item:nth-child(3) .flow-list__num {
  background-color: #029fbe;
}
.flow-list__item:nth-child(4) .flow-list__num {
  background-color: #0292be;
}
.flow-list__item:nth-child(5) .flow-list__num {
  background-color: #027fbe;
}
.flow-list__text-box {
  box-sizing: border-box;
  flex: 1;
  max-width: 944px;
  padding: 20px 32px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 6px 30px rgba(0, 111, 155, 0.35);
}
.flow-list__title {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 600;
}
.flow-list__detail {
  line-height: 1.7;
}

/*============================
 feature.scss
============================ */
.feature {
  position: relative;
  min-width: 1300px;
  background: url("../../images/img_bg-line01.svg") no-repeat top right -35%/661px 781px, url("../../images/img_bg-line02.svg") no-repeat top 78% left -45%/518px 490px, url("../../images/img_bg-line03.svg") no-repeat top 88% right -200px/508px 478px, linear-gradient(to bottom, #fff, #e1f6fc);
}
.feature::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 120px;
  border-radius: 50%;
  background-color: #e1f6fc;
  translate: 0 -50%;
}
.feature__inner {
  padding: 176px 32px 32px;
}

.feature-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.feature-heading__main {
  font-size: 40px;
}
.feature-heading__number {
  margin-inline: -4px;
  color: #0291c1;
  font-weight: 600;
}
.feature-heading__number b {
  font-family: "sofia-pro", sans-serif;
  font-size: 96px;
  font-weight: 400;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto 80px;
}
.feature-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.feature-item:last-of-type {
  margin-bottom: 0;
}
.feature-item__image {
  width: auto;
}
.feature-item:first-of-type .feature-item__image {
  aspect-ratio: 647/708;
  height: 384px;
}
.feature-item:nth-of-type(2) .feature-item__image {
  aspect-ratio: 593/716;
  height: 373px;
}
.feature-item:nth-of-type(3) .feature-item__image {
  aspect-ratio: 618/720;
  height: 360px;
}
.feature-item:nth-of-type(4) .feature-item__image {
  aspect-ratio: 618/720;
  height: 360px;
}
.feature-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.feature-item__number {
  display: block;
  height: 68px;
  margin-bottom: 16px;
  color: #0291c1;
  font-family: "sofia-pro", sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  translate: 0 -16px;
}
.feature-item__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}
.feature-item__title-em {
  position: relative;
  z-index: 0;
}
.feature-item__title-em::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11px;
  background: #fdff00;
  translate: 0 -1px;
}
.feature-item__detail {
  max-width: 440px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
}

/* ============================
 hero.scss
============================ */
.hero {
  position: relative;
  min-width: 1300px;
  height: 775px;
  overflow: hidden;
  background: linear-gradient(to top right, #15cdb9 20%, #009dff 85%);
}
.hero__inner {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  max-width: 1100px;
  padding: 240px 420px 9cqh 0;
}
.hero__inner::after {
  content: "";
  display: block;
  position: absolute;
  right: -200px;
  bottom: -143px;
  width: 730px;
  height: 765px;
  background: url("../../images/img_community.png") no-repeat center/contain;
}
.hero__lead {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.hero__item {
  margin-right: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  color: #0291c1;
  font-size: 20px;
  font-weight: 800;
}
.hero__heading {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero__sub-head {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
}
.hero__text {
  margin: 12px 0 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.hero__button-wrap {
  width: 360px;
  margin: 24px 0 0;
}

.hero-point {
  display: flex;
  margin: 32px 0 0;
  gap: 16px;
}
.hero-point__box {
  display: inline-block;
  padding: 12px 16px 8px;
  border-top: 4px solid #333;
  background: #fff;
}
.hero-point__title {
  font-weight: 600;
  text-align: center;
}
.hero-point__text {
  color: #0291c1;
  font-family: "sofia pro", "Helvetica Nue", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.hero-point__number {
  font-size: 36px;
}

/* ============================
 logo.scss
============================ */
.logo {
  display: flex;
  justify-content: center;
  min-width: 1300px;
}
.logo__inner {
  display: flex;
  position: relative;
  justify-content: center;
  width: 1100px;
  margin-inline: auto;
}

.logo-list {
  display: flex;
  position: absolute;
  z-index: 1;
  align-items: center;
  width: 1100px;
  height: 110px;
  padding: 16px 90px 16px 24px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 111, 155, 0.35);
  translate: 0 -50%;
}
.logo-list__item {
  margin: 0 25px;
}
.logo-list__image {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 64px;
}
.logo-list__button {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 0;
  background: url("../../images/ico_pause.svg") no-repeat center/contain;
  cursor: pointer;
}
.logo-list__button.is-pause {
  background: url("../../images/ico_play.svg") no-repeat center/contain;
}

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

.slider {
  transition: opacity 0.3s linear;
  opacity: 0;
}

.slider.slick-initialized {
  opacity: 1;
}

/* ============================
 other.scss
============================ */
.other {
  min-width: 1300px;
}
.other__inner {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 80px;
}
.other__service-wrap {
  display: flex;
  gap: 40px;
}

.other-service {
  display: flex;
  width: calc((100% - 40px) / 2);
  min-height: 200px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(0, 111, 155, 0.35);
}
.other-service__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 248px;
  padding: 24px 12px 24px 24px;
  background: linear-gradient(135deg, #034ab2, #5cc7e9);
  color: #fff;
  gap: 8px;
  font-weight: 600;
  line-height: 1.4;
}
.other-service.other-service--data-engineer .other-service__text-box {
  background: linear-gradient(135deg, #0946bc, #824ec6);
}
.other-service__name {
  font-size: 24px;
  line-height: 1.4;
}
.other-service__image {
  flex: 1;
}
.other-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================
 plan.scss
============================ */
.plan {
  min-width: 1300px;
  background: linear-gradient(45deg, #b9f0ea, #b2e2ff);
}
.plan__inner {
  padding: 80px 32px;
}
.plan__wrap {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin-inline: auto;
}

.plan-section {
  position: relative;
  width: calc((100% - 48px) / 2);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 141, 197, 0.5);
}
.plan-section--light::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 14px;
  width: 138px;
  height: 94px;
  background: url("../../images/img_woman02.png") no-repeat top center/100%;
}
.plan-section__tag {
  display: grid;
  position: absolute;
  top: 0;
  left: 28px;
  place-content: center;
  width: 76px;
  height: 76px;
  background: linear-gradient(to bottom, #fffec0, #ffeb3b);
  box-shadow: 0 6px 15px rgba(0, 111, 155, 0.35);
  color: #0291c1;
  font-weight: 800;
}
.plan-section__tag::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffeb3b;
  clip-path: polygon(0 0, 0 100%, 50% 0, 100% 100%, 100% 0);
  translate: 0 -1px;
}
.plan-section__heading {
  display: grid;
  min-height: 86px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(-45deg, #00afc6, #007fd9);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  place-items: center;
}
.plan-section__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px 48px;
  border-radius: 0 0 16px 16px;
  background-color: #fff;
}
.plan-section__price {
  color: #0291c1;
  font-size: 30px;
  font-weight: 600;
}
.plan-section__price-number {
  margin-inline: 2px;
  font-size: 64px;
  translate: 0 2020020px;
}
.plan-section__price-small {
  margin-left: 2px;
  font-size: 20px;
}
.plan-section__time {
  margin-bottom: 16px;
  color: #0291c1;
  font-size: 20px;
  font-weight: 600;
}
.plan-section__time-number {
  font-size: 36px;
  font-weight: 600;
}
.plan-section__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.plan-section .button {
  width: 100%;
}

.plan-section-recommend {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px;
  background-color: #effdfc;
}
.plan-section-recommend__heading {
  margin-bottom: 16px;
  color: #0291c1;
  font-size: 20px;
  font-weight: 600;
}

.plan-section-recommend-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
}
.plan-section-recommend-list__item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.plan-section-recommend-list__item::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url("../../images/ico_check_white.svg") no-repeat center/12px, #0291c1;
}

/* ============================
 section-heading.scss
============================ */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  gap: 20px;
}
.section-heading__title {
  position: relative;
  color: #333;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}
.section-heading__title-color {
  color: #0291c1;
}
.section-heading__lead {
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  line-height: 1.7;
}
.section-heading__lead-strong {
  position: relative;
  z-index: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  translate: 0 -8px;
}
.section-heading__lead-strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11px;
  background-color: #fdff00;
  translate: 0 6px;
}

/* ============================
 trouble.scss
============================ */
.trouble {
  position: relative;
  min-width: 1300px;
  background-color: #d2e9f3;
}
.trouble::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background: #d2e9f3;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.trouble__inner {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 0 42px;
}
.trouble__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  gap: 0 4px;
}
.trouble__heading-strong {
  background: linear-gradient(to top, #fdff00 12px, transparent 12px);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.01em;
  translate: 0 -4px;
}

.trouble-list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  width: 1100px;
  gap: 60px 368px;
}
.trouble-list::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 282px;
  height: 385px;
  transform: translateX(-50%);
  background: url("../../images/img_woman01.png") no-repeat center/contain;
}
.trouble-list__item {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 366px;
  padding: 32px 24px;
  border-radius: 32px;
  background: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 111, 155, 0.25));
  font-weight: 400;
  text-align: center;
}
.trouble-list__item::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 43px;
  background: url("../../images/img_bubble-arrow.svg") no-repeat center/contain;
}
.trouble-list__item:nth-last-child(-n+2)::after {
  height: 60px;
  background-image: url("../../images/img_bubble-arrow02.svg");
}
.trouble-list__item:first-child {
  translate: 32px 0;
}
.trouble-list__item:first-child::after {
  top: calc(100% - 14px);
  right: 0;
}
.trouble-list__item:nth-child(2) {
  translate: -32px 0;
}
.trouble-list__item:nth-child(2)::after {
  top: calc(100% - 14px);
  left: 0;
  scale: -1 1;
}
.trouble-list__item:nth-child(3)::after {
  top: 33px;
  left: calc(100% - 20px);
}
.trouble-list__item:nth-child(4)::after {
  top: 33px;
  right: calc(100% - 20px);
  scale: -1 1;
}
.trouble-list__point {
  display: block;
  margin-top: 8px;
  color: #0291c1;
  font-size: 24px;
  font-weight: 600;
}
.trouble-list__icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 49px;
}

/*============================
 responsive.scss
============================ */
.is-onlyPC {
  display: inline-block;
}

.is-onlySP {
  display: none;
}

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