@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    faq.css / kanekalon PC_H
---------------------------------------------------------------------------------------------------------------------
*/

.article_line {
    width: 100%;
    height: 1px;
    margin: 0 auto 0 auto;
    border-bottom: 1px solid #000000;
}

.article_space {
    width: 100%;
    height: 66px;
    background-color: transparent;
}

.article_title {
    width: 100%;
    height: 42px;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
}

.title_en {
    font-family: 'Gotham', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 42px;
    margin-left: -2px;
    margin-right: 19px;
    letter-spacing: 0.06em;
}

.title_jp {
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
}

.title_en2 {
    font-family: 'Gotham', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 46px;
    margin-left: -2px;
    margin-right: 0;
    letter-spacing: 0.04em;
}

.reg_mark {
    display: inline-block;
    font-size: 0.85em;
    vertical-align: top;
    margin-top: -0.2em;
}

/*-------------------------------------------------------------------------------------------------------------------
*/

.article_faq {
    width: 980px;
    min-height: 100px;
    margin: 32px auto 0 auto;
    padding: 16px 16px 0 16px;
    text-align: center;
}

.faq {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0px;
    border: 1px solid #ccc;
}

/* アコーディオンのヘッダー（Q部分） */
.q_catch {
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 0.10em;
    text-align: left;
    background-color: rgba(240, 240, 240, 1);
    display: block;
    cursor: pointer;
    /* 右側にアイコン用のスペースを確保（テキストが重ならないように） */
    padding: 15px 50px 15px 22px; 
    position: relative;
    user-select: none; 
}

.q_catch:hover {
    background-color: #c0c0c0;
}

/* 質問文のテキストと番号のレイアウト */
.q_catch p {
    display: flex;
    align-items: flex-start;
    margin: 0; 
}

.q_number {
    flex-shrink: 0;       
    padding-right: 12px;  
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

.q_text {
    flex: 1;    
    line-height: 1.5;
}
.q_note {
    font-size: 0.8em;
    font-weight: normal;
}
.q_number .q_note {
    font-size: 0.8em;
    font-weight: normal;
}

/* デフォルトの矢印を非表示にする */
summary {
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}

/* +記号の追加とスタイル */
.q_catch::after {
    content: '+';
    position: absolute;
    right: 20px; /* 位置を固定 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* 開いたときの+を-に変える */
details[open] .q_catch::after {
    content: '−';
}

.a_text {
    width: 100%;
    margin: 0;
    padding: 13px 8px 13px 8px;
    font-size: 15px;
    line-height: 1.9em;
    letter-spacing: 0.056em;
    text-align: left;
}
            
.a_text ul {
    margin-left: 2em;
    list-style-type: none;
}

.a_text p{
    margin: 1em;
}

.a_text ul li { 
    margin: 0.25em;
    list-style-type: '-  ';
}   

.a_note {
    font-size: 0.8em;
}
/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1100px) {
    .article_faq {
        width: 90%;
    }

    .faq {
        width: 100%; /* 親要素(article_faq)に対して100%に調整 */
    }

    .q_catch {
        font-size: 20px;
    }

    .a_text {
        width: 100%;
        margin: 8px 0 0 0;
        padding: 0 0 8px 0;
    }
}

@media screen and (max-width: 800px) {
    .faq .q_catch {
        font-size: 18px;
        padding-right: 45px; /* モバイル向けに右余白を微調整 */
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .article_space {
        height: 40px;
    }

    .article_title {
        display: none;
    }

    .title_top {
        display: block;
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        font-family: 'Gotham', sans-serif;
        font-size: 19px;
        font-weight: 500;
        line-height: 29px;
        letter-spacing: 0.14em;
        color: #ffffff;
    }

    .article_faq {
        width: 92%;
        margin: 12px auto 0 auto;
        padding: 2px 8px 8px 8px;
    }

    .q_catch {
        font-size: 14.7px;
        line-height: 1.6em;
        padding: 15px 40px 15px 15px; /* 右側の余白を40pxに固定してアイコンとの衝突を防ぐ */
    }
 
    .q_number {
        padding-right: 8px;  
        font-size: 12px;
    }

    .q_text {
        font-size: 14px;
    }
    
    .q_catch::after {
        right: 15px; /* アイコンを少し内側へ */
        font-size: 18px;
    }
    
    .a_text {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.7em;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
    .article_faq {
        width: 95%;
    }

    .q_catch {
        font-size: 14.7px;
        padding: 12px 40px 12px 12px;
    }

    .q_number {
        padding-right: 8px;  
        font-size: 11px;
    }
    
    .q_catch::after {
        right: 12px;
        font-size: 16px;
    }    
    
    .a_text {
        font-size: 12px;
        padding: 10px;
    }
}