/*메인 비주얼 영역 */

.visual {
    position: relative;
    width: 2000px;
    height: 1050px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    overflow: hidden;
    /*추가*/
}

.visual .gallery {
    position: relative;
    left: 0;
    top: 0;
    width: 2000px;
    height: 1050px;
}

.visual .gallery li {
    display: none;
    position: absolute;
    /*애는 왜쓴거지?*/
}

.visual .gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 1s ease-out;
}

.visual .gallery dl dt {
    font-size: var(--font-size-no5);
    color: var(--font-color-sub2);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    position: absolute;
    left: 150px;
    top: 180px;
    opacity: 0;
    transition: all 0.5s ease-out;
}

.visual dl dd {
    font-size: var(--font-size-no7);
    color: var(--font-color-sub2);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 150px;
    top: 280px;
    opacity: 0;
    transition: all 0.5s ease-out;
}

.visual:hover img {
    filter: brightness(0.9);
    transition: all 5s ease-out;
}

.visual .dock {
    width: 250px;
    position: absolute;
    left: 8%;
    bottom: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    padding: 0px 20px;
    box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.3);
}

.visual .dock ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual .dock .mbutton {
    margin-right: 15px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background: #017121;
    border-radius: 8px;
    transition: all 0.5s;
}

.visual .dock .ps_icon {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.visual .dock .ps_icon i {
    font-size: var(--font-size-no7);
    color: #e77e2d;
}

.visual .btn_arrow {
    color: #017121;
    cursor: pointer;
    padding-left: 20px;
    font-size: var(--font-size-no7);
    font-weight: bold;
}

/* 본문 컨텐츠 영역 */

/* a 태그 더보기 공통 */
.more_btn {
    padding: 10px 25px;
    border-radius: 25px;
    background: var(--font-color-point1);
    color: var(--font-color-sub1);
    font-size: var(--font-size-no10);
    font-weight: 500;
    position: absolute;
    transition: all 0.3s ease;
}

.more_btn:hover {
    background: var(--font-color-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 38, 41, 0.3);
}

/* 이달의 신상 */
#content .new_menu {
    width: 100%;
    height: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#content .new_menu .new_menu_tuck_box {
    width: 1400px;
    height: 600px;
    background: var(--font-color-sub2);
    border: 3px solid var(--font-color-point1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.3);
}

#content .new_menu .new_menu_content_wrapper {
    width: 100%;
    height: 450px;
    position: absolute;
    top: 60px;
    left: 0px;
    display: flex;
    align-items: center;
}

#content .new_menu_left_box h3 {
    font-size: var(--font-size-no5);
    /*50px*/
    color: var(--font-color-point1);
    margin-bottom: 10px;
}

#content .new_menu_left_box p {
    font-size: var(--font-size-no10);
    /*22px*/
    margin-bottom: 50px;
}

#content .new_menu_left_box {
    width: 50%;
    padding: 50px;
    box-sizing: border-box;
}

#content .new_menu_change {
    width: 700px;
    height: 300px;
    margin: 180px 0 0 70px;
    box-shadow: 1px 2px 15px 1px rgba(0, 0, 0, 0.1);
    padding: 40px 30px 20px 50px;
    border-radius: 50px;
}

#content .new_menu_change dl {
    display: flex;
    margin-bottom: 15px;
}

#content .new_menu_change dt {
    padding-right: 20px;
    font-size: var(--font-size-no8);
    font-weight: 500;
}

#content .new_menu_change dd {
    font-size: var(--font-size-no9);
}

#content .new_menu_change dl:nth-of-type(1) dd {
    font-size: var(--font-size-no8);
    font-weight: 600;
}

#content .new_menu_change dl:nth-of-type(4) dt span,
#content .new_menu_change dl:nth-of-type(4) dd span {
    color: var(--font-color-main);
    font-size: var(--font-size-no8);
    font-weight: 600;
}

