@charset "utf-8";

@import url(fonts.css);
@import url(reset.css);
@import url(common.css);

/*sub top*/
.subVisual {
    width: 100%;
    height: 200px;
    background: url(/pq/img/sub/subTop.png) center center no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 92px;
}

.subVisual::after {
    content: "건설기술에 관한 특허·실용신안 활용실적 관리시스템";
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
}

/*navigation path menu*/
.pathMenuWrap {
    width: 100%;
    height:48px;
    background: var(--GrayBg);
    border-bottom: 1px solid var(--GrayD);
}

.pathMenu {
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.pathMenu button.home {
    width: 72px;
    background: url(../img/common/icon_home.png) center center no-repeat;
    border-left: 1px solid var(--GrayD);
    border-right: 1px solid var(--GrayD);
}

.pathMenu nav {
    width: 300px;
    min-height: 48px;  
    display: flex;
    flex-direction: column; 
    border-right: 1px solid var(--GrayD);
    position: relative;
}

.pathMenu nav:not(.depth01, .current) {
    display: none;
}

.pathMenu nav h1 {
    width: 100%;
    height: 48px;
    padding: 24px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--Gray4);
    cursor: pointer;
    z-index: 9;
}

.pathMenu nav h1::after{
    content: "";
    position: absolute;
    width: 52px;
    height: 48px;
    left: 248px;
    background: url(../img/common/downArrow_gray.png) 12px center no-repeat;
    cursor: pointer;
}

.pathMenu nav h1.select::after {
    transform: rotate(180deg);
    background-position: 24px center;
}


.pathMenu nav ul {
    width: 301px;
    min-height: 48xp;
    border: 1px solid var(--GrayD);
    flex-direction: column;
    display: none;
}

.pathMenu nav h1.select + ul  {
    display: flex;
    position: absolute;
    top: 47px;
    left: -1px;
    z-index: 8;
}

.pathMenu nav ul li {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid var(--GrayD);
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray4);
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}

.pathMenu nav ul li:hover {
    color: var(--blue);
}

.pathMenu nav ul li:last-child {
    border-bottom: 0;
}

.pathMenu nav ul li a{
    width: 100%;
    height: 48px;
    border-bottom: 1px solid var(--GrayD);
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray4);
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}


/*body content*/
.bodyWrap {
    width: 1400px;
    margin: 0 auto 100px auto;
}

/*title*/
h1.ttl {
  display: flex;
  margin: 1.7rem 0 2.2rem;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  font-weight: 500;
  color: var(--Gray4);
  position: relative;
}

h1.ttl::after {
  content: "";
  width: 80px;
  height: 1px;
  background: var(--GrayC);
  position: absolute;
  bottom: -10px;
  left: calc(50% - 40px);
}

header.tableTtl {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding-bottom: 0.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 3rem;
}

header.tableTtl h2 {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    color: var(--Gray4);
}

header.tableTtl span {
    display: flex;
    flex-direction: row;
    gap: 8px;
}


/*process*/
svg {
    margin-bottom: 40px;
}

g text:first-child {
    font-size: 16px;
    font-weight: 700;
}

g text:last-child {
    font-size: 14px;
    font-weight: 500;
}

/*table*/
table {
    width: 100%;
    border-top: 2px solid var(--subColor);
}

table th {
    background: var(--bgColor);
    text-align: center;
    font-weight: 500;
}

table th,
table td {
  padding: 9px 20px;
  height: auto;
  border-bottom: 1px solid var(--lineColor);
  font-size: 14px;
  line-height: 16px;
  color: var(--Gray4);
}

table.con td.content {
    height: 300px;
    padding: 20px;
    vertical-align: top;
    line-height: 28px;
}

table.list td {
    cursor: pointer;
}

table.list td a {
    color: var(--subColor);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 8px;
}

table.list td a.listLink {
    color: var(--Gray4);
    text-decoration: none;
    margin-bottom: 0;
    display: block;
    width: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

table.list td a:last-child {
    margin-bottom: 0;
}

table.list tbody tr {
    transition: all .3s;
}

table.list tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(86,155,216,.4);
}

table.list  tbody tr:hover td {
    color: var(--subColor);
    border: 0;
}

