@charset "UTF-8";

/* checkbox 
---------------------------------------------------------- */
.p-checkbox {
  position: relative;
  line-height: 20px;
  min-height: 20px;
  display: inline-block;
}
.p-checkbox input[type="checkbox"] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.p-checkbox .ico {
    display: inline-block;
    padding-left: 28px;
    /* height: 20px; */
    background-size: cover;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.p-checkbox .ico::before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    z-index: 3;
    border: 1px solid #c9cedd;
    background: #f0f3f8;
    border-radius: 3px;
}
.p-checkbox.-parent .ico::before,
.p-checkbox.-border .ico::before{
    border: 2px solid #a8b1c2;
    background: #fff;
}
/* 選択 */
.p-checkbox input[type="checkbox"]:checked + .ico::before {
    border-color: #3f80d4;
    background: url("../img/ico_check_common.svg") 50% 50% no-repeat;
    background-size: cover;
}
.p-checkbox.-parent input[type="checkbox"]:checked + .ico::before {
    border-color: #0b438b;
    background: url("../img/ico_check_parent.svg") 50% 50% no-repeat;
    background-size: cover;
}

/* 条件設定時の表示 */
.c-option_item .p-checkbox .ico {
    padding-left: 28px;
}
.c-option_item .p-checkbox .ico::before {
    border: 1px solid #a8b1c2;
    background: #fff;
}
.p-checkbox input[type="checkbox"]:not(:disabled):hover + .ico{
    color: #3f80d4;
}

/* フォーカス
.p-checkbox input[type="checkbox"]:not(:disabled) + .-ico::after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
}
.p-checkbox input[type="checkbox"]:not(:disabled):hover + .-ico::after,
.p-checkbox input[type="checkbox"]:not(:disabled):focus + .-ico::after {
    transform: translate(-50%, -50%) scale(1);
}
.p-checkbox input[type="checkbox"]:not(:disabled):focus + .-ico::after {
    background: rgba(0,0,0,.1);
}
.p-checkbox input[type="checkbox"]:not(:disabled):active + .-ico::after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c8e0ff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    opacity:1;
    animation:.2s circleefect forwards;
}

/* 非活性
.p-checkbox input[type="checkbox"]:disabled + span {
  color : #555
}
.p-checkbox input[type="checkbox"]:disabled + span:before {
  border-color: rgba(30,30,30,.1);
}
.p-checkbox input[type="checkbox"]:disabled + span:after {
 border-color: rgba(30,30,30,.1);
 background:rgba(225,225,225,.5);
}*/


/* button - clear
----------------------------------------------- */
.p-radio {
    position: relative;
    height: 20px;
    line-height: 20px;
    margin-right: 15px;
    display: inline-block;
    z-index: 1;
	cursor: pointer;
}
.p-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
}
.p-radio::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eff6ff;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    left: 7.5px;
    z-index: -1;
    transition: .2s all ease;
}
.p-radio span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 28px;
}
.p-radio span:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #a8b1c2;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
/* .p-radio input[type="radio"]:not(:disabled):not(.error):focus + span {
    color: #3f80d4;
} */
.p-radio input[type="radio"]:not(.error):checked + span {
    color: #3f80d4;
}
.p-radio input[type="radio"]:checked + span:before {
    border-color: #3f80d4;
}
.p-radio input[type="radio"]:checked + span:after {    
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #3f80d4;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    box-sizing: border-box;
    transform: scale(.6);
}


/* button - clear
----------------------------------------------- */
.p-switch_radio {
    display: inline-flex;
}
.c-switch_item {
    position: relative;
    height: 36px;
    line-height: 36px;
    z-index: 1;
    cursor: pointer;
}
.c-switch_item input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
}
.c-switch_item span {
    display: block;
    white-space: nowrap;
    height: 36px;
    border: 1px solid #c2c6ce;
    min-width: 55px;
    text-align: center;
}
.c-switch_item:first-of-type span {
    border-radius: 3px 0 0 3px;
}
.c-switch_item:last-of-type span {
    border-radius: 0 3px 3px 0;
}
.c-switch_item span {
    display: block;
    white-space: nowrap;
    height: 36px;
    border: 1px solid #c2c6ce;
}
.c-switch_item input[type="radio"]:not(:disabled):not(.error):focus + span {
    opacity: .9;
}
.c-switch_item input[type="radio"]:not(.error):checked + span {
    color: #fff;
    background: #3f80d4;
    border-color: #3f80d4;
}


/* select  ------------------------------------------------------------- */
.p-select {
    display: inline-block;
    position: relative;
}
.p-select:after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-right: 2px solid #636376;
    border-bottom: 2px solid #636376;
    position: absolute;
    z-index: 1;
    right: 7px;
    top: 15px;
    transform: rotate(45deg);
}
.p-select select {
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #a8b1c2;
    border-radius: 3px;
    display: inline-block;
    line-height: 36px;
    height: 36px;
    padding: 0 20px 0 8px;
    box-sizing: border-box;
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    position: relative;
    outline: none;
}

