/* [project]/src/styles/google-button.css [app-client] (css) */
.gsi-material-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  letter-spacing: .25px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fff;
  background-image: none;
  border: 1px solid #747775;
  border-radius: 8px;
  outline: none;
  width: 100%;
  max-width: 250px;
  height: 44px;
  padding: 0 16px;
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  position: relative;
  overflow: hidden;
}

.gsi-material-button .gsi-material-button-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 12px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.gsi-material-button .gsi-material-button-contents {
  text-overflow: ellipsis;
  vertical-align: top;
  flex-grow: 1;
  font-family: Roboto, arial, sans-serif;
  font-weight: 600;
  overflow: hidden;
}

.gsi-material-button .gsi-material-button-state {
  opacity: 0;
  transition: opacity .218s;
  position: absolute;
  inset: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents, .gsi-material-button:disabled .gsi-material-button-icon {
  opacity: .38;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  opacity: .12;
  background-color: #303030;
}

.gsi-material-button:not(:disabled):hover {
  box-shadow: 0 1px 2px #3c40434d, 0 1px 3px 1px #3c404326;
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  opacity: .08;
  background-color: #303030;
}

/* [project]/src/styles/line-button.css [app-client] (css) */
.line-login-button {
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-image: url("/assets/oauth/line/line-button.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 44px;
  margin: 0;
  padding: 0 20px;
  transition: transform .1s, box-shadow .2s, opacity .2s;
  display: flex;
  position: relative;
}

.line-login-icon {
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  left: 12px;
}

.line-login-text {
  color: #fff;
  letter-spacing: .3px;
  white-space: nowrap;
  padding-left: 56px;
  padding-right: 20px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.line-login-button:not(:disabled):hover {
  opacity: .9;
  box-shadow: 0 2px 4px #0000001a;
}

.line-login-button:not(:disabled):active {
  opacity: .8;
  transform: scale(.98);
}

.line-login-button:focus {
  outline-offset: 2px;
  outline: 2px solid #06c755;
}

.line-login-button:focus:not(:focus-visible) {
  outline: none;
}

.line-login-button:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.line-login-button:disabled .line-login-text {
  color: #fff9;
}

/* [project]/src/styles/x-button.css [app-client] (css) */
.x-login-button {
  appearance: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-color: #000;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 44px;
  padding: 0 20px;
  transition: background-color .2s, transform .1s, box-shadow .2s;
  display: flex;
  position: relative;
}

.x-login-icon {
  color: #fff;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 18px;
}

.x-login-text {
  color: #fff;
  letter-spacing: .2px;
  white-space: nowrap;
  text-align: left;
  flex: 1;
  padding-left: 56px;
  padding-right: 20px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.x-login-button:not(:disabled):hover {
  background-color: #1a1a1a;
  box-shadow: 0 2px 8px #0000004d;
}

.x-login-button:not(:disabled):active {
  background-color: #2a2a2a;
  transform: scale(.98);
}

.x-login-button:focus {
  outline-offset: 2px;
  outline: 2px solid #1d9bf0;
}

.x-login-button:focus:not(:focus-visible) {
  outline: none;
}

.x-login-button:disabled {
  cursor: not-allowed;
  opacity: .4;
  background-color: #000;
}

.x-login-button:disabled .x-login-text {
  color: #fff9;
}

/*# sourceMappingURL=src_styles_0ak4r9a._.css.map*/