/* ===========================
   Base / Reset / Tokens
=========================== */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #FEFEFC;
    --ink: #303030;
    --ink-2: #444;
    --brand: #FCC60A;
    --card: #fff;
    --shadow: 0 6px 24px rgba(0, 0, 0, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

img {
    vertical-align: bottom;
    border: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    background-color: #fff;
    background: var(--bg);
    color: var(--ink);
}

/* 모달 열렸을 때 배경 스크롤 차단 */
html, body { height: 100%; }
body.no-scroll { overflow: hidden; }

/* (선택) 터치/튕김 방지 */
html { overscroll-behavior: none; }
/* ===========================
    Header
=========================== */


.header {
    width: 1280px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: #fff;
}

.header .logo {
    width: 15%;
}

.header .logo p {
    font-weight: 700;
    font-size: 40px;
    color: var(--brand);
    margin-bottom: -20px;
}

.header .logo em {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
}

.header .gnb {
    width: 70%;
}

.header .gnb ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .gnb ul>li {
    border-left: 1px solid var(--ink);
}

.header .gnb ul>li:first-child {
    border-left: none;
}

.header .gnb ul>li>a {
    font-size: 15px;
    padding: 0 30px;
}

.header .gnb ul>li>a:hover {
    font-weight: 700;
    color: #FCC60A;
}

.header .util {
    width: 15%;
}

.header .util ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.header .util ul li a {
    display: block;
    padding: 10px;
}

.header .util ul li:nth-child(4) a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 36px;
    border-radius: 20px;
    background: var(--brand);
    font-weight: 700;
}

.box1 {
    width: 100%;
    height: 470px;
    text-align: center;
}

.box1 .vid {
    width: 1280px;
    height: 470px;
    margin: 0 auto;
    border-radius: 20px;
    background: #000;
    overflow: hidden;
}

.box1 .vid iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===========================
   BOX2 (Lamp + Carousel-style cards)
=========================== */
.box2 {
    width: 100%;
    margin-bottom: 200px;
}

.box2 .box2-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;

}

/* .box2 .box2-1 h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 6px;
} */

.box2 .box2-1 .flash {
    width: 1200px;
    height: 190px;
    margin-bottom: 70px;
}

.box2 .box2-1 .flash ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box2 .box2-1 .flash ul li {
    width: 130px;
    height: 180px;
    text-align: center;
    position: relative;

}

.box2 .box2-1 .flash ul li:nth-child(2) .light {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(-50.3%);
    height: 287px;
    z-index: -1;
    display: block;

}



.box2 .box2-2 {
    display: flex;
    justify-content: center;
    align-items: center;

}

.box2 .box2-2 .btnL,btnR {
    font-size: 30px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    margin-bottom: 60px;
}

.box2 .box2-2 .container {
    width: 1605px;
    height: 280px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;


}

.box2 .box2-2 ul {

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 1.2s;


}

.box2 .box2-2 ul>li {
    width: 535px;
    transform: scale(0.9);
    transition: all 0.8s;
    /* border: 1px solid #000; */

}

.box2 .box2-2 ul>li.on {
    transform: scale(1.2);
}

.box2 .box2-2 button {
    position: absolute;
    z-index: 10;
    display: none;
}

.box2 .box2-2 ul>li>div {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #FCC60A; */
}


.box2 .box2-2 ul>li>div img {
    max-width: 200px;
    width: 200px;
}

