@charset "utf-8";

/* コンテンツページ用CSS */

/* コンテンツ名 */
.ttl_contents_1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  padding: 45px 0 57px 0;
}

.ttl_contents_2 {
  display: block;

  font-size: 2rem;
  font-weight: 700;
  color: #3f59b2;
}

/* パンくずリスト */

.list_bread_crum {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  gap: 10px;
  width: auto;
  font-size: 1.2rem;
  list-style-type: none;
}

/* 親から見て最初の子 */
.list_bread_crum li:first-child {
  background-image: url(../images/common/home.png);
  background-size: 16px;
  background-position: left center;
  padding: 0 0 0 20px;
}

.list_bread_crum a {
  text-decoration: none;
  color: #000;
  background-image: url(../images/top/chevron-right.png);
  background-size: 15px;
  background-position: right center;
  padding: 0 20px 0 0;
}

/* お知らせページ */
.date_news li {
  /* display: gridでブロック属性に変わる */
  display: grid;
  /* 100pxとその他 */
  grid-template-columns: 100px 1fr;
  justify-content: space-between;
  padding: 11px 0 14px 20px;
  border-bottom: 1px dashed #3f59b2;
}

.date_news {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3f59b2;
  line-height: 1.5;
  list-style-type: none;
  padding: 15px 0 18px 0;
  margin-bottom: 45px;
}

.date_news a {
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  text-decoration: none;
}

/* お知らせページ・詳細 */

.box_article {
  padding-bottom: 156px;
}

.ttl_article {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 6px;
}

.date_article {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.wrap_article {
  padding: 50px 0;
}

.txt_article {
  line-height: 1.6;
}

.img_article {
  display: block;
  margin: 40px auto 0;
}

/* 会社概要 */
/* 会社概要ー詳細*/

.layout_about {
  display: grid;
  grid-template-columns: repeat(2, 440px);
  justify-content: space-between;
  padding-bottom: 100px;
}

.table_cmn_1 {
  width: 100%;
  line-height: 1.4;
}

.table_cmn_1 th {
  white-space: nowrap;
  text-align: left;
  font-weight: 400;
  border: 1px solid #000;
  background-color: #f7f8fd;
  padding: 15px 20px;
}

.table_cmn_1 td {
  border: 1px solid #000;
  padding: 15px 20px;
}

/* 会社概要ー沿革 */
.history {
  padding-bottom: 90px;
}

.history li {
  /* display: gridでブロック属性に変わる */
  display: grid;
  /* 100pxとその他 */
  grid-template-columns: 100px 1fr;
  justify-content: space-between;
  background-color: #f7f8fd;
  padding: 11px 0 14px 20px;
  border-bottom: 10px solid #fff;
}

/* 会社概要ー企業理念 */
.philosophy {
  width: 810px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  padding: 69px 0 104px 0;
  margin: 0 auto;
}

.br_p {
  display: block; /* デフォルトは表示 */
}

/* 営業案内 */
/* 営業案内ー事業内容 */
.business_details {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: space-between;
  width: auto;
  margin: 36px 0 100px 0;
}

.business_details figcaption {
  text-align: center;
  font-weight: 700;
}

/* 営業案内ー主要製品 */
.products {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: space-between;
  width: auto;
  margin: 33px 0 100px 0;
}

.products figcaption {
  font-weight: 700;
}

/* お問い合わせ */
.contents_contact {
  display: flex; /* 横並び */
  align-items: center; /* 縦中央揃え */
  justify-content: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  background-color: #f7f8fd;
  gap: 8px;
  margin: 36px 0 65px 0;
  padding: 41px 0;
}

.contents_contact a {
  color: #000;
}

.contents_contact span {
  font-size: 1.6rem;
  font-weight: 700;
}

/* ブレークポイント＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {
  /*ここにcssを書く*/

  /*イメージ設定*/
  img {
    max-width: 100%;
    height: auto;
  }

  /* コンテンツページ用CSS */
  /* コンテンツ名 */
  .ttl_contents_1 {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    padding: 45px 0 57px 0;
  }

  .ttl_contents_2 {
    display: block;

    font-size: 2rem;
    font-weight: 700;
    color: #3f59b2;
  }

  /* パンくずリスト */

  .list_bread_crum {
    display: none;
  }

  /* お知らせページ */
  .date_news li {
    /* display: gridでブロック属性に変わる */
    display: grid;
    /* 100pxとその他 */
    grid-template-columns: 100px 1fr;
    justify-content: space-between;
    padding: 11px 0 14px 20px;
    border-bottom: 1px dashed #3f59b2;
  }

  .date_news {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3f59b2;
    line-height: 1.5;
    list-style-type: none;
    padding: 15px 0 18px 0;
    margin-bottom: 45px;
  }

  .date_news a {
    color: #000;
    font-weight: 400;
    font-size: 1.6rem;
    text-decoration: none;
  }

  /* お知らせページ・詳細 */

  .box_article {
    padding-bottom: 156px;
  }

  .ttl_article {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 6px;
  }

  .date_article {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .wrap_article {
    padding: 50px 0;
  }

  .txt_article {
    line-height: 1.6;
  }

  .img_article {
    display: block;
    margin: 40px auto 0;
  }

  /* 会社概要 */
  /* 会社概要ー詳細*/

  .layout_about {
    display: block;
    padding-bottom: 100px;
  }

  .table_cmn_1 {
    line-height: 1.4;
  }

  .table_cmn_1,
  .table_cmn_1 thead,
  .table_cmn_1 tbody,
  .table_cmn_1 th,
  .table_cmn_1 td,
  .table_cmn_1 tr {
    display: block; /* ブロック化 */
    width: 100%; /* 幅いっぱい */
  }

  .table_cmn_1 th {
    text-align: left; /* 見出しは左揃えのまま */
    background-color: #f7f8fd;
    border: none;
  }

  .table_cmn_1 td {
    border-top: none;
    border: none;
  }

  /* 会社概要ー沿革 */
  .history {
    padding-bottom: 90px;
  }

  .history li {
    /* display: gridでブロック属性に変わる */
    display: grid;
    /* 100pxとその他 */
    grid-template-columns: 80px 1fr;
    justify-content: space-between;
    background-color: #f7f8fd;
    padding: 11px 0 14px 20px;
    border-bottom: 10px solid #fff;
  }

  /* 会社概要ー企業理念 */
  .philosophy {
    width: 100%;
    font-family: "Zen Old Mincho", serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.7;
    text-align: left;
    padding: 69px 0 104px 0;
    margin: 0 auto;
  }

  .br_p {
    display: none;
  }

  /* 営業案内 */
  /* 営業案内ー事業内容 */
  .business_details {
    display: block;
    width: auto;
    text-align: center;
    margin: 36px 0 100px 0;
  }

  .business_details img {
    display: inline-block;
  }

  .business_details figcaption {
    text-align: center;
    font-weight: 700;
  }

  /* 営業案内ー主要製品 */
  .products {
    display: block;
    width: auto;
    margin: 33px 0 100px 0;
    text-align: center;
  }

  .products figcaption {
    font-weight: 700;
    padding-bottom: 20px;
  }

  /* お問い合わせ */
  .contents_contact {
    display: block;
    align-items: center; /* 縦中央揃え */
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    background-color: #f7f8fd;
    gap: 8px;
    margin: 36px 0 65px 0;
    padding: 41px 0;
  }

  .contents_contact a {
    color: #000;
  }

  .contents_contact span {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
  }

  .contents_contact img {
    width: 28px;
    height: auto;
  }
}
