@charset "UTF-8";

.utilArea{
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.btnSprout{
    height: 38px;
    display: flex;
    margin-top:25px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 14px;
    font-family: 'Noto Sans Medium';
    color: #fff;
    border-radius: 50px;
    background-color: #F36A23;
}

.btnSprout::before{
    content: '';
    width: 22px;
    height: 22px;
    margin-right: 8px;
    background: url('../images/ico/ico-sprout.svg') no-repeat center;
}

.popupArea.layerType{
    max-width: 1160px;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%,-50%);
    background: transparent;
}

.popupArea.layerType .btnLayerClose{
    position: absolute;
    top: 0;
    right: -50px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff url('../images/ico/ico-pop-close.svg') no-repeat center;
}

.popupArea.layerType .popTitle{
    display: flex;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #222;
}

.popupArea.layerType .subPopTitle{
    font-size: 20px;
    font-weight: bold;
    font-family: 'Noto Sans';
    color: #222;
}

.popupArea.layerType .subPopTitle + .procedureArea{
    margin-top: 20px;
}

.popupArea.layerType::before{
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 101vh;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.popupArea.layerType.bgNone::before{
    background: transparent
}

.popupArea.layerType .popupInner{
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    overflow-y: auto;
    max-height: 820px;
}

.popupArea.layerType .popupInner::-webkit-scrollbar{
    width: 8px;
}

.popupArea.layerType .popupInner::-webkit-scrollbar-thumb{
    background-color: #ddd;
    border-radius: 20px;
}

.popupArea.layerType .popupInner::-webkit-scrollbar-track{
    display: none;
}

.procedureWrap + .procedureWrap{
    margin-top: 40px;
}

.procedureArea{
    margin-top: 40px;
}

.procedureArea .list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 37px;
    row-gap: 27px;
}

.procedureArea .list.type02 .itemBox{
    height: 240px;
}

.procedureArea .item{
    display: flex;
    position: relative;
}

.procedureArea .item.rotate::before,.procedureArea .item.rotate::after{
    transform: rotate(90deg) translateX(-50%);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
}

.procedureArea .item.beforeNone::before{
    display: none;
}

.procedureArea .item.afterNone::after{
    display: none;
}

.procedureArea .item:last-child::before{
    display: none !important;
}

.procedureArea .item:nth-child(n+5)::before{
    transform: rotate(-180deg);
}

.procedureArea .list.green .item:nth-child(n+4)::before{
    transform: rotate(-180deg);
    display: block;
}

.procedureArea .item::before,.procedureArea .item::after{
    content: '';
    position: absolute;
    right: -27px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background: url('../images/ico/ico-arrow-gray.svg') no-repeat center;
}

.procedureArea .item:not(:nth-child(4))::after{
    display: none;
}

.procedureArea .item:not(.procedure05){
    width: 100%;
    max-width: 245px;
}

.procedureArea .list.green .itemBox{
    border: 1px solid #ddd;
    background-color: #fff;
}

.procedureArea .list.green .item:not(.wide){
    width: 100%;
    max-width: 339px;
}

.procedureArea .list.green .item.wide{
    width: calc(100% - 379px);
    max-width: none;
}

.procedureArea .item.procedure05{
    width: calc(100% - 569px);
}

.procedureArea .list.type02 .item.procedure05{
    width: calc(100% - 284px);
}

.procedureArea .list.green .item:nth-child(3)::after{
    display: block;
}

.procedureArea .list.green .item:nth-child(4)::after{
    display: none;
}

.procedureArea .itemBox{
    flex: 1;
    height: 180px;
    padding: 20px;
    border-radius: 5px;
    background-color: #F8F8F8;
}

.procedureArea .itemBox .descContainer{
    display: flex;
}

.procedureArea .itemBox .descBox.hasBefore{
    display: flex;
}

.procedureArea .itemBox .descBox::before{
    content: '';
    display: inline-block;
    width: 1px;
    height: 100px;
    margin-left: 20px;
    margin-right: 40px;
    background-color: #ddd;
}

