html, body {
    height: 100%;
}

html {
    font-size: 16px;
    color: #231816;
    font-family:Verdana, "ＭＳ Ｐゴシック", "MS PGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}

.text-highlight {
    font-weight: bold;
    text-decoration: underline;
}

.text-bold {
    font-weight: bold;
}

.text-red {
    color: red;
}

h1 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

h1 > em {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: normal;
    color: #ffffff;
    background-color: #e95105;
    padding: 4px 6px;
}

h1 > em:empty {
    display: none;
}

input {
    font-size: 16px;
}

#message {
    color: #ff0000;
    font-weight: bold;
    background-color: #ffffff;
    border: solid 1px #ff0000;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 5px;
}

#message.info {
    color: #0000ff;
    border: solid 1px #0000ff;
}

#message:empty {
    display: none;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.8;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#header {
    padding: 18px;
    background-color: #ffffff;
    border-bottom: solid 1px #e95105;
}

#logo {
    height: 60px;
}

#content_wrapper {
    flex-grow: 1;
    padding: 18px;
    background-color: #f2f2f2;
}

#footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 18px;
    background-color: #ffffff;
    border-top: solid 1px #e95105;
    font-size: 0.8rem;
}

#logo_footer {
    height: 40px;
}

.ml10 {
    margin-left: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt10 {
    margin-top: 10px;
}

.button-panel {
    padding-top: 20px;
    gap: 12px;
}

.button-panel button {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #e95105;
    border: 1px solid #cacaca;
    border-radius: 6px;
    padding: 14px 32px;
}

.button-panel button#cancel {
    color: #e95105;
    background-color: #ffffff;
    border: 1px solid #e95105;
}

ul.list01 {
    background-color: #ffffff;
    border: solid 1px #e95105;
    border-radius: 4px;
    list-style: none;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.list01 > li > label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

ul.list01 > li > div {
    border: solid 1px #cacaca;
    border-radius: 6px;
    padding: 8px 6px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

ul.list02 {
    list-style: none;
    padding: 19px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.list02 > li > label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

ul.list02 > li > div {
    background-color: #ffffff;
    border: solid 1px #cacaca;
    border-radius: 6px;
    padding: 8px 6px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

ul.list01 input[type=tel],
ul.list01 input[type=email],
ul.list01 input[type=password],
ul.list02 input[type=password] {
    width: calc(100% - 1.2em);
}

#fax-panel {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#fax-panel h2 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

#fax-panel h2::before {
    display: block;
    background-color: #e95105;
    border-radius: 4px; 
    content: " ";
    width: 1.2em;
    height: 1.2em;
}

#fax-panel div.gray {
    border-color: #efefef;
    background-color: #efefef;
}

#fax-panel input[type=radio] {
    margin: 0;
    margin-right: 2px;
    transform: scale(1.2);
}

#use-status-panel {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#use-status-panel h2 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

#use-status-panel h2::before {
    display: block;
    background-color: #e95105;
    border-radius: 4px; 
    content: " ";
    width: 1.2em;
    height: 1.2em;
}

#plan-list-panel {
    background-color: #efefef;
    border: solid 1px #efefef;
    border-radius: 6px;
    padding: 8px 6px;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
}

#plan-list-panel input[type=radio] {
    margin: 0;
    margin-right: 2px;
    transform: scale(1.2);
}

#plan-list-panel > li > div {
    margin-top: 4px;
    margin-left: 1.2rem;
}

#plan-list-panel > li > div > div {
    padding-left: 2rem;
}

.info {
    background-color: #ffffff;
    border: solid 1px #e95105;
    border-radius: 4px;
    padding: 8px 14px;
    margin-top: 8px;
}

.remofax-info {
    margin-top: 40px;
    line-height: 1.8em;
}

.small {
    font-size: 0.8rem;
}