table td {
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 400;
    background-color: #fff;
}

table.board td {
	white-space: normal;
}

table tr:last-child th,
table tr:last-child td {
    border-color: var(--subColor);
}

.tableTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    margin-bottom: 12px;
}

.tableTop p {
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: var(--Gray4);
}

table.search {
    border-top: 2px solid var(--GrayA);
}

table.search th {
    background: var(--GrayBg);
}

table.search th,
table.search td {
    height: 48px;
    border-bottom: 1px solid var(--GrayE);
}


table.search tr:last-child th,
table.search tr:last-child td {
    border-color: var(--GrayA);
}

table a.file {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    color: unset;
    text-decoration: unset!important;
}

table a.file + a.file {
    margin-top: 8px;
}

table a.file span.file {
    color: var(--accent)!important;
    text-decoration: underline;
}

table span.new {
    padding: 3px 8px 2px;
    background: var(--mainColor);
    border-radius: 16px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 500;
    color: var(--white);
}

table a.title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block!important;
}

table span.notice {
    padding: 4px 12px;
    border-radius: 19px;
    color: var(--error);
    font-size: 14px;
    line-height: 14px;
    border: 1px solid var(--error);
    font-weight: 400;
}

table span.archive {
    padding: 4px 12px;
    border-radius: 19px;
    color: var(--subColor);
    font-size: 14px;
    line-height: 14px;
    border: 1px solid var(--subColor);
    font-weight: 400;
}

table.faq th{
    position: relative;
    padding-right: 56px;
    cursor: pointer;
}

table.faq th,
table.faq td {
    height: 68px;
    text-align: left;
}

table.faq td {
    padding: 20px;
}

table.faq tr.close th::after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 26px;
    width: 16px;
    height: 16px;
    background: url(../img/common/downArrow.png) center center no-repeat;
}

table.faq tr.open th {
    color: var(--accent);
}

table.faq tr.open th::after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 26px;
    width: 16px;
    height: 16px;
    background: url(../img/common/downArrow.png) center center no-repeat;
    transform: rotate(180deg);
}

table.faq tr.close + .answer {
    display: none;
}

table.faq tr.open + .answer {
    display: table-row;
}

table.faq tr.answer td {
    line-height: 28px;
}

/* 20250107 */
table.faq tr.answer td p {
    white-space: normal;
    margin: 0 !important;
    text-indent: 0 !important;
    line-height: 1.6;
}

/*pagenation*/
.paging {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  gap: 12px;
}

.paging > * {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: all .3s;
}

.paging .first {
    background: url(../img/common/btn_pagingFirst.png) center center no-repeat;
}

.paging .first:hover {
    background: url(../img/common/btn_pagingFirstHover.png) center center no-repeat;
}

.paging .prev {
    background: url(../img/common/btn_pagingPrev.png) center center no-repeat;
}

.paging .prev:hover {
    background: url(../img/common/btn_pagingPrevHover.png) center center no-repeat;
}

.paging .next {
    background: url(../img/common/btn_pagingNext.png) center center no-repeat;
}

.paging .next:hover {
    background: url(../img/common/btn_pagingNextHover.png) center center no-repeat;
}

.paging .last {
    background: url(../img/common/btn_pagingLast.png) center center no-repeat;
}

.paging .last:hover {
    background: url(../img/common/btn_pagingLastHover.png) center center no-repeat;
}

.paging a {
    border: 1px solid var(--GrayD);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--Gray9);
}

.paging a:hover,
.paging a.current {
    border-color: var(--subColor);
    background: var(--subColor);
    color: var(--white);
}

/*form*/
table.search input,
table.search select {
    border-color: var(--GrayD);
}

select:not([class^='ui-datepicker']) {
    appearance: none;
    -webkit-appearance: none;
    padding: 0 40px 0 12px;
    border-radius: 4px;
    border: 1px solid var(--lineColor);
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray4);
    line-height: 16px;
    height: 36px;
    cursor: pointer;
    background: url(../img/common/downArrow.png) calc(100% - 12px) center no-repeat;
}

select.open {
    background: url(../img/common/upArrow.png) calc(100% - 12px) center no-repeat;
}