#content .new_menu_change dl:nth-of-type(5) dt span,
#content .new_menu_change dl:nth-of-type(5) dd span {
    color: var(--font-color-point2);
    font-size: var(--font-size-no8);
    font-weight: 600;
}

#content .new_menu_right_box {
    width: 50%;
    margin: 25px 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content .new_menu_right_box img {
    width: 400px;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in;
    margin-right: 70px;
}

#content .new_menu_tuck_box .new_menu_more {
    top: 75px;
    left: 450px;
}

#content .new_menu_slider_dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
}

#content .new_menu_slider_dots li {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--font-color-point2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

#content .new_menu_slider_dots .new_menu_dot.active {
    background-color: var(--font-color-point2);
}

#content .new_menu_slider_dots .new_menu_dot.active {
    background-color: var(--font-color-main);
}

#content .new_menu_slider_dots li.active {
    background: var(--font-color-main);
    transform: scale(1.2);
}

/* 진행중 이벤트 */
#content .eventing {
    width: 2000px;
    height: 1000px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../main_images/events_in_profess_background.avif);
    /*linear-gradient(방향,시작색상,끝색상)*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 200px;
}

#content .eventing .eventing_title {
    text-align: center;
    max-width: 800px;
}

#content .eventing .eventing_title h3 {
    text-align: center;
    font-size: var(--font-size-no4);
    color: var(--font-color-sub1);
    font-weight: 500;
}

#content .eventing .eventing_title p {
    max-width: 500px;
    text-align: center;
    padding-top: 20px;
    font-size: var(--font-size-no10);
    color: var(--font-color-sub1);
    line-height: 1.5;
}

#content .eventing .event_categories {
    display: flex;
    gap: 50px;
}

#content .eventing .event_categories li {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(250, 248, 245, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

#content .eventing .event_categories li a {
    font-size: var(--font-size-no10);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

#content .eventing .event_categories span {
    font-size: var(--font-size-no1);
}

#content .eventing .event_categories li:hover {
    animation: smooth_bounce_scale 1s ease-in-out infinite;
    background: rgba(217, 38, 41, 0.9);
}

/* li를 따르라!!! */
#content .eventing .event_categories li:hover a {
    font-size: var(--font-size-no8);
    color: var(--font-color-sub2);
    transition: all 0.5s ease;
    /*부드러운 변화*/
}

#content .eventing .eventing_more {
    top: 180px;
    right: 500px;
}

#content .eventing .eventing_more:hover {
    background: var(--font-color-main);
    transform: translateY(-2px);
}

/* 세븐일레븐에서 이런조합 해봤어? */

#content .honey_recipe {
    width: 100%;
    min-height: 850px;
    margin: 0 auto;
    padding: 80px 0;
}

#content .honey_recipe .honey_recipe_container {
    width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 50px;
}

#content .honey_recipe .honey_recipe_title {
    text-align: left;
    margin-bottom: 60px;
}

#content .honey_recipe .honey_recipe_title h3 {
    font-size: var(--font-size-no5);
    color: var(--font-color-main);
    margin-bottom: 20px;
}

#content .honey_recipe .honey_recipe_title h3 span {
    color: var(--font-color-point2);
}

#content .honey_recipe .honey_recipe_title p {
    font-size: var(--font-size-no10);
    color: #666;
    line-height: 1.6rem;
}

#content .honey_recipe .honey_recipe_tuck_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

#content .honey_recipe .honey_recipe_tuck_box li {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

#content .honey_recipe .honey_recipe_tuck_box li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(217, 38, 41, 0.15);
    border-color: #d92629;
}

/* 제목 영역 */
#content .honey_recipe .honey_recipe_tuck_box dt {
    background: rgba(231, 126, 45, 0.8);
    color: var(--font-color-sub2);
    padding: 18px 20px;
    font-size: var(--font-size-no12);
    font-weight: 600;
    line-height: 1.4;
    min-height: 24px;
    display: flex;
    align-items: center;
}

