@charset "UTF-8";

:root {
--white: #FFF;
--black: #000;
--gray100: #F8F8F8;
--gray200: #EDEDED;
--gray300: #DEDEDE;
--gray400: #CCCCCC;
--gray500: #ABABAB;
--gray600: #999999;
--gray700: #666666;
--gray800: #333333;
--gray900: #121212;
--bgblue: #2D6DA5;
--blue: #337AB7;
--bluelight: #EDF1F4;
--info: #015E83;
--infolight: #EDF3F7;
--danger: #DC3545;
--dangerlight: #FCEFF0;
--success: #198754;
--successlight: #F4FDF9;
--caution: #A86500;
--cautionlight: #FFF9E6;
--red: #FF0000;
--current: #22A1A9;
--label: #385C6A;
--ok: #3DCB5C;
--highlight: #F3FEFF;
}


html {
    font-size: 62.5%; /*10px*/
}

body {
    position: relative;
    width: 100%;
    background: var(--white);
    color: var(--gray800);
    font-weight: 400;
    font-family:"Roboto", "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 2.0rem;
    overflow-y: visible;
    overflow-x: auto;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

img{
    max-width: 100%;
    max-height: 100%;
}

a{
    color:  var(--blue);
    text-decoration: underline;
    transition: 0.3s;
}

a:hover{
    color: var(--blue);
    text-decoration: underline;
    filter: brightness(1.25);
}

p{
    font-size: 1.5rem;
    line-height: 2.2rem;
}

.b{
    font-weight: 700 !important;
}

.xl{
    font-size: 200% !important;
}

.l{
    font-size: 140% !important;
}

.s{
    font-size: 90% !important;
}

.center{
    text-align: center !important;
}

.right{
    text-align: right !important;
}

.left{
    text-align: left !important;
}

.vtop{
    vertical-align: top !important;
}

.vmiddle{
    vertical-align: middle !important;
}

.vbottom{
    vertical-align: bottom !important;
}

.d-block{
    display: block !important;
}

.d-inline{
    display: inline !important;
}

.d-i-block{
    display: inline-block !important;
}

.d-flex{
    display: flex !important;
    align-items: flex-start;
}

.d-none{
    display: none !important;
}

.align-items-start{
    align-items: flex-start;
}

.align-items-end{
    align-items: flex-end;
}

.align-items-center{
    align-items: center;
}

.align-items-stretch{
    align-items: center;
}

.align-self-stretch{
    align-self: stretch;
}

.flex-center{
    justify-content: center !important;
}

.flex-start{
    justify-content: flex-start !important;
}

.flex-end{
    justify-content: flex-end !important;
}

.flex-space-between{
    justify-content: space-between !important;
}

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

.flex-gap-4{
    gap: 0.4rem;
}

.flex-gap-8{
    gap: 0.8rem;
}

.flex-gap-12{
    gap: 1.2rem;
}

.flex-gap-16{
    gap: 1.6rem;
}

.flex-gap-20{
    gap: 2.0rem;
}

.flex-gap-24{
    gap: 2.4rem;
}

.flex-gap-28{
    gap: 2.8rem;
}

.flex-gap-32{
    gap: 3.2rem;
}

.flex-gap-40{
    gap: 4.0rem;
}

.no-border{
    border: none !important;
}

.nowrap{
    white-space: nowrap;
}

.float-r{
    float: right;
}

.float-l{
    float: left;
}

/* ------------------------------------------------------------------
    Text
-------------------------------------------------------------------*/
.txt-success{
    color: var(--success);
}

.txt-info{
    color: var(--info);
}

.txt-caution{
    color: var(--caution);
}

.txt-danger{
    color: var(--danger);
}

.txt-memo{
    color: var(--gray700);
}

/* ------------------------------------------------------------------
    Buttons
-------------------------------------------------------------------*/

button:hover{
    cursor: pointer;
    filter: brightness(1.15);
    box-shadow: 0 2px 0 rgba(0,0,0,0.1);
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.8rem 1.6rem;
    color: #FFF;
    background: var(--blue);
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 0.8rem;
    text-decoration: none;
    border: 1px solid var(--blue);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    gap: 1.0rem;
    transition: .2s;
    white-space: nowrap;
}

.btn-s{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1.0rem 1.2rem 1.0rem;
    color: #FFF;
    background: var(--blue);
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: 0.4rem;
    text-decoration: none;
    border: 1px solid var(--blue);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    gap: 0.8rem;
    transition: .2s;
    white-space: nowrap;
}

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

.btn.btn-blue-line{
    color: var(--blue);
    background-color: var(--gray100);
    border: 1px solid var(--gray400);
}

.btn.btn-red{
    color: #FFF;
    background: var(--red);
    border: 1px solid var(--red);
}

.btn.btn-green{
    color: #FFF;
    background: var(--success);
    border: 1px solid var(--success);
}

.btn.btn-red-line{
    color: var(--red);
    background-color: var(--white);
    border: 1px solid var(--red);
}

.btn.btn-white-line{
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.btn.btn-gray-line{
    color: var(--lightgray);
    background-color: transparent;
    border: 1px solid var(--gray);
}

.btn-fixed{
    min-width: 21.0rem;
}

.btn:disabled{
    opacity: 0.4;
    pointer-events: none;
}

.btn:disabled:hover{
    background-color: initial;
    pointer-events: none;
}

/* ------------------------------------------------------------------
    Icon
-------------------------------------------------------------------*/

i{
    display:inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-size: 2.4rem;
}
.icon-xs{
    display:inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background-size: 1.6rem;
}
.icon-s{
    display:inline-block;
    width: 2.0rem;
    height: 2.0rem;
    background-size: 2.0rem;
}
.icon-m{
    display:inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-size: 2.4rem;
}
.icon-l{
    display:inline-block;
    width: 3.2rem;
    height: 3.2rem;
    background-size: 3.2rem;
}

.btn i{
    margin-left: -0.4rem;
}

i.icon-m-home{
    background: url(../images/icon_m_home.svg) no-repeat center center;
}
i.icon-m-payment{
    background: url(../images/icon_m_payment.svg) no-repeat center center;
}
i.icon-m-edit{
    background: url(../images/icon_m_edit.svg) no-repeat center center;
}
i.icon-m-logout{
    background: url(../images/icon_m_logout.svg) no-repeat center center;
}

i.icon-t-home{
    background: url(../images/icon_t_home.svg) no-repeat center center;
}
i.icon-t-addaccount{
    background: url(../images/icon_t_addaccount.svg) no-repeat center center;
}
i.icon-t-login{
    background: url(../images/icon_t_login.svg) no-repeat center center;
}
i.icon-t-signin{
    background: url(../images/icon_t_signin.svg) no-repeat center center;
}
i.icon-t-entry{
    background: url(../images/icon_t_entry.svg) no-repeat center center;
}
i.icon-t-home{
    background: url(../images/icon_t_home.svg) no-repeat center center;
}
i.icon-t-key{
    background: url(../images/icon_t_key.svg) no-repeat center center;
}
i.icon_t_edit{
    background: url(../images/icon_t_edit.svg) no-repeat center center;
}
i.icon-t-company{
    background: url(../images/icon_t_company.svg) no-repeat center center;
}
i.icon-t-credit{
    background: url(../images/icon_t_credit.svg) no-repeat center center;
}

i.icon-b-visible{
    background: url(../images/icon_b_visible.svg) no-repeat center center;
}
i.icon-b-invisible{
    background: url(../images/icon_b_invisible.svg) no-repeat center center;
}

i.icon-g-mail{
    background: url(../images/icon_g_mail.svg) no-repeat center center;
}
i.icon-g-tel{
    background: url(../images/icon_g_tel.svg) no-repeat center center;
}
i.icon-g-fax{
    background: url(../images/icon_g_fax.svg) no-repeat center center;
}
i.icon-g-address{
    background: url(../images/icon_g_address.svg) no-repeat center center;
}

i.icon_r_danger{
    background: url(../images/icon_r_danger.svg) no-repeat center center;
}

/* ------------------------------------------------------------------
    Form
-------------------------------------------------------------------*/

input,textarea,select{
    font-family:"Roboto", "Noto Sans JP", sans-serif;
}

input{
    margin: 0;
}

input[type="text"],input[type="password"],input[type="date"],input[type="datetime-local"]{
    display: inline-block;
    padding: 0.4rem 1.2rem;
    height: 4.0rem;
    border: 1px solid var(--gray500);
    font-size: 1.6rem;
    line-height: 2.0rem;
    color: var(--gray900);
    border-radius: 4px;
    box-shadow: inset 0 0.2rem 0 rgba(0,0,0,0.1) ;
}

textarea{
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gray500);
    font-size: 1.6rem;
    line-height: 2.0rem;
    color: var(--gray900);
    border-radius: 4px;
}

input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime-local"]:focus,textarea:focus{
    border: 1px solid var(--blue);
    background: var(--highlight);
}

