/* ===================================================================
//CSS information

// file name  :  outline.css
// style info :  スタイル指定
=================================================================== */

.outline {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between
}
.outline dt,
.outline dd {
  padding: 25px 0;
  font-size: 14px;
}
.outline dt {
  width: 20%;
  border-bottom: 1px solid #233B6C;
  font-weight: normal;
}
.outline dd {
  width: 80%;
  border-bottom: 1px solid #CCCCCC;
}
.outline dd a {
  position: relative;
  margin-left: 15px;
  padding: 5px 60px 5px 10px;
  border: 1px solid #233B6C;
  transition: all .4s ease-out;
  color: #233B6C;
}
.outline dd a:focus {
  color: #233B6C;
}
.outline dd a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: #222222;
  transition: all .4s ease-out;
}
.outline dd a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 21px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #222222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-out;
}
.outline dd a:hover {
  border: 1px solid #39FEAD;
  color: #2BF09F;
}
.outline dd a:hover::before {
  right: 10px;
  background: #39FEAD;
}
.outline dd a:hover::after {
  right: 11px;
  border-top: 1px solid #39FEAD;
}
/*2019.06.07 杉浦追加分*/
.outline dd ul li:not(:last-child) {
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 25px;
}
.outline dd ul li:not(:first-child) {
	padding-top: 25px;
}
/*ここまで*/
.structure p {
  font-weight: normal;
}
.structure figure {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
}
.pdfLink span {
  padding-right: 5px;
}
.pdfLink span img {
  vertical-align: text-bottom;
}


@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
  .outline dd a,
  .outline dd a:hover {
    display: block;
    width: 200px;
    margin-top: 15px;
    margin-left: 0;
  }
  .outline dd a::before {
    left: 9em;
    right: inherit;
  }
  .outline dd a::after {
    left: calc(9em + 23px);
    right: inherit;
  }
  
.slideWrap > figure > img {
    width: 770px !important;
}
}

@media only screen and (max-width: 480px) {
}