@charset "UTF-8";

/*  ----------------------------------------------------------
  Concept Page
----------------------------------------------------------  */

.concept-page {
    overflow: hidden;
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

/* colors */
.color-green {
    color: var(--green-2);
}

.color-green-dark {
    color: #12969d;
}

.color-blue {
    color: #6097c7;
}

/*  ----------------------------------------------------------
  Section 1: ミッション
----------------------------------------------------------  */
.concept-mission {
    padding: 8rem 0;
    position: relative;
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-mission-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-left: 3rem;
}

.concept-mission-photos {
    width: 55%;
    position: relative;
    aspect-ratio: 1 / 0.85;
}

.concept-mission-photo {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
}

.concept-mission-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 中央: mission-3 (最も大きい) */
.concept-mission-photo.photo-2 {
    width: 62.4rem;
    height: 57.7rem;
    left: 46%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.concept-mission-photo.photo-2 img {
    object-fit: contain;
}

/* 左上: mission-1 */
.concept-mission-photo.photo-1 {
    width: 22rem;
    height: 22rem;
    left: 0;
    top: 0;
    z-index: 3;
}

/* 右下: mission-2 */
.concept-mission-photo.photo-3 {
    width: 20rem;
    height: 20rem;
    right: 2rem;
    bottom: 0;
    z-index: 3;
}

.concept-mission-text {
    width: 45%;
    padding-right: 4.5rem;
}

.concept-mission-text h3 {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--green-2);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.concept-mission-text p {
    font-size: 1.5rem;
    line-height: 2.2;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .concept-mission {
        padding: 5rem 2rem;
    }

    .concept-mission-inner {
        width: auto;
        flex-direction: column;
        gap: 3rem;
        padding-left: 0;
    }

    .concept-mission-photos {
        width: 100%;
        aspect-ratio: 1 / 0.75;
    }

    .concept-mission-photo.photo-2 {
        width: 60rem;
        height: 25rem;
    }

    .concept-mission-photo.photo-1 {
        width: 12rem;
        height: 12rem;
    }

    .concept-mission-photo.photo-3 {
        width: 12rem;
        height: 12rem;
        right: 0;
    }

    .concept-mission-text {
        width: 100%;
        padding-right: 0;
    }

    .concept-mission-text h3 {
        font-size: 2.6rem;
    }

    .concept-mission-text p {
        font-size: 14px;
    }
}

/*  ----------------------------------------------------------
  Section 2: ポキ丼とは
----------------------------------------------------------  */
.concept-pokebowl-wrap {
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-pokebowl {
    background:
        url(../img/concept/concept-pokebowl-bg.png) no-repeat center / cover,
        linear-gradient(to bottom, transparent 50%, #122d43 50%);
    position: relative;
    padding: 8rem 0;
}

.concept-wave-top,
.concept-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.concept-wave-top {
    top: -2rem;
}

.concept-wave-bottom {
    bottom: -2rem;
}

.concept-wave-top img,
.concept-wave-bottom img {
    width: 100%;
    display: block;
}

.concept-pokebowl-inner {
    width: 88rem;
    margin: 0 auto;
    padding: 4rem 0;
}

.concept-pokebowl-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 6rem;
}

.concept-pokebowl-heading h3 {
    font-family: var(--font-oleo);
    font-size: 5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.concept-pokebowl-sub {
    font-size: 2rem;
}

.concept-pokebowl-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.concept-pokebowl-main-img {
    width: 55%;
    position: relative;
}

.concept-pokebowl-main-img > img {
    width: 100%;
    border-radius: 1rem;
}

.concept-pokebowl-label {
    position: absolute;
    right: -20rem;
    top: 50%;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    width: 30rem;
}

.label-big {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
}

.label-text {
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
}

.label-line {
    font-size: 5rem;
    font-weight: bold;
}

.label-big-inline {
    font-size: 7rem;
    font-weight: bold;
    line-height: 1;
}

.label-desc {
    font-size: 3.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
    border-top: 0.3rem solid #fff;
    border-bottom: 0.3rem solid #fff;
    padding: 0.5rem 0;
}

.concept-pokebowl-sub-imgs {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.sub-img img {
    width: 100%;
    border-radius: 5rem;
    display: block;
}

.sub-img-1 {
    width: 80%;
    margin-left: auto;
}

.sub-img-2-3 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.sub-img-2 {
    width: 50%;
}

.sub-img-3 {
    width: 45%;
    margin-top: 4rem;
}

@media screen and (max-width: 768px) {
    .concept-pokebowl {
        padding: 6rem 0;
        background:
            url(../img/concept/concept-pokebowl-bg.png) no-repeat center / 165% 105%,
            linear-gradient(to bottom, transparent 50%, #122d43 50%);
    }

    .concept-pokebowl-inner {
        width: auto;
        padding: 3rem;
    }

    .concept-pokebowl-heading h3 {
        font-size: 5.6rem;
    }

    .concept-pokebowl-content {
        flex-direction: column;
        gap: 3rem;
    }

    .concept-pokebowl-main-img {
        width: 100%;
    }

    .concept-pokebowl-label {
        right: 0;
        top: auto;
        bottom: -6rem;
        transform: none;
    }

    .label-big {
        font-size: 8rem;
    }

    .label-text {
        padding-top: 3rem;
    }

    .label-line {
        font-size: 3.5rem;
    }

    .label-big-inline {
        font-size: 5rem;
    }

    .label-desc {
        font-size: 2.4rem;
    }

    .concept-pokebowl-sub-imgs {
        width: 100%;
        padding-top: 0rem;
    }

    .sub-img-1 {
        width: 70%;
        margin-left: 0;
    }

    .sub-img-2-3 {
        gap: 1rem;
    }

    .sub-img-2 {
        width: 50%;
    }

    .sub-img-3 {
        width: 45%;
        margin-top: 2rem;
    }

    .sub-img img {
        border-radius: 2rem;
    }
}

/*  ----------------------------------------------------------
  Section 3: マグロ
----------------------------------------------------------  */
.concept-maguro-ingredients {
    position: relative;
}

.concept-maguro-area {
    background: #122d43;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.concept-mid-wave {
    position: relative;
    z-index: 10;
    line-height: 0;
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.concept-mid-wave img {
    width: 100%;
    display: block;
}

.concept-ingredients-area {
    padding: 8rem 0;
    position: relative;
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-maguro-ship {
    position: absolute;
    right: -2rem;
    top: -12rem;
    width: 81rem;
    height: auto;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.concept-maguro-inner {
    width: 98rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.concept-maguro-heading {
    margin-bottom: 3rem;
}

.concept-maguro-heading .sp-only {
    display: none;
}

.concept-maguro-heading h3 {
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
}

.concept-maguro-quote {
    font-size: 4.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.concept-maguro-bottom {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.concept-maguro-photo {
    width: 50%;
    flex-shrink: 0;
}

.concept-maguro-photo img {
    width: 100%;
    border-radius: 3rem;
}

.concept-maguro-text {
    width: 50%;
}

.concept-maguro-text h4 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.concept-maguro-text p {
    font-size: 1.5rem;
    line-height: 2.2;
    color: #fff;
    margin-bottom: 1.5rem;
}

.concept-maguro-producer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.producer-icon {
    width: 6rem;
    height: auto;
}

.producer-label {
    background: #fff;
    color: #6097c7;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .concept-ingredients-area {
        padding: 5rem 3rem;
    }

    .concept-maguro-area {
        padding: 5rem 3rem;
    }

    .concept-maguro-inner {
        width: auto;
    }

    .concept-maguro-heading h3 {
        font-size: 4.2rem;
    }

    .concept-maguro-heading .sp-only {
        display: block;
    }

    /* .concept-maguro-heading br{
    display: none;
  } */
    .concept-maguro-quote {
        font-size: 3.2rem;
    }

    .concept-maguro-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .concept-maguro-photo {
        width: 100%;
    }

    .concept-maguro-text {
        width: 100%;
    }

    .concept-maguro-text h4 {
        font-size: 2.4rem;
    }

    .concept-maguro-text p {
        font-size: 1.6rem;
    }

    .concept-maguro-ship {
        display: none;
    }
}

/*  ----------------------------------------------------------
  Section 4: こだわり素材
----------------------------------------------------------  */
.concept-deco-leaf {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.concept-deco-leaf.left {
    left: -5rem;
    top: 2rem;
    width: 25rem;
}

.concept-deco-leaf.right {
    right: -5rem;
    bottom: 2rem;
    width: 25rem;
    transform: scaleX(-1) scaleY(-1);
}

.concept-deco-leaf img {
    width: 100%;
}

.concept-ingredients-inner {
    width: 98rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.concept-ingredients-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
    min-height: auto;
    position: relative;
}

.ingr-photo {
    overflow: hidden;
    position: relative;
}

.ingr-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 左側の写真エリア */
.ingr-photos-left {
    width: 50%;
    position: relative;
    flex-shrink: 0;
}

/* サーモン: 上 */
.ingr-photo-1 {
    width: 80%;
    height: 28rem;
    border-radius: 3rem;
    z-index: 1;
    position: relative;
}

/* 厚揚げ: 非表示時用 */
.ingr-photo-2 {
    width: 35rem;
    height: 26rem;
    border-radius: 4rem;
    z-index: 2;
}

/* タコ: 下、サーモンに少し重なる */
.ingr-photo-3 {
    width: 80%;
    height: 22rem;
    border-radius: 3rem;
    z-index: 3;
    position: relative;
    margin-top: -4rem;
    margin-left: auto;
}

.ingr-photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.ingr-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 3rem 2rem 1.5rem 2rem;
    z-index: 1;
}

.ingr-photo-caption strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.ingr-photo-caption span {
    font-size: 1.3rem;
    line-height: 1.5;
    display: block;
}

.ingr-photo-1 .ingr-photo-caption {
    bottom: 5rem;
}

/* テキスト: 右側 */
.concept-ingredients-text {
    position: relative;
    right: auto;
    bottom: auto;
    width: 50%;
}

.concept-ingredients-text h3 {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--green-2);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.concept-ingredients-text p {
    font-size: 1.5rem;
    line-height: 2.2;
}

.concept-ingredients-text .sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .concept-ingredients {
        padding: 5rem 3rem;
    }

    .concept-deco-leaf {
        display: none;
    }

    .concept-ingredients-inner {
        width: auto;
    }

    .concept-ingredients-layout {
        min-height: auto;
        flex-direction: column;
        gap: 0;
    }

    .ingr-photos-left {
        width: 100%;
    }

    .ingr-photo {
        position: relative;
        width: 100% !important;
        height: 20rem !important;
        border-radius: 2rem !important;
        margin-bottom: 2rem;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .ingr-photo-3 {
        margin-bottom: 0;
    }

    .ingr-photo img {
        height: 100%;
        object-fit: cover;
    }

    .ingr-photo-1 .ingr-photo-caption {
        bottom: 0;
    }

    .concept-ingredients-text {
        position: static;
        width: 100%;
        margin-top: 3rem;
    }

    .concept-ingredients-text h3 {
        font-size: 3.6rem;
    }

    .concept-ingredients-text p {
        font-size: 16px;
    }

    .concept-ingredients-text .sp-only {
        display: block;
    }

    .ingr-photo-caption strong {
        font-size: 2.4rem;
    }

    .ingr-photo-caption span {
        font-size: 1.8rem;
    }
}

/*  ----------------------------------------------------------
  Section 5: 島人の想い
----------------------------------------------------------  */
.concept-producers-wrap {
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-producers {
    padding: 12rem 0;
    width: 100%;
    position: relative;

    z-index: 3;
    overflow: hidden;
    background: url(../img/concept/concept-pokebowl-bg.png) no-repeat center / 100% 100%;
}

.concept-producers::before {
    content: "";
    position: absolute;
    top: 7rem;
    bottom: 7rem;
    left: 3rem;
    right: 3rem;
    background: #fff;
    border-radius: 8rem;
    z-index: -1;
}

.concept-producers-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.concept-producers-heading h3 {
    font-size: 4rem;
    font-weight: bold;
    color: #3f3235;
    line-height: 1.4;
}

.concept-producers-heading h3 span {
    font-size: 4.8rem;
}

.concept-producers-inner {
    display: flex;
    gap: 4rem;
    padding: 0 6rem;
}

.concept-producer-card {
    width: 50%;
}

.producer-card-img {
    width: 100%;
    height: 28rem;
    overflow: hidden;
    margin-bottom: 0;
}

.producer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-card-name {
    border-bottom: 0.3rem solid var(--green-2);
    padding: 1.2rem 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.producer-card-name h4 {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--green-2);
}

.concept-producer-card p {
    font-size: 1.2rem;
    line-height: 2;
    color: #000;
}

.concept-producers-more {
    text-align: center;
    margin-top: 2rem;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

@media screen and (max-width: 768px) {
    .concept-producers {
        width: auto;
        margin: 0;
        padding: 5rem 0 18rem 0;
        background: none;
    }

    .concept-producers::before {
        top: 2rem;
        bottom: 6rem;
        left: 2rem;
        right: 2rem;
        border-radius: 4rem;
    }

    .concept-producers-heading {
        margin-bottom: 3rem;
    }

    .concept-producers-heading h3 {
        font-size: 2.8rem;
    }

    .concept-producers-inner {
        flex-direction: column;
        padding: 0 3rem;
        gap: 3rem;
    }

    .concept-producer-card {
        width: 100%;
    }

    .producer-card-name h4 {
        font-size: 2.6rem;
    }

    .concept-producer-card p {
        font-size: 1.8rem;
    }
}

/*  ----------------------------------------------------------
  Section 6: 自家製ソース
----------------------------------------------------------  */
.concept-sauce {
    padding: 8rem 0;
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-sauce-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.concept-sauce-heading h3 {
    font-size: 4rem;
    font-weight: bold;
    color: #3f3235;
    line-height: 1.4;
}

.concept-sauce-heading h3 span {
    font-size: 4.8rem;
}

.concept-sauce-group {
    width: 88rem;
    margin: 0 auto 5rem auto;
}

.concept-sauce-group-ttl {
    text-align: center;
    font-size: 3.6rem;
    font-weight: bold;
    color: #3f3235;
    margin-bottom: 3rem;
}

.concept-sauce-group-ttl span {
    font-size: 3rem;
}

.concept-sauce-cards {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.concept-sauce-card {
    width: 30rem;
    background: #fff;
    border-radius: 3rem;
    padding: 2rem;
    text-align: center;
}

.sauce-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.sauce-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-sauce-card h5 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--green-2);
    margin-bottom: 1rem;
}

.concept-sauce-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .concept-sauce {
        padding: 5rem 3rem;
    }

    .concept-sauce-heading h3 {
        font-size: 2.8rem;
    }

    .concept-sauce-group {
        width: auto;
    }

    .concept-sauce-card h5 {
        font-size: 2.4rem;
    }

    .concept-sauce-group-ttl {
        font-size: 2.8rem;
    }

    .concept-sauce-group-ttl span {
        font-size: 2.4rem;
    }

    .concept-sauce-cards {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .concept-sauce-card {
        width: 100%;
    }

    .concept-sauce-card p {
        font-size: 1.8rem;
    }
}

/*  ----------------------------------------------------------
  Section 7: 名脇役たち
----------------------------------------------------------  */
.concept-toppings {
    background: #122d43;
    position: relative;
    padding: 8rem 0;
}

.concept-toppings-inner {
    width: 110rem;
    margin: 0 auto;
    padding: 4rem 0;
    color: #fff;
}

.concept-toppings-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.concept-toppings-heading br {
    display: none;
}

.concept-toppings-heading h3 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.4;
}

.concept-toppings-heading h3 span {
    font-size: 4.8rem;
}

.concept-toppings-img {
    text-align: center;
}

.concept-toppings-img img {
    width: 100%;
    max-width: 110rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .concept-toppings {
        padding: 6rem 0;
    }

    .concept-toppings-inner {
        width: auto;
        padding: 3rem;
    }

    .concept-toppings-heading br {
        display: inline;
    }

    .concept-toppings-heading h3 {
        font-size: 2.2rem;
    }

    .concept-toppings-img {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .concept-toppings-img img {
        width: auto;
        max-width: none;
        height: 34rem;
    }
}

/*  ----------------------------------------------------------
  Section 8: How to Order + Menu Link
----------------------------------------------------------  */
.concept-order {
    padding: 8rem 0;
    background: url(../img/concept/concept-order-bg.jpg) no-repeat center / cover;
}

.concept-order-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.concept-order-heading h3 {
    font-family: var(--font-oleo);
    font-size: 5rem;
    font-weight: normal;
    color: var(--green-2);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.concept-order-heading p {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3f3235;
    letter-spacing: 0.05em;
}

.concept-order-steps {
    width: 88rem;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0rem;
    margin-bottom: 5rem;
}

.concept-order-step {
    text-align: center;
    width: 18rem;
}

.step-number {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.step-num {
    font-family: var(--font-oleo);
    font-size: 4.5rem;
    color: var(--green-2);
    line-height: 1;
}

.step-label {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--green-2);
}

.step-circle {
    width: 17rem;
    height: 17rem;
    border-radius: 50%;
    overflow: hidden;
    margin: -2.5rem auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    flex-basis: 100%;
    z-index: -1;
}

.step-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.concept-order-step p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.step-arrow {
    align-self: center;
    width: 0;
    height: 0;
    border-top: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
    border-left: 2rem solid #000;
    flex-shrink: 0;
    margin-bottom: 4rem;
    margin-left: 0.5rem;
}

/* 波線装飾 */
.concept-order-wave {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5rem;
}

.concept-order-wave img {
    width: 50%;
    height: auto;
    display: block;
}

/* メニューリンクバナー */
.concept-menu-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 60rem;
    margin: 0 auto;
    padding: 3rem 5rem;
    border: 0.5rem solid var(--green-2);
    border-radius: 3.5rem;
    background: url(../img/texture-2.jpg) center top;
    background-size: 80rem auto;
    color: var(--green-2);
}

.concept-menu-link-btn:hover {
    color: var(--green-2);
}

.concept-menu-link-deco {
    width: 14rem;
    flex-shrink: 0;
    position: relative;
}

.concept-menu-link-deco img {
    width: 100%;
}

.concept-menu-link-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.cml-prefix {
    font-family: var(--font-oleo);
    font-size: 3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cml-main {
    font-family: var(--font-oleo);
    font-size: 6rem;
    line-height: 1;
}

.cml-suffix {
    font-size: 2.6rem;
    font-weight: bold;
}

.concept-menu-link-spoon {
    width: 7rem;
    height: 7rem;
    background: #e38c9f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.concept-menu-link-spoon img {
    width: 3rem;
    height: auto;
}

@media screen and (max-width: 768px) {
    .concept-order {
        padding: 5rem 0 1rem 0;
    }

    .concept-order-heading h3 {
        font-size: 4.6rem;
    }

    .concept-order-steps {
        width: auto;
        padding: 0 3rem;
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .concept-order-step {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2.5rem;
        position: relative;
        padding-left: 0;
        padding-bottom: 5rem;
        border-left: none;
        margin-left: 1rem;
    }

    .concept-order-step::before {
        content: "";
        position: absolute;
        left: 5.35rem;
        top: 11rem;
        bottom: 0;
        width: 3px;
        background: #fff;
    }

    .concept-order-step:last-child::before {
        display: none;
    }

    .concept-order-step:last-child {
        padding-bottom: 0;
    }

    .step-number {
        position: relative;
        left: auto;
        top: auto;
        flex-wrap: nowrap;
        flex-shrink: 0;
        gap: 0;
        margin-bottom: 0;
        background: #fff;
        border-radius: 50%;
        width: 11rem;
        height: 11rem;
        align-items: center;
        justify-content: center;
        overflow: visible;
        /* border: 3px solid var(--green-2); */
    }

    .step-num {
        position: absolute;
        top: -1.2rem;
        left: -0.3rem;
        font-size: 2rem;
        font-weight: bold;
        line-height: 1;
        z-index: 2;
    }

    .step-label {
        position: absolute;
        top: -1.2rem;
        left: 1.8rem;
        font-size: 2rem;
        line-height: 1;
        z-index: 2;
    }

    .step-circle {
        width: 7rem;
        height: 7rem;
        margin: 0;
        flex-shrink: 0;
        flex-basis: auto;
        background: transparent;
        z-index: 1;
    }

    .concept-order-step p {
        font-size: 2rem;
        flex: 1;
        margin-top: 0;
    }

    .step-arrow {
        display: none;
    }

    .concept-order-wave {
        margin-bottom: 3rem;
    }

    .concept-menu-link-btn {
        width: auto;
        margin: 0 2rem;
        padding: 1.5rem 2rem;
        gap: 1rem;
        margin-bottom: 5rem;
    }

    .concept-menu-link-deco {
        width: 7rem;
    }

    .cml-prefix {
        font-size: 1.4rem;
    }

    .cml-main {
        font-size: 3rem;
    }

    .cml-suffix {
        font-size: 1.6rem;
    }

    .concept-menu-link-spoon {
        width: 4rem;
        height: 4rem;
    }

    .concept-menu-link-spoon img {
        width: 1.8rem;
    }

    .concept-mid-wave {
        margin-bottom: -0.75rem;
    }

    .concept-wave-top {
        top: -0.75rem;
    }

    .concept-wave-bottom {
        bottom: -0.75rem;
    }

    .step-number {
        margin-bottom: 0;
    }

    .step-circle img {
        width: 85%;
        height: 85%;
    }
}

.fw-normal {
    font-weight: normal;
    display: inline !important;
    font-size: 1.8rem !important;
}

.nowrap {
    white-space: nowrap;
}
