.welcome_container {
    
    display:flex;
    flex-wrap: wrap;  
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-top: 5em ;
    background-color: #FFFAF0;
    z-index: 1;
    
}
.welcome_container > img  {
   position: absolute;
  width: 100vw;
    height: 100%;
   object-fit: cover;
   z-index: 0;
}
.welcome_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding-top: 1em;
    position: relative;
}

.welcome_main > img {
    margin-bottom: 1em;
   width: 15em;
   z-index: 3;
}
.logo_shadow {
    position: absolute;
    top: 0.8em;
    margin-top: 1em;
    animation: logoShadowAppear 0.6s ease-out;
    transform: translateX(0.5em);
    width: 14.7em;
    height: 14em;
    z-index: 1;
    background-color: var(--red_default);
    border-radius: 100vw;
    pointer-events: none;
}

@keyframes logoShadowAppear {
    0% {
        opacity: 0;
        transform: translateX(-2em) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0.5em) scale(1);
    }
}

.welcome_buttons_container {
    margin-top: 3em;
    margin-bottom: 2em;
    display: flex;
    gap: 1em;
    padding-left: 1em;
    align-items: center;
    justify-content: center;
    border-radius: 100vw;
}

.welcome_main >p  { 
    padding: 0.5em;
    padding-left: 10%; 
    padding-right: 10%;
    font-size: 1.1em;
   width: 80%;
background-color: rgba(0, 0, 0, 0.8);
}

.button_type_1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.2em;
    padding-left: 3em;
    position: relative;
    background-color: var(--red_default);
    color: var(--white);
    font-size: 0.9em;
    font-weight: bold;
    width: 13em;
    height: 4em;
    border-radius: 100vw;
    border: none;
    cursor: pointer;
}
.button_type_1 > img {
    position: absolute;
    right: 0.5em;
    height: 1.8em;
    width: 1.8em;
}
.title_type_1 ,.title_home_1 {
    position: relative;
    display: flex;
    
    align-items: center;
    font-weight: bold;
    justify-content: center;
    margin-bottom: 3em;
    margin-top: 3.5em;
    color: var(--red_default);
    padding: var(--spacing);
    border-radius: var(--border_radius);
}
.title_home_1 {
    background-color: rgb(3, 42, 3);
    color: var(--white);
    
    
}

.title_type_1 > img {
    position: absolute;
    height: 10em;
    width: 11em;
    margin-right: 0.5em;
    margin-right: var(--spacing);
    opacity: 0.5;
    left: 50%;
    transform: translateX(-50%);
}
.title_home_1 > img {
    
    height: 5em;
    width: 5em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    opacity: 0.5;
    left: 2em;
    
}
.title_type_1 > h1, .title_home_1 > h1 {
    z-index: 5;
}
.section_title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red_default);
    padding: 2em;
    padding-left: 5em;
    color: var(--white);
}
.section_title > img {
    height: 3.5em;
    width: 3.5em;
    margin-right: 1em;
}
.homepage_block_pc_img {
    display:flex;
    flex-wrap: wrap;  
    
    justify-content: center;
    
    
    
    background-color: rgb(3, 42, 3);
}
.homepage_block_pc_img> * {
    flex: 1 1 0;
    position: relative;
}
.homepage_block_pc_img  > img  {
    min-width:20em;
    min-height: 23em;
    object-fit: cover;
    
}
.crsl_wrapper {
    position: relative;
    
}
.crsl_t2 {
        
    position: relative;    
    display: grid;
    grid-auto-flow: column;
    justify-content:left; 
    gap: var(--spacing);
    padding: var(--outer_spacing);
    padding-left: -5em;
    background-color: rgb(3, 42, 3);
    
    overflow-x: scroll;
    scroll-snap-align: var(--red_default);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
    
    z-index: 4;
    
    
}
.scroll_right_button  {
    position: absolute;
    right: 0;
    top: calc(50% - var(--button_size) / 2);
    height: var(--button_size);
    width: var(--button_size);
    background-color: rgba(64, 64, 64, 0.389);
    border-radius: 100vw;
    border: none;
    cursor: pointer;
    z-index: 5;
    
     
}

.scroll_left_button {
    display: none;
    
    position: absolute;
    left: 0;
    top: calc(50% - var(--button_size) / 2);
    height: var(--button_size);
    width: var(--button_size);
    background-color: rgba(64, 64, 64, 0.389);
    border-radius: 100vw;
    border: none;
    cursor: pointer;
    z-index: 5;
    
}
.scroll_right_button > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.scroll_left_button > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.categories_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 2em;
    padding: var(--outer_spacing);
    background-color: var(--red_default);
    padding-top: 4em;
}
.category_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing);
    position: relative;
    border-radius: 1em;
    
    cursor: pointer;
}
.category_block > img {
    height: 20em;
    width: 20em;
    object-fit: cover;
    border-radius: 100vw;
}
.category_title {
    position: absolute;
    top: 15em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey);
    padding: 1em;
    border-radius: 100vw;
    width: 15em;
}
.category_title > img {
    position: absolute;
    height: 2em;
    width: 2em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    padding: 0.3em;
    left: -0.2em;
    border-radius: 100vw;
    background-color: var(--red_default);
}
.category_block > h2 {
    color: var(--white);
    font-size: 1.5em;
    font-weight: bold;
}
.category_block > p{
    padding: 1.5em;
}
.category_button {
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100vw;
    background-color: var(--grey);
    
    font-size: 1.2em;
    font-weight: bold;
    width: 10em;
    height: 3em;
    border: none;
    cursor: pointer;

}
.category_block:hover > img {
    border-radius: 1em;
    transition: 0.2s;
    width: 100%;
   
}
.category_block:hover {
    background-color: black;
    transition: 0.2s;
}
@media (max-width: 1300px){
    .title_type_1 > h1 {
        font-size: 2.2vw;
    }
    .categories_wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        
        
    }
    .category_block {
        width: 20em;
    }
   
   }
@media (max-width: 800px){
    .section_title {
        
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        padding-bottom: 1em;
        padding-top: 1em;
    }
    .title_home_1 {
        margin-top: 1em;
        margin-bottom: 1em;
        
        
    }
    .title_type_1 > h1 {
        font-size: 4vw;
    }
    
    .homepage_block_pc_img {
        flex-direction: column;
         
    }
     .homepage_block_pc_img  > img {
        min-height: 10em;
        height: 5em;    
        width: 100%;
        
        z-index: 1;
     }
     .block_type1_text {
        
        z-index: 2;
       
        
        border-radius: var(--border_radius);
        
     }
     .block_type1_text > .title_type_1 {
        
        background-color: rgb(3, 42, 3);
        color: white;
        
     }
     .block_type1_text > p {
        
        color: black;
        background-color: rgba(255, 255, 255, 0.8);
     }
    
    
    
    .welcome_message_buttons {
        font-size: 3.5vw;
    }
    .welcome_message_txt >p  {  
        padding: 1em;
    
    
    }
    .crsl_t2 {
            
            
        
        gap: 1em;
        
        
        
    }
    .scroll_right_button,.scroll_left_button  {
        height: 3em;
        width: 3em;
        
         
    }
    .category_block {
        width: 100%;
    }
    .category_button {
        display: flex;
    }
    
    
}
@media (max-width: 550px){
   
    .title_type_1  {
        padding: 0.7em;
    }
    .title_type_1 > h1 { 
        width: 5em;
    }
    .button_type_1 {
    font-size: 3.2vw;
}
 .button_type_1 > p {
    
}
.welcome_message_txt >p  {  
    padding: 1em;
   color: black;
 }
}

