@charset "UTF-8";

/* 以下iPad mini6ファーストで作成.744x1133 */
body {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    /* letter-spacing:0.1em */
    height: 100dvh;
}

a {
    display: block;
    color: #000;
    text-decoration: none;
    text-align: left;
    font-weight: normal;
}

h1 {
    /* font-weight: 300; */
    /* line-height: 1.0; */
    line-height: 1.5;
}


.container {
    margin: 1rem 6rem 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 1rem 1rem 0; */
}



#main-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100dvh;
    position: relative;
}

#btn {
    cursor: pointer;
}

#cont {
    text-align: center;
    visibility: hidden;
    position: absolute;
    top: 23vh;
}

#cont.on {
    visibility: visible;

}

/* dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

dt {
    font-weight: normal;
    width: 30%;
    margin-bottom: 10px;
    text-align: justify;
    text-align-last: justify;
    letter-spacing: 2;
}


dd {
    width: 70%;
    margin-bottom: 10px;
} */

dl {
    display: grid;
    grid-template-columns: auto 1fr;
    width: max-content;
    max-width: 100%;
    /* padding: 2rem; */
    line-height: 2;
}

dt {
    font-weight: normal;
    text-align: left;
    padding-right: 1rem;
}

#cont p {
    font-weight: normal;
    text-align: left;
    line-height: 2;
}




#content-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

img {
    max-width: 100%;
    /* height: 200px; */
    height: 25dvh;
    cursor: pointer;
    position: absolute;
    bottom: calc(calc(200/1133)*100dvh);
    /* top: 50%; */
    /* transform: translateY(-30%); */
}

/* MBデザイン iPad mini6以下*/
@media screen and (max-width: 450px) {
    .container {
        margin: 1rem 2rem 0;
    }

    img {
        /* height: 400px; */
        height: 30dvh;
        bottom: 17%;
    }



}

/* PCデザイン iPad mini6以上*/
@media screen and (min-width: 769px) {

    img {
        /* height: 400px; */
        height: 50dvh;
    }

    #cont {
        top: 15vh;

    }

}

/* @media screen and (min-width: 1025px) {

    img {
        height: 400px;
        top:  28vh;
    }

}  */