/*===================
ページタイトル
===================*/

.page_title {
    width: 100%;
    height: 30vh;
    position: relative;
    margin-bottom: 4rem;
}

.page_title img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center;
}

.page_title .title {
    position: absolute;
    top: calc(30vh - 5rem);
    left: 50%;
    transform: translatex(-50%);
    background-color: var(--green-2rgba);
    width: clamp(250px, 60vw, 400px);
    padding: 2rem;
    line-height: 2;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    text-align: center;
}



@media screen and (min-width:550px) {
    .page_title {
        height: 25vh;
        margin-bottom: 6rem;
    }

    .page_title .title {
        left: auto;
        right: 0;
        transform: none;
    }
}

/*========min-width:400px========*/


@media screen and (min-width:960px) {
    .page_title {
        width: 100%;
        position: relative;
        margin-bottom: 3rem;
    }

    .page_title img {
        width: 100%;
        height: 25vh;
        object-fit: cover;
        object-position: center;
    }

    .page_title .title {
        top: calc(25vh - 8.5rem);
    }
}

/*===================
セクション
===================*/

section .inner img {
    width: 49%;
    object-fit: cover;
    object-position: center;
}

section .inner {
    display: flex;
    column-gap: 2%;
    justify-content: center;
    margin-bottom: 2rem;
    align-items: center;
}

section .inner.item_box {
    display: block;
    margin-bottom: 1rem;
}

section .inner.item_box img {
    width: 100%;
}

section .work {
    background-color: var(--lightgreen);
    padding: 2rem;
    text-align: center;
}

section .work:not(:last-child) {
    margin-bottom: 2rem;
}

section .work h3 {
    font-size: 1.3rem;
}


@media screen and (min-width:600px) {
    section .work {
        text-align: start;
    }

    section .inner.item_box {
        display: flex;
        margin-bottom: 1rem;
    }

    section .inner.item_box img {
        width: 55%;
        /* border-radius: 0.5rem; */
    }
}

/*========min-width:600px========*/

/*===================
商品詳細
===================*/

.sub-section_wrap {
    padding: 1rem 0;
}

.sub-section {
    padding: 1rem 1.5rem;
    background-color: var(--lightgreen-rgba);
    margin-bottom: 1rem;
}

.sub-section h3 {
    padding-bottom: 0.8rem;
    margin-bottom: 0.6rem;
    border-bottom: 3px solid #fff;
    text-align: center;
}

@media screen and (min-width:600px) {
    .sub-section {
        padding: 1rem 2rem;
    }

    .sub-section h3 {
        text-align: start;
    }

}

/*========min-width:600px========*/
/*===================
商品説明
===================*/

.info {
    padding: 0.5rem 0;
}

.info .info_inner {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 0.3rem;
    border-bottom: 1px dashed #fff;
}



.info .info_inner dt,
.info .info_inner dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.3rem;
    line-height: 1.5;
}

.info .info_inner dt {
    width: 30%;
    border-radius: 0.2rem;
    background-color: var(--lightgreen);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.info .info_inner dd {
    width: 70%;
    font-size: 0.9rem;
}

.info .info_inner dd.dd_s {
    font-size: 0.8rem;
}

.info p {
    font-size: 0.8rem;
    margin-bottom: 0;

}

@media screen and (min-width:600px) {
    .info {
        border-radius: 0.5rem;
        width: 49%;
        padding: 0;
    }
}

/*========min-width:600px========*/