@charset "utf-8";

:root {
    --main: #805EDE;
    --lightmain:rgba(128, 94, 222, 0.3);;
    --font: #222222;
    --link: #CF1010;
    --info: #F1F6F8;
    --line: #E2E2E2;
    --yellow: #d9a800;
}

img {
    vertical-align: bottom;
    width: 100%;
}

section {
    margin-bottom: 100px;
}

.ntv-wrapper {
    margin-bottom: 0;
}

.sp_block {
    display: none;
}

.mb20 {
    margin-bottom: 20px;
}

/*チェック*/
.CheckboxInput {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.CheckboxInput-Input {
    margin: 0;
    width: 0;
}

/*チェック中身*/
.CheckboxInput-Input:checked + .CheckboxInput-DummyInput::before,
.CheckboxInput-Input:checked + .CheckboxInput-DummyInput::after {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    left: 60%;
    height: 3px;
    transform-origin: 2px 2px;
    background: var(--main);
}

.CheckboxInput-Input:checked + .CheckboxInput-DummyInput::before {
    width: 40%;
    transform: translate(-6px, 4px) rotateZ(-135deg);
}
.CheckboxInput-Input:checked + .CheckboxInput-DummyInput::after {
    width: 76%;
    transform: translate(-5px, 5px) rotateZ(-45deg);
}

/*チェック前の箱*/
.CheckboxInput-DummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 2px solid #AAAAAA;
    border-radius: 2px;
}

.CheckboxInput-LabelText {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 8px;
    display: block;
}

#goiken {
    line-height: 200%;
    letter-spacing: 0.05em;
    color: var(--font);
    background: #fff;
}

.goiken-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

#goiken h2 {
    font-weight: 700;
    font-size: 2rem;
    padding: 10px;
    margin-bottom: 20px;
    color: #fff;
}

#goiken h2.yellow {
    background-color: var(--yellow);
}

#goiken h3 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

#goiken h3::before {
    content: "◆ ";
    color: var(--yellow);
}

#goiken h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--yellow);
}

#goiken a {
    color: var(--link);
    text-decoration: underline;
}

/*デフォルトボタン*/
#goiken .goiken-btn {
    text-decoration: none;
    font-weight: 700;
    background-color: var(--lightmain);
    border-radius: 4px;
    color: #fff;
    display: flex;
    font-size: 1.6rem;
    padding: 25px;
    width: 50%;
    align-items: center;
    justify-content: center;
    pointer-events:none;
    transition: all 0.3s ease;
}

#goiken .goiken-btn::after {
    content: "";
    background: url(../images/icon-link-none.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-left: 10px;
}
/*アクティブボタン*/
#goiken .goiken-btn-active {
    text-decoration: none;
    font-weight: 700;
    background-color: var(--main);
    border-radius: 4px;
    color: #fff;
    display: flex;
    font-size: 1.6rem;
    padding: 25px;
    width: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    transition: all 0.3s ease;
}

#goiken .goiken-btn-active::after {
    content: "";
    background: url(../images/icon-link.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

#goiken .goiken-btn-active:hover {
    opacity: .5;
    transition: all 0.3s ease;
}

.goiken-mv {
    text-align: center;
    background-image: 
        url(../images/main-left.png),
        url(../images/main-right.png),
        linear-gradient(180deg, #B174FF 0%, #6345B8 100%);
    background-position: left 0 , right 0;
    background-size: contain;
    background-repeat:no-repeat;
    color: #fff;
    padding: 65px 15px;
}

.goiken-mv h1 {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 180%;
}

.goiken-mv p {
    font-size: 1.4rem;
}

.goiken-form-list {
    margin-bottom: 50px;
}

.check-area {
    background: var(--info);
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.bangumi-list {
    background-color: var(--main);
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    gap: 20px 0;
}

.bangumi-list li {
    width: 31.8%;
    background: #fff;
    border-radius: 4px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.bangumi-list li a {
    transition: all 0.3s ease;
}

.bangumi-list li a:hover {
    opacity: .4;
    transition: all 0.3s ease;
}

.goiken-tel-area span {
    font-weight: 700;
    font-size: 2rem;
}

.goiken-tel-area ul li {
    font-size: 1.2rem;
}

.goiken-tel-info {
    background-color:var(--info);
    padding: 20px;
    border: 1px solid #F00;
}

.goiken-tel-info h5 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.goiken-question-sec dl {
    border-radius: 4px;
    border: 1px solid var(--line);
}

.goiken-question-sec dl dt {
    background-color: rgba(128, 94, 222, 0.1);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 15px 15px 15px 54px;
    position: relative;
}

.goiken-question-sec dl dt::before {
    content: "";
    background: url(../images/icon-q.png) no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 30px;
    position: absolute;
    left: 15px;
    top: 15px;
}

.goiken-question-sec dl dd {
    padding: 15px 15px 15px 54px;
}

@media screen and (max-width: 901px) {
    .goiken-wrapper {
        width: 100%;
        padding: 30px 15px 50px;
    }
}

@media screen and (max-width: 601px) {
    section {
        margin-bottom: 50px;
    }

    .sp_block {
        display: block;
    }
    
    .mb20 {
        margin-bottom: 20px;
    }
    
    /*チェック*/
    .CheckboxInput {
        align-items: flex-start;
    }

    /*チェック前の箱*/
    .CheckboxInput-DummyInput {
        margin-bottom: 2px;
    }
    
    .CheckboxInput-LabelText {
        width: 90%;
    }
    
    #goiken {
        line-height: 180%;
    }
    
    #goiken h2 {
        font-size: 1.8rem;
        padding: 6px 10px;
        margin-bottom: 15px;
    }
    
    #goiken h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    
    #goiken .goiken-btn {
        border-radius: 4px;
        padding: 15px;
        width: 100%;
    }
    
    .goiken-btn::after {
        width: 16px;
        height: 16px;
        margin-left: 10px;
    }

    #goiken .goiken-btn-active {
        border-radius: 4px;
        padding: 15px;
        width: 100%;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .goiken-mv {
        background-position: left 0 , right bottom;
        background-size: 50%, 50%, contain;
        padding: 30px 15px;
    }
    
    .goiken-mv p {
        line-height: 160%;
        font-size: 1.2rem;
    }
    
    .goiken-form-list {
        margin-bottom: 50px;
    }
    
    .bangumi-list {
        padding: 15px;
        gap: 10px;
    }
    
    .bangumi-list li {
        width: 48%;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .goiken-tel-area ul li {
        font-size: 1.2rem;
    }
    
    .goiken-tel-info h5 {
        margin-bottom: 10px;
    }

    .goiken-question-sec dl dt {
        font-size: 1.4rem;
        padding-left: 46px;
    }
    
    .goiken-question-sec dl dt::before {
        width: 20px;
        height: 24px;
    }
    
    .goiken-question-sec dl dd {
        padding: 15px;
    }

}