<style>* {
    box-sizing: border-box;
}


html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        "Segoe UI", "YuGothic", "Yu Gothic", "游ゴシック体", "メイリオ", sans-serif;
    color: var(--color-text);
    overflow-x: hidden;
}

main{
    margin: 0 auto;
}

main > section{
    max-width:1000px;
    margin-right:auto;
    margin-left:auto;
}

section.top-slider.section-02 {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width:100vw;
}

p {
    font-family: 'Zen Kaku Gothic New', "YuGothic", "Yu Gothic", "游ゴシック体", "メイリオ", sans-serif;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
    width: calc(100% - 20vw);
    margin: 0 auto;

}

br.spbr{
    display: none;
}

.flex-section-body {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
    margin: 0 auto;
    width: calc(100% - 20vw);


}

.flex-section-inner .flex-section-body {
    width: 100%;
}

.flex-section-inner.image-pos-after-heading .flex-section-body {
    width: calc(100% - 20vw);
}

.section-13 .flex-section-inner.image-pos-before-heading .flex-section-body {
    width: calc(100% - 20vw);
}

.section-18 .flex-section-inner.image-pos-before-heading .flex-section-body {
    width: calc(100% - 20vw);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Shippori Mincho', "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", serif;
    font-weight: 400;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
}

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

figure {
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.l-container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 16px;
    margin: 0 auto;
}

/* =====================
        ヘッダー
      ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 10px 20px;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.site-logo img {
    height: 32px;
    width: auto;
}

#baseMenu li {
    list-style: none;
}

#baseMenu li.cart {
    position: relative;
    top: -10px;
}

#baseMenu .base {
    display: none;
}

#baseMenu .cart img {
    content: url("https://basefile.akamaized.net/ilovemyself-base-ec/692914a7128e5/cart.png");
    width: 40px;
    height: auto;
    min-width: 40px;
}

.site-header-content {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.96);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
        font-size: 16px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .site-header-inner {
        padding: 8px 0;
    }

    .site-header-content {
        flex-direction: row-reverse;
    }

    #baseMenu li.cart {
        top: 0px;
    }


}


.hamburger-menu {
    display: none;
    /* PCでは非表示 */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    background: transparent;
    border: none;
    z-index: 9999;
    width: 40px;
    height: 40px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border: 1px solid #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span {
    border-color: #000;
}

/* 開閉アニメーション */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/******************************************************
     ナビゲーション本体 (#js-nav)
    ******************************************************/

#js-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 30px;
}

#js-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#js-nav a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
}

/******************************************************
     モバイル対応
    ******************************************************/
@media (max-width: 768px) {

    /* ハンバーガー表示 */
    .hamburger-menu {
        display: flex;
    }

    /* PCナビは固定メニューに変換 */
    #js-nav {
        position: fixed;
        color: #000;
        top: 100vh;
        left: -100vw;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 9998;
    }

    /* メニュー表示時 */
    #js-nav.active {
        left: calc(50vw - 50%);
    }

    #js-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    #js-nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    #js-nav a {
        padding: 1rem 0;
        width: 100%;
        display: block;
        font-size: 1.2rem;
    }

    .hamburger-menu.active {
        border-color: #000;
    }

    /* オーバーレイ */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

/******************************************************
     PC版ナビ調整
    ******************************************************/
@media (min-width: 769px) {
    .nav-overlay {
        display: none !important;
    }
}

/* =====================
        ヒーロー（スライダー）
      ===================== */
.hero {
    padding: 32px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-copy-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.hero-cta-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff897b, #ffb68d);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 137, 123, 0.45);
}

.btn-outline {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    font-size: 14px;
}

.hero-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--color-main-light);
}

.hero-slider-track {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.7s ease;
}

.hero-slide {
    flex: 0 0 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 16px;
    border-radius: 999px;
    background: #fff;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding: 20px 0 32px;
    }
}

/* =====================
        トップスライダー
      ===================== */
.top-slider {
    position: relative;
    width: 100%;
}

.top-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--color-main-light);
}

.top-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease;
}

