/* CSS Document */
:root {
    --clr_logo_bg: #0752a2;
    
    --clr_merchant_text_def: #666666;
    --clr_merchant_text_notes: #c53a18;
    
    --clr_shinpan_text_def: #666666;
    --clr_shinpan_text_notes: #c53a18;
    
    --clr_btn_green_def: #568a96;
    --clr_btn_green_dark: #3a5d65;
    --clr_btn_green_light: #a5c3c9;
    --clr_btn_reset: #cf6063;
    --clr_btn_reset: #f3e600;
    
    --merchantformValiNG: #ffc0cb;
    --merchantformValiOK: #ffffff;
    --formValiNG: #ffc0cb;
    --formValiOK: #ffffff;
    --shinpanformValiNG: #ffc0cb;
    --shinpanformValiOK: #ffffff;
    
    --clr_merchant_bg_light: #faf1f0;
    --clr_merchant_bg_def: #f1c6bb;
    /*--clr_merchant_bg_dark: #e2846f;*/
    --clr_merchant_bg_dark: #a2c7e8;
    /*--clr_merchant_bg_dark: #77cbed;*/
    --clr_merchant_search_bg: #fcf3f0;
    --clr_merchant_search_bg: #fcf3f0;
    --clr_merchant_search_bg: #d9effc;
    
    --clr_shinpan_bg_light: #deeaec;
    --clr_shinpan_bg_def: #adcbd1;
    --clr_shinpan_bg_dark: #7cacb6;
    --clr_shinpan_search_bg: var(--clr_shinpan_bg_light);
    
    --clr_merchant_footer_bg: #932f23;
    --clr_merchant_footer_bg: #0752a2;
    
    --clr_g_menu_text: #666666;
    
    --clr_err_msg_area_border: #c53a18;
    --clr_err_msg_area_bg: #ffffcc;
    
    
    
    --clr_flex_blue: #0752a2;/*FLEXブルー*/
    --clr_flex_blue_dark: #054181;
    --clr_flex_blue_light: #5185bd;
    --clr_flex_blue_light_light: #90acd3;
    --clr_waku1: #568a96;
    --clr_waku2: var(--clr_flex_blue);
    --clr_waku3: #dcdcdc;
    --clr_waku4: #5c5b5b;
    --clr_merchant_table_th_bg: #5c5b5b;
    --clr_cancel_bg: #f5f5f5;
    --clr_cancel_border: var(--clr_waku4);
    --clr_creditapply_color_bg: #a2c7e8;
}


*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}



input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

body {
    margin: 0;
    padding: 0;
    
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "HiraKakuProN-W3,Noto Sans JP Regular,Noto Sans CJK JP,モトヤLマルベリ3等幅,MotoyaLMaru,モトヤLシータ゛3等幅,MotoyaLCedar,Droid Sans Japanese,UDGothic,TT-UDShinMGo-F-Droid-Regular,Droid Sans Fallback", "HiraKakuProN-W6,Noto Sans JP Bold,Noto Sans CJK JP,モトヤLマルベリ3等幅,MotoyaLMaru,モトヤLシータ゛3等幅,MotoyaLCedar,Droid Sans Japanese,UDGothic,TT-UDShinMGo-F-Droid-Regular,Droid Sans Fallback";
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
    
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    color: var(--clr_merchant_text_def);
}
body.merchant {
    background: #f1c6bb;
    background: #fff;
}
body.shinpan {
    background-color: var(--clr_shinpan_bg_def);
}

main {
    flex: 1;
    /*padding-top: 20px;*/
    padding-bottom: 20px;
}


table {
    border-collapse: collapse;
    border-spacing: 0;
}
th {
    font-weight: 400;
}

button {
    user-select: none;
}

.notes {
    font-size: small;
    color: var(--clr_merchant_text_notes);
    line-height: 1.3em;
}
/*////////////JS無効時の表示遅延　ここから----------------*/
.jsOffText {
    animation-name: jsOffTextAnime;
    animation-duration: 5s;
}
@keyframes jsOffTextAnime {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*////////////JS無効時の表示遅延　ここまで----------------*/


/*////////////loadingの表示遅延　ここから----------------*/
#loading {
    animation-name: loadingAnime;
    animation-duration: 1s;
}
@keyframes loadingAnime {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*////////////loadingの表示遅延　ここまで----------------*/


/*ボタンsilver　ここから----------------*/
.btn_silver {
    display: inline-block;
    white-space: nowrap;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    -webkit-box-shadow: inset 1px 1px 1px #fff;
    box-shadow: inset 1px 1px 1px #fff;
    border-radius: 5px !important;
    transition: .4s;
    /*box-shadow: 0 1px rgba(255,255,255,0);*/
}

.btn_silver:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}
.btn_silver:active {
    box-shadow: none;
    position: relative;
    top: 1px;
}
/*ボタンsilver　ここまで----------------*/


/*ボタンgreen　ここから----------------*/
.btn_green {
    display: inline-block;
    white-space: nowrap;
    color: #ffffff;
    border-left: 0px solid var(--clr_btn_green_def);
    border-top: 0px solid var(--clr_btn_green_def);
    border-right: 1px solid var(--clr_btn_green_def);
    border-bottom: 1px solid var(--clr_btn_green_def);
    border-radius: 5px !important;
    /*background: var(--clr_btn_green_def);*/
    background: var(--clr_merchant_bg_dark);
    background: #0752a2;
    transition: .4s;
    box-shadow: 0 1px rgba(255,255,255,0);
}
.btn_green:hover {
    color: #fff;
    /*background: var(--clr_btn_green_dark);*/
    background: var(--clr_flex_blue_light);
}
.btn_green:active {
    box-shadow: none;
    position: relative;
    top: 1px;
}
/*ボタンgreen　ここまで----------------*/

