15
May
하나트래블로그 ISIC 국제학생증 체크카드 ISIC 지원 행사
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --navy: #0A3D7C; --navy-dark: #072D5C; --blue: #185FA5; --blue-mid: #378ADD; --blue-light: #E6F1FB; --teal: #1D9E75; --teal-light: #E1F5EE; --amber: #EF9F27; --amber-light: #FAEEDA; --gray-100: #F4F5F7; --gray-200: #E8EAF0; --gray-500: #8890A0; --gray-700: #444C5C; --text: #1A2233; --text-muted: #6B7585; --border: #DDE2EC; --white: #FFFFFF; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; } body { font-family: 'Noto Sans KR', sans-serif; background: #F0F3F8; color: var(--text); min-height: 100vh; padding: 40px 20px 60px; } .container { max-width: 740px; margin: 0 auto; } /* School header */ .school-header { text-align: center; margin-bottom: 28px; animation: fadeDown 0.5s ease both; } .school-name { font-size: 13px; color: var(--text-muted); letter-spacing: 0.08em; font-weight: 500; } .notice-label { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--blue); background: var(--blue-light); padding: 4px 14px; border-radius: 20px; text-transform: uppercase; } /* Top banner */ .top-banner { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 16px; position: relative; overflow: hidden; animation: fadeUp 0.5s 0.1s ease both; } .top-banner::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.05); } .top-banner::after { content: ''; position: absolute; right: 60px; bottom: -50px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.03); } .top-banner-inner { position: relative; z-index: 1; } .badge-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; } .badge { font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); letter-spacing: 0.02em; } .badge-teal { background: var(--teal); color: #fff; } .banner-sub-title { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; } .banner-main-title { font-size: 26px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 10px; } .free-pill { display: inline-block; background: var(--amber); color: #412402; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-left: 10px; vertical-align: middle; } .banner-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; } /* Grid layouts */ .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; } .three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 16px; } .four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 16px; } @media (max-width: 600px) { .two-col, .three-col { grid-template-columns: 1fr; } .four-col { grid-template-columns: 1fr 1fr; } .top-banner { padding: 26px 24px; } .banner-main-title { font-size: 20px; } } /* Cards */ .card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 22px; animation: fadeUp 0.5s ease both; } .card-teal { background: var(--teal-light); border-color: #9FE1CB; } .card-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; } .card-label svg { flex-shrink: 0; } /* Date card */ .date-main { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; } .date-sub { font-size: 12px; color: var(--text-muted); } /* Section heading */ .section-heading { font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin: 24px 0 12px; display: flex; align-items: center; gap: 8px; animation: fadeUp 0.5s ease both; } .section-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); } /* Benefit cards */ .benefit-head { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; } .benefit-item { display: flex; gap: 8px; margin-bottom: 9px; align-items: flex-start; } .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-mid); margin-top: 6px; flex-shrink: 0; } .b-text { font-size: 13px; line-height: 1.5; color: var(--text); } .b-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; } /* Event2 */ .ev-label { font-size: 11px; color: var(--teal); font-weight: 700; margin-bottom: 4px; } .ev-val { font-size: 13px; color: var(--text); line-height: 1.5; font-weight: 500; } /* Step cards */ .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; } .step-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; line-height: 1.4; } .step-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; } .step-link { font-size: 10px; color: var(--blue); margin-top: 5px; word-break: break-all; font-weight: 500; } /* Notice box */ .notice-box { background: var(--blue-light); border-left: 4px solid var(--blue-mid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin-bottom: 16px; font-size: 13px; color: var(--gray-700); line-height: 1.7; animation: fadeUp 0.5s ease both; } .notice-box strong { color: var(--navy); } /* Contact */ .contact-card { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; animation: fadeUp 0.5s ease both; margin-top: 8px; } .contact-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; } .contact-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; } .contact-phone { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: 0.02em; } .contact-ext { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; } .hana-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 10px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; } /* Footer */ .footer { text-align: center; margin-top: 36px; font-size: 11px; color: var(--text-muted); line-height: 1.8; animation: fadeUp 0.5s ease both; } /* Animations */ @keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } .card:nth-child(1) { animation-delay: 0.15s; } .card:nth-child(2) { animation-delay: 0.20s; } .card:nth-child(3) { animation-delay: 0.25s; } .card:nth-child(4) { animation-delay: 0.30s; } .section-heading:nth-of-type(1) { animation-delay: 0.2s; } .section-heading:nth-of-type(2) { animation-delay: 0.3s; } .section-heading:nth-of-type(3) { animation-delay: 0.4s; } .notice-box { animation-delay: 0.35s; } .contact-card { animation-delay: 0.4s; } .footer { animation-delay: 0.45s; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --navy: #0A3D7C; --navy-dark: #072D5C; --blue: #185FA5; --blue-mid: #378ADD; --blue-light: #E6F1FB; --teal: #1D9E75; --teal-light: #E1F5EE; --amber: #EF9F27; --amber-light: #FAEEDA; --gray-100: #F4F5F7; --gray-200: #E8EAF0; --gray-500: #8890A0; --gray-700: #444C5C; --text: #1A2233; --text-muted: #6B7585; --border: #DDE2EC; --white: #FFFFFF; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; } body { font-family: 'Noto Sans KR', sans-serif; background: #F0F3F8; color: var(--text); min-height: 100vh; padding: 40px 20px 60px; } .container { max-width: 740px; margin: 0 auto; } /* School header */ .school-header { text-align: center; margin-bottom: 28px; animation: fadeDown 0.5s ease both; } .school-name { font-size: 13px; color: var(--text-muted); letter-spacing: 0.08em; font-weight: 500; } .notice-label { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--blue); background: var(--blue-light); padding: 4px 14px; border-radius: 20px; text-transform: uppercase; } /* Top banner */ .top-banner { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 16px; position: relative; overflow: hidden; animation: fadeUp 0.5s 0.1s ease both; } .top-banner::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.05); } .top-banner::after { content: ''; position: absolute; right: 60px; bottom: -50px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.03); } .top-banner-inner { position: relative; z-index: 1; } .badge-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; } .badge { font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); letter-spacing: 0.02em; } .badge-teal { background: var(--teal); color: #fff; } .banner-sub-title { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; } .banner-main-title { font-size: 26px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 10px; } .free-pill { display: inline-block; background: var(--amber); color: #412402; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-left: 10px; vertical-align: middle; } .banner-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; } /* Grid layouts */ .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; } .three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 16px; } .four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 16px; } @media (max-width: 600px) { .two-col, .three-col { grid-template-columns: 1fr; } .four-col { grid-template-columns: 1fr 1fr; } .top-banner { padding: 26px 24px; } .banner-main-title { font-size: 20px; } } /* Cards */ .card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 22px; animation: fadeUp 0.5s ease both; } .card-teal { background: var(--teal-light); border-color: #9FE1CB; } .card-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; } .card-label svg { flex-shrink: 0; } /* Date card */ .date-main { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; } .date-sub { font-size: 12px; color: var(--text-muted); } /* Section heading */ .section-heading { font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin: 24px 0 12px; display: flex; align-items: center; gap: 8px; animation: fadeUp 0.5s ease both; } .section-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); } /* Benefit cards */ .benefit-head { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; } .benefit-item { display: flex; gap: 8px; margin-bottom: 9px; align-items: flex-start; } .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-mid); margin-top: 6px; flex-shrink: 0; } .b-text { font-size: 13px; line-height: 1.5; color: var(--text); } .b-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; } /* Event2 */ .ev-label { font-size: 11px; color: var(--teal); font-weight: 700; margin-bottom: 4px; } .ev-val { font-size: 13px; color: var(--text); line-height: 1.5; font-weight: 500; } /* Step cards */ .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; } .step-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; line-height: 1.4; } .step-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; } .step-link { font-size: 10px; color: var(--blue); margin-top: 5px; word-break: break-all; font-weight: 500; } /* Notice box */ .notice-box { background: var(--blue-light); border-left: 4px solid var(--blue-mid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin-bottom: 16px; font-size: 13px; color: var(--gray-700); line-height: 1.7; animation: fadeUp 0.5s ease both; } .notice-box strong { color: var(--navy); } /* Contact */ .contact-card { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; animation: fadeUp 0.5s ease both; margin-top: 8px; } .contact-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; } .contact-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; } .contact-phone { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: 0.02em; } .contact-ext { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; } .hana-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 10px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; } /* Footer */ .footer { text-align: center; margin-top: 36px; font-size: 11px; color: var(--text-muted); line-height: 1.8; animation: fadeUp 0.5s ease both; } /* Animations */ @keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } .card:nth-child(1) { animation-delay: 0.15s; } .card:nth-child(2) { animation-delay: 0.20s; } .card:nth-child(3) { animation-delay: 0.25s; } .card:nth-child(4) { animation-delay: 0.30s; } .section-heading:nth-of-type(1) { animation-delay: 0.2s; } .section-heading:nth-of-type(2) { animation-delay: 0.3s; } .section-heading:nth-of-type(3) { animation-delay: 0.4s; } .notice-box { animation-delay: 0.35s; } .contact-card { animation-delay: 0.4s; } .footer { animation-delay: 0.45s; }
공식 행사하나은행 주관이벤트①
하나트래블로그 ISIC 국제학생증 체크카드
ISIC 1년 인증비
19,000원 지원 행사 무료
카드 발급 시 인증비(19,000원)는 고객 앞 청구되지 않습니다
📅 행사 일정
비대면 신청 기간
2026. 05. 18 ~ 05. 31
온라인 신청 가능
학교 방문 행사
2026. 05. 18 ~ 05. 19
10:00 ~ 17:00 | 로비 내 카페
🎁 주요 혜택
ISIC 국제학생증 혜택
학생 항공요금 혜택
항공사별 학생요금·수하물 혜택 제공
유럽 기차 및 호주 버스패스 할인
해외 여행·유학·워홀 보험 서비스
인슈플러스·어시스트카드 할인
레노버 온라인스토어, 글로벌 eSIM 할인
하나 트래블로그 체크카드 혜택
58종 전체통화 환율 100% 우대
목표환율 자동충전 서비스
원화결제계좌 하나머니 자동충전
해외이용수수료 면제
해외가맹점·해외 ATM 인출 시
국내 가맹점 하나머니 적립
월 최대 1만머니
⭐ 이벤트② 신규 발급자 추가 혜택
기간
2026. 2. 23 ~ 5. 31
대상
하나 트래블로그 ISIC 국제학생증 체크카드 신규 발급자
혜택
메가커피 아이스아메리카노 (2천원권) 모바일쿠폰 2매 증정
📋 카드 신청 방법 (비대면)
1
ISIC 국제학생증 신청
하나은행 My브랜치에서 'ISIC 국제학생증 신청하기' 선택 후 온라인 등록
isic.co.kr/hbr/442009
2
행사 카드 이미지 선택
로그인 후 하나트래블로그 ISIC 국제학생증 체크카드 이미지 클릭
isic.co.kr/myid
3
고객확인번호 메모 후 My브랜치 이동
연결 화면에서 고객확인번호 메모 → '하나은행 My브랜치 바로가기' 클릭
4
비대면 계좌개설 카드발급 신청
하나은행 MY 브랜치 앱에서 계좌개설 및 카드발급 신청 진행
ℹ️ 비대면 카드발급 신청 시 신분 증명을 위해 주민등록증 또는 운전면허증을 준비한 후 진행해 주세요.
문의
하나은행 방배기업센터 지점
02-586-1128
내선 121번
하나은행
본 행사는 하나은행 주관 이벤트입니다.
자세한 사항은 문의처로 연락해 주세요.
삼육보건대학교