@import url(normalize.css);

body {
    background-color: #fff;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
}

* {
    box-sizing: border-box;
}

/* 一般的なレイアウト */
h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 20px;
}

.underline {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.center {
    text-align: center;
}

.small {
    font-size: 80%;
}

.x-scroll {
    width: 100%;
    overflow-x: scroll;
}

/* 各要素 */
.main {
    padding: 16px;
}

.place {
    border: green;
    border-style: solid;
    border-width: 3px;
    border-radius: 4px;
    padding: 12px;
    background-color: antiquewhite;
    font-weight: bold;
    margin-bottom: 28px;
    text-align: center;
    font-size: 20px;
}

.place h1 {
    font-size: 24px;
    margin: 0;
}

.point {
    border: 1px solid green;
    border-radius: 4px;
    padding: 16px 12px 12px;
    margin-bottom: 4px;
    background-color: rgb(177, 223, 177);
    position: relative;
    box-sizing: border-box;
    width: fit-content;
}

.point .point-label {
    position: absolute;
    top: -12px;
    left: -4px;
    padding: 4px 8px;
    background-color: green;
    color: white;
    font-weight: bold;
    font-size: 10px;
    border-radius: 4px;
}


.other-flower {
    margin-top: 0px;
    margin-bottom: 24px;
    border: 3px solid green;
    padding: 12px;
    border-radius: 8px;
    background-color: rgb(246, 254, 209);
}

.other-flower-content {
    margin-bottom: 12px;
}

.button {
    background-color: orange;
    border: 1px solid orange;
    padding: 8px 24px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.other-flower .button {
    margin: 0 auto;
    text-align: center;
}

.wrap-attribute-table {
    margin-bottom: 24px;
    padding: 16px;
}

.attribute-table {
    border-collapse: collapse;
    /* white-space: nowrap; */
}

.attribute-table th,
.attribute-table td {
    text-align: left;
    padding: 8px 8px;
    border: 2px solid #eee;
}

.attribute-table th {
    background-color: #cedaf5;
    white-space: nowrap;
    min-width: 120px;
}

.wrap-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
    width: fit-content;
    margin: 0 auto 24px;
}

.user-name {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 6px 6px;
    font-size: 12px;
    line-height: 1.1;
}

.user-name::before {
    content: "© ";
}

.flower-image {
    margin: 0;
    max-width: 100%;
    padding: 0;
}

tr.bold td {
    background-color: #ffffd5;
}

.footer {
    margin-top: 24px;
    padding: 16px;
    background-color: #eee;
    text-align: center;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}
.footer a {
    color: #333;
    text-decoration: none;
}