/*リセットボタン　ここから----------------*/
.btn_reset {
    display: inline-block;
    white-space: nowrap;
    color: #ffffff;
    color: var(--clr_merchant_text_def);
    border-left: 0px solid var(--clr_btn_reset);
    border-top: 0px solid var(--clr_btn_reset);
    border-right: 1px solid var(--clr_btn_reset);
    border-bottom: 1px solid var(--clr_btn_reset);
    border-radius: 5px !important;
    background: var(--clr_btn_reset);
    transition: .4s;
    box-shadow: 0 1px rgba(255,255,255,0);
}
.btn_reset:hover {
    color: #fff;
    background: var(--clr_btn_reset);
}
.btn_reset:active {
    box-shadow: none;
    position: relative;
    top: 1px;
}
/*リセットボタン　ここまで----------------*/

/*キャンセルボタン　ここから----------------*/
.btn_cancel {
    display: inline-block;
    white-space: nowrap;
    color: var(--clr_merchant_text_def);
    border-left: 0px solid var(--clr_cancel_border);
    border-top: 0px solid var(--clr_cancel_border);
    border-right: 1px solid var(--clr_cancel_border);
    border-bottom: 1px solid var(--clr_cancel_border);
    border-radius: 5px !important;
    background: var(--clr_cancel_bg);
    transition: .4s;
    box-shadow: 0 1px rgba(255,255,255,0);
}
.btn_cancel:hover {
    color: var(--clr_merchant_text_def);
    /*background: var(--clr_cancel_bg);*/
    background: #E8E8E8;
}
.btn_cancel:active {
    box-shadow: none;
    position: relative;
    top: 1px;
}
/*キャンセルボタン　ここまで----------------*/

.btn_size_def {
    height: 40px;
    padding-left: 40px;
    padding-right: 40px;
}
.btn_size_large {
    height: 80px;
    padding-left: 40px;
    padding-right: 40px;
}



input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea,
input[type="email"],
input[type="password"] {
    padding: 5px 5px;
    border: 2px solid var(--clr_btn_green_def);
    border: 2px solid var(--clr_merchant_footer_bg);
    border-radius: 5px;
    /*color: var(--clr_btn_green_def);*/
    color: var(--clr_flex_blue);
    box-sizing: border-box;
}


/*input[type="date"]でどこをクリックしてもカレンダーが表示されるようにする　ここから----------------*/
input[type="date"].clickCalendarFullArea {
    position: relative;
}
input[type="date"].clickCalendarFullArea::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}
/*input[type="date"]でどこをクリックしてもカレンダーが表示されるようにする　ここまで----------------*/


/*ローディング画面　ここから----------------*/
#loading {
	/*display: table;*/
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0,0.5);
	z-index: 1200;
}



#loading .loadingMsg {
    margin: 100px auto;
    top: 40%;
    left: 0;

    -ms-transform: translate(-50%, -50%);
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);

    font-size: 25px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);

  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
/*ローディング画面　ここまで----------------*/



#merchant_main_contents,
#shinpan_main_contents {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1025px;
    margin: 0 auto;
    font-size: 16px;
}




.merchant_header {
    background-color: #ffffff;
    /*padding: 5px;*/
    padding-bottom: 1px;
    /*font-size: 0;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.merchant_pcHeader {
    display: flex;
    gap: 20px;
}
.merchant_mobileHeader {
    display: none;
}

.merchant_footer {
    background-color: var(--clr_merchant_footer_bg);
    background-color: #032951;
    padding: 5px;
    /*font-size: 0;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


.pageTitle {
    background-color: #e8b1a2;
    background-color: #a2c7e8;
    background-color: var(--clr_flex_blue);;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	/*margin: 0 calc(50% - 50vw);*/
	width: 100vw;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.6);
    /*filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.6));*/
    margin-bottom: 5px;
}
.shinpanPageTitle {
    background-color: #8cb6bf;
}

body.merchant h1,
body.shinpan h1 {
    width: 100%;
    max-width: 1025px;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    margin: 5px;
}

img {
    vertical-align: bottom;
}


.white_area {
    background-color: #ffffff;
    /*border: 1px solid #a2c7e8;*/
    /*border: 1px solid #568a96;*/
    border: 1px solid var(--clr_waku3);
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    box-shadow: 1px 1px 1px 1px rgb(200, 200, 200);
}

.light_coralpink_area {
    background-color: var(--clr_merchant_bg_light);
    background-color: #fff;
    border: 1px solid var(--clr_waku3);
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
}
.light_blue_area {
    background-color: var(--clr_shinpan_bg_light);
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
}


/*加盟店画面のグローバルメニュー　ここから----------------*/
.merchant_g_menu_area_wrap {
    display: flex;
    
}
.merchant_g_menu {
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    text-decoration: none;
    color: var(--clr_g_menu_text);
}
.merchant_g_menu:visited:active:hover {
    color: var(--clr_g_menu_text);
}
.merchant_g_menu_active::after,
.merchant_g_menu:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    background-color: var(--clr_merchant_bg_dark);
    background-color: #f3e600;
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
/*加盟店画面のグローバルメニュー　ここまで----------------*/


/*加盟店画面のサブメニュー　ここから----------------*/
.merchant_sub_menu_area_wrap {
    display: flex;
    /*border-bottom: 2px solid var(--clr_btn_green_dark);*/
    border-bottom: 2px solid #ffffff;
}
.merchant_sub_menu {
    /*width: 100%;*/
    height: 40px;
    background-color: #ffffff;
    /*flex-grow: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    text-decoration: none;
    color: var(--clr_g_menu_text);
    font-size: small;
    /*white-space: nowrap;*/
}
.merchant_sub_menu:visited:active:hover {
    color: var(--clr_g_menu_text);
}
.merchant_sub_menu_active::after,
.merchant_sub_menu:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    /*background-color: var(--clr_shinpan_bg_dark);*/
    background-color: #f3e600;
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
.merchant_sub_menu_yohaku {
    flex-grow: 1;
}
.merchant_sub_menu_yohaku:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    background-color: transparent;
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
.merchant_sub_menu_title {
    /*background-color: var(--clr_shinpan_bg_dark);*/
    background-color: var(--clr_shinpan_bg_light);
    /*color: #fff;*/
    color: var(--clr_shinpan_bg_dark);
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: small;
    white-space: nowrap;
}
/*加盟店画面のサブメニュー　ここまで----------------*/



