@charset "utf-8";

/*
  margin adjustment
 */

.sub-headline {
  margin-bottom: 16px;
}

.notes-list {
  margin: 16px 0;
}

/*
  LOCAL NAV active
 */

.local-nav .nav-item.flow {
  background-color: #e1e1e4;
  color: #163954;
  font-weight: bold;
}

.local-nav .nav-item.flow .nav-link:hover {
  background-color: #d8d8db;
}

/* --------------------
headline
-------------------- */

.num-headline {
  color: #163954;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 16px 35px;
  position: relative;
}

.num-headline::before,
.num-headline::after {
  display: block;
  height: 24px;
  left: -35px;
  position: absolute;
  top: 2px;
  width: 24px;
}

.num-headline::before {
  background-color: #426077;
  border-radius: 50%;
  content: "";
}

.num-headline::after {
  color: #fff;
  font-size: 70%;
  line-height: 25px;
  text-align: center;
}

.num-headline.step1::after {
  content: "1";
}

.num-headline.step2::after {
  content: "2";
}

.num-headline.step3::after {
  content: "3";
}

.complete-headline {
  color: #f80;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.complete-headline .label {
  background-color: #f80;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 70%;
  margin-right: 14px;
  padding: 6px 14px 4px;
  vertical-align: bottom;
}

@media (min-width: 600px) {
  .num-headline,
  .complete-headline {
    font-size: 20px;
  }

  .num-headline::before,
  .num-headline::after {
    top: 4px;
  }
}

/* --------------------
　2段
-------------------- */

.column-item {
  display: flex;
  flex-direction: column;
}

.column .txt {
  margin-bottom: 32px;
}

.column .btn {
  height: 35px;
  margin: auto auto 0;
  width: 55%;
}

@media (max-width: 599px) {
  .column-item:first-child {
    margin-bottom: 40px;
  }
}

@media (min-width: 600px) {
  .column {
    display: flex;
    justify-content: space-between;
    max-width: 640px; /* IE11で崩れるのを防ぐ */
  }

  .column-item {
    flex-basis: calc((100% - 40px) / 2);
  }
}

/*
  STEP IMEGE
 */

.step-img {
  margin-top: 16px;
}

@media (max-width: 599px) {
  .step-img {
    height: auto;
    width: 100%;
  }
}

/*
  詳しいお手続きの流れ にボーダーを設定
 */

.detailed-procedure .sub-section {
  position: relative;
}

.detailed-procedure > .sub-section:not(:first-of-type)::before {
  background-color: #fff;
  border-bottom: 1px solid #6c889c;
  border-right: 1px solid #6c889c;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  margin-left: -9px;
  position: absolute;
  top: -51px;
  transform: rotate(45deg);
  width: 20px;
}

.detailed-procedure > .sub-section:not(:nth-last-of-type(2))::after {
  border-bottom: 1px solid #6c889c;
  content: "";
  display: block;
  height: 40px;
}

/*
  オレンジ帯
 */

.detailed-procedure .section-apply {
  padding: 32px 0;
}

.detailed-procedure .section-apply-head {
  font-size: 16px;
  margin-bottom: 16px;
}

.detailed-procedure .section-apply_btn-apply {
  line-height: 36px;
  margin-top: 16px;
  width: 200px;
}

@media screen and (max-width: 599px) {
  .detailed-procedure .section-apply {
    background-image: none;
    position: relative;
  }

  .detailed-procedure .section-apply::before {
    /* 両端のマージン分伸ばします */
    background-color: #f80;
    content: "";
    display: block;
    left: -14px;
    padding-bottom: calc(90px + 32px * 2);
    position: absolute;
    top: 0;
    width: calc(100% + 14px * 2);
    z-index: -1;
  }
}

/*
  サポートマニュアル
 */

.support-manual-unit {
  margin: 56px 0;
}

/* --------------------
IE11 hack
スペースの調整
-------------------- */
@media all and (-ms-high-contrast: none) {
  .num-headline::before,
  .num-headline::after {
    top: 0;
  }

  .complete-headline .label {
    padding-top: 9px;
  }
}