@charset "UTF-8";
/*---------------------------------------------
    common
---------------------------------------------*/
#header {
  margin-bottom: 0;
}

#mv {
  align-items: center;
  display: flex;
  height: 400px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #mv {
    height: 240px;
    margin: 0 auto;
    width: 80%;
  }
}
#mv .main-ttl {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.4;
  padding: 0.25em 2em 0.2em;
  position: relative;
  top: 0;
}
@media screen and (max-width: 820px) {
  #mv .main-ttl {
    font-size: 2.6rem;
    padding: 0.25em 1em 0.2em;
    text-align: center;
  }
}
#mv .main-ttl::before, #mv .main-ttl::after {
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 8px;
}
#mv .main-ttl::before {
  border-bottom: solid 3px #ea7f00;
  border-left: solid 3px #ea7f00;
  border-top: solid 3px #ea7f00;
  left: 0;
}
#mv .main-ttl::after {
  border-bottom: solid 3px #ea7f00;
  border-right: solid 3px #ea7f00;
  border-top: solid 3px #ea7f00;
  right: 0;
}

.section-ttl {
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .section-ttl {
    line-height: 1.4;
    margin-bottom: 28px;
  }
}
.section-ttl::after {
  background: #ea7f00;
  border-radius: 2px;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  line-height: 1.6;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 40px;
}

#main {
  background: #fff;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1480px;
  padding: 80px 40px;
  width: 90%;
}
@media screen and (max-width: 820px) {
  #main {
    padding: 40px 20px;
  }
}

/*---------------------------------------------
    about
---------------------------------------------*/
.about {
  margin: 0 auto 80px;
  max-width: 1480px;
  width: 100%;
}
.about .inner > .txt {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .about .inner > .txt {
    text-align: left;
  }
  .about .inner > .txt br {
    display: none;
  }
}
.about .inner .box-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.about .inner .box {
  background: #fff2e2;
  border-left: #ea7f00 4px solid;
  margin-bottom: 40px;
  padding: 32px 0 32px 24px;
  width: 48%;
}
@media screen and (max-width: 820px) {
  .about .inner .box {
    padding: 24px 16px 24px 16px;
    width: 100%;
  }
}
.about .inner .box-ttl {
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .about .inner .box-ttl {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}
.about .inner .box:nth-child(2n) {
  margin-left: 4%;
}
@media screen and (max-width: 820px) {
  .about .inner .box:nth-child(2n) {
    margin-left: 0;
  }
}
.about .inner .box .txt {
  margin-bottom: 1em;
}
.about .inner .box ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.about .inner .box ul li::before {
  content: "・";
}

.flow {
  margin-bottom: 80px;
}

.steps {
  color: #fff;
  display: flex;
  justify-content: center;
  list-style: none;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .steps {
    flex-wrap: wrap;
    gap: 24px 12px;
  }
}
.steps li {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  line-height: 1.4;
  margin: 0 30px 0 0;
  padding: 20px 10px 20px 40px;
  position: relative;
  width: 13%;
}
@media screen and (max-width: 820px) {
  .steps li {
    flex-wrap: wrap;
    font-size: 1.4rem;
    height: 80px;
    padding-left: 18px;
    width: 32%;
  }
}
.steps li:first-child {
  background: #ee9d00;
}
.steps li:first-child::before {
  border-color: transparent transparent transparent #ee9d00;
}
.steps li:nth-child(2) {
  background: #ed9000;
}
.steps li:nth-child(2)::before {
  border-color: transparent transparent transparent #ed9000;
}
.steps li:nth-child(3) {
  background: #eb8300;
}
.steps li:nth-child(3)::before {
  border-color: transparent transparent transparent #eb8300;
}
.steps li:nth-child(4) {
  background: #ea7600;
}
.steps li:nth-child(4)::before {
  border-color: transparent transparent transparent #ea7600;
}
.steps li:nth-child(5) {
  background: #e86900;
}
.steps li:nth-child(5)::before {
  border-color: transparent transparent transparent #e86900;
}
.steps li:last-child {
  background: #e75c00;
}
.steps li:last-child::before {
  border-color: transparent transparent transparent #e75c00;
}
.steps li::before {
  border-style: solid;
  border-width: 54px 40px;
  content: "";
  position: absolute;
  right: -80px;
  top: -11px;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .steps li::before {
    border-width: 41px 26px;
    right: -51px;
    top: -1px;
  }
}
.steps li::after {
  border-color: transparent transparent transparent white;
  border-style: solid;
  border-width: 54px 34px;
  content: "";
  position: absolute;
  right: -95px;
  top: -11px;
  z-index: 5;
}
@media screen and (max-width: 820px) {
  .steps li::after {
    display: none;
  }
}

.info {
  margin-bottom: 80px;
}
.info .box {
  margin: 0 auto;
  max-width: 580px;
}
.info .box-ttl {
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .info .box-ttl {
    font-size: 2rem;
  }
}

.news {
  background: #fff;
  border-radius: 20px;
  margin: 0 auto 80px;
  max-width: 780px;
  padding: 24px 40px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .news {
    background: none;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
  }
}
.news .section-ttl {
  margin: 0 auto 40px;
  width: 200px;
}
.news .contents-ttl {
  border-bottom: #333 solid 1px;
  font-size: 2.4rem;
}
.news .news-list {
  margin-bottom: 24px;
}
.news .news-list li {
  border-bottom: #333 solid 1px;
  padding: 10px 0;
}
.news .news-list li a {
  display: flex;
}
@media screen and (max-width: 820px) {
  .news .news-list li a {
    flex-direction: column;
  }
}
.news .news-list li .date {
  width: 110px;
}
@media screen and (max-width: 820px) {
  .news .news-list li .date {
    width: 100%;
  }
}
.news .news-list li .entry-ttl {
  display: inline-block;
  margin-left: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 110px);
}
@media screen and (max-width: 820px) {
  .news .news-list li .entry-ttl {
    margin-left: 0;
    width: 100%;
  }
}
.news .btn {
  margin: 0 auto 24px;
  width: 300px;
}
.news .btn a {
  height: 56px;
  line-height: 56px;
  width: 100%;
}
.news .bnr {
  margin-bottom: 40px;
}

.sns {
  margin-bottom: 80px;
}
.sns .sns-list {
  display: flex;
  gap: 0 24px;
  justify-content: center;
  margin-top: 16px;
}
.sns .sns-list li {
  width: 30px;
}

.bnr {
  border-radius: 10px;
  margin: 0 auto;
  max-width: 360px;
  overflow: hidden;
  width: 90%;
}
.bnr a {
  display: block;
}
.bnr a img {
  display: block;
}