@charset "UTF-8";

/*** CSS Document ********************************************

    style.css

*************************************************************/

/*------------------------------------------------------------

  共通

------------------------------------------------------------*/

/* clearFix
-----------------------------------------------------*/
/* clearfix */
.clearFix:before,
.clearFix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearFix:after {
    clear: both;
}
.clearFix{
    *zoom: 1;
}
/* margin
-----------------------------------------------------*/
.mt10{
margin-top:10px;
}

.mt20{
margin-top:20px;
}


.ml30{
    margin-left:30px;
}

.mb20{
margin-bottom:20px;
}
/* display
-----------------------------------------------------*/
.block{
    display:block;
}

/* color
-----------------------------------------------------*/
.link-text{
    color:#3E8BFF;
}

/* ヘッダ
-----------------------------------------------------*/
header .headerInner{
position: fixed;
background: #fff;
width: 100%;
top: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 58px;
z-index: 10001;
filter: drop-shadow(0px -6px 8px rgba(68,68,68,0.4));
-webkit-transform: translate3d(0, 0, 0);
}

header .headerInnerLogout{
background: #fff;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 58px;
filter: drop-shadow(0px -6px 8px rgba(68,68,68,0.4));
}

#hamburgerInput{
display: none;
}

#hamburgerInput:checked ~ .gloNavi{
display:block;
position: fixed;
}

#hamburgerInput:checked ~ .gloNavi-overlay{
display: block;
}

header .hamburger{
position: absolute;
z-index: 10000;
top: 8px;
left: 8px;
height: 38px;
width: 38px;
padding: 2px;
border-radius: 2px;
background-color: #72a90e;
opacity: 1;
transform: scale(0.9, 0.9);
}

@media screen and (max-width: 374px) {
    header .hamburger{
    position: absolute;
    top: 8px;
    left: 4px;
    transform: scale(0.85, 0.85);
    }
}

header .hamburgerLine{width: 24px;
height: 2.5px;
border-radius: 1px;
margin-left: 4px;background-color: #fff;display: block;}

header .hamburgerLine.top{
margin-top: 6px;
width: 30px;
}

header .hamburgerLine.center{
width: 26px;
margin-top: 5px;
}

header .hamburgerLine.bottom{
width: 22px;
margin-top: 5px;
}

header .hamburgerText{
color: #fff;
font-feature-settings: "palt" 1;
display: block;
padding-top: 4px;
padding-left: 0px;
line-height: 1;
font-size: 10px;
font-weight: 600;
font-size: 10px;
transform: scale(0.8);
}

header .imgLogo{
margin-top: 0;
text-align: center;
}

header .imgLogo img{
max-width: 208px;
}

header .imgLogoNotLogin{
position:absolute;
top:10px;
left:10px;
}

header .txtKanriNotLogin{
position:absolute;
top: 16px;
right:10px;
color:#cccccc;
font-weight:bold;
line-height:1;
}

.accountInformation{
background-color: #f9f9f9;
padding: 15px 10px 15px 20px;
margin-top: 15px;
font-size: 13px;
}

.accountInformation .clientCd{
text-align: left;
color:#6e6e6e;
font-size:95%;
}

.accountInformation .clientCd__number{
font-weight: bold;
font-size: 15px;
}

.accountInformation .companyName{
font-weight: bold;
text-align: left;
word-break: break-all;
margin-top: 2px;
}

.accountInformation .accountName{
font-weight: bold;
text-align: left;
margin-top: 2px;
}

header .header__btn{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 32px;
padding: 5px;
font-size: 11.5px;
font-weight: bold;
text-decoration: none;
text-align: center;
box-sizing: border-box;
border-radius: 4px;
font-feature-settings: "palt" 1;
}

header :hover.header__btn{
opacity: 0.8;
filter: alpha(opacity=80);
text-decoration:none;
}

header .headerBtn{
display: flex;
justify-content: center;
margin-top: 75px;
padding: 0px 10px;
gap: 0 10px;
}

header .headerBtn a{
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}

header .headerBtn .logout{
background-color: #3b75af;
color: #fff;
}

header .headerBtn .userPage{
background-color: #df4c47;
border: 1px solid #df4c47;
color: #fff;
}

header .headerBtnLogout{
display: flex;
justify-content: center;
margin-top: 15px;
margin-bottom: 15px;
padding: 0px 10px;
gap: 0 10px;
}

header .headerBtnLogout div{
width: 50%;
}

header .headerBtnLogout .userPage{
background-color: #df4c47;
border: 1px solid #df4c47;
color: #fff;
}

header .headerBtnLogout .clientTopBtn{
background-color: #92D050;
}

.gloNavi{
z-index: 10000;
top: 58px;
display: none;
width: 100%;
height: auto;
border-top: 3px solid #70a80f;
border-bottom: 3px solid #70a80f;
background-color: #fff;
opacity: 1;padding: 0;
font-weight: normal;
box-shadow: 0px 10px 10px -14px rgb(0 0 0 / 60%);
-webkit-transform: translate3d(0, 0, 0);
}

.gloNavi .gloNavi_inner{
border-bottom: 1px solid #72a90f;
}

.gloNavi .gloNavi_inner:last-of-type{
border-bottom: none;
}

.gloNavi-overlay {
position: fixed;
z-index: 10000;
top: 0;
left: 0;
display: none;
width: 100%;
height: 100vh;
background-color: rgba(0,0,0,.2);
-webkit-transform: translate3d(0, 0, 0);
}

.gloNavi div.gloNavi_inner  > a,.gloNavi div.gloNavi_inner > label{
color: #62900e;
padding: 15px 15px;
font-weight: bold;
background: #e5f6bb;
display: block;
box-sizing: border-box;
position: relative;
}

.gloNavi li.lowerMenu a{
display: block;
color: #333;
line-height: 1;
padding: 20px 0 20px 62px;
border-bottom: 1px #ddd solid;
}

@media screen and (max-width: 374px) {
    .gloNavi li.lowerMenu a{
    padding: 15px 0 15px 62px;
    }
}

.gloNavi input{
display:none;
}

.gloNavi label{
display:inline-block;
position: relative;
width:100%;
}

.gloNavi .lowerMenu.arrow_right a{
position: relative;
}

.gloNavi .lowerMenu.arrow_right a::after {
content: "";
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 42px;
width: 8px;
height: 8px;
border-top: 2px solid #72a90f;
border-right: 2px solid #72a90f;
transform: rotate(45deg);
}

.gloNavi label span{
position: absolute;
right: 15px;
top: 8px;
font-size: 20px;
font-weight: 100;
}

.gloNavi ul{
padding: 0;
display:block;
margin: 0;
line-height: 2;
font-weight: normal;
background: #ffffff;
border-top: 1px solid #6fa710;
}

#gloNaviApplicationInput:checked ~ #gloNaviApplication{
display:none;
}

#gloNaviMailInput:checked ~ #gloNaviMail{
display:none;
line-height: 2;
font-weight: normal;
}

