:root {
    --primary: #005745;
    --secondary: #00a48d;
    --focus: #e6002d;
    --green: #8fc31f;
    --light-primary: #85cbbf;
    --red: #e6002d;
    --pink: #f091a0;
    --gray: #bababa;
    --blue: #c60021;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --orange: #fd7e14;
    --yellow: #f6c23e;
    --teal: #20c9a6;
    --cyan: #36b9cc;
    --white: #fff;
    --gray-dark: #5a5c69;
    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --danger: #e74a3b;
    --light: #f8f9fc;
    --dark: #5a5c69;
    --font_color: #4B4748;
    --block-Spacing: 1.5rem;
    --paragraph-size: 70px;
    --head-height: 75px;
}

.card{
    border: none;
   
}

.card-body {
    margin-top: 1rem;
}

.card-title{
    letter-spacing: 15px;
}


/* 段落的小圓點 */
.dot {
    display: inline-block;
    width: 20px; /* 圓點的大小 */
    height: 20px; /* 圓點的大小 */
    background-color: #D9D9D9; /* 圓點顏色 */
    border-radius: 50%; /* 圓點樣式 */
    margin-right: 20px; /* 圓點和文字之間的間距 */
}

/* 浮動的 Line 標誌樣式 */
.floating-line {
    position: fixed; /* 固定位置，隨滾動條滾動 */
    right: 20px; /* 距離畫面右側 20px */
    top: 50%; /* 頂部距離為畫面高度的一半 */
    transform: translateY(-50%); /* 讓元素垂直居中 */
    z-index: 1000; /* 確保位於其他內容之上 */
}
  
.floating-line img {
    width: 80px;
    height: auto; /* 保持比例 */
    /*border-radius: 50%;*/ /* 圓形圖標（可選） */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);  */
    transition: transform 0.3s; /* 滑鼠懸停動畫 */
}
  
.floating-line img:hover {
    transform: scale(1.1); /* 滑鼠懸停放大 */
}
/* 浮動的 Line 標誌樣式 */

.slogan_img{
    position: absolute;
    right: 35px;
    top: 150px;
    z-index:999;
}

/* 段落的大圓點 */
.paragraph img{
    width:var(--paragraph-size);
    margin-right: 10px; /* 小圖與文字之間的間距 */
    margin-left: 3rem; /* 小圖與文字之間的間距 */
}

.paragraph .text{
    font-family: 'Libre Bodoni', serif;
    font-size: 12px;
    letter-spacing: 3px;
}

.custom-card-left {
    border-radius: 100px 0 0 100px; /* 左上角和左下角有圓角，右上角和右下角無圓角 */
}    

.custom-card-right {
    border-radius: 0px 80px 80px 0px; /* 左上角和左下角有圓角，右上角和右下角無圓角 */
}


.Arrange-text{
    display: flex;
    justify-content: space-around;
}

.Arrange-text p{
    color: #8D5C5C;
    font-weight: bold;
    font-size: 26px;
}

.faq-container {

}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* 問題之間的間距 */
    justify-self: center;
}

.faq-item {
    display: flex;
    align-items: flex-start;
}

.faq-number {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-right: 20px;
    position: relative;
    min-width: 50px;
    text-align: center;
}

.faq-number::after {
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    background-color: #ddd;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-content p {
    margin: 5px 0;
    line-height: 1.6;
    font-size: 20px;
}

.faq-content p strong {
    color: #000;
    font-size: 20px;
}

.notice{
    /* justify-items: center; */
    text-align: center;
}

.notice p{
    font-weight: bold;
    font-size: 26px;
}

@media (max-width: 930px){
    .notice p{
        font-size: 16px;
    }
}