@import url(common.css);

/* ========================================
   メインビジュアル
======================================== */

.main-visual {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* オーバーレイ */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* キャッチコピー */

.hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(60px);
}

.catch-copy {
  display: inline-block;

  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;

  text-align: center;
  white-space: nowrap;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ========================================
   メインコンテンツ
======================================== */

.container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;

  box-sizing: border-box;
}

/* 事業ボックス */

.business-box {
  margin-bottom: 80px;
}

/* ========================================
   事業タイトル
======================================== */

.business-title {
  display: inline-block;

  position: relative;
  z-index: 2;

  margin: 0;

  padding: 15px 90px 15px 25px;

  background: #4370a9;
  color: #fff;

  font-size: 24px;
  font-weight: bold;
  line-height: 1;

  transform: translateY(15px);

  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}

/* ========================================
   コンテンツ
======================================== */

.business-content {
  position: relative;

  min-height: 260px;

  padding: 50px 70px;

  background: #dceaf7;

  box-sizing: border-box;

  overflow: hidden;
}

/* 左下の斜め */

.business-content::before {
  content: "";

  position: absolute;

  left: -2px;
  bottom: -2px;

  width: 60px;
  height: 60px;

  background: #fff;

  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

/* 右上の斜め */

.business-content::after {
  content: "";

  position: absolute;

  top: -2px;
  right: -2px;

  width: 60px;
  height: 60px;

  background: #fff;

  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* ========================================
   事業内容テキスト
======================================== */

.business-content p {
  margin: 0;

  font-size: 18px;
  line-height: 1.8;

  color: #000;

  text-align: left;
}

/* ========================================
   詳細ボタン
======================================== */

.business-content .detail-btn {
  display: block;

  width: 300px;

  margin: 80px 0 0 auto;
  padding: 18px 20px;

  box-sizing: border-box;

  background: #4370a9;
  color: #fff;

  text-align: center;
  text-decoration: none;

  font-size: 20px;
  font-weight: bold;

  border: none;
  border-radius: 0;

  transition: 0.3s;
}

.business-content .detail-btn:hover {
  background: #a6caec;
}

/* ========================================
   スマホ表示
======================================== */

@media screen and (max-width: 768px) {
  /* ----------------------------------------
     メインビジュアル
  ---------------------------------------- */

  .main-visual {
    height: 260px;
  }

  .hero-image {
    width: 100%;
    height: 100%;
  }

  .hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  /* キャッチコピー */

  .hero-text {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: none;

    padding: 0 15px;
    box-sizing: border-box;
  }

  .catch-copy {
    width: 100%;

    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.08em;

    white-space: normal;
    text-align: center;
  }

  /* ----------------------------------------
     全体
  ---------------------------------------- */

  .container {
    width: 100%;

    margin: 40px auto;
    padding: 0 15px;

    box-sizing: border-box;
  }

  /* ----------------------------------------
     事業ボックス
  ---------------------------------------- */

  .business-box {
    margin-bottom: 50px;
  }

  /* ----------------------------------------
     タイトル
  ---------------------------------------- */

  .business-title {
    display: inline-block;

    width: 70%;
    box-sizing: border-box;

    padding: 12px 35px 12px 15px;

    font-size: 18px;
    line-height: 1.5;

    transform: translateY(8px);

    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 0 100%);
  }

  /* ----------------------------------------
     コンテンツ
  ---------------------------------------- */

  .business-content {
    min-height: auto;

    padding: 30px 15px;

    box-sizing: border-box;
  }

  /* テキスト */

  .business-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* ----------------------------------------
     詳細ボタン
  ---------------------------------------- */

  .business-content .detail-btn {
    width: 100%;

    margin: 40px 0 0;

    padding: 14px 20px;

    font-size: 16px;

    box-sizing: border-box;
  }

  /* ----------------------------------------
     斜め部分
  ---------------------------------------- */

  .business-content::before,
  .business-content::after {
    width: 30px;
    height: 30px;
  }
}
