@charset "UTF-8";
/******************************************
[global]
******************************************/
@import url('https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css');
html,
body {
  height: 100%;
}

html {
  -webkit-overflow-scrolling: touch;
}

body {
  background: #f5f5fb;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  color: #1D1D1D;
  -webkit-text-size-adjust: none;
  word-break: break-word;
  overflow-x: hidden;
}

#app {
  width: 100%;
  height: 100%;
}

/******************************************
[icon]
******************************************/
.aikon {
  font-style: normal;
  font-size: 1rem;
  white-space: normal;
}

/******************************************
[link]
******************************************/
a {
  text-decoration: none;
  transition: 0.3s;
}

.link {
  text-decoration: underline;
  color: #5e81f4;
}

.strechLink:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: auto;
  z-index: 1;
}

.squareLink {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #fff;
  border-radius: 4px;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.03);
  color: #4f4e69;
  transition: 0.3s;
}

.squareLink-text {
  font-weight: 700;
}

.squareLink-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 100%;
  margin: 0 16px 0 0;
  border-radius: 4px 0 0 4px;
  font-size: 2rem;
}

.squareLink-blue {
  background: linear-gradient(to right, #5e81f4 0%, #4568da 100%);
  color: #fff;
}

.squareLink-blue .squareLink-icon {
  background: #4568da;
}

.squareLink-green {
  background: linear-gradient(to right, #41dbac 0%, #38ca9e 100%);
  color: #fff;
}

.squareLink-green .squareLink-icon {
  background: #25c493;
}

@media (hover: hover) {
  .link:hover {
    text-decoration: none;
  }
  .squareLink:hover {
    -webkit-transform: translateY(-3%);
    transform: translateY(-3%);
    box-shadow: 0 20px 30px rgba(79, 78, 105, 0.15);
  }
}

/******************************************
[img]
******************************************/
img {
  vertical-align: middle;
  line-height: 1;
}

.img-fluid {
  width: 240px;
  height: auto;
}

/******************************************
[text]
******************************************/
.text-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}

.text-blue {
  color: #5e81f4;
}

.text-red {
  color: #fd667e;
}

.text-green {
  color: #41dbac;
}

.text-yellow {
  color: #efc720;
}

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

.text-bold {
  font-weight: 700;
}

.text-align-center {
  text-align: center;
}

.fw-n {
  font-weight: normal;
}

/******************************************
[headline]
******************************************/
.headline {
  font-size: 1.125rem;
  font-weight: 700;
}

.headline::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.headline::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.headline-lg {
  font-size: 1.5rem;
}

/******************************************
[title]
******************************************/
.title {
  margin: 0 0 16px;
  font-size: 0.875rem;
  font-weight: 700;
}

.title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.title:last-child {
  margin-bottom: 0;
}

/******************************************
[description]
******************************************/
.description {
  margin: 0 0 16px;
  padding: 0 40px;
}

.description-csv {
  width: 336px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.description:last-child {
  margin-bottom: 0;
}

/******************************************
[scroll]
******************************************/
.scrollX {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollX::-webkit-scrollbar {
  display: none;
}

/******************************************
[animation]
******************************************/
.slide-body {
  overflow: hidden;
}

.slide-leave-active,
.slide-enter-active {
  transition: 0.6s;
}

.slide-enter {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.slide-leave-to {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.fade-enter-active,
.fade-leave-active {
  opacity: 1;
  transition: 0.3s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.fadeSlide-enter-active,
.fadeSlide-leave-active {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: 0.3s;
}

.fadeSlide-enter,
.fadeSlide-leave-to {
  -webkit-transform: translate(0, 30%);
  transform: translate(0, 30%);
  opacity: 0;
}

.fadeHeight-enter-active,
.fadeHeight-leave-active {
  transition-duration: 0.3s;
  transition-property: height, opacity;
  transition-timing-function: ease;
  overflow: hidden;
}

.fadeHeight-enter,
.fadeHeight-leave-active {
  opacity: 0;
}

.slideBottom-enter-active,
.slideBottom-leave-active {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: 0.3s;
}

.slideBottom-enter,
.slideBottom-leave-to {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

/******************************************
[form]
******************************************/
:placeholder-shown {
  color: #cfd5d8;
}

::-webkit-input-placeholder {
  color: #cfd5d8;
}

:-moz-placeholder {
  color: #cfd5d8;
  opacity: 1;
}

::-moz-placeholder {
  color: #cfd5d8;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #cfd5d8;
}

/******************************************
[layout]
******************************************/
.form {
  width: 100%;
  margin: 0 0 32px;
}

.form:last-child {
  margin-bottom: 0;
}

.form-section {
  margin: 0 0 48px;
  padding: 0 0 48px;
  border-bottom: 1px solid #e1e2eb;
}

.form-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.form-groups:not(:last-child) {
  margin-bottom: 30px;
}

.form-headline {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #cfd5d8;
}

.form-headline::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.form-headline::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.form-row {
  margin: 0 0 32px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  line-height: 1;
  font-size: 16px;
}

.form-label-note {
  font-weight: 400;
}

.form-label-toggle {
  margin: 0 0 0 8px;
}

.form-required {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background: #F72840;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  width: 40px;
  height: 22px;
}

.form-need {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px 0 0;
  padding: 4px;
  background: #2cd7a3;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.form-content-row {
  margin: 0 0 8px;
}

.form-content-row:last-child {
  margin-bottom: 0;
}

/******************************************
[control]
******************************************/
.form-control {
  display: flex;
  padding: 0 8px;
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e1e2eb;
  font-size: 0.875rem;
  transition: 0.3s;
}

.form-control:not(select):not(.form-date-input):not(:-moz-read-only):focus {
  background: #edf1fe;
  border-color: #5e81f4;
}

.form-control:not(select):not(.form-date-input):not(:read-only):focus {
  background: #edf1fe;
  border-color: #5e81f4;
}

.form-control:not(select):not(.form-date-input):disabled,
.form-control:not(select):not(.form-date-input):-moz-read-only {
  background: #f5f5fb;
  color: #b2b7d2;
}

.form-control:not(select):not(.form-date-input):disabled,
.form-control:not(select):not(.form-date-input):read-only {
  background: #f5f5fb;
  color: #b2b7d2;
}

.form-control-lg {
  height: 48px;
  font-size: 1rem;
}

@media (hover: hover) {
  .form-control:not(select):not(.form-date-input):not(:disabled):not(:-moz-read-only):hover {
    border-color: #5e81f4;
  }
  .form-control:not(select):not(.form-date-input):not(:disabled):not(:read-only):hover {
    border-color: #5e81f4;
  }
}

/******************************************
[icon]
******************************************/
.form-icon:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 16px;
  border-right: 1px solid #e1e2eb;
  font-family: 'aikon';
  font-size: 1.125rem;
  color: #b2b7d2;
  z-index: 1;
}

.form-icon-input {
  padding-left: 48px;
}

.form-icon-search:before {
  content: '\e930';
}

/******************************************
[froup]
******************************************/
.form-group {
  display: flex;
  flex-direction: column;
  margin: 0 -4px;
}

.form-group-item {
  padding: 0 4px;
}

/******************************************
[password]
******************************************/
.form-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

.form-password-icon:before {
  content: '\e917';
  font-family: 'aikon';
  font-size: 1.3125rem;
}

.form-password .form-check-input:checked + .form-password-icon:before {
  content: '\e918';
}

/******************************************
[wrapper,container]
******************************************/
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background-color: #FFFFFF;
  overflow-y: auto;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.systemErrorWrapper {
  background: #fff;
  height: 100%;
}

/******************************************
[main]
******************************************/
.main {
  flex: 1 0 auto;
  padding: 32px;
}

/******************************************
[section]
******************************************/
.section {
  margin: 0 0 40px;
}

.section:last-child {
  margin-bottom: 0;
}

/******************************************
[col]
******************************************/
[class^='col'] {
  display: flex;
  flex-direction: column;
}

.col-inner {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/******************************************
[position]
******************************************/
.pos-start {
  margin-right: auto !important;
}

.pos-end {
  margin-left: auto !important;
}

/******************************************
[panel]
******************************************/
.panel {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.panel-body {
  flex: 1 0 auto;
}

.panel-height-auto {
  flex: 0 0 auto;
}

.panel-sheet {
  width: calc(1120px - 8px * 30 - 8px * 4 * 2);
  margin: 0 auto;
  padding: 80px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.03);
}

.panel-sheet .panel-header {
  display: flex;
  align-items: center;
  padding: 0 0 16px;
  border-bottom: 1px solid #e1e2eb;
}

.panel-sheet .panel-header .panel-headline {
  margin: 0 16px 0 0;
  padding-bottom: 0;
  border-bottom: none;
}

.panel-sheet .panel-headline {
  margin: 0 0 48px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e1e2eb;
}

.panel-sheet .panel-headline::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.panel-sheet .panel-headline::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.panel-sheet .panel-body {
  margin: 0 0 48px;
}

.panel-sheet .panel-body:last-child {
  margin-bottom: 0;
}

.panel-sheet .panel-footer {
  padding: 16px 0 0;
  border-top: 1px solid #e1e2eb;
}

.panel-board .panel-header {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

.panel-board .panel-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.03);
}

.panel-board .panel-content:last-child {
  margin-bottom: 0;
}

.panel-board .panel-content-footer {
  padding: 16px 32px;
  border-top: 1px solid #e1e2eb;
}

.panel-board .panel-body {
  padding: 32px;
}

.panel-board .panel-body-center {
  display: flex;
  flex-direction: column;
}

.panel-board .panel-body-center > * {
  flex: 1 0 auto;
}

.panel-board .panel-body-p0 {
  padding: 0;
}

.panel-blue {
  border-top: 4px solid #5e81f4;
}

.panel-green {
  border-top: 4px solid #41dbac;
}

.panel-red {
  border-top: 4px solid #fd667e;
}

.panel-yellow {
  border-top: 4px solid #efc720;
}

.panel-link {
  transition: 0.3s;
}

@media (hover: hover) {
  .panel-link:hover {
    -webkit-transform: translateY(-3%);
    transform: translateY(-3%);
    box-shadow: 0 20px 30px rgba(79, 78, 105, 0.15);
  }
}

/******************************************
[login]
******************************************/
.login-container {
  width: 100%;
  height: 100%;
}

.login {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.login-logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg.svg) no-repeat center;
  background-size: cover;
}

.login-line {
  border: 1px solid #E1E2EB;
}

.login-header {
  margin: 40px 0 40px;
}

.login-body {
  padding: 0 40px 40px;
}

.login .form {
  margin: 0 0 24px;
}

.login .form-row {
  margin: 0 0 24px;
}

.login-set {
  background: #fff;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.03);
}


.login-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px;
}


.login-headline {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.login-headline::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.login-headline::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.login-headline:last-child {
  margin-bottom: 0;
}

.login-password {
  color: #5e81f4;
}

.loginGo-leave-active,
.loginGo-enter-active {
  transition: 0.3s;
}

.loginGo-enter {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.loginGo-leave-to {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.loginBack-leave-active,
.loginBack-enter-active {
  transition: 0.3s;
}

.loginBack-enter {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.loginBack-leave-to {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

/******************************************
[error]
******************************************/
.error {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5e81f4;
  overflow: hidden;
}

.error:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg2.svg) no-repeat center;
  background-size: cover;
}

.error-panel {
  padding: 80px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.03);
}

.error-title {
  margin: 0 0 40px;
  font-size: 1.125rem;
  font-weight: 700;
}

.error-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.error-title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.error-text {
  margin: 0 0 40px;
}

.error-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.error-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.systemErrorWrapper .error {
  width: 100%;
  flex-direction: column;
  padding: 60px 0;
  background: none;
}

.systemErrorWrapper .error-headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 35px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #cfd5d8;
}

.systemErrorWrapper .error-headline-sub {
  font-size: 28px;
}

.systemErrorWrapper .error-title {
  margin: 0 0 35px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.systemErrorWrapper .error-title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: '';
}

.systemErrorWrapper .error-title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: '';
}

.is-error {
  border: 1px solid #fd667e !important;
}

.is-error.form-multiselect,
.is-error.form-multiselect:hover {
  border: none !important;
}

.is-error .multiselect__tags {
  border: 1px solid #fd667e;
}

.is-error:hover,
.is-error:focus {
  border: 1px solid #fd667e !important;
}


/******************************************
[password]
******************************************/
.password-alert {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #fd667e;
  box-shadow: 0 5px 10px rgba(253, 102, 126, 0.2);
  font-weight: 700;
  color: #fff;
}

.password-alert-icon {
  flex: 0 0 auto;
  margin: 0 8px 0 0;
  font-size: 2rem;
}

.password-alert-text {
  margin: 0 0 8px;
}

.password-alert-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.password-alert-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.password-alert-btn {
  background: #fff;
  color: #fd667e;
}

/******************************************
[btn]
******************************************/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}

.btn-radius {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.btn:disabled {
  background: #e1e2eb;
  color: #b2b7d2;
  cursor: default;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

a.btn.is-disabled {
  background: #e1e2eb;
  color: #b2b7d2;
  cursor: default;
  pointer-events: none;
  border-color: #e1e2eb;
}

.btn-main {
  background: #5e81f4;
  color: #fff;
}

.btn-blue {
  background: #5e81f4;
  color: #fff;
}

.btn-black {
  background: #4f4e69;
  color: #fff;
}

.btn-white {
  background: #fff;
  border: 1px solid #e1e2eb;
  color: #4f4e69;
}

.btn-red {
  background: #fd667e;
  color: #fff;
}

.btn-green {
  background: #41dbac;
  color: #fff;
}

.btn-yellow {
  background: #efc720;
  color: #fff;
}

.btn-bd-main {
  background: #fff;
  border: 1px solid #5e81f4;
  color: #5e81f4;
}

.btn-bd-blue {
  background: #fff;
  border: 1px solid #5e81f4;
  color: #5e81f4;
}

.btn-bd-red {
  background: #fff;
  border: 1px solid #fd667e;
  color: #fd667e;
}

.btn-w100 {
  width: 100%;
}

.btn-sm {
  height: 32px;
  padding: 0 8px;
  font-size: 0.75rem;
}

.btn-lg {
  height: 48px;
  padding: 0 24px;
  font-size: 1rem;
}

@media (hover: hover) {
  .btn:hover {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  .btn-main:not(:disabled):hover {
    background: #2e5cf1;
  }
  .btn-blue:not(:disabled):hover {
    background: #466ef2;
  }
  .btn-black:not(:disabled):hover {
    background: #39384c;
  }
  .btn-white:not(:disabled):hover {
    border-color: #b2b7d2;
  }
  .btn-red:not(:disabled):hover {
    background: #fd4d69;
  }
  .btn-green:not(:disabled):hover {
    background: #25c493;
  }
  .btn-bd-main:not(:disabled):hover {
    background: #edf1fe;
  }
  .btn-bd-blue:not(:disabled):hover {
    background: #edf1fe;
  }
  .btn-bd-red:not(:disabled):hover {
    background: #fff3f5;
  }
}

/******************************************
[alert]
******************************************/
.alert {
  position: fixed;
  top: 0;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 80px 32px 0 0;
  pointer-events: none;
  z-index: 9999;
}

.alert-content {
  display: flex;
  align-items: center;
  max-width: 410px;
  margin: 8px 0 0;
  font-weight: 700;
  padding: 16px;
  color: #fff;
  transition: 0.3s;
}

.alert-content:first-child {
  margin-top: 0;
}

.alert-success {
  background: rgba(65, 219, 172, 0.85);
  box-shadow: 0 5px 10px rgba(65, 219, 172, 0.3);
}

.alert-error {
  background: rgba(253, 102, 126, 0.85);
  box-shadow: 0 5px 10px rgba(253, 102, 126, 0.3);
}

.alert-message {
  display: flex;
  align-items: center;
  margin: 0 8px 0 0;
  line-height: 1;
  white-space: pre-line;
}

.alert-message:before {
  content: '\e908';
  flex: 0 0 auto;
  margin: 0 4px 0 0;
  font-family: 'aikon';
  font-size: 1.5rem;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing 1.2s ease 0.3s forwards infinite;
  animation: swing 1.2s ease 0.3s forwards infinite;
}

.alert-message-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.alert-message-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.alert-close {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fff;
  line-height: 1;
  pointer-events: all;
}

.alert-close:before {
  content: '\e913';
  font-family: 'aikon';
}

.alert-enter-active,
.alert-leave-active {
  transition: all 0.3s ease;
}

.alert-enter-from,
.alert-leave-to {
  opacity: 0;
  transform: translateX(30%);
}

@media (hover: hover) {
  .alert-close {
    transition: 0.3s;
  }
  .alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  20% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  40% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  20% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  40% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/******************************************
[modal]
******************************************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(35, 35, 46, 0.75);
}

.modal-panel {
  display: flex;
  flex-direction: column;
  width: 660px;
  max-height: 80%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(79, 78, 105, 0.3);
}

.modal-header {
  padding: 16px 32px;
  border-bottom: 1px solid #e1e2eb;
}

.modal-body {
  flex: 1 1 auto;
  padding: 32px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-body::-webkit-scrollbar {
  display: none;
}

.modal-footer {
  padding: 16px 32px;
  border-top: 1px solid #e1e2eb;
}

.modal-enter-active,
.modal-leave-active {
  transition: 0.3s;
  opacity: 1;
}

.modal-enter-active .modal-bg,
.modal-leave-active .modal-bg {
  transition: 0.3s;
  opacity: 1;
}

.modal-enter-active .modal-panel,
.modal-leave-active .modal-panel {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: 0.3s;
}

.modal-enter,
.modal-leave-to {
  opacity: 0;
}

.modal-enter .modal-bg,
.modal-leave-to .modal-bg {
  transition: 0.3s;
  opacity: 0;
}

.modal-enter .modal-panel,
.modal-leave-to .modal-panel {
  -webkit-transform: translate(0, 30%);
  transform: translate(0, 30%);
}

.modal-enter-from,
.modal-leave-to {
  transform: translateY(10px);
  opacity: 0;
}

/******************************************
[tooltip]
******************************************/
.tooltip {
  margin: 0 4px;
}

.tooltip-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.tooltip-btn-icon {
  font-size: 1.5rem;
  color: #5e81f4;
}

.tooltip-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 8px / 2);
  height: calc(100% + 8px / 2);
  border-radius: 50%;
  border: 8px solid #d5defc;
  opacity: 0;
  transition: 0.3s;
}

.tooltip-shadow {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  width: 100vw;
  pointer-events: none;
}

.tooltip-content {
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
  display: inline-flex;
  align-items: center;
  max-width: 320px;
  padding: 8px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(79, 78, 105, 0.3));
  filter: drop-shadow(0 3px 6px rgba(79, 78, 105, 0.3));
  background: rgba(79, 78, 105, 0.85);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
}

.tooltip-content:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(79, 78, 105, 0.85) transparent transparent transparent;
}

.tooltip-content.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.tooltip-msg::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.tooltip-msg::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.tooltip-close {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin: 0 0 0 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  line-height: 1;
  pointer-events: all;
}

.tooltip-close:before {
  content: '\e913';
  font-family: 'aikon';
}

@media (hover: hover) {
  .tooltip-btn:hover:before {
    opacity: 1;
  }
}

/******************************************
[loading]
******************************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 999;
}

.loading-text {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  -webkit-animation: twinkle 1.8s infinite;
  animation: twinkle 1.8s infinite;
}

.loading-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.loading-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.loading-spinner {
  fill: #5e81f4 !important;
}

@-webkit-keyframes twinkle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes twinkle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/******************************************
[qr]
******************************************/
.qr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  margin: 0 auto 16px;
  background: #f5f5fb;
}

.qr:last-child {
  margin-bottom: 0;
}

.qr-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 240px;
  margin: 0 auto 8px;
}

.qr-title {
  flex: 0 0 auto;
  display: flex;
  margin: 0 4px 0 0;
  padding: 4px 8px;
  background: #b2b7d2;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.qr-num {
  font-size: 1rem;
  font-weight: 700;
}
/******************************************
[listGrid]
******************************************/
.listGrid {
  display: flex;
  flex-wrap: wrap;
  margin: -8px -4px 0;
}

.listGrid-item {
  margin: 8px 0 0;
  padding: 0 4px;
}
/******************************************
[listTable]
******************************************/
.listTable {
  width: 100%;
  margin: 0 0 16px;
}

.listTable:last-child {
  margin-bottom: 0;
}

.listTable tr:not(:last-child) {
  border-bottom: 1px solid #e1e2eb;
}

.listTable th,
.listTable td {
  padding: 16px;
  white-space: nowrap;
}

.listTable th::before,
.listTable td::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: '';
}