#content .honey_recipe .honey_recipe_tuck_box dt a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 본문 내용 */
#content .honey_recipe .honey_recipe_tuck_box .content {
    padding: 20px;
    font-size: 14px;
    line-height: 1.5rem;
    color: #333;
    min-height: 100px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

#content .honey_recipe .honey_recipe_tuck_box .info {
    padding: 15px 20px;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

#content .honey_recipe .honey_recipe_tuck_box .info .nickname {
    color: var(--font-color-point2);
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(1, 113, 33, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(1, 113, 33, 0.2);
}

#content .honey_recipe .honey_recipe_tuck_box .info .date {
    color: var(--font-color-point1);
    font-weight: 500;
    font-size: 0.8rem;
}

#content .honey_recipe .honey_recipe_more {
    top: 70px;
    right: 460px;
}

/* 뭔가 땡기는데 뭔지 모르겠다면? */
#content .full_search {
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

#content .full_search .full_search_container {
    width: 1300px;
    margin: 100px auto 0;
    padding: 30px;
    display: flex;
    gap: 100px;
}

#content .full_search .full_search_container .search_left_area h3 {
    font-size: var(--font-size-no5);
    color: var(--font-color-point1);
}

#content .full_search .full_search_container .search_left_area p {
    font-size: var(--font-size-no10);
    margin-top: 20px;
}

#content .full_search_container .search_left_area input {
    width: 400px;
    margin-top: 135px;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    border-bottom: 3px solid var(--font-color-point2);
    color: var(--font-color-font);
    font-size: var(--font-size-no8);
}

#content .full_search_container .search_left_area button {
    margin-top: 100px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: var(--font-size-no8);
    color: var(--font-color-point2);
}

#content .full_search_container .full_search_speech_bubble {
    width: 450px;
    height: 300px;
    position: relative;
}

#content .full_search_container .full_search_speech_bubble a {
    width: 150px;
    height: 60px;
    border-radius: 30px 30px 0 30px;
    background: var(--font-color-sub2);
    box-shadow: 0 10px 20px 0.9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(1) a {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: var(--font-size-no10);
    color: var(--font-color-point1);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(2) a {
    position: absolute;
    top: 30px;
    right: 45px;
    font-size: var(--font-size-no10);
    color: var(--font-color-point1);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(3) a {
    position: absolute;
    top: 90px;
    left: 75px;
    font-size: var(--font-size-no11);
    color: var(--font-color-main);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(4) a {
    position: absolute;
    bottom: 100px;
    right: 35px;
    font-size: var(--font-size-no11);
    color: var(--font-color-main);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(5) a {
    position: absolute;
    bottom: 55px;
    left: 5px;
    font-size: var(--font-size-no10);
    color: var(--font-color-point1);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(6) a {
    position: absolute;
    bottom: 0px;
    left: 170px;
    font-size: var(--font-size-no11);
    color: var(--font-color-point2);
}

#content .full_search_container .full_search_speech_bubble li:nth-of-type(7) a {
    position: absolute;
    bottom: 15px;
    right: -50px;
    font-size: var(--font-size-no11);
    color: var(--font-color-point2);
}

/* 주황색 그룹 (1, 2, 5번) */
#content .full_search_container .full_search_speech_bubble li:nth-of-type(1):hover a,
#content .full_search_container .full_search_speech_bubble li:nth-of-type(2):hover a,
#content .full_search_container .full_search_speech_bubble li:nth-of-type(5):hover a {
    background: rgba(231, 126, 45, 0.8);
    color: var(--font-color-sub2);
    box-shadow: 0 15px 30px rgba(231, 126, 45, 0.6);
    transform: translateY(-5px);
}

/* 빨간색 그룹 (3, 4번) */
#content .full_search_container .full_search_speech_bubble li:nth-of-type(3):hover a,
#content .full_search_container .full_search_speech_bubble li:nth-of-type(4):hover a {
    background: rgba(217, 38, 41, 0.8);
    color: var(--font-color-sub2);
    box-shadow: 0 15px 30px rgba(217, 38, 41, 0.6);
    transform: translateY(-5px);
}

/* 초록색 그룹 (6, 7번) */
#content .full_search_container .full_search_speech_bubble li:nth-of-type(6):hover a,
#content .full_search_container .full_search_speech_bubble li:nth-of-type(7):hover a {
    background: rgba(1, 113, 33, 0.8);
    color: var(--font-color-sub2);
    box-shadow: 0 15px 30px rgba(1, 113, 33, 0.6);
    transform: translateY(-5px);
}

/* 창업안내 */
#content .start_up_guide {
    width: 100%;
    height: 1050px;
    margin: 0 auto;
    background: var(--font-color-sub2);
    border: 1px solid #adb5bd;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

#content .start_up_guide .start_up_guide_container {
    width: 1600px;
    height: 800px;
    overflow: hidden;
    border-radius: 40px;
    margin: 125px auto;
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    background: url(../main_images/start_up1.avif);
}