div.formWrap {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

div.formWrap.date {
    gap: 8px;
}

div.formWrap .btn {
    margin-left: 50px;
}

div.formWrap + .formWrap {
    margin-top: 12px;
}

input {
    padding: 0 12px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--lineColor);
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray4);
    line-height: 16px;
}

input:read-only {
    background: var(--GrayBg);
    border: 1px solid var(--GrayD);
    color: var(--Gray6);
}

::placeholder {
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray9);
}

input[type="file"] {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}

label.btn {
    cursor: pointer;
}

div.agreeWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 80px;
    margin-bottom: 24px;
}

div.agreeWrap p {
    width: 100%;
}

div.agreeWrap > * {
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    color: var(--Gray4);
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
}

input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
}

input[type="checkbox"] + label::before {
    background: url(../img/common/chk.png) center center no-repeat;
}

input[type="radio"] + label::before {
    background: url(../img/common/radio.png) center center no-repeat;
}

input[type="checkbox"]:checked + label::before {
    background: url(../img/common/chk_checked.png) center center no-repeat;
} 

input[type="radio"]:checked + label::before {
    background: url(../img/common/radio_checked.png) center center no-repeat;
}




/*button*/
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    flex-direction: row;
    gap: 8px;
    border-radius: 4px;
    transition: opacity .3s;
    padding: 0 12px;
    height: 36px;
}

.btn:hover {
    opacity: .8;
}

.btn.navy {
    background-color: var(--mainColor);
}

.btn.blue {
    background-color: var(--subColor);
}

.btn.gray {
    background-color: var(--Gray7);
}

.btn.orange {
    background-color: var(--accent);
    color: var(--white)!important;
}

.btn.red {
    background-color: var(--error);
    color: var(--white)!important;
}

.btn.large {
    padding: 0 20px;
    height: 48px;
}

.btn.search {
    width: 120px;
    margin-bottom: 15px;
}

.bottomBtnArea {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.bottomBtnArea.right {
    justify-content: flex-end;
}


/*tooltip*/
.tooltip {
   margin: 12px 0; 
   display: inline-flex;
   flex-direction: column;
   gap: 12px;
   position: relative;
}

.tooltip button {
   display: inline-flex;
   flex-direction: row;
   gap: 8px;
   /* height: 16px; */ 
   font-size: 14px;
   /* line-height: 16px; */
   font-weight: 500;
   color: var(--Gray6);
   position: relative;
   padding-right: 24px;
   padding-top: 8px;
   white-space: nowrap;
}

.tooltip button.open .arrow {
    transform: rotate(180deg);
}

/* 20250107 */
.tooltip .content {
   border: 1px solid var(--GrayD);
   background: var(--GrayBg);
   padding: 12px;
   font-size: 13px;
   line-height: 22px;
   color: var(--Gray7);
   display: none;
   margin-top: 12px;
   border-radius: 4px;
   position: absolute;
   top: 15px;
   width: max-content;
   z-index: 2;
}

.tooltip .content span {
    display: inline !important;
}

/* 20250116 Start */
table td .tooltip {
    gap: 0;
}
table td .tooltip .content {
   position: relative;
   margin-top: 0;
}
/* 20250116 End */

.tooltip button.open + .content {
    display: inline;
}

.tooltip .content a {
    color: var(--subColor);
    text-decoration: underline;
}

/*description box*/
.description {
  width: 100%;
  border: 1px solid var(--subColor);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 40px;
  margin-top: 2rem;
  margin-bottom: 2rem !important;
}

.description h1 {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-start;
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}

.description .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.description .content.col2 {
    width: calc(50% - 20px);
}

.description .content dl {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--GrayD);
}

.description .content dl:last-child {
    border: 0;
}

.description .content dl dt {
    position: relative;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--black);
    padding-left: 12px;
}

.description .content dl dt::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--subColor);
    top: 6px;
    left: 0;
}

.description .content dl dd {
   padding-left: 12px;
   font-size: 14px;
   line-height: 22px;
   color: var(--Gray7); 
}

.description .content dl dd span {
    color: var(--subColor);
}

/*popup*/
.dim {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    display: none;
}

