@charset "utf-8";
/* CSS Document */


/*フォーム初期設定*/

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #e5f5f3 inset;
}

textarea,
select option,
label{ 
	line-height:24px;
  vertical-align: middle;
}

@media (min-width: 960px) {
  input{
    max-width: 50%;
  }
}

select{
	margin: 0;
	cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 30px;
  padding: 3px 30px 3px 10px;
  border: 1px solid #CCC;
  box-sizing: border-box;
  border-radius: 5px;
  color: #333333;
  border-radius: 5px;
  background: url("../img/icon/ic_arrow_B2.svg") center right 10px / auto 12px no-repeat #FFF;
}
@media (max-width: 959px) {
  select {
    width: 100%;
  }
  .type_auto select{
    width: auto;
    min-width: inherit;
  }
}
@media (min-width: 960px) {
  select {
    min-width: 230px;
  }
}
select:focus {
  outline: 1px solid #d6d6d6;
}
.ui-datepicker-title select{
	 min-width:inherit;
}


textarea{
  width: 100%;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #CCC;
  box-sizing: border-box;
  border-radius: 5px;
}


button{
	font-size: 1.4rem;
	font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	vertical-align: middle;
}


/*/// 入力ボックス ///
//////////////////////////////////////////////// */
input[type='text'],input[type='password']{
	border-radius:3px;
	padding:10px;
	font-size:1.6rem;
  min-height: 40px;
  border: 0;
  box-sizing: border-box;
	background-color:#e5f5f3;
}

input[type='text'],[name='dir_name']{
	width:100%;
}

/*/// チェックボックス ///
//////////////////////////////////////////////// */
.checkboxItem {
  width: fit-content;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  align-items: center;
  column-gap: 4px;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}
.checkboxItem.type_inline {
	display : -webkit-inline-box;
	display : -ms-inline-flexbox;
	display : -webkit-inline-flex;
	display : inline-flex;
}
.checkboxItem:not(:last-of-type) {
  margin-bottom: 10px;
}
.checkboxItem > [type='checkbox'] {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #CCC;
  border-radius: 2px;
  cursor: pointer;
  vertical-align: middle;
}
.checkboxItem > [type='checkbox']:checked {
  border: 1px solid #00957f;
  background: -webkit-linear-gradient(top, #00957f, #00b15a);
  background: -o-linear-gradient(top, #00957f, #00b15a);
  background: linear-gradient(to bottom, #00957f, #00b15a);
}
.kanri .checkboxItem > [type='checkbox']:checked {
  border: 1px solid var(--clr-b);
  background: -webkit-linear-gradient(top, var(--clr-b), #0b88df);
  background: -o-linear-gradient(top, var(--clr-b), #0b88df);
  background: linear-gradient(to bottom, var(--clr-b), #0b88df);
}
.checkboxItem > [type='checkbox']:checked::after {
  width: 12px;
  height: 6px;
  content: "";
  position: absolute;
  top : 3px;
  left: 3px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.checkboxIn{
  padding-left: 5px;
  cursor: pointer;
}


/*/// ラジオボタン ///
//////////////////////////////////////////////// */
.radioItem {
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  line-height: 1;
  cursor: pointer;
}
.radioItem:not(:last-of-type) {
  margin-right: 15px;
}
/*.radioButton*/
.radioItem > [type='radio']{
  width : 20px;
  height: 20px;
  appearance: none;
  position: relative;
  border: 1px solid #CCC;
  border-radius: 9999px;
  cursor: pointer;
}
/*.radioButton*/.radioItem > [type='radio']::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #DDD;
}
/*.radioButton*/.radioItem > [type='radio']:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  /*background-color: #00957f;*/
  background: -webkit-linear-gradient(left, #00957f, #00b15a);
  background: -o-linear-gradient(left, #00957f, #00b15a);
  background: linear-gradient(to right, #00957f, #00b15a);
}


/*/// b_labelS ///
////////////////////////////////////////////////*/
.b_labelS{
    position: relative;
}
.b_labelS::before,
.b_labelS::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.b_labelS::before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 10px 10px 0;
    background-color: lightslategrey;
    content: '';
}
.b_labelS::after {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translate(50%, -70%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
}
.b_labelS .select2-selection,
.b_labelS select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: 2px solid lightslategrey;
    border-radius: 10px;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}
.b_labelS .select2-selection:focus,
.b_labelS select:focus {
    outline: 1px solid lightslategrey;
}
.b_labelS .select2-selection{
	height: 2.8em!important;
	padding: .4em 3.6em .4em .8em!important;
	border: 2px solid lightslategrey!important;
	text-align:left;
	border-radius: 10px!important;
}
.b_labelS .select2-selection {
	background-color: #FFF;
}
.b_labelS .select2-container {
  display: block;
	position:static;
}
.b_labelS input.select2-search__field{
	max-width: 90%!important;
}
.b_labelS .select2-selection__rendered{
	padding-left : 0!important; 
	padding-right: 0!important;
}
.type_auto.b_labelS,
.type_auto.b_labelS select{
  width: auto;
  min-width: inherit;
}


.labelboxS .ttl{
	margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 959px) {
  .labelboxS .ttl{
    font-size: 1.2rem;
  }
  .labelboxS + .labelboxS {
    margin-left: 5px;
  }
}
@media (min-width: 960px) {
  .labelboxS + .labelboxS {
    margin-left: 20px;
  }
}