.recipes-list-title {
    text-align: center;
    font-weight: bold;
    color: #000;
}

.recipes-list-title__upper {
    font-size: 16px;
    color: #523F30;
    display: block;
    text-align: center;
    margin-top: 1em;
    font-weight: bold;
}

.recipes-list {
    display: flex;
    justify-content: start;
    align-items: stretch;
    gap: 48px 24px;
    flex-wrap: wrap;
    margin-top: 64px;
    list-style: none;
    padding: 0;
}

.recipes-list__item {
    flex-basis: 30%;
    position: relative;
}

.recipes-list__item>a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recipes-list__item__thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.recipes-list__item__title {
    font-size: 1.7rem;
    line-height: 1.2;
    padding: 0.5em 0.25em;
    text-align: center;
    font-weight: bold;
    flex-grow: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipes-list__item__time {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    position: absolute;
    top: 8px;
    left: 8px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 18px;
    border: 1px solid #EFEFEF;
}

.recipes-list__item__time>p::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "\e422";
    font-family: 'Material Icons';
    font-size: 48px;
    z-index: 1;
    opacity: 0.15;
}

.recipes-list__item__time>p {
    margin-bottom: 0px;
    font-size: 10px;
    text-align: center;
    z-index: 2
}

.recipes-list__item__time>p>span {
    font-size: 16px;
    letter-spacing: 0.085em;
    font-weight: bold;
}

.recipes-list__item__brand {
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.recipes-list__item__brand.n2 {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.8);
}

.recipes-list__item__brand img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 120px;
}

.recipes-list__img {
    position: relative;
}

.br-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .recipes-list-title {
        font-size: 1.5em;
    }

    .recipes-list {
        gap: 24px 8px;
        margin: 64px -15px 0;
    }

    .recipes-list__item {
        flex-basis: 48%;
    }

    .recipes-list__item__time {
        top: 4px;
        left: 4px;
    }

    .recipes-list__item__brand.n2 {
        width: 56px;
        height: 56px;
    }

    .br-sp {
        display: unset;
    }
}

/* ----追記220929-----------------------------------*/

.txt_official{
	margin-top: 0px;
	text-align: center;
	font-weight: normal;
	font-size: 85%;
	padding: 3px 5px;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
}
.txt_official-2{
	margin-top: 0px;
	text-align: right;
	font-weight: normal;
	font-size: 85%;
	padding: 3px 20px 3px 5px;
	border-right: 1px dotted #999999;
	border-bottom: 1px solid #999999;
	background: #fff;
  background-image: linear-gradient(-45deg, #000 10px, transparent 0);
}

