@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --color-template-primary: #0536C2;
  --color-template-secondary: #00AFEC;
  --color-template-color-1: #1E3A8A;
  --color-template-outline: #7486AA;
  --font-inter: "Inter", sans-serif;
}

.tpl-title-h3 {
  position: relative;
  margin: 30px 0;
  padding-left: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.07px;
}
.tpl-title-h3::before, .tpl-title-h3::after {
  content: "";
  position: absolute;
  left: 0;
  height: 15px;
  width: 4px;
}
.tpl-title-h3::before {
  top: 3px;
  background-color: #00AFEC;
  border-radius: 4px 4px 0 0;
}
.tpl-title-h3::after {
  top: 20px;
  background-color: #000000;
  border-radius: 0 0 4px 4px;
}

.tpl-title-lead {
  margin-top: -24px;
  margin-bottom: 30px;
  padding-left: 24px;
  color: #4A5565;
}
.tpl-title-lead p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.tpl-title-lead + .section-container {
  margin-top: 30px;
}

.btn {
  display: table;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  min-width: 192px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn.btn-small {
  padding-right: 5px;
  padding-left: 5px;
  min-width: inherit;
  font-size: 14px;
  line-height: 1.42;
}
.btn.btn-large {
  padding: 16px 24px 17px;
  font-size: 18px;
  line-height: 1.5;
}
.btn.btn-center {
  margin-right: auto;
  margin-left: auto;
}
.btn:disabled {
  opacity: 0.3;
}

.btn-primary {
  padding: 12px 24px;
  background: var(--color-template-primary);
  color: #fff;
}

.btn-secondary {
  padding: 12px 24px;
  background: var(--color-template-secondary);
  color: #fff;
}

.btn-outline {
  padding: 12px 24px;
  background: var(--color-template-outline);
  color: #fff;
}

.btn-ghost {
  padding: 12px 24px;
  background-color: #F3F3F3;
  color: #364153;
}

.step_dot_list,
.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 1150px;
}
.step_dot_list > li,
.progress-bar > li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step_dot_list > li.step_line,
.progress-bar > li.step_line {
  display: none;
}
.step_dot_list > li::before, .step_dot_list > li::after,
.progress-bar > li::before,
.progress-bar > li::after {
  content: "";
  position: absolute;
  top: 22px;
  /* ※丸(40px)の中心(20px)に線(太さ4px)の中央を合わせるため 20 - 2 = 18px */
  width: 50%;
  height: 4px;
  /* 線の太さ */
  background: #E5E7EB;
  /* 未完了のグレー */
  z-index: -1;
  /* 丸の背面に配置 */
}
.step_dot_list > li::before,
.progress-bar > li::before {
  left: 0;
}
.step_dot_list > li::after,
.progress-bar > li::after {
  right: 0;
}
.step_dot_list > li:first-child::before,
.progress-bar > li:first-child::before {
  background: rgba(0, 175, 236, 0.3019607843);
}
.step_dot_list > li:has(~ li.done)::after,
.progress-bar > li:has(~ li.done)::after {
  background: rgba(0, 175, 236, 0.3019607843);
}
.step_dot_list > li:has(~ li.done) .step_dot_num,
.step_dot_list > li:has(~ li.done) .phase-flow,
.progress-bar > li:has(~ li.done) .step_dot_num,
.progress-bar > li:has(~ li.done) .phase-flow {
  border: 2px solid #00AFEC;
  background: #fff;
}
.step_dot_list > li:has(~ li.done) .step_dot_num::before,
.step_dot_list > li:has(~ li.done) .phase-flow::before,
.progress-bar > li:has(~ li.done) .step_dot_num::before,
.progress-bar > li:has(~ li.done) .phase-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  mask: url(../images/icon/icon_check.svg) no-repeat center/100%;
  background-color: #00AFEC;
}
.step_dot_list > li:has(~ li.done) .phase-flow_nam,
.progress-bar > li:has(~ li.done) .phase-flow_nam {
  opacity: 0;
}
.step_dot_list > li.done + li.done::before,
.progress-bar > li.done + li.done::before {
  background: rgba(0, 175, 236, 0.3019607843);
}
.step_dot_list > li.active .step_dot_num,
.step_dot_list > li.active .phase-flow, .step_dot_list > li.done .step_dot_num,
.step_dot_list > li.done .phase-flow,
.progress-bar > li.active .step_dot_num,
.progress-bar > li.active .phase-flow,
.progress-bar > li.done .step_dot_num,
.progress-bar > li.done .phase-flow {
  background: linear-gradient(135deg, #1E3A8A 0%, #1F4097 7.14%, #2145A5 14.29%, #224BB2 21.43%, #2351C0 28.57%, #2457CE 35.71%, #245DDD 42.86%, #2563EB 50%, #226DEB 57.14%, #1E77EB 64.29%, #1A81EB 71.43%, #178AEB 78.57%, #1493EA 85.71%, #109CEA 92.86%, #0EA5E9 100%);
  color: #fff;
}
.step_dot_list > li.active::before,
.progress-bar > li.active::before {
  background: rgba(0, 175, 236, 0.3019607843);
}
.step_dot_list > li .step_dot_num,
.step_dot_list > li .phase-flow,
.progress-bar > li .step_dot_num,
.progress-bar > li .phase-flow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E5E7EB;
  color: #6A7282;
  margin-bottom: 12px;
  z-index: 1;
}
.step_dot_list > li .step_dot_labels,
.step_dot_list > li .step_dot_name,
.progress-bar > li .step_dot_labels,
.progress-bar > li .step_dot_name {
  display: block;
}
.step_dot_list > li .step_dot_labels,
.step_dot_list > li .progress-bar__main-label,
.progress-bar > li .step_dot_labels,
.progress-bar > li .progress-bar__main-label {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.step_dot_list > li .step_dot_name,
.step_dot_list > li .progress-bar__sub-label,
.progress-bar > li .step_dot_name,
.progress-bar > li .progress-bar__sub-label {
  margin-top: 4px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42;
}
@media screen and (max-width: 767px) {
  .step_dot_list > li .step_dot_name,
  .step_dot_list > li .progress-bar__sub-label,
  .progress-bar > li .step_dot_name,
  .progress-bar > li .progress-bar__sub-label {
    display: none;
  }
}

.step_dot_list li.done .step_dot_num {
  border: 2px solid #00AFEC;
  background: #fff;
}
.step_dot_list li.done .step_dot_num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  mask: url(../images/icon/icon_check.svg) no-repeat center/100%;
  background-color: #00AFEC;
}
.step_dot_list li.done::after {
  background: rgba(0, 175, 236, 0.3019607843);
}
.step_dot_list:has(~ li.active)::after {
  background: rgba(0, 175, 236, 0.3019607843);
}

