/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS


- Shades: 
#c3bd2a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE


*/

:root {
    --primary-color: #  ;
    --primary-tint: #fcf9c2;
    --primary-tint-2: #faf69a;
    --secondary-color: #f08224;
    --secondary-shade: #bf2d1d;
    --secondary-shade-2: #c0681d;
    --secondary-shade-3: #d87520;
    --secondary-tint-1: #f39b50;
    --secondary-tint-2: #f5a866;
    --secondary-tint-3: #f6b47c;
    --secondary-tint-4: #f8c192;
    --secondary-tint-5: #f9cda7;
    --open-color: #4dabf7;
    --stop-color: #ff6b6b;
}

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


html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    line-height: 1;
    font-weight: 400;
    color: #555;
    font-family:'メイリオ', 'Meiryo', sans-serif;
    overflow-x: hidden;
}

/* ***************************** */
/* GENERAL COMPONENTS */
/* ***************************** */

.container {
    /* 1140px */
    max-width: 120rem;
    padding: 0 3.2rem;
    margin: 0 auto;

}

.heading-primary,
.heading-secondary,
.heading-tertiary {
    color: #333;
}

.heading-primary {
    font-size: 5.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 3.2rem;
    color: var(--secondary-shade-2);
    font-weight: 700;
    line-height: 1.2;
}

.heading-secondary {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-bottom: 9.6rem;
    color: #333;
}

.heading-tertiary {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
}

.subheading {
    display: block;
    font-size: 1.6rem;
    color: var(--secondary-shade-3);
    text-transform: uppercase;
    font-family: "apparat", sans-serif;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.btn:link,
.btn:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 2rem;
    color: #333;
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    font-weight: 600;
    letter-spacing: .8px;
    transition: all .3s;
}

.btn--full:link,
.btn--full:visited {
    background-color: var(--secondary-color);
    color: #fff;
    
}

.btn--full:hover,
.btn--full:active {
    background-color: var(--secondary-shade-3);
}

.btn--outline:link,
.btn--outline:visited {
    background-color: #fff;
    color: #333;
    
}

.btn--outline:hover,
.btn--outline:active {
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 3px #fff;
}

.margin-right-sm {
    margin-right: 1.6rem !important;
}

.margin-bottom-sm {
    margin-bottom: 1.6rem !important;
}

.margin-bottom-md {
    margin-bottom: 3.2rem !important;
}

.text-center {
    text-align: center !important;
}

.grid {
    display: grid;
    column-gap: 6.4rem;
    row-gap: 9.6rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
    align-items: center !important;
}

.page-top {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;

    position: fixed;
    right: 1rem;
    bottom: 3rem;
    z-index: 999;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--secondary-tint-1);

    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

.page-top::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: -.6rem;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(-45deg);
}

.page-top:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.is-hide {
    pointer-events: none;
}