#gloNaviJobFrameInput:checked ~ #gloNaviJobFrame{
display:none;
line-height: 2;
font-weight: normal;
}

/* フッタ
-----------------------------------------------------*/
footer{
margin-top: 40px;
}

footer .lstFoot{
margin:20px 10px 0 10px;
border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #e6e6e6;
}

footer .lstFoot a{
display:block;
padding:15px 15px 15px 15px;
border-top:1px solid #e6e6e6;
background:url(/img/clientsp/img_com_arrow.png?t=1676013131810) right center no-repeat;
background-size: 17px 18px;
-webkit-background-size: 17px 18px;
}

footer .lstFoot li:first-child a{
border-top:none;
}

footer .forTop{
background:#f7f7f7;
margin:10px 10px 0 10px;
}

footer .footBottomLink{
background: #e5f6bb;
display: flex;
flex-flow: inherit;
flex-wrap: wrap;
padding: 0;
justify-content: left;
gap: 0;
box-sizing: border-box;
width: 100%;
border-top: 4px solid #72a90e;
}

footer .footBottomLink p{
width: 100%;
font-size: 13px;
margin: 0;
text-align: left;
box-sizing: border-box;
}

@media screen and (max-width: 320px) {
    footer .footBottomLink p{font-size: 12px;}
}

footer .footBottomLink a{
display: block;
width: 100%;
padding: 15px 20px;
box-sizing: border-box;
border-bottom: 1px solid #71a90e;
color: #61900d;
font-weight: bold;
font-feature-settings: "palt" 1;
}

footer .footBottomLogo{
background: #72a90f;
padding: 20px 10px;
color: #fff;
}

footer .footBottomLink a span.arrow {
position: relative;
display: inline-block;
padding: 0;
width: 100%;
box-sizing: border-box;
}

footer .footBottomLink a span.arrow::before {
content: '';
width: 8px;
height: 8px;
border-top: solid 2px #60910e;
border-right: solid 2px #60910e;
position: absolute;
right: 10px;
top: 5px;
}

footer .footBottomLink a span.arrow.arrow-top::before {
transform: rotate(-45deg);
top: 10px;
}

footer .footBottomLink a span.arrow.arrow-bottom::before {
transform: rotate(135deg);
}

footer .footBottomLink a span.arrow.arrow-left::before {
transform: rotate(-135deg);
}

footer .footBottomLink a span.arrow.arrow-right::before {
transform: rotate(45deg);
}
footer .mynavi{
text-align:center;
font-size: 13px;
font-weight:bold;
}

.copyright{
text-align:center;
padding:5px 0 10px 0;
color:#817550;
font-size:10px;
}

.copyrightNew{
text-align:center;
font-size:10px;
}

a.pagetop{
display: flex;
align-items: center;
justify-content: center;
width: 154px;
height: 38px;
/* background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%); */
background-color: #71a90e;
border-top: 2px solid #72a90e;
border-right: 2px solid #72a90e;
border-left: 2px solid #72a90e;
font-size: 12px;
font-weight: bold;
color: #ffffff;
margin-left:calc(100% - 164px);
border-radius: 4px 4px 0 0;
}

.pagetop__icon{
margin-right: 5px;
margin-top: -2px;
}

/* トップページ
-----------------------------------------------------*/
.topTable{
width:100%;
margin:5px 0;
font-size:13px;
}

.topTable tr{
border-bottom: 1px dotted #ddd;
}

.topTable tr:last-of-type {
border-bottom: none;
}

.topTable tr:last-of-type th, .topTable tr:last-of-type td{
padding: 10px 10px 0;
}

.topTable th{
padding: 10px;
width:70%;
}

.topTable td{
color: #ff3333;
font-size: 13px;
font-weight:bold;
padding: 10px;
width: 20%;
text-align: right;
-webkit-font-smoothing: antialiased;
}

.topTable a{color: #2b59c0 !important;font-weight:bold;font-size: 13px; -webkit-font-smoothing: antialiased;}

.topConTable{
width: 100%;
}

.topConTable tbody,thead{
display:block;
}

.remainingInformationBody{
overflow-x: hidden;
overflow-y: scroll;
height: 254px; /*50.59 * 5*/
}

.topConTable th{
background-color:#f5f5f5;
font-weight: bold;
font-size: 13px;
padding: 8px 5px 8px 8px;
text-align:center;
}

.topConTable td{
border-top: 1px solid #f5f5f5;
padding: 8px 5px 8px 8px;
font-size:80%;
font-feature-settings: "palt" 1;
word-break: break-word;
}

.topConTable__function{
width: 40vw;
}

.topConTable__remaining{
width: 25vw;
}

.topConTable__deadline{
width: 35vw;
}

.topTitGreen{
background:#e5f6bb;
padding:8px;
color:#62900e !important;
font-weight:bold;
text-align:left;
font-size: 14px;
border-radius: 2px;
}

.topTitGreen.linkIcon{
position: relative;
padding-left: 30px;
text-decoration: underline;
}

.topTitGreen.linkIcon:before{
display: block;
content: "";
position: absolute;
top: 11px;
left: 10px;
width: 14px;
height: 14px;
background-image: url(../../img/clientsp/img_titlearrow_sp_green.png?t=1749471565589);
background-size: cover;
}

.topArticle{
border: 1px solid #ddd;
border-radius: 2px;
overflow: hidden;
margin:20px 10px 0 10px;
padding: 10px;
}

.topInfo{
width: 100%;
overflow-x: scroll;
}

.topInfo .topInfoTable:nth-child(even){
background-color: #fcfcfc;
}

.topInfo table{
width: 100%;
display: block;
padding: 12px 10px 12px;
border-bottom: 1px dotted #ddd;
box-sizing: border-box;
font-feature-settings: "palt" 1;
}

.topInfo th{
display: inline-block;
width: auto;
padding: 2px 5px;
border: 1px solid #72a90e;
color: #71a90e;
font-size: 12px;
vertical-align: top;
font-weight: bold;
line-height: 1;
font-feature-settings: "palt" 1;
}

.topInfo td{
display: block;
font-weight:bold;
font-size: 12px;
margin-top: 8px;
}

.topInfo td.newsTitle a{
font-size: 13px;
color: #2b59c0 !important;
text-decoration: underline!important;
}

.topInfo td.newsText{
font-size: 12px;
font-weight: normal;
margin-top: 5px;
}

#topInfoNull{
height: 180px;
}

.topInquery {
padding: 15px 10px;
background-color: #F4FCDE;
margin-top: 10px;
}

.topInquery .telArea .telArea__title{
font-size: 14px;
font-weight: bold;
text-align: center;
margin: 0 auto;
}

.topInquery .telArea .telArea__title span{
position: relative;
display: inline-block;
padding-left: 30px;
}

.topInquery .telArea .telArea__title span:before{
display: block;
content: "";
position: absolute;
top: -2px;
left: 0;
width: 24px;
height: 24px;
background-image: url(../../img/clientsp/img_infotel_sp.png?t=1749471565589);
background-size: cover;
}