/*信販画面のグローバルメニュー　ここから----------------*/
.shinpan_g_menu_area_wrap {
    display: flex;
    
}
.shinpan_g_menu {
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    text-decoration: none;
    color: var(--clr_g_menu_text);
}
.shinpan_g_menu:visited:active:hover {
    color: var(--clr_g_menu_text);
}
.shinpan_g_menu_active::after,
.shinpan_g_menu:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    background-color: var(--clr_shinpan_bg_dark);
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
/*信販画面のグローバルメニュー　ここまで----------------*/


/*信販画面のサブメニュー　ここから----------------*/
.shinpan_sub_menu_area_wrap {
    display: flex;
    /*border-bottom: 2px solid var(--clr_btn_green_dark);*/
    border-bottom: 2px solid #ffffff;
    flex-wrap: wrap;
    background-color: #fff;
    flex-grow: 1;
}
.shinpan_sub_menu {
    /*width: 100%;*/
    height: 40px;
    background-color: #ffffff;
    /*flex-grow: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    text-decoration: none;
    color: var(--clr_g_menu_text);
    font-size: small;
    white-space: nowrap;
}
.shinpan_sub_menu:visited:active:hover {
    color: var(--clr_g_menu_text);
}
.shinpan_sub_menu_active::after,
.shinpan_sub_menu:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    background-color: var(--clr_shinpan_bg_dark);
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
.shinpan_sub_menu_yohaku {
    flex-grow: 1;
}
.shinpan_sub_menu_yohaku:hover::after {
    /*border-bottom: 3px solid var(--clr_merchant_bg_dark);*/
    content: '';
    width: 100%;
    height: 8px;
    display: inline-block;
    background-color: transparent;
    position: absolute;
    bottom: 0px;
    /*left: calc(50% - 55px)*/
}
.shinpan_sub_menu_title {
    /*background-color: var(--clr_shinpan_bg_dark);*/
    background-color: var(--clr_shinpan_bg_light);
    /*color: #fff;*/
    color: var(--clr_shinpan_bg_dark);
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: small;
    white-space: nowrap;
}
/*信販画面のサブメニュー　ここまで----------------*/



table.merchantOshiraseTable {
    width: 100%;
    font-size: small;
}
table.merchantOshiraseTable th {
    background-color: #e8b1a2;
    background-color: #a2d4e8;
    background-color: #a2c7e8;
    background-color: var(--clr_merchant_table_th_bg);
    color: #fff;
}
table.merchantOshiraseTable th,
table.merchantOshiraseTable td {
    padding: 5px 10px;
    border-right: 2px solid #fff;
}
table.merchantOshiraseTable th:last-child,
table.merchantOshiraseTable td:last-child {
    border-right: 0;
}
table.merchantOshiraseTable tr:nth-child(odd) td {
    /*background-color: var(--clr_merchant_bg_light);*/
    background-color: #fcfcfc;
}
table.merchantOshiraseTable tr:nth-child(even) td {
    background-color: #ededed;
    background-color: #f5f5f5;
}

table.shinpanOshiraseTable th {
    background-color: #8cb6bf;
    color: #fff;
}
table.shinpanOshiraseTable th,
table.shinpanOshiraseTable td {
    padding: 5px 10px;
    border-right: 2px solid #fff;
}
table.shinpanOshiraseTable tr:nth-child(odd) td {
    background-color: var(--clr_shinpan_bg_light);
}




.searchAreaBg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 calc(50% - 50vw);
	width: 100vw;
    /*padding: 10px;*/
    overflow-x: auto;
}
.merchantSearchAreaBg {
    /*background-color: var(--clr_merchant_search_bg);*/
    background-color: #fff;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.6));
}
.shinpanSearchAreaBg {
    background-color: var(--clr_shinpan_search_bg);
}
.searchArea {
    width: 100%;
    width: auto;
    /*max-width: 1025px;*/
    padding: 10px;
}
.searchContentArea {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.searchCondArea {
    flex-grow: 1;
    display : flex;
    justify-content: center;
}
.searchBtnArea {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}
.searchResetArea {
    width: 100%;
    text-align: right;
    margin-top: 5px;
}



.merchantSearchCondTable {
    width: 100%;
    /*width: auto;*/
    font-size: 12px;
}
.merchantSearchCondTable th {
    /*background-color: #f9f9f9;*/
    background-color: #5c5b5b;
    border: 1px solid #dcdcdc;
    /*color: #568a96;*/
    color: #fff;
    padding: 5px 10px;
    white-space: nowrap;
}
.merchantSearchCondTable th a {
    color: #ff0;
}
/*
.merchantSearchCondTable tr:first-child th,
.merchantSearchCondTable tr:last-child th {
    border-top: 1px solid #5c5b5b;
}
*/
.merchantSearchCondTable td {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 5px 10px;
}




.listTableAreaBg {
    /*
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    */
    margin: 0 calc(50% - 50vw);
	width: 100vw;
    padding: 10px;
}
.listTableArea {
    overflow-x: auto;
}
.listTable {
    margin: 0 auto;
    width: 100%;
    width: auto;
    min-width: 1024px;
    font-size: 14px;
    /*white-space: nowrap;*/
}
.listTable th {
    padding: 2px 3px;;
}
.listTable th:last-child {
    border: 0;
}
.listTable td {
    text-align: center;
    border-right: 1px solid #dcdcdc;
    padding: 2px 5px;
    padding: 1em 5px;
}
.listTable td:last-child {
    /*border: 0;*/
}
.listTable tbody:nth-child(odd) td {
    background-color: #ededed;
    background-color: #fafafa;
    /*background-color: #999;*//*20220809mtg終了した案件のグレーアウトの背景色*/
}
.listTable tbody:nth-child(even) td {
    background-color: #ffffff;
    background-color: #fafafa;/*20220809mtg基本色。奇数行、偶数行の色違いはいらない。*/
}
.listTable th,
.listTable td {
    word-break: keep-all;
}

.merchantListTable {
    /*border: 1px solid #568a96;*/
}
.merchantListTable td {
    border-right: 1px solid #568a96;
    border-right: 1px solid var(--clr_waku3);
    border-bottom: 1px solid #568a96;
    border-bottom: 1px solid var(--clr_waku3);
}
.merchantListTable td:last-child {
    border-right: 0;
}
.merchantListTable th {
    background-color: var(--clr_merchant_bg_dark);
    background-color: #5c5b5b;
    color: #ffffff;
    border-right: 1px solid  #ffffff;
}
.shinpanListTable th {
    background-color: var(--clr_shinpan_bg_dark);
    color: #ffffff;
    border-right: 1px solid  #ffffff;
}
.shinpanListTable td {
    border-bottom: 1px solid #568a96;
    border-bottom: 1px solid var(--clr_waku3);
}

.pagenationArea {
    display: flex;
    gap: 1em;
    font-size: 12px;
    justify-content: center;
}

/*ページネーション　ここから*/
.pagenation_v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.pagenation_v2 a {
    font-size: small;
    font-size: 12px;
    margin: 0 3px;
}
/*ページネーション　ここまで*/


.migiyose {
    text-align: right;
}
.nakayose {
    text-align: center;
}
.hidariyose {
    text-align: left;
}



/*ヘッダーSTEP表示　ここから----------------*/
.headerStep {
    display: flex;
    /*flex-wrap: wrap;*/
    font-size: 12px;
}
.headerStep .item {
    position: relative;
    width: calc(100% / 7);
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #F5F5F5;
    color: #999999;
    white-space: nowrap;
}
.headerStep .item:not(:last-child)::before,
.headerStep .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    /*border: 37px solid transparent;*/
    border: 31px solid transparent;
    border-left: 16px solid #F5F5F5;
    margin: auto;
}
.headerStep .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}

