@charset "UTF-8";

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

1.base

====================================================*/
:root {
  --protea-red: #E04F39;
  --protea-green: #8FCABE;
  --protea-orange: #F78D55;
  --protea-black: #1B1D37;
  --protea-white: #fff;
  --protea-borderColorLight: #E8E8EB;
  --protea-borderColorDark: #CACAD8;
  --protea-bgColor: #F3F3F5;
}

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;
  color: var(--protea-black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--protea-bgColor);
  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{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
}

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

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

@media (max-width: 320px) {
  .ly_header {
    padding: 0 10px 0 10px !important;
  }
}

.ly_header {
  height: 56px;
  background-color:var(--protea-white);
  padding: 0 8px 0 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--protea-borderColorLight);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

@media (min-width: 600px) {
  .ly_header {
    padding: 0 20px;
    box-shadow: 0 0 5px 0 rgba(24,54,85,.16);
    border-bottom: none;
  }
}

.ly_header_inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (min-width: 600px) {
  .ly_header_inner {
    width: 1200px;
    margin: auto;
  }
}


.ly_cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}

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


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

3.element

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

.el_box_bg{
  background-color: var(--protea-white);
  border-top: 1px solid var(--protea-borderColorLight);
  border-bottom: 1px solid var(--protea-borderColorLight);
}

@media (min-width: 600px) {
  .el_box_bg{
    border-radius: 6px;
    border-top: none;
    border-bottom: none;
    box-shadow: 0 4px 10px 0 rgba(12,51,92,.04);
  }
}

/*-- text style --*/

.el_ttl01{
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--protea-borderColorLight);
  margin: 0 -16px;
  position: relative;
}

@media (min-width: 600px) {
  .el_ttl01{
    font-size: 22px;
    padding: initial;
  }
}

.el_ttl02{
  font-size: 16px;
}

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

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

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

.el_btn_primary{
  color: var(--protea-white);
  background-color:var(--protea-red);
}

.el_btn_primary:hover{
  background-color:#e9705d;
  color: var(--protea-white);
}

.el_btn_primary:focus{
  background-color:#c54c39;
}


.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:#F56E5A;
  background-color: var(--protea-white);
  color: var(--protea-red);
}

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

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

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

.el_btn_secondary.disabled:hover,
.el_btn_secondary.disabled:focus{
  background: var(--protea-white);
}

.el_textbtn{
  color: var(--protea-red);
  font-size: 14px;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  transition: background-color .3s;
}

.el_textbtn:hover{
  background-color: #ffeeeb;
  border-radius: 4px;
}

.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: 14px 16px;
  font-size: 16px;
  font-weight: bold;
}

@media (min-width: 600px) {
  .el_btn_lg{
    padding: 12px 16px;
    font-size: 14px;
  }
}

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

.el_btnIcon{
  margin-right: 4px;
}

.el_glossary{
  font-size: 12px;
  position: relative;
  color: #42A894;
  padding-left: 15px;
}

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

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

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

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

.el_textbox:focus,
.el_textarea:focus{
  border: 1px solid #7a7a94;
}

.el_textbox_error,
.el_textarea_error{
  border: 1px solid var(--protea-orange);
  background-color:#fff6ee;
}

.el_textbox_error:focus,
.el_textarea_error:focus{
  border: 1px solid var(--protea-orange);
}

.el_label{
  display: inline-block;
  color: var(--protea-white);
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 3px 4px;
  border-radius: 2px;
  letter-spacing: .1em;
}

.el_label_must{
  background-color: var(--protea-orange);
}

.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;
}


