@charset "UTF-8";

html {
    font-size: 62.5%;/* 16px * 62.5% = 10px */
    width: 100%;
}

html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 120px;
}

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

img {
    vertical-align: bottom;
}

ul {
    list-style: none;
}

body {
    font-family: "YakuHanJP_Narrow", "Zen Kaku Gothic New", sans-serif;
    color: #37383C;
    background-color: #fcfcfc;
    font-size: 15px;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    text-decoration: none;
}

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

h1 {
    line-height: 1.3em;
    font-weight: 1000;
    letter-spacing: 0.5px;
}

h2 {
    line-height: 1.4em;
}

h3 {
    line-height: 1.5em;
}

h4 {
    line-height: 1.6em;
    font-weight: 500;
}

h5 {
    line-height: 1.6em;
    font-weight: 500;
}

p {
    line-height: 1.8em;
}

sub {
    bottom: -0.5em;
}

.wrapper {
    max-width: 500px;
    margin: 0 auto;
    height: 100vh;
}

main {
    margin: 5%;
    background-color: #fcfcfc;
}
.main_image {
    display: flex;
}
.pic {
    width: 50%;
    height: 50%;
    margin: 20px auto;
    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
}
.text {
    padding: 5px;
    .sub_name {
        padding-bottom: 10px;
    }
}
.de {
    display: block;
    padding-top: 10px;
    text-decoration: underline solid 1px;
}
.links {
    margin: 10% 10% 5% 10%;
}
.link {
    text-align: center;
    display: block;
    margin: 20px;
    padding: 10px;
    border: #37383C 1px solid;
    border-radius: 50px;
}
.link:hover {
    color: #ffffff;
    background-color: #37383C;
}
.time-stmp {
    margin-bottom: 10%;
}
small {
    display: block;
    text-align: center;
    margin-bottom: 10%;
}

/* 共通項目 */
.cap {
    text-transform: capitalize;
}
.upp {
    text-transform: uppercase;
}

/* sp共通項目 */
@media screen and (max-width:768px),(max-height:768px) {
    /* フォントサイズ */
    h1 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    .de,.sub_name {
        font-size: 13px;
    }
    small {
        font-size: 11px
    }
}

/* tab,pc共通項目 */
@media screen and (min-width:768px) and (min-height:768px) {
    /* フォントサイズ */
    h1 {
        font-size: 30px;
    }
    p {
        font-size: 17px;
    }
    .de,.sub_name {
        font-size: 14px;
    }
    small {
        font-size: 12px
    }
}