/* 20250107 */
.popup {
    display: none;
    width: 800px;
    height: calc(100% - 240px);
    position: fixed;
    z-index: 12;
    left: calc(50% - 400px);
    top: 120px;
    background: var(--bgColor);
    border-radius: 10px;
    padding: 40px;
}

.popup#idCheck,
.popup#companyCheck {
    width: 700px;
    height: 286px;
    left: calc(50% - 350px);
}

.popup#idCheck .formWrap,
.popup#companyCheck .formWrap {
    align-items: center;
    justify-content: center;
}

.popup#idCheck .btn,
.popup#companyCheck .btn {
    margin-left: 0;
}

.popup::-webkit-scrollbar-track {
    margin-top: 40px;
    margin-bottom: 40px;
}

.popup header {
    padding: 0 40px 20px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--lineColor);
}

.popup header h1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    line-height: 36px;
    color: var(--black);
    font-weight: 500;
}

.popup header button {
    width: 60px;
    height: 60px;
    background: url(../img/common/popup_btn_close.png) center center no-repeat;
}

.popup .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 120px);
}

.popup .content dl {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup .content dl dt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    gap: 12px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--Gray4);
}

.popup .content dl dt span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: var(--blue);
    color: var(--white);
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
}

.popup .content dl dd {
    margin-left: 72px;
    width: calc(100% - 72px);
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    font-size: 18px;
    line-height: 40px;
    color: var(--black);
}

.popup .content dl dd span {
    color: var(--subColor);
    text-decoration: underline;
}

/*copy box*/
.copyBox {
    width: 100%;
    padding: 12px;
    background: var(--GrayBg);
    border: 1px solid var(--GrayD);
    border-radius: 4px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    color: var(--Gray7);
    margin-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.copyBox h1 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: var(--black);
    margin-top: 28px;
}

.copyBox h2 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--Gray4);
}

.copyBox p {
    font-size: 13px;
    line-height: 32px;
    font-weight: 400;
    color: inherit;
    margin-bottom: 20px;
}

/*tab menu*/
hgroup.tabMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 32px;
}

hgroup.tabMenu h2 {
    min-width: 220px;
    height: 48px;
    padding: 0 24px;
    background: var(--white);
    border: 1px solid var(--lineColor);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--subColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

hgroup.tabMenu h2:not(:first-child) {
    margin-left: -1px;
}

hgroup.tabMenu h2:hover,
hgroup.tabMenu h2.current {
    border-color: var(--mainColor);
    background: var(--mainColor);
    color: var(--white);
}

hgroup.tabMenu h2:not(.current):hover {
    border-left-color: var(--subColor);
    border-right-color: var(--subColor);
}


/*join agree*/
.agreeBox {
    width: 1400px;
    height: 300px;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid var(--subColor);
    border-radius: 8px;
}

.agreeBox::-webkit-scrollbar-track {
    margin: 12px 0 ;
}

.agreeBox h1 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
}

.agreeBox h2 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--Gray7);
    margin-bottom: 12px;
}

.agreeBox p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--Gray7);
    margin-bottom: 8px;
}

.agreeBox table {
    border: 1px solid var(--GrayD)!important;
    margin-bottom: 22px;
}

.agreeBox table th {
    background: var(--GrayBg);
}

.agreeBox table th,
.agreeBox table td {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--Gray7);
    text-align: center;
    border: 1px solid var(--GrayD)!important;
}


/*login*/
fieldset {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin:0 auto;
}

fieldset legend {
    width: 0;
    height: 0;
    position: absolute;
    text-indent: -999999px;
}

fieldset input,
fieldset button {
    width: 320px;
}

fieldset .linkWrap {
    margin-top: 4px;
    display: flex;
    flex-direction: row;
    justify-items: flex-start;
    align-items: center;
    gap: 24px;
} 

fieldset .linkWrap a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--subColor);
}

fieldset .linkWrap a:hover {
    text-decoration: underline;
}

/*  20241208 */
textarea {
    padding: 8px 12px;
    width: 80%;
    height: 100px;
    border-radius: 4px;
    border: 1px solid var(--lineColor);
    font-size: 15px;
    font-weight: 400;
    color: var(--Gray4);
    line-height: 16px;
}

