@charset "UTF-8";

/* ===============================================
  biofertilizer_howto-detail
=============================================== */
@media (max-width: 767px) {
    .voice-detail .p-heading_container{
        flex-direction: row;
        align-items: flex-start;
    }
    .voice-detail .p-heading_tag{
        margin-top: .3em;
    }
}

/* ==============================
  publication-date
============================== */
.publication-date p {
    text-align: right;
}

/* ==============================
  overview
============================== */
/* overview */
.overview__container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
}

.overview__container .overview__item {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.overview__container .overview__item:nth-child(2) {
    order: -1;
}

@media (min-width: 768px) {
    .overview__container {
        flex-direction: row;
        align-items: flex-start;
    }

    .overview__container .overview__item:nth-child(2) {
        order: 0;
    }
}

.overview__name {
    font-weight: 700;
}

.overview__list li {
    font-weight: 700;
    border-bottom: 1px solid var(--color-gray-dark);
    line-height: 3;
    padding-left: 1em;
}
@media (min-width: 768px) {
    .overview__list {
        padding-right: 1em;
    }
}

/* voiceimg */
.overview .p-voiceimg {
    width: 80%;
    margin: 0 auto;
}

.overview .p-voiceimg__badge {
    width: clamp(7em, 20vw, 10em);
    height: clamp(7em, 20vw, 10em);
    font-size: clamp(0.9em, 2.5vw, 1.3em);
    padding: 1.5em 1.8em;
    top: -1.5em;
    left: -1em;
}
.overview .p-voiceimg__badge-category {
    font-size: clamp(1.1rem, 1em, 1.4rem);
}
.overview .p-voiceimg__badge-year {
    font-size: clamp(1rem, 0.9em, 1.2rem);
}

@media (min-width: 768px) {
    .overview .p-voiceimg__badge {
        width: clamp(5em, 15vw, 8em);
        height: clamp(5em, 15vw, 8em);
        font-size: clamp(0.7em, 2vw, 1.1em);
        padding: 1.2em 1.5em;
        top: -2.5em;
        left: -2em;
    }
    .overview .p-voiceimg__badge-category {
        font-size: 1.25em;
    }
    .overview .p-voiceimg__badge-year {
        font-size: .875em;
    }
}

/* pickup */
.pickup__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
    border-radius: 1em;
    border: 1px solid var(--color-primary);
    height: 100%;
}
.pickup__item .pickup__num {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-primary);
}
.pickup__item .pickup__num span {
    font-size: 0.267em;
}
.pickup__item .pickup__txt {
    font-size: 0.875em;
}

@media (min-width: 768px) {
    .pickup__item .pickup__num {
        font-size: 3.75em;
    }
}

/* ==============================
  index-list
============================== */
.index-list__container {
	background-color: #FCF8EC;
    border-radius: 20px 20px 0 0;
    padding: 1em 1em;
    margin: 1em 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
@media (min-width: 768px) {
	.index-list__container {
		background-color: #FCF8EC;
		border-radius: 20px 20px 0 0;
		padding: 3em 4em;
		margin: 1em 0 0 0;
		display: flex;
		flex-direction: column;
		gap: 0.5em;
	}
}


.index-list__item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}
.index-list__q {
    color: var(--color-text);
    font-weight: normal;
    flex-shrink: 0;
}
.index-list__link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
    flex: 1;
}
.index-list__link:hover {
    opacity: 0.7;
}

/* ==============================
  author
============================== */
.author p {
    text-align: right;
}