.top-slider-slide {
    flex: 0 0 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PC/SPスライドの表示切り替え */
@media (min-width: 769px) {
    .top-slider-slide.sp-slide {
        display: none !important;
    }

    .top-slider-slide.pc-slide {
        display: block;
    }
}

@media (max-width: 768px) {
    .top-slider-slide.pc-slide {
        display: none !important;
    }

    .top-slider-slide.sp-slide {
        display: block;
    }
}

.top-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.top-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-slider-dot.is-active {
    width: 16px;
    border-radius: 999px;
    background: #fff;
}

/* =====================
        セクション共通
      ===================== */
.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 24px;
    margin: 0 0 4px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

/* =====================
        コンセプト
      ===================== */
.concept {
    background: #ffffff;
}

.concept-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff7f4, #ffeef4);
    box-shadow: var(--shadow-soft);
}

.concept-heading {
    font-size: 22px;
    margin-bottom: 10px;
}

.concept-body {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    white-space: pre-line;
}

.concept-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.concept-media iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

@media (max-width: 960px) {
    .concept-card {
        grid-template-columns: minmax(0, 1fr);
        padding: 20px;
    }
}

/* =====================
        特徴 (3カラム)
      ===================== */
.features {
    background: #fff8f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-soft);
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-main);
    margin-bottom: 8px;
}

.feature-body {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.7;
    white-space: pre-line;
}

.featured-product-item {
    height: 100%;
}

.featured-products-grid {
    aspect-ratio: 815 / 600;
}

.aboutpage .featured-products-grid {
    aspect-ratio: 815 / 500;
}

.aboutpage .featured-product-description {
    display: none;
}

.aboutpage .featured-product-button {
    padding: 0 6px;
}

.aboutpage .featured-product-button {
    height: 30px;
}

@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* =====================
        注目商品（2カラム）- Section04
      ===================== */
.featured-products {
    padding: 60px 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
    align-items: stretch;
}

.featured-product-item {
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.featured-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.featured-product-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--color-main-light);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-product-name {
    font-size: 20px;
    margin: 0 0 12px;
    line-height: 1.4;
}

.featured-product-description {
    flex-grow: 1;
    line-height: 1.7;
    white-space: pre-line;
    margin-bottom: 20px;
}

.featured-product-button {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    height: 100%;
}

.featured-product-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

@media (max-width: 960px) {
    .featured-products {
        padding: 40px 0;
    }

    .featured-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .featured-product-item {
        padding: 20px;
    }
}

/* =====================
        商品一覧グリッド
      ===================== */