input[type="text"]::placeholder,input[type="password"]::placeholder,input[type="date"]::placeholder,input[type="datetime-local"]::placeholder,textarea::placeholder{
    font-size: 1.6rem;
    line-height: 2.0rem;
    color: var(--gray200);
}

input[type="text"].error,input[type="password"].error,input[type="date"].error,input[type="datetime-local"].error,textarea.error,select.error{
    border: 1px solid var(--danger);
    background: var(--dangerlight);
}

input[type="file"] {
    display: none;
}

/* Edgeでパスワード入力のアイコンにブラウザのデフォルト表示が重なる現象回避用 */
input[type="password"]::-ms-reveal {
    display: none;
}

input:disabled,select:disable,textarea:disable{
    opacity: 0.4;
}

.input-checkboxes{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 2.4rem;
    padding: 0.2rem 3.6rem 0.2rem 0.2rem;
}
.input-checkboxes-v{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.2rem 3.6rem 0.2rem 0.2rem;
}
.input-checkbox{
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

input[type="checkbox"]{
    width: 2.4rem;
    height: 2.4rem;
    display: inline-block;
    background: url(../images/check-off.svg) no-repeat center center ;
    background-size: 2.4rem;
}

input[type="checkbox"]:checked{
    background: url(../images/check-on.svg) no-repeat center center ;
    background-size: 2.4rem;
}

.input-radios{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 2.4rem;
    padding: 0.2rem 3.6rem 0.2rem 0.2rem;
}
.input-radios-v{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.2rem 3.6rem 0.2rem 0.2rem;
}
.input-radio{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
}

input[type="radio"]{
    width: 2.4rem;
    height: 2.4rem;
    display: inline-block;
    background: url(../images/radio-off.svg) no-repeat center center ;
    background-size: 2.4rem;
}

input[type="radio"]:checked{
    background: url(../images/radio-on.svg) no-repeat center center ;
    background-size: 2.4rem;
}

.check-wrap{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0.4rem;
}

.check-wrap:last-child{
    padding-bottom: 0;
}

.check-wrap input[type="checkbox"]{
    margin-right: 0.8rem;
}

input[type="checkbox"],input[type="radio"]{
    max-width: 2.4rem !important;
    min-width: 2.4rem !important;
}

select{
    display: inline-block;
    padding: 0.4rem 1.2rem;
    height: 4.0rem;
    border: 1px solid var(--gray500);
    font-size: 1.6rem;
    line-height: 2.0rem;
    color: var(--darkgray);
    background: #FFF url(../images/arrow-dd.svg) right 0.8rem center no-repeat;
    background-size: 2.4rem;
    border-radius: 0.4rem;
    box-shadow: inset 0 0.2rem 0 rgba(0,0,0,0.1) ;
}

select:focus{
    border: 1px solid var(--blue);
    background: var(--highlight) url(../images/arrow-dd.svg) right 0.8rem center no-repeat;
    background-size: 2.4rem;
    outline: none;
}

input.hasdatalist::-webkit-calendar-picker-indicator{
    display: none;
    opacity:0;
}

input[type="text"].error-disp,input[type="password"].error-disp,textarea.error-disp,select.error-disp,textarea.error-disp{
    border-color: var(--red);
    background-color: var(--brightred); 
}
label{
    white-space: nowrap;
    margin-right: 1.0rem;
}
.input-error{
    width: 100%;
    padding: 0;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--danger);
    text-align: left;
}
.input-error .error{
    display: block;
    width: 100%;
    padding: 0.2rem;
    text-align: left;
}

