@charset "UTF-8";

/******************************
pagesec-guide
******************************/
.pagesec-guide .ttlbox2 .ob{
  aspect-ratio: 77/48;
  background: url(../../images/ob/cat1.svg) no-repeat center / contain;
  position: absolute;
  top: -6rem;
  right: 0;
  width: 110px;
}

/******************************
pagesec-partner
******************************/
.pagesec-partner .ttlbox2 .ob{
  aspect-ratio: 131/97;
  background: url(../../images/ob/cat2.svg) no-repeat center / contain;
  position: absolute;
  top: -6rem;
  right: 0;
  width: 100px;
}
.pagesec-partner ul{
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.pagesec-partner li .fimgbox{
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  width: 35%;
}
.pagesec-partner li .ftxtbox{
  width: calc(65% - 2rem);
}
.pagesec-partner li .ftxtbox .ttl{
  font-size: 2rem;
  margin-bottom: 1rem;
}
@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) {
  .pagesec-partner li .fimgbox,
  .pagesec-partner li .ftxtbox{
    width: 100%;
  }
  .pagesec-partner li .ftxtbox{
    margin-top: 1rem;
  }
  .pagesec-partner li .ftxtbox .ttl{
    font-size: 1.8rem;
    font-weight: bold;
  }
}

/******************************
pagesec-flow
******************************/
.pagesec-flow .ttlbox2 .ob{
  aspect-ratio: 261/212;
  background: url(../../images/ob/cat3.svg) no-repeat center / contain;
  position: absolute;
  top: -6.5rem;
  right: 0;
  width: 100px;
}

.flow {
  counter-reset: number 0; 
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 7rem;
  position: relative;
}
.flow::before{
  content: "";
  background: #078838;
  position: absolute;
  top: 0;
  left: 5rem;
  height: 100%;
  width: 10px;
}
.flow > div{
  background: #fffbf8;
  border: 2px solid #078838;
  border-radius: 0 6px 6px 6px;
  counter-increment: number 1; 
  padding: 1rem 2rem 2rem;
  position: relative;
}
.flow > div::before{
  content: "STEP" counter(number);
  background: #078838;
  border-radius: 6px 6px 0 0;
  color: #fff;
  position: absolute;
  top: -3.7rem;
  left: -2px;
  padding: .2rem 3rem;
}
.flow dt{
  border-bottom: 2px solid #078838;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.flow dt i{
  color: #DE7920;
}
@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 > div {
    padding: 1rem 1.5rem 1.5rem;
  }
  .flow > div::before {
    top: -3.4rem;
  }
}