.items {
    background: #ffffff;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 960px) {
    .items-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.item-card {
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.item-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.item-card:hover .item-thumb img {
    transform: scale(1.05);
}

.item-body {
    padding: 10px 12px 12px;
    font-size: 13px;
}

.item-title {
    font-size: 13px;
    margin-bottom: 4px;
    min-height: 2.4em;
    line-height: 1.2;
}

.item-price {
    font-weight: 700;
    font-size: 13px;
}

.item-price span {
    font-size: 11px;
    color: var(--color-muted);
    margin-left: 4px;
    font-weight: 400;
}

.items-more {
    margin-top: 18px;
    text-align: center;
}

.items-more a {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    font-size: 13px;
    background: #fff;
}

/* =====================
        フッター
      ===================== */
.site-footer {
    background: #242129;
    color: #f2f2f2;
    padding: 32px 0 18px;
    /* margin-top: 40px; */
}

.site-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.site-footer-logo {
    font-weight: 700;
    margin-bottom: 8px;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 12px;
}

.site-footer-nav a {
    color: #f2f2f2;
    opacity: 0.9;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================================
    フレキシブルセクション（共通）
  ================================ */
.flex-section {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    max-width: 100vw;
}

.flex-section:last-child {
    padding-bottom: 0;
}

.flex-section-inner {
    /* wrap/no-wrapで切り替え */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 画像位置の切り替え（orderで制御） */
.flex-section-inner .flex-section-image,
.flex-section-inner .flex-section-heading,
.flex-section-inner .flex-section-body {
    order: 0;
}

.flex-section-inner.image-pos-before-heading .flex-section-image {
    order: 0;
}

.flex-section-inner.image-pos-before-heading .flex-section-heading {
    order: 1;
}

.flex-section-inner.image-pos-before-heading .flex-section-body {
    order: 2;
}

.flex-section-inner.image-pos-after-heading .flex-section-heading {
    order: 0;
}

.flex-section-inner.image-pos-after-heading .flex-section-image {
    order: 1;
}

.flex-section-inner.image-pos-after-heading .flex-section-body {
    order: 2;
}

.flex-section-inner.image-pos-after-body .flex-section-heading {
    order: 0;
}

.flex-section-inner.image-pos-after-body .flex-section-body {
    order: 1;
}

.flex-section-inner.image-pos-after-body .flex-section-image {
    order: 2;
}

/* 回り込み（横並び） */
.flex-section-inner.wrap-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: flex-start;
    column-gap: 24px;
    justify-items: center;
}

.flex-section-inner.wrap-no-wrap {
    display: flex;
    flex-direction: column;
}

/* 画像 */
.flex-section-image {
    max-width: 100%;
}

.flex-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 見出し・本文 */
.flex-section-heading {
    margin: 0 0 8px;
}

.flex-section-body {
    white-space: pre-line;
    /* 改行をそのまま反映 */
}

@media (max-width: 768px) {
    .flex-section-inner.wrap-wrap {
        display: flex;
        flex-direction: column;
    }
}

/*
  Theme Name: Custom Base Theme
  Description: BASE用のカスタムテーマ。複数のセクションを設定可能。
  Version: 1.0.0
  Author: 倉持 賢一
  */

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Zen Kaku Gothic New", "Shippori Mincho", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


.site-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.site-header .header-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-header .header-image img {
    max-height: 60px;
    width: auto;
}

.site-header .main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.site-header .main-navigation a {
    text-decoration: none;
    font-size: 1rem;
}

/* トップスライダー */
.top-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.top-slider .slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.top-slider .slide {
    min-width: 100%;
    position: relative;
}

.top-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* コンセプト */
.concept-section {
    padding: 4rem 2rem;
    text-align: center;
}

.concept-section .concept-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.concept-section .concept-text {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 注目商品 */
.featured-products {
    padding: 0rem 2rem 4rem;
}

.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products .product-item {
    text-align: center;
}

.featured-products .product-image {
    width: 100%;
    margin-bottom: 1rem;
}

.featured-products .product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.featured-products .product-description {
    margin-bottom: 1.5rem;
}

.featured-products .product-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.featured-products .product-button:hover {
    background-color: #0056b3;
}

/* HTMLテキストセクション */
.html-text-section {
    padding: 2rem;
}

/* ポイントセクション */
.points-section {
    padding: 4rem 2rem;
}

.points-section .points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.points-section .point-item {
    text-align: center;
}

.points-section .point-item img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
    display: block;
}

/* 訴求テキスト */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section .cta-image {
    margin-bottom: 2rem;
}

.cta-section .cta-image img {
    max-width: 100%;
    height: auto;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section .cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .cta-button-text-top {
    margin-bottom: 0.5rem;
}

.cta-section .cta-button {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.cta-section .cta-button-text-bottom {
    margin-top: 0.5rem;
}

/* セクション区切り */
.section-divider {
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-divider.scroll {
    background-attachment: scroll;
}

/* 説明セクション */
.description-section {
    padding: 4rem 2rem;
}

.description-section .description-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.description-section .description-item {
    text-align: center;
}

.description-section .description-item img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1rem;
    display: block;
}

/* 画像+テキスト */
.image-text-section {
    padding: 4rem 2rem;
}

.image-text-section .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.image-text-section .section-image {
    width: 100%;
}

.image-text-section .section-image img {
    width: 100%;
    height: auto;
}

/* 商品グリッド */
.products-grid-section {
    padding: 4rem 2rem;
}

.products-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.products-grid-section .product-item {
    text-align: center;
}

.products-grid-section .product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* ボタングリッド */
.buttons-section {
    padding: 4rem 2rem;
    text-align: center;
}

.buttons-section .buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-section .section-button {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}


.button_container {
    margin-bottom: 20px;
}

section.flex-section-content>div[data-parts="button"] {
    margin-bottom: 30px;
}

.section-12 .button_desc {
    color: #fff;
}


/* レスポンシブ */
@media (max-width: 768px) {

    .site-header {
        position: fixed;
        width: 100%;
    }

    .site-header .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .site-header .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .concept-section .concept-title {
        font-size: 2rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-divider {
        background-attachment: scroll;
    }
}


.section-07-content .flex-section-body {
    text-align: center;
}

.section-08,
.section-09,
.section-10 {
    text-align: left;
    padding-left: 80px;
}

.section-08 section.flex-section-content {
    width: 100%;
}


section.flex-section.section-03 {
    background-image: url(https://basefile.akamaized.net/ilovemyself-base-ec/693185bd5b1dc/PCE383AAE383BCE382BFE38299E383BC.jpg) !important;
    background-position-y: bottom;
}

.purchaseButton button {
    margin: 0 auto;
    background: #CAA405;
    color: #fff;
    border: none;
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {


    .section-08,
    .section-09,
    .section-10 {
        padding-left: 0;
    }
}

/* プライバシーポリシー */
div#privacy {
    padding: 10px 100px;
    line-height: 2.8rem;
}

div#privacy li {
    list-style: none;
}

/* 特定商取引法に基づく表記 */
div#law {
    padding: 10px 100px;
    margin: 0 auto;
    text-align: center;
}

div#law h3 {
    margin-top: 30px;
}

.law__telnum canvas {
    margin: 0 auto;
}

/* お問い合わせ */
.inquirySection dt {
    text-align: center;
}

.inquirySection dd {
    text-align: center;
}

.inquirySection .control-panel {
    text-align: center;
}

#ShopInquiryInquiryForm input {
    width: 80vw;
    height: 30px;
}

#ShopInquiryInquiryForm textarea {
    width: 80vw;
    height: 200px;
}


.section-07 {
    /* background-image: linear-gradient(90deg, #fef1e8, #f0ccc9) !important; */
}

.section-07 .l-container {
    padding: 0 80px;
}

.section-05 .flex-section-image {
    display: none;
}

/* Section16 */
.flex-section.section-16 {
    padding: 0;
}

.section-16 .flex-section-content {
    width: 50vw;
    padding: 30px 70px 30px;
    text-align: justify;
    position: relative;
    left: 40vw;
}

.section-20 .flex-section-content {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 30px 10vw 10px;
}

.section-20 section.flex-section-content>div[data-parts="button"] {
    margin-top: 30px;
}

.section-20 .flex-section-inner.image-pos-after-body .flex-section-image {
    display: none;
}

.button_container>a {
    padding: 5px 10px;
    border-radius: 3px;
}


.section-12 h2.flex-section-heading,
.section-12 .flex-section-body {
    display: none;
}



section.flex-section-content.section-17 {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width:100vw;
}

section.featured-products.section-04 {
    padding: 0;
}


.flex-section-add-text {
    margin-top: 30px;
    line-height: 2.5;
    padding: 0;
}

.aboutpage .about-section,
.blogpage .main {
    margin-top: 60px;
}

.publish_date {
    display: none;
}




.social {
    display: none;
}

form#ShopInquiryInquiryForm {
    padding-bottom: 100px;
}


/* 親要素に対してgridを適用 */
.page-title-all-item--i-love-myself .blog_body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2列にする */
    gap: 20px;
    /* 商品間の余白 */
    margin-top: 20px;
    padding-left: 60px;
    padding-right: 60px;
}