.topInquery .telArea__inner{
display: block;
background-color: #72a90f;
padding: 10px 5px;
margin-top: 10px;
color: #fff;
}

.topInquery .telArea__inner .telArea__inner__title{
display: block;
font-size: 12px;
font-weight: bold;
text-align: center;
line-height: 1;
}

.topInquery .telArea__inner .telArea__inner__number{
display: block;
font-size: 24px;
font-weight: bold;
text-align: center;
line-height: 1;letter-spacing: 0.02em;
margin-top: 8px;
}

.topInquery .telArea__inner .telArea__inner__time{
display: block;
font-size: 16px;
font-weight: normal;
text-align: center;
line-height: 1;
margin-top: 5px;
}

.topInquery .telArea{
margin-top: 15px;
}

.topInquery .mailformArea .mailformArea__title{
font-size: 14px;
font-weight: bold;
text-align: center;
margin: 0 auto;
}

.topInquery .mailformArea .mailformArea__title span{
position: relative;
display: inline-block;
padding-left: 30px;
}

.topInquery .mailformArea .mailformArea__title span:before{
display: block;
content: "";
position: absolute;
top: -2px;
left: 0;
width: 24px;
height: 24px;
background-image: url(../../img/clientsp/img_infomail_sp.png?t=1749471565589);
background-size: cover;
}

.topInquery .mailfromArea__inner{
margin-top: 10px;
}

.topInquery .mailfromArea__inner a{
display: block;
background-color: #72a90f;
padding: 10px 5px;
text-align: center;
font-weight: bold;
color: #fff;
}

.topInquery .mailfromArea__inner a:hover{
color: #fff;
opacity: 0.8;
filter: alpha(opacity=80);
-ms-filter: "alpha(opacity=80)";
text-decoration: none;
}

/* レイアウトや余白 */
.topInfomation{
display: flex;
padding: 15px;
}

.topInfomation li{
display: flex;
align-items: center;
justify-content: center;
width: 48%;
}

.topInfomation li:first-child{
margin-right: 4%;
}

.topInfomation li a{
display: block;
width: 100%;
}

/* ボタン装飾 */
p.topInfomation__link{
display: block;
box-sizing: border-box;
width: auto;
padding: 15px 12px 12px 12px;
font-size: 12px;
font-weight: bold;
text-align: center;
border: 5px solid #E1D9C0;
border-radius: 10px;
box-sizing: border-box;
}

p.topInfomation__link span{
display: block;
margin-bottom: 8px;
}

.topInfomationReceptionHours{
padding:0px 15px 15px 0px;
text-align:right;
font-weight:bold;
}

/* 見出し
-----------------------------------------------------*/

/*画面名見出し*/
.titGreen{
background:#72a90f;
border-top:1px solid #9bcc43;
box-shadow: 0 -1px 0 #72a90f;
-webkit-box-shadow: 0 -1px 0 #72a90f;
text-shadow: 0 -1px 1px rgba(0,0,0,0.5);
-webkit-text-shadow: 0 -1px 1px rgba(0,0,0,0.5);
padding:13px 0 13px 0;
color:#ffffff;
font-weight:bold;
text-align:center;
font-size:16px;
}

/*検索見出し（灰色）*/
.titGray{
background:#8D8D8D;
padding:10px 10px 10px 5px;
color:#ffffff;
font-weight:bold;
}

/*黒見出し*/
.titBlack{
background:#404040;
padding:5px 10px 5px 10px;
color:#ffffff;
font-weight:bold;
}

.titBlack .hissu{
display:inline-block;
border-radius:100px;
-webkit-border-radius:100px;
background:#cc0000;
margin:0 5px 0 0;
padding:1px 5px 1px 5px;
heihgt:16px;
line-height:16px;
}

.titBlack .bango,
.titBlack .data{
display:inline-block;
margin:0 5px 0 0;
color:#72a90f;
}

/*線見出し*/
.titLine{
border-top:1px solid #E6E6E6;
margin:10px 0 0 0;
padding:10px 10px 0 10px;
font-weight:bold;
}

.titLine .bango,
.titLine .data{
display:inline-block;
margin:0 5px 0 0;
color:#72a90f;
}

.titLine__text{
display: block;
line-height:1.3em;
}
.titLine__mintext{
display: inline-block;
vertical-align:top;
font-weight:normal;
font-size: 12px;
line-height:1;
margin-top: 10px;
}

/*太見出し*/
.titBold{
margin:10px 10px 0 10px;
font-weight:bold;
}

/* ログイン
-----------------------------------------------------*/

/*カスタマーサポート*/

.boxSuport{
background:#fffae6;
margin:10px 0 0 0;
padding:10px 0 10px 0;
text-align:center;
}

.boxSuport strong{
font-size:24px;
}


/* リスト
-----------------------------------------------------*/

/*基本リンクリスト*/

.lstBasic a{
display:block;
padding:15px 15px 15px 15px;
border-bottom:1px solid #e6e6e6;
background:url(/img/clientsp/img_com_arrow.png?t=1676013131810) right center no-repeat;
background-size: 17px 18px;
-webkit-background-size: 17px 18px;
}

.lstBasic li:first-child a{
border-top:none;
}

/*箇条書き*/

.lstTxt li{
margin:10px 10px 0 10px;
background:url(/img/clientsp/img_com_maru.png?t=1676013131810) left 0.4em no-repeat;
background-size: 10px 10px;
-webkit-background-size: 10px 10px;
padding:0 0 0 15px;
}

.lstTxt a{
text-decoration:underline;
}

/* ボタン
-----------------------------------------------------*/

/*白ボタン*/
.btnWhite{
margin:20px 0 0 0;
text-align:center;
}
.btnWhiteSearch{
margin:15px 0 0 0;
text-align:center;
}

.btnWhite a,
.btnWhite input,
.btnWhiteSearch a,
.btnWhiteSearch input{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
padding:20px 0 20px 0;
text-align: center;
line-height:1;
margin:0 5px 0 5px;
width:130px;
}

.btnWhiteSearch input[type=submit]{
font-weight: bold;
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
border: 1px solid #aeaeae;
color: #818181 !important;
padding: 15px 0;
min-width: 52%;
}

.btnWhite.mt10{
margin:10px 0 0 0;
}

/*白ボタンinline*/

input.btnWhiteInline{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
padding:13px 10px 13px 10px;
text-align: center;
line-height:1;
}

/*面接予約ボタンinline*/
div.btnOnlineWhiteInline{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
padding:7px 10px 7px 10px;
text-align: center;
font-size:12px;
line-height:1;
}

/*白ボタン3カラム*/

.btn3Col{
margin:10px 0 0 0;
text-align:center;
}

.btn3Col li{
display:inline;
}

.btn3Col li a,
.btn3Col li input{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
margin:0 2px 0 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1;
width:28%;
}