/* active */
.headerStep .item.active {
    z-index: 1;
    background: var(--clr_merchant_bg_dark);
    background: #0752a2;
    color: #FFF;
}
.headerStep .item.active:not(:last-child)::after {
    border-left-color: var(--clr_merchant_bg_dark);
    border-left-color: #0752a2;
}
.headerStep .item.active:not(:last-child)::before {
    border-left: none;
}
/*ヘッダーSTEP表示　ここまで----------------*/


.subTitle {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}





.tableTateResp {
    border-width: 2px;
    border-style: solid;
}
.tableTateResp th,
.tableTateResp td {
    padding: 5px 5px;  
    text-align: left;
}


.merchantApplyTableTate th {
    background-color: var(--clr_merchant_bg_dark);
    background-color: #5c5b5b;
    color: #ffffff;
    border: 1px solid #ffffff;
    /*width: 400px;*/
    width: 380px;
}
.merchantApplyTableTate th .delLink,
.merchantApplyTableTate th .delLink:focus,
.merchantApplyTableTate th .delLink:active,
.merchantApplyTableTate th .delLink:visited {
    color: #ADD8E6;
}
.merchantApplyTableTate th .notes {
    color: #EBBD36;
}
.merchantApplyTableTate tr:first-child th {
    border-top: 0;
}
.merchantApplyTableTate tr:last-child th {
    border-bottom: 0;
}

.merchantApplyTableTate td {
    background-color: #ffffff;
    color: var(--clr_merchant_text_def);
    border: 1px solid var(--clr_merchant_bg_dark);
    border: 1px solid var(--clr_waku3);
}
.merchantApplyTableTate {
    border-color: var(--clr_merchant_bg_dark);
    border: 0;
    width: 100%;
}



.shinpanTableTate th {
    background-color: var(--clr_shinpan_bg_dark);
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 400px;
}
.shinpanTableTate tr:first-child th {
    border-top: 0;
}
.shinpanTableTate tr:last-child th {
    border-bottom: 0;
}

.shinpanTableTate td {
    background-color: #ffffff;
    color: var(--clr_shinpan_text_def);
    border: 1px solid var(--clr_shinpan_bg_dark);
}
.shinpanTableTate {
    border-color: var(--clr_shinpan_bg_dark);
    width: 100%;
}




table.tableCellBorder0 th,
table.tableCellBorder0 td {
    border: 0;
}


.btnArea20 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}


input.inputReadonly {
    border: 0;
    border-bottom: 1px solid #666666;
    border-radius: 0;
    background-color: transparent;
}


.thWidthAuto th {
    width: auto !important;
}


.dammyImg {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #666666;
    color: #ffffff;
    font-weight: 600;
}
.dammyImg::after {
    content: "Image";
}

.applyKiyakuTitle {
    padding: 0.3em 0;
    font-weight: 600;
    font-size: 25pt;
    color: #395F66;
    line-height: 1.2em;
}
.applyKiyakuCheckboxArea {
    margin-top: 10px;
    display: flex;
    align-items: center;
    /*background-color: var(--clr_merchant_bg_light);*/
    background-color: var(--clr_creditapply_color_bg);
    padding: 5px;
    gap: 10px;
}
.kiyakuDiv {
    margin-top: 20px;
    margin-bottom: 6em;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.kiyakuDiv:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.kiyakuDiv .dammyImg::after {
    content: "規約・規定";
}




/* ラジオボタン　ここから---------------- */
.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.radio-inline__label {
    display: inline-block;
	/*width: 90px;*/
	/*height: 30px;*/
    min-height: 30px;
	min-width: 90px;
	line-height: 30px;
	padding: 0.15rem 1.5rem;
    /*
    margin-right: 18px;
	*/
	text-align: center;
	vertical-align: middle;
    border-radius: 3px;
    transition: all .2s;
	/*border: 1px dashed #666666;*/
    /*border: 2px solid rgba(38,153,251,0.5);*/
    border:0;
    /*outline: 1px solid var(--clr_btn_green_def);*/
    outline: 1px solid var(--clr_flex_blue);
	/*background-color: var(--clr_btn_green_light);*/
	background-color: #f5f5f5;
	color: #fff;
    /*color: var(--clr_btn_green_def);*/
    color: var(--clr_flex_blue);
	font-weight: 400;
	cursor: pointer;
    white-space: nowrap;
    margin: 2px;
    
    position: relative;
    user-select: none; 
}

.radio-inline__input:checked + .radio-inline__label {
    /*background: rgba(38,153,251,1);*/
    /*background: var(--clr_btn_green_def);*/
    background: var(--clr_flex_blue);
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,.7);
	/*border: 2px dashed rgba(38,153,251,0.5);*/
    border: 0;
}