.listTable th::after,
.listTable td::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: '';
}

.listTable th.listTable-fix,
.listTable td.listTable-fix {
  width: 1%;
}

.listTable thead {
  border-bottom: 1px solid #e1e2eb;
  text-align: left;
  color: #b2b7d2;
}

.listTable th {
  text-align: left;
}
/******************************************
[select]
******************************************/
.form-select:before {
  content: '\e90b';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 16px;
  border-left: 1px solid #e1e2eb;
  font-family: 'aikon';
  color: #b2b7d2;
  z-index: 1;
  pointer-events: none;
}

.form-select .form-control {
  padding-right: 48px;
}

.form-select .form-control:not(:disabled) {
  cursor: pointer;
}

.form-select-input {
  white-space: nowrap;
}

.form-select-input:focus {
  background: #edf1fe;
  border-color: #5e81f4;
}

.form-select-input:disabled {
  background: #f5f5fb;
  border-color: #e1e2eb;
  color: #b2b7d2;
  opacity: 1;
}

@media (hover: hover) {
  .form-select-input:not(:disabled):hover {
    border-color: #5e81f4;
  }
}
/******************************************
[checkbox]
******************************************/
.form-check {
  display: flex;
  align-items: center;
  line-height: 1;
}

.form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form-check-input:checked + .form-check-label:before {
  content: '\e90a';
  font-family: 'aikon';
  background: #5e81f4;
  border-color: #5e81f4;
}

