@charset "UTF-8";
/* CSS Document */
body {
        font-family: "shippori-mincho", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        color: #707070;
}
img {
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
}
header h1 {
        font-family: "hiragino-mincho-pron", sans-serif;
        font-weight: 300;
        font-style: normal;
}
/*drawer menu*/
.container img {
        max-width: 50px;
        height: 50px;
}
/*main*/
.wrap {
        background-color: rgba(255, 251, 239, 0.7);
        box-shadow: 0 3px 10px gray;
}
@media screen and (min-width:769px) {
        .wrap {
                width: 59%;
                max-width: 1140px;
                margin: auto;
        }
}
h2 {
        font-family: "dnp-shuei-gothic-gin-std", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        margin: 0 auto;
}
.step {
        font-family: "dnp-shuei-gothic-gin-std", sans-serif;
        font-weight: 400;
        font-style: normal;
}
footer {
        text-align: center;
        padding: 10px 0;
}
a {
        text-decoration: none;
        color: #707070;
}
a.btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        max-width: 583px;
        margin: 0 auto;
        font-size: clamp(12px, 2vw, 16px);
        font-weight: bold;
        color: #707070;
        background: #e3f2d2;
        border-radius: 200px;
        padding: 20px 0;
        margin-bottom: 98px;
        text-decoration: none;
        box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
li {
        list-style: none;
        width: fit-content;
        position: relative;
}
@media screen and (min-width:769px) {
li a::after {
        content: '';
        width: 100%;
        height: 0.1px;
        background: #707070;
        opacity: 0.5;
        transition: all 0.5s;
        transform: scale(0, 1);
        transform-origin: center;
}
li a:hover::after {
        transform: scale(1, 1);
        position: absolute;
        bottom: -30%;
        left: 0%;
}
}