.procedureArea .itemBox .descBox:first-of-type:before{
    display: none;
}

.procedureArea .boxTitle{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Noto Sans';
    color: #222;
}

.procedureArea .boxTitle::before{
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #FBE5DA;
    background-repeat: no-repeat;
    background-position: center;
}

.procedureArea .list.green .boxTitle::before{
    background-color: #E8F8DD;
}

.procedureArea .item.procedure01 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure01.svg');
}

.procedureArea .item.procedure02 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure02.svg');
}

.procedureArea .item.procedure03 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure03.svg');
}

.procedureArea .item.procedure04 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure04.svg');
}

.procedureArea .item.procedure05 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure07.svg');
}

.procedureArea .item.procedure06 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure06.svg');
}

.procedureArea .item.procedure07 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure05.svg');
}

.procedureArea .list.type02 .item.procedure01 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure08.svg');
}

.procedureArea .list.type02 .item.procedure02 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure09.svg');
}

.procedureArea .list.type02 .item.procedure03 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure10.svg');
}

.procedureArea .list.type02 .item.procedure04 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure11.svg');
}

.procedureArea .list.type02 .item.procedure05 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure13.svg');
}

.procedureArea .list.type02 .item.procedure06 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure12.svg');
}

.procedureArea .list.type02 .item.procedure07 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure14.svg');
}

.procedureArea .list.type02 .item.procedure08 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure15.svg');
}

.procedureArea .list.type02 .item.procedure09 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure16.svg');
}


.procedureArea .list.type02 .item.procedure10 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure17.svg');
}


.procedureArea .list.type02 .item.procedure11 .boxTitle::before{
    background-image: url('../images/ico/ico-procedure18.svg');
}


.procedureArea .itemBox .desc{
    position: relative;
    font-size: 14px;
    font-family: 'Noto Sans';
    color: #222;
}

.procedureArea .itemBox .desc + .desc:not(.indent){
    margin-top: 5px;
}

.procedureArea .itemBox .desc.marker{
    padding-left: 8px;
}

.procedureArea .itemBox .desc.marker::before{
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #222;
}

.procedureArea .itemBox .desc::before{
    position: absolute;
    left: 0;
    top: 9px;
}

.procedureArea .itemBox .desc.dash{
    margin-left: 10px;
    padding-left: 10px;
}

.procedureArea .itemBox .desc.indent::before{
    content: '*';
    top: 0;
}

.procedureArea .itemBox .desc.dash::before{
    content: '-';
    top: 0;
}

.procedureArea .itemBox .desc.indent.type02{
    padding-left: 15px;
}

.procedureArea .itemBox .desc.indent.type02::before{
    content: '※';
    top: 0;
}

.procedureArea .itemBox .desc.indent{
    color: #666;
    margin-left: 20px;
    padding-left: 7px;
}

.tabNav .tabCont .tabNav[class*="type"]{
    margin-top: 40px;
}

.columnListContainer{
    margin-top: 20px;
}
.columnListContainer a{text-decoration:underline;color:#4ea61f;}

.columnListContainer .list{
    display: flex;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    margin-bottom:20px;
}

.columnListContainer > .list > .item{
    flex: 1;
    height: 910px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.columnListContainer .item.step02 .columnListBox .top{
    background-color: #E4F3DD;
}

.columnListContainer .item.step03 .columnListBox .top{
    background-color: #D1EBB5;
}

.columnListContainer .item.step04 .columnListBox .top{
    background-color: #4EA61F;
}

.columnListContainer.type02 .item.step06 .columnListBox .top{
    background-color: #FEF2EC;
}

.columnListContainer.type02 .item.step07 .columnListBox .top{
    background-color: #FCD5C1;
}

.columnListContainer.type02 .item.step08 .columnListBox .top{
    background-color: #F36A23;
}

.columnListContainer .item:last-of-type .columnListBox .top .stepText::after{
    background-color: #fff;
}

.columnListContainer .item:last-child .columnListBox .stepText, .columnListContainer .item:last-child .columnListBox .stepTitle{
    color: #fff !important;
}

.columnListContainer .item.step01 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu01-step01.svg');
}

.columnListContainer .item.step02 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu01-step02.svg');
}