/*  20241219  */
.txtWrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.txtWrap h2 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: var(--black);
}

.txtComp {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.txtComp h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--black);
}

.txtComp p {
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: #777;
}

.txtComp img {
    width: fit-content;
}

.txtComp .icoTit {
    color: var(--Gray6);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.txtComp .icoTit img {
    margin-top: 0;
}

.txtComp .subContent {
    width: 100%;
    padding: 12px;
    background: var(--GrayBg);
    border: 1px solid var(--GrayD);
    border-radius: 4px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    color: var(--Gray7);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title.inline {
    margin-bottom: -3px !important;
    display: inline-block !important;
}


/* 20241226 */

.alertNew {
    position: relative;
}

.alertNew::after {
    position: absolute;
    top: 2px;
    left: -17px;
    content: 'N';
    font-size: 10px;
    padding: 2px;
    border: 1px solid #fd6969;
    border-radius: 2px;
    line-height: 1;
    background: #fd6969;
    color: #fff;
}

.steps {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 50px 0 0px;
}

.steps ul {
    display: flex;
}

.steps ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    text-align: center;
    word-break: keep-all;
    padding: 0 10px;
    font-size: 13px;
    color: #aaa;
    font-weight: 300;
}

.steps ul li {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: auto 31px;
    padding: 40px 15px 0px;
}

.steps ul li.on  {
    color: #0d1d76;
    font-weight: 500;
    font-size: 13px;
}

.steps ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: block;
    background: url(../img/sub/arrow_right.png) 0 50% no-repeat;
    background-size: 8px auto;
    opacity: .5;
}

.steps ul li:last-child::after {
    content: none;
}

.steps ul li.step_1 {
    background-image: url(../img/sub/step_01.png);
}

.steps ul li.step_1.on {
    background-image: url(../img/sub/step_01_on.png);
}

.steps ul li.step_2 {
    background-image: url(../img/sub/step_06.png);
}

.steps ul li.step_2.on {
    background-image: url(../img/sub/step_06_on.png);
}

.steps ul li.step_3 {
    background-image: url(../img/sub/step_03.png);
}

.steps ul li.step_3.on {
    background-image: url(../img/sub/step_03_on.png);
}

.steps ul li.step_4 {
    background-image: url(../img/sub/step_04.png);
}

.steps ul li.step_4.on {
    background-image: url(../img/sub/step_04_on.png);
}

.steps ul li.step_5 {
    background-image: url(../img/sub/step_05.png);
}

.steps ul li.step_5.on {
    background-image: url(../img/sub/step_05_on.png);
}

.steps ul li.step_6 {
    background-image: url(../img/sub/step_06.png);
}

.steps ul li.step_6.on {
    background-image: url(../img/sub/step_06_on.png);
}

.steps ul li.step_7 {
    background-image: url(../img/sub/step_07.png);
}

.steps ul li.step_7.on {
    background-image: url(../img/sub/step_07_on.png);
}

.loadingWrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffc4;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    flex-direction: column;
}

.loadingWrap .loadingSpinner {
    width: 40px;
    height: 40px;
    border: 5px solid #0d1d76;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.responsivePop {
    padding: 40px 20px;
}

.responsivePop .bodyWrap {
    width: 100%;
    height: auto;
    margin: 0 auto;    
}

.responsivePop h1.ttl {
    margin: 0 0 60px;
    font-size: 2rem;
}

.responsivePop .finishBox {
    width: 100%;
}

.responsivePop .lineBox {
    width: 100%;
}

.responsivePop table {
    width: 100% !important;
    margin-bottom: 30px;
    margin-top: 10px;
    border-top-width: 3px;
    table-layout: auto;
}

.responsivePop table th,
.responsivePop table td {
    width: auto !important;
    height: auto !important;
    padding: 8px 6px !important;
    border: 1px solid #cdcdcd !important;
}

.responsivePop table.table-border-bottom tr th, 
.responsivePop table.table-border-bottom tr td {
    border-left: none !important;
    border-right: none !important;
}

.responsivePop table.table-layout-fixed {
    table-layout: fixed;
}

.responsivePop .pop2 {
    width: 100% !important;
}