/*-- radio style --*/
.el_radioInput {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.el_radioLabel{
  position:relative;
  margin-right: 24px;
  cursor: pointer;
}

.el_radioInput:focus + .el_radioLabel:before {
  border-color: var(--protea-red);
}

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

.el_radioInput:checked + .el_radioLabel:before {
  background-color: var(--protea-red);
  box-shadow: inset 0 0 0 4px #fff;
  border-color: var(--protea-red);
}

/*-- checkbox style --*/
.el_checkInput {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.el_checkLabel{
  position: relative;
  margin-right: 24px;
  cursor: pointer;
}

.el_checkInput:focus + .el_checkLabel:before {
  border-color: var(--protea-red);
}

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

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

.el_checkInput:checked + .el_checkLabel::before {
  border-color: var(--protea-red);
}

.el_checkInput:checked + .el_checkLabel::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 26px 0 12px;
	color: var(--protea-black);
  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 var(--protea-borderColorDark);
	border-radius: 4px;
	background: var(--protea-white);
}

.el_select select:focus {
  border-color: #7a7a94;
}

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

.el_select_error select,
.el_select_error select:focus {
  border-color: var(--protea-orange);
  background:#fff6ee;
}

.el_select_error::before{
  border-top-color: var(--protea-orange);
}

/*-- HelperText style --*/
.el_formHelperText{
  font-size: 12px;
  color: #55566B;
  margin: 8px 0 20px;
}

/*-- error style --*/
.el_errorText{
  color: var(--protea-orange);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 18px;
  margin: 8px 0 20px;
  position: relative;
}

.el_errorMessage{
  background-color: #FFF0E3;
  color: var(--protea-orange);
  font-size: 14px;
  font-weight: bold;
  padding: 12px 12px 12px 32px;
  border-radius: 4px;
  line-height: 1.4;
  position: relative;
  margin-bottom: 16px;
}

.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: calc(100% - 32px);
  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%;
  bottom: 100px;
  transform: translate(-50%,0);
  animation: popup 3s forwards;
  z-index: 3;
}

@media (min-width: 600px) {
  .el_snackbar {
    width: auto;
    bottom: calc(100vh - 80px);
    animation: popup_pc 3s forwards;
  }
}

.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;
  }
}

@keyframes popup_pc {
  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;
  }
}

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

.el_pagination ul{
  display: flex;
  justify-content: 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: var(--protea-black);
  background-color: var(--protea-white);
  border: 1px solid var(--protea-borderColorLight);
  border-radius: 4px;
}

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

.el_pagination li a.is_active{
  background: #5AC6B9;
  color: var(--protea-white);
  border: none;
}

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

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

.el_badge{
  background: #FF5757;
  color: var(--protea-white);
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 3px 5px;
  letter-spacing: .02em;
  border-radius: 10px;
  z-index: 1;
}

.el_floting_btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  box-shadow: 0px 5px 5px 0px #0E2A4324;
  font-size: 10px;
}

@media (min-width: 600px) {
  .el_floting_btn{
    display: none;
  }
}

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

4.block

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

.bl_header_logo{
  width: 85px;
}

@media (max-width: 320px) {
  .bl_header_logo{
    width: 70px;
  }
}

@media (min-width: 600px) {
  .bl_header_logo{
    width: auto;
  }
}

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

.bl_header_createLog{
  display: none;
}

@media (min-width: 600px) {
  .bl_header_createLog{
    display: inline-flex;
    font-weight: bold;
    letter-spacing: .05em;
    border-radius: 4px;
    padding: 4px 8px;
    margin:0 16px 0 auto;
    transition: background-color .3s;
  }

  .bl_header_createLog p{
    margin-top: 2px;
  }
}

@media (min-width: 600px) {
  .proteaLogoIcon{
    display: none;
  }
}

.bl_header_functionNav ul{
  display: flex;
  gap: 8px;
}


@media (min-width: 600px){
  .bl_header_functionNav ul{
    position: relative;
    border-top: none;
    background: none;
  }
}

.bl_header_functionNav ul li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  transition: background .3s;
}

@media (min-width: 600px){
  .bl_header_functionNav ul li a{
    width: 36px;
    height: 36px;
  }
}

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

.bl_header_functionNav_iconBtn:after{
  opacity: 0;
  position: absolute;
  transition: all 0.2s;
  visibility: hidden;
  background: rgba(14, 33, 54, 0.6);
  border-radius: 2px;
  color: #fff;
  content: attr(data-tooltip);
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 5px;
  top: 37px;
  white-space: nowrap;
}