.columnListContainer .item.step03 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu01-step03.svg');
}

.columnListContainer .item.step04 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu01-step04.svg');
}

.columnListContainer .item.step05 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu02-step01.svg');
}

.columnListContainer .item.step06 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu02-step02.svg');
}

.columnListContainer .item.step07 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu02-step03.svg');
}

.columnListContainer .item.step08 .columnListBox .top .textBox::before{
    background-image: url('../images/ico/img-menu02-step04.svg');
}

.columnListContainer .columnListBox{
    flex: inherit;
}

.columnListContainer .columnListBox .top{
    padding: 20px;
    border-bottom: 2px solid #383E60;
    border-radius: 5px 5px 0 0;
    background-color: #F8F8F8;
}

.columnListContainer .columnListBox .top .textBox .innerBox{
    display: flex;
    flex-direction: column;
}

.columnListContainer .columnListBox .top .textBox{
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.columnListContainer .columnListBox .top .textBox::before{
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.columnListContainer .columnListBox .top .stepText{
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Noto Sans';
    color: #4EA61F;
}

.columnListContainer.type02 .columnListBox .top .stepText{
    color: #F36A23;
}

.columnListContainer.type02 .columnListBox .top .stepText::after{
    background-color: #F36A23;
}

.columnListContainer .columnListBox .top .stepText::after{
    content: '';
    width: 14px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #4EA61F;
}

.columnListContainer .columnListBox .top .stepTitle{
    font-size: 18px;
    font-weight: bold;
    font-family: 'Noto Sans';
    color: #222;
}

.columnListContainer .columnListBox .bottom{
    padding: 17px;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
}

.columnListContainer .textListWrap .list{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.columnListContainer .textListWrap .item{
    width: 100%;
}

.columnListContainer .textListWrap .textInnerBox{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.columnListContainer .textListWrap .strongText{
    position: relative;
    font-size: 16px;
    font-family: 'Noto Sans Medium';
    color: #222;
    font-weight: normal;
}

.columnListContainer .textListWrap .listText{
    position: relative;
    font-size: 14px;
    font-family: 'Noto Sans';
    color: #222;
    padding-left: 8px;
}

.blankLink{
    color: #F36A23;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.underLine{
    text-decoration: underline;
    text-underline-offset: 2px;
}

.underLine *{
    text-decoration: inherit;
}

.openInNew::after{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url('../images/ico/ico-open-in-new.svg');
}

.openInNew:hover::after{
    background: url('../images/ico/ico-open-in-new-hover.svg');
}

.columnListContainer .textListWrap .indentText{
    display: flex;
    color: #666;
}

.columnListContainer .textListWrap .indentText .innerTextBox.col{
    display: flex;
    flex-direction: column;
}

.columnListContainer .textListWrap .indentText::before{
    content: '*';
    margin-right: 2px;
}

.columnListContainer .textListWrap .listText .col{
    display: inline-flex;
    flex-direction: column;
}

.columnListContainer .textListWrap .listText::before{
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #222;
}

.columnListContainer .textListWrap .listText.col::before{
    position: absolute;
    left: 0;
    top: 9px;
}

.columnListContainer .textListWrap .textInnerBox .openInNew::after{
    right: 12px;
    top: 6px;
}
.procedureArea .itemBox a{   text-decoration: underline;
    color: #4ea61f;
}

.chat_Btn{float:right;position:relative;right:0;top:-120px;}
@media screen and (max-width: 1280px) {
    .chat_Btn{position:relative;left:-157px;top:-18px;}
    .btnSprout{display:none;}
}

.txt_wrap01{width:50%;position:relative;float:left;padding:0 10px 10px 10px;}
.pab{display:block !important}