/* フォーカス */
.p-select select:not(:disabled):focus {
    background-color: #fff;
    border-color: #256fd5;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}
/* 非活性 */
.p-select select:disabled {
    border-color: rgba(30, 30, 30, .1);
    background: rgba(225, 225, 225, .5);
    color: #555;
    outline: none;
}


/* button - clear
----------------------------------------------- */
.btn-clear {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #518bd7;
    position: relative;
    z-index: 1;
}
.btn-clear::after {
    content:'';
    position: absolute;
    left: -10px;
    top: -4px;
    padding: 5px 10px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    transition: .2s all ease;
}
.btn-clear:hover::after {
    background: #f1f4fd;
}
.btn-clear .ico::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 14px;
    background: url("../img/ico_clear.svg") 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-right: 8px;
}
.btn-clear.-white {
    color: #fff;
}
.btn-clear.-white .ico::before {
    background: url("../img/ico_clear_w.svg") 50% 50% no-repeat;
    background-size: cover;
}

/* text --------------------------------------------- */
input[type="text"].p-input_text,
input[type="password"].p-input_text,
input[type="number"].p-input_text,
input[type="date"].p-input_text,
input[type="time"].p-input_text {
    background: #fff;
    padding: 12px 15px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #ced6e8;
    font-size: 1.5rem;
}
input[type="date"].p-input_text,
input[type="time"].p-input_text {
    padding: 8px 15px;
}

input[type="text"].p-input_text:read-only,
input[type="password"].p-input_text:read-only,
input[type="number"].p-input_text:read-only,
input[type="date"].p-input_text:read-only,
input[type="time"].p-input_text:read-only {
    background: rgba(225, 225, 225, .5);
    color: #555;
    /* border-radius: 50px; */
}/*
input[type="text"].p-input_text:not(:read-only):focus,
input[type="password"].p-input_text:not(:read-only):focus,
input[type="number"].p-input_text:not(:read-only):focus,
input[type="date"].p-input_text:not(:read-only):focus,
input[type="time"].p-input_text:not(:read-only):focus {
    background: #fff;
    border-color: #256fd5;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}  */


/* button conversion
-------------------------------------------------------- */
.btn-cv {
    font-size: 1.6rem;
    text-align: center;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 1px rgba(0,0,0,.2);
    width: 100%;
    border: 1px solid transparent;
}
.btn-cv.-search {
    background: #f5ac19;
    color: #fff;
    border: 1px solid #f5ac19;
}
.btn-cv.-favorite,
.btn-cv.-download {
    background: #fff;
    color: #2e3b4c;
    border: 1px solid #ced6e8;
}
.btn-cv.-download {
    border: 1px solid #2e3b4c;
}
.btn-cv.-favorite .ico,
.btn-cv.-download .ico {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cv.-favorite .ico::before {
    content: '';
    background: url("../img/ico_star.svg") 50% 50% no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.btn-cv.-download .ico::after {
    content: '';
    background: url("../img/ico_download_b.svg") 50% 50% no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.btn-cv.-request {
    background: #dc4748;
    color: #fff;
    border: 1px solid #dc4748;
}


@media only screen and (min-width: 901px) {
    .btn-cv {
        border: none;
        font-size: 1.6rem;
        text-align: center;
        padding: 15px 10px;
        border-radius: 3px;
        cursor: pointer;
        white-space: nowrap;
        min-width: 200px;
        box-shadow: 0 2px 1px rgba(0,0,0,.2);
        width: 100%;
    }    
}
    .btn-function {
    background: #3f80d4;
    padding: 12px 15px;
    border: 1px solid #3f80d4;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.p-textarea {
    background: #fff;
    padding: 12px 15px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #ced6e8;
    font-size: 1.5rem;
    width: 100%;
    height: 20rem;
    resize: vertical;
    line-height: 1.5;
}
div.p-textarea {
    height: auto;
}
.p-textarea:not(:read-only):focus {
    background: #fff;
    border-color: #256fd5;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}
.l-form.-disabled {
	pointer-events: none;
	filter: grayscale(1);
	opacity: .4;
	transition: .3s filter, .3s opacity;
}
.c-input_item[data-filter="withdrawal"],
.c-input_item[data-filter="decision"] {
	display: none;
}
.l-form.-withdrawal .c-input_item[data-filter="withdrawal"],
.l-form.-decision .c-input_item[data-filter="decision"] {
	display: flex;
}
*+.p-list_reason {
	margin: 1.5em 0 0!important;
}
.p-list_reason *+li {
	margin-top: 1.2em;
}
@media only screen and (max-width: 700px) {
    .p-list_reason {
        font-size: 1.5rem;
    }    
}
.c-blk-textarea {
	padding-top: 0;
	scale: 1 0;
	transition: .1s scale, .1s padding;
	max-height: 0;
	transform-origin: left top;
}
.p-checkbox.is-active + .c-blk-textarea,
.-confirm  .c-blk-textarea {
	padding-top: 1.2em;
	scale: 1 1;
	max-height: none;
}