@charset "UTF-8";

/* パンくず */
#bread_List {
  padding: 10px;
  font-size: 12px;
  box-sizing: border-box;
}

#bread_List li {
  position: relative;
  margin-right: 2em;
  color: #4f4f4f;
}

#bread_List li:not(:last-child)::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: -1.3em;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid #4f4f4f;
  border-left: transparent;
  border-bottom: transparent;
  transform: translateY(-70%) rotate(45deg);
}

#bread_List a {
  display: block;
  padding-bottom: 2px;
  border-bottom: 1px solid #4f4f4f;
  transition: .3s;
}

#bread_List a:hover {
  border-bottom: 1px solid transparent;
}

#bread_List li>p {
  display: block;
  padding-bottom: 2px;
}

#main_Img {
  width: 100%;
  padding: 11em 0 5%;
  /*background-image: linear-gradient(to right bottom, #dbcdc3, #f8f2ee, #dbcdc3);*/
  text-align: center;
    background: #244156;
}

#main_Img h2 {
  font-size: min(4.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 5px;
  color: #fff;
}

#main_Img span {
  font-size: 13px;
  letter-spacing: 0.5em;
}

/* 概要 */
.outline_Wrap .inner {
  padding: 40px 0 80px;
}

.outline_Wrap h3 {
    font-size: 25px;
    margin-top: 50px;
  color: #002938;
}

.outline_List {
    margin: 20px auto;
}
.outline_List dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}

.outline_List dt {
  width: 30%;
  padding: 20px 10px;
  border-bottom: 1px solid #002938;
  font-weight: normal;
  box-sizing: border-box;
  color: #002938;
}

.outline_List dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: 1px dotted #002938;
  box-sizing: border-box;
  color: #002938;
}

@media only screen and (max-width: 768px) {

  /* パンくず */
  #bread_List {
    display: none;
  }

  #main_Img {
    padding: 13% 0 6%;
  }

  /* 概要 */
  .outline_Wrap .inner {
    padding: 50px 0;
  }

  .outline_List dl {
    flex-direction: column;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
  }

  .outline_List dt {
    width: 100%;
    padding: 10px;
    color: #d6b8a6;
    background-color: #002938;
    border-bottom: transparent;
  }

  .outline_List dd {
    width: 100%;
    padding: 10px 10px 20px;
    border-bottom: transparent;
  }
}