@charset "UTF-8";

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

1.base

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

:root {
  --protea-bgColor: #F3F3F5;
  --protea-black: #1B1D37;
  --protea-borderColorDark: #CACAD8;
  --protea-borderColorLight: #E8E8EB;
  --protea-green: #8FCABE;
  --protea-orange: #F78D55;
  --protea-red: #E04F39;
  --protea-white: #fff;
  --ws-gray: #A3A4AE;
  --ws-green: #00BFB3;
}

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: var(--protea-bgColor);
  color: var(--protea-black);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  min-height: 100vh;
  background-color: var(--protea-bgColor);
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ 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;
}

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

ul,ol{
  list-style-type: none;
}
  
table {
  border-collapse:collapse;
  border-spacing:0;
}

input, select {
  vertical-align:middle;
  border: 1px solid #CACAD8;
  padding: 0.5em 0;
  border-radius: 4px;
}

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

textarea{
  resize: vertical;
}

/*placeholder*/
::-webkit-input-placeholder {
  color: var(--ws-gray);
}
::-moz-placeholder {
  color: var(--ws-gray);
}
:-ms-input-placeholder {
  color: var(--ws-gray);
}
::-ms-input-placeholder {
  color: var(--ws-gray);
}
::placeholder {
  color: var(--ws-gray);
}

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 0 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: calc(100vw - 32px);
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (min-width: 600px) {
  .ly_header_inner {
    width: 100%;
  }
}

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

@media (min-width: 600px) {
  .ly_cont {
    margin-top: 100px;
  }
}

.ly_footer {
  font-size: 14px;
  text-align: center;
  padding: 12px;
  letter-spacing: .03em;
  line-height: 180%;
  background: #008F86;
}

.ly_footer > p {
  color: #FAFAFA;
}

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

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_bodyText{
  font-size: 14px;
  line-height: 1.7;
}

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

.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,
.el_btn_primary:disabled {
  background:#DFDFE5;
  color: var(--ws-gray);
  pointer-events: none;
}

.el_btn_primary:disabled:hover,
.el_btn_primary:disabled:focus,
.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);
  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: 9px 16px;
  font-size: 16px;
  font-weight: bold;
}

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

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

.el_btn_w120 {
  width: 120px;
}

.el_btnIcon{
  margin-right: 4px;
}

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

.el_formGroupInline {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

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

.el_formGroup .el_formLabel {
  margin-bottom: 8px;
}

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

/*-- toggle style --*/
/* トグルスイッチの全体スタイル */
.el_toggle {
  position: relative;
  width: 40px;
  height: 24px;
}

/* 非表示のチェックボックス */
.el_toggleInput {
  opacity: 0;
  width: 0;
  height: 0;
}

/* スライダー部分 */
.el_toggleLabel {
  position: absolute;
  cursor: pointer;
  background-color: var(--ws-gray); /* OFFの色 */
  border-radius: 24px;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
}

/* トグルの丸い部分 */
.el_toggleLabel::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

/* チェック時のスタイル */
.el_toggleInput:checked + .el_toggleLabel {
  background-color: var(--protea-red); 
}

.el_toggleInput:checked + .el_toggleLabel::before {
  transform: translateX(16px);
}

/*-- 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 var(--ws-gray);
	pointer-events: none;
}

.el_select select {
  padding: 0 30px 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 {
  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;
}

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


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

4.block

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

.bl_header_logo{
  width: 112px;
}

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

.bl_header_name{
  font-size: 14px;
  font-weight: bold;
  color: var(--protea-black);
  margin-left: auto;
  cursor: pointer;
  position: relative;
  padding: 8px 30px 8px 12px;
  border-radius: 18px;
  transition: background .3s;
}
.bl_header_name::after{
  content: '';
  border-top: 6px solid #8D99A8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: 12px;
  right: 12px;
}
.bl_header_name:hover{
  background: #EDEEF5;
}

.bl_header_name span{
  font-size: 12px;
}

.bl_header_dropdown{
  display: none;
  width: 180px;
  padding: 8px 0;
  background-color: var(--protea-white);
  border-radius: 4px;
  box-shadow: 0 4px 10px 0 rgb(12 51 92 / 10%);
  position: absolute;
  top: 44px;
  right: 5px;
  z-index: 1;
}

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

.bl_header_functionNav_dropdown{
  display: none;
  width: 212px;
  padding: 8px 0;
  background-color: var(--protea-white);
  border-radius: 6px;
  box-shadow: 0 4px 10px 0 rgba(12,51,92,.1);
  position: absolute;
  top: 34px;
  right: 2px;
  z-index: 1;
}

@media (min-width: 600px) {
  .bl_header_dropdown{
    right: 26px;
  }
}
.bl_header_dropdown 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_dropdown a:hover{
  background: #EDEEF5;
}
.bl_header_dropdown a img,
.bl_header_logout img{
  margin-right: 6px;
  vertical-align: -5px;
}
.bl_header_logout{
  margin-left: auto;
  color: var(--protea-black);
  position: relative;
  padding: 8px 12px;
  border-radius: 18px;
  transition: background .3s;
}
.bl_header_logout:hover{
  background: #EDEEF5;
}

/*-- 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;
}

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

5.helper

====================================================*/
.hp_fw_b{
  font-weight: bold;
}

.hp_fs_xs {
  font-size: 10px !important;
}

.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_inline_block{
  display: inline-block !important;
}

.hp_d_none{
  display: none !important;
}

@media (max-width: 599px) {
  .hp_d_sp_block {
    display: block !important;
  }
}

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

.hp_lh_base {
  line-height: 1.6;
}

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

.hp_mb_20{
  margin-bottom: 20px !important;
}

.hp_mb_48{
  margin-bottom: 48px !important;
}

.hp_ml_0 {
  margin-left: 0px !important;
}

.hp_mr_8 {
  margin-right: 8px !important;
}

.hp_mr_16 {
  margin-right: 16px !important;
}

.hp_pl_16 {
  padding-left: 16px !important;
}

.hp_w_50 {
  width: 50px !important;
}

.capture {
  background-color: var(--protea-white);
  border-top: none;
  border-bottom: none;
}


/* 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;
}

.bl_dialog_footer.hp_flex_justifyContent_center{
  justify-content: center;
}
}

/*-- 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;
  }
}

/* errorページのcss (エラーページの呼び出し方によっては共通のcssしか適用されないためここに記載)*/
@media (min-width: 600px) {
  .el_ttl01{
    margin: 0 0 10px;
  }
  }

  .bl_error .el_ttl01{
    margin: 0 0 8 0;
    text-align: center;
    border-bottom: none;
  }

  .bl_error p{
    text-align: center;
    line-height: 1.6;
    margin-bottom: 4px;
  }
  