.readonly {
    background: var(--gray300);
}

/* ------------------------------------------------------------------
    Common
-------------------------------------------------------------------*/

.col-50{
    width: 6.0rem !important;
    max-width: 5.0rem;
    min-width: 5.0rem;
}
.col-100{
    width: 10.0rem !important;
    max-width: 10.0rem;
    min-width: 10.0rem;
}
.col-200{
    width: 20.0rem !important;
    max-width: 20.0rem;
    min-width: 20.0rem;
}
.col-300{
    width: 30.0rem !important;
    max-width: 30.0rem;
    min-width: 30.0rem;
}
.col-400{
    width: 40.0rem !important;
    max-width: 40.0rem;
    min-width: 40.0rem;
}
.col-500{
    width: 50.0rem !important;
    max-width: 50.0rem;
    min-width: 50.0rem;
}
.col-600{
    width: 60.0rem !important;
    max-width: 60.0rem;
    min-width: 60.0rem;
}
.col-700{
    width: 70.0rem !important;
    max-width: 70.0rem;
    min-width: 70.0rem;
}
.col-800{
    width: 80.0rem !important;
    max-width: 80.0rem;
    min-width: 80.0rem;
}
.col-900{
    width: 90.0rem !important;
    max-width: 90.0rem;
    min-width: 90.0rem;
}
.col-1000{
    width: 100.0rem !important;
    max-width: 100.0rem;
    min-width: 100.0rem;
}
.col-5p{
    width: 5% !important;
}
.col-15p{
    width: 15% !important;
}
.col-25p{
    width: 25% !important;
}
.col-33p{
    width: 33.333333% !important;
}
.col-10p{
    width: 10% !important;
}
.col-20p{
    width: 20% !important;
}
.col-30p{
    width: 30% !important;
}
.col-40p{
    width: 40% !important;
}
.col-50p{
    width: 50% !important;
}
.col-60p{
    width: 60% !important;
}
.col-70p{
    width: 70% !important;
}
.col-80p{
    width: 80% !important;
}
.col-90p{
    width: 90% !important;
}
.col-100p{
    width: 100% !important;
}

