@charset "UTF-8";

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,h2,h3,h4,h5,h6,
p,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ここから */

html {
    -webkit-text-size-adjust: 100%;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #FFF;
    background-color: #000;
}

.en {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#KV {
    width: 100%;
    aspect-ratio: 2 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 40%;
    height: auto;
}

.uc {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    line-height: 100%;
}

#profile {
    width: 1280px;
    margin: 0 auto;
}

.ttl-prof {
    font-size: 80px;
    line-height: 100%;
    margin-bottom: 100px;
}

dl {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0px;
}

dt {
    font-size: 15px;
    height: 30px;
    display: flex;
	align-items: center;
    width: 20%;
}

dd {
    font-size: 18px;
    line-height: 1.8rem;
    width: 80%;
    margin: 0;
}

ol {
  list-style: decimal;
  padding-left: 1.5em;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0 50px;
    font-size: 12px;
    line-height: 100%;
}

@media screen and (min-width: 769px) {

    .sp {
        display: none;
    }

}

/* スマホ用 */

@media screen and (max-width: 768px) {

    #KV {
        aspect-ratio: 5 / 6;
    }

    .logo {
        width: 60%;
    }

    .uc {
        top: 12px;
        right: 12px;
        font-size: 16px;
    }

    #profile {
        width: 100%;
        padding: 0 5%;
    }

    .ttl-prof {
        font-size: 28px;
        margin-bottom: 32px;
    }

    dl {
        gap: 12px 0px;
    }

    dt {
        font-size: 11px;
        height: 26px;
        width: 23%;
    }

    dd {
        font-size: 13px;
        line-height: 1.6rem;
        width: 77%;
    }

    footer {
        padding: 48px 0 32px;
        font-size: 10px;
    }

}

/* タブレット用 */

@media screen and (min-width: 769px) and (max-width: 1365px) {

    #KV {
        aspect-ratio: 3 / 2;
    }

    .uc {
        font-size: 24px;
    }

    #profile {
        width: 100%;
        padding: 0 5%;
    }

    .ttl-prof {
        font-size: 56px;
        margin-bottom: 72px;
    }

    dl {
        gap: 20px 0px;
    }

    footer {
        padding: 80px 0 40px;
    }

}