.btn3Col li span{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background:#ededed;
color:#ffffff;
margin:0 2px 0 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1;
width:28%;
}

/*白ボタン4カラム SMS追加*/

.btn4Col{
margin:10px 0 0 0;
text-align:center;
}

.btn4Col li{
display:inline;
}

.btn4Col li a,
.btn4Col li input{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
margin:0 2px 0 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1.2;
width:21%;
}

.btn4Col li span{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background:#ededed;
color:#ffffff;
margin:0 2px 0 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1.2;
width:21%;
}

.btn2Col{
margin:10px 0 0 0;
text-align:center;
}

.btn2Col li{
display:inline;
}

.btn2Col li a,
.btn2Col li input{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
margin:0 2px 0px 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1.2;
width:46%;
}

.btn2Col li span{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background:#ededed;
color:#ffffff;
margin:0 2px 0 2px;
padding:15px 0 15px 0;
text-align: center;
font-size:12px;
line-height:1.2;
width:100%;
}


/*もっと見るボタン*/
.btnMore a{
display:block;
padding:10px 0 10px 0;
background:#ededed url(/img/clientsp/img_com_arrow.png?t=1676013131810) right center no-repeat;
background-size: 17px 18px;
-webkit-background-size: 17px 18px;
text-align:center;
}

/*テキストボタン*/
.btnTxt a{
display:block;
margin:20px 0 0 0;
text-align:center;
text-decoration:underline;
}


/* テキスト
-----------------------------------------------------*/
.txtCom{
margin:10px 10px 0 10px;
}

.txtCom em{
color:#cc0000;
}

.txtCom a{
text-decoration:underline;
}

.txtAttention{
margin:10px 0 0 0;
}
.txtTar{
text-align:right !important;
}
.txtTac{
text-align:center !important;
}

.fs19{
    font-size:19px;
}
.txtFwn{
font-weight:normal !important;
}
/* フォーム
-----------------------------------------------------*/
.boxForm{
margin:10px 10px 0 10px;
}

input[type=text],
input[type=password]{
display:block;
appearance: none;
-webkit-appearance: none;
border-radius:10px;
-webkit-border-radius:10px;
border:2px solid #D9D9D9;
padding: 13px 3% 13px 3%;
width:94%;
}

input[type=submit]{
color:#333;
font-weight:normal;
}

input[type=text].auto{
width:auto;
}

textarea{
display:block;
appearance: none;
-webkit-appearance: none;
border-radius:10px;
-webkit-border-radius:10px;
border:2px solid #b2bfd1;
box-shadow: 0 5px 0 rgba(0,0,0,0.05) inset;
-webkit-box-shadow: 0 5px 0 rgba(0,0,0,0.05) inset;
padding: 13px 3% 13px 3%;
width:94%;
height:100px;
}

select{
appearance: none;
-webkit-appearance: none;
border-radius:10px;
-webkit-border-radius:10px;
border:2px solid #D9D9D9;
padding: 13px 34px 13px 3%;
margin:0 5px 0 0;
vertical-align:bottom;
width:100%;
background:url(/img/clientsp/img_com_pulldown.png?t=1676013131810) right center no-repeat;
background-size: 32px 22px;
-webkit-background-size: 32px 22px;
}

select.auto{
width:auto;
}

select.p75{
width:70%;
}

/*フォーム用リスト*/
.lstFormObj{
margin:-10px -10px -10px -10px;
}

.lstFormObj li{
border-top:1px solid #d9d9d9;
}

.lstFormObj li:first-child{
border-top:none;
}

.lstFormObj label{
display:block;
padding:15px 0 15px 15px;

}

.applicationFormDatebox{
    display: flex;
}

.applicationFormDateboxDiv{
    margin: 0 auto;
    margin-top: 10px;
}

.requestFormDatebox{
    margin: 0 auto;
    margin-top: 6px;
}

@media screen and (max-width: 330px) {
  .dateFromTo{
        zoom:90%;
    }
}
@media screen and (max-width: 300px) {
  .dateFromTo{
        zoom:80%;
    }
}

/* ページャー
-----------------------------------------------------*/
.boxPager{
position:relative;
text-align:center;
margin:20px 10px 20px 10px;
}

.boxPager p{
display:inline-block;
border-radius:100px;
-webkit-border-radius:100px;
background:#72a90f;
margin:0 5px 0 0;
padding:2px 10px 2px 10px;
vertical-align:middle;
heihgt:16px;
line-height:16px;
color:#ffffff;
}

.boxPager ul li{
position:absolute;
top:0px;
right:0px;
text-align:right;
color:#cccccc;
}

.boxPager ul li:first-child{
position:absolute;
top:0px;
left:0px;
text-align:left;
}

.boxPager a{
text-decoration:underline;
}
/* 応募者検索
-----------------------------------------------------*/

/*アコーディオンメニュ*/
.toggle {
    display: none;
}
.accordionLabel {        /*タイトル*/
    margin-top:10px;
    margin-right:10px;
    padding: 1em;
    display: block;
    text-align:right;
}
.accordionLabel::before{     /*タイトル横の矢印*/
    content:"";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
    border-color:black;
}
.accordionLabel,.accordionContent {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(-2px);
    transition: all 0.3s;
}
.accordionContent {      /*本文*/
    height: 0;
    margin-bottom:10px;
    overflow: hidden;
}
.toggle:checked + .accordionLabel + .accordionContent {   /*開閉時*/
    height: auto;
    transition: all .3s;
}
.toggle:checked + .accordionLabel::before {
    transform: rotate(-45deg) !important;
}
/* CSSコード */
hr {
  border-width: 3px 0 0 0; /* 線の太さを指定 */
  border-style: dashed; /* 線の種類を指定 */
  border-color: #D9D9D9; /*線の色を指定 */
}

/* 応募者一覧
-----------------------------------------------------*/

.boxList{
border-bottom:1px solid #d9d9d9;
padding:0 0 10px 0;
}

.appeal{
display:block;
margin:10px 10px 0 30px;
}

.userInfo{
padding:10px 10px 10px 10px;
margin:10px 0 0 0;
background:rgba(146,208,80,0.2);
background-size: 17px 18px;
-webkit-background-size: 17px 18px;
}

.userInfo.unArrow{
padding:10px 10px 10px 10px;
margin:0 0 0 0;
background-image:none;
}

.userInfo li{

background:url(/img/clientsp/img_com_maru.png?t=1676013131810) left top no-repeat;
background-size: 15px 15px;
-webkit-background-size: 15px 15px;
margin:5px 0 0 0;
padding:0 0 0 20px;
}

.userInfo a.onlineurl{
color:#0000EE;
}

.userInfo li:first-child{
margin:0 0 0 0;
}

.userInfo li .midoku{
color:#cc0000;
}

.userInfo li .kidoku{
color:#72a90f;
}

.userInfo li .noteInput{
color:#72a90f;
}

.userInfo li .green{
color:#72a90f;
}

.userInfo li .noteNotInput{
color:#72a90f;
}