.pd-4{
    padding: 0.4rem;    
}
.pd-8{
    padding: 0.8rem;    
}
.pd-12{
    padding: 1.2rem;    
}
.pd-16{
    padding: 1.6rem;    
}
.pd-20{
    padding: 2.0rem;    
}
.pd-24{
    padding: 2.4rem;    
}
.pd-32{
    padding: 3.2rem;    
}

.bg-gray100{
    background: var(--gray100);
}
.bg-gray200{
    background: var(--gray200);
}

/* ------------------------------------------------------------------
    Layout
-------------------------------------------------------------------*/

.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 120rem;
}

.main{
    display: flex;
    flex-direction: column;
    width: 120rem;
    padding: 4rem 2rem 6rem;
    gap: 3.3rem;
}


/* ------------------------------------------------------------------
    Header
-------------------------------------------------------------------*/

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--white);
    width: 100%;
    min-width: 120rem;
    height: 7.2rem;
    padding:0 1.0rem;
    z-index: 300;
    box-shadow: 0 2px 1px rgba(0,0,0,0.1)
}

.header-body{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
    width: 118rem;
    padding: 0;
}

.header-main{

}

.header-logo{
    width: 19rem;
}

.header-sub{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.header-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding:0.4rem 0 0 0;
}
.header-menu li{
    padding: 0 2.4rem;

}
.header-menu li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.3rem;
    color: var(--gray800);
    font-weight: 500;
    text-decoration: none;
}
.header-menu li a:hover{
    color: var(--blue);
}

