@charset "utf-8";

/* チアフル商品ページ用css */
:root {
    --primary: #fab89d;
    --light: #f8f6f4;
    --text-light: #757575;
}

/* 汎用 */
.heading-circle {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.heading-circle::before {
    display: block;
    flex-shrink: 0;
    content: "";
    width: 0.8em;
    height: 0.8em;
    margin-right: 8px;
    border: 6px solid #fab89d;
    border-radius: 100%;
}

.list_style_pink li {
  position: relative;
  padding-left: 1em;
  padding-top: 5px;
  line-height: 1.5;
}
.list_style_pink li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 6px;
}

.usage-note_01 {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.box-white {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 8px;
    padding: 5%;
}

.list_style_disc li {
    position: relative;
    padding-left: 1em;
}

.list_style_disc li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0.8em;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 6px;
}
small {
    font-size: 0.9em;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::*/

.sec-headding {
    border-left: 5px solid var(--primary);
    padding-left: 1rem;
    margin: 2rem 0 1.5rem;
    font-size: 1.6rem;
}
.item-description_03 section {
    margin-bottom: 3rem;
    font-family: "Yu Gothic", YuGothic, sans-serif;
}
.item-description_03 section:last-of-type {
    margin-bottom: 0;
}
.item-description_03 p {
    line-height: 1.7;
  }

.product-desc-wrap {
    background: #fff;
    padding: 100px 5% 50px;
    margin-top: -50px;
    position: relative;
    z-index: -1;
}

.product-name {
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2rem;
}

.product-name:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.product-content-img {
    max-width: 660px;
    margin: auto;
}

.feature-card {
    padding: 5%;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    gap: 30px;
}

.feature-card.image-right {
    flex-direction: row;
}

.feature-card.image-left {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    /* padding: 0 1.5rem 0 0; */
}

.feature-image {
    flex-basis: 49%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow: hidden;
}

.nutrition-table th,
.nutrition-table td {
    padding: 0.8rem 1rem !important;
    text-align: left;
    border-bottom: 1px solid #eee !important;
}

.nutrition-table th {
    background-color: #fab89d85;
    font-weight: 600;
}

.nutrition-table tr:nth-child(even) {
    background-color: var(--light);
}

.usage-container {
    padding: 30px 5%;
    margin: 2rem 0;
}

.usage-catch-body {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    border-bottom: solid 5px #eee;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 0 0 10px;
}

.usage-catch {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem 3rem;
}

.usage-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
    font-weight: 500;
}

.usage-label {
    flex: 1;
    padding-right: 10px;
    font-size: 1.1rem;
    /* font-weight: bold; */
}

.usage-recommend {
    color: var(--primary);
    font-weight: 600;
    font-size: 2em;
}

.usage-not-recommend {
    color: #9ed597;
    font-weight: 600;
    font-size: 1.8em;
}

.product-info {
    padding: 1.5rem;
    margin: 2rem 0;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: solid 1px #eee;
}

.ingredients {
    padding: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {

    .feature-card,
    .feature-card.image-right,
    .feature-card.image-left {
        flex-direction: column;
        padding: 10%;
    }

    .feature-image {
        flex-basis: auto;
        width: 100%;
    }

    .feature-content {
        padding: 0;
    }

    .product-info-grid,
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}