.henshinInfo{
padding:10px 10px 10px 10px;
margin:10px 0 0 0;
background:#fffae6;
}

.responsive_fontsize{
}@media screen and (max-width:338px) {
    .responsive_fontsize{
        font-size:13px;
    }
}@media screen and (max-width:329px) {
    .responsive_fontsize{
        font-size:12px;
    }
}

.memo{
    width:70%;
    display:inline-block;
}

.centering{
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.hide{
    display:none;
}

/*メモ入力オーバーレイ*/
.inputMemo__Modalbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#60000000,endColorstr=#60000000);
  background-color: rgba(0,0,0,0.60);
  z-index: 100000;
  -webkit-transform: translate3d(0, 0, 0);
}

.inputMemo__Modalbg__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 30vh auto 0;
  width: 85%;
  height: 40vh;
  background: #FFFBFB;
  padding: 10px;
  border-radius: 5px;
  font-size:12px;
}

/* 応募者詳細
-----------------------------------------------------*/
.boxStatus{
margin:10px 0 0 0;
text-align:center;
}

.boxDetail{
background:#fffae6;
padding:10px 10px 10px 10px;
}

.boxDetail h1{
background:url(/img/clientsp/img_com_tenpo.png?t=1676013131810) left center no-repeat;
background-size: 17px 15px;
-webkit-background-size: 17px 15px;
padding:0 0 0 23px;
font-size:16px;
font-weight:bold;
}

.boxDetail p{
margin:5px 0 0 0;
}

.boxList02 dd{
margin:10px 10px 0 10px;
}

.replyStatus{
font-weight:bold;
vertical-align: middle;
margin-left:10px;
}
.replyStatus img{
vertical-align: middle;
}

.messageBox{
    margin:10px;
    padding:5px;
    border:1px black solid;
    word-wrap: break-word;
}

.link{
    color:#3333FF !important;
}

.listmenu__memo{
background: #f9f9f9;
border: 1px solid #aeaeae;
border-radius: 0;
box-sizing: border-box;
text-align: left;
color: #333333 !important;
box-shadow: none;
font-size: 13px;
font-weight: normal;
padding: 10px 3% 10px 3%;
z-index: 1;
width:100%;
}

/* お知らせ
-----------------------------------------------------*/

.boxInfo dt{
padding:10px 10px 0 10px;
font-weight:bold;
color:#72a90f;
}

.boxInfo dt .data{
display:block;
font-weight:bold;
color:#333333;
}

.boxInfo dd{
padding:8px 10px 10px 10px;
color:#999999;
border-bottom:1px solid #e6e6e6;
}

.boxInfo dd a{
text-decoration:underline;
}

/* FAQ
-----------------------------------------------------*/
.lstFaq li{
}

.lstFaq li a{
display:block;
padding:10px 10px 10px 10px;
border-bottom:1px solid #e6e6e6;
}

/* clearfix */
.lstFaq li a:before,
.lstFaq li a:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.lstFaq li a:after {
    clear: both;
}
.lstFaq li a{
    *zoom: 1;
}

.q{
display:block;
float:left;
border-radius:100px;
-webkit-border-radius:100px;
background:#ea7171;
margin:2px 5px 0 0;
padding:1px 0 1px 0;
vertical-align:middle;
heihgt:16px;
line-height:16px;
color:#ffffff;
width:30px;
text-align:center;
}

.a{
display:block;
float:left;
border-radius:100px;
-webkit-border-radius:100px;
background:#0fa9a7;
margin:2px 5px 0 0;
padding:1px 0 1px 0;
vertical-align:middle;
heihgt:16px;
line-height:16px;
color:#ffffff;
width:30px;
text-align:center;
}

.txtFaq{
display:block;
margin:0 0 0 40px;
}

.boxFaq{
margin:10px 10px 0 10px;
padding:10px 10px 10px 10px;
border-radius:10px;
-webkit-border-radius:10px;
background:#edfad4;
}

.boxFaq a{
text-decoration:underline;
}

.boxFaq p:nth-child(2){
border-top:1px solid #ffffff;
margin:10px 0 0 0;
padding:10px 0 0 0;
}

/* clearfix */
.boxFaq p:before,
.boxFaq p:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.boxFaq p:after {
    clear: both;
}
.boxFaq p{
    *zoom: 1;
}

/* ご利用金額一覧
-----------------------------------------------------*/
.seikyu{
display:inline-block;
border-radius:100px;
-webkit-border-radius:100px;
background:#cccccc;
margin:0 0 0 5px;
padding:1px 5px 1px 5px;
vertical-align:middle;
heihgt:16px;
line-height:16px;
color:#ffffff;
}

.miseikyu{
display:inline-block;
border-radius:100px;
-webkit-border-radius:100px;
background:#CC0000;
margin:0 0 0 5px;
padding:1px 5px 1px 5px;
vertical-align:middle;
heihgt:16px;
line-height:16px;
color:#ffffff;
}

/* メール詳細
-----------------------------------------------------*/
.boxMail{
border-radius:10px;
-webkit-border-radius:10px;
margin:10px 0 0 0;
padding:10px 10px 10px 10px;
background:#efefef;
}

/* エラー
-----------------------------------------------------*/
.boxError{
border-radius:10px;
-webkit-border-radius:10px;
margin:10px 10px 10px 10px;
padding:5px 10px 10px 10px;
background:#ffeded;
}

.boxError li{
background:url(/img/clientsp/img_com_error.png?t=1676013131810) left 0.3em no-repeat;
background-size: 15px 15px;
-webkit-background-size: 15px 15px;
margin:5px 0 0 0;
padding:0 0 0 20px;
color:#ff0000;
}

.boxError .loginAttention a{
  color: blue;
}



/* sms_wrap & 見出し */
#mainclient .formtable {
width: 100%;
margin:0 auto;
}
#mainclient .title {
font-weight: bold;
font-size: 108%;
background: #8bba17;
padding: 5px 10px;
color: #FFFFFF;
text-align: center;
}


/* SMS　個別送信 */

#mainclient .formtable .formtable_smsTitle{
padding: 10px 0;
font-weight: bold;
font-size: 120%;
background: #8bba17;
color: #ffffff;
letter-spacing: 0.2em;
}

/* SMS表示画面　通常時 */
#mainclient .formtable .sms_IndividualWrap{
padding: 0 40px 20px 40px;
font-size: 108%;
height: auto;
}

/* SMS表示画面　スクロール時　高さ固定 */
#mainclient .formtable .sms_IndividualWrap.scroll_ON{
height: 360px;
overflow-x: auto;
}

#mainclient .formtable .sms_IndividualWrap .inner_l{
float: left;
width:78%;
}
#mainclient .formtable .sms_IndividualWrap .inner_r{
float: right;
width:78%;
}
/* SMS　吹き出し部分 */

#mainclient .formtable .sms_IndividualWrap .bubble {
padding: 10px 10px !important;
margin: 26px 0 0 0;
border-radius: 20px;
position: relative;
clear: both;
max-width: 100%;
word-wrap: break-word;
}