.radio-inline__input:checked + .radio-inline__label::before {
    position: absolute;
    top: 50%;
    left: 0.5em;
    
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    
    /*
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    */
    
    /*
    content: "○";
    content: "\02714";
    */
    content: "\02713";
    color: #fff;
    color: #ff0;
    /*
    font-size: 25px;
    font-weight: 600;
    opacity: 0.5;
    */
}

.radio-inline__input:focus + .radio-inline__label,
.radio-inline__input:hover + .radio-inline__label {
    outline-color: var(--clr_btn_green_dark);
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 5px;
}

.radio-inline__label_disabled {
	color: #999999;
	background-color: #cccccc;
	border: 1px solid #cccccc;
}
/* ラジオボタン　ここまで---------------- */



/* チェックボックス　ここから---------------- */
.chkbox-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.chkbox-inline__label {
    display: inline-block;
	/*width: 90px;*/
	/*height: 30px;*/
	min-width: 90px;
	line-height: 30px;
    padding: 0.15rem 1.5rem;
    /*
    margin-right: 18px;
	*/
	text-align: center;
	vertical-align: middle;
    border-radius: 3px;
    transition: all .2s;
	/*border: 1px dashed #666666;*/
    /*border: 2px solid rgba(38,153,251,0.5);*/
    border: 0;
    /*outline: 1px solid var(--clr_btn_green_def);*/
    outline: 1px solid var(--clr_waku2);
	/*background-color: var(--clr_btn_green_light);*/
    background-color: #f5f5f5;
	/*color: #fff;*/
    /*color: var(--clr_btn_green_def);*/
    color: var(--clr_waku2);
	font-weight: 400;
	cursor: pointer;
    white-space: nowrap;
    margin: 2px;
    
    position: relative;
    user-select: none; 
}

.chkbox-inline__input:checked + .chkbox-inline__label {
    /*background: var(--clr_btn_green_def);*/
    background: var(--clr_flex_blue);
    background: #0752a2;
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,.7);
	border: 2px dashed rgba(38,153,251,0.5);
    border: 0;
}

.chkbox-inline__input:checked + .chkbox-inline__label::before {
    position: absolute;
    top: 50%;
    left: 0.7em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "\02714";
}


.chkbox-inline__input:focus + .chkbox-inline__label,
.chkbox-inline__input:hover + .chkbox-inline__label {
    /*outline-color: var(--clr_btn_green_dark);*/
    outline-color: var(--clr_flex_blue_dark);
    /*outline-offset: -2px;*/
    outline-style: auto;
    outline-width: 5px;
}

.chkbox-inline__label_disabled {
	color: #999999;
	background-color: #cccccc;
	border: 1px solid #cccccc;
}
/* チェックボックス　ここまで---------------- */


.notesBlack {
    font-size: 12px;
    line-height: 1.2em;
}


