a {
    color: black;
}

a:hover {
    color: darkred;
}

.navbar {
    background-color: lightpink;
    color: white;
    width: 100%;
    padding: 10px;
    position: fixed;
    top: 0px;
    left: 0px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, .1);
    z-index: 999;
    display: flex;
}

.navbar a {
    color: inherit;
    text-decoration: none;
}

.navbar a:hover {
    color: darkred;
}

.boxContainer {
    overflow: hidden;
}

.box {
    float: left;
    width: 250px;
    height: 320px;
    padding: 10px;
    border-style: none;
}

.box-highlight {
    float: left;
    width: 250px;
    height: 320px;
    padding: 10px;
    border-style: solid;
    border-color: gold;
    border-radius: 10px;
    background: linear-gradient(to bottom right, white 60%, gold);
}

.thumb {
    border-radius: 10px;
    width: 200px;
    height: 200px;
    border-style: solid;
    border-width: 5px;
    border-color: white;
}

.thumb:hover {
    border-color: lightpink;
    border-width: 5px;
}

.creator {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border-style: solid;
    border-color: lightpink;
}

.creator-highlight {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border-style: solid;
    background: linear-gradient(to right, white 60%, gold);
    border-width: 4px;
    border-color: gold
}

.boxrow {
    display: flex;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    border-style: solid;
    border-color: lightpink;
}

.boxrow-highlight {
    display: flex;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    border-style: solid;
    background: linear-gradient(to right, white 60%, gold);
    border-width: 4px;
    border-color: gold
}

.price {
    color: salmon;
    font-weight: bold;
}

.free {
    color: limegreen;
    font-weight: bold;
}

.deco {
    color: lightpink;
    font-style: italic;
}

.main {
    border-style: solid;
    border-width: 5px;
    border-color: white;
}

.main:hover {
    border-color: lightpink;
}

.pagingbox {
    color: salmon;
    display: flex;
}

.paging {
    width: 100px;
    color: inherit;
}

.div-equal-box {
    padding-bottom: 20x;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: lightpink;
    color: white;
    font-size: 25px;
    margin: 20px 0px;
}

.div-equal-box div {
    text-align: center;
    width: 20%;
}

.div-equal-box div a {
    color: white;
    text-decoration: none;
    margin: 5px;
}

.div-equal-box div .Link {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.div-equal-box div:hover {
    background-color: darkred;
}

.button {
    font-size: 20px;
    border-radius: 5px;
    border-style: none;
    background-color: lightpink;
    color: white;
    font-weight: bold;
}

.button-active {
    font-size: 20px;
    border-radius: 5px;
    border-style: solid;
    border-color: pink;
    background-color: white;
    color: pink;
    font-weight: bold;
}

.highlight {
    font-size: 20px;
    border-radius: 5px;
    border-style: none;
    background-color: orange;
    color: white;
    font-weight: bold;
}

.button_already {
    font-size: 20px;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    background-color: white;
    border-color: lightpink;
    color: lightpink;
    font-weight: bold;
}

.thumbnail_box_folder_button_container {
    display: inline-block;
}

.thumbnail_box_folder_button_container .button_already,
.thumbnail_box_folder_button_container .button {
    font-size: .8rem;
    padding: .2rem;
}

.danger {
    font-size: 20px;
    border-radius: 5px;
    border-style: none;
    background-color: red;
    color: white;
    font-weight: bold;
}

.inside-navbar {
    width: auto;
    padding-left: 50px;
    font-weight: bold;
    font-size: 30px
}

.content {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 130px
}

.emoji {
    height: 25px;
    width: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.welcome {
    text-align: center;
    font-size: 20px;
}

.icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, .3);
    margin-right: 10px;
    margin-left: 10px;
}

.big-icon {
    height: 80px;
    width: 80px;
    border-radius: 40px;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, .3);
    margin-right: 10px;
    margin-left: 10px;
}

.image-crop {
    width: 80px;
    /* 任意の幅 */
    height: 80px;
    /* 任意の高さ */
    overflow: hidden;
    position: relative;
}

.image-crop img {
    object-fit: cover;
    /* 画像をクロップする */
    width: 100%;
    height: 100%;
    position: absolute;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.under {
    text-decoration: underline 5px;
    text-decoration-color: lightpink;
    text-underline-offset: -0.1em;
}

.bg_link {
    background-color: lightpink;
}

.bg_link:hover {
    text-decoration: None;
}

.info_offset {
    padding: 20px;
}

.image-crop {
    width: 200px;
    /* 任意の幅 */
    height: 150px;
    /* 任意の高さ */
    overflow: hidden;
    position: relative;
}

.image-crop a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}

.image-crop img {
    object-fit: cover;
    /* 画像をクロップする */
    width: 100%;
    height: 100%;
    position: absolute;
}

input[type=checkbox] {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

/* 検索フォーム（items / avatars 共通） */
.filter-form {
    border: 2px solid lightpink;
    border-radius: 15px;
    padding: 14px 18px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: flex-end;
}

.filter-row + .filter-row {
    margin-top: 12px;
}

.filter-field {
    display: flex;
    flex-direction: column;
}

.filter-field > label {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    margin-bottom: 3px;
}

.filter-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 15px;
    width: 170px;
    background: #fff;
}

.filter-input:focus {
    outline: none;
    border-color: hotpink;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, .15);
}

.filter-input--num {
    width: 90px;
}

.filter-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
}

.filter-check {
    justify-content: flex-end;
}

.filter-check input[type="checkbox"] {
    margin: 0 auto 5px auto;
    accent-color: hotpink;
}

.filter-submit {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.filter-submit .button {
    padding: 2px 20px;
}

.filter-total {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
}