.faq-container{
    background-color: #DCDCDC; 
}

.layout-faq-container{
    width: auto;
    min-width: 425px;
    max-width: 500px;
    margin: 5px auto;
    background-color: white; 
    height: 100px;
    box-shadow: 2px 2px 4px gray;
}

.faq-title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.arrow-right {
    display: inline-block;
    border: solid black;
    border-width: 0 4px 4px 0; 
    padding: 6px;
    transform: rotate(-45deg);
    margin-left: 20px;
    vertical-align: middle;
    border-radius: 3px;
}
.faq-title span{
    font-size: large;
    font-style:bold;
    vertical-align: middle;
}

.faq-mark{
    width: 50px;
    height:70px;
    margin-right:20px;
}

.faq-content{
    background-color: white; /* 背景色を白に設定 */
    border: 1px solid black; /* 外枠を黒の細線に設定 */
    padding: 20px; /* 内側の余白を設定（任意） */
}

ul.faq-list {
    list-style: none; /* デフォルトのリストスタイルを無効にする */
    padding: 0;
}
ul.faq-list li {
    position: relative;
    padding-left: 2em; /* インデントを追加 */
}
ul.faq-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #000; /* 必要に応じて色を変更 */
}
.homepageListStyle{
    list-style-type: disc;
    position: relative; /* 相対位置を設定 */
    padding-left: 1.5em; /* テキストの左側にスペースを追加 */
    text-align: left; /* テキストを左揃えに */
}

.homepageIcon{
    position: absolute;
    left: 50px;
    width: 30px;
    top: 17px;
}



@media screen and (max-width: 480px) {
    .layout-faq-container{
        width: auto;
        padding: 20px;
        min-width: 315px;
        max-width: 482px;
        margin: 0 auto;
    }
}