.background {
    padding: 170px 0 250px;
    margin-top: -80px;
    border-radius: 5em 5em 0 0;
}
:root {
    --color: #00A45B;
    --fn1: "Zen Old Mincho", serif;
    --fn2: "Klee One", cursive;
}
.ttl {
    font-size: 2.5em;
    color: var(--color);
    font-family: var(--fn1);
    font-weight: 400;
    margin-bottom: 0.7em;
}
.ttl__small {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    text-align: center;
    margin-bottom: 70px;
}
.btn a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.btn a:hover {
    transform: translateY(-2px);
}
.btn img {
    width: auto;
    height: 50px;
}

/* ========= HEADER ========== */
.header {
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.header__inner {
    justify-content: space-between;
}
.header__nav {
    font-family: var(--fn1);
    font-size: .95em;
    background-color: #fff;
    padding: 20px 60px;
    border-radius: 5em;
}
.header__nav--list {
    gap: 30px;
}

/* ========= MV ========== */
.mv__img:before {
    padding-top: 100vh;
}
.mv__inner {
	position: relative;
	overflow: hidden;
}

.mv__inner .mv__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 2s ease; /* ← ここがふわっと感 */
}

.mv__inner .mv__img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover; /* 現状の綺麗な表示を崩さない */
}

/* 表示される画像 */
.mv__inner .mv__img.active {
	opacity: 1;
	position: relative;
    z-index: 1;
}