#mainclient .formtable .sms_IndividualWrap .bubble.color_l {
background: #def78a;
color: #333333;
}

#mainclient .formtable .sms_IndividualWrap .bubble.color_r {
background: #EDEDED;
display: inline-block;
float: right;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-left:before,
#mainclient .formtable .sms_IndividualWrap .bubble-half-right:before {
content: "";
width: 15px;
height: 20px;
position: absolute;
top: -2px;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-left:before {
border-radius: 0 15px;
left: -10px;
background: #def78a;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-right:before {
border-radius: 15px 0;
right: -10px;
background: #EDEDED;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-left:after,
#mainclient .formtable .sms_IndividualWrap .bubble-half-right:after {
content: "";
width: 17px;
height: 20px;
position: absolute;
top: -13px;
background: #fff;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-left:after {
border-radius: 0 17px;
left: -12px;
}

#mainclient .formtable .sms_IndividualWrap .bubble-half-right:after {
border-radius: 17px 0;
right: -12px;
}

/* SMS　送信成功時の日時表示 */
.smsSendTime {
position: absolute;
top: 100%;
width: 100px;
right: -5px;
font-size: 80%;
}

/* SMS　送信失敗時の日時表示 */
.misousinSmsSendTime {
position: absolute;
top: 100%;
width: 100px;
right: 30px;
font-size: 80%;
}

/* SMS　受信時の日時表示 */
.smsReceiveTime{
position: absolute;
top: 100%;
width: 100px;
left: 0px;
font-size: 80%;
}

/* sms 個別メール　入力エリア */

.smsInput_wrap{
display: block;
width: 100%;
background-color:#E8E8E8;
padding:8px;
text-align: center;
box-sizing: border-box;
border-top: 2px solid #D5D5D5;
border-bottom: 2px solid #D5D5D5;
}

.smsInput_wrap li{
text-align: center;
vertical-align: middle;
}

.smsInput_wrap .sms_textarea{
width: 100%;
box-sizing: border-box;
}
.smsInput_wrap .sms_submit{
width: 100%;
margin-top: 8px;
}

.smsInput_wrap textarea {
appearance: none;
-webkit-appearance: none;
/* textareaを初期化 */
margin: 0;
padding: 0;
box-shadow: none;
/* textareaを初期化 */
height:72px;
padding:5px 8px 0 8px;
border-radius: 5px;
-webkit-border-radius: 5px;
border: 2px solid #d9d9d9;
width: 100%;
box-sizing: border-box;
resize:none;
font-size: 100%;
line-height: 1.1;
}

.smsInput_wrap input.btn_sms{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #d9d9d9;
box-sizing: border-box;
text-align: center;
line-height:1;
overflow: hidden;
}

.smsInput_wrap input.btn_sms.submit_bt{
padding:5px 0;
border:2px solid #8bba17;
width: 48%;
}
.smsInput_wrap input.btn_sms.update_bt{
padding:5px 0;
width: 48%;
margin-right:8px;
}

/* SMS　当月分無料送信分残り*/
.free_Submit_remaining {
display: block;
margin:10px 0 0 10px;
letter-spacing: 0.04em;
font-size: 12px;
}
.free_Submit_remaining dt{
float:left;
}
.free_Submit_remaining dd{
margin-left:240px;
}

/* SMSやりとり終了ボタン */

.btnWhite_closeSMS{
margin:20px 0 0 0;
text-align:center;
}
.btnWhite_closeSMS a{
display:inline-block;
margin:0 auto;
width:78%;
padding:10px 0 10px 0;
border:2px solid #d9d9d9;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
text-align: center;
line-height:1;
}

/* SMS未送信アイコン　*/
.bubble-half-left .misousin_text{
position: absolute;
top:98%;
left: -30px;
color: #FF0004;
font-size: 92%;
}
.bubble-half-left p:before{
content: url(/img/clientsp/sms_misousin_icon.gif?t=1676013131810);
width: 15px;
height: 15px;
position: absolute;
left: 0px;
top: -25px;
color: #FF0004;
}
.bubble-half-right p{
position: absolute;
top:98%;
right: -30px;
color: #FF0004;
font-size: 92%;
}

.bubble-half-right p:after{
content: url(/img/clientsp/sms_misousin_icon.gif?t=1676013131810);
width: 15px;
height: 15px;
position: absolute;
right: 0;
top: -25px;
color: #FF0004;
}

/* sms modal_window*/

.clientTop__Modalbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#60000000,endColorstr=#60000000);
  background-color: rgba(0,0,0,0.60);
  z-index: 100000;
  -webkit-transform: translate3d(0, 0, 0);
}

.clientTop__Modalbg__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 278px;
  height: 96px;
  background: #FFFBFB;
  padding: 15px;
  border: 5px solid #72a90f;
  border-radius: 5px;
}

.clientTop__Modalbg__box .hitText {
  font-size: 96%;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #333333;
}

.clientTop__Modalbg__box .btnarea {
  text-align: center;
  margin-top: 20px;
}

.clientTop__Modalbg__box .non_text {
  font-size: 80%;
}

.clientTop__Modalbg__box .btnarea a:first-child {
  margin-right: 8px;
  padding: 0;
}

.clientTop__Modalbg__box .btnarea img {
  margin: 0;
  padding: 0;
}

.clientTop__Modalbg .clientTop__Modalbg__box input[type=checkbox], input[type=radio] {
    -webkit-transform: scale(1.2, 1.2);
    margin: 0 10px 0 0;
    vertical-align: text-bottom;
}

/* sms loading */
.sms_loading {
position:fixed;
left: 50%;
top: 50%;
border: none;
_position: absolute;
width: 38px;
height: 38px;
margin-left: -28px;
margin-top: -60px;
display:none;
}

/* 申込検索画面 セレクトボックス調整
-----------------------------------------------------*/
select.linePlus {
appearance: none;
-webkit-appearance: none;
border-radius: 10px;
-webkit-border-radius: 10px;
border: 2px solid #b2bfd1;
padding: 13px 34px 13px 2.5%;
margin: 0 2px 0 0;
vertical-align: bottom;
width: auto;
background: url(/img/clientsp/img_com_pulldown.png?t=1676013131810) right center no-repeat;
background-size: 32px 22px;
-webkit-background-size: 32px 22px;
}

/* 申込詳細画面 h1
-----------------------------------------------------*/
.boxDetail h1.bg_none{
background: none;
-webkit-background-size: 17px 15px;
padding: 0;
font-size: 16px;
font-weight: bold;
}

.boxList02 dd.consent{
margin:0;
}