.bl_header_functionNav_iconBtn.is_active:hover {
  background: none;
}

@media (min-width: 600px) {
.bl_header_functionNav_iconBtn:hover:after,
.bl_header_functionNav_user:hover:after{
  opacity: 1;
  visibility: visible;
}
}

.bl_header_functionNav_iconBtn svg,
.bl_footerNav svg{
  width: 24px;
}

/* アイコン */
.bl_header_functionNav_iconBtn .st1,
.bl_footerNav svg .st1{
  fill:none;
}

.bl_header_functionNav_iconBtn .st2,
.bl_footerNav svg .st2{
  fill:#6D6E7F;
}


.bl_header_functionNav_iconBtn.is_active .st1,
.bl_footerNav .is_active svg .st1{
  fill:#FFE5E2;
}

.bl_header_functionNav_iconBtn.is_active .st2,
.bl_footerNav .is_active svg .st2{
  fill:#E04F39;
}

/* 設定アイコン */
.bl_header_functionNav_iconBtn.setting .st1{
  fill:none;
  stroke:#6D6E7F;
  stroke-width:1.5;
}

.bl_header_functionNav .el_badge{
  position: absolute;
  top: 2px;
  left: 32px;
  transform: translateX(-50%);
}

.bl_header_functionNav_dropdown{
  display: none;
  width: 212px;
  padding: 0 0 4px;
  background-color: var(--protea-white);
  border-radius: 6px 0 0 6px;
  box-shadow: -1px 2px 4px 0px rgb(12 51 92 / 20%);
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 1;
}

@media (min-width: 600px) {
  .bl_header_functionNav_dropdown{
    border-radius: 6px;
    position: absolute;
    top: 36px;
    right: 0;
    bottom: auto;
    box-shadow: 0 4px 10px 0 rgba(12,51,92,.1);
  }
}

.bl_header_functionNav_dropdown_userName{
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--protea-borderColorLight);
  column-gap: 8px;
}

.bl_header_functionNav_dropdown_userName img{
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

.bl_header_functionNav_dropdown_userName p{
  font-size: 14px;
  font-weight: bold;
}

.bl_header_functionNav_dropdown_userName p span{
  font-size: 12px;
  font-weight: normal;
}

.bl_header_functionNav_dropdown li a {
  display: inline-block;
  width: 100%;
  padding: 9px 16px;
  font-size: 14px;
  box-sizing: border-box;
  color: var(--protea-black);
  transition: background .3s ;
}

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

.bl_header_functionNav_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;
  width: 100%;
  position: fixed;
  z-index: 101;
}

@media (min-width: 600px) {
  .bl_dialog{
    width: 460px;
    box-shadow: 0 2px 7px rgb(12 51 92 / 20%);
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    z-index: 101;
  }
}

.bl_dialog_header{
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 600px) {
  .bl_dialog_header{
    padding: 12px 12px 12px 24px;
    justify-content: space-between;
  }
}

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

@media (min-width: 600px) {
  .bl_dialog_header_title{
    order: 1;
  }
}

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

@media (min-width: 600px) {
  .bl_dialog_header_close{
    position: static;
    order: 2;
  }
}

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

.bl_dialog_body{
  padding: 20px 16px;
  overflow: auto;
  height: calc(100vh - 102px);
  font-size: 14px;
  border-top: 1px solid var(--protea-borderColorLight);
  overscroll-behavior: contain;
}

@media (min-width: 600px) {
.bl_dialog_body{
  padding: 20px 24px;
  height: auto;
  max-height: 70vh;
  overflow: auto;
}
}

.bl_dialog_footer{
  display: flex;
  padding: 10px 16px;
  height: 68px;
  background: #F7F7F7;
  position: fixed;
  width: 100%;
  bottom: 0px;
}

