@import url(common.css);

/* ここからメインビジュアルの書式 */
.main-img {
  width: 100%;
  height: 100vh;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ここまでメインビジュアルの書式 */

/* ここからメインの内容の書式 */
.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);
}
.business-content p,
.business-content ul {
  margin: 0;
}
.business-content li {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
}
/* ここまでメインの内容の書式 */

/* ここからセクション1の書式 */
/* 上の行 */
.concept-catch {
  text-align: center;
}

.concept-top {
  font-size: 28px;
  font-weight: bold;
  padding-top: 20px;
  margin-bottom: 40px;

  transform: translateX(-80px); /* 左へ */
}

.concept-bottom {
  font-size: 28px;
  font-weight: bold;
  padding-top: 40px;
  transform: translateX(80px); /* 右へ */
}
.concept-text {
  margin-top: 25px;
  line-height: 1.7;
  font-size: 18px;
}
/* ここまでセクション1の書式 */

/* ここからセクション2の書式 */

/* ロゴマークの書式 */
.business-content img {
  display: block;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.logo-box {
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center; /* 上下中央 */
}
/* ここまでロゴマークの書式 */

/* ロゴ説明文 */
.logo-text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.7;
}

/* ここまでセクション2の書式 */

/* ここからセクション3の書式 */
.company-title {
  margin-bottom: 50px;
}
/* ここまでセクション3の書式 */
/* 会社概要表 */
.company {
  width: 80%;
  margin: 30px auto; /* 表を中央に配置 */
  border-collapse: separate; /* collapse → separate に変更 */
  border-spacing: 4px 2.5px; /* ←セル同士の間隔 */
}
.company th {
  width: 220px;
  padding: 18px;
  background: #e6ebf5; /*左側(タイトル)の背景色*/
  border: 1px solid #ccc;
  text-align: left;
  font-weight: bold;
}

.company td {
  padding: 18px;
  background: #f0f3f9; /*右側(内容)の背景色*/
  border: 1px solid #ccc;
  line-height: 1.8;
}
/* ここまで会社概要表 */

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

/* ==========================
   スマホ表示（768px以下）
========================== */
@media screen and (max-width: 768px) {
  /* ==========================
     全体の余白調整
  ========================== */

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

  /* ==========================
     セクション間の余白
  ========================== */

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

  /* ==========================
   スマホ用 見出しタブ調整
========================== */

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

    padding: 10px 35px 10px 15px;

    transform: translateY(8px);
  }

  /* ==========================
     内容部分
  ========================== */

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

    min-height: auto;
  }

  /* ==========================
     メイン画像
  ========================== */

  .main-img {
    height: 260px;
  }

  .main-img img {
    object-fit: cover;

    object-position: center;
  }

  /* ==========================
     経営理念
  ========================== */

  .concept-top,
  .concept-bottom {
    transform: none;

    font-size: 18px;

    line-height: 1.8;

    margin: 10px 0;

    padding: 0;
  }

  .concept-text {
    font-size: 16px;

    line-height: 1.8;
  }

  /* ==========================
     ロゴマーク
  ========================== */

  .logo-box {
    padding: 20px 10px;
  }

  .logo-box img {
    width: 100%;

    max-width: 260px;
  }

  /* ==========================
     会社概要表
  ========================== */

  .company {
    width: 100%;

    margin: 0;

    border-spacing: 2px;
  }

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

    width: 100%;

    box-sizing: border-box;

    padding: 12px 15px;
  }

  .company th {
    margin-top: 10px;

    font-size: 15px;
  }

  .company td {
    margin-bottom: 5px;

    font-size: 14px;

    line-height: 1.7;
  }
}