.header-logout{
    padding: 0.4rem 0.4rem 0.4rem 3.2rem;
    border-left: 1px solid var(--gray400);
}

.header-logout a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.3rem;
    color: var(--gray800);
    font-weight: 500;
    text-decoration: none;
}

.header-logout a:hover{
    color: var(--blue);
}

.page-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--gray100);
    width: 100%;
    min-width: 120rem;
    height: 9.4rem;
    padding:0.4rem 2.0rem 0;
    border-bottom: 1px solid var(--gray200);
}

.page-title-body{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    width: 116rem;
    padding: 0;
}

.page-name{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 3.2rem;
}

.page-desc{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.0rem;
}

/* ------------------------------------------------------------------
    Main
-------------------------------------------------------------------*/

.main-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.8rem;
}

.section-name{
    font-size: 2.0rem;
    line-height: 3.0rem;
    font-weight: 700;
}

.section-desc{
    font-size: 1.5rem;
    line-height: 2.0rem;
    font-weight: 400;
    color: var(--gray700);
}

.panel{
    border: 0.1rem solid var(--gray400);
    border-radius: 0.4rem;
}

.table-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    border-radius: 0.4rem;
}

.table-title{
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: var(--bluelight);
    border-bottom: 1px solid var(--gray300);
    color: var(--label);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
}

/* ------------------------------------------------------------------
    Table
-------------------------------------------------------------------*/

.table-std{
    width: 100%;
}

.table-title + .table-std{
    border-top: none;
}

.table-std tr{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.table-std th.th-std{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    flex-shrink: 0;
    position: relative;
    width: 36rem;
    background: var(--gray100);
    border-right: 1px solid var(--gray300);
    border-bottom: 1px solid var(--gray300);
    color: var(--gray800);
    text-align: left;
    padding: 1.2rem;
}
.table-std th.th-std span{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
}
.table-std th.th-std .th-memo{
    font-size: 1.4rem;
    font-weight:400;
    line-height: 1.4;
    color: var(--gray700);
}
.table-std td.td-std{
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray300);
    text-align: left;
    padding: 1.2rem 0;
    gap: 0.8rem;
}
.table-std td.td-std .input-box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.table-std td.td-std .input-item{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.2rem;
}
.table-std td.td-std .input-item .input-input{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0rem;
    width: 100%;
}
.table-std td.td-std .input-item .input-input:has(.input-radios),
.table-std td.td-std .input-item .input-input:has(.input-checkboxes){
    width: 100%;
    padding-right: 4.2rem;
}

.table-std td.td-std .input-item .input-input label {
    white-space: normal;
}
.table-std td.td-std .input-item .input-label{
    min-width: 4rem;
    padding-top: 0.8rem;
    font-size: 1.6rem;
    line-height: 2rem;
}
.table-std .input-memo{
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--gray700);
    padding: 0 1.2rem;
}

.input-input:has(input.required.valid):after,
.input-telset:has(input.required.valid):after,
.input-input:has(select.required.valid):after{
    content: '';
    display:block;
    position: absolute;
    right:0.8rem;
    top:0.8rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../images/icon_input_ok.svg) no-repeat center center;
    background-size: 2.4rem 2.4rem;
}

.input-input:has(input.required.error):after,
.input-input:has(select.required.error):after{
    content: '';
    display:block;
    position: absolute;
    right:0.8rem;
    top:0.8rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../images/icon_r_info.svg) no-repeat center center;
    background-size: 2.4rem 2.4rem;
}

.table-std td.td-std .input-item .input-input:has(.input-radios):after,
.table-std td.td-std .input-item .input-input:has(.input-checkboxes):after{
    top: 0rem;
    right: 0rem;
}

.table-std td.td-std .input-item .input-input:has(.input-select):after{

}