.form-check-input:disabled + .form-check-label {
  color: #b2b7d2;
}

.form-check-input:disabled + .form-check-label:before {
  background: #e1e2eb;
  border-color: #e1e2eb;
}

.form-check-input:not(:disabled) + .form-check-label {
  cursor: pointer;
}

.form-check-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.form-check-label:before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  background: #f5f5fb;
  border-radius: 4px;
  border: 1px solid #e1e2eb;
  white-space: nowrap;
  color: #fff;
}

.form-check-label:empty:before {
  margin-right: 0;
}

.form-check-btn .form-check-label {
  height: 40px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid #e1e2eb;
}

.form-radio-btn .form-radio-label.is-error,
.form-check-btn .form-check-label.is-error {
  border-color: #fd667e;
}

.form-check-btn .form-check-input:checked + .form-check-label {
  background: #edf1fe;
  border-color: #5e81f4;
}

.form-check-btn .form-check-input:checked + .form-check-label.is-error {
  border-color: #fd667e;
}

.form-check-btn .form-check-input:disabled + .form-check-label {
  background: #f5f5fb;
  border-color: #e1e2eb;
}

@media (hover: hover) {
  .form-check-input:not(:disabled) + .form-check-label:hover {
    border-color: #5e81f4;
    transition: 0.3s;
  }
  .form-check-input:not(:disabled) + .form-check-label:hover:before {
    border-color: #5e81f4;
    transition: 0.3s;
  }
}
/******************************************
[icon]
******************************************/
.icon {
  display: block;
  width: 100%;
  height: 100%;
}