.box2 .box2-2 ul>li>p {
    width: 110px;
    height: 40px;
    margin: 10px auto 0;
    border-radius: 30px;
    background: var(--ink);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box2 .box2-2 ul>li>p>a {
    color: #fff;
    font-size: 20px;
}

/* ===========================
   BOX3 (New Menu Feature)
=========================== */
.box3 {
    background-color: #FCC60A;
    border-radius: 50%;
    /* background: url(img/bg_1.png);
    background-repeat: no-repeat;
    background-size: cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin-bottom: 40px;
    gap: 200px;
}

.box3 .btnL,
.box3 .btnR {
    font-size: 20px;
    width: 32px;
    text-align: center;
    cursor: pointer;

}

.box3_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.box3-1 {
    display: flex;
    gap: 20px;
    width: 100%;
}

.box3-1 .img {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    width: 50%;
}

.box3-1 .img .img_big img {
    width: 400px;
}

.box3-1 .img .img_small {
    border-left: 2px solid var(--ink);
    padding-left: 10px;
    margin-left: -20px;
}

.box3-1 .img .img_small ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box3-1 .img .img_small ul li img {
    width: 55px;
}

.box3-1 .img_intro {
    width: 50%;
    margin-top: 40px;
}

.box3-1 .img_intro .intro_txt em {
    display: inline-block;
    font-size: 15px;
    background: aliceblue;
    border-radius: 10px;
    padding: 3px 6px;
    margin-bottom: 8px;
}

.box3-1 .img_intro .intro_txt h3 {
    font-size: 40px;
    margin-bottom: 6px;
}

.box3-1 .img_intro .intro_txt p {
    margin-bottom: 20px;
    color: var(--ink-2);
}

.box3-1 .img_intro .intro_btn {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.box3-1 .img_intro .intro_btn li {
    flex: 1 1 0;
    height: 38px;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.box3-1 .img_intro .intro_btn li:nth-child(1) {
    background: aliceblue;
}

.box3-1 .img_intro .intro_btn li:nth-child(2) {
    background: var(--ink);
}

.box3-1 .img_intro .intro_btn li:nth-child(2) a {
    color: #fff;
    font-weight: 600;
}

.box3-1 .img_intro .intro_rating {
    display: flex;
    align-items: center;
    gap: 14px;
}

.box3-1 .img_intro .intro_rating .rating_icon {
    display: flex;
    gap: 4px;
}

.box3-1 .img_intro .intro_rating .rating_txt em {
    font-style: normal;
    margin-left: 6px;
    font-weight: 700;
}

.box3-1 .img_intro .intro_rating .rating_txt span {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 2px solid var(--ink);
    color: var(--ink-2);
}

.box3-2 .Review h2 {
    font-size: 25px;
    margin: 4px 10px 12px;
}

.box3-2 .Review ul {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.box3-2 .Review ul li {
    width: 100%;
    max-width: 300px;
    min-height: 50px;
    background: #fff;
    border: 1px solid var(--ink);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 3px 4px rgba(0, 0, 0, 1);
}

.box3-2 .Review ul li i {
    margin-right: 6px;
    color: var(--brand);
}

.box3-2 .Review ul li p {
    display: inline;
}

.box3-2 .Review ul li span {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
    color: var(--ink-2);
}

.box3-2 .btn_txt {
    text-align: center;
    margin: 18px 0;
    color: var(--ink-2);
}

.box3-2 .btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.box3-2 .btn a {
    display: block;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow);
}

/* ===========================
   BOX4 (Brand Story + Semi-circle Menu)
=========================== */
.box4 {
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    padding: 0 20px;
}

.box4-1 {
    position: relative;
}

.box4-1 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 90px;
}

.box4-1 ul {
    position: relative;
    width: 1000px;
    height: 150px;
    margin: 0 auto;
}

.box4-1 ul li {
    position: absolute;
    transform: translate(-50%, -50%);
}

.box4-1 ul li:nth-child(1) {
    top: 35%;
    left: 0%;
}

.box4-1 ul li:nth-child(2) {
    top: 10%;
    left: 25%;
}

.box4-1 ul li:nth-child(3) {
    top: 0%;
    left: 50%;
}

.box4-1 ul li:nth-child(4) {
    top: 10%;
    left: 75%;
}

.box4-1 ul li:nth-child(5) {
    top: 35%;
    left: 100%;
}

.box4-1 ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .25s ease;
}

.box4-1 ul li a:hover {
    transform: scale(1.06);
}

.box4-1 ul li img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.box4-1 ul li:nth-child(4) img {
    width: 150px;
    height: 150px;
}

.box4-1 ul li:nth-child(5) img {
    width: 150px;
    height: 150px;
}

.box4-1 ul li p {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.box4-2 h2 {
    font-size: 80px;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 4px;
    margin: 24px 0 10px;
}

.box4-2 .txt1 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 8px 0;
}

.box4-2 .txt2 {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 20px 0 40px;
}

.box4-2 .btn {
    display: flex;
    justify-content: center;
}

.box4-2 .btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    transition: all .25s ease;
}

.box4-2 .btn a:hover {
    transform: translateY(-2px);
    background: #f8f8f8;
}

/* ===========================
   BOX5 (History Timeline)
=========================== */
/* ===== 기본 세팅 & 컬러(직접값) ===== */
.box5 {
    position: relative;
    z-index: 100;
    background: #FEFEFC;
    padding: 80px 0;
    color: #303030;
    box-sizing: border-box;
}


/* ===== 섹션 타이틀 ===== */
.box5>h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.box5>h2 i {
    font-size: 22px;
    color: #FCC60A;
}