/* 各商品ブロックを1つのグリッドアイテムとして扱う */
.page-title-all-item--i-love-myself .blog_body>div {
    background: #fff;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35vw;
    position: relative;
    margin-right: 0;
    margin-left: auto;
}

.page-title-all-item--i-love-myself .blog_body>div:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

/* 画像、テキスト、リンクのスタイル */
.page-title-all-item--i-love-myself .blog_body img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
    position: relative;
}

.page-title-all-item--i-love-myself .blog_body a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.page-title-all-item--i-love-myself .blog_body a:hover {
    text-decoration: underline;
}


.page-title-all-item--i-love-myself .main #about .blog_body a {
    text-decoration: none;
    color: inherit;
}

.page-title-all-item--i-love-myself .main #about .blog_body a:hover {
    text-decoration: none;
    color: inherit;
}

.page-title-all-item--i-love-myself p.text {
    display: none;
}

.itempage .item-detail__title {
    font-weight: 400;
}

.section-19 {
    display: none;
}


.featured-product-item .featured-product-image {

    overflow: visible;
}

.featured-product-button {
    height: 50px;
}

.about-05 .featured-product-item img {
    aspect-ratio: 1 / 1;
}

.toppage .section-18 .featured-product-description {
    display: none;
}

.toppage .section-18 .featured-products-grid {
    aspect-ratio: 815 / 530;
}


