@charset "UTF-8";
/* ------------------------------------------------------------
// business
------------------------------------------------------------ */
.business-box-1,
.business-box-2 {
  padding: 120px 60px;
  border: 1px dashed #cccccc;
  border-radius: 20px;
}
.business-box-1 .content-ttl,
.business-box-2 .content-ttl {
  text-align: left;
  margin-bottom: 60px;
}
.business-box-1 .content-ttl h3,
.business-box-2 .content-ttl h3 {
  font-size: 48px;
  font-weight: 700;
  color: #144ad1;
}
.business-box-1 .content-ttl .txt-en,
.business-box-2 .content-ttl .txt-en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: 18px;
  color: #a6a8ab;
}
.business-box-1 .content-ttl .txt-en span,
.business-box-2 .content-ttl .txt-en span {
  font-size: 10px;
}
.business-box-1 p,
.business-box-2 p {
  margin: 0 2em;
}
@media print, screen and (max-width: 767px) {
  .business-box-1,
  .business-box-2 {
    padding: 50px 20px 100px;
  }
  .business-box-1 .content-ttl,
  .business-box-2 .content-ttl {
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .business-box-1 .content-ttl h3,
  .business-box-2 .content-ttl h3 {
    font-size: 28px;
    line-height: 1;
  }
  .business-box-1 p,
  .business-box-2 p {
    margin: 0 1em;
  }
}

.business-box-1 {
  background: url(../images/business/img-1.png) no-repeat center left/cover;
}

.business-box-2 {
  background: url(../images/business/img-2.png) no-repeat center left/cover;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 40px;
}
.item-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  color: #ffffff;
  width: calc((100% - 60px) / 4);
  padding: 30px 10px;
  background: #499edf;
  border-radius: 20px;
}
.item-list li img {
  width: 120px;
  padding: 0 20px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 991px) {
  .item-list li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .item-list {
    gap: 10px;
    margin: 0 20px;
  }
  .item-list li {
    width: calc((100% - 10px) / 2);
    border-radius: 10px;
  }
}

.item-list-txt {
  margin: 15px 40px 0;
}

.flow-wrap {
  text-align: center;
  margin: 0 40px;
  padding: 40px 40px 35px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #cccccc;
  border-radius: 20px;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-list li {
  position: relative;
  background: #144ad1;
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
}

/* 矢印：PC時は右向き */
.flow-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #666666;
}

.flow-note {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

/* スマホでは縦並び＋下向き矢印 */
@media screen and (max-width: 767px) {
  .flow-wrap {
    margin: 0 20px;
    padding: 40px 20px 35px;
    border-radius: 10px;
  }
  .flow-list {
    flex-direction: column;
    gap: 35px;
  }
  .flow-list li {
    font-size: 15px;
    padding: 15px 20px;
  }
  .flow-list li:not(:last-child)::after {
    content: "↓";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .flow-note {
    text-align: left;
  }
}