body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, a, blockquote{
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    
}
.wrapper{
    padding: 14%;
}
.container{
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fdfcfc;
    background-image: linear-gradient(#eeeeee 1px, transparent 1px), linear-gradient(90deg, #eeeeee 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 30px;
}
section{
    max-width: 800px;
    margin: 0 auto;
}
.sub_title{
    margin: 10px auto;
    background: #ff914d;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 24px;
    padding: 2px 0px;
    width: 100%;
    max-width: 300px;
    text-align: center;

}
.sub_title span{
    display:inline-block;
    animation:waveText 5s ease-in-out infinite;
    animation-delay:2.5s;
}
.sub_title span:nth-child(1){ animation-delay:2.5s; }
.sub_title span:nth-child(2){ animation-delay:2.6s; }
.sub_title span:nth-child(3){ animation-delay:2.7s; }
.sub_title span:nth-child(4){ animation-delay:2.8s; }
.sub_title span:nth-child(5){ animation-delay:2.9s; }
.sub_title span:nth-child(6){ animation-delay:3s; }
.sub_title span:nth-child(7){ animation-delay:3.1s; }
.sub_title span:nth-child(8){ animation-delay:3.2s; }
.sub_title span:nth-child(9){ animation-delay:3.3s; }
.sub_title span:nth-child(10){ animation-delay:3.4s; }
.sub_title span:nth-child(11){ animation-delay:3.5s; }
.sub_title span:nth-child(12){ animation-delay:3.6s; }
@keyframes waveText{
    0%{
        transform:translateY(0);
    }
    2.5%{
        transform:translateY(-6px);
    }
    5%{
        transform:translateY(0);
    }
    100%{
        transform:translateY(0);
    }
}
.logo,.logo2 {
    max-width: 300px;
    width: 100%;
    display: block;
    margin: 0 auto; 
}
.intro-wrap{
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding-top: 40px;
}
.intro-img{
    width: 35%;
}
.intro-img img{
    width: 100%;
}
.intro-box{
    width: 65%;
    font-size: 16px;
}
.diagnosis-note{
    font-size:12px;
    line-height:1.7;
    color:#666;
    margin-top:20px;
}
.sub_title,
.logo,
.intro-img,
.intro-box{
    opacity:0;
    transform:translateY(-20px) scale(.95);
}
.sub_title{
    animation:popDown .6s cubic-bezier(.22,1,.36,1) forwards;
}
.logo{
    animation:
        popDown .8s cubic-bezier(.22,1,.36,1) forwards,
        logoShake 5s ease-in-out infinite;
    animation-delay:
        .2s,
        2s;
}
.intro-img{
    animation:popDown .7s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:.3s;
}
.intro-box{
    animation:popDown .7s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay:.45s;
}
@keyframes popDown{
    0%{
        opacity:0;
        transform:translateY(-25px) scale(.92);
    }
    70%{
        opacity:1;
        transform:translateY(4px) scale(1.02);
    }
    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes logoShake{
    0%{
        transform:rotate(0deg);
    }
    3%{
        transform:rotate(-3deg);
    }
    6%{
        transform:rotate(3deg);
    }
    9%{
        transform:rotate(-2deg);
    }
    12%{
        transform:rotate(2deg);
    }
    15%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(0deg);
    }
}
.intro h2,
.type-section h2{
    margin-top:30px;
    margin-bottom:20px;
    font-size:20px;
    background: #485e90;
    padding: 5px 10px;
    color: #fff;
}
.method-text{
    margin-bottom:14px;
}
.scale-guide{
    display:flex;
    justify-content: space-between;
}
.guide-item{
    padding:5px;
    font-weight: bold;
}
.method-img{
    position: relative;
    display: inline-block;
}
.method-base{
    display: block;
    width: 100%;
}
.method-hand{
    position: absolute;
    right: 20%;
    top: 15%;
    width: 10%;
    animation: pushHand 1.5s infinite ease-in-out;
}
.method-sp{
    display: none;
}
.method-pc{
    display: block;
    margin-top: 20px;
    
}
@keyframes pushHand{
    0%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(-25%,25%);
    }
    100%{
        transform: translate(0,0);
    }
}
.type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.type-card{
    background:white;
    border-radius:12px;
    padding:24px 18px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}