.section-04 .featured-product-button {
    height: 100%;
    max-width: 100%;
}

.section-04 .featured-product-item {
    color: #000;
}

a.featured-product-button {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.page-title-all-item--i-love-myself .blog_body div>br {
    display: none;
}

.section-06 .flex-section-content {
    width: 100%;
}

.section-06 .flex-section-inner.image-pos-after-heading .flex-section-body {
    width: 100% !important;
}



@media screen and (max-width:768px) {

    .section-20 .flex-section-content {
        padding: 10px 20px;
        max-width: calc(100vw - 40px);
    }

    .section-08,
    .section-09,
    .section-10 {
        padding-left: 0px;
    }

    .flex-section.section-16 {
        height: auto;
        padding-top: 100px;
        padding-bottom: 200px;
        background-attachment: scroll !important;
    }

    .section-16 .flex-section-content {
        width: 100vw;
        padding: 20px 20px 30px;
        top: 100px;
        height: auto;
        left: -30px;
    }

    section.flex-section-content.section-17 {
        padding-top: 80px;
    }


    .section-15 .flex-section-add-text {
        padding: 0 0vw;
        text-align: center;
        line-height: 2.5;

    }

    .featured-products {
        padding: 0 !important;
    }

    .l-container {
        padding: 0 30px 20px !important;
    }


    .section-20 .l-container {
        padding: 0 0px 20px !important;
    }

    .l-container:has(.featured-products-grid) {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .l-container.site-header-inner {
        padding: 8px 0px 8px 10px !important;
    }

    .featured-product-item {
        padding: 15px 15px 20px !important;
    }

    .section-04 .l-container {
        padding-bottom: 20px;
    }

    .flex-section-content {
        margin: 0 auto;
        max-width: 100%;

    }

    .section-16 .flex-section-content {
        width: 100vw;

    }

    .section-09 .flex-section-content {
        margin: 0 auto;
    }

    .section-10 .flex-section-content {
        margin: 0 auto;
    }

    section.flex-section.section-12 {
        padding-bottom: 0;
    }

    .flex-section-inner.image-pos-before-heading .flex-section-image {
        order: 3;
    }

    a.button_button_c1301084 {
        text-wrap: nowrap;
        font-size: min(3vw, 16px);
    }

    .page-title-all-item--i-love-myself .blog_body {
        padding-left: 0px;
        padding-right: 0px;
    }

    .page-title-all-item--i-love-myself .blog_body>div {
        width: 42vw;
    }

    .featured-products-grid {
        gap: 6px;
        padding: 6px;
    }

    .featured-product-button {
        padding: 0;

    }

    .site-logo img {
        height: auto;
        width: 100%;
        aspect-ratio: 336 / 32;
    }

    .section-18 .flex-section-inner.image-pos-before-heading .flex-section-image {
        order: 0;
    }

    .section-12 .flex-section-content {
        width: 100%;
    }

    .section-13 .flex-section-inner.image-pos-before-heading .flex-section-body {
        width: 100%;
    }

    .section-05 .flex-section-content {
        width: 100%;
    }
}

@media screen and (max-width:480px) {

    br.spbr{
        display: inline;
    }
    
    .featured-product-description {
        font-size: calc(14vw / 4.8);


    }

    section.flex-section.section-18 .flex-section-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }





    .hamburger-menu {
        width: 30px;
        height: 30px;

    }

    #baseMenu .cart img {
        min-width: 30px;
        width: 30px;
        margin-right: 10px;
    }

    .site-logo img {
        width: 90%;
    }

    .l-container.site-header-inner {
        padding: 15px 20px !important
    }

    section.flex-section-content.section-17 {
        padding-top: 40px;

    }

    .section-17 .flex-section-heading {
        margin-bottom: 40px;
    }

    .section-17 .flex-section-inner.image-pos-after-heading .flex-section-body{
        width:72vw;
    }
    p {
        text-align: left;

    }

    .flex-section-body {
        text-align: left;
        margin: 0 auto;
        word-break: normal;
        font-size: calc(12.4vw / 4.5) !important;
    }

    .section-20 .flex-section-content {

        padding: calc(10vw / 4.5) calc(20vw / 4.5);
        max-width: 91.11vw;
    }

    .section-05 p{
        width:100%;
    }
 
    .section-06 .flex-section-body {
        font-size: calc(12.2vw / 4.5) !important;
    }

    .section-11 .l-container{
        padding-left:0!important;
        padding-right:0!important;
    }

    .section-03 .flex-section-heading{
        font-size:calc(24vw / 4.8)!important;
    }
}