.input-item .input-input input,
.input-item .input-input textarea,
.input-item .input-input select{
    flex-grow: 1;
    width: 100%;
}
.input-item .input-input input[type="text"].required,
.input-item .input-input input[type="password"].required,
.input-item .input-input input[type="date"].required,
.input-item .input-input textarea.required,
.input-item .input-input select.required{
    padding-right: 3.6rem
}

.input-item .input-input .input-telset{
    display: flex;
    position: relative;
    align-items: center;
    gap: 0.8rem;
    padding-right: 0rem;
    width: auto;
}
.input-item .input-input .input-telset input{
    width: 5em;
    padding-right: 1.2rem !important;
}
.input-item .input-input .input-telset input.tellast{
    width: calc(5em + 4rem);
}
.input-item .input-input .input-telset span{
    font-size: 1.6rem;
    line-height: 1.5;
}

.input-item .input-group{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.0rem;
}
.input-item .input-input .input-zipset{
    display: flex;
    position: relative;
    align-items: center;
    gap: 0.8rem;
    padding-right: 0rem;
    width: auto;
}
.input-item .input-input .input-zipset input{
    width: 4em;
    padding-right: 1.2rem !important;
}
.input-item .input-input .input-zipset input.ziplast{
    width: calc(4em + 4rem);
}
.input-item .input-input .input-zipset span{
    font-size: 1.6rem;
    line-height: 1.5;
}
.table-std td.td-std .input-item .input-input:has(.input-telset),
.table-std td.td-std .input-item .input-input:has(.input-zipset){
    width: auto;
    flex-grow: 0;
}

.table-std td.td-std .display-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.table-std td.td-std .display-item{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1.2rem;
}
.table-std td.td-std .display-item p{
    font-size: 1.6rem;
    line-height: 1.5;
    word-break: break-word;
}
.table-std th.th-required{
    padding-right: 7.2rem;
}
th.th-required:after{
    content: '必須';
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0 0.8rem;
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 400;
    color: var(--red);
    border: 0.05rem solid var(--red);
    background: var(--white);
}
.input-icons{
    display: flex;
    position: absolute;
    top: 0.8rem;
    right: 4.2rem;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
}

.pw-visible:hover{
    cursor: pointer;
    filter: brightness(1.15);
}

.table-list{
    width: 100%;
}

.table-list tr{

}
.table-list tr th{
    position: relative;
    padding: 1.2rem;
    background: var(--gray100);
    border-right: 1px solid var(--gray300);
    border-bottom: 1px solid var(--gray300);
    font-size: 1.5rem;
    color: var(--gray700);
    text-align: left;
}
.table-list tr th:last-child{
    border-right: none;
}
.table-list tr td{
    position: relative;
    background: var(--white);
    border-right: 1px solid var(--gray300);
    border-bottom: 1px solid var(--gray300);
    text-align: left;
    padding: 1.0rem 1.2rem;
    vertical-align: middle;
}
.table-list .list-memo{
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--gray700);
    padding: 0;
}
.table-list .list-btns{
    display: block;
}
.table-list .list-btns + .list-btns{
    margin-top: 0.8rem;
}
.table-list .list-memo + .list-btns{
    margin-top: 0.8rem;
}

/* ------------------------------------------------------------------
    Note
-------------------------------------------------------------------*/
.note-title{
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: var(--info);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
}

.note-body{
    display: flex;
    flex-direction: column;
    gap: 2.0rem;
    padding: 1.2rem 0.8rem;
}

.note-heading{
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--gray700);
    font-weight: 700;  
}

.note-body p{
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--gray700);
    font-weight: 400;
    text-indent: 1.0em;
}

.note-body p.hang{
    text-indent: -1.0em;
    margin-left: 1.0em;
}

/* ------------------------------------------------------------------
    Message
-------------------------------------------------------------------*/

.message{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    padding: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 0.4rem;
}
.message:before{
    flex-shrink: 0;
    content: '';
    width: 2.0rem;
    height: 2.0rem;
    background: url(../images/icon_b_info.svg) no-repeat center center;
    background-size: 2.0rem 2.0rem;
}
.message:has(.message-box){
    align-items: flex-start;
}