.icon:before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1;
}
.icon-finish:before {
  background-image: url(/assets/img/common/complete_icon.svg);
}

.icon-eye {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 2px;
}

.icon-eye-open {
  background-image: url(../img/common/eye_open.svg);
}

.icon-eye-close {
  background-image: url(../img/common/eye_close.svg);
}
/******************************************
[finish]
******************************************/
.finish {
  padding: 60px 0 35px;
}

.finish-text {
  margin: 0 0 35px;
  text-align: center;
}

.finish-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: '';
}

.finish-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: '';
}

.bg-gray {
  background: #ecf1f4;
}

/******************************************
[pay]
******************************************/
.payFinish-description {
  margin: 0 0 40px;
  padding: 20px;
  background: #ffdee2;
  border: 3px solid #f72840;
}

.payFinish-description-text {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #f72840;
}

.payFinish-description-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: '';
}

.payFinish-description-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: '';
}

.payFinish-header {
  margin: 60px 0 40px 0;
}

.payResult {
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.payResult-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 0 0 15px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
}

.payResult-unit {
  margin: 0 0 0 5px;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Helvetica, Arial, sans-serif;
  font-size: 26px;
}

.payResult-date {
  margin: 0 0 20px;
  text-align: center;
}

.payResult-date-text {
  display: inline-flex;
  align-items: center;
  height: 36px;
  margin: 0 auto;
  padding: 0 25px;
  background: #1880d9;
  border-radius: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.payResult-detail-item {
  display: flex;
  margin: 0 0 10px;
  font-size: 13px;
}

.payResult-flex-column {
  flex-direction: column;
  gap: 6px;
}

.payResult-detail-item:last-child {
  margin-bottom: 0;
}

.payResult-detail-title::before,
.payResult-detail-text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: '';
}