@media screen and (min-width:1000px) {
    p{
        width: 440px;

    }

    .section-06 .flex-section-content > .flex-section-body{
        width:440px;

    }

    .section-06 .flex-section-content{
        width: 440px;
    margin-left: auto;
    margin-right: auto;
    }

    .section-06 .flex-section-image{
        width:484px;
    }

    .section-08 .flex-section-image, .section-09 .flex-section-image, .section-10 .flex-section-image{
        width:245.33px;
    }

    .section-08 .flex-section-heading, .section-09 .flex-section-heading, .section-10 .flex-section-heading{
        width:490.67px;
    }

    .section-11 .flex-section-body{
        width:518px;
    }

    .section-11 .flex-section-image{
        width:484px;
    }

    .section-11 .flex-section-inner.image-pos-after-heading .flex-section-body{
        width:518px;
    }

    .section-13 .flex-section-inner.image-pos-before-heading .flex-section-body {
        width: 520px;
    }

    .section-14 .flex-section-inner.wrap-wrap{
        width:760px;
        margin:0 auto;

    }

    .section-16 .flex-section-content{
        width: 500px;
        left:360px;
    }

    .section-17 .flex-section-inner.image-pos-after-heading .flex-section-body{
        width: 484px;
    }

    .section-18 .flex-section-inner.image-pos-before-heading .flex-section-body{
        width:400px;
    }

    .section-20 .flex-section-content{
        padding-left:100px;
        padding-right:100px;
    }
}

@media screen and (min-width:769px) {
    p{
        width: 440px;

    }

    .section-06 .flex-section-content > .flex-section-body{
        width:440px;

    }

    .section-06 .flex-section-content{
        width: 440px;
    margin-left: auto;
    margin-right: auto;
    }

    .section-06 .flex-section-image{
        width:484px;
    }

    .section-08 .flex-section-image, .section-09 .flex-section-image, .section-10 .flex-section-image{
        width:200px;
    }

    .section-08 .flex-section-heading, .section-09 .flex-section-heading, .section-10 .flex-section-heading{
        width:450px;
    }

    .section-08 .flex-section-body {
        padding-left: 60px;
    }

    .section-11 .flex-section-body{
        width:518px;
    }

    .section-11 .flex-section-image{
        width:484px;
    }

    .section-11 .flex-section-inner.image-pos-after-heading .flex-section-body{
        width:518px;
    }

    .section-13 .flex-section-inner.image-pos-before-heading .flex-section-body {
        width: 520px;
    }

    .section-14 .flex-section-inner.wrap-wrap{
        width:968px;
        margin:0 auto;

    }

    .section14subtitle {
        text-wrap: nowrap;
    }

    .section-16 .flex-section-content{
        width: 500px;
        left:616px;
    }

    .section-17 .flex-section-inner.image-pos-after-heading .flex-section-body{
        width: 484px;
    }

    .section-18 .flex-section-inner.image-pos-before-heading .flex-section-body{
        width:400px;
    }

    .section-20 .flex-section-content{
        padding-left:100px;
        padding-right:100px;
    }

}





</style>


