html {
    --fontSet: "Poppins", "Noto Sans JP", sans-serif;
}

body,
body * {
    font-family: var(--fontSet);
}

.container {
    width: min(600px, 80vw);
    margin: 0 auto;
    background: bisque;
    min-height: 90vh;
    margin-top: 5vh;
    box-shadow: 0 0 10px #ff9696;
    padding: 2em;
    border-radius: 4px;
}

body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

p {
    margin: 0 0 0.5em;
    display: flex;
    align-items: center;
}

p::before {
    content: "";
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-right: 0.65em;
    background: #222;
}

.container div {
    padding: 1em 0;
}

select {
    min-width: 200px;
    height: 32px;
    padding: 0.25em;
}

input[type="text"] {
    width: 100%;
    padding: 0.25em;
    height: 32px;
}

button {
    appearance: none;
    -webkit-appearance: none;
    border: 4px solid coral;
    min-width: 150px;
    padding: 0.5em;
    border-radius: 50px;
    font-weight: bold;
    background: coral;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    transform: scale(1.05);
    background: orange;
    border-color: orange;
}

p.nodot::before {
    content: "\f4fc";
    font-family: "FontAwesome";
    background: transparent !important;
}

.message::before {
    font-family: "FontAwesome";
    content: "\f1b9";
    content: "\f683";
    margin-right: 0.25em;
    background: transparent !important;
}

p.nodot {
    margin-bottom: 2em;
}

.blk {
    font-weight: 800;
    color: hsl(240 70% 40% / 1);
    font-size: 1.2em;
}

span.title {
    display: inline-block;
    min-width: 140px;
    white-space: nowrap;
}

button.send {
    position: relative;
}

.send-button {
    text-align: center;
    padding-top: 4em !important;
}

.noflex {
    display: block;
}

.noflex.nodot::before {
    content: "\e521";
}

span.icon-image {
    display: inline-block;
    background: url(menu-icon.svg) no-repeat center/contain;
    width: 24px;
    height: 24px;
    vertical-align: bottom;
    margin-right: 0.3em;
}

.qr {
    text-align: center;
}

.qr img {
    max-width: 96px;
}