@charset "utf-8";
*{margin: 0;padding: 0;line-height: 1.5;}
:root{
    --color_txt: #333;
    --color_ac:rgb(181, 151, 151);
    --color_ac2:rgb(159, 114, 114);
    --color_base:#fdfcf2;
    --color_base3: rgb(243, 238, 238);
}
body {
    font-family: 'Lora', serif;
    color: var(--color_txt);
    letter-spacing: 0.07em;
    line-height: 1.7;
}
li {list-style-type: none;}
a {text-decoration: none;}
img{max-width: 100%;vertical-align: bottom;}
.container{
    position: absolute;
    max-width: 800px;
    height: 600px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color_base);
    padding: 50px;
    z-index: 1;
}
#bg{
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color_txt);
    width: 100%;
    height: 100vh;
    display: none;
}
h1{
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
}
h2{
    margin-bottom: 8px;
    text-align: center;
    font-size: 18px;
    color: var(--color_txt);
}
.content{
    display: flex;
    justify-content: space-between;
}
dl{
    width: 40%;
    color: var(--color_txt);
}
dt{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    border-left: 4px solid var(--color_ac);
    padding-left: 5px;
}
dd{
    font-size: 14px;
    margin-bottom: 30px;
    padding-left: 20px;
}
.comment{
    width: 55%;
    background-color: var(--color_base3);
    padding: 20px 10px;
    border-radius: 20px;
}
.comment_title{
    font-size: 14px;
    margin-bottom: 5px;
    padding: 0 10px;
    font-weight: bold;
    color:  var(--color_ac2);
}
i{
    padding-right: 5px;
    color:var(--color_ac2);
}
.comment_txt{
    font-size: 13px;
    margin-bottom: 13px;
    padding: 0 10px 0 20px;
}
.content p.link{
    position: absolute;
    width: 50%;
    left: 230px;
    bottom: 60px;
    height: 50px;
}
.content p.link a{
    display: block;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    background-color: var(--color_ac2);
    color: #fff;
    border-radius: 50px;
}
.content p.link a:hover{
    opacity: 0.7;
}
@media(max-width:767px){

    .container{
        position:static;
        height:auto;
    }
    #bg{
        position: static;
        width: 100%;
        height: 100vh;
        display: none;
    }
    h1{
        line-height: 20px;
        font-size: 20px;
        margin-bottom: 50px;
    }
    h2{
        margin-bottom: 8px;
        text-align: center;
        font-size: 18px;
        color: var(--color_txt);
    }
    .content{
        display: block;
        margin: 0 auto 50px;
    }
    dl{
        width: 90%;
        margin: 0 auto 30px;
        text-align: center;
    }
    dt{
        margin: 0 auto;
        font-size: 16px;
        margin-bottom: 13px;
        border-left: none;
        padding-left: 5px;
        color: var(--color_ac2);
    }
    dd{
        font-size: 14px;
        padding-bottom: 25px;
        margin-bottom: 20px;
        padding-left: 20px;
        border-bottom: 2px dotted #aaa;
    }
    .comment{
        width: 90%;
        margin: 0 auto 30px;
    }
    .comment_title{
        font-size: 16px;
        margin-bottom: 5px;
        padding: 0 10px;
    }
    .comment_txt{
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 10px 0 20px;
    }
    .content p.link{
        position: static;
        width: 70%;
        margin: 0 auto 50px;
        text-align: center;
    }
    .content p.link a{
        display: block;
        background-color: var(--color_ac2);
        color: #fff;
        border-radius: 50px;
    }
    .content p.link a:hover{
        opacity: 0.7;
    }
}
