@charset "UTF-8";

/*button*/
[class^='btn-'] {
  display: inline-block;
  text-align: center;
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background: transparent;
  padding: 0;
  color: #fff;
  font: inhirt;
}
[class^='btn-']:disabled {
  opacity: 0.4;
}
.btn-full {
  width: 100%;
}
.btn-lg {
  /*height: 47px;
  line-height: 47px;*/
  padding: 15px 0px;
  line-height: 1.2;
  font-size: 15px;
}
.btn-md {
  /*height: 41px;
  line-height: 41px;*/
  padding: 10px 0px;
  line-height: 1.2;
  font-size: 15px;
}
.btn-sm {
  /*height: 30px;
  line-height: 30px;*/
  padding: 10px 0px;
  line-height: 1.2;
  font-size: 11px;
}

.btn-point {
  background: #621c82;
}
.btn-point:active {
  background: #510e70;
}
.btn-point:disabled {
  /*    opacity: 0.5;*/
}
.btn-normal {
  background: #aca5b2;
}
.btn-normal:active {
  background: #9d94a5;
}
.btn-point:disabled {
  /*    background: #d5d2d8;*/
  /*    opacity: 0.5;*/
}

.btn-icon:before,
.btn-icon:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
}

.wrap-btn-area {
  display: flex;
  padding: 15px;
}
.wrap-btn-area.fix-bottom-area {
  position: fixed;
  width: 100%;
  bottom: 0;
}
.wrap-btn-area > button {
  flex: 1;
}
.wrap-btn-area > button:not(:only-child):last-child {
  margin-left: 13px;
}

.wrap-btn-area.popup {
  padding: 0;
}
.wrap-btn-area.popup button {
  /*height: 35px;
  line-height: 35px;*/
}
/* checkbox */
input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
input[type='checkbox'] + label {
  display: block;
  line-height: 18px;
  min-height: 18px;
  /* 50 */
  font-size: 11px;
  color: #464a4e;
  font-weight: 600;
}
input[type='checkbox'] + label strong {
  color: #7e459e;
}
input[type='checkbox'] + label::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  background: url(../images/icon/icon_checkbox.svg) no-repeat;
  background-size: contain;
  margin-right: 5px;
}
input[type='checkbox']:checked + label::before {
  background: url(../images/icon/icon_checkbox_on.svg) no-repeat;
  background-size: contain;
}
input[type='checkbox']:disabled + label,
input[type='checkbox']:disabled + label strong {
  color: #aca5b2;
}
input[type='checkbox']:disabled + label:before {
  filter: grayscale(100);
  opacity: 0.4;
}
/*progress*/
progress {
  background-color: #f5f5f5;
  width: 100%;
  height: 3.5px;
  border: none;
}
progress::-webkit-progress-bar {
  background-color: #f5f5f5;
  border: none;
}
progress::-webkit-progress-value {
  background-color: #fb5b56;
  border: none;
}
progress::-moz-progress-bar {
  background-color: #f5f5f5;
}

/*tab*/
.tab-wrap {
  display: block;
  border-bottom: 1px solid transparent;
}
.tab {
  padding: 15px 15px 10px;
  background: transparent;
  z-index: 1;
  white-space: nowrap;
  overflow-x: auto;
  text-align: center;
}
.tab > a {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 0 0 10px 0;
  text-decoration: none;
  text-align: center;
  margin: 0 9px;
}
.tab > .is-active {
  color: #fff;
  font-weight: 800;
}
.tab > .is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.tab.tab-type01 {
  justify-content: center;
  padding: 10px 5px;
  background: #fff;
}
.tab.tab-type01 a {
  font-size: 13px;
  color: #908994;
  padding: 9px 20px;
  border-radius: 20px;
  margin: 0 5px;
  opacity: 1;
}
.tab.tab-type01 .is-active {
  background: #9973EA;
  color: #fff;
}
.tab.tab-type01 .is-active::after {
  display: none;
}

.tab.tab-type01 a span {
  width: 15px;
  height: 15px;
  background: #c757fb;
  display: flex;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: -5px;
  border-radius: 100%;
  color: #fff;
  align-items: center;
  justify-content: center;
}
/* setting switch */

.switch input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.switch input[type='checkbox'] + label {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 31px;
  background: #bbbbbb;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.switch input[type='checkbox'] + label:before {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 1px;
  left: 1px;
  width: 29px;
  height: 29px;
  border-radius: 100%;
  border: 1px solid #e4e4eb;
  background: #fff;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -moz-box-shadow: 0px 1px 1px 0px #66666666;
  -webkit-box-shadow: 0px 1px 1px 0px #66666666;
  box-shadow: 0px 1px 1px 0px #66666666;
}
.switch input[type='checkbox']:checked + label {
  background: #af7ded;
}

.switch input[type='checkbox']:checked + label:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

input[type='text'],
input[type='password'],
input[type='number'] {
  border: 1.5px solid transparent;
  height: 45px;
  padding: 0 8px;
  color: #7c7f84;
  font: 400 13px 'NanumSqure,Noto Sans Japanese';
  outline: none;
  border-radius: 5px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
}

input[type='text'].error,
input[type='password'].error,
input[type='number'].error {
  border: 1.5px solid #fd747c;
}
input[type='text']:disabled,
input[type='number']:disabled {
  opacity: 0.4;
  background: #fff;
}
/*

input[type="text"]:valid,
input[type="password"]:valid,
*/
input[type='text']:focus,
input[type='password']:focus,
input[type='number']:focus {
  border: 2px solid #c195d4;
}

::placeholder {
  color: #b8b8b8;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #b8b8b8;
}
::-ms-input-placeholder {
  color: #b8b8b8;
}

input[type='password'] {
  font-family: 'initial';
}
input[type='password']::placeholder {
  font-family: 'Noto Sans Japanese', 'NanumSqure' !important;
}

/*input select*/
.input-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  background: #fff;
  height: 45px;
  padding: 0 8px;
  color: #7c7f84;
  font:
    400 13px 'Noto Sans Japanese',
    'NanumSqure' !important;
  outline: none;
  border-radius: 5px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}
select:valid {
  color: #7c7f84;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: 1px solid #dadada;
  border-radius: 3px;
  height: 26px;
  background: url(../images/icon/bullet_down.svg) no-repeat center right;
  background-size: 25px 10px;
  padding-right: 30px;
  padding-left: 7px;
  font-size: 14px;
}

.error-txt {
  font-size: 10px;
  color: #f04142;
}

.primary-txt {
  font-size: 10px;
  color: #87888d;
}