.type-card.show{
    opacity:1;
    transform:translateY(0);
}
.type-img{
    width:90%;
    margin-bottom:12px;
}
.type-card h3{
    font-size:18px;
    margin:10px 0 8px;
    border:none;
}
.type-card-text{
    text-align: left;
    font-size: 18px;
}
.example{
    margin-top:10px;
    color:#888;
    text-align: left;
}
.logo-p{
    width: 60%;
    margin: 0px auto 20px;
}
.user-info{
    padding: 16px;
    background: #fff;
    border: solid 1px #BDBDBD;
    border-radius: 10px;
    margin-top: 10px;
}
.info-title{
    font-weight: 600;
    margin-bottom:8px;
}
.info-item{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;
    margin-bottom: 20px;
}
.submit_area_start{
    display: none;
}
.submit_area,.submit_area_pc{
    text-align:center;
    margin-top:30px;
}
.submit_area input,.submit_area_pc input{
    background:#4CAF50;
    color:#fff;
    border:none;
    padding:14px 40px;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
    margin-bottom: 10px;
}
.submit_area input:hover,.submit_area_pc input:hover{
    background:#327134;
}
.progress-wrap{
    margin: 0 auto 30px;
    position:sticky;
    top:6%;
    background:#fff;
    padding:6px 10px;
    border:1px solid #ddd;
    z-index:100;
}
.progress-bar{
    height:8px;
    background:#4CAF50;
    width:0%;
    border-radius:4px;
    transition:0.3s;
}
.p-text{
    text-align: right;
    position: absolute;
    color: #666;
    bottom: 6px;
    right: 70px;
}
.progress-text{
    text-align:right;
    margin-top:4px;
    color:#666;
}
.question{
    background:#fff;
    border-radius:10px;
    padding:18px 10px;
    margin-bottom:18px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.question.answered{
    border-left:5px solid #4CAF50;
}
.question.unanswered{
    border-left:4px solid #e53935;
}
.qtext{
    font-weight:600;
    font-size:18px;
    margin-bottom:14px;
}
.qtext span{
    color:#4CAF50;
}
.scale-labels{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    font-size:18px;
    color:#666;
    margin-bottom:6px;
}
.scale-labels span{
    text-align:center;
}
.scale-inputs{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:6px;
}
.scale-inputs label,.info-item label{
    text-align:center;
    cursor:pointer;
}
.scale-inputs input,.info-item input{
    display:none;
}
.scale-inputs span,.info-item span{
    display:block;
    padding:12px 0;
    background:#eee;
    border-radius:6px;
    font-weight:600;
}
.scale-inputs input:checked + span,.info-item input:checked + span{
    background:#4CAF50;
    color:#fff;
}
.scale-inputs span:hover,.info-item span:hover{
    background:#ddd;
}
.result h2{
    color:#F44336;
    text-align:center;
    margin-bottom: 10px;
}
.radar-type{
    background: #fff;
    border: solid 1px #BDBDBD;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}
.radar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.radar-wrap svg {
    max-width: 320px;
    height: auto;
}
.radar-wrap polygon {
    fill: none;
}
.radar-wrap line {
    stroke: #ddd;
    stroke-width: 1;
}
.radar-wrap text {
    font-size: 14px;
    fill: #333;
    font-weight: bold;
    text-anchor: middle;
}
#scoreShape {
    fill: rgba(54, 162, 235, 0.25);
    stroke: #36a2eb;
    stroke-width: 2;
    transform-origin:center;
    transform:scale(0);
    animation:radarGrow .8s ease-out forwards;
}
@keyframes radarGrow{
    0%{
        transform:scale(0);
        opacity:0;
    }
    70%{
        transform:scale(1.05);
        opacity:1;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}
.your-type-main {
    margin: 10px;
    opacity:0;
    transform:translateY(30px);
    animation:typeFadeUp .7s ease-out forwards;
    animation-delay:.35s;
}
@keyframes typeFadeUp{
    0%{
        opacity:0;
        transform:translateY(30px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
    }
}
.your-type-label {
    font-size: 14px;
    color: #6b7280;
}
.your-type-content h3 {
    font-size: 28px;
    margin: 6px auto 16px;
    color: #ffffff;
    border-radius: 18px;
    background: #f44336;
    text-align: center;
    transform:scale(.9);
    opacity:0;
    animation:titlePop .5s ease-out forwards;
    animation-delay:.7s;
}
@keyframes titlePop{
    0%{
        transform:scale(.85);
        opacity:0;
    }
    70%{
        transform:scale(1.05);
        opacity:1;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}
.small{
    font-size: 20px;
}
.your-type-text {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.your-type-job-title{
    padding: 12px;
    margin: 20px auto;
    color: #F44336;
    border-bottom: solid 2px;
    border-top: solid 2px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.your-type-job-text{
    font-size: 14px;
    text-align: left;
}
.job-keyword-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px;
    background: #fff;
    border: 2px solid #e6e6e6;
    border-radius: 6px;
    text-decoration: none;
    color: #1a73e8;
    margin: 12px auto;
}

.job-keyword-link:hover {
    background: #f2f7ff;
}

.job-keyword-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a73e8;
    border-radius: 50%;
    overflow: hidden;
}

.job-keyword-icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

/* テキストは必ず左詰め */
.job-keyword-text {
    font-size: 14px;
    color: inherit;
    line-height: 1.4;
}
.three_result{
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    background: #485e90;
    color: #fff;
    margin-bottom: 20px;
}
.result-card{
    position:relative;
    background:#fff;
    padding:22px;
    margin:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    opacity:0;
    transform:
        translateY(20px)
        scale(.92);
    transition:
        opacity .5s ease,
        transform .5s cubic-bezier(.22,1.4,.36,1);
}
.result-card.show{
    opacity:1;
    transform:
        translateY(0)
        scale(1);
}
.result-rank{
    position:absolute;
    top:-12px;
    left:-12px;
    color:white;
    font-size:18px;
    font-weight:bold;
    padding:6px 12px;
    border-radius:20px;
    transform:scale(0);
}
.result-rank.show{
    animation:rankPop .5s cubic-bezier(.22,1.5,.36,1) forwards;
}
@keyframes rankPop{
    0%{
        transform:scale(0);
    }
    60%{
        transform:scale(1.3);
    }
    100%{
        transform:scale(1);
    }
}
.result-main{
    display:flex;
    align-items:center;
    gap:18px;
}
.result-icon{
    width: 30%;
}
.result-type-img{
    width:100%;
}
.result-content h3{
    margin:0 0 6px;
    font-size:20px;
}
.result-btn{
    text-align:center;
    margin-top:30px;
}
.job-search-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:14px 30px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}
.job-search-btn:hover{
    opacity:0.9;
}
.type-save-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}
.type-keep-text{
    font-size: 15px;
    font-weight: bold;
}
.scout_menu{
    font-weight: bold;
    text-decoration: none;
    background: #3F51B5;
    padding: 10px 0px;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    border: solid 1px #ffffff;
    border-radius: 999px;
    margin: 20px auto 0px;
    box-shadow: 2px 2px 9px #0000005c;
}
.type-save-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}
.type-save-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}
.type-save-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.type-save-form input[type="email"]:focus {
    border-color: #2563eb;
    outline: none;
}
.submit_ar{
    text-align: center;
}
.submit_ar button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.submit_ar button:hover {
    opacity: 0.9;
}
.result-message {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
}
.result-message-title{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
}
.result-message-text{
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}
.result-message .btn {
    display: block;
    background: #2563eb;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.result-message .btn:hover {
    opacity: 0.9;
}
.scout-promo {
    margin: 20px auto;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.scout-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e293b;
}
.scout-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #334155;
}
.scout-list li {
    margin-bottom: 6px;
    line-height: 1.5;
}
.scout-list li::marker {
    color: #2563eb;
}

