@charset "UTF-8";

/* --- Contact Complete Page --- */
.cc-wrapper {
    width: 100%;
    background-color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    color: #444A4D;
    display: flex;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 160px;
    min-height: 80vh;
}

.cc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
	
	transition: opacity 0.75s, translate 0.75s;
	opacity: 0;
	translate: 0 16px;
}

.cc-container.slideIn {
  opacity: 1;
  translate: 0 0;
}

/* --- Title Section --- */
.cc-heading-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.cc-main-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #444A4D;
    margin: 0;
}

.cc-sub-title {
    /* THANK YOU */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #4D9EE8; /* Main Blue */
    text-transform: uppercase;
    margin: 0;
}

/* --- Content Section --- */
.cc-content-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #222222;
}

/* --- Button Section --- */
.cc-back-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 40px 12px 20px;
    gap: 30px;
    width: 314px;
    height: 58px;
    background: #FFFFFF;
    border: 4px solid #4D9EE8;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

/* --- Button Text --- */
.cc-btn-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #4D9EE8;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* --- Image Wrapper --- */
.cc-arrow-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* --- Image File --- */
.cc-arrow-img {
    width: 30px;
    height: auto;
    object-fit: contain;
    transform: scaleX(-1);
    transition: all 0.3s ease;
}

/* --- Hover Effects --- */
.cc-back-btn:hover {
    background-color: #4D9EE8;
}

.cc-back-btn:hover .cc-btn-text {
    color: #FFFFFF;
}

.cc-back-btn:hover .cc-arrow-img-wrap {
    background-color: #FFFFFF; @charset "UTF-8";

    .cc-wrapper{
        width: 100%;
        background-color: #FFFFFF;
        font-family: 'Noto Sans JP', sans-serif;
        color: #444A4D;

        display: flex;
        justify-content: center;

        padding: 260px 0 160px;

        min-height: 740px;
    }

    .cc-container{
        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;
        max-width: 1440px;
        padding: 0;

        gap: 60px;
    }

    /* --- Title Section --- */
    .cc-heading-group{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .cc-main-title{
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 700;
        font-size: 44px;
        line-height: 1.4;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #444A4D;
        margin: 0;
    }

    .cc-sub-title{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #4D9EE8;
        margin: 0;
    }

    /* --- Content Text --- */
    .cc-content-text{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        color: #222222;
        margin: 0;
    }

    /* --- Button --- */
    .cc-back-btn{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        width: 313px;
        height: 58px;
        padding: 12px 60px 12px 20px;
        gap: 30px;

        background: #FFFFFF;
        border: 4px solid #4D9EE8;
        border-radius: 16px;

        text-decoration: none;
        box-sizing: border-box;
        cursor: pointer;
        transition: all 0.3s ease;

        margin-top: 20px;
    }

    /* Button Text */
    .cc-btn-text{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 1;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #4D9EE8;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .cc-arrow-img-wrap{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 34px;
        height: 34px;
        background-color: #FFFFFF;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
    }

    .cc-arrow-img{
        width: 30px;
        height: auto;
        object-fit: contain;
        transform: scaleX(-1);
        transition: all 0.3s ease;
    }

    /* Hover */
    .cc-back-btn:hover{
        background-color: #4D9EE8;
    }

    .cc-back-btn:hover .cc-btn-text{
        color: #FFFFFF;
    }

    .cc-back-btn:hover .cc-arrow-img-wrap{
        background-color: #FFFFFF;
    }

    @media (max-width: 1200px){
        .cc-wrapper{
            padding-top: 0;
            padding-bottom: 0;
            min-height: auto;
        }

        .cc-container{
            max-width: 375px;
            padding: 200px 20px 100px;
            gap: 56px;
        }

        .cc-main-title{
            font-size: 24px;
            line-height: 1.4;
        }

        .cc-content-text{
            line-height: 1.5;
        }

        .cc-back-btn{
            width: 313px;
            padding: 12px 60px 12px 20px;
            margin-top: 0;
        }
    }

}

.sp-only { display: none; }

@media (max-width: 1200px){

    .sp-only { display: inline; }

    .cc-wrapper{
        padding: 0;
        min-height: auto;
    }

    .cc-container{
        max-width: 375px;
        width: 100%;
        padding: 200px 20px 100px;
        gap: 56px;
        align-items: flex-start;
    }

    .cc-heading-group{
        width: 100%;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .cc-main-title{
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
    }

    .cc-sub-title{
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0.1em;
        margin: 0;
    }

    .cc-content-text{
        width: 100%;
        line-height: 1.5;
        text-align: center;
        margin: 4px 0 0;
    }

    .cc-back-btn{
        width: 313px;
        padding: 12px 60px 12px 20px;
        gap: 30px;
        margin-top: 0;
        align-self: center;
    }

}
