/* simple */ 
.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}
.thumb_img {
    overflow: hidden;
    display: block;
    position: relative;
    font-size: 0;
    border-radius: 8px;
}
.thumb_img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    border: 1px solid #000;
    opacity: 0.05;    
}
.parti {
    position: relative;
}
.parti::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    bottom: 1px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* txt */
.txt_ct { text-align: center; }
.txt_navy { color: #103d7e }
.txt_wt-7 { font-weight: 700; }
.txt_wt-6 { font-weight: 600; }
.txt_wt-5 { font-weight: 500; }
.txt_wt-4 { font-weight: 400; }
.txt_wt-3 { font-weight: 300; }

.tit_thumb {    
    display: block;
    position: relative;    
    font-size: clamp(2.2rem, 2vw, 2.8rem); 
    font-weight: 500;
    color: #111;    
}
.tit_area { 
    padding-bottom: 4.3%;
}
.tit_area:has(.tit_section_m) { 
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2.4%;    
    border-bottom: 1px solid #111;
}
.tit_area:has(.tit_section_m) p { 
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    color: #7A7C85;
}
.tit_section {    
    font-size: clamp(2.6rem, 2.5vw, 4rem);
    font-weight: 600;
    line-height: 1.25;
    max-width: 50%;
    word-break: keep-all;
}
.tit_section_m { 
    min-width: 80px;   
    word-break: keep-all;
    font-size: clamp(2rem, 2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.25;        
}
.tit_sub { 
    display: block;    
    margin-bottom: 1.2rem;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 600;
    color: #103d7e;
}
.txt_dec { 
    font-size: clamp(1.6rem, 1.6vw, 2rem);
    line-height: 1.4;
    color: #7A7C85;    
}
.tit_area .txt_dec {     
    margin-top: 2rem;    
    word-break: keep-all;
}
.tit_area.txt_ct .tit_section { 
    max-width: unset;
    margin: 0 auto;
}
.tit_area.txt_ct .txt_dec {         
    max-width: 684px;
    margin: 2rem auto 0;    
}

/* button */
.btn_area { 
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    padding-top: 5rem;
}
.btn_basic { 
    display: block;
    width: 245px;
    padding: 2rem 0;     
    text-align: center;
    font-size: clamp(1.6rem, 1.8vw, 2rem);    
    font-weight: 500;
    color: #fff; 
    border-radius: 32px; 
}
.btn_basic.bg_gray_e { 
    color: #111; 
}

/* bgcolor */
.bg_navy { background: #103d7e }
.bg_navy:hover { background: #082D63 }
.bg_gray_e { background: #eeeeee }
.bg_gray_e:hover { background: #d3d3d3 }
.bg_gray_f5 { background: #F5F6F8 }

/* icon */
.ico_link { 
    display: inline-block;
    position: relative;    
}
.ico_link::after { 
    content: '';
    display: inline-block;
    position: absolute;
    right: -4rem;    
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 100%;    
    max-width: 27px;
    max-height: 27px;
    aspect-ratio: 1 / 1;  
    background: url(../img/ico_link.svg) no-repeat 0 0 / 100%;
}
.ico_plus { position: relative; }
.ico_plus::before,
.ico_plus::after { 
    content: '';
    display: block;
    position: absolute;    
    top: 50%;
    background: #555;
}
.ico_plus::before {     
    width: 10px;
    height: 2px;    
    right: -20px;
    margin-top: -1px;
}
.ico_plus::after {     
    width: 2px;
    height: 10px;    
    right: -16px;
    margin-top: -5px;    
}

/* base */
.inner { 
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;    
}
.container .inner {             
    padding: 6.5% 0;
}
.container .inner.pt0 { 
    padding-top: 0;
}

/* header */
.header { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background-color: rgba(0, 0, 0, .25);
    z-index: 999;
    transition: .4s;
}
.header .inner { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header .title {     
    width: 283px;;
    height: 36px;
    background:url(../img/logo_w.png)no-repeat 0 0 / contain;
}
.header .title a { 
    display: block;
    width: 100%;
    height: 100%;
}
.nav ul { 
    display: flex;
    gap: 8rem;
}
.nav ul li { 
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;    
}
.side_ham { 
    display: none;
}
.sideNav { 
    display: none;
}
.hd_form { 
    position: relative;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.hd_form .title { 
    background:url(../img/logo_b.png)no-repeat 0 0 / contain;
}
.hd_form .nav ul li { 
    color: #111;    
}

/* footer */
.footer { 
    padding: 6rem 0;
    background: #111;
}
.footer .parti::after { 
    top: 2px;
    left: -16px;
    bottom: 3px;
}
.footer .parti:first-child::after { 
    display: none;
}
.cont_footer .footer_logo a {
    background: url(../img/logo_footer.svg) no-repeat center / contain;
    display: block;
    width: 240px;
    height: 42px;    
}
.cont_footer .area_info {    
    margin-top: 4.5rem;    
}
.cont_footer .area_info .company {
    display: block;
    font-size: 1.8rem;
    font-weight: 500; 
    color: #ddd;   
}
.cont_footer .area_info .company_info { 
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
}
.cont_footer .area_info .company_info li {    
    font-size: 1.6rem; 
    font-weight: 300;  
    color: #ccc;
    letter-spacing: 0.02em; 
}
.cont_footer .footer_copyright {
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #777;
}

/*---------- index ------------ */

/* featured */
.featured { 
    position: relative;
    width: 100%;    
    max-height: 1080px;
    background: url(../img/bg_featured.jpg)no-repeat center / cover;      
    aspect-ratio: 16 / 12;  
}
.featured::after {
    content: '';
    display: block;        
    max-width: 661px;    
    height: 47%;
    margin: 3.2% auto 0;
    background: url(../img/featured_img_01.png)no-repeat center / contain;        
}
.featured .inner { 
    padding: 0;
}
.featured .inner .tit_area { 
    padding: 12% 0 0;
    text-align: center;
}
.featured .tit_sub { 
    font-size: clamp(1.8rem, 1.4vw, 2.2rem);   
    font-weight: 400;
    color: #fff;
}
.featured .tit_section { 
    max-width: unset;    
    word-break: keep-all;
    font-size: clamp(3.8rem, 5.2vw, 6.8rem);
    color: #fff;
}
.featured .btn_basic { 
    margin: 3.5% auto 0;
}
.featured .spon_area { 
    display: flex;
    flex-wrap: wrap;    
    gap: 2rem 4rem;
    justify-content: center;
    position: absolute;    
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
}
.featured .spon_area dl { 
    display: flex;
    flex-wrap: wrap;
    gap: 3.1rem;
    align-items: center;    
    position: relative;
}
.featured .spon_area dl dt {
    margin-right: -1rem; 
    white-space: nowrap;    
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    color: #fff;
}
.featured .spon_area dl dd {
    display: flex;
    align-items: center; 
    height: 26px;    
}
.featured .spon_area dl dd::after { 
    top: 4px;    
    right: -16px;    
    bottom: 4px;
}
.featured .spon_area dl dd:last-child::after { 
    display: none;
}
.featured .spon_area dl dd img { 
    max-height: 100%;
}

/* about */
.cont_about { 
    display: flex;
    gap: 2%;    
}
.cont_about .thumb_img img {
    width: 100%;
    height: auto; 
}
.cont_about .right_img { 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* effect */
.effect .thumb_img img { 
    width: 100%; 
    height: auto; 
}
.cont_effect .list_cont { 
    display: flex;
    justify-content: space-between;
    gap: 2%;
}
.cont_effect .tit_thumb { 
    margin-top: 5%;
    text-align: center;       
}

/* membership */
.membership { 
    padding-bottom: 6.5%;
}
.membership .inner { 
    padding: 6.5% 0 0;
}
.cont_member { 
    box-sizing: border-box;
    padding: 0 10rem !important;
} 
.membership .cont_member .list_member {     
    padding-bottom: 1rem;    
}
.cont_member{
    width: 100%;    
}  
.cont_member .list_member { 
    display: flex;
    gap: 2.6rem;
    animation: slide 45s linear infinite;
}
.cont_member .list_member:hover { 
    animation-play-state: paused;
}
.cont_member .list_member .col { 
    overflow: hidden;
    max-width: 376px;
    min-width: 330px;
    width: 33%;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.15);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.15);
    box-shadow: 0 3px 6px rgba(0,0,0,.15);   
    border-radius: 8px;
}
.cont_member .list_member .txt_area { 
    margin: 0 8%;
    padding: 8% 0 10%;     
}
.cont_member .list_member .col .thumb_img { 
    border-radius: 0; 
} 
.cont_member .list_member .col .thumb_img img { 
    width: 100%;
    height: auto;
}
.cont_member .list_member .col .tit_sub { 
    margin-bottom: 1rem;
}
.cont_member .list_member .col .txt_dec { 
    margin-top: 5%;
    letter-spacing: -0.03em;
}

/* chart */
.contact .tit_area .tit_section { 
    max-width: 45%;   
}
.cont_chart .wrap_info { 
    border-top: 1px solid #111; 
}
.cont_chart .wrap_info dl { 
    display: flex;    
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #ddd;
}
.cont_chart .wrap_info dl:has(.file_wrap) {
    padding: 2rem 0;
}
.cont_chart .wrap_info dt { 
    box-sizing: border-box; 
    flex-shrink: 0;  
    width: 25%; 
    min-width: 100px;
    padding: 0 2rem 0 3%;
    font-size: clamp(1.8rem, 2vw, 2.2rem);  
 }
.cont_chart .wrap_info dd { 
    box-sizing: border-box;
    flex-grow: 1;
    max-width: 75%;     
    color: #111; 
}
.cont_chart .wrap_info dd:has(.file_wrap) { 
    padding-right: 3%;
}
.cont_chart .wrap_info dd .wrap_contact { 
    display: flex;    
}
.cont_chart .wrap_info dd .wrap_contact:not(:first-child) { 
    margin-top: .8rem; 
}
.cont_chart .wrap_info dd .wrap_contact .tit_contact { 
    display: inline-block;    
    flex-shrink: 0;    
    width: 10%;    
    word-break: keep-all;
}
.cont_chart .wrap_info dd .wrap_contact .txt_contact { 
    display: block;
}
.cont_chart .wrap_info dd .wrap_contact .parti { 
    display: inline-block;
    position: relative;
    margin-right: 2.4rem;
}
.cont_chart .wrap_info dd .wrap_contact .parti:not(:last-child)::after { 
    top: 6px;
    bottom: 4px;
    right: -15px;
    background: #aaa;
}
.upload_file .inner { 
    padding-bottom: 4%;
}
.upload_file .cont_chart .wrap_info { 
    border-top: 0;
}
.upload_file .input_fileAttach {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.upload_file .file_wrap {    
    display: flex;    
    justify-content: flex-end;
    align-items: center;        
}
.upload_file .input_file_label {
    display: inline-block;
    height: 48px;
    padding: 0 4rem;
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    line-height: 48px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 24px;
    cursor: pointer;
}
.upload_file .input_file_label:has(.txt_label) { 
    padding: 0 5rem 0 3rem;
}
.upload_file .input_file_label .txt_label { 
    display: inline-block;
    position: relative;
}
.upload_file .file_text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
    display: inline-block;
    position: relative;
    padding: 0 2.5rem;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    color: #7A7C85;
}
.upload_file .file_text.file-attached { 
    color: #103D7E;
}
.upload_file .file_text.file-attached::before { 
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 0;    
    width: 20px;
    height: 20px;
    background: url(../img/ico_attached.svg) no-repeat 0 0 / contain;
}

/*---------- form ------------ */

/* form step */
.featured_form .tit_area .tit_section { 
    max-width: 45%;
}
.step_form .list_step { 
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem 4%;
}
.step_form .list_step li { 
    position: relative;
    width: calc((100% - 12%) / 4);
    padding: 3.5% 0 3%;
    text-align: center; 
    background: #fff;
    border-radius: 8px;
    aspect-ratio: 1.25 / 1;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.15);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.15);
    box-shadow: 0 3px 6px rgba(0,0,0,.15);   
    border-radius: 8px;
}
.step_form .list_step li::before { 
    content: '';
    display: inline-block;
    aspect-ratio: 1 / 1;
    width: 24%;    
    max-width: 64px;    
    margin: 0 0 8%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.step_form .list_step li:nth-child(1)::before { 
    background-image: url(../img/ico_step1.svg);
}
.step_form .list_step li:nth-child(2)::before { 
    background-image: url(../img/ico_step2.svg);
}
.step_form .list_step li:nth-child(3)::before { 
    background-image: url(../img/ico_step3.svg);
}
.step_form .list_step li:nth-child(4)::before { 
    background-image: url(../img/ico_step4.svg);
}
.step_form .list_step li::after { 
    content: '';    
    display: block;
    position: absolute;
    top: 50%;
    right: -13%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 22px;
    height: 20px;
    background: url(../img/ico_step_arrow.svg) no-repeat center / contain;
}
.step_form .list_step li:last-child::after { 
    background: none;
}
.step_form .list_step li .txt_dec { 
    margin: 1rem 2rem 0;    
    word-break: keep-all;
    line-height: 1.2;
}

/* form input */
.cont_form .important, 
.upload_file .important { 
    padding: 0 .5rem;
    color: #103D7E;    
}
input.input_box::placeholder { 
    color: #7A7C85; 
}
input.input_box:disabled { 
    color: #ddd;     
}
input.input_box:focus { 
    outline: none; 
    background: #F6F6F6; 
}
.wrap_form { 
    margin: 0 4rem;
    padding-top: 2rem;    
}
.wrap_form .list_form { 
    display: flex;
    flex-wrap: wrap;
    gap: 4.5%;
}
.wrap_form .list_form li { 
    margin-top: 3rem;
    flex: 1 1 45%;
}
.wrap_form .list_form .tit_form  { 
    display: block;
    margin-bottom: 1.8rem;
    padding-left: 0.2rem;
    font-size: clamp(1.8rem, 1.6vw, 2.2rem); 
    font-weight: 500;
}
.wrap_input .input_box { 
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 65px;    
    padding: 0 25px;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
    background: #F5F6F8;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* agreement */
.custom-checkbox {
    display: flex;
    gap: .8rem;
    align-items: center;    
    width: 80%;
    height: 100%;    
    cursor: pointer;
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    color: #7A7C85;
    user-select: none;
}
.custom-checkbox:has(input:checked) { 
    color: #111;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}  
.checkmark {        
    display: inline-block;
    position: relative;
    height: 24px;
    width: 24px;    
    background-color: #ddd;
    border-radius: 50%;
}  
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}  
.custom-checkbox input:checked ~ .checkmark {
    background-color: #103D7E;
}  
.checkmark:after {
    content: "";
    position: absolute;    
}  
.custom-checkbox .checkmark:after {
    position: absolute;
    left: 9px;
    top: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.wrap_agreement { 
    max-width: 648px;
    margin: 0 auto;
}
.wrap_agreement .list_check li { 
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    height: 65px;
    padding: 0 2rem;      
    background: #fff;    
    border: 1px solid #ddd;
    border-radius: 5px;
}
.wrap_agreement .list_check li:not(:first-child) { 
    margin-top: 1.5rem;
}
.wrap_agreement .list_check li:has(input:checked) { 
    border: 1px solid #103D7E;
}
.wrap_agreement .all_agree .custom-checkbox{ 
    justify-content: center;
    width: 100%;
    margin-top: 3rem;
}
.wrap_agreement .layer_agree {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;        
    padding: 0 2rem;
}
.wrap_agreement .layer_agree .txt_btn {     
    font-size: 1.4rem;
    text-decoration: underline;
    color: #103D7E;
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}

/* tablet */
@media (max-width: 1024px) {    

    /* featured */
    .featured .spon_area { 
        gap: 1.3rem 4rem;                     
        right: 5%;
        bottom: 2rem;
        left: 5%;        
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        width: auto;           
    }
    .featured .spon_area dl { 
        padding-left: 4rem;
        gap: .4rem 2rem;        
    }
    .featured .spon_area dl dt { 
        position: absolute;
        left: 0;        
    }
    .featured .spon_area dl dd { 
        height: 20px;
    }
    .featured .spon_area dl dd::after {
        right: -10px;
    }

    /* membership */
    .cont_member .list_member {     
        gap: 2rem;    
        animation: slide 20s linear infinite;
    }
    .cont_member .list_member .col { 
        width: 54%;
    }

    /* chart */
    .cont_chart .wrap_info dd .wrap_contact { 
        display: block;    
    }

    /* footer */
    .footer { 
        padding: 4.5rem 0;        
    }
    .cont_footer .footer_logo a { 
        width: 200px;
        height: 34px;
    }
    .cont_footer .area_info { 
        margin-top: 2.2rem;
    }
    .cont_footer .area_info .company { 
        font-size: 1.6rem;
    }
    .cont_footer .area_info .company_info { 
        flex-wrap: wrap;
        gap: .5rem 1.8rem;        
        margin-top: 1.2rem;
    }
    .cont_footer .area_info .company_info li { 
        font-size: 1.4rem;
    }    
    .cont_footer .area_info .company_info li:first-child { 
        width: 100%;
    }
    .cont_footer .area_info .company_info li::after { 
        display: none;
    }
    .cont_footer .footer_copyright { 
        margin-top: 3rem;
        font-size: 1.3rem;
    }
}

/*---------- mobile ------------ */
@media (max-width: 767px) {     

    /* txt */
    .tit_sub {
        margin-bottom: .8rem;
    }
    .tit_section { 
        max-width: 90%;
    }
    .tit_area { 
        padding-bottom: 2.5rem;
    }
    .tit_area .txt_dec { 
        text-align: left;
    }

    /* button */    
    .btn_area { 
        gap: 1rem;
        padding-top: 2.5rem;
    }
    .btn_basic { 
        flex: 1;        
        width: auto;
        padding: 2rem 0;                     
    }   
    
    /* base */
    .inner { 
        width: auto;
        margin: 0 2rem;
    }
    .container .inner { 
        padding: 4.5rem 0;
    }

    /* sideNav */
    .side_ham {
        display: block;
        position: relative;        
        width: 36px;
        height: 36px;
        transition: all .4s;
        z-index: 9
    }
    .side_ham.active span {
        width: 90%;
        right: -4px
    }
    .side_ham.active span:nth-of-type(1) {
        -webkit-transform: translateY(12px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
        top: 16%
    }
    .side_ham.active span:nth-of-type(2) {
        opacity: 0
    }
    .side_ham.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
        bottom: 23%
    }
    .side_ham span {
        position: absolute;
        right: 0;
        width: 73%;
        height: 2px;
        background-color: #fff;
        border-radius: 10px
    }
    .side_ham span:nth-of-type(1) {
        top: 18%
    }
    .side_ham span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);    
        left: auto
    }
    .side_ham span:nth-of-type(3) {
        bottom: 18%
    }    
    .sideNav {
        display: block;
        overflow-x: hidden;
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        background-color: #111;
        z-index: 9999;
        transition: .4s
    }    
    .sideNav .title { 
        display: block; 
        width: 210px;
        height: 27px;
        margin: 2.2rem 0 0 2rem;
    }
    .sideNav .side_ham {
        position: absolute;
        top: 1.8rem;
        right: 2rem
    }
    .sideNav .nav_m {                 
        margin-top: 2.2rem;
        border-top: 1px solid rgba(255,255,255,.4);
    }
    .sideNav .nav_m li { 
        white-space: nowrap;
        font-size: 1.8rem;
        font-weight: 500;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .sideNav .nav_m li a { 
        display: block;
        padding: 2.2rem 2.5rem;        
    }    

    /* header */
    .header { 
        height: 64px;
        background-color: rgba(0, 0, 0, .5);
    }
    .header .inner .title { 
        width: 238px;
        height: 30px;
    }
    .nav ul { 
        display: none; 
    }
    .hd_form {         
        background-color: rgba(255, 255, 255, 1);
        border-bottom: 1px solid rgba(0, 0, 0, .25);
    }    
    .hd_form .inner .side_ham span { 
        background-color: #111;
    }

    /* featured */
    .featured { 
        aspect-ratio: unset;
        height: 640px;
    }
    .featured::after { 
        height: 250px;
        margin: 1.6rem 0 0;
        background-position: center right 2rem;
    }
    .featured .btn_basic { 
        max-width: 200px;
        margin: 2rem 0 0;
    }
    .featured .inner { 
        padding: 0;
    }
    .featured .inner .tit_area { 
        padding: 9.5rem 0 0;
        text-align: left;
    }
    .featured .tit_section { 
        height: 88px;
        line-height: unset;
    }
    .featured .tit_sub { 
        margin-bottom: .8rem;
    }
    .featured .spon_area { 
        justify-content: left;
    }    

    /* about */
    .about .tit_area.txt_ct .tit_section {         
        max-width: 280px;
    }

    /* effect */    
    .cont_effect .list_cont { 
        flex-wrap: wrap;
        justify-content: unset;
        gap: 2.2rem 0;
    }
    .cont_effect .list_cont li { 
        flex-grow: 1;
    }
    .cont_effect .list_cont .thumb_img { 
        aspect-ratio: 16 / 9;
    }
    .cont_effect .list_cont .thumb_img img { 
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cont_effect .tit_thumb { 
        margin-top: 1.2rem;
    }

    /* membership */
    .membership { 
        padding-bottom: 4rem 0 2rem;
    }
    .membership .inner { 
        padding: 4.5rem 0 0; 
    }
    .cont_member { 
        padding: 0 2rem 2rem !important; 
    }    
    .cont_member .list_member { 
        gap: 0;
        animation: unset;
        animation-iteration-count: unset;
        transform: unset;
    }    
    .cont_member .list_member .col { 
        min-width: unset;
        width: 88%;      
    }
    .swiper-horizontal>.swiper-scrollbar, 
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        left: 1.8rem !important;
        right: 1.8rem !important;
        width: auto !important;        
    }    

    /* chart */
    .contact .tit_area .tit_section {         
        max-width: 90%;
    }
    .cont_contact .wrap_info dl { 
        padding: 2rem 0;
    }
    .cont_contact .wrap_info dt { 
        width: 30%;        
    }    
    .cont_chart .wrap_info dl:has(.file_wrap) { 
        flex-direction: column;
        gap: 2rem 0;
    }
    .cont_chart .wrap_info dl:has(.file_wrap) dt { 
        width: auto;
        padding: 0;
    }
    .cont_chart .wrap_info dl:has(.file_wrap) dd { 
        width: 100%;
        padding-right: 0;
    }
    .cont_chart .wrap_info dl:has(.file_wrap) dd .file_wrap { 
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    .upload_file .file_text.file-attached { 
        max-width: 80%;
        padding: 0 0 0 2.5rem;
    }
    .upload_file .file_text.file-attached::before { 
        top: 2px;
        left: 5px;
        width: 16px;
        height: 16px;
    }
    .upload_file .input_file_label:has(.txt_label) { 
        padding: 0 5.5rem 0 3.5rem;
    }    

    /*---------- form ------------ */

    /* form step */
    .featured_form .tit_area .tit_section { 
        max-width: 90%;
    }
    .step_form .list_step { 
        flex-wrap: unset;
        flex-direction: column;
    }
    .step_form .list_step li { 
        display: flex;;
        flex-direction: column;
        justify-content: center;
        align-items: center;        
        width: auto;
        aspect-ratio: 16 / 9;
        padding: 0;
    }
    .step_form .list_step li::before {                 
        margin: 0 0 6%;
        max-width: 55px;
    }
    .step_form .list_step li::after { 
        top: unset;
        right: 47.5%;
        bottom: -44px;
        transform: rotate(90deg) translateX(-50%);
        -webkit-transform: rotate(90deg) translateX(-50%);
        -moz-transform: rotate(90deg) translateX(-50%);
        -ms-transform: rotate(90deg) translateX(-50%);
    }

    /* form input */
    .wrap_form { 
        margin: 0;
        padding-top: 0;
    }
    .wrap_form .list_form li { 
        flex: 1 1 100%;
        margin-top: 2rem;
    }
    .wrap_form .list_form .tit_form { 
        margin-bottom: 1.2rem;        
    }
    .wrap_input .input_box { 
        height: 55px;
        padding: 0 15px;
    }

    

}