.boxList02 dd.consent .userInfo.ver01 {
padding: 10px 10px 10px 10px;
margin: 0;
background: #fffae6;
border-bottom:1px solid #E6E6E6;
}
.boxList02 dd.consent .userInfo.ver02 {
padding: 10px 10px 10px 10px;
margin: 0;
background: none;
border-bottom:1px solid #E6E6E6;
}
.boxList02 dd.consent .userInfo.ver03 {
padding: 10px 10px 10px 10px;
margin: 0;
background: #cccccc;
border-bottom:1px solid #cccccc;
}
.boxList02 dd.consent + dt.mt10{
    margin-top: 0;
}
.boxList02 dd.consent + dt.mt10{
    margin-top: 0;
}
.boxList02 dd.consent .userInfo.ver01 li, .boxList02 dd.consent .userInfo.ver02 li, .boxList02 dd.consent .userInfo.ver03 li{
background: none;
margin: 5px 0 0 0;
padding:0;
font-weight:normal;
}

.boxList02 dd.consent .userInfo.ver01 li:first-of-type, .boxList02 dd.consent .userInfo.ver02 li:first-of-type, .boxList02 dd.consent .userInfo.ver03 li:first-of-type{
background: none;
margin: 5px 0 0 -10px;
padding:0;
font-weight: bold;
}
.boxList02 dd.consent .userInfo.ver01 li ul li:first-of-type, .boxList02 dd.consent .userInfo.ver02  li ul li:first-of-type, .boxList02 dd.consent .userInfo.ver03  li ul li:first-of-type{
background: none;
margin: 5px 0 0 0;
padding:0;
font-weight: normal;
}

.boxList02 dd.consent .userInfo.ver01 li:first-of-type .bango, .boxList02 dd.consent .userInfo.ver02 li:first-of-type .bango{
color:#72a90f;
font-weight: bold;
}
.boxList02 dd.consent .userInfo.ver03 li:first-of-type .bango{
color:#333333;
font-weight: bold;
}

/* fixed 同意ボタン */
.boxBtnDetaList{
    margin: 0 7.5px;
}

.boxBtnDetaList.fix{
height:65px;
}

.boxBtnDetaList.fix div{
z-index:9999;
bottom:0;
left:0;
background-color: rgba(51,51,51,0.8);
font-style:normal;
padding: 5px;
height:56px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transform: translate3d(0, 0, -1px);
}

.boxBtnDetaList.fix .btnDetaList{
margin-top: 0;
}

.btnDetaList{
display: table;
table-layout: fixed;
width: 95%;
margin: 10px auto;
}

.boxBtnDetaList .btnDetaList{
width: 100%;
}

.btnDetaList li{
display: table-cell;
vertical-align: top;
}

.btnDetaList .btnA a{
display: inline-block;
margin: 0 2.5px;
font-size: 15px;
padding: 0;
height: 46px;
line-height: 46px;
}

.btnDetaList .btnA a span.off{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #cdcdcd;
padding:8px 0 8px 0;
text-align: center;
line-height:1;
margin:0 5px 0 5px;
width:138px;
color: #cdcdcd;
}

.btnDetaList .btnA a span.on{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #8bba17;
padding:8px 0 8px 0;
text-align: center;
line-height:1;
margin:0 5px 0 5px;
width:138px;
color: #8bba17;
}

.btnDetaList .btnA a span.back{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #aeaeae;
padding:8px 0 8px 0;
text-align: center;
line-height:1;
margin:0 5px 0 5px;
width:138px;
color: #aeaeae;
}

.btnDetaList .btnA a span.selectAll{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
border:2px solid #8bba17;
padding:8px 0 8px 0;
text-align: center;
line-height:1;
margin:0 5px 0 5px;
width:138px;
color: #8bba17;
}

/* 同意確認 modal */
.agree__Modalbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#60000000,endColorstr=#60000000);
  background-color: rgba(0,0,0,0.60);
  z-index: 100000;
  -webkit-transform: translate3d(0, 0, 0);
}

.agree__Modalbg__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 238px;
  height: 80px;
  background: #FFFBFB;
  padding: 12px 15px;
  border: 4px solid #72a90f;
  border-radius: 5px;
}

.agree__Modalbg__box .hitText {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #333333;
    text-align: center;
}

.agree__Modalbg__box .btnarea {
  text-align: center;
  margin-top: 10px;
  line-height: 31px;
}

.agree__Modalbg__box .btnarea a:first-child {
  margin-right: 10px;
  padding: 0;
}

.agree__Modalbg a {
display: inline-block;
margin: 0 ;
font-size: 13px;
padding: 0;
height: 31px;
line-height: 31px;

}
.agree__Modalbg a span{
display:inline-block;
border-radius:5px;
-webkit-border-radius:5px;
background: -moz-linear-gradient(top, #ffffff, #ededed);
background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
padding:8px 0 8px 0;
text-align: center;
line-height:1;
width:110px;
}

.agree__Modalbg a span.on{
border:1px solid #8bba17;
color: #8bba17;
}
.agree__Modalbg a span.off{
border:1px solid #aeaeae;
color: #aeaeae;
}

/*  申込一覧用 アイコン位置修正 */
.userInfo.accept li{
background: url(/img/clientsp/img_com_maru.png?t=1676013131810) left top 2.5px no-repeat;
background-size: 15px 15px;
-webkit-background-size: 15px 15px;
margin:5px 0 0 0;
padding:0 0 0 20px;
}

.boxList.check dd{
position: relative;
background: #f9ffcf;
}
.boxList.check dd span.check_position{
display: block;
position: absolute;
top:50%;
left:14px;
margin-top: -10px;
}

.userInfo.check {
padding: 10px 10px 10px 10px;
margin: 10px 0 0 40px;
background: #fffae6 no-repeat;
}
.userInfo.check li{
background:none;
margin:5px 0 0 0;
padding:0 0 0 5px;
    display: table;
}
.userInfo.check li .boldText{
font-weight: bold;
}

/* online modal_window*/
.online__Modalbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#60000000,endColorstr=#60000000);
  background-color: rgba(0,0,0,0.60);
  z-index: 100000;
  -webkit-transform: translate3d(0, 0, 0);
}

.online__Modalbg__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 85%;
  height: 90%;
  background: #FFFBFB;
  padding: 10px;
  border: 5px solid #72a90f;
  border-radius: 5px;
  font-size:12px;
}

.onlineUrl__Modalbg__box{
margin: 35vh auto;
width: 85%;
background: #FFFBFB;
padding: 10px;
border: 5px solid #72a90f;
border-radius: 5px;
font-size: 12px;
}

.online__Modalbg__box .btnarea {
  text-align: center;
  margin-top: 20px;
}

.online_remaining {
display: block;
margin:10px 0 15px 10px;
}
.online_remaining p {
font-size: 11px;
font-weight: 500;
}

