@charset "UTF-8";

.main-color{
  background-color: #747070;
}
.sub-color{
  background-color: #c0c0c0;
}

pre{
  font-family: "Hiragino Kaku Gothic Pro", sans-serif, Meiryo, "MS PGothic", "MS UI Gothic", Helvetica, Arial;
}

button{
 cursor: pointer;
}

.hidden{
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  top:0;
  left:0;
}

/* ラジオボタン(チェックボックス) カスタム */
/*↓↓chikada*/
.radio_label input[type="radio"] {
  display: none;
}
.radio_label span:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 2px;
  background-clip: content-box;
}
.radio_label {
  margin-right: 10px;
}

input[type="radio"]:not(:checked) + span:before {
  border-color: #c0c0c0;
}

input[type="radio"]:checked + span:before {
  border-color: #c0c0c0;
  background-color: #404040;
}
/*チェックボックス*/
.checkbox_label input[type="checkbox"] {
  display: none;
}
.checkbox_label span {
  position: relative;
}
.checkbox_label span:before {
  content: "";
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid #c0c0c0;
}
.checkbox_label span:after {
  content: "";
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;
  position: absolute;
  display: none;
  top: 5.5px;
  left: 5px;
  width: 5px;
  height: 11px;
  transform: rotate(40deg);
}
.checkbox_label {
  margin-right: 10px;
}

input[type="checkbox"]:not(:checked) + span:before {
  border-color: #c0c0c0;
}

input[type="checkbox"]:checked + span:after {
  display: block;
}
/*↑↑chikada*/

.org_radio{
  display: none;
}
.org_radio + label{
  position:relative;
  padding-left: 20px;
  margin-right: 10px;
}
.org_radio + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
}
.org_radio:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom:0;
  left: 3px;
  margin: auto;
  width: 9px;
  height: 9px;
  background: #404040;
  border-radius: 50%;
}

.org_checkbox {
    display: none;
}
.org_checkbox + label{
  position:relative;
  padding-left: 30px;
  margin-right: 10px;
}
.org_checkbox + label::before{
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border: 1px solid #c0c0c0;
}
.org_checkbox:checked + label::after{
  content: "";
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -7px;
  width: 5px;
  height: 11px;
  transform: rotate(40deg);
}

/* エントリ　完了画面 */
.complete_container{
  margin: 120px;
  font-size: 20px;
  font-size: 2.0rem;
}
.complete_title {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
}


/* エラー画面 */
#page_error{
  -webkit-print-color-adjust: exact;
  height: calc(100% - 80px);
  margin-top: 80px;
}


/* -------------------------------------------------------------------- */
/* CSS Transition 単発で変化させる場合 */
.transition{
  color: #fff;
  background-color: #333;
  transition-property: all;         /* 対象となるcssプロパティの指定 */
  transition-duration: 0.5s;        /* 所要時間 */
  transition-timing-function: ease; /* 変化の仕方 */
  transition-delay: 1s;             /* 遅延時間 */
}

/* CSS Animation キーフレームアニメーションを適用し何度も変化させる場合 */
.anim_sc {
  transform: scale(1.5, 1.5) rotate(90deg);             /* 回転:rotate、拡大縮小:scale、傾斜:skew、移動:translate*/
  animation-name: anim_sc;                /* keyframesの名前 */
  animation-timing-function: ease-in-out; /* 変化の仕方 linear:等速, ease-in:ゆっくり始まり、終了まで加速 ease-out:速く始まり、速度を落としながら, ease-in-out:加速しながら始まり、減速しながら終わる*/
  animation-iteration-count: infinite;    /* 繰り返し回数 無限*/
  animation-direction: alternate;         /* アニメーションの向き normal:順方向、終わったらリセット, reverse:逆方向、終わったらリセット, alternate:反転しながらループ、初回は順方向, alternate-reverse:反転しながらループ、初回は逆方向*/
  animation-duration: 0.5s;               /* 所要時間 1回のアニメーション周期 */
}

@keyframes anim_sc {
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes arrow_r {
  0% {
    left: 0px;
  }
  50% {
    left: 4px;
  }
  100% {
    left: 0px;
  }
}
@keyframes arrow_l {
  0% {
    left: 0px;
  }
  50% {
    left: -4px;
  }
  100% {
    left: 0px;
  }
}
.arrow_r{
  position: relative;
  display: inline-block;
  padding-left: 20px;
  animation: arrow_r 1.0s ease-out infinite;
  -webkit-animation: arrow_r 1.0s ease-out infinite;
}

.arrow_r::before{
 content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 3px #747070;
  border-right: solid 3px #747070;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -20px;
}
.arrow_r::after{
 content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 3px #747070;
  border-right: solid 3px #747070;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -20px;
}
.arrow_l{
  position: relative;
  display: inline-block;
  padding-left: 20px;
  animation: arrow_l 1.0s ease-out infinite;
  -webkit-animation: arrow_l 1.0s ease-out infinite;
}

.arrow_l::before{
 content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 3px #747070;
  border-right: solid 3px #747070;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -20px;
}
.arrow_l::after{
 content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 3px #747070;
  border-right: solid 3px #747070;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -20px;
}