.thumbnail_list_row .item {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 767px) {
  .thumbnail_list_row .item {
    display: block;
  }
}
.thumbnail_list_row .item + .item {
  margin-top: 20px;
}
.thumbnail_list_row .thumbnail {
  flex: 0 0 40%;
  margin-right: 30px;
}
@media screen and (max-width: 960px) {
  .thumbnail_list_row .thumbnail {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 767px) {
  .thumbnail_list_row .thumbnail {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.thumbnail_list_row .thumbnail img {
  display: block;
  width: 100%;
}
.thumbnail_list_row .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 20px;
}
.thumbnail_list_row .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.thumbnail_list_row .text .button_wrap .btn {
  margin-left: auto;
}

.page_title_main,
.form_visual {
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  justify-content: center;
  padding: 5px 20px 5px;
  background: url(../images/title_bg.png) no-repeat center bottom/cover;
  min-height: 220px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_title_main,
  .form_visual {
    min-height: 180px;
  }
}
.page_title_main.hide,
.form_visual.hide {
  display: none;
}
.page_title_main div.title_inner,
.form_visual div.title_inner {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: 1018px;
}
.page_title_main .page_title,
.form_visual .page_title {
  text-align: center;
}
.page_title_main .page_title .main,
.form_visual .page_title .main {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
.page_title_main .page_title .sub,
.form_visual .page_title .sub {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.page_title_main .page_title .sub:not(:empty),
.form_visual .page_title .sub:not(:empty) {
  margin-top: 15px;
}
.page_title_main .page_title .sub:empty,
.form_visual .page_title .sub:empty {
  display: none;
}

.page_ttitle_main_text {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page_ttitle_main_text {
    font-size: 28px;
  }
}
.page_ttitle_main_text .pls_title:empty {
  display: none;
}
.page_ttitle_main_text .pls_title:not(:empty) + .plg_title {
  display: none;
}

.page_title_lead {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page_title_lead {
    font-size: 13px;
  }
}
.page_title_lead:not(:empty) {
  margin-top: 15px;
}
.page_title_lead:empty {
  display: none;
}

.step_bar {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0784313725);
  border: 1px solid #F3F4F6;
  border-radius: 10px;
}

.section-container {
  margin: 40px auto 40px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  max-width: 1216px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0784313725);
}
.section-container > *:first-child {
  margin-top: 0;
}

#main .login_contents::before, #main .login_contents::after,
#main .mypage_contents::before,
#main .mypage_contents::after {
  display: none;
  content: none;
}/*# sourceMappingURL=style.css.map */