.message.message-success{
    color: var(--success);
    background-color: var(--successlight);
}
.message.message-success:before{
    background: url(../images/icon_g_success.svg) no-repeat center center;
}
.message.message-info{
    color: var(--info);
    background-color: var(--infolight);
}
.message.message-info:before{
    background: url(../images/icon_b_info.svg) no-repeat center center;
}
.message.message-caution{
    color: var(--caution);
    background-color: var(--cautionlight);
}
.message.message-caution:before{
    background: url(../images/icon_y_caution.svg) no-repeat center center;
}
.message.message-danger{
    color: var(--danger);
    background-color: var(--dangerlight);
}
.message.message-danger:before{
    background: url(../images/icon_r_danger.svg) no-repeat center center;
}
.message.message-help{
    color: var(--caution);
    background-color: var(--gray100);
}
.message.message-help:before{
    background: url(../images/icon_y_help.svg) no-repeat center center;
}
.message .message-box span{
    display: block;
    margin-bottom: 0.8rem;
    font-weight: bold;
    line-height: 1.2;
}
.message .message-box p{
    color: var(--gray700);
}

.user-info{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem 2.0rem;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    border-radius: 0.4rem;
    color: var(--info);
    background-color: var(--infolight);
}
.user-info .user-name{
    font-size: 2.0rem;
    line-height: 3.0rem;
    background: url(../images/icon_i_user.svg) no-repeat left center;
    background-size: 2.8rem;
    padding-left: 3.6rem;
}



/* ------------------------------------------------------------------
    Stepper
-------------------------------------------------------------------*/
.stepper{
    display: flex;
    position: relative;
    /*justify-content: center;*/
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.stepper-steps{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.1rem 0;
}

.stepper-step{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 3.2rem;
    padding: 0.5rem 1.6rem 0.5rem 2.4rem;
    background: var(--gray500);
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.stepper-step:after{
    content:'';
    width:2.32rem;
    height:2.32rem;
    position:absolute;
    right:0;
    top:0.04rem;
    background-color:var(--gray500);
    z-index:150;
    -webkit-transform: translate(10px,4px) rotate(45deg);
       -moz-transform: translate(10px,4px) rotate(45deg);
        -ms-transform: translate(10px,4px) rotate(45deg);
         -o-transform: translate(10px,4px) rotate(20deg); 
            transform: translate(10px,4px) rotate(45deg);
}
.stepper-step:after {
	box-shadow: 0.12rem -0.1rem 0 var(--white);
}

.stepper-step.step-passed,.stepper-step.step-passed:after{
    background: var(--success);
}

.stepper-step.step-current,.stepper-step.step-current:after{
    background: var(--current);
}

.stepper-step:last-child:after {
	display: none;
}

/* ------------------------------------------------------------------
    Actions
-------------------------------------------------------------------*/

.action-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.2rem;
    width: 100%;
}

.action-box-alpha{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.0rem;
    flex-grow: 2;
}

.action-box-beta{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.0rem;
    flex-grow: 2;
}

.bottom-sticky{
    position: sticky;
    bottom: 0;
    z-index:100;
}
.panel:has(.bottom-sticky){
    overflow: visible;
}

/* ------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--gray100);
    width: 100%;
    min-width: 120rem;
    padding:0.4rem 2.0rem 0;
    border-top: 1px solid var(--gray200);
}

.footer-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    width: 116rem;
    padding: 4.0rem 0 1.0rem;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    color: var(--gray700);
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.footer-info-ttl{
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.8rem
}

.footer-item{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
}
.footer-item i{
    margin-top: 0.4rem;
}
.footer-copyright{
    width: 100%;
    margin-top: 2rem;
    padding: 1.6rem 0;
    border-top: 1px solid var(--gray300);
    color: var(--gray600);
    font-size: 1.4rem;
    line-height: 2.2rem;
}

/* ------------------------------------------------------------------
    Loader
-------------------------------------------------------------------*/

.loader-wrap{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 1000;
}

.loader-wrap.full{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.6);
    z-index: 1000;
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--blue);
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
  }
  @keyframes l3 {to{transform: rotate(1turn)}
}

