@charset "UTF-8";

/* =========================================
   1. BASE (Biến & Reset)
   ========================================= */
@font-face {
    font-family: 'Futura';               /* Tên bạn tự đặt để gọi sau này */
    src: url('../fonts/Futura\ Medium.otf') format('otf'); /* Đường dẫn file */                  /* Khai báo đây là kiểu đậm */
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* --- Colors --- */
    --c-text-main: #00146E;
    --c-text-white: #FFFFFF;
    --c-bg-body: #FFFFFF;

    /* --- Fonts --- */
    /* Bạn nhớ cài font Futura vào máy hoặc import nhé */
    --f-en: 'Futura', sans-serif; 
    --f-jp: 'Sawarabi Gothic', sans-serif;

    /* --- Font Sizes (Mobile Base) --- */
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-62: 62px;

    /* --- Spacing --- */
    --sp-padding-side: 15px; 

    /* Header height */
    --head-height: 48px;
}

/* Reset cơ bản */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

body {
    font-family: var(--f-jp);
    font-size: var(--fs-12);
    color: var(--c-text-main);
    background-color: var(--c-bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

button {
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

/* Utility Class */
.u-font-futura { font-family: var(--f-en); font-weight: 700; }
.u-uppercase { text-transform: uppercase; }


.notes {
    margin: var(--head-height) 0 0 0;
}

.notes__group {
    padding: 12px 10px;
}

.notes > h2 {
    text-align: center;
    color: #000;
    font-size: var(--fs-22);
    font-family: var(--f-jp);
    line-height: 1;
    padding: 32px 0 24px 0;
}

/* Tiêu đề phụ */
.notes__sub-title {
    font-size: var(--fs-18);
    color: var(--c-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Tạo dấu vuông ■ bằng CSS */
.notes__sub-title::before {
    content: ''; 
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00146E; /* Màu vuông */
}

/* Danh sách */
.notes__list {
    list-style: none; /* Tắt dấu chấm tròn mặc định */
    padding-left: 0;
}

.notes__list li {
    position: relative;
    font-size: var(--fs-14);
    color: #000;
    padding-left: 1em; /* Chừa chỗ cho dấu chấm */
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Tạo dấu chấm ・ bằng CSS (hoặc dùng text-indent nếu lười) */
.notes__list li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
}

.notes__contact {
    font-size: var(--fs-16);
    color: #000;
}

.notes__contact p > a {
    color: blue;
}




/* =========================================
   4. FOOTER
   ========================================= */
.footer {
    background-color: #000;
    color: var(--c-text-white);
    padding: 24px;
}

.footer .footer__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .footer__logos .logo__ttc {
    min-width: 144px;
    width: 144px;
} */

.footer__logos .logo__instagram {
    min-width: 32px;
    width: 32px;
}

.footer .footer__nav-list {
    padding: 24px 0 8px 0;
    font-size: var(--fs-16);
    font-family: var(--f-en);
    font-weight: 900;
    border-bottom: 1px solid #fff;
}

.footer .footer__nav-list > li {
    padding: 8px 0;
}

.footer .footer__nav-list > li > a {
    display: block;
}

.footer .footer__privacy-list {
    padding: 16px 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}