/* スマホ */
@media (max-width:600px){
    .wrapper{
        padding: 24% 3% 10%;
    }
    .container{
        padding: 20px;
    }
    .intro-wrap{
        display: block;
        padding-top: 20px;
    }
    .intro-img, .intro-box{
        width: 100%;
        margin-bottom: 10px;
    }
    .intro h2,
    .type-section h2,
    .guide-item{
        font-size:18px;
    }
    .method-box,.result-box,.type-grid{
        padding: 0px 10px;
    }
    .scale-guide{
        display:grid;
    }
    .method-sp{
        display: block;
    }
    .method-hand{
        position: absolute;
        right: 0%;
        top: 15%;
        width: 25%;
        animation: pushHand 1.5s infinite ease-in-out;
    }
    .method-pc{
        display: none;
    }
    .type-grid{
        grid-template-columns:1fr;
    }
    .type-card{
        padding:16px;
    }
    .submit_area_pc{
        display: none;
    }
    .submit_area_start{
        display: block;
        text-align:center;
        position:fixed;
        bottom:0;
        left:0;
        background:#ffffffde;
        padding:10px 0;
        width:100%;
        z-index:1000;
        animation:slideUp .5s ease-out;
    }
    @keyframes slideUp{
        0%{
            transform:translateY(100%);
            opacity:0;
        }
        100%{
            transform:translateY(0);
            opacity:1;
        }
    }
    .submit_area_start.stop{
        position: relative;
        margin-bottom: 40px;
        padding: 0;
    }
    .submit_area_start input{
        background:#4CAF50;
        color:#fff;
        border:none;
        margin-bottom: 10px;
        padding:16px 40px;
        font-size:18px;
        font-weight:bold;
        border-radius:14px;
        cursor:pointer;
        width:80%;
        box-shadow:
            0 6px 0 #327134,
            0 10px 20px rgba(0,0,0,.15);
        transition:
            transform .08s,
            box-shadow .08s,
            background .2s;
    }
    .submit_area_start input:hover{
        background:#43a047;
    }
    .submit_area_start input:active{
        transform:translateY(4px);
        box-shadow:
            0 2px 0 #327134,
            0 4px 10px rgba(0,0,0,.12);
    }
    .submit_area_start p{
        font-size: 12px;
        margin-top: 10px;
    }
    .progress-wrap{
        top:4.5%;
    }
    .qtext{
        font-size:16px;
    }
    .scale-labels{
        font-size:12px;
    }
    .scale-inputs span,.info-item span{
        padding:14px 0;
    }
    .radar-type{
        padding: 10px 5px;
    }
    .your-type-main {
        text-align: center;
    }
    .your-type-content h3 {
        font-size: 26px;
    }
    .your-type-text {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }
    .your-type-job{
        text-align: left;
        font-size: 14px;
    }
    .result-main{
        flex-direction:column;
        text-align:center;
    }
    .result-icon{
        width: 80%;
    }
}