@charset "utf-8";
/* CSS Document */
/* ============= top comcept ================ */
#concept .concept-text-01 {
  font-size: 2.6rem;
  font-weight: bold;
}
#concept .concept-text-02 {
  font-size: 1.0rem;
  line-height: 1.6rem;
  font-weight: bold;
}
/* Extra small devices (portrait phones, less than 576px)*/
@media screen and (max-width: 575px) {
  #concept .concept-text-01 {
    font-size: 2.4rem;
    font-weight: bold;
  }
  #concept .concept-text-02 {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}
/*下層ページ共通*/
#page_title {
  color: #4b331b;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 100%;
  position: relative;
}
#page_title:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
/* Extra small devices (portrait phones, less than 576px)*/
@media screen and (max-width: 575px) {
  #page_title {
    height: 200px;
  }
}
#page_title h1 {
  background-color: hsla(0, 0%, 100%, 0.10);
  border: thin solid #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 100px;
  color: #fff;
  z-index: 2;
}
/* Extra small devices (portrait phones, less than 576px)*/
@media screen and (max-width: 575px) {
  #page_title h1 {
    font-size: 1.4rem;
    margin-top: 50px;
  }
}
/*----------------------------------------------------
  汎用 上下左右中央
----------------------------------------------------*/
.flexbox_container_vertical_center {
  display: flex; /* 子要素をflexboxで揃える */
  flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
  justify-content: center; /* 子要素をflexboxにより中央に配置する */
  align-items: center; /* 子要素をflexboxにより中央に配置する */
}
/* ============= company ================ */
.company .rwd_table {}
.company .rwd_table th {
  padding: 10px;
  border: 1px solid #ddd;
}
.company .rwd_table td {
  width: 600px;
  padding: 10px;
  border: 1px solid #ddd;
}
.company .rwd_table th {
  background: #f4f4f4;
}
.company .rwd_table th {
  width: 200px;
  text-align: left;
}
@media only screen and (max-width:480px) {
  .company .rwd_table {}
  .company .rwd_table th {
    width: 100%;
    display: block;
    border-top: none;
  }
  .company .rwd_table td {
    width: 100%;
    display: block;
    border-top: none;
  }
  .company .rwd_table tr:first-child th {
    border-top: 1px solid #ddd;
  }
}