@charset "UTF-8";
/*--------------------------------------------------
Variable
--------------------------------------------------*/
/* Brand */
/* Text */
/* Line */
/* Body */
/* Semantic */
/*---------- フォント ----------*/
/*--------------------------------------------------
Mixin
--------------------------------------------------*/
/*---------- Responsive ----------*/
/*---------- fade animetion ----------*/
/*---------- icon ----------*/
/*---------- mixin ----------*/
/*------------------------------------
  Feedback Modal Design Changes
------------------------------------*/
.custom-select-box {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  cursor: pointer;
  padding: 14.5px 48px 14.5px 16px;
}

.custom-select-options {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  max-height: 298px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 18px 2px rgba(172, 88, 62, 0.1490196078);
          box-shadow: 0px 2px 18px 2px rgba(172, 88, 62, 0.1490196078);
}

.custom-select-options.active {
  display: block;
  width: 480px;
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 20px 4px 16px;
  cursor: pointer;
}
.custom-checkbox:hover {
  color: #fff;
  background-color: #30608c;
}

.checkbox-item {
  margin-right: 8px;
  margin-left: 0;
  background-color: #fff;
  width: 18px;
  height: 18px;
  border: 1px solid #576c80;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.checkbox-item:checked {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ed6d34;
  border-color: #ed6d34;
}
.checkbox-item:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 6px;
  height: 10px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.custom-checkbox span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}

.select2-container {
  display: none;
}