:root {
    --primary: #345;
    --dark: #111;
    --gray: #777;
    --bg: #eee;
    --bg2: #4682b470;
    /*--bg2: linear-gradient(45deg, #234, #467);*/
    --grid: rgba(0, 0, 0, .06);
    --light: #fafafa;
    --max-w: 1280px;
}

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

html{
    width: 100vw;
    overflow-x: hidden;
}
body {
    font-family: 'A-OTF Futo Go B101 Pro Bold', sans-serif;
    color: #000;
    background-color: #fff;
    width: 100vw;
    overflow-x: hidden;
}

main{
    margin-top: 100px;
}

p{
    font-size: 18px;
    line-height: 1.7;
    max-width: 94vw;
    margin: auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: var(--bg);
    background-image: repeating-linear-gradient(0deg, transparent 0 23px, var(--grid) 23px 24px), repeating-linear-gradient(90deg, transparent 0 23px, var(--grid) 23px 24px);
    pointer-events: none;
    z-index: -1;
}

.section-header {
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1280px;
    margin: auto;
    margin-bottom: 40px;
    width: fit-content;
    text-align: center;
}

.title-group {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.en-title {
    font-family: 'Futura-Medium', sans-serif;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 2.16px;
}

.jp-title {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 2.2px;
}

@media (max-width: 768px) {
    main{
        min-height: 25vh;
    }
    p{
        font-size: 16px;
    }
    .en-title {
        font-size: 30px;
    }

    .jp-title {
        font-size: 18px;
    }
    .pc{
        display: none;
    }
}
@media (min-width: 769px) {
.sp{
    display: none;
}
}