@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, 23.7442922374vw + 150.9589041096px, 500px);
  margin-bottom: clamp(60px, 5.4794520548vw + 39.4520547945px, 120px);
  padding-top: clamp(76px, 4.9315068493vw + 57.5068493151px, 130px);
  overflow: hidden;
  background-color: #464f58;
  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.2);
  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: #464f58;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 2.3744292237vw + 25.095890411px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1826484018vw + 13.3150684932px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #6e8f9f;
}

/* ------------------------------------------------------------
// 共通パーツ
------------------------------------------------------------ */
.c-business-content {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .c-business-content {
    margin-bottom: 60px;
  }
}
.c-business-content__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-business-block__img {
  margin-bottom: 30px;
}
.c-business-block__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(100px, 9.1324200913vw + 65.7534246575px, 200px);
}
.c-business-block__title {
  font-size: clamp(24px, 0.7305936073vw + 21.2602739726px, 32px);
  font-weight: 500;
  color: #53a4cc;
  margin-bottom: 25px;
  padding: 14px 10px 16px;
  border-top: 1px solid #53a4cc;
  border-bottom: 1px solid #53a4cc;
}
@media (max-width: 768px) {
  .c-business-block__title {
    font-size: 24px;
  }
}

.c-recommend {
  width: 100%;
  margin-top: 60px;
}
.c-recommend__title {
  display: inline-block;
  font-size: clamp(20px, 0.7305936073vw + 17.2602739726px, 28px);
  color: #53a4cc;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #53a4cc;
}
.c-recommend__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .c-recommend__list {
    gap: 10px;
  }
}
.c-recommend__item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-recommend__item {
    width: calc(50% - 5px);
  }
}
.c-recommend__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: clamp(200px, 11.396011396vw + 112.4786324786px, 280px);
  height: clamp(200px, 11.396011396vw + 112.4786324786px, 280px);
  color: #fff;
  text-align: center;
  padding: 20px clamp(14px, 0.5479452055vw + 11.9452054795px, 20px);
  background-color: #53a4cc;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .c-recommend__circle {
    width: 100%;
    border-radius: 20px;
  }
}
.c-recommend__text {
  font-size: clamp(15px, 0.2739726027vw + 13.9726027397px, 18px);
  font-weight: 500;
  margin-bottom: 15px;
}
.c-recommend__icon-blank {
  width: clamp(60px, 1.8264840183vw + 53.1506849315px, 80px);
  height: clamp(60px, 1.8264840183vw + 53.1506849315px, 80px);
  background-color: #fff;
  border-radius: 50%;
}

.business-btn {
  text-align: center;
  margin-top: 40px;
}