.box5>h2 em {
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.box5>h2 p {
    font-weight: 300;
    opacity: .8;
}

/* ===== 타임라인 컨테이너 & 중앙 막대 ===== */
.box5_inner {
    width: 1100px;
    /* 고정폭 */
    margin: 0 auto;
    position: relative;
    padding: 40px 0 20px;
}

.box5_inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(252, 198, 10, 1), rgba(252, 198, 10, 0));
    box-shadow: 0 0 0 2px rgba(252, 198, 10, .08) inset;
}

/* ===== 각 연혁 블록 ===== */
.HISTORY {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 90px 0;
    position: relative;
}

/* 좌/우 컬럼 고정폭 */
.HISTORY .content-group_1,
.HISTORY .content-group_2 {
    width: 46%;
    position: relative;
}

/* 짝수 항목은 반대로(우측 이미지/연도, 좌측 텍스트) */
.HISTORY:nth-child(even) {
    flex-direction: row-reverse;
}

/* ===== 연도 배지 ===== */
.HISTORY h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FCC60A;
    padding: 10px 18px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
}

.HISTORY:nth-child(odd) .content-group_1 h3 {
    right: -22px;
    text-align: right;
}

.HISTORY:nth-child(even) .content-group_1 h3 {
    left: -22px;
    text-align: left;
}

.HISTORY:nth-child(even) .content-group_2 .img_txt {
    text-align: right;
}

.HISTORY:nth-child(even) .content-group_2 .img_btn {
    display: flex;
    justify-content: right;
}

/* ===== 이미지 ===== */
.img_img {
    display: block;
    width: 340px;
    height: auto;
    margin: 0 auto;
    /* filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .12)); */
    border-radius: 18px;
    background: #ffffff;
}

/* ===== 텍스트 카드 ===== */
.img_txt {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .04); */
}

.img_txt h4 {
    font-size: 30px;
    font-weight: 800;
    margin: 2px 0 10px;
    letter-spacing: .5px;
}

.img_txt p {
    color: #444444;
    line-height: 1.7;
}

/* ===== 버튼 영역 ===== */
.img_btn {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}


.img_btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    height: 20px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .4px;

    color: #303030;

    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.img_btn p:nth-child(1) a {
    /* border: 1.5px solid #303030;
    border-radius: 30px;  */
}

.img_btn p:nth-child(2) {}

.img_btn p:nth-child(2) a {
    /* border: 1.5px solid #FCC60A;
    background-color: #FCC60A;
    border-radius: 30px; */
    color: #303030;
    border-left: 2px solid #303030;

}

.img_btn p:nth-child(1) a:hover {}

.img_btn p:nth-child(2) a:hover {}

.img_btn a:hover {
    transform: translateY(-2px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, .12);
    /* background: #FFF7CF; */
}

.img_btn i {
    /* color: #FCC60A; */
}


/* ===== 미세 정렬 ===== */
.HISTORY:nth-child(odd) .content-group_2 .img_txt {
    margin-left: 20px;
}

.HISTORY:nth-child(even) .content-group_2 .img_txt {
    margin-right: 20px;
}

/* ===== 선택적 강조(원하면 삭제 가능) ===== */
.chic4 .img_txt h4,
.chic6 .img_txt h4 {
    letter-spacing: .8px;
}


/* ===========================
   BOX6 (Solar System Map)
=========================== */
/* 캔버스 */
.box6 {
    position: relative;
    width: 1000px;
    height: 1100px;
    margin: 0px auto;
    /* background-color: #cfcfcf; */
    margin-bottom: 100px;
}

.box6>h3 {
font-size: 40px;
color: #FCC60A;
text-align: center;
width: 100%;
margin: 40px 0;
}

.solar-system {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 중앙 지구 */
.earth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.earth img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.bhc-text,
.world-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

.bhc-text {
    top: 40%;
    font-size: 50px;
}

.world-text {
    top: 50%;
    font-size: 25px;
}

/* 궤도 공통 */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #FFD700;
    border-radius: 50%;
    animation: spin 20s linear infinite;
    z-index: -100;
}

/* 각 궤도 크기 */
.orbit-1 {
    width: 500px;
    height: 500px;
}

.orbit-2 {
    width: 580px;
    height: 580px;
}

.orbit-3 {
    width: 660px;
    height: 660px;
}

.orbit-4 {
    width: 740px;
    height: 740px;
}

.orbit-5 {
    width: 820px;
    height: 820px;
}

.orbit-6 {
    width: 900px;
    height: 900px;
}

.orbit-7 {
    width: 980px;
    height: 980px;
}

/* 행성 공통 (궤도 끝점에 부착) */
.planet {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    animation: planet-stay 20s linear infinite;
    z-index: 11;
    cursor: pointer;
    /* 역회전으로 ‘정면 유지’ */
}

.planet img {
    border-radius: 50%;
    display: block;
}

