@charset "UTF-8";

/*==================================================

1.base

====================================================*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height:1;
  background-color: #F3F3F5;
  color: #1B1D37;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .07em;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

ul,ol{
	list-style-type: none;
}

a{
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  text-decoration: none;
	cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	}

a img{
	border: none;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

input, select {
  vertical-align:middle;
}

input[type="date"]{
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .04em;
}

input,textarea{
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*placeholder*/
::-webkit-input-placeholder {
  color: #A3A4AE;
}
::-moz-placeholder {
  color: #A3A4AE;
}
:-ms-input-placeholder {
  color: #A3A4AE;
}
::-ms-input-placeholder {
  color: #A3A4AE;
}
::placeholder {
  color: #A3A4AE;
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  letter-spacing: .07em;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

button:focus{
	outline:none;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

@media (min-width: 600px) {
::-webkit-scrollbar-track {
  background: rgba(4, 2, 30, 0.1);
}
}
::-webkit-scrollbar-thumb {
  background: rgba(4, 2, 30,0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(4, 2, 30,0.3);
}
/*==================================================

2.layout

====================================================*/

.ly_header {
  height: 56px;
  background-color:#fff;
  margin-bottom: 16px;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  padding: 0 12px 0 24px;
  box-shadow: 0 0 5px 0 rgba(24,54,85,.16);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.ly_cont {
  width: 1200px;
  min-height: calc(100vh - 170px);
  margin: 100px auto 0;
  padding: 0 5px;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.ly_footer {
  font-size: 10px;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  letter-spacing: .03em;
}

/*==================================================

3.element

====================================================*/

.el_box_bg{
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px 0 rgba(12,51,92,.04);
}

/*-- text style --*/
.el_ttl01{
  font-size: 22px;
  line-height: 1.3;
}

.el_ttl02{
  font-size: 18px;
  line-height: 1.3;
}

.el_ttl03{
  font-size: 16px;
  line-height: 1.3;
}

.el_ttl04{
  font-size: 14px;
  line-height: 1.3;
}

.el_bodyText{
  font-size: 14px;
  line-height: 1.7;
}

/*-- button style --*/
.el_btn{
  display: inline-flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #1B1D37;
  transition: background-color .3s;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
}

.el_btn:hover{
  text-decoration: none;
}

.el_btn_primary{
  color: #fff;
  background-color:#0DA889;
}

.el_btn_primary:hover{
  background-color:#50BCA6;
  color: #fff;
}

.el_btn_primary:focus{
  background-color:#50BCA6;
}


.el_btn_primary.disabled{
  background:#DFDFE5;
  color: #A3A4AE;
  pointer-events: none;
}

.el_btn_primary.disabled:hover,
.el_btn_primary.disabled:focus{
  background:#DFDFE5;
}

.el_btn_secondary{
  border-color:#0DA889;
  background-color: #fff;
  color: #0DA889;
}

.el_btn_secondary:hover{
  background-color: #E9F5F2;
}

.el_btn_secondary:focus{
  background-color: #E9F5F2;
}

.el_btn_secondary.disabled{
  border-color: #D1D1D1;
  color: #D1D1D1;
  pointer-events: none;
}

.el_btn_secondary.disabled:hover,
.el_btn_secondary.disabled:focus{
  background: #fff
}


.el_textbtn{
  color: #E04F39;
  padding: 8px;
}

.el_textbtn:hover{
  background-color: #FFF2F0;
}

.el_textLink{
  color: #42A894;
  display: inline-block;
  padding: 8px;
  border-radius: 4px;
  transition: background-color .3s;
}

.el_textLink:hover{
  background-color: #E5EFED;
}

.el_textLink:focus{
  background-color: #E5EFED;
  text-decoration: none;
}

.el_textLink_icon{
  vertical-align: bottom;
  margin-right: 4px;
}

.el_btn_lg{
  padding: 12px 16px;
  font-size: 14px;
  font-weight: bold;
}

.el_btn_sm{
  padding: 8px;
  font-size: 14px;
}

.el_btnIcon{
  margin-right: 4px;
}

/*-- form style --*/
.el_formGroup{
  margin-bottom: 16px;
}

.el_formLabel{
  font-size: 14px;
  font-weight: bold;
  margin: 0 8px 8px 0;
  display: inline-block;
}

.el_textbox,
.el_textarea{
  padding: 11px 12px;
  margin-bottom: 8px;
  border: 1px solid #CACAD8;
  font-size: 14px;
  letter-spacing: .07em;
  background-color: #fff;
  border-radius: 4px;
  color: #1B1D37;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
}

.el_textbox:focus,
.el_textarea:focus{
  border: 1px solid #8FCABE;
}

.el_textbox_error,
.el_textarea_error{
  border: 1px solid #F78D55;
  background-color:#fff6ee;
}

.el_textbox_error:focus,
.el_textarea_error:focus{
  border: 1px solid #F78D55;
}

.el_label{
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 4px;
  border-radius: 2px;
  letter-spacing: .1em;
}

.el_label_must{
  background-color: #F78D55;
}

.el_label_optional{
  background-color: #9DA6BF;
}

.el_label_productivity{
  background-color: #8F98B2;
  font-size: 10px;
}

.el_label_activity{
  background-color: #EA8D81;
  font-size: 10px;
}

.el_label_transform{
  background-color: #8FCABE;
  font-size: 10px;
}

.el_label_valid{
  background-color: #cdebe5;
  color: #16AC8D;
}
.el_label_deleteRequest{
  background-color: #FFECC1;
  color: #F47430;
}
.el_label_invalid{
  background-color: #e1e6e9;
  color: #606469;
}


/*-- radio style --*/
.el_radioGroup{
  margin-bottom: 24px;
}

.el_radioInput {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.el_radioLabel{
  position:relative;
  cursor: pointer;
}

.el_radioInput:focus + .el_radioLabel:before {
  border-color: #8FCABE;
}

.el_radioLabel:before {
	content: "";
  display: inline-block;
  position: relative;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #CACAD8;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
  transition: all .3s;
}

.el_radioInput:checked + .el_radioLabel:before {
  background-color: #0DA889;
  box-shadow: inset 0 0 0 4px #fff;
  border-color: #0DA889;
}

/*-- checkbox style --*/
.el_checkGroup{
  margin-bottom: 24px;
}

.el_checkInput--sm, .el_checkInput--md {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.el_checkLabel--sm, .el_checkLabel--md {
  position: relative;
  cursor: pointer;
  display: flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
}

.el_checkInput--sm:focus + .el_checkLabel--sm:before,
.el_checkInput--md:focus + .el_checkLabel--md:before {
  border-color: #E57061;
}

.el_checkLabel--sm:before {
  content: '';
  display: inline-block;
  border: 1px solid #CACAD8;
  background: #fff;
  border-radius: 3px;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  position: relative;
  top: 0;
  left: 0;
}

.el_checkLabel--md:before {
  content: '';
  display: inline-block;
  border: 1px solid #CACAD8;
  background: #fff;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  top: 0;
  left: 0;
}

.el_checkLabel--sm::after {
  content: '';
  display: inline-block;
  border-right: 3px solid #E57061;
  border-bottom: 3px solid #E57061;
  width: 5px;
  height: 9px;
  position: absolute;
  top: 1px;
  left: 3px;
  transform: rotate(45deg) scale(0,0);
  opacity: 0;
  transition: all .2s;
}

.el_checkLabel--md::after {
  content: '';
  display: inline-block;
  border-right: 3px solid #E57061;
  border-bottom: 3px solid #E57061;
  width: 5px;
  height: 9px;
  position: absolute;
  top: 3px;
  left: 7px;
  transform: rotate(45deg) scale(0,0);
  opacity: 0;
  transition: all .2s;
}

.el_checkInput--sm:checked + .el_checkLabel--sm::before,
.el_checkInput--md:checked + .el_checkLabel--md::before {
  border-color: #E57061;
}

.el_checkInput--sm:checked + .el_checkLabel--sm::after {
  opacity: 1;
  transform: rotate(45deg) scale(0.7,0.7);
}

.el_checkInput--md:checked + .el_checkLabel--md::after {
  opacity: 1;
  transform: rotate(45deg) scale(1,1);
}

/*-- selectbox style --*/
.el_select {
  overflow: hidden;
  position: relative;
}

.el_select::before {
  content: '';
	position: absolute;
	top: 16px;
	right: 8px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid #A3A4AE;
	pointer-events: none;
}

.el_select select {
  padding: 0 30px 0 12px;
	color: #1B1D37;
  width: 100%;
  height: 40px;
  font-size: 14px;
	cursor: pointer;
	text-overflow: ellipsis;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #CACAD8;
	border-radius: 4px;
	background: #fff
}

.el_select select:focus {
  border-color: #8FCABE;
}

.el_select select::-ms-expand {
    display: none;
}

.el_select_error select {
  border-color: #F78D55;
  background:#fff6ee;
}

.el_select_error::before{
  border-top-color: #F78D55;
}

/*-- HelperText style --*/
.el_formHelperText{
  font-size: 12px;
  line-height: 1.4;
  color: #55566B;
  margin-bottom: 8px;
}

/*-- error style --*/
.el_errorText{
  color: #F78D55;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
}

.el_errorMessage{
  background-color: #FFF0E3;
  color: #F78D55;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 12px 12px 32px;
  border-radius: 4px;
  line-height: 1.4;
  position: relative;
}

.el_errorText::before,
.el_errorMessage::before{
  content: '';
  background-image: url('../images/icon_error.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.el_errorText::before{
  width: 14px;
  height: 14px;
  top: 1px;
  left: 0;
}

.el_errorMessage::before{
  width: 16px;
  height: 16px;
  top: 13px;
  left: 12px;
}

/*-- snackbar style --*/
.el_snackbar {
  display: none;
  font-size: 14px;
  width: auto;
  bottom: calc(100vh - 80px);
  height: 48px;
  padding: 16px;
  background: rgba(2,13,23,.82);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
  position: fixed;
  left: 50%;
  transform: translate(-50%,0);
  animation: popup 5s forwards;
  z-index: 3;
}


.el_snackbar a{
  color: #64d1bb;
  margin-left: 40px;
  float: right;
}

@keyframes popup{
  0% {
    transform: translate(-50%,-10px);
    opacity: 0;
    animation-timing-function: ease-out;
  }
  10%, 90% {
    transform: translate(-50%,0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%,-10px);
    opacity: 0;
  }
}

/*-- pagination style --*/
.el_pagination{
  margin: 0 auto;
}

.el_pagination ul{
  display: flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
}

.el_pagination li + li{
  margin-left: 8px;
}

.el_pagination li a{
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .03em;
  display: inline-block;
  padding: 8px 11px;
  color: #1B1D37;
  background-color: #fff;
  border: 1px solid #E8E8EB;
  border-radius: 4px;
}

.el_pagination li a:hover{
  text-decoration: none;
  background: #F4F5F8;
}

.el_pagination li a.is_active{
  background: #0DA889;
  color: #fff;
  border: none;
}

.el_pagination li a img{
  margin-bottom: -1px;
}

.el_ttl_backIcon{
  position: absolute;
  left: 16px;
}

.el_help{
  position: relative;
  cursor: pointer;
}

.el_help_icon{
  display: flex;
  width: 30px;
  height: 30px;
  padding: 5px;
  transition: opacity .3s;
}

.el_help_icon:hover{
  opacity: .8;
}

.el_help_tooltip{
  display: none;
  color: #1B1D37;
  width: 380px;
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 4px 10px 1px rgb(12 51 92 / 20%);
  z-index: 1;
  transition: all .3s;
  position: absolute;
  bottom: 44px;
  transform: translateX(-47%);
}

.el_help_tooltip:after{
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #fff;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}


.down {
  bottom: -210px;
}

.el_help_tooltip.down:after {
  border-top:none;
  border-bottom: 12px solid #fff;
  bottom: 198px;
}

.el_help_tooltip > p{
  line-height: 1.6;
  margin-bottom: 20px;
}


/*==================================================

4.block

====================================================*/

.bl_header_logo{
  width: 85px;
}

.bl_header_nav{
  margin-left: 20px;
}

.bl_header_nav ul{
  display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bl_header_nav ul li a{
  color: #4B535F;
  position: relative;
  display: block;
  padding: 20px 14px;
  transition: background .3s;
}

.bl_header_nav ul li a:hover{
  background: #eff0f5;
}

.bl_header_nav ul li a.is_active:after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #8FCABE;
}

.bl_header_nav_user{
  margin-left: auto;
}

.bl_header_nav_user a{
  display: flex ;
  padding: 20px 30px 20px 14px;
  flex-wrap: nowrap;
  color:#4B535F ;
  position: relative;
  transition: background .3s;
}

.bl_header_nav_user:after{
  content: '';
  border-top: 6px solid #8D99A8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: 24px;
  right: 24px;
}

.bl_header_nav_user a:hover{
  background: #eff0f5;
}

.bl_header_userName{
  margin-left: 8px;
}

.bl_header_userName span{
  font-size: 10px;
}

.bl_header_nav_dropdown{
  display: none;
  width: 212px;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px 0 rgba(12,51,92,.1);
  position: absolute;
  top: 50px;
  right: 16px;
  z-index: 1;
}

.bl_header_nav_dropdown li a {
  display: inline-block;
  width: 100%;
  padding: 9px 16px;
  font-size: 14px;
  box-sizing: border-box;
  color: #1B1D37;
  transition: background .3s ;
}

.bl_header_nav_dropdown li a:hover {
  text-decoration: none;
  background-color: #EDEEF5;
}

.bl_header_nav_dropdown li a img {
  width: 20px;
  margin-right: 8px;
  vertical-align: -4px;
}

/* dialog style */
.bl_mask{
  display: none;
  background-color: rgba(0, 0,0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.bl_dialog{
  display: none;
  background :#fff;
  position: fixed;
  z-index: 101;
  width: 640px;
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: 0 auto;
}

.bl_dialog_header{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  padding: 10px 12px 10px 24px;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.bl_dialog_header_title{
  font-size: 18px;
  font-weight: bold;
  order: 1;
}

.bl_dialog_header_close{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  top: 2px;
  left: 5px;
  transition: background .3s;
  order: 2;
}

.bl_dialog_header_close:hover{
  background-color: #EDEEF5;
}

.bl_dialog_body{
  padding: 20px 24px;
  overflow: auto;
  height: auto;
  max-height: 75vh;
  min-height: 100px;
  font-size: 14px;
  border-top: 1px solid #E8E8EB;
}

.bl_dialog_footer{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
  padding: 16px;
  height: auto;
}

/* About User */
.bl_aboutUser{
  font-size: 12px;
  color: #42A894;
  cursor: pointer;
  margin: 10px 0 0 auto;
  position: relative;
}

.bl_aboutUser::before{
  content: '';
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_help.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: -15px;
}

.bl_aboutUser:hover{
  text-decoration: underline;
}

.bl_aboutUser_description figure{
  padding: 16px;
  background: #f8fbff;
  border-radius: 4px;
}

.bl_aboutUser_description img{
  width: 100%;
}

.bl_aboutUser_description .el_ttl04{
  margin-bottom: 4px;
}

.bl_aboutUser_description p{
  line-height: 1.6;
  margin-bottom: 24px;
}

.bl_aboutUser_description p:last-child{
  margin-bottom: 0;
}



/*==================================================

5.helper

====================================================*/
.hp_hidden{
  display: none;
}

.hp_fw_b{
  font-weight: bold;
}

.hp_t_left{
  text-align: left;
}

.hp_t_center{
  text-align: center;
}

.hp_t_right{
  text-align: right;
}

.hp_d_flex{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.hp_flex_justifyContent_center{
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.hp_d_block{
  display: block;
}

.hp_d_none{
  display: none;
}

.hp_border_top{
  border-top: 1px solid #E8E8EB;
}

.hp_mAuto{
  margin: 0 auto;
}

.hp_mb_0{
  margin-bottom: 0;
}

.hp_mb_8{
  margin-bottom: 8px;
}

.hp_mb_12{
  margin-bottom: 12px;
}

.hp_mb_16{
  margin-bottom: 16px;
}

.hp_mb_20{
  margin-bottom: 20px;
}