table.multiTh th {
    border-bottom: 1px solid #fff;
}
table.multiTh th:last-child {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
table.multiTh td {
    border-bottom: 1px solid #dcdcdc;
}
table.multiTh td:last-child {
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}



/*横スクロールバーを上に表示　ここから----------------*/
.yokoscrollbarUpperArea {
  transform: scale(1, -1); 
  overflow-x: auto;        

  &::-webkit-scrollbar {   
    height:7px;/*バーの太さ*/       
  }
  &::-webkit-scrollbar-track {    
    background:#fff;/*バーの背景色*/
  } 
  &::-webkit-scrollbar-thumb {    
    background:#9d9b9b;/*バーの色*/ 
  }
}

.yokoscrollbarUpperContent {           
  transform: scale(1, -1);         
}
/*横スクロールバーを上に表示　ここまで----------------*/


.delText {
    text-decoration: line-through;
}



/* モーダル（modal）　ここから---------------- */

.my-modal-background {
	position: fixed;
	/*top: 70px;*/
	top: 0;
	right: 0;
	bottom: 0;
	/*left: 180px;*/
	left: 0;
	/*background-color: rgba(0, 0, 0, 0.5);*/
	background-color: rgba(26, 39, 50,0.5);
	/*z-index: 800;*/
	z-index: 1050;
	text-align: center;
	display: none;
	overflow: auto;
	padding: 50px;
}

.my-modal-background2 {/*ダイアログ用*/
	position: fixed;
	/*top: 70px;*/
	top: 0;
	right: 0;
	bottom: 0;
	/*left: 180px;*/
	left: 0;
	/*background-color: rgba(0, 0, 0, 0.5);*/
	background-color: rgba(26, 39, 50,0.5);
	z-index: 1100;
	text-align: center;
	display: none;
	overflow: auto;
	padding: 50px;
}

.my-modal-background2 .my-modal {/*ダイアログ用*/
    /*
	position: absolute;
	top: 50%;
	left: 50%;
	
	-ms-transform: translate(-50%, -50%);
	-webkit-transform : translate(-50%, -50%);
	transform : translate(-50%, -50%);
	
	background-color: white;
	border-radius: 4px;
	min-width: 360px;
	text-align: left;
    */
}

.my-modal {
	position: absolute;
    display: inline-block;
	top: 50%;
	left: 50%;
	
	-ms-transform: translate(-50%, -50%);
	-webkit-transform : translate(-50%, -50%);
	transform : translate(-50%, -50%);
	
	background-color: white;
	border-radius: 4px;
	min-width: 360px;
	/*min-height: 450px;*/
	padding: 20px;
	/*text-align: left;*/
	text-align: center;
    overflow-y: auto;
    max-height: calc(100% - 4em);
}

.my-modal-bg {
    /*min-width: 650px;*/
    /*padding: 20px;*/
    /*
    border-radius: 4px;
    background-color: #ffffff;
    text-align: center;
    */
}

.my-modal .btn-def {
	border: 2px solid #ffffff;
}

.my-modal .no-border {
	border: 0;
}

.modal-title {
	width: 100%;
	height: 56px;
	line-height: 45px;
	background-color: #7DA3A1;
	color: #ffffff;
	padding: 10px;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.modal-input-line {
    border: 1px solid var(--clr_merchant_text_def);
    border-radius: 6px;
    padding: 10px;
}
/* モーダル（modal）　ここまで---------------- */


/*加盟店リストflexbox　ここから----------------*/
div.merchantListFlexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-between;
}
div.merchantListFlexbox > div {
    min-width: 40%;
    flex: 1;
}
div.merchantListFlexbox > div > button {
    width: 100%;
    overflow-wrap: break-word;
    padding-left: 8px;
    padding-right: 8px;
    white-space: normal;
    text-align: start;
}
/*加盟店リストflexbox　ここまで----------------*/



/*エラー（アラート）表示エリア　ここから----------------*/
.errMsgArea {
    border: 2px solid var(--clr_err_msg_area_border);
    background-color: var(--clr_err_msg_area_bg);
    color: var(--clr_err_msg_area_border);
}
/*エラー（アラート）表示エリア　ここまで----------------*/


/*必須マーク　ここから----------------*/
.requiredMark::after {
    margin-left: 0.7em;
    padding: 0px 6px 0px 6px;
    border-radius: 4px;
    border-radius: 8px;
    font-size: 0.7em;
    color: #fff;
    color: #666666;
    /*color: #c53a18;*/
    background-color: #C44;
    /*background-color: #ffffcc;*/
    /*background-color: #FC2347;*/
    /*background-color: #fff;*/
    background-color: #f3e600;
    content: "必須";
    white-space: nowrap;
    display: inline-block;
}
/*必須マーク　ここまで----------------*/


.shimeiTitleWidth {
    display: inline-block;
    width: 2.5em;
}

.creditAplyItemTitleWidth {
    display: inline-block;
    /*width: 3.5em;*/
    width: 5em;
    text-align: right;
}


input:read-only:focus {
    outline: 0;
}

.wha_simconfirm {
    max-width: 1200px !important;
}


.flexPcNoWrap {
    flex-wrap: nowrap;
}

.simKekkaTbl th {
    width: 210px !important;
}
.simKekkaTbl td {
    text-align: right;
}

.simCondTbl th {
    width: 230px !important;
}

.kiyakuCheckbox {
    transform: scale(3.0);
    /*accent-color: #f00;*/
    margin: 1em;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 1px solid #666;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    outline: 0;
}


.firstHide {
    display: none;
}



#postErrMsgArea > div {
    padding-left: 1em;
}
#postErrMsgArea > div::before {
    display: inline-block;
    content: "・";
    width: 1em;
    height: 1em;
    position: relative;
    left: 0;
    top: 0;
    margin-left: -1em;
}


.merchantCreditApplyCustomerConfirmItemDiv {
    margin-top: 1em;
}


.whaCustomerConfirm table th {
    width: 40%;
}


.crediaApplySuccessMsgArea {
    margin: 1em auto;
    width: 80%;
}
.crediaApplySuccessMsgArea > div {
    margin-top: 2em;
}

.creditApplySuccessTitle {
    border: 2px double #666;
    border-radius: 0.5em;
    padding: 1em;
    width: 100%;
    white-space: nowrap;
    font-size: large;
    font-weight: 500;
    text-align: center;
}

.crediaApplySuccessMsgArea ol {
    margin-top: 0;
}





.listInnerRowBtn {
    display: inline-block;
    padding: 4px 10px !important;
    margin: 1px;
    width: 100%;
    font-size: 10px;
    /*font-weight: 500;*/
    white-space: nowrap;
    border-style: none;
    border-radius: 0.3em;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;
}
.listInnerRowBtn:active{
    position: relative;
    top: 1px;
}

.lirb_Ident {
    /*background-color: #17763C;*/
    /*background-color: #0752a2;*/
    background-color: var(--clr_flex_blue);
    color: #fff;
}
.lirb_Ident:hover {
    /*background-color: #1C914A;*/
    background-color: var(--clr_flex_blue_light);
}

.lirb_contractDocDl {
    /*background-color: #248;*/
    /*background-color: #054181;*/
    background-color: var(--clr_flex_blue_dark);
    color: #fff;
}
.lirb_contractDocDl:hover {
    /*background-color: #24d;*/
    background-color: var(--clr_flex_blue);
}

.lirb_appDetail {
    /*background-color: #882244;*/
    /*background-color: #5185bd;*/
    background-color: var(--clr_flex_blue_light);
    color: #fff;
}
.lirb_appDetail:hover {
    /*background-color: var(--clr_flex_blue_light);*/
    background-color: var(--clr_flex_blue_light_light);
}

.lirb_reapply {
    background-color: #763c17;
    color: #fff;
}
.lirb_reapply:hover {
    background-color: #914a1c;
}



.flexWrapGrow1 {
    flex-grow: 1;
}


.visibleValueCheckboxLabel {
    font-size: small;
}



.otherYousoDisplay {
    cursor: pointer;
}


.modalBtnListW100per {
    width: 100%;
    text-align: justify;
}


.imgZoom {
    cursor: pointer;
}


.mypageLoginFormWidth,
.merchantLoginFormWidth,
.shinpanLoginFormWidth {
    width: 20em;
}



.ibmMonthBtnArea,
.ibmDayBtnArea {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    /*justify-content: space-around;*/
    justify-content: center;
}
.ibmMonthBtn {
    width: calc(33% - 10px);
}
.ibmDayBtn {
    width: calc(20% - 10px);
}


/*年月日入力カレンダーモーダル　ここから----------------*/
.icmMonthBtnArea,
.icmDayBtnArea {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    /*justify-content: space-around;*/
    justify-content: center;
}
.icmMonthBtn {
    width: calc(33% - 10px);
}
.icmDayBtn {
    width: calc(20% - 10px);
}
/*年月日入力カレンダーモーダル　ここまで----------------*/


