@import url(common.css);

/* ここからメインビジュアルの書式 */

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* オーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* キャッチコピー */
.catch-copy {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  display: inline-block;
  white-space: nowrap;
}
.hero-text {
  position: absolute;
  inset: 0;

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

  z-index: 2;
}
/* ここまでメインビジュアルの書式 */

/* ここからキャッチフレーズの書式 */

/* ここまでメインの内容の書式 */

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

  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-title::after {
  display: none;
}

.business-content {
  position: relative;
  background: #dceaf7;
  min-height: 260px;
  padding: 50px 70px;
  overflow: hidden;
  box-sizing: border-box;
}

.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);
}
/* ここまでメインの内容の書式 */

/* ここからメインの内容の書式 */

/* ==========================
   スマホ表示（不動産ページ）
========================== */
@media screen and (max-width: 768px) {
  /* ==========================
     メインビジュアル
  ========================== */

  .main-visual {
    height: 260px;
  }

  .main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* キャッチコピー */
  .catch-copy {
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: normal;
    padding: 0 20px;
  }

  /* ==========================
     全体余白
  ========================== */

  .container {
    margin: 40px auto;
    padding: 0 15px;
  }

  /* ==========================
     見出し
  ========================== */

  .business-title {
    font-size: 18px;

    padding: 12px 55px 12px 18px;

    transform: translateY(10px);
  }

  /* ==========================
     内容エリア
  ========================== */

  .business-content {
    padding: 30px 15px;

    min-height: auto;
  }

  /* 文章 */
  .business-content p,
  .business-content li {
    font-size: 15px;

    line-height: 1.8;
  }

  /* ==========================
     写真
  ========================== */

  .business-content img {
    width: 100%;

    height: auto;
  }

  /* ==========================
     ボタン
  ========================== */

  .detail-btn {
    width: auto;

    padding: 12px 25px;

    font-size: 14px;
  }

  /* ==========================
     表（会社情報など）
  ========================== */

  .company {
    width: 100%;
  }

  .company th,
  .company td {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 12px 15px;

    font-size: 14px;
  }
}
