/* ==================================================
   RAW SOUP READY ランディングページ - CSS完全版（修正版）
   ================================================== */

/* ========== リセット & 基本設定 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #043f2a;
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.sp-br {
    display: none;
}

/* ========== コンテナ ========== */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ファーストビュー ========== */
.p-home_kv {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8bb92;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.p-home_kv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.p-home_kv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.p-home_kv__bg .slick {
    width: 100%;
    height: 100%;
}

.p-home_kv__bg .slick > div {
    width: 100%;
    height: 100%;
}

.p-home_kv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-home_kv__bg picture {
    width: 100%;
    height: 100%;
    display: block;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.p-home_kv__contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 600px;
}

.p-home_kv__logo {
    margin-bottom: 4.5rem;
    text-align: center;
}

.p-home_kv__logo img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.p-home_kv__concept {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.p-home_kv__lead {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 2;
}

/* ========== イントロ ========== */
.p-intro {
    padding: 50px 0 60px;
    text-align: center;
    background: #e8bb92;
}

.p-intro__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #043f2a;
    line-height: 1.6;
}

.p-intro__subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #043f2a;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

.p-intro__lead {
    font-size: 0.85rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #043f2a;
    letter-spacing: 0.08em;
}

.p-intro__lead strong {
    color: #043f2a;
    font-weight: 600;
    font-size: 1.3rem;
}

.p-intro__image-wrapper {
    padding: 0 60px;
}

.p-intro__image {
    width: 100%;
    margin-top: 40px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.p-intro__image img {
    width: 100%;
    height: auto;
}

/* ========== 特徴3つ ========== */
.p-features {
    padding: 40px 0;
    background: #e8bb92;
}

.p-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.p-features__card {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-features__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-features__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
}

.p-features__icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.p-features__title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #043f2a;
    letter-spacing: 0.08em;
}

.p-features__text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* ========== こんなシーンで活躍します ========== */
.p-scenes {
    padding: 100px 0;
    background: #f7f7f7;
}

.p-scenes__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-scenes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.p-scene__card {
    text-align: center;
    padding: 40px 30px;
    background: #e5dec9;
    border-radius: 10px;
}

.p-scene__photo {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}

.p-scene__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-scene__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #043f2a;
    font-weight: 00;
    letter-spacing: 0.08em;
}

.p-scene__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 2;
    letter-spacing: 0.05em;
}

/* ========== パッケージ画像 ========== */
.p-package-image {
    padding: 80px 0;
    background: #f6f1e2;
}

.p-package-image__wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.p-package-image__wrap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ========== 商品 ========== */
.p-products {
    padding: 100px 0;
    background: #F5F3F1;
}

.p-products__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-products__subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    letter-spacing: 0.08em;
}

.p-products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.p-products__grid--single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p-product__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-product__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.p-product__image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.p-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-product__content {
    padding: 0;
}

.p-product__header {
    padding: 30px;
    color: #fff;
    text-align: center;
}