.planet-text {
    display: none;
}

/* 툴팁(매장 수) */
.planet .planet-info {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    border-radius: 8px;
    /* background: rgba(0, 0, 0, .75); */
    /* background-color: #FCC60A; */
    color: 000;
    font-size: 13px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 12;
    opacity: 1;

}

.planet .planet-info::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, .75);
    display: none;

}

.planet:hover .planet-info {
    opacity: 1;
}

/* 회전 애니메이션 */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes planet-stay {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}





/* 궤도 */
.orbit-1 {
    animation-duration: 30s;
}

/* 기존 60s */
.orbit-2 {
    animation-duration: 37.5s;
}

.orbit-3 {
    animation-duration: 45s;
}

.orbit-4 {
    animation-duration: 52.5s;
}


.orbit-5 {
    animation-duration: 60s;
}


.orbit-6 {
    animation-duration: 67.5s;
}


.orbit-7 {
    animation-duration: 75s;
}



/* 행성(역회전) */
.orbit-1 .planet {
    animation-duration: 30s;
}

.orbit-2 .planet {
    animation-duration: 37.5s;
}

.orbit-3 .planet {
    animation-duration: 45s;
}

.orbit-4 .planet {
    animation-duration: 52.5s;
}

.orbit-5 .planet {
    animation-duration: 60s;
}

.orbit-6 .planet {
    animation-duration: 67.5s;
}

.orbit-7 .planet {
    animation-duration: 75s;
}



/* 행성 크기(샘플: 필요시 조절) — 매장 수 기반이라면 여기만 바꾸면 됨 */
.planet.usa img {
    width: 80px;
    height: 80px;
}

.planet.canada img {
    width: 50px;
    height: 50px;
}

.planet.hongkong img {
    width: 60px;
    height: 60px;
}

.planet.thailand img {
    width: 100px;
    height: 100px;
}

.planet.malaysia img {
    width: 60px;
    height: 60px;
}

.planet.singapore img {
    width: 50px;
    height: 50px;
}

.planet.korea img {
    width: 150px;
    height: 150px;
}

/* ===========================
   BOX7 (Placeholder)
=========================== */
.box7 {
    position: relative;
    width: 100%;
    margin: 150px auto;
    /* background-color: #03C75A; */
    padding: 40px 0;
}

.box7 .Uvid>.btnL,.btnR {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 32px;
    cursor: pointer;
}
.box7 h3 {
    width: 100%;
    text-align: center;
    margin: 80px 0;
    font-size: 40px;
    color: #FCC60A;
}

.box7 .Uvid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box7 .Uvid>.btnL,.btnR {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 32px;
    cursor: pointer;
}
.box7 .viewport {
    overflow: hidden;
    padding: 10px 64px;
}

.box7 .track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: transform .4s;
}

.box7 .slide {
    flex: 0 0 auto;
    width: 220px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(.92);
    opacity: .7;
}

.box7 .slide.is-active {
    width: 420px;
    height: 240px;
    transform: scale(1);
    opacity: 1;
}

.box7 iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 12px;
}

.box7 .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #2c2c2c;
    color: #fff;
    cursor: pointer;
}

/* .box7 .nav.prev { left: 12px; }
.box7 .nav.next { right: 12px; } */
.box7 .dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.box7 .dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #cfcfcf;
}

.box7 .dots .on {
    background: #7a7a7a;
}

/* ===========================
   BOX8 (News)
=========================== */
.box8 {
    margin-top: 100px;
    background: url(img/bg_2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.box8_inner {
    padding: 50px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.box8_inner h2 {
    font-size: 30px;
    font-weight: 700;
}

.box8_inner .info_menu {
    display: flex;
    gap: 10px;
}

.box8_inner .info_menu li a {
    display: inline-block;
    background: #fff;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
}

.box8_inner .info {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 10px auto 0;



}

.box8_inner .info>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-48%, -50%);
    font-size: 200px;
    font-weight: bold;
    color: #FCC60A;
    opacity: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: 20px;
}

.box8_inner .info ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 10px;

}

.box8_inner .info ul li {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--brand); */
    /* box-shadow: 0 6px 24px #fff; */
    border-radius: 12px;
}

.box8_inner .info_btn a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 20px;
    background: #000;
    color: #fff;
    transition: .2s;
}

.box8_inner .info_btn a:hover {
    background: #fff;
    color: #000;
}

/* ===========================
   BOX9 (Footer)
=========================== */
.footer {
    width: 100%;
    min-height: 220px;
    background: var(--ink);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 16px;
}

.footer p {
    line-height: 1.7;
    color: #fff;
}