#modal-area {
    z-index: 1040;
}


input[type="date"] {
    font-size: large;
    font-weight: 600;
}



.headerCreditApplyStepKeiyakuBunrui {
    margin: 0 auto;
    max-width: 1025px;
    text-align: right;
    font-size: 0.8em;
    font-weight: 500;
    color: #555;
    line-height: 2em;
}


.showOnlyMobile {
    display: none;
}

.mcaItemEkimuDiv {
    display: flex; gap: 2em; flex-wrap: wrap;
}

hr.hrHasen {
    border: none;
    border-top: 1px dashed var(--clr_waku3);
}



.thAlertMsg {
    background-color: #fff;
    color: #f00;
    font-size: small;
    margin-left: 1em;
    border-radius: 0.2em;
}




/*/////////マウスオーバーで吹き出し出現　ここから----------------*/
/*//使い方　ここから----*/
/*
<div class="fukidashiSlowArea">マウスを乗せてください
  <span class="fukidashiSlowContent">吹き出しが表示される</span>
</div>
*/
/*//使い方　ここまで----*/
.fukidashiSlowArea {
  position: relative;                  /* 指定した分だけ相対的に移動 */
}
.fukidashiSlowArea:hover .fukidashiSlowContent {
  display: inline;                     /* インライン要素として表示 */
}
 /* --- 吹き出し ------------------ */
.fukidashiSlowContent {
  display: none;                        /* 要素を非表示 */
  position: absolute;                   /* 親要素を基準 */
  /*padding: 2px;                         /* テキストの前後の余白 */
  padding: 10px;                         /* テキストの前後の余白 */
  background-color: rgba(228,228,228,1.00);  /* 背景色（透明度） */
  /*width:180px;                          /* 吹き出し全体の幅 */
  width: 100%;                          /* 吹き出し全体の幅 */
  left : 5%;                           /* 表示位置 */
  top : 100%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
  /*animation: fukidashiSlowContentAnime 1s linear;*/
    border-radius: 0.3em;
    z-index: 300;
}
.fukidashiSlowContent:after{
  border-bottom: 12px solid rgba(228,228,228,1.00);  /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;  /* 吹き出し口の幅１／２ */
  top: -12px;                            /* 吹き出し口の位置調整 */
  left : 5%;                         /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}
@keyframes fukidashiSlowContentAnime{
 100%{ color : black; background:rgba(228,228,228,1.00) }
  50%{ color : black; background:rgba(255,255,255,0.25) }
   0%{ color : white; background:white   }
}
/*/////////マウスオーバーで吹き出し出現　ここまで----------------*/


/*////////////申込時、お申込者情報入力画面の「不足メッセージ」（「次へ」ボタンの隣　ここから----------------*/
.merCaCustormerFusokumsgArea {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding-left: 40px;
    padding-right: 40px;
    white-space: nowrap;
    border: 2px solid var(--clr_err_msg_area_border);
    border-radius: 5px;
    background-color: var(--clr_err_msg_area_bg);
    color: var(--clr_err_msg_area_border);
}
/*////////////申込時、お申込者情報入力画面の「不足メッセージ」（「次へ」ボタンの隣　ここまで----------------*/


tr.ttrKirikaeTrOn {
    display: table-row;
}
tr.ttrKirikaeTrOff {
    display: none !important;
}


.mypageTopBtnTitle {
    font-weight: 600;
}

.mypageTopBtnTitleDiv {
    width: 130px;
}


.mypageDlBtnRow {
    display: flex;
    align-items: center;
}

.mypageDlBtnRowTd {
    flex-grow: 1;
}


.mukouBtn {
    background-color: #CCCCCC;
    color: #FFFFFF;
    cursor: not-allowed;
}


table.jkanrisha_list_table,
table.jkanrisha_list_table th,
table.jkanrisha_list_table td {
    border: 1px solid #ccc;
    line-height: 2em;
    padding: 2px 10px;
}

table.jkanrisha_list_table {
    width: 100%;
}


/*文中のボタンマーク*/
.bunchuu_btn_mark {
    display: inline-block;
    border-radius: 3px;
    background-color: #0752a2;
    color: #fff;
    padding: 0 0.5em;
    font-size: small;
    margin: 0 0.5em;
}



/*マイページダウンロードボタンがdisabledのとき*/
.mypageDlBtnRow button.btn_green:disabled {
    background-color: #9DADDA;
    color: #555;
}



tr.trGray td {
    background-color: #aaa !important;
}



/*
main, header .merchant_header {
  background-image: url("/images/bg_development.png");
}
*/


.meisaiKanriChangeToTatekaeIraiMachiBtn {
    font-size: 11px;
}




.masterKanriCategoryArea {
    
}
.masterKanriCategoryDiv {
    margin-bottom: 2rem;
}
.masterKanriCategoryTitle {
    color: #5c5b5b;
    font-weight: bold;
    margin-bottom: 1em;
    padding: 0.5rem 1rem;
    border-left: 5px solid #5c5b5b;
    /*background: #dcdcdc;*/
    /*background: rgba(244,244,244,1);*/
    background: #ffffff;
}
.masterKanriCategoryContentArea {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}


/*////////////inputCalendarModal　ここから----------------*/
.inputCalendarModal::placeholder {
    color: #ddd;
}
/*////////////inputCalendarModal　ここまで----------------*/


.placeholderGray::placeholder {
    color: #ddd;
}


.topPageBannerDiv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.topPageBannerDiv div {
    flex: 1;
}


/*btn　共通　ここから----------------*/
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	/*width: 300px;*/
    min-width: 400px;
	height: 60px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btn a:hover {
	color: #f2f2f2;
}
/*btn　共通　ここまで----------------*/


/*btn06　ここから----------------*/
.btn06 a {
    color: #fff;
    background: #094;
    -webkit-box-shadow: 0 5px 0 #008039;
    box-shadow: 0 5px 0 #008039;
	border: 1px solid transparent;
    border-radius: 5px;
}

.btn06 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff;
}