.p-product__header.warm {
    background: linear-gradient(135deg, #e97d60 0%, #d66a4e 100%);
}

.p-product__header.cleanse {
    background: linear-gradient(135deg, #999e62 0%, #878c50 100%);
}

.p-product__header.calm {
    background: linear-gradient(135deg, #e3dcd2 0%, #d1cac0 100%);
    color: #043f2a;
}

.p-product__header.balance {
    background: linear-gradient(135deg, #f4c542 0%, #e2b330 100%);
}

.p-product__header.seasonal {
    background: linear-gradient(135deg, #d4a574 0%, #c29362 100%);
}

.p-product__category {
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    display: block;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0.9;
}

.p-product__name {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.p-product__catchcopy {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.95;
    letter-spacing: 0.05em;
}

.p-product__body {
    padding: 30px;
}

.p-product__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.p-product__badge {
    background: #f6f1e2;
    color: #043f2a;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.p-product__usage {
    margin-bottom: 20px;
}

.p-product__usage-title {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #043f2a;
    letter-spacing: 0.05em;
}

.p-product__usage-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.p-product__nutrition {
    display: none;
}

/* ========== セット販売 ========== */
.p-sets {
    padding: 60px 0;
    background: #e5dec9;
}

.p-sets__header {
    text-align: center;
    margin-bottom: 30px;
}

.p-sets__catch {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

 


.p-sets__pretitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #C27838;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.p-sets__subtitle {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.05em;
}

.p-sets__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.p-sets__tab {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 30px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.p-sets__tab:hover {
    background: #fff;
    border-color: #ce935f;
}

.p-sets__tab.active {
    background: #ce935f;
    color: #fff;
    border-color: #ce935f;
}

.p-sets__content {
    display: none;
}

.p-sets__content.active {
    display: block;
}

.p-sets__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-set__card {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-set__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.p-set__card--recommended {
    border: 3px solid #ce935f;
}

.p-set__badge-wrap {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.p-set__badge {
    background: #ce935f;
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-set__quantity {
    font-size: 2rem;
    font-weight: 500;
    color: #ce935f;
    margin-bottom: 4px;
}

.p-set__quantity-label {
    font-size: 0.rem;
    color: #666;
    margin-bottom: 15px;6
    letter-spacing: 0.08em;
}

.p-set__unit-price {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.p-set__price-pretax {
    font-size: 2rem;
    font-weight: 500;
    color: #043f2a;
    margin-bottom: 4px;
}

.p-set__price-tax {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.p-set__discount-note {
    font-size: 0.75rem;
    color: #ce935f;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.p-set__total-price {
    font-size: 0.65rem;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.p-set__total-price-amount {
    font-weight: 600;
    color: #666;
}

.p-set__save {
    background: #fff3e0;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 12px;
    border: 1px solid #ffe0b2;
}

.p-set__save-text {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.05em;
}

.p-set__save-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ce935f;
    margin: 0 5px;
}

.p-set__button {
    display: inline-block;
    background: #ce935f;
    color: #fff;
    padding: 11px 30px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    width: 100%;
}

.p-set__button:hover {
    background: #b8814d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 147, 95, 0.3);
}

/* ========== 商品詳細情報 ========== */
.p-product-details {
    padding: 40px 0;
    background: #fff;
}

.p-product-details__title {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 30px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-product-details__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.p-product-details__item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.p-product-details__header {
    width: 100%;
    padding: 25px 30px;
    background: #f6f1e2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-left: 5px solid transparent;
}

.p-product-details__header:hover {
    background: #ede8d9;
}

.p-product-details__header.warm {
    border-left-color: #e97d60;
}

.p-product-details__header.cleanse {
    border-left-color: #999e62;
}

.p-product-details__header.calm {
    border-left-color: #e3dcd2;
}

.p-product-details__header.balance {
    border-left-color: #f4c542;
}

.p-product-details__header.seasonal {
    border-left-color: #d4a574;
}

.p-product-details__name {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #043f2a;
}

.p-product-details__icon {
    font-size: 1.5rem;
    color: #ce935f;
    transition: transform 0.3s ease;
}

.p-product-details__item.active .p-product-details__icon {
    transform: rotate(45deg);
}

.p-product-details__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #fff;
}

.p-product-details__item.active .p-product-details__content {
    max-height: 2000px;
}

.p-product-details__section {
    padding: 18px 15px;
    border-bottom: 1px solid #eee;
}

.p-product-details__section:last-child {
    border-bottom: none;
}

.p-product-details__subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #043f2a;
    letter-spacing: 0.08em;
}

.p-product-details__text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.p-product-details__table {
    width: 100%;
    border-collapse: collapse;
}

.p-product-details__table tr {
    border-bottom: 1px solid #eee;
}

.p-product-details__table tr:last-child {
    border-bottom: none;
}

.p-product-details__table td {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0.05em;
}

.p-product-details__table td:first-child {
    font-weight: 500;
    color: #043f2a;
    width: 40%;
}

.p-product-details__table td:last-child {
    text-align: right;
}

/* ========== お客様の声 ========== */
.p-reviews {
    padding: 40px 0;
    background: #f6f1e2;
}

.p-reviews__title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-review__card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.p-review__profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.p-review__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ce935f 0%, #b8814d 100%);
    margin-right: 12px;
}

.p-review__name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.p-review__meta {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.05em;
}

.p-review__text {
    font-size: 0.85rem;
    color: #666;
    line-height: 2;
    letter-spacing: 0.05em;
}

/* ========== FAQ ========== */
.p-faq {
    padding: 40px 0;
    background: #fff;
}

.p-faq__title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}



.p-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.p-faq__item {
    margin-bottom: 30px;
    padding: 30px;
    background: #f6f1e2;
    border-radius: 10px;
}

.p-faq__question {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #043f2a;
    letter-spacing: 0.08em;
    padding-left: 28px;
    position: relative;
}

.p-faq__question::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    color: #ce935f;
    font-weight: 700;
    font-size: 0.95rem;
}

.p-faq__answer {
    font-size: 0.95rem;
    color: #666;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: 30px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.p-faq__answer::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========== 簡単3ステップ ========== */
.p-steps {
    padding: 80px 0;
    background: #f6f1e2;
}

.p-steps__title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-steps__subtitle {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    letter-spacing: 0.08em;
}

.p-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.p-step__card {
    text-align: center;
    position: relative;
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.p-step__number {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    background: #ce935f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}

.p-step__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #043f2a;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.p-step__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

/* ========== BASE誘導 ========== */
.p-base-link {
    padding: 100px 0;
    background: #999e62;
}

.p-base-link__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.p-base-link__header {
    text-align: center;
    margin-bottom: 40px;
}

.p-base-link__tag {
    display: inline-block;
    background: #f6f1e2;
    color: #ce935f;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 20px;
}

.p-base-link__title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
}

.p-base-link__image {
    margin-bottom: 40px;
}

.p-base-link__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.p-base-link__content {
    text-align: center;
}

.p-base-link__subtitle {
    font-size: 1.1rem;
    line-height: 2;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.08em;
}

.p-base-link__button {
    display: inline-block;
    background: #fff;
    color: #999e62;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.p-base-link__button:hover {
    background: #7d8250;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 147, 95, 0.3);
}


/* ========== フローティング購入バナー ========== */
.p-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.p-floating-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.p-floating-cta__text {
    flex: 1;
}

.p-floating-cta__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #043f2a;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
}

.p-floating-cta__subtitle {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
}

.p-floating-cta__button {
    display: inline-block;
    background: #ce935f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.p-floating-cta__button:hover {
    background: #b8814d;
    transform: translateY(-2px);
}


/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
/* スマホ改行表示 */
.sp-br {
display: block;
}

/* コンテナ余白 */
.l-container {
padding: 0 20px;
}

/* ファーストビュー */
.p-home_kv {
min-height: 500px;
height: 80vh;
}

.sp-only {
display: block;
}

.pc-only {
display: none;
}

.p-home_kv__bg .slick > div {
height: 80vh;
min-height: 500px;
}

.p-home_kv__logo img {
max-width: 240px;
}

.p-home_kv__concept {
font-size: 1.6rem;
margin-bottom: 1rem;
line-height: 1.6;
font-weight: 600;
}

.p-home_kv__lead {
font-size: 0.95rem;
margin-bottom: 1.8rem;
line-height: 1.8;
font-weight: 500;
}

/* イントロ */
.p-intro .l-container {
padding: 50px 20px 0px;
}

    .p-intro__title {
        font-size: 1.3rem;
    }

    .p-intro__lead {
        font-size: 0.9rem;
    }

    .p-intro__lead strong {
        font-size: 1rem;
    }

    .p-intro__image-wrapper {
        padding: 0 10px;
    }

    /* 特徴3つ */
    .p-features {
        padding: 20px 0;
    }

    .p-features__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p-features__card {
        padding: 30px 20px;
    }

    .p-features__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .p-features__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .p-features__text {
        font-size: 0.85rem;
    }

    /* シーン */
    .p-scenes {
        padding: 40px 0;
    }

    .p-scenes__title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .p-scenes__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p-scene__card {
        padding: 25px 20px;
    }

    .p-scene__photo {
        height: 160px;
    }

    .p-scene__title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .p-scene__text {
        font-size: 0.8rem;
    }


    /* 商品 */
    .p-products {
        padding: 40px 0;
    }

    .p-products__title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .p-products__subtitle {
        font-size: 0.85rem;
        margin-bottom: 40px;
    }

    .p-products__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p-product__image {
        height: 220px;
    }

    .p-product__header {
        padding: 25px 20px;
    }

    .p-product__category {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .p-product__name {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .p-product__catchcopy {
        font-size: 0.85rem;
    }

    .p-product__body {
        padding: 25px 20px;
    }

    .p-product__usage-title,
    .p-product__usage-text {
        font-size: 0.75rem;
    }

    /* セット販売 */
    .p-sets {
        padding: 40px 0;
    }

    .p-sets__catch {
        font-size: 1.3rem;
    }

    .p-sets__pretitle {
        font-size: 1rem;
    }

    .p-sets__subtitle {
        font-size: 0.8rem;
    }

    .p-sets__tabs {
        flex-direction: column;
        gap: 10px;
    }

    .p-sets__tab {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .p-sets__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p-set__card {
        padding: 15px 15px;
    }

    .p-set__quantity {
        font-size: 2.5rem;
    }

    .p-set__quantity-label {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .p-set__unit-price {
        font-size: 0.8rem;
    }

    .p-set__price-pretax {
        font-size: 2rem;
    }

    .p-set__price-tax,
    .p-set__discount-note,
    .p-set__total-price {
        font-size: 0.75rem;
    }

    .p-set__save {
        padding: 10px;
    }

    .p-set__save-text {
        font-size: 0.75rem;
    }

    .p-set__save-amount {
        font-size: 1.2rem;
    }

    .p-set__button {
        font-size: 0.9rem;
        padding: 15px 30px;
    }

    /* 商品詳細情報 */
    .p-product-details {
        padding: 40px 0;
    }

    .p-product-details__title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .p-product-details__header {
        padding: 18px 20px;
    }

    .p-product-details__name {
        font-size: 0.9rem;
    }

    .p-product-details__icon {
        font-size: 1.3rem;
    }

    .p-product-details__section {
        padding: 20px;
    }

    .p-product-details__subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .p-product-details__text {
        font-size: 0.8rem;
    }

    .p-product-details__table td {
        font-size: 0.8rem;
    }

    /* お客様の声 */
    .p-reviews {
        padding: 40px 0;
    }

    .p-reviews__title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .p-reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .p-review__card {
        padding: 25px 20px;
    }

    .p-review__avatar {
        width: 50px;
        height: 50px;
    }

    .p-review__name {
        font-size: 0.9rem;
    }

    .p-review__meta {
        font-size: 0.75rem;
    }

    .p-review__text {
        font-size: 0.85rem;
    }

    /* FAQ */
    .p-faq {
        padding: 40px 0;
    }

    .p-faq__title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .p-faq__item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .p-faq__question {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .p-faq__question::before {
        font-size: 1.1rem;
    }

    .p-faq__answer {
        font-size: 0.8rem;
        padding-left: 25px;
    }

    .p-faq__answer::before {
        font-size: 0.95rem;
    }

    /* 簡単3ステップ */
    .p-steps {
        padding: 35px 0;
    }

    .p-steps__title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .p-steps__subtitle {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }

    .p-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .p-step__card {
        padding: 25px 20px;
    }

    .p-step__number {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .p-step__title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .p-step__text {
        font-size: 0.75rem;
        line-height: 1.8;
    }

    /* BASE誘導 */
    .p-base-link {
        padding: 40px 0;
    }

    .p-base-link__title {
        font-size: 1.3rem;
    }

    .p-base-link__subtitle {
        font-size: 0.9rem;
    }

    .p-base-link__button {
        font-size: 0.9rem;
        padding: 15px 40px;
    }


    .p-floating-cta__inner {
        padding: 12px 15px;
        gap: 15px;
    }

    .p-floating-cta__title {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .p-floating-cta__subtitle {
        font-size: 0.75rem;
    }

    .p-floating-cta__button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

}

