@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}
.sub-title{
  color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.6px;
    margin-bottom: 24px;
    text-align: center;
}
.radio-container {
  display: inline-block;
  position: relative;
  margin-right: 16px;
   color: #333;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
letter-spacing: 1.4px;
}

.radio-container input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.radio-check {
  display: block;
  padding-left: 32px;
  background-image: url(../images/radio.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 24px;
}

.radio-container input:checked~.radio-check {
  background-image: url(../images/radio-1.svg);
}
.loading{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100svh;
  opacity: 0.8;
}
.loading img{
  width: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
b{
  font-weight: 500;
  color: #333;
}
.btn-box{
  margin-bottom: 12px;
}
.btn{
  display: block;
  width: 100%;
  padding: 16px 16px 16px 24px;
  color:  #FFF;
font-size: 16px;
font-weight: 700;
letter-spacing: 0.1em;
border-radius: 4px;
background-color: #B72F2A;
background-image: url(../images/next.svg);
background-position: center right 16px;
background-repeat: no-repeat;
background-size: 32px;
outline: none;
border: none;
text-decoration: none;
}
.btn:hover{
  background-color: #85231f;
}
.input-group{
  position: relative;
  margin-bottom: 24px;
    color:  #000;
font-size: 16px;
font-weight: 500;
line-height: 1.6;
}
.form-label{
  display: block;
  color:  #000;
font-size: 16px;
font-weight: 500;
line-height: 1.6;
letter-spacing: 0.1em;
margin-bottom: 8px;
}
.form-label span{
  color:#B72F2A ;
  font-size: 14px;
  vertical-align: top;
}
.from-input{
  width: 100%;
  border-radius: 8px;
border: 1px solid #E7E7E9;
background: #FFF;
color: #000;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
letter-spacing: 1.4px;
padding:8px 16px;
outline: none;
background-color: #fff;
}
.from-input:focus{
  border: 1px solid rgb(0, 97, 147);
}


::placeholder {
  color: #999;
}


.banner {
  position: relative;
  width: 100%;
  max-width: 568px;
  margin: 0 auto 40px auto;
}

.banner img {
  width: 100%;
}
.container {
  padding:0;
  background-image: url(../images/bg.jpg);
  background-position: top center;
  background-size: 60px;
}

.box {
  width: 100%;
  padding: 40px 24px;
  max-width: 616px;
  margin: 0 auto;
}
.title{
  color: #000;
font-size: 40px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 3px;
margin-bottom: 12px;
text-align: center;
}
.title.fix{
  color: #f00800;
}
.slogan{
  color: #333;
font-size: 32px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 3px;
margin-bottom: 12px;
text-align: center;
}
.notice{
    color: #666;
font-size: 14px;
font-weight: 400;
line-height: 1.6;
letter-spacing: 1.4px;
text-align: justify;
padding-top: 12px;
}
.notice h3{
    color: #000;
font-size: 18px;
font-weight: 500;
margin-bottom: 12px;
}
.notice h5{
    color: #333;
font-size: 16px;
font-weight: 500;
margin-bottom: 8px;
}
.notice p{
  margin-bottom: 12px;
}

.notice > ol{
  list-style-type: decimal;
  margin-bottom: 12px;
  padding-left: 1.8em;
}
.notice > ol > li ol{
  list-style-type:lower-alpha;
  margin-bottom: 0;
  padding-left: 1.8em;
  margin-bottom: 6px;
}
.notice ul{
  list-style-type:disc;
  margin-bottom: 0;
  padding-left: 1.8em;
}
.note-sm{
  font-size: 90%;
  opacity: 0.9;
}

