@import url(reset.css);


.black-han-sans-regular {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
    font-family: 'SchoolSafetyPoster';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2511-1@1.0/HakgyoansimPosterB.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}


#wrap { width: 100%; position: relative; } /* 전체 래퍼 기준 고정 */

/* 헤더------------------------------------------------------------------------------------ */

header { 
    width: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 999; 
    /* ★ 그림자 추가 (가로0 세로4px 번짐10px 색상검정-투명도0.1) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
.header { 
    position: relative; 
    width: 1500px; 
    margin: 0 auto; 
    display: flex; 
}

h1 { width: 10%; padding: 30px 0 28px 0; z-index: 999; }
h1 img { width: 72%; }

nav { width: 50%; z-index: 999; position: relative; }
nav > ul.gnb { display: flex; justify-content: space-around; margin-top: 36px; position: relative; z-index: 999; }
nav > ul.gnb > li { width: 25%; text-align: center; position: relative; height: 60px; }
nav > ul.gnb > li > a { font-size: 20px; color: #5e2818; font-weight: 600; padding: 10px 0; display: inline-block; transition: transform 0.3s ease; }


nav ul.sub { position: absolute; top: 58px; left: 0; width: 100%; display: none; z-index: 2; }
nav ul.sub li a { padding: 15px 0; display: block; font-size: 17px; color: #000; }

/* 메인 메뉴 글자색 변경 */
nav > ul.gnb > li:hover > a {
    color: #ffae00; /* 배너의 '코코베에서'와 같은 오렌지 골드 */
    transform: scale(1.05); /* 살짝 커지는 느낌 */
}

/* 서브 메뉴 호버 시 왼쪽 포인트 바 생성 */
nav ul.sub li a:hover {
    background-color: #fff9f0;
    border-left: 4px solid #ffae00; /* 왼쪽에 오렌지색 선 포인트 */
    color: #5e2818;
}

.top_menu { 
    width: 40%; 
    position: absolute; 
    top: 52px; 
    right: 0; 
    display: flex; 
    justify-content: flex-end; 
    z-index: 999; 
}
.top_menu li { padding: 0 10px; color: #794f32; font-size: 20px; list-style: none; }
.top_menu li a span { font-size: 22px; color: #5e2818; }
.top_menu li a span:hover { color: #000000; }

/* 캡처 시 레이아웃 흔들림 방지용 */
html, body { width: 100%; margin: 0; padding: 0; }
.nav_bg { 
    /* background: rgba(0, 0, 0, 0.1); */
    background: #fff;
    width: 100%;
    height: 280px;
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 777;
    display: none;
}

.toggle { display: none;}

/* 스크롤 내려도 헤더 고정-------------------------------------------------------------------------- */

.fixed-header {
    background: #fff;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 105px;
    animation: slids-down 0.5s;
    z-index: 9999;
    border-bottom: 1px solid #683d1e;
}

@keyframes slids-down {
    0% {transform: translateY(-100%); opacity: 0.3%;}
    100% { transform: translateY(0%);}
}


/* 토글메뉴------------------------------------------------------------------------------------- */
.top_link { position: absolute; top: 20px; right: 20px; display: flex;}
.top_link li {padding: 0 10px;}
.top_link li a span { font-size: 1.5rem; }


.toplink_480 { 
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.toplink_480 li { color: #fff; padding: 0 5px;}
.toplink_480 li a { font-size: 14px; color: #fff; }

.nav_480 { 
    background: #55321f;
    width: 0;
    height: 100%;
    position: fixed; top: 0; right: 0;
    z-index: 100000;
    overflow-x: hidden;
    transition: 0.3s;
}

.nav_480.open {width: 100%;}


.close_btn {
    position: absolute; top: 10px; right: 10px;
}
.close_btn a i { color: #fff; font-size: 26px;}

.menu { 
    width: 100%;
    max-width: 480px;
    margin: 50px 0;
}

.gnb_480 { 
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    padding: 15px 0 10px 40px;
    border-bottom: 1px solid #794f32;
    transition: all 0.4s ease;
    display: block;
}

.sub_480 { 
    background: #fff;
    display: none;

}
.sub_480 li a {
    color: #777;
    padding: 10px 50px 10px 50px;
    display: block;
    transition: all 0.4s ease-out;
}

.sns_480 { 
    position: absolute; bottom: 5%; left: 50%; 
    transform: translate(-50%, -50%); 
    width: 100%;
    text-align: center;
    max-width: 480px;
}
.sns_480 a i { color: #fff; font-size: 24px; margin: 0 7px;}

/* 헤더 반응형-------------------------------------------------------------- */

@media (max-width:1200px){
    /* .header { width: 100%;} */
    header { border-bottom: none;}
    .header {width: 100%; padding: 0 10%;}
    h1 { padding: 50px 0 20px 20px;}
    h1 img { width: 38%;}
    nav > ul.gnb {margin-top: 60px;}
    .fixed-header { display: none;}

}

@media (max-width:960px){
    .header {width: 100%; padding: 0 10%;}
    h1 { padding: 50px 0 20px 0;}
    h1 img { width: 45%;}
    nav > ul.gnb { margin-top: 55px;}
    nav > ul.gnb > li > a { font-size: 18px; }
}

@media (max-width:768px){
    header { background: none;}
    h1 { width: 100%; padding-top: 24px;}
    h1 img { width: 25%;}
    h1 img {
        content: url('../images/logo.png');
    }
    nav > ul.gnb { display: none;}
    .toggle {
        display: block; 
        position: absolute; top: 34px; right: 40px;
    }
    .toggle a i { font-size: 25px; color: #683d1e;}
    .nav_480.open {width: 50%;}
    .top_menu { display: none;}

}

@media (max-width:480px){
    h1 {padding-top: 10px;}
    h1 img { width: 40%;}
    .toggle {top: 22px; right: 10px;}
    .toggle a i { font-size: 22px;}
    .close_btn { top: 15px; right: 40px; }
    .nav_480.open {width: 100%;}
    .toplink_480 { justify-content: left; margin: 0 0 40px 40px ;}
}

/* 배너----------------------------------------------------------- */

/* .banner { width: 100%; position: relative;}
.banner_480 { display: none;}
.banner_text_1 { position: absolute; top: 39%; left: 16.5%; font-size: 2.2vw; line-height: 4.6vw;  font-family: 'Pretendard'; color: #5e2818; font-weight: 500;}
.banner_text_1 span { color: #ffae00; }
.banner_text_2 { position: absolute; top: 49%; left: 15%; font-size: 5vw; line-height: 5vw; font-family: 'Pretendard';  color: #5e2818; font-weight: 600;}
.banner_text_2 span { color: #ffae00; }
.banner_text_3 { position: absolute; top: 60%; left: 42%; font-size: 5.2vw; line-height: 5vw; font-family: 'Pretendard';  color: #ffae00; font-weight: 600;} */
.banner_480 { display: none;}

/* 1. 애니메이션 정의: 위에서 아래로 떨어지며 나타남 */
@keyframes fadeInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-50px); /* 위(-30px) 대신 왼쪽(-50px)에서 시작 */
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* 2. 배너 기본 설정 */
.banner { 
    width: 100%; 
    position: relative; 
    overflow: hidden; 
}

.banner img {
    width: 100%;
    display: block;
}

/* 3. 글자 공통 애니메이션 설정 */
.banner_text_1, .banner_text_2, .banner_text_3 {
    position: absolute;
    opacity: 0; /* 시작 전엔 투명 */
    animation: fadeInLeft 1s forwards ease-out;
    z-index: 10;
}

/* 4. 개별 위치 및 스타일 (사용자 원본 설정 유지) */
.banner_text_1 { 
    top: 39%; 
    left: 16.5%; 
    font-size: 2.2vw; 
    line-height: 4.6vw; 
    font-family: 'Pretendard'; 
    color: #5e2818; 
    font-weight: 500;
    animation-delay: 0.3s; /* 0.3초 뒤 등장 */
}
.banner_text_1 span { color: #ffae00; }

.banner_text_2 { 
    top: 49%; 
    left: 15%; 
    font-size: 5vw; 
    line-height: 5vw; 
    font-family: 'Pretendard'; 
    color: #5e2818; 
    font-weight: 600;
    animation-delay: 0.8s; /* 0.8초 뒤 등장 */
}
.banner_text_2 span { color: #ffae00; }

.banner_text_3 { 
    top: 60%; 
    left: 42%; 
    font-size: 5.2vw; 
    line-height: 5vw; 
    font-family: 'Pretendard'; 
    color: #ffae00; 
    font-weight: 600;
    animation-delay: 1.3s; /* 1.3초 뒤 등장 */
}

.banner_480 { display: none; }

/* 배너 반응형-------------------------------------------------------------- */

@media (max-width:1200px){
    .banner_text_1 {}
    .banner_text_2 {}
}

@media (max-width:768px){
    .banner_text_1 {}
    .banner_text_2 {}
}

@media (max-width:480px){
    .banner { display: none;}
    .banner_480 { display: block;}
    .banner_480_text_1 { position: absolute; color: #fff; font-size: 16px; top: 15%; left: 7%; line-height: 48px; font-family: 'SchoolSafetyPoster'; width: 100%; }
    .banner_480_text_1 span { color: #683d1e; }
    .banner_480_text_2 {position: absolute; font-size: 32px; top: 21%; left: 7%; line-height: 40px; color: #683d1e; font-family: "Black Han Sans";}
    .banner_480_text_2 span { color: #fff; }
}

/* 컨텐츠랩----------------------------------------------------------------------- */

main { width: 100%;}
.contents_wrap_1 { 
    width: 100%;
    padding: 7% 5%;
    display: flex;
    overflow: hidden;
}
.contents_wrap_2 {
    width: 100%;
    padding: 7% 10%;
    background: #fdf8e1;
}

/* 섹션1 브랜드스토리----------------------------------------------------------- */

.img_box_wrap { width: 60%;}
.img_box { display: flex; }

.left_img { margin: 5% 4% 0 0;}
.left_img img { border-radius: 20px;}
.right_img img { border-radius: 20px;}

.text_box_wrap { 
    width: 40%;
    padding: 0 0 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.text_1 {font-family: 'Pretendard';  color: #5e2818; font-size: 3.5vw; font-weight: 500;}
.text_2 { font-family: 'Pretendard'; color: #696969; font-size: 1.6vw; padding: 1vw 0 1vw 0;}
.text_3 {color: #555; font-size: 20px; line-height: 30px; text-align: justify;}

.btn_wrap { width: 100%; margin-top: 3vw;}
/* button.more { 
    background: #ffae00; 
    color: #fff; 
    font-size: 0.8vw; 
    padding: 0.8vw 1.5vw; 
    border-radius: 30px; 
    cursor: pointer;}
button.more:hover { background: #683d1e;} */

button.more { 
    background: none;
    border: none;
    color: #a0785a;
    font-size: 0.9vw;
    font-weight: bold;
    padding: 0;
    position: relative;
}

/* 화살표 같은 기호 하나 추가해주면 더 예뻐요 */
button.more::after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

button.more:hover::after {
    margin-left: 10px; /* 화살표가 오른쪽으로 밀림 */
}

button.more:hover {
    color: #ffae00;
    background: none; /* 배경색 변화 없음 */
}


/* 섹션1 브랜드스토리 반응형----------------------------------------------------- */

@media (max-width:1200px){
    .text_1 {font-size: 3.3vw;}
    .text_3 {font-size: 16px; line-height: 24px; text-align: justify;}
    button.more { font-size: 1.1vw; padding: 0.7vw 1.5vw;}
}

@media (max-width:768px){
    .contents_wrap_1 { flex-wrap: wrap; padding: 10% 5%;}
    .img_box_wrap { width: 100%; padding: 5% 0 10% 0;}
    .text_box_wrap { width: 100%; padding: 0; align-items: center;}
    .left_img { margin:0 3% 0 0;}
    .text_1 { font-size: 6vw;}
    .text_2 { font-size: 3vw; padding: 1vw 0 3vw 0;}
    .text_3 {font-size: 18px; line-height: 28px; text-align: justify;}
    .btn_wrap { display: flex; justify-content: center; margin-top: 4vw;}
    button.more { font-size: 14px; padding: 12px 25px; }
}

@media (max-width:480px){
    .left_img img { border-radius: 10px;}
    .right_img img { border-radius: 10px;}
    .text_box_wrap { width: 100%; padding: 5% 0; align-items: center;}
    .text_1 { font-size: 8vw;}
    .text_2 { font-size: 4vw; padding: 1vw 0 3vw 0;}
    .text_3 {font-size: 14px; line-height: 20px;}
    button.more { font-size: 12px; padding: 8px 20px; }
}

/* 초콜릿메뉴-------------------------------------------------------------------------- */
.sub_title { 
    text-align: center;
    font-family: 'Pretendard';
    font-weight: 500;
    font-size: 60px;
    color: #683d1e;
}

.sub_text { 
    text-align: center;
    font-size: 18px;
    color: #7a7067;
    font-weight: 500;
    padding: 10px 0 70px 0;
}

.menu_box_wrap { margin: 0 -25px; display: flex; }
.menu_box_wrap::after { display: table; content: ''; clear: both; }

.menu_box { width: 25%; padding: 0 25px; cursor: pointer; }
.menu_box img { width: 100%;}

.menu_name { color: #683d1e;  font-size: 26px; text-align: center; padding-top: 40px;}
.menu_name_sub { color: #7a7067; font-weight: 500; line-height: 22px; font-size: 16px; text-align: center; padding-top: 20px; width: 80%; margin: 0 auto;  }

.menu_box img{
    transition: transform .3s ease, filter .3s ease;
}

.menu_box:hover img{
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 14px 20px rgba(0,0,0,.2));
}



/* 1. 기본 상태: 아주 미세하게(1.03배) 크고 투명함 */
.menu_box {
    opacity: 0;
    transform: scale(1.03); 
    filter: blur(4px); /* 처음에 살짝 흐릿하게 시작해서 은은함 극대화 */
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1); /* 아주 부드러운 가속도 */
    will-change: transform, opacity, filter;
}

/* 2. AOS가 작동해서 'aos-animate' 클래스가 붙었을 때 */
.menu_box.aos-animate {
    opacity: 1;
    transform: scale(1); /* 제자리로 돌아오면서 */
    filter: blur(0);    /* 선명해짐 */
}
/* 초콜릿메뉴 반응형------------------------------------------------------------------------ */

@media (max-width:1200px){
    .menu_box {padding: 0 15px;}
    .sub_title {font-size: 50px;}
}

@media (max-width:768px){
    .sub_title {font-size: 40px;}
    .sub_text { font-size: 16px;}
    .menu_name { font-size: 20px;padding-top: 20px;}
    .menu_name_sub { display: none;}
}

@media (max-width:480px){
    .contents_wrap_2 {padding: 18% 10%;}
    .menu_box_wrap { flex-wrap: wrap;}
    .menu_box { width: 50%; padding: 0 15px;}
    .sub_title {font-size: 30px;}
    .sub_text { font-size: 16px;  padding: 8px 0 50px 0;}
    .margin_bottom_30 { margin-bottom: 30px;}
    .menu_name { font-size: 18px; padding-top: 20px;}
}


/* 섹션2 브랜드스토리---------------------------------------------------------------- */

.img_box_wrap_2 { width: 50%;}
.text_box_wrap_2 { 
    width: 50%; 
    padding: 0 5% 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}
.cacao_img img { border-radius: 20px;}

/* 섹션2 브랜드스토리 반응형----------------------------------------------------- */


@media (max-width:768px){
    .contents_wrap_1 { flex-wrap: wrap; padding: 10% 5%;}
    .img_box_wrap_2 { width: 100%; padding: 10% 0;}
    .text_box_wrap_2 { width: 100%; padding: 0; align-items: center;}
}

@media (max-width:480px){
    .text_box_wrap_2 { width: 100%; padding: 7% 0; align-items: center;}
}


/* 풋터-------------------------------------------------------------------- */

/* footer { width: 100%; padding: 5% 10% 7% 10%; display: flex;  background: #683d1e; justify-content: space-between;}
.f_left { display: flex;}
.f_right { display: flex;}
.f_logo {padding: 4px 40px 0 0; }
.copy { font-size: 18px; line-height: 24px; color: #fff; text-align: left; padding-right: 30px;}
.copy_2 { font-size: 18px; line-height: 24px; color: #fff; }
.copy_2 span { font-size: 26px; line-height: 32px; font-weight: 600; color: #fff; } */


footer { 
    width: 100%; 
    padding: 60px 0; 
    background: #1f120e; /* 너무 밝은 갈색보다 살짝 묵직한 딥 브라운 */
    color: rgba(255, 255, 255, 0.6); 
}

.f_inner { 
    width: 100%; 
    max-width: 1500px; /* 고정 width 대신 max-width 사용 */
    margin: 0 auto; 
    padding: 0 40px; /* 본문과 똑같이 양옆 여백 40px 주기 */
    box-sizing: border-box; /* 패딩을 1500px 안에 포함시키기 */
}

/* 상단 영역 */
.f_top { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-bottom: 30px; 
}

.f_menu { display: flex; list-style: none; padding: 0; }
.f_menu li { margin-right: 30px; }
.f_menu li a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 600;
}

.f_sns a { 
    color: #fff; 
    font-size: 24px; 
    margin-left: 20px; 
    opacity: 0.6; 
    transition: 0.3s; 
}
.f_sns a:hover { opacity: 1; }

.f_line { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 40px; }

/* 하단 영역 */
.f_bottom { display: flex; justify-content: space-between; align-items: flex-start; }

.f_left { display: flex; }
.f_logo { width: 130px; margin-right: 40px; filter: grayscale(1) brightness(2); } /* 로고를 흰색톤으로 깔끔하게 */

.copy { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, 0.5); }
.copyright { margin-top: 20px; color: rgba(255, 255, 255, 0.3); }

.f_right { text-align: right; }
.copy_2 span:first-child { display: block; font-size: 14px; color: #ffedb6; margin-bottom: 10px; }
.copy_2 span:nth-child(2) { display: block; font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.copy_2 p { font-size: 14px; line-height: 1.6; }


/* 패밀리 사이트 버튼------------------------------------------------------------ */
/* 1. 전체 컨테이너: 목록이 나타날 기준점 */
.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 30px; 
    vertical-align: middle; /* 라인 맞춤 */
}

/* 2. 메인 버튼: 원래 디자인 그대로 */
.dropbtn {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 160px;
    outline: none;
}

/* 3. [핵심] 드롭다운 목록: 위치를 버튼 바로 위로 고정 */
.dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;       /* [필수] 버튼의 맨 위쪽 끝에서 시작 */
    left: 0;
    width: 100%;        /* 버튼 너비와 100% 일치 */
    margin-bottom: 1px; /* 버튼과 목록 사이의 미세한 간격 */
    background-color: #fdf8e1;
    border: 1px solid rgba(104, 61, 30, 0.2);
    box-shadow: 0 -10px 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 999;       /* 다른 요소에 가려지지 않게 높게 설정 */
}

/* 4. 마우스 올렸을 때 액션 (부모인 .dropdown에 올릴 때) */
.dropdown:hover .dropbtn {
    background: #fff;
    color: #4e342e;
    border-color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease forwards;
}

/* 5. 내부 링크 스타일 */
.dropdown-content a {
    color: #4e342e;
    padding: 12px 0;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 14px;
    transition: 0.2s;
    border-bottom: 1px solid rgba(104, 61, 30, 0.05);
}

.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #683d1e; color: #fff; }

/* 애니메이션 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform:}}

/* 풋터 반응형-------------------------------------------------------------- */

@media (max-width:1220px){
    footer {padding: 7% 5%;  }
}

@media (max-width:940px){
    .dropdown { display: none;}
    .copy { font-size: 16px; line-height: 24px; }
    .copy_2 { font-size: 14px; line-height: 20px;  }
    .copy_2 span { font-size: 22px; line-height: 26px; }
}

@media (max-width:768px){
    footer { }
    .f_left { width: 75%; flex-wrap: wrap; }
    .f_right { width: 25%; padding-top: 80px;}

}

@media (max-width:480px){
    footer { flex-wrap: wrap; padding: 7% 5% 3% 5%; }
    .f_logo img { width: 70%;}
    .f_left { width: 100%;}
    .copy { font-size: 14px; line-height: 20px; padding-top: 20px; }
    .copy_2 { display: none; }
    
}