/* 38563_Web同意_利用規約追加 */
.consentCheck {
    margin: 15px 0 15px 0;
    padding: 15px 15px 15px 15px;
    background: #ffeded;
}
.consentCheck p input[type=checkbox], input[type=radio]{
    -webkit-transform: scale(1.1, 1.1);
    margin: 0 8px 0 0;
}
.consentCheck .consentCheck_text {
    font-size: 13px;
}
.consentCheck .consentCheck_text span {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2px;
}
.consentCheck .consentCheck_text span.inner {
    font-size: 13px;
    font-weight: normal;
    display: inline-block;
    margin: 8px 0 5px 0;
    color: #fe1f25;
}
.consentCheck .btnDetaList {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 15px auto 0 auto;
    height: 50px;
}
.consentCheck .btnDetaList li {
    display: table-cell;
    vertical-align: top;
}
.consentCheck .btnDetaList .btnA a {
    display: inline-block;
    margin: 0 ;
    font-size: 15px;
    padding: 0;
    height: 46px;
    line-height: 46px;
}
.consentCheck .btnDetaList .btnA a span.off {
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: -moz-linear-gradient(top, #ffffff, #ededed);
    background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
    border: 2px solid #cdcdcd;
    padding: 8px 0 8px 0;
    text-align: center;
    line-height: 30px;
    margin: 0 5px 0 0;
    width: 170px;
    color: #cdcdcd;
    box-sizing:border-box;
}
.consentCheck .btnDetaList .btnA a span.on {
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: -moz-linear-gradient(top, #ffffff, #ededed);
    background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
    border: 2px solid #ff0000;
    padding: 8px 0 8px 0;
    text-align: center;
    line-height: 30px;
    margin: 0 5px 0 0;
    width: 170px;
    color: #ff0000;
    box-sizing:border-box;
}
.consentCheck .btnDetaList .btnA a span.back {
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: -moz-linear-gradient(top, #ffffff, #ededed);
    background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ededed));
    border: 2px solid #aeaeae;
    padding: 8px 0 8px 0;
    text-align: center;
    line-height: 30px;
    margin: 0 0 0 5px;
    width: 170px;
    color: #aeaeae;
    box-sizing:border-box;
}

.separeteAccept {
    background: #ffffff;
    margin: 15px 0 15px 0;
}

@media screen and (max-width: 374px) {
    .consentCheck .btnDetaList .btnA a span.off {
    width: 140px;
    }
    .consentCheck .btnDetaList .btnA a span.on {
    width: 140px;
    }
    .consentCheck .btnDetaList .btnA a span.back {
        width: 140px;
    }
}

/* アカウントID送信不可のメッセージ表示ボックス */
.customerInquiryBox{
    border:1px solid #000000;
    text-align: center;
    margin:10px;

}

/*ステータスフィルタリングボタン*/
.status-filter{
display: flex;
justify-content: center;
position: relative;
border: 1px solid #85ae3c;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
box-sizing: border-box;
border-radius: 3px;
width: auto;
padding: 8px 10px 8px 20px;
text-align: center;
}

.status_filter__inner{
position: relative;
font-size: 13px;
color: #85ae3c;
font-weight: bold;
line-height: 1;
}

.status_filter__inner::before{
content: '';
display: block;
position: absolute;
top: calc(50% - 5px);
left: -15px;
width: 5px;
height: 5px;
border-top: 2px solid #85ae3c;
border-right: 2px solid #85ae3c;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
}

.status_layout{
display: flex;
gap: 0 10px;
padding: 10px 10px 0;
}
.status_layout li{
width: 30%;
}
.status_layout li:last-child{
 margin-right: 0;
}
.status_layout li a:hover{
text-decoration: none;
}

/*対応状況表示*/
.supported_status{
display: inline-block;
vertical-align: middle;
background-color:#7CAF45;
color:white;
padding: 4px;
margin: 5px;
font-size: 12px;
text-align: center;
}

/*応募者　リストメニュー*/

.listmenu{
display: flex;
justify-content: center;
margin: 10px 0 0 0;
padding: 0 10px;
}

.listmenu.wordCount{
margin: 0 0 0 0;
}
.listmenu.wordCount li .titBold{
display: inline-block;
margin: 2px 0 0 0;
font-size: 13px;
font-weight: normal;
color: #333333;
}
.listmenu.update{
    margin: 0 0 20px 0;
}

.listmenu.update .listmenu__btn{
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
border: 1px solid #aeaeae;
border-radius: 3px;
color: #818181 !important;
width: 31.5%;
margin: 0 auto;
min-height: 36px;
}
.listmenu li{
width:100%;
margin: 0 5px;
}
.listmenu li:first-child{
margin-left:0;
}
.listmenu li:last-child{
margin-right:0;
}

.listmenu__btn{
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 100%;
height: 100%;
min-height: 46px;
padding: 5px 5px;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
border: 1px solid #aeaeae;
border-radius: 3px;
box-sizing: border-box;
text-align:center;
color: #818181 !important;
font-size: 13px;
font-weight: bold;
text-decoration: none;
z-index: 1;
font-feature-settings: "palt" 1;
}
.listmenu__btn a{
color: #818181 !important;
}

/* オンラインURL ON */
.listmenu__btn.online{
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
border: 1px solid #0f69a8;
color: #0f69a8 !important;
}

/* 非活性ボタン */
.listmenu__btn.disabled{
background: #cccccc;
border: 2px solid #cccccc;
color: #ffffff!important;
pointer-events: none;
}

/* ボタン 表内　黄色にした三角付与 */
.listmenu__btn.triangle:before {
display: block;
content: "";
position: absolute;
top: 50%;
right: 15px;
width: 0;
height: 0;
margin-top: -4px;
border: 6px solid transparent;
border-left: 6px solid #333333;
transform:rotate(90deg);
}

/* ボタン 表内　メモ入力更新 */
a.buttonMemo__inner {
display: inline-block;
width: auto;
min-width: 80px;
margin: 0 0 0 8px;
line-height: 24px;
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
border: 1px solid #FF7300;
border-radius: 3px;
box-sizing: border-box;
text-align:center;
color: #FF7300 !important;
font-size: 12px;
font-weight: bold;
text-decoration:none;
font-feature-settings: "palt" 1;
}
a:hover.buttonMemo__inner {
    opacity: 0.8;
    filter: alpha(opacity=80);
    text-decoration:none;
}
body .monochrome{
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
    border: 1px solid #aeaeae;
    color: #818181 !important;
}

.boxList .passing {
    background-color: #E4007F;
    color: #FFF;
    padding: 5px;
    border-radius: 5px;
}

.boxList .failure {
    background-color: #B3BBC9;
    color: #FFF;
    padding: 5px;
    border-radius: 5px;
}

.btn-select {
 position: relative;
}

.label {
text-align:center;
position: absolute;
width: 100%;
z-index: 1;
}

.statusChange {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: block;
cursor: pointer;
width: 100%;
border: none;
padding: 20px;
opacity: 0;
position: relative;
z-index: 2;
}

.breakWord{
overflow-wrap: break-word;
}

.listmenu__btn.label{
background: url(/img/clientsp/img_com_pulldown.png?t=1676013131810), linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(244,244,244,1) 51%, rgba(244,244,244,1) 100%);
background-position:right center, 0% 0%;
background-repeat: no-repeat, no-repeat;
background-size:  30px 22px, 100% 100%;
} 
