@charset "utf-8";

/* 共通ボタン＝＝＝＝＝ */
.btn_cmn_1 {
  display: block;
  width: 280px;
  text-align: center;
  color: #002bbf;
  text-decoration: none;
  line-height: 1.1;
  border: 1px solid #002bbf;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-position: right 10px center;
  padding: 18px 0;
  margin: 0 auto;
}

.btn_cmn_1:hover {
  background-color: #e7ecfc;
}

.btn_cmn_1.is_reverse {
  background-image: url(../images/common/icon_arrow_left_small.svg);
  background-position: left 10px center;
}

/* メイン設定＝＝＝＝＝ */
main {
  width: 920px;
  line-height: 1.8;
  margin: 0 auto 100px;
}

/* パンくずリスト＝＝＝＝＝ */
.list_bread_crum {
  display: flex;
  justify-content: flex-end;
  width: auto;
  font-size: 1.2rem;
  list-style: none;
  margin: 12px 0 20px;
}

.list_bread_crum li:first-child {
  background-image: url(../images/common/icon_home@2x.png);
  background-size: 16px;
  background-position: left center;
  padding: 0 0 0 20px;
}

.list_bread_crum a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  background-image: url(../images/common/icon_arrow_right_small.svg);
  background-size: 15px;
  background-position: right center;
  padding: 0 15px 0 0;
}

.list_bread_crum a:hover {
  text-decoration: underline;
}

/* ページタイトル＝＝＝＝＝ */
.ttl_contents {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 50px;
}

.ttl_contents span {
  display: block;
  font-size: 2rem;
  color: #002bbf;
  margin: 10px 0 0;
  text-transform: capitalize;
}

/* 汎用タイトル＝＝＝＝＝ */
.ttl_cmn_2 {
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 2px solid #002bbf;
  background-color: #e7ecfc;
  line-height: 1.1;
  padding: 15px 20px;
  margin: 0 0 30px;
}

/* お知らせ＝＝＝＝＝ */
.list_news {
  width: auto;
  list-style: none;
  margin: 0 0 45px;
}

/* お知らせ - リストアイテム */
.list_news li {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px dashed #002bbf;
  padding: 15px 0;
}

/* お知らせ - 日付 */
.list_news time {
  color: #002bbf;
  font-weight: 700;
}

/* お知らせ - リンク */
.list_news a {
  color: #000;
  text-decoration: none;
}

.list_news a:hover {
  text-decoration: underline;
}

/* お知らせ本文＝＝＝＝＝ */
.article_news {
  margin: 0 0 50px;
}

/* お知らせタイトル */
.article_news hgroup {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 46px;
}

.article_news h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

/* お知らせ記事内の汎用設定 */
.article_news p {
  margin: 30px 0;
}

.article_news ul,
.article_news ol {
  margin: 30px 22px;
}

.article_news img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}

/* 会社概要＝＝＝＝＝ */
/* 概要レイアウト */
.layout_about {
  display: grid;
  grid-template-columns: 440px 440px;
  justify-content: space-between;
}

/* 会社概要テーブル */
.table_cmn_1 {
  width: 100%;
}

.table_cmn_1 th {
  font-weight: 400;
  text-align: left;
  vertical-align: baseline;
  background-color: #f7f8fd;
  border: 1px solid #000;
  padding: 15px 20px;
}

.table_cmn_1 td {
  border: 1px solid #000;
  padding: 15px 20px;
}

.list_cmn_1 {
  margin: 0 0 0 22px;
}

/* 沿革 */
.table_history {
  width: 100%;
  background-color: #f7f8fd;
}

.table_history th,
.table_history td {
  text-align: left;
  font-weight: 400;
  border-bottom: 10px solid #fff;
  padding: 10px 20px;
}

/* 企業理念 */
.txt_policy {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
}

/* 営業案内＝＝＝＝＝ */
.loop_business figcaption {
  font-weight: 500;
  line-height: 1.4;
  margin: 10px 0 0;
}

.layout_business_3 {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: space-between;
  text-align: center;
}

.layout_business_4 {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: space-between;
}

/* お問い合わせ＝＝＝＝＝ */
.txt_contact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  background-color: #f7f8fd;
  padding: 40px 0;
}

.txt_contact a {
  font-size: 3.6rem;
  color: #000;
}

.txt_contact a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

.txt_contact img {
  position: relative;
  top: 7px;
  margin: 0 10px 0 0;
}

/* ブレークポイント＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {

  /* 共通ボタン＝＝＝＝＝ */
  .btn_cmn_1 {
    width: 90%;
    margin: 0 auto;
  }

  /* メイン設定＝＝＝＝＝ */
  main {
    width: 92%;
    margin: 0 auto 80px;
  }

  /* パンくずリスト＝＝＝＝＝ */
  .list_bread_crum {
    display: none;
  }

  /* ページタイトル＝＝＝＝＝ */
  .ttl_contents {
    margin: 40px 0 30px;
  }

  /* お知らせ＝＝＝＝＝ */
  .list_news {
    width: auto;
    list-style: none;
    margin: -12px 0 30px;
  }

  /* お知らせ - リストアイテム */
  .list_news li {
    display: block;
    padding: 12px 0;
  }

  /* お知らせ - 日付 */
  .list_news time {
    display: block;
  }

  /* お知らせ - リンク */
  .list_news a {
    line-height: 1.6;
  }

  /* お知らせ本文＝＝＝＝＝ */
  /* お知らせタイトル */
  .article_news hgroup {
    font-size: 1.8rem;
    margin: 0 0 26px;
  }

  .article_news h1 {
    font-size: 2.4rem;
  }

  /* 会社概要＝＝＝＝＝ */
  /* 概要レイアウト */
  .layout_about {
    display: block;
  }

  /* 会社概要テーブル */
  .table_cmn_1 {
    line-height: 1.6;
    margin: 0 0 20px;
  }

  /* ブロック化 */
  .table_cmn_1 th,
  .table_cmn_1 td {
    display: block;
    width: 100%;
  }

  .table_cmn_1 th {
    border: none;
    font-weight: 600;
    padding: 5px 10px;
    margin: 0 0 10px;
  }

  .table_cmn_1 td {
    border: none;
    padding: 0;
    margin: 0 0 20px;
  }

  /* 沿革 */
  .table_history th {
    white-space: nowrap;
    vertical-align: baseline;
  }

  .table_history th,
  .table_history td {
    line-height: 1.6;
    padding: 10px 15px;
  }

  /* 企業理念 */
  .txt_policy {
    font-size: 2.3rem;
    line-height: 1.6;
    text-align: justify;
  }

  .txt_policy br {
    display: none;
  }

  /* 営業案内＝＝＝＝＝ */
  .layout_business_3 {
    display: block;
    text-align: left;
  }

  .layout_business_3 br {
    display: none;
  }

  .layout_business_4 {
    display: block;
  }

  .loop_business {
    margin: 0 0 30px;
  }

  .loop_business img {
    width: 100%;
    height: auto;
  }

  /* お問い合わせ＝＝＝＝＝ */
  .txt_contact {
    display: block;
    word-break: break-all;
    padding: 40px;
  }

  .txt_contact a {
    display: block;
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0 0 10px;
  }

  .txt_contact a[href^="tel:"] {
    pointer-events: all;
    text-decoration: underline;
  }

  .txt_contact img {
    position: static;
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto;
  }
}