@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

html {}

body {}

.h-sp {
    display: none;
}

.h-pc {
    display: block;
}

h1 {
    margin: 0;
    padding: 0;
    width: 300px;
    height: 200px;
    background-image: url('../images/common/logo.svg');
    background-size: 100% auto;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: left center;
}

.mainContents {
    font-family: "Shippori Mincho B1", serif;
    width: 80%;
    max-width: 800px;
    margin: 80px auto 50px;
}

h2 {
    font-size: 24px;
    line-height: 2;
    letter-spacing: 2px;
    margin-top: 70px;
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

h2:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #000;
    -webkit-transform: rotate(55deg);
    transform: rotate(-55deg);
}

h2:before {
    left: 0;
}

p,
ul,
li {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
}

ul {
    margin-left: 0;
    padding-left: 20px;
}


footer {
    width: 80%;
    max-width: 800px;
    margin: 70px auto 30px;
}

.copyright {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 2;
}

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

    .mainContents {
        width: 90%;
        margin: 80px auto 50px;
    }

    h1 {
        width: 240px;
    }

    .h-sp {
        display: block;
    }

    .h-pc {
        display: none;
    }

    p,
    ul,
    li {
        font-size: 16px;
    }

    footer {
        width: 90%;
    }

}