/* ========= ABOUT ========== */
.about {
    padding: 200px 0px 300px;
    color: #fff;
    background-image: url('../img/top_about_gra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about__ttl {
    font-family: var(--fn2);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
}
.about__txt {
    font-size: 1.125em;
    line-height: 3;
    max-width: 740px;
    margin: 0 auto 4em;
}
.about__btn {
    text-align: center;
}

/* ========= PRODUCTS ========== */
.products {
    background-color: #F9FCF7;
}
.products__description--txt {
    width: 60%;
}
.products__description--btn {
    width: 36%;
}
.products__txt {
    line-height: 2;
}
.products__btn {
    text-align: end;
}

/* ========= スライダー ========== */
.products__slider {
    overflow: hidden;
    position: relative;
    margin: 60px 0 0;
}
.products__slider--container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.products__slider--track {
    display: flex;
    animation: slideLeft 20s linear infinite;
    width: calc(100% + 40px);
}
.products__slider--item {
    flex: 0 0 auto;
    width: calc(25% - 10px);
    margin-right: 20px;
    padding: 15px 0;
    margin-bottom: 40px;
}
.products__slider--item:nth-child(2n) {
    margin-top: 40px;
    margin-bottom: 0;
}
.products__item--card {
    border-radius: 3em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.products__item--img {
    border-radius: 3em;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products__item--img img {
    width: 100%;
    object-fit: cover;
}
/* スライダーアニメーション */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* 4枚分完全に移動して1枚目に戻る */
    }
}

/* ========= NEWS ========== */
.news {
    background-color: #ECF6EC;
    padding: 170px 0 0;
}
.news__description {
    justify-content: space-between;
    margin-bottom: 4em;
}
.news__ttl {
    margin-bottom: 0;
}
.news__archive--content {
    padding: 30px 0px;
    border-top: solid 2px #fff;
}
.news__archive--content:last-child {
    border-bottom: solid 2px #fff;
}
.news__archive--date {
    font-family: var(--fn1);
    font-size: .75em;
    width: 12%;
}
.news__archive--ttl {
    font-size: 1.125em;
    width: 73%;
}
.news__archive--btn {
    width: 15%;
    text-align: end;
}
.news__archive--btn img {
    width: 40px;
}
.news__background {
    position: relative;
    overflow: hidden;
}
.news__background img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(3px);
}
.news__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(236, 246, 236, 0.9) 0%,
        rgba(236, 246, 236, 0.7) 30%,
        rgba(236, 246, 236, 0.4) 60%,
        rgba(236, 246, 236, 0.1) 80%,
        rgba(236, 246, 236, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ========= RECIPE ========== */
.recipe {
    background: linear-gradient(to bottom, #fff 0%, #fff 70%, #ccf5cc 100%);
    position: relative;
}
.recipe__description {
    margin-bottom: 70px;
}
.recipe__description--txt {
    width: 60%;
}
.recipe__description--btn {
    width: 36%;
}
.recipe__btn {
    text-align: end;
}
.recipe__archive--img {
    border-radius: 2em;
    margin-bottom: 1.5em;
}
.recipe__archive--img:before {
    padding-top: 75%;
}
.recipe__archive--ttl {
    color: var(--color);
    text-align: center;
    height: 3.6em;
    overflow: hidden; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* ========= RECRUIT ========== */
.recruit {
    background-image: url('../img/top_recruit_04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.recruit::before {
    content: "";
    background-image: url('../img/top_recruit_03.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
}
.recruit__inner {
    position: relative;
    max-width: 1240px;
}
.recruit__img--left {
    width: 25%;
}
.recruit__img--left img {
    width: 100%;
}
.recruit__description {
    width: 50%;
    text-align: center;
    padding: 0 4%;
}
.recruit__subttl {
    font-size: 2.5em;
    font-family: var(--fn2);
    margin-bottom: 1em;
}
.recruit__txt {
    font-size: 1.125em;
    line-height: 3;
    text-align: justify;
    margin-bottom: 4em;
}
.recruit__img--right {
    width: 25%;
}
.recruit__img--right img {
    width: 100%;
}

/* ========= COMPANY_PRINCIPLE ========== */
.company_principle {
    background: linear-gradient(to bottom, #F9FCF7 0%, #F9FCF7 60%, #ccf5cc 100%);
    position: relative;
}
.company_principle__txt {
    display: grid;
    justify-content: center;
    font-size: 1.125em;
    line-height: 2;
}

/* ========= COMPANY_ABOUT ========== */
.company_about {
    background-color: #fff;
    position: relative;
    padding: 150px 0 0px;
}
.company_about.company_history {
    padding-bottom: 130px;
}
.company_about__content--item {
    padding: 30px 0;
    border-top: solid 1px #C1E1C1;
}
.company_about__item--ttl {
    width: 15%;
    margin: 0 0 0 25%;
    color: var(--color);
    font-size: 1.125em;
    font-weight: 400;
}
.company_about__item--txt {
    width: 60%;
    font-size: 1.125em;
}

/* ========= PRODUCTS_ARCHIVE ========== */
.products_archive {
    background-color: #fff;
    padding: 30px 0;
}
.products_archive__description {
    margin-bottom: 80px;
}
.products_archive__tabs {
    display: flex;
}
.products_archive__tab {
    background: #C1E1C1;
    border: none;
    padding: 15px 0;
    width: 25%;
    font-size: 1em;
    color: var(--color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1.5em 1.5em 0 0;
    margin-right: 10px;
    position: relative;
    font-family: var(--fn1);
}
.products_archive__tab:last-child {
    margin-right: 0;
}
.products_archive__tab:hover {
    background: var(--color);
    color: #fff;
}
.products_archive__tab.active {
    background: var(--color);
    color: #fff;
    font-weight: 600;
}
.products_archive__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color);
}
.products_archive__content {
    background: #fff;
    border-top: 1px solid var(--color);
    padding: 80px 0 0;
}
.products_archive__content > div {
    display: none;
    max-width: 1140px;
}
.products_archive__content > div.active {
    display: flex;
}
.products_archive__item {
    position: relative;
    margin-bottom: 80px;
}
.products_archive__item--label {
    position: absolute;
    background: var(--color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 2em 0;
    font-family: var(--fn1);
    font-size: .94em;
    font-weight: 400;
    z-index: 1;
}
.products_archive__item--img {
    width: 100%;
    position: relative;
    overflow: hidden;
	height: fit-content;
    border-radius: 2em;
}
.products_archive__item--img:before {
	content: "";
    display: block;
    padding-top: 100%;
}
.products_archive__item--img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
a:hover .products_archive__item--img img {
    transform: translate(-50%, -50%) scale(1.1);
}
.products_archive__item--ttl {
    margin-top: 20px;
    color: var(--color);
    text-align: center;
    height: 3.6em;
    overflow: hidden; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.products_archive__item--new {
    background: #63469b!important;
    color: #fff!important;
}
.products_archive__tab--new {
    background: #E0DAEB;
    color: #63469B;
}
.products_archive__tab--new:hover {
    background: #63469B;
    color: #fff;
}
.products_archive__tab--new.active {
    background: #63469B;
    color: #fff;
}
.products_archive__item--season {
    background: #DDAA00!important;
    color: #fff!important;
}
.products_archive__tab--season {
    background: #F0D98C;
    color: #BF6E00;
}
.products_archive__tab--season:hover {
    background: #DDAA00;
    color: #fff;
}
.products_archive__tab--season.active {
    background: #DDAA00;
    color: #fff;
}
.products_archive__item--standard {
    background: #E86925!important;
    color: #fff!important;
}
.products_archive__tab--standard {
    background: #F8CDB7;
    color: #E86925;
}
.products_archive__tab--standard:hover {
    background: #E86925;
    color: #fff;
}
.products_archive__tab--standard.active {
    background: #E86925;
    color: #fff;
}

/* ========= RECRUIT_ABOUT ========== */
.recruit_about {
    padding: 170px 0 250px;
    background-image: url('../img/top_recruit_04.jpg');
    background-size: 800px;
    background-position: center;
    background-repeat: repeat;
	margin-top: -32px;
}
.recruit_about__description {
    width: 55%;
    margin-right: 10%;
}
.recruit_about__ttl {
    font-size: 1.75em;
    font-family: var(--fn2);
    margin-bottom: 1em;
}
.recruit_about__txt {
    line-height: 2.5;
}
.recruit_about__img {
    width: 30%;
}
.recruit_about__img img {
    width: 100%;
}

/* ========= RECRUIT_INTRODUCTION ========== */
.recruit_introduction {
    background-color: #ECF6EC;
}
.recruit_introduction__ttl {
    margin-bottom: 130px;
}
.recruit_introduction__item {
    border-top: solid 1px #C1E1C1;
    padding: 60px 0;
}
.recruit_introduction__item:last-child {
    border-bottom: solid 1px #C1E1C1;
}
.recruit_introduction__item--description {
    width: 40%;
    margin: 0 5% 0 15%;
    position: relative;
}
.recruit_introduction__item--img {
    width: 40%;
    border-radius: 5em 0 0 5em;
}
.recruit_introduction__item--img:before {
    padding-top: 32em;
}
.recruit_introduction__item--subttl {
    font-size: 1.375em;
    font-family: var(--fn2);
    margin-bottom: 1em;
}
.recruit_introduction__item--ttl {
    font-size: 1.56em;
    color: var(--color);
    padding-bottom: 1em;
    border-bottom: dashed 2px #C1E1C1;
}
.recruit_introduction__item--ttl::before {
    content: "";
    display: block;
    width: 20px;
    background: #C1E1C1;
    height: 20px;
    border-radius: 5em;
    position: absolute;
    left: -100px;
    top: 3.1em;
}
.recruit_introduction__item--ttl::after {
    content: "";
    display: block;
    width: 5px;
    background: #C1E1C1;
    height: calc(100% + 80px);
    position: absolute;
    left: -93px;
    top: 3.2em;
}
.recruit_introduction__item--point {
    font-size: .875em;
    margin: 2em 0;
    color: var(--color);
}
.recruit_introduction__item--point span {
    background-color: var(--color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 5em;
	margin-right: 1em;
}
.recruit_introduction__item--txt {
    margin-bottom: 4em;
}
.recruit_introduction__item--btn {
    justify-content: space-between;
    max-width: 470px;
}
.recruit_introduction__item--btn a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.recruit_introduction__item--btn a:hover {
    transform: translateY(-2px);
}
.recruit_introduction__item--btn img {
    width: auto;
    height: 52px;
}

/* ========= RECRUIT_INTERVIEW ========== */
.recruit_interview {
	background-image: url(../img/top_recruit_04.jpg);
	background-size: 800px;
	background-position: center;
	background-repeat: repeat;
    padding-bottom: 130px;
}
.recruit_interview__item {
    margin-bottom: 7em;
}
.recruit_interview__item--profile {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding-bottom: 2em;
    border-bottom: dashed 2px #C1E1C1;
}
.recruit_interview__item--content {
    margin-left: 4em;
}
.recruit_interview__item--ttl {
    font-size: 1.375em;
    font-family: var(--fn2);
    margin-bottom: 1em;
}
.recruit_interview__item--time {
    font-size: .875em;
}
.recruit_interview__item--author {
    font-size: 1.25em;
    color: var(--color);
}
.recruit_interview__item--txt {
    margin-top: 1.5em;
    line-height: 2;
}

/* ========= RECRUIT_REQUIREMENTS ========== */
.recruit_requirements {
    background-color: #fff;
    padding-bottom: 0px;
}
.recruit_requirements__ttl {
    margin-bottom: 130px;
}
.recruit_requirements__tabs {
    display: flex;
}
.recruit_requirements__tab {
    background: #C1E1C1;
    border: none;
    padding: 15px 0;
    width: 16.6%;
    font-size: 1em;
    color: var(--color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1.5em 1.5em 0 0;
    margin-right: 10px;
    position: relative;
    font-family: var(--fn1);
}
.recruit_requirements__tab:last-child {
    margin-right: 0;
}
.recruit_requirements__tab:hover {
    background: var(--color);
    color: #fff;
}
.recruit_requirements__tab.active {
    background: var(--color);
    color: #fff;
}
.recruit_requirements__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color);
    color: #fff;
}
.recruit_requirements__content {
    border-top: 1px solid var(--color);
    padding: 100px 0 150px;
}
.recruit_requirements__content > div {
    display: none;
}
.recruit_requirements__content > div.active {
    display: block;
}
.recruit_requirements__content--ttl {
    font-size: 1.56em;
    color: var(--color);
    font-family: var(--fn1);
    margin-bottom: 80px;
    text-align: center;
}
.recruit_requirements__content--details {
    padding: 30px 0;
    border-top: solid 1px #C1E1C1;
}
.recruit_requirements__content--details_wrap {
    width: 100%;
}
.recruit_requirements__details--ttl {
    font-size: 1.125em;
    width: 35%;
    color: var(--color);
}
.recruit_requirements__details--txt {
    font-size: 1.125em;
    line-height: 2;
    width: 65%;
}
.recruit_requirements__content--btn {
    text-align: center;
    margin-top: 70px;
}
.recruit_requirements__content--btn a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.recruit_requirements__content--btn a:hover {
    transform: translateY(-2px);
}
.recruit_requirements__content--btn img {
    width: 220px;
}

/* ========= RECIPE_CONTENT ========== */
.recipe_content {
    padding: 30px 0;
}
.recipe_content__description {
    margin-bottom: 5em;
}
.recipe__archive--item {
    margin-bottom: 5em;
}

/* ========= CONTACT ========== */
.contact {
    padding: 170px 0;
    background-image: url('../img/footer_01-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.contact__ttl {
    font-size: 2.5em;
    font-family: var(--fn1);
    margin-bottom: 1em;
}
.contact__info {
    text-align: center;
}
.contact__tel {
    font-size: 2.5em;
    letter-spacing: 3px;
    color: #fff;
}
.contact__tel span {
    font-size: .5em;
    margin-right: .7em;
}
.contact__time {
    font-size: .75em;
    margin-bottom: 5em;
}
.contact__btn a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.contact__btn a:hover {
    transform: translateY(-2px);
}

/* ========= FOOTER ========== */
.footer {
    padding: 130px 0;
    background-image: url('../img/footer_02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.footer__description--logo_ttl {
    font-size: .875em;
}
.footer__description--logo {
    margin-bottom: 2em;
}
.footer__description--logo img {
    width: 350px;
}
.footer__description--address {
    font-size: 1.125em;
    line-height: 2;
}
.footer__description--address a {
    color: #fff;
}
.footer__nav {
    font-size: 1.25em;
    font-family: var(--fn1);
}
.footer__nav--list ul li {
    margin-bottom: 1em;
}
.footer__nav--list a {
    color: #fff;
}
.footer__privacy a {
    color: #fff;
    display: grid;
    justify-content: end;
    font-size: .875em;
    font-family: var(--fn1);
}
.footer__copyright {
    text-align: end;
    font-size: .75em;
}
.page_top {
    bottom: 30px;
}
.page_top img {
    width: 55px;
}

/* LOW PAGE */
.page_content {
    margin: 60px auto;
}
.low_hd__inner--bk:before {
    height: 380px;
}
.low_hd__inner--content {
    max-width: 1140px;
    padding: 0 20px;
    text-align: left;
    width: 100%;
	margin-top: 40px;
}
.low_hd__inner--ttl {
    text-align: left;
    color: #333;
    font-family: var(--fn1);
    font-size: 2.5em;
}
.breadcrumbs {
    max-width: 1140px;
	font-size: 12px;
}
.company_principle__ttl {
    margin-bottom: 50px;
}
.company_about__map {
    border-top: solid 1px #C1E1C1;
    padding-top: 80px;
}
.company_about__map iframe {
    width: 100%;
    height: 30em;
}
.mapicon {
    font-size: 13px;
    display: inline-block;
    padding: 0.1em 1em;
    border: solid 1px #333;
    border-radius: 2em;
    margin-left: 0.5em;
}
span.current {
    background: #333333;
    border: solid 1px #333333 !important;
    border-radius: 100%;
}
a.page.larger {
    color: #333333;
    border: solid 1px #333333 !important;
    border-radius: 100%;
}
a.page.larger:hover {
    border: solid 1px #333333!important;
    background: #333333;
    color: #fff;
}
a.page.smaller {
    color: #333333;
    border: solid 1px #333333 !important;
    border-radius: 100%;
}
a.page.smaller:hover {
    border: solid 1px #333333!important;
    background: #333333;
    color: #fff;
}
.low_news .news__archive--content {
    border-top: solid 1px #C1E1C1;
}
.low_news .news__archive--content:last-child {
    border-bottom: solid 1px #C1E1C1;
}
.low_news {
    padding: 30px 0;
}
.page_content .low_pagenation {
    margin-top: 50px;
}
.contact_page__description {
    margin: 100px 0;
}
.contact__form {
    margin: 50px 0 100px;
}
.contact__form h2 {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    text-align: center;
}
.form-description {
    text-align: left;
    margin: 30px auto 50px;
    font-size: 16px;
    line-height: 2;
    width: fit-content;
}
.contact_page__description--info .contact__time {
    margin-bottom: 0;
}
.contact_page__description--info a {
    color: #333;
}
.contact_page__description--text {
    width: 55%;
    margin-right: 5%;
}
.contact_page__description--info {
    width: 40%;
}
.post_content {
    padding: 140px 20px;
}
.news_detail__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #C1E1C1;
    padding-bottom: 30px;
    margin-bottom: 50px;
}
.news_detail__date {
    font-family: var(--fn1);
    font-size: .75em;
}
.news_detail__ttl {
    font-size: 1.25em;
    padding-right: 2em;
}
.news_detail__content {
    margin-bottom: 80px;
}
.other {
    margin: 0px 0 150px;
}
.other__inner--ttl {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 1.5em;
}
.tsukemono_detail__content--ttl {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 1em;
}
.tsukemono_detail__main .products_archive__item--label {
    color: var(--color);
    background: #C1E1C1;
}
.tsukemono_detail__content--text {
    font-size: 1.125em;
    margin-bottom: 2em;
}
.tsukemono_detail__table--content {
    border-top: dashed 1px #C1E1C1;
    padding: 0.5em 1.5em;
    justify-content: space-between;
    align-items: center;
}
.tsukemono_detail__table--content:last-child {
    border-bottom: dashed 1px #C1E1C1;
}
.tsukemono_detail__content--bilder {
    margin: 50px 0;
}
.stringing {
    margin: 100px 0 0;
    border: solid 1px #00A45B;
    border-radius: 5em;
    padding: 5em 5em 0;
}
.stringing h2 {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 1em;
    text-align: center;
}
.recipe_detail__main h1 {
    font-size: 2em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 1em;
    text-align: center;
}
.recipe_detail__thumnail {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}
.recipe_detail__thumnail img {
    width: 100%;
    height: auto;
}
.recipe_detail__thumnail {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 80px;
    border-radius: 30px;
    overflow: hidden;
}
.recipe_detail__point {
    border: solid 1px #00A45B;
    border-radius: 25px;
    padding: 40px;
    height: fit-content;
    background: #F9FCF7;
}
.recipe_detail__point h2 {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    border-bottom: solid 1px #00A45B;
    width: fit-content;
    margin: 0 auto 1em;
}
.recipe_detail__point--text {
    line-height: 2;
}
.recipe_detail__material h2 {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 0.8em;
    padding-left: 0.6em;
}
.recipe__material--content {
    border-top: dashed 1px #C1E1C1;
    padding: 0.5em 1.5em;
    justify-content: space-between;
    align-items: center;
}
.recipe__material--content:last-child {
    border-bottom: dashed 1px #C1E1C1;
}
.recipe_detail__make {
    margin: 80px 0;
}
.recipe_detail__make h2 {
    font-size: 1.875em;
    font-family: var(--fn1);
    color: #00A45B;
    margin-bottom: 1em;
    text-align: center;
}
.recipe__make--content {
    border-top: dashed 1px #C1E1C1;
    padding: 1.5em 4em;
    align-items: center;
}
.recipe__make--content:last-child {
    border-bottom: dashed 1px #C1E1C1;
}
.recipe__make--number {
    color: #00A45B;
    width: 40px;
    font-size: 1.5em;
}
.recipe__make--txt {
    width: calc(100% - 40px);
}