/* ------------------------------------------------------------------
    Top
-------------------------------------------------------------------*/

.panels-col-wrap{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3.2rem;
}
.panels-col-wrap .panel{
   justify-content: flex-start;
}
.col-stretch{
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.col-stretch tbody{
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.col-stretch tbody tr{
    flex-grow: 2;
}

/* ------------------------------------------------------------------
    Contact
-------------------------------------------------------------------*/
.contact-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem 2rem 2.8rem 2rem;
}
.contact-info{
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
    color: var(--gray700);
    font-size: 1.5rem;
    line-height: 1.5;
}
.contact-info-ttl{
    padding-bottom: 0.8rem;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
}
.contact-name{
    padding-bottom: 1.2rem;
    text-align: center;
    font-size: 1.5rem;
}
.contact-item{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
}
.contact-item i{
    margin-top: 0.4rem;
}

/* ------------------------------------------------------------------
    PP Agree
-------------------------------------------------------------------*/
.pp-box{
    display: block;
}
.pp-body{
    padding: 3.2rem;
}
.pp-body p{
    font-size: 1.6rem;
    line-height: 1.8;
}
.pp-bottom{
    background: var(--white)
}
.pp-agree{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    background: var(--gray100);
    border-top: 0.1rem solid var(--gray300);
}
.pp-agree .input-input{
    text-align: center;
}
.pp-agree .input-checkboxes{
    padding: 0;
}
.pp-agree .input-checkbox{
    padding: 1.2rem 3.2rem;
    background: var(--white);
    border: 0.1rem solid var(--gray400)
}
.pp-agree .input-error label{
    text-align: center;
}
.pp-box .action-box{
    background: var(--white);
    border-top: 0.1rem solid var(--gray300);
}

/* ------------------------------------------------------------------
    Envelope
-------------------------------------------------------------------*/

.envelope-box{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.2rem;
    border-bottom: 0.1rem solid var(--gray300);
}

.envelope-img{
    position: relative;;
    width: 113.6rem;
    height: 71.95rem;
    background: url(../images/envelope_none_flap_img.jpg) no-repeat center center;
    background-size: 100%;
}

.envelope-txt{
    position: absolute;
    width: 55.3rem;
    min-height: 27.5rem;
    top:2.6rem;
    left: 6.3rem;
    padding: 1.2rem 3.2rem;
    background-color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    border-radius: 2.4rem;
    color: var(--gray800);
    word-break: break-word;
}

.envelope-txt-modal{
    width: 68rem;
    min-height: 27.5rem;
    top:2.6rem;
    left: 6.3rem;
    padding: 1.2rem 3.2rem;
    background-color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    line-height: 2rem;
    border-radius: 2.4rem;
    color: var(--gray800);
    word-break: break-word;
}


/* ------------------------------------------------------------------
    modal
-------------------------------------------------------------------*/
.modal {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 自分の幅と高さの半分ずらして正確に中央揃え */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------
    popup
-------------------------------------------------------------------*/
.popup-overlay {
    display: none;
    height: 100vh;
    width: 100%;
    background-color: #00000070;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.popup-window {
    width: 800px;
    padding: 20px;
    background-color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 0.4rem;
    position: fixed;
    top: 50%;
    left: 50%;
    border: 1px solid var(--gray300);
    transform: translate(-50%, -50%);
}

.popup-ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray800);

}

.popup-text {
    display: flex;
    margin: 0;
    padding-left: 20px;
    justify-content: space-between;
    color: var(--blue);
    font-weight: 600;
}

.popup-text:not(:last-of-type) {
    border-bottom: 1px solid var(--gray400);
    margin-bottom: 1.8rem;
}

.popup-text:hover {
    cursor: pointer;
    color: var(--bluedark);
    background-color: var(--gray400);
}

.popup-text span{
    padding: 10px;
}

.popup-close {
    display: flex;
    justify-content: flex-end;
}

.popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}