.btnWrap {
    display: flex;
    padding: 10px 0;
    gap: 10px;
}
.btnWrap.btnLeft {
    justify-content: flex-start;
}
.btnWrap.btnRight {
    justify-content: flex-end;
}
.btnWrap.btnCenter {
    justify-content: center;
}

.datePickerWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
}

/* 20250116 start */
.subVisual {
    background: none;
    background: linear-gradient(90deg, rgba(22, 150, 242, 1) 0%, rgba(22, 150, 242, 1) 50%, rgb(22 150 242) 100%)
}

/* 20250120 Start */
.subVisual::before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 1400px;
    height: 200px;
    background: url(../img/sub/subTop_v2.png) 100% 100% no-repeat;
}
/* 20250120 End */

.pathMenu {
    gap: 0.8rem;
    align-items: center;
}

.pathMenu button.home {
    width: 25px;
    height: 25px;
    border: none;
}

.pathMenu nav.depth01,
.pathMenu nav.current,
.pathMenu nav.on {
    width: auto;
    min-height: auto;
    border: none;
    cursor: default;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.pathMenu nav h1 {
    height: auto;
    width: auto;
    padding: unset;
    cursor: default;
}

.pathMenu nav h1::after {
    content: none;
}

.pathMenu nav::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/common/downArrow_gray.png) 0 0 no-repeat;
    transform: rotate(272deg);
}

.pathMenu nav ul {
    display: none !important;
}
/* 20250116 end */

/* 20250117 */
.inquiryWrap {
    gap: 1rem;
}

.inquiryWrap .content {
    gap: 1rem;
}

.inquiryWrap .inquiryList li {
    line-height: 1.7;
}

.inquiryWrap .inquiryList li ul {
    margin-left: 1rem;
}

.inquiryWrap .inquiryList dl {
    gap: unset;
    padding: .5rem 0;
    margin-left: 1rem;
    flex-direction: row;
}

.inquiryWrap .inquiryList dl dt {
    line-height: 1.6;
    padding-left: 0;
}

.inquiryWrap .inquiryList dl dt::before {
    content: none;
}

.inquiryWrap .inquiryList .outlineBox {
    border: 1px solid #a5a5a5;
    padding: 1rem;
    margin: 0.4rem 0;
}

.inquiryWrap b,
.inquiryWrap b span {
    font-weight: 500;
}

.inquiryWrap .underline {
    text-decoration: underline;
}

.textRed {
    color: #f00 !important;
}

.textBlue {
    color: #00f !important;
}

/* 20250123 */
.imgGuide {
    display: flex;
    border: 1px solid #569bd8;
    border-radius: 0.3rem;
    padding: 2rem;
    gap: 2rem;
}

.imgGuide .col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.imgGuide .col ul {
    margin-top: 1rem;
    padding-left: 0.2rem;
}

.imgGuide .col ul li b {
    font-weight: 600;
}

.imgGuide .col img {
    max-height: 300px;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
}

.imgGuide .col.imgArrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgGuide .col.imgArrow img {
    width: auto;
    max-height: none;
    border: none;
}

.textBox {
    border: 1px solid #aaa;
    padding: 1.3rem 1.4rem;
    width: 570px;
    margin: 2.5rem auto 0;
    border-radius: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.textBox h4 {
    color: var(--subColor);
    font-weight: 500;
    font-size: 1.1rem;
}

.textBox b {
    font-weight: 500;
}

/* 20250131 */
.popup.popup_small {
    padding: 2rem;
}

.popup.popup_small header {
    padding: 0 0 1rem;
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 2rem;
}

.popup.popup_small header h1 {
    font-size: 2rem;
}

.popup.popup_small header button {
    background-size: 70%;
}

.popup.popup_small .content {
    gap: 2rem;
}

.popup.popup_small .content dl {
    gap: 0.5rem;
}

.popup.popup_small .content dl dt {
    height: auto;
    font-size: 1.5rem;
}

.popup.popup_small .content dl dt span {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 1.5rem;
}

.popup.popup_small .content dl dd {
    margin-left: 3rem;
    margin-right: 1rem;
    width: auto;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.ui-datepicker {
    z-index: 2 !important;
}