.payResult-detail-title::after,
.payResult-detail-text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: '';
}

.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
}

.text-break {
  word-break: keep-all;
}
.text-note {
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Helvetica, Arial, sans-serif !important;
}

/******************************************
[Font-size]
******************************************/
.fs-12 {
  font-size: 12px !important;
}
.fs-18 {
  font-size: 18px !important;
}
/******************************************
[CPM]
******************************************/
.cpm-section {
  padding: 40px 40px 120px 40px;
  text-align: center;
  background-color: #ffffff;
  line-height: 1;
  font-weight: 300;
}

.cpm-select-option select {
  height: 60px;
  padding-left: 20px;
  font-size: 16px;
}

.cpm-select-option select:focus {
  border: 1px solid #CFD5D8;
  background-color: #FFFFFF;
}

.cpm-select-option:before {
  content: ' ';
  background-image: url(../img/common/icon-arrow-down.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 11px;
  border-left: none;
  right: 15px;
}

.cpm-btn {
  width: 200px;
  height: 52px;
  color: #ffffff;
  padding: 10px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 18px;
}

.cpm-btn-danger {
  background-color: #f72840;
}

.cpm-btn-primary {
  background-color: #1880d9;
}

.cpm-selected .form-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 13px;
}

@media only screen and (max-width: 576px) {
  .cpm-section {
    padding: 20px 20px 140px 20px;
  }

  .cpm-modal .modal-bg > div {
    margin: 20px;
  }

  .cpm-btn {
    font-size: 16px;
  }

  .cpm-panel .panel-header {
    padding: 2px 0 22px;
  }
}

@media only screen and (max-width: 320px) {
  .cpm-btn span {
    font-size: 14px;
  }
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}