/* 장바구니shop1설정 */
.shop {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    filter: blur(50px);
    /* display: none; */
}

.shop1 {
    position: absolute;
    width: 30%;
    height: 100vh;

    z-index: 1000;
    right: -30%;
    top: 0;
    background-color: burlywood;
}


/* 장바구니설정 */


.shopping {
    width: 400px;
    height: calc(100vh - 80px);
    position: fixed;
    right: -400px;
    top: 80px;
    background-color: #fff;
    color: #000;
    transition: all 0.8s;
    border-radius: 20px 0 20px 0;
    z-index: 1000;
}

.shopping.on {
    right: 0;
}

.shopping .icon {
    width: 60px;
    height: 60px;
    background-color: #FCC60A;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: -60px;
    top: 30px;
    font-size: 28px;
    text-align: center;
    line-height: 2;
    z-index: 1000;
}

.shopping .icon span {
    position: absolute;
    font-size: 12px;
    background-color: #fff;
    color: #303030;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: 0px;
    top: 5px;
}


.shopping .cart_page {
    position: relative;
    z-index: 2;
}

.shopping .cart_page>h3 {
    font-size: 30px;
    text-align: center;
    margin: 30px 0;
    font-weight: 300;

}

.shopping .cart_page>.title1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    border-bottom: 1px solid #000;
    /* background-color: #FCC60A; */
    width: 350px;
    margin: 0 auto;
}

.shopping .cart_page>.title1 li {
    font-size: 17px;
    font-weight: 300;
}

.shopping .cart_page p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 250px 0;
}

.shopping .cart_page>.title2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    border-top: 1px solid #000;
    /* background-color: #FCC60A; */
    width: 350px;
    margin: 0 auto;
}

.shopping .cart_page>.title2 li {
    font-size: 17px;
    font-weight: 300;
}

.shopping .cart_page>.btn {
    display: flex;
    justify-content: center;
    align-items: center;

}

.shopping .cart_page>.btn li {
    /* background-color: #FCC60A; */
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 10px;
    cursor: pointer;
}

.shopping .cart_page>.btn li:nth-child(1) {
    background-color: #FCC60A;
    /* color: #fff; */
}

.shopping .cart_page>.btn li:nth-child(2) {
    border: 1px solid #000;
}


#sub01 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 80px;
    display: none;
}

/* --------------------- 로그인 페이지 만들기 --------------------- */
#login {
    position: fixed;
    width: 100%;
    top: 80px;
    /* 헤더 높이만큼 띄우려면 80px, 전체 덮으려면 top:0; */
    left: 0;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;

}

.loginBox {
    position: relative;
    top: 50%;
    left: 50%;
    margin-left: -475px;
    margin-top: -290px;
    width: 950px;
    height: 580px;
    border-radius: 20px;
    display: flex;
    background-color: #fff;
}

.loginBox01 {
    width: 475px;
    height: 580px;
    background-color: #FCC60A;
    border-radius: 20px 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBox02 {
    width: 475px;
    height: 580px;
    /* background-color: #eee; */
    border-radius: 0 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #FCC60A;
}

.loginBox02 .loginClose {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background-color: #03C75A; */
}

.loginBox02_Inner {
    width: 100%;
    height: 100%;
    text-align: left;
}

.loginBox02_Inner h4 {

    margin: 40px 20px;
    margin-top: 70px;
    font-size: 35px;
    color: #FCC60A;
    text-align: center;
}

.loginBox02_Inner .loginTitle01 {}

.loginBox02_Inner .loginTitle01 li {
    border: 1px solid #aaa;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    font-size: 20px;
    color: #aaa;
}

.loginBox02_Inner p {

    margin: 10px 20px;
    margin-bottom: 30px;
}

.loginBox02_Inner p span {
    padding: 10px;
}


.loginBox02_Inner .loginTitle02 {}

.loginBox02_Inner .loginTitle02 li {
    /* border: 1px solid #aaa; */
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    font-size: 20px;
    color: #fff;
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
}

.loginBox02_Inner .loginTitle02 li:nth-child(1) {
    background-color: #FCC60A;
}

.loginBox02_Inner .loginTitle02 li:nth-child(2) {
    background-color: #03C75A;
}


.loginBox02_Inner .loginTitle03 {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #03C75A; */
}

.loginBox02_Inner .loginTitle03 li {}

.loginBox02_Inner .loginTitle03 li a {
    border-left: 1px solid #aaa;
    padding: 0 20px;
    font-size: 15px;
    color: #aaa;
    margin: 20px 0;


}

.loginBox02_Inner .loginTitle03 li:nth-child(1) a {
    border-left: none;
}