@charset "utf-8";

/* ==

SNSアカウント連携

============================================================= */
.col-lg-6{
	max-width:750px !important;
}

.options::after{
   content: "";
   clear: both;
   display: block;
}

.options div{
	width:320px;
	float:left;
	margin-left:10px;
}

.gtsu,.gtsi{
	margin-top:50px;
}

#next{
	max-width:320px;
}

.buttons button,.buttons a{
	max-width:320px;
	color:#FFF !important;
	padding:10px 16px;
	font-size:1.4em !important;
	font-weight: 600 !important;
	margin-bottom:25px;
}

#suBtn{
	background-color:#b22222;
}

#suBtn:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #b77777;
  color: #fff;
}

#createAccount{
    margin-top: 4rem;
    margin-right: 0px;
    margin-bottom: 1.2rem;
    margin-left: 0px;
    padding: 10px 16px;
}

.buttons a,#createAccount{
    background-image: none;
    background-color: #333333;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 600 !important;
    height: inherit;
    line-height: 1.3333333;
    text-align: center;
    text-decoration:none !important;
    touch-action: manipulation;
    user-select: none;
    white-space: nowrap;
    width: inherit;
    -moz-user-select: none;
    -ms-touch-action: manipulation;
    -ms-user-select: none;
    -webkit-user-select: none;
    color: #fff !important;
    width: 63%;
	max-width:320px;
}

#createAccount:hover,.buttons a:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #666666;
  color: #fff;
}

#createAccount{
	background-color:#b22222;
}

.hideBlock{
  display:none !important;
}

/* ローディング 回転表示(進捗表示無し) */
/*
#overlay{ 
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
  margin: 0 -8px;
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% { 
      transform: rotate(360deg); 
  }
}
*/
/* ローディング 進捗表示 */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    display: grid;
    height: 100%;
    text-align: center;
    place-items: center;
    background: #dde6f0;
}
*/

#overlay{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
  margin: 0 -8px;
}

.circular {
    height: 100px;
    width: 100px;
    margin-top: -50px;
    margin-left:-50px;
    /* position: relative; */
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%,-50%); */
}

.circular .inner,
.circular .outer,
.circular .circle {
    position: absolute;
    z-index: 6;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
}

/*真ん中の円*/
.circular .inner {
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    background-color: #585858;
    border-radius: 100%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.circular .circle {
    z-index: 1;
    box-shadow: none;
}

/*文字色*/
.circular .numb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

/*進捗バーの色１*/
.circular .bar {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #afafaf;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    clip: rect(0px, 100px, 100px, 50px);
}

.circle .bar .progress {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    clip: rect(0px, 50px, 100px, 0px);
}

/*進捗バーの色２*/
.circle .bar .progress,
.dot span {
    background:#0078D4;
}

.circle .left .progress {
    z-index: 1;
    animation: left 6000ms linear both;
}

@keyframes left {
    100% {
        transform: rotate(180deg);
    }
}

.circle .right {
    z-index: 3;
    transform: rotate(180deg);
}

.circle .right .progress {
    animation: right 6000ms linear both;
    animation-delay: 6000ms;
}

@keyframes right {
    100% {
        transform: rotate(180deg);
    }
}

.circle .dot {
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 10px;
    margin-top: -5px;
    animation: dot 12000ms linear both;
    transform-origin: 0% 50%;
}

.circle .dot span {
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

@keyframes dot {
    0% {
        transform: rotate(-90deg);
    }

    50% {
        transform: rotate(90deg);
        z-index: 4;
    }

    100% {
        transform: rotate(270deg);
        z-index: 4;
    }
}