@media (min-width: 600px) {
.bl_dialog_footer{
  justify-content: flex-end;
  padding: 16px;
  position: relative;
  bottom: auto;
  width: auto;
  height: auto;
  background: none;
}
}

/* protealog dialog */
@media (max-width: 500px) {
.bl_createLog{
  top: 0;
}
}

@media (min-width: 600px) {
.bl_createLog{
  width: 560px;
}
}

.bl_createLog_dateTime{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bl_createLog_dateTime input{
  height: 44px;
  font-family: Arial, Helvetica, sans-serif;
}

.bl_createLog_date{
  width: 100%;
}

@media (min-width: 600px){
  .bl_createLog_date{
    width: 132px;
  }
}

.bl_createLog_time{
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 600px){
  .bl_createLog_time{
    flex-wrap: nowrap;
    margin-left: 0;
    align-items: baseline;
  }
}

.bl_createLog_time .el_select{
  position: relative;
  margin-left: 6px;
  flex: 1;
}

@media (max-width: 599px){
  .bl_createLog_time .el_select:first-of-type{
    margin-left: 1px;
  }
}

@media (min-width: 600px){
  .bl_createLog_time .el_select{
    margin-left: 8px;
  }
}


.bl_createLog_time p{
  margin:20px 0 20px 8px;
}

.bl_createLog .el_textbox,
.bl_createLog .el_textarea,
.bl_createLog .el_select{
  margin-bottom: 24px;
}

.bl_createLog .el_select select{
  height: 45px;
}

.bl_createLog .el_textarea{
  height: 88px;
  resize: vertical;
}

.bl_createLog_careerAsset_radioWrapper{
  margin: 8px -8px 0;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}

@-moz-document url-prefix(){
  .bl_createLog_careerAsset_radioWrapper{
    margin-bottom: 20px;
  }
}

.bl_createLog_careerAsset_radioWrapper.error{
  background-color: #fff6ee;
}

.bl_createLog_careerAsset_radioWrapper.error + .el_errorText{
  margin-top: 6px;
}


.bl_createLog_careerAsset_radio{
  display: none;
}

.bl_createLog_careerAsset_label{
  border: 1px solid;
  border-radius: 4px;
  padding: 12px 0;
  flex: 1;
  background: #fff;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: background .3s;
  margin-right: 8px;
}

.bl_createLog_careerAsset_label:last-of-type{
  margin-right: 0;
}

.bl_createLog_careerAsset_label.productivity{
  border-color: #8F98B2;
  color: #8F98B2;
}

.bl_createLog_careerAsset_label.productivity:hover{
  background-color: #eef0f5;
}

.bl_createLog_careerAsset_label.vitality{
  border-color: #EA8D81;
  color: #EA8D81;
}

.bl_createLog_careerAsset_label.vitality:hover{
  background-color: #FFF2F0
}

.bl_createLog_careerAsset_label.transform{
  border-color: #8FCABE;
  color:#42A894
}

.bl_createLog_careerAsset_label.transform:hover{
  background-color:#edf5f3;
}

.bl_createLog_careerAsset_radio:checked + .bl_createLog_careerAsset_label.productivity {
  background-color: #8F98B2;
  color: var(--protea-white);
}

.bl_createLog_careerAsset_radio:checked + .bl_createLog_careerAsset_label.vitality {
  background-color: #EA8D81;
  color: var(--protea-white);
}

.bl_createLog_careerAsset_radio:checked + .bl_createLog_careerAsset_label.transform {
  background-color: #8FCABE;
  color: var(--protea-white);
}

.bl_createLog_careerAsset span{
  font-size: 12px;
  margin-top: 6px; /* for iPhoneSE */
  display: inline-block; /* for iPhoneSE */
}

.bl_createLog_careerAsset_description{
  font-size: 12px;
  line-height: 1.4;
}

.bl_createLog .el_errorText{
  width: 100%;
  margin-top: -12px;
}

.bl_dialog_save{
  width: 100%;
}

@media (min-width: 600px) {
  .bl_dialog_save{
    width: 110px;
  }
}

.el_snackbar.bl_createLog{
  display: none;
}

/* abour career asset dialog */
.bl_aboutCareerAsset_mask{
  z-index: 102;
}

.bl_aboutCareerAsset_dialog{
  width: calc(100% - 48px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  z-index: 103;
}

@media (min-width: 600px) {
  .bl_aboutCareerAsset_dialog{
  width: 420px;
}
}

@media (max-width: 599px) {
  .bl_aboutCareerAsset_dialog .bl_dialog_header {
    padding: 18px 16px;
  }
}

@media (max-width: 599px){
  .bl_aboutCareerAsset_dialog .bl_dialog_header_close {
    display: none;
  }
}

.bl_aboutCareerAsset_dialog .bl_dialog_body{
  height: calc(100vh - 240px);
  padding: 20px 16px 40px 16px;
}

@media (max-width: 599px) {
  .bl_aboutCareerAsset_dialog img {
    width: 100%;
  }
}

.bl_aboutCareerAsset_subttl{
  font-size: 16px;
  margin: 24px 0 10px;
}

.bl_aboutCareerAsset_bodyTxt{
  line-height: 1.6;
}

.bl_aboutCareerAsset_dialog .el_textLink{
  margin: 10px 0 0 -8px;
  line-height: 1.3;
}

.bl_aboutCareerAsset_dialog .bl_dialog_footer{
  justify-content: center;
  height: 44px;
  background: #fff;
}

@media (min-width: 600px) {
  .bl_aboutCareerAsset_dialog .bl_dialog_footer{
  display: none;
}
}

.bl_aboutCareerAsset_dialog .bl_dialog_footer .bl_dialog_cancel{
  color: var(--protea-red);
  padding: 8px;
}

@media (max-width: 599px) {
  .bl_monthlyGoalSetting{
    top: 0;
  }
}

.bl_monthlyGoalSetting .el_textbox{
  margin-bottom: 20px;
}

.bl_monthlyGoalSetting .el_errorMessage {
  margin-bottom: 16px;
}

.bl_monthlyGoalSetting .el_errorText {
  margin-top: -12px;
}

.bl_monthlyGoalSetting_percentageWrapper:last-child .el_textbox{
  margin-bottom: 0;
}

.bl_monthlyGoalSetting_percentageWrapper:last-child .el_errorText{
  margin: 8px 0 0;
}

.bl_monthlyGoalSetting_txt{
  margin-bottom: 12px;
}

.bl_monthlyGoalSetting .el_formLabel{
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20px);
}

.bl_monthlyGoalSetting .el_glossary{
  font-size: 12px;
  font-weight: normal;
}

.bl_monthlyGoalSetting_percentageWrapper{
  position: relative;
}

.bl_monthlyGoalSetting_unit{
  position: absolute;
  top: 22px;
  right: 0;
}

.el_textbox.bl_monthlyGoalSetting_hours{
  width: calc(100% - 40px);
  margin-right: 6px;
}

@media (min-width: 600px) {
  .el_textbox.bl_monthlyGoalSetting_hours{
      width: 370px;
  }
}

.el_textbox.bl_monthlyGoalSetting_percentage{
  width: calc(100% - 20px);
  margin-right: 6px;
}

@media (min-width: 600px) {
.el_textbox.bl_monthlyGoalSetting_percentage{
  width: 390px;
}
}

@media (max-width: 599px) {
  .bl_monthlyGoalSetting .bl_dialog_body{
    padding-bottom: 60px;
  }
}

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

5.helper

====================================================*/
@media (min-width: 600px) {
  .hp_pc_hidden{
    display: none;
  }
}

@media (max-width: 599px) {
  .hp_sp_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: flex;
}

.hp_flex_justifyContent_center{
  justify-content: center;
}

.hp_d_block{
  display: block;
}

.hp_d_none{
  display: none;
}

.hp_border_top{
  border-top: 1px solid var(--protea-borderColorLight);
}

.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;
}



.el_radio_error {
  margin-bottom: 24px;
  background: #fff6ee;
}
