@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');

body{
    text-align: center;
}

.title_img{
    width: 320px;
}

#wrap_result{
    display: none;
    margin: 20px auto;
    max-width: 320px;
    width: calc(100% - 16px);
    font-family: serif;
}

p{
    width: calc(100% - 32px);
    max-width: 288px;
    margin: 0 auto;
}

#wrap_owari{
    display: none;
}

input[type=radio]{
    display: none;
}

.radio_text{
    display: inline-block;
    background: #96c7ff;
    border: 4px solid #0084ff;
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #000;
    cursor: pointer;
}
input[type=radio]:checked + label{
    background: #ffb774;
    border: 4px solid #ff6600;
}
.button{
    display: block;
    width: calc(100% - 16px);
    max-width: 320px;
    height: 48px;
    margin: 20px auto;
    background: #96c7ff;
    border: 4px solid #0084ff;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
}
.button:hover{
    background: #ffb774;
    border: 4px solid #ff6600;
}

.dummy_link{
    font-family: sans-serif;
    color: #444;
}

.big_link{
    display: inline-block;
    position: relative;
    margin: 16px 0;
    padding: 6px 8px 6px 38px;
    line-height: 33px;
    font-size: 24px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    text-decoration: none;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 10px;
    color: #000000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0);
    transition: box-shadow 0.2s;
}
.big_link::before{
    content: " ";
    position: absolute;
    top: 12px;
    left: 8px;
    background-image: url(../img/Logo\ blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.big_link:hover{
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}