@charset "UTF-8";

/*****************************
pagesec-flow
*****************************/
.flow{
  margin-top: 3rem;
}
.flow li{
  width: calc(100% / 3);
}
.flow dl {
  background: linear-gradient(90deg, #090204, #004A6D);
  color: #fff;
  padding: 2rem;
  height: 100%;
  width: 100%;
}
.flow dt {
  border-bottom: 1px dotted #fff;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.flow li:nth-of-type(2) dl{
  background: #004A6D;
}
.flow li:nth-of-type(3) dl{
  background: linear-gradient(90deg, #004A6D, #090204);
}

@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .flow{
    gap: 1rem;
  }
  .flow li{
    width: 100%;
  }
  .flow dt {
    text-align: left;
  }
  .flow li:nth-of-type(1) dl{
    background: linear-gradient(#090204, #004A6D);
  }
  .flow li:nth-of-type(3) dl{
    background: linear-gradient(#004A6D, #090204);
  }
}

/*****************************
pagesec-guidlines
*****************************/
.guidlineslist{
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3rem;
}
.guidlineslist > div{
  background: #fff;
  box-shadow: 2px 2px #ccc;
  padding: 2rem 4rem 3rem;
}
.guidlineslist > div > dt{
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}
.guidlineslist > div > dt::before,
.guidlineslist > div > dt::after{
  content: '';
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.guidlineslist > div > dt::after {
  background: #004A6D;
  transition: 0.3s;
  width: 70px;
}

.guidlineslist .tblbox1 {
  margin: 2rem 0;
  max-width: 100%;
}

.guidlineslist .morebtn1{
  text-align: center;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .guidlineslist > div {
    padding: 2rem 2rem 3rem;
  }
  .guidlineslist > div > dt{
    font-size: 2rem;
  }

}