@charset "UTF-8";
/* CSS Document */

.ess-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
}
.ess-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.ess-option {
    background-color: #51626F;
    color: white;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
}
.ess-option:hover {
    background-color: #009794;
}
/* カスタム hover クラスを使う場合用 /* 通常色に戻す 
.ess-option.hover-fix {
    background-color: #51626F !important;  
    color: white !important;
}
*/
.ess-button {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: #c71585;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
}
        
.ess-button2 {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: #51626F;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
}
        
.ess-kbutton {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    color: #c71585;
    font-weight: bold;
    border: 2px solid #c71585;
    border-radius: 6px;
    cursor: pointer;
    font-size: 2rem;
    margin: 2rem;
}
        
.ess-button-container {
    text-align: center;
    margin-top: 2rem;
}
        
 .ess-result, #review-container {
     display: none;
     margin-top: 2rem;
     border-top: 1px solid #ccc;
     padding-top: 2rem;
}
        
.ess-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}
.ess-score-highlight {
    font-size: 2rem;
    color: #c71585;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}
.ess-result-message {
    background-color: #f8f9fa;
    border: 2px solid #51626F;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}
        
.ess-question h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
    background-color: #4682b4;
    position: relative;
    margin-top: 40px;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 44px;
    color: #ffffff;
    text-align: center;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}

/* 質問背景カラー用 */
.ess-question h3.bg1 {
    background-color: #a29088;
}
.ess-question h3.bg2 {
    background-color: #8BC6E1;
}
.ess-question h3.bg3 {
    background-color: #a29088;
}
.ess-question h3.bg4 {
    background-color: #8BC6E1;
}

        
 @media screen and (max-width: 600px) {
     .ess-options {
         grid-template-columns: 1fr;
     }
     .ess-question h3 {
         font-size: 16px;
     }
     .ess-option {
         font-size: 0.81rem;
         margin-left: 10px;
         margin-right: 10px
     }
     .ess-option:hover {
         background-color: #51626F;
     }
     .ess-result-message {
         margin-left: 5px;
         margin-right: 5px;
     }


}
