@charset "UTF-8";
/* ============================================================
// business.scss (事業内容)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 16vw + 180px, 500px);
  padding-top: clamp(80px, 1.2307692308vw + 75.3846153846px, 100px);
  overflow: hidden;
  background-color: #fff;
  background-image: url(../images/business/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #333;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 1.6vw + 28px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__en::first-letter {
  color: #3380cc;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 20px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #24e5b2, #0093e9);
}

/* ------------------------------------------------------------
// business design
------------------------------------------------------------ */
.business__lead {
  font-size: clamp(16px, 0.2461538462vw + 15.0769230769px, 20px);
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business__lead {
    line-height: 1.6;
    text-align: left;
  }
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

.blue-wave {
  margin-top: -1px;
  margin-bottom: -1px;
  background: #d4e9f3;
  overflow: hidden;
}

.business__head {
  margin-bottom: 40px;
}
.business__image {
  width: 100%;
  margin-bottom: clamp(20px, 1.2307692308vw + 15.3846153846px, 40px);
}
.business__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.business__body {
  padding-top: 40px;
  border-top: 2px solid #fff;
}
.business__item {
  margin-bottom: clamp(40px, 2.4615384615vw + 30.7692307692px, 80px);
}
.business__item-lead {
  flex: 1;
  font-size: clamp(15px, 0.0615384615vw + 14.7692307692px, 16px);
  line-height: 2;
  text-align: justify;
}
.business__item-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-left: 15px;
  margin-bottom: 20px;
  position: relative;
}
.business__item-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.2em;
  background: linear-gradient(to bottom, #24e5b2, #0093e9);
}
.business__item-text {
  margin-bottom: clamp(20px, 1.2307692308vw + 15.3846153846px, 40px);
}
.business__item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.business__item-list li {
  overflow: hidden;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.business__item-list li img {
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .business__head {
    flex-direction: column;
  }
  .business__image {
    width: 100%;
  }
  .business__item-list {
    grid-template-columns: 1fr;
  }
}