#content .start_up_guide .start_up_guide_container h3 {
    font-size: var(--font-size-no5);
    color: var(--font-color-point2);

    margin: 100px 0 0 80px;
}

#content .start_up_guide .start_up_guide_container p {
    font-size: var(--font-size-no10);
    color: #333;
    text-shadow: 3px 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-left: 80px;
    line-height: 2.7rem;
}

#content .start_up_guide .start_up_guide_container ul {
    display: flex;
    gap: 200px;
    position: absolute;
    bottom: 40px;
    left: 120px;
}

#content .start_up_guide .start_up_guide_container li a {
    color: var(--font-color-font);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

#content .start_up_guide .start_up_guide_container li {
    width: 300px;
    height: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 30px;
    font-size: var(--font-size-no7);
    background: var(--font-color-sub2);
    border: 2px solid var(--font-color-point1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

#content .start_up_guide .start_up_guide_container li:hover {
    background: var(--font-color-point1);
    border-color: rgba(231, 126, 45, 0.9);
    box-shadow: 0 10px 20px rgba(231, 126, 45, 0.4);
    transform: translateY(-3px);
}

#content .start_up_guide .start_up_guide_container li.active {
    background: var(--font-color-main);
    border-color: rgba(255, 31, 41, 0.7);
    box-shadow: 0 10px 20px rgba(217, 38, 41, 0.4);
}

#content .start_up_guide .start_up_guide_container li.active a {
    color: var(--font-color-sub2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#content .start_up_guide .start_up_guide_container li:hover a {
    color: var(--font-color-sub2);
    text-shadow: none;
}

#content .start_up_guide .start_up_guide_more {
    bottom: 180px;
    left: 80px;
}

/* 7-ELEVEn STORY */
#content .seven_eleven_story {
    width: 1600px;
    height: 800px;
    padding-top: 200px;
    margin: 0 auto;
}

#content .seven_story_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#content .seven_story_title {
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

#content .seven_story_title h3 {
    font-size: var(--font-size-no5);
    /*50px*/
    color: var(--font-color-point1);
}

#content .seven_story_title p {
    width: 350px;
    font-size: var(--font-size-no10);
    line-height: 2.3rem;
    /*22px*/
}

#content .seven_story_shorts {
    width: 100%;
    max-width: 1180px;
    position: relative;
    overflow: hidden;
}

#content .seven_story_shorts ul {
    position: relative;
    left: 0;
    cursor: grab;
    display: flex;
}

#content .seven_story_shorts li {
    width: 400px;
    flex-shrink: 0;
    box-sizing: border-box;
}

#content .seven_story_shorts li img {
    width: 95%;
    height: 590px;
    display: block;
    user-select: none;
    pointer-events: none;
    border-radius: 10px;
}

.seven_eleven_story_more {
    top: 100px;
    left: 0;
}

.shorts_slider_arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    pointer-events: none;
}

.shorts_slider_arrows .shorts_arrow {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: var(--font-size-no8);
    transition: all 0.3s ease;
}

.shorts_slider_arrows .shorts_arrow:hover {
    color: #fff;
    transform: scale(1.3);
}