.btn06 a:hover {
	background-color: #38c578;
    -webkit-box-shadow: 0 5px 0 rgb(3, 183, 84);
    box-shadow: 0 5px 0 rgb(3, 183, 84);
	/*border: 1px solid #333;*/
}

.btn06 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}
/*btn06　ここまで----------------*/



.paySimChartNonBonusTdB {
    background-color: lightblue !important;
}
.paySimChartNonBonusTdW {
    background-color: #fff !important;
}

.paySimChartOnBonusTdGray {
    color: #fafafa;
}

.paySimChartTanni {
    font-size: x-small;
    padding-left: 2px;
}


.stickyTh {
    /* 縦スクロール時に固定する */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /* tbody内のセルより手前に表示する */
    z-index: 99;
}

#chartTable th,
#chartTable td {
    padding-top: 2px;
    padding-bottom: 2px;
}


#jsInteract, .jsInteract {
    display: none;
}


.agreeWebKakuninBtn {
    width: 600px;
    height: 70px;
    padding: 10px 50px;
}

.agreeWebKakuninContent {
    margin: 20px auto;
    width: 600px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 5px 20px;
    text-align: left;
}


/*////////////タブレット　ここから----------------//*/
@media screen and (max-width: 1024px) {
    .listTable {
        min-width: auto;
    }
    .listTable td {
        word-break: keep-all;
    }
    
    .searchArea {
        width: 100%;
    }
    
    
    .shinpan_g_menu_area_wrap {
        overflow-x: auto;
    }
    .shinpan_g_menu {
        white-space: nowrap;
    }
    .shinpan_sub_menu_area_wrap {
        overflow-x: auto;
    }
    .shinpan_sub_menu {
        height: auto;
        min-height: 40px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: justify;
        white-space: nowrap;
    }
    
}
/*////////////タブレット　ここまで----------------//*/




/*////////////スマホ　ここから----------------//*/
@media screen and (max-width: 600px) {
/*@media screen and (max-width: 768px) {*/
    .merchant_pcHeader {
        display: none;
    }
    .merchant_mobileHeader {
        display: flex;
        /*flex-direction: column;*/
        font-size: x-small;
    }
    #headerMerchantName,
    #headerLoginStaffName {
        display: none;
    }
    
    
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea,
    input[type="email"],
    input[type="password"]{
        font-size: 16px;
    }
    
    
    table.resp_tate {
        width: 100%;
    }
    table.resp_tate th,
    table.resp_tate td {
        display: block;
    }
    
    .searchContentArea {
        display: block;
    }
    
    .resp_w100 {
        display: block;
        width: 100% !important;
    }
    
    /*
    table.tableTateResp {
        width: 100%;
    }
    
    table.tableTateResp,
    .tableTateResp tbody,
    .tableTateResp tr,
    */
    table.tableTateResp,
    .tableTateResp tbody,
    .tableTateResp tr,
    .tableTateResp th,
    .tableTateResp td {
        display: block;
        width: 100% !important;
    }
    
    .tableTateResp td::before {
        content: attr(data-title);
    }
    .tableTateResp td:first-child {
        border-top-width: 5px;
    }
    
    .tableTateResp tr.firstHide {
        display: none;
    }
    .tableTateResp tr.firstHide.ttrKirikaeTrOn {
        display: block;
    }
    
    .merchantApplyTableTate th {
        border: 0;
    }
    
    
    /*ヘッダーSTEP表示　ここから----------------*/
    .headerStep .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0;
    }
    .headerStep .item:not(:last-child)::before,
    .headerStep .item:not(:last-child)::after {
        border-width: 25px;
        border-left-width: 12px;
    }
    /*ヘッダーSTEP表示　ここまで----------------*/
    
    
    .white_area {
        margin: 20px calc(50% - 50vw);
        width: 100vw;
        border-radius: 0;
    }
    
    .listTable {
        min-width: auto;
    }
    
    .mobileFlexWrap {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .mobileInputTextW100per {
        width: 100% !important;
    }
    
    div.merchantListFlexbox {
        gap: 0.5em;
    }
    div.merchantListFlexbox > div {
        min-width: 100%;
        /*min-width: auto;*/
    }
    
    .respBlock {
        display: block !important;
    }
    
    .footerDevArea {
        overflow-x: auto;
        overflow-wrap: break-word;
    }
    
    .flexPcNoWrap {
        flex-wrap: wrap;
    }
    
    .simKekkaTbl td {
        text-align: left;
    }
    
    
    .shinpan_sub_menu_area_wrap {
        /*display: none;*/
        /*flex-direction: column;*/
    }
    
    .mobileW100per {
        width: 100% !important;
    }
    .mobileMaxW100per {
        max-width: 100% !important;
    }
    
    .modalBtnListW100per {
        padding-left: 1em;
        padding-right: 1em;
        white-space: normal;
        text-align: justify;
    }
    
    .mypageLoginFormWidth,
    .merchantLoginFormWidth,
    .shinpanLoginFormWidth {
        width: 12em;
    }
    
    
    
    .ibmMonthBtn {
        width: 100%;
    }
    .ibmDayBtn {
        padding-left: 0;
        padding-right: 0;
    }
    
    /*年月日入力カレンダーモーダル　ここから----------------*/
    .icmMonthBtn {
        width: 100%;
    }
    .icmDayBtn {
        padding-left: 0;
        padding-right: 0;
    }
    /*年月日入力カレンダーモーダル　ここまで----------------*/
    
    
    .merchant_g_menu {
        font-size: small;
    }
    
    .mobileLineH150em {
        line-height: 2.5em;
    }
    
    
    .listTable td {
        word-break: keep-all;
    }
    
    
    .showOnlyMobile {
        display: block;
    }
    
    .mcaItemEkimuDiv {
        gap: 10px;
    }
    
    
    
    tr.ttrKirikaeTrOn {
        display: block;
    }
    tr.ttrKirikaeTrOff {
        display: none !important;
    }


    .agreeWebKakuninBtn {
        width: 100%;
    }

    .agreeWebKakuninContent {
        width: 100%;
    }
}
/*////////////スマホ　ここまで----------------//*/