@charset "UTF-8";
/***** -- MV -- *****/
.mv-wrap {
  position: relative;
  height: 250px;
  background-color: #fff;
  margin-top: 80px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mv-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(244, 152, 31, 0.6);
  z-index: 0;
}
.mv-title {
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}
.mv-inner {
  position: relative;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){
  .mv-wrap {
    height: 250px;
    margin-top: 70px;
  }
  .mv-title {font-size: 36px;}
}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){
  .mv-wrap {
    height: 150px;
    margin-top: 60px;
  }
  .mv-title {font-size: 24px;}
}
@media screen and (max-width: 370px){
  .mv-title {font-size: 18px;}
}

/* SECTION > 公開情報 */
.public-wrap {
  position: relative;
  background-image: url(/assets/img/bg.png);
  background-size: contain;
}
.public-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0);
  z-index: 0;
}
.public-inner {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}
.public-contents {
  max-width: 900px;
  margin: 100px auto 0;
  padding: 0 20px;
}
.public-main-title {
  position: relative;
  font-size: 24px;
  margin: 60px 0;
  line-height: 1.5;
  font-weight: bold;
}
.public-main-title::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 1);
  content: '';
}
.public-sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
dl.company_overview {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  font-size: 16px;
  line-height: 1.5;
}
dl.company_overview dt {
  width: 20%;
  padding: 30px;
  margin-bottom: 40px;
  font-weight: bold;
  border-right: 2px solid #fff;
}
dl.company_overview dd {
  width: calc(80% - 40px - 2px);
  padding: 30px;
  margin-bottom: 40px;
}
ul.public-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 60px;
  padding-left: 0;
  font-size: 16px;
}
ul.public-list li {
  width: 48%;
  margin-top: 1.5rem;
  padding-left: 16px;
  text-indent: -16px;
  line-height: 1.5;
  list-style: none;
}
ul.public-list li:first-child {
  margin-top: 1.5rem;
}
ul.public-list li a {
  text-decoration: underline;
}
ul.public-list li a:hover {
  text-decoration: none;
}
ul.public-list li::before {
  margin-right: 1rem;
  font-family: FontAwesome;
  font-size: 20px;
  font-weight: normal;
  content: "\f105";
}
ul.public-list li::after {
  margin-left: 0.5rem;
  font-family: FontAwesome;
  font-size: 20px;
  font-weight: normal;
  color: #ff0000;
  content: "\f1c1";
}

@media screen and (max-width: 1200px){
  .public-contents {padding: 0 40px;}
}
@media screen and (max-width: 768px){
  .public-inner {padding: 80px 0;}
  .public-contents {
    margin-top: 60px;
    padding: 0 20px;
  }
  dl.company_overview dt {
    width: 100%;
    padding: 30px 30px 0;
    margin-bottom: 0;
    font-size: 18px;
    border-right: none;
  }
  dl.company_overview dd {
    width: 100%;
    padding: 15px 30px 30px;
    margin-bottom: 0;
    font-size: 14px;
    border-bottom: 2px solid #fff;
  }
  ul.public-list {
    font-size: 14px;
  }
  ul.public-list li {
    width: 100%;
  }
}
@media screen and (max-width: 640px){
  .public-contents {padding: 0 10px;}
}
@media screen and (max-width: 480px){
  .public-inner {padding: 60px 0;}
  .public-main-title {font-size: 20px;}
  .public-sub-title {font-size: 16px;}
}