@charset "utf-8";

/* 管理画面トップ
---------------------------------------------------------- */

.index {
    padding-top: 20px;
}

.indexMenu {
    float: left;
    width: 300px;
    
}


/* 件数 */

.indexMenu p {
    padding: 10px 0;
    margin-bottom: 10px;
    background: #FFF;
    border-radius: 10px;
    text-align: center;
    color: #615f5f;
    font-size: 18px;
    border: 2px solid #da6177;
}

.indexMenu p b {
    font-size: 22px;
    color: #da6177;
}



/* ページ上部のボタン */
.indexMenu li {
    min-width: 300px;
    margin-top: -3px;
    margin-bottom: 10px;
}

.indexMenu li .btn {
    border: 1px solid #CCC;
    box-shadow: 0px 3px #999;
    text-align: left;
}

.indexMenu li .btn:active {
    top: 2px;
    box-shadow: 0px 1px #615f5f;
}

.indexMenu li .btn:before {
    font-size: 24px;
    color: #da6177;
    vertical-align: baseline;
}


/* トップページ メイン */
.indexMain {    
    width: calc(100% - 320px);
    float: right;
    margin-bottom: 20px;
}


/* ページ上部 受付状態 */
.indexList {
    margin-bottom: 20px;
    border: 2px solid #CBCBCB;
    background: #FFF;
    border-radius: 10px;
}


.indexList h2 {
    margin: 20px 0 10px;
    padding: 10px;
    font-size: 18px;
    border-radius: 8px 8px 0 0;
    color: #da6177;
    border-bottom: 1px solid #CCC;
}
/*
.indexList h2:before {
    display: inline-block;
    width: 3px;
    height: 30px;
    margin-right: 3px;
    background: #da6177;
    content: '';
    vertical-align: middle;
}
*/
.indexList h2:first-child {
    margin-top: 0;
    margin-bottom: 5px;
}

.indexList ul {
    padding: 0 10px;
}

.indexList li {
    padding: 10px;
    border-top: 1px solid #DDD;
}

.indexList li:first-child {
    border-top: 0;
}
/*
.indexList li:nth-child(even) {
    background: #F5F5F5;
}
*/
.indexList li h3 ,
.indexList li p {
    display: inline-block;
    font-size: 18px;
}

.indexList li h3 {
    position: relative;
    padding: 0 20px 0 15px;
    margin-right: 10px;
    /*font-weight: normal;*/
    width: 20em;
    font-size: 16px;
}

.indexList li h3 a {
    color: #615f5f;
    text-decoration: none;
}

.indexList li h3:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    margin-right: 3px;
    border-radius: 100%;
    background: #da6177;
    content: '';
}

.indexList li h3:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: auto;
    color: #da6177;
    margin-right: 4px;
    font-family: 'FontAwesome';
    content: '\f04e';
}


.indexList li h3 + p {
    margin-right: 10px;
    text-align: right;
    width: 4em;
}

.indexList li p + p {
    color: #FFF;
    background: #da6177;
    font-size: 12px;
    padding: 2px 10px;
}

.indexList li p + p b {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    padding-left: 10px;
}




/* ページ上部 申請情報 */
.indexApplication {
    padding: 20px;
    border: 2px solid #CBCBCB;
    background: #FFF;
    border-radius: 10px;
}

.indexApplication p {
    font-size: 20px;
}

.indexApplication p b {
    color: #da6177;
}





/* トップページのマスター登録 */
.indexMaster {
    clear: both;
    border-top: 2px solid #CBCBCB;
    padding-top: 20px;
}

.indexMaster h2 {
    color: #da6177;
    font-size: 18px;
}

.indexMaster ul {
    width: auto;
}

.indexMaster ul:after {
    content: "";
    clear: both;
    display: block;
}

.indexMaster li {
    float: left;
    width: calc((100% - 80px) / 5);
    margin-left: 20px;
}

.indexMaster li:first-child {
    margin-left: 0;
}

.indexMaster li a {
    font-size: 14px;
}

/* 事業所選択指示 */

#firstChoiceInstruction{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,.75);
    -webkit-animation: trans .6s 1;
    animation: trans .6s 1;
}
#firstChoiceInstruction p{
    position: absolute;
    color: #fff;
    right: 280px;
    background: #00A89C;
    border-radius:0 0 5px 5px;
    font-size: 16px;
    padding:15px 40px;
    top: 82px;
}

#firstChoiceInstruction i{
    display: block;
    margin-bottom: 10px;
}

#firstChoiceInstruction i span{
    display: block;
    margin: 0 auto 5px;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
}

@-webkit-keyframes trans {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes trans {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#firstChoiceInstruction i span:not(:first-child){
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius:50%;
}

#firstChoiceInstruction i span:first-child{
    width: 0;   
    height: 0;  
    border: 8px solid transparent;
    border-top: 0;
    border-bottom:10px solid #fff;
}

#firstChoiceInstruction i span:nth-child(1){
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

#firstChoiceInstruction i span:nth-child(2){
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

#firstChoiceInstruction i span:nth-child(3){
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}