/* ===== CSS Variables ===== */
:root {
    --color-base1: #FFFBF9;
    --color-base2: #F9F3EE;
    --color-base3: #F2EAE3;
    --color-text: #4A3F3A;
    --color-text-sub: #8C7E76;
    --color-accent1: #F28B7B;
    --color-accent2: #D4A87C;
    --color-accent3: #B8A090;
    --color-border: #E4D9D1;
    --color-rakuten: #BF0000;
    --font-ja: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    --font-en: "Nunito", sans-serif;
    --radius-card: 12px;
    --radius-btn: 6px;
    --shadow-card: 0 1px 8px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.08);
}

/* ===== Base ===== */
.one-piece-main {
    font-family: var(--font-ja);
    background: #fff;
    color: var(--color-text);
    line-height: 1.85;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
}

/* ===== Breadcrumb ===== */
.one-piece-main nav[aria-label="Breadcrumb"] {
    background: #fff;
}

.one-piece-main a:focus,
.one-piece-main a:active,
.one-piece-main a:focus-visible,
.one-piece-main a:visited,
.one-piece-main button:focus,
.one-piece-main button:active,
.one-piece-main button:focus-visible {
    outline: none !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.one-piece-main * { -webkit-tap-highlight-color: transparent; }

/* ===== Hero Banner (1枚画像) ===== */
.hero-banner {
    padding: 0 !important;
    background: none !important;
    overflow: visible;
    line-height: 0;
    font-size: 0;
}
.hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
}


/* ===== Sticky Nav (op-sticky-nav) ===== */
.op-sticky-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: none;
    padding: 0;
    margin: 0;
    z-index: 90;
}
.op-sticky-nav .ecm-floating-navi {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: transparent;
}
.op-sticky-nav .ecm-floating-navi-item {
    display: inline-flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-sub);
    transition: color 0.4s ease, border-bottom-color 0.4s ease;
    border-bottom: 2px solid transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    text-decoration: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.op-sticky-nav .ecm-floating-navi-item:hover {
    color: var(--color-accent1);
    border-bottom-color: var(--color-accent1);
    text-decoration: none;
    background: none;
}
.op-sticky-nav .ecm-floating-navi-item:focus,
.op-sticky-nav .ecm-floating-navi-item:active,
.op-sticky-nav .ecm-floating-navi-item:focus-visible {
    outline: none;
    text-decoration: none;
    color: var(--color-text-sub);
}
.op-sticky-nav .ecm-floating-navi-item span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

/* ===== Section ===== */
.section {
    padding: 100px 24px;
    scroll-margin-top: 60px;
}
.section-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
}
.section-subtitle {
    font-size: 16px;
    color: var(--color-text-sub);
    font-weight: 400;
    display: block;
    margin-top: 8px;
}
.section-desc {
    font-size: 15px;
    color: var(--color-text-sub);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 2.0;
    text-align: center;
}

/* ===== Page Nav ===== */
.page-nav {
    padding: 36px 24px 24px;
    background: #fff;
}
.page-nav-inner {
    max-width: 960px;
    margin: 0 auto;
}
.page-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.page-nav-list li {
    flex: 0 0 calc(25% - 8px);
}
.page-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 12px 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.4s ease;
    gap: 4px;
}
.page-nav-link::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-text-sub);
    border-bottom: 2px solid var(--color-text-sub);
    transform: rotate(45deg);
    transition: border-color 0.4s ease;
}
.page-nav-link:hover {
    background: var(--color-accent1);
    color: #fff;
    border-color: var(--color-accent1);
}
.page-nav-link:hover::after {
    border-color: #fff;
}
.page-nav-link:focus,
.page-nav-link:active,
.page-nav-link:focus-visible {
    outline: none;
    text-decoration: none;
    color: var(--color-text);
}

/* ===== Intro ===== */
.intro-text {
    font-size: 15px;
    color: var(--color-text-sub);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2.0;
}

/* ===== Silhouette Grid ===== */
.silhouette-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-top: 48px;
}
.silhouette-item {
    text-align: center;
}
.silhouette-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}
.silhouette-item:hover {
    text-decoration: none;
}
.silhouette-item:hover .silhouette-img-wrap {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.silhouette-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    mix-blend-mode: multiply;
}
.silhouette-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

/* ===== Sub heading ===== */
.sub-heading-wrap {
    margin-top: 80px;
    margin-bottom: 48px;
    text-align: center;
}
.sub-heading-label {
    display: inline-block;
    padding: 4px 16px;
    border-bottom: none;
    margin-bottom: 8px;
}
.sub-heading-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}
.sub-heading-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--color-accent1);
    margin: 8px auto 0;
    border-radius: 2px;
}
.sub-heading-desc {
    font-size: 14px;
    color: var(--color-text-sub);
}
.sub-heading-h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--color-text);
}

/* ===== Body Type Cards ===== */
.body-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.body-type-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.body-type-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.body-type-illust {
    padding: 32px 16px;
    text-align: center;
}
.body-type-illust-straight {
    background: linear-gradient(135deg, #F5EDE8 0%, #F0E5DE 100%);
}
.body-type-illust-wave {
    background: linear-gradient(135deg, #E8F0EF 0%, #DEE8E6 100%);
}
.body-type-illust-natural {
    background: linear-gradient(135deg, #F0F3E8 0%, #E5EAD8 100%);
}
.body-type-figure {
    position: relative;
    margin: 0 auto;
}
.body-type-figure-straight {
    width: 60px;
    height: 90px;
    background: rgba(91,122,94,0.15);
    border-radius: 30px 30px 4px 4px;
}
.body-type-figure-head {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(91,122,94,0.2);
    border-radius: 50%;
}
.body-type-figure-body-s {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(91,122,94,0.25);
    border-radius: 4px 4px 0 0;
}
.body-type-figure-wave {
    width: 50px;
    height: 90px;
    margin: 0 auto;
    position: relative;
}
.body-type-figure-wave-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(91,122,94,0.2);
    border-radius: 50%;
}
.body-type-figure-wave-upper {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: rgba(91,122,94,0.2);
    border-radius: 15px 15px 0 0;
}
.body-type-figure-wave-lower {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: rgba(91,122,94,0.25);
    border-radius: 0 0 25px 25px;
}
.body-type-figure-natural {
    width: 40px;
    height: 90px;
    margin: 0 auto;
    position: relative;
}
.body-type-figure-natural-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(91,122,94,0.2);
    border-radius: 50%;
}
.body-type-figure-natural-upper {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: rgba(91,122,94,0.2);
    border-radius: 4px;
}
.body-type-figure-natural-lower {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 45px;
    background: rgba(91,122,94,0.25);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.body-type-content {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.body-type-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-accent1);
    text-align: center;
}
.body-type-body-label {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}
.body-type-desc {
    font-size: 14px;
    color: var(--color-text-sub);
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: center;
}
.body-type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    padding-top: 8px;
}
.body-type-tag {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: var(--color-accent1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.body-type-tag::after {
    content: '';
    width: 4px;
    height: 4px;
    border-top: 1.5px solid var(--color-accent1);
    border-right: 1.5px solid var(--color-accent1);
    transform: rotate(45deg);
    margin-left: 6px;
}
.body-type-tag:hover {
    opacity: 0.8;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--color-accent1) !important;
    text-decoration: none;
}

/* ===== Material Point Cards ===== */
.material-point-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}
.material-point-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: all 0.4s ease;
}
.material-point-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card-hover);
    text-decoration: none;
}
.material-point-card:active,
.material-point-card:focus,
.material-point-card:focus-visible {
    outline: none !important;
    text-decoration: none !important;
    color: var(--color-text);
}
.material-point-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.material-point-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.material-point-body {
    flex: 1;
    min-width: 0;
}
.material-point-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.material-point-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent1);
}
.material-point-recommend {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}
.material-point-desc {
    font-size: 14px;
    color: var(--color-text-sub);
    line-height: 1.6;
}

/* ===== Onayami (Concerns) ===== */
.onayami-intro {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    margin-top: 48px;
    margin-bottom: 24px;
    text-align: center;
}
.onayami-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}
.onayami-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.onayami-item {
    background: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-card);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.onayami-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
    color: var(--color-accent1);
    text-decoration: none;
}
.onayami-item:active,
.onayami-item:focus,
.onayami-item:focus-visible {
    outline: none !important;
    text-decoration: none !important;
    color: var(--color-text);
}
.onayami-check {
    color: var(--color-accent1);
    font-weight: 700;
}
.onayami-answer {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent1);
    text-align: center;
}
.onayami-arrow {
    margin-top: 16px;
    text-align: center;
}
.onayami-arrow-icon {
    border: solid var(--color-accent1);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
}

/* ===== Product Cards ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--color-base1);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
}
.product-card:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.product-img-wrap {
    aspect-ratio: 2/3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    background: var(--color-base1);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
}
.product-card:hover .product-img {
    transform: scale(1.03);
}
.product-info {
    padding: 16px;
    width: 100%;
    text-align: center;
}
.product-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 4px;
}
.product-desc {
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-top: 8px;
}
.product-card-landscape {
    background: var(--color-base1);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    display: block;
    color: inherit;
}
.product-card-landscape:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.product-img-wrap-landscape {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-base2);
}
.product-info-landscape {
    padding: 12px 14px;
    text-align: left;
}
.product-title-landscape {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
}
.product-desc-landscape {
    font-size: 12px;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-top: 4px;
}
.product-img-landscape {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.product-card-landscape:hover .product-img-landscape {
    transform: scale(1.03);
}

/* ===== Centered Flex Grid ===== */
.product-grid-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.product-grid-centered .product-card {
    width: calc(33.333% - 16px);
    max-width: 400px;
}
.product-grid-centered .product-card-landscape {
    width: calc(33.333% - 16px);
    max-width: 400px;
}

/* ===== CTA Button ===== */
.cta-wrap {
    text-align: center;
    margin-top: 48px;
}
.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-accent1);
    color: #fff !important;
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.4s ease;
    letter-spacing: 0.04em;
}
.cta-btn:hover {
    background: #D97A6E;
    color: #fff !important;
    text-decoration: none;
}
.cta-btn:focus,
.cta-btn:active,
.cta-btn:focus-visible {
    outline: none;
    color: #fff;
    text-decoration: none;
}

/* ===== Section Divider ===== */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border);
}

/* ===== Section Title (subsection variant) ===== */
.subsection-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}
.subsection-subtitle {
    font-size: 13px;
    color: var(--color-text-sub);
    font-weight: 400;
    display: block;
    margin-top: 8px;
}

/* ===== Scene Section ===== */
.scene-banner-wrap {
    margin-top: 40px;
    text-align: center;
}
.scene-banner-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.scene-banner-link {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.scene-banner-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.scene-banner-link:hover { text-decoration: none; }
.scene-banner-link:hover .scene-banner-img {
    opacity: 0.75;
}

/* ===== Campaign Details ===== */
.campaign-wrap {
    background: var(--color-base1);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}
.campaign-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-accent1);
    padding-bottom: 8px;
    color: var(--color-text);
}
.campaign-toggle-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 1px solid var(--color-accent1);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--color-accent1);
    font-weight: 700;
    font-family: var(--font-ja);
    cursor: pointer;
    margin-bottom: 16px;
    font-size: 14px;
}
.campaign-toggle-icon {
    border: solid var(--color-accent1);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}
.campaign-panel {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}
.campaign-note {
    margin-bottom: 24px;
}
.campaign-note a {
    color: var(--color-accent1);
    text-decoration: underline;
}
.campaign-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    border-top: 1px solid var(--color-border);
    padding: 16px 0;
}
.campaign-row-label {
    font-weight: 700;
    font-size: 14px;
}
.campaign-badge {
    background: var(--color-base3);
    padding: 4px 8px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
}
.campaign-service-badge {
    border: 1px solid var(--color-text);
    padding: 2px 8px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
}
.campaign-small {
    font-size: 12px;
    color: var(--color-text-sub);
}
.campaign-small a {
    color: var(--color-accent1);
    text-decoration: underline;
}
.campaign-small-list {
    list-style: none;
    font-size: 12px;
    color: var(--color-text-sub);
    line-height: 1.8;
}
.campaign-small-list li { margin-bottom: 4px; }
.campaign-small-list a {
    color: var(--color-accent1);
    text-decoration: underline;
}
.campaign-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.campaign-caution-list {
    list-style: none;
    font-size: 12px;
    color: var(--color-text-sub);
    line-height: 1.8;
}
.campaign-caution-list li { margin-bottom: 8px; }
.campaign-caution-list a {
    color: var(--color-accent1);
    text-decoration: underline;
}

/* ===== Brand SNS ===== */
.brand-sns {
    padding: 80px 24px;
    background: #fff;
}
.brand-sns-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.brand-sns-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    padding: 48px 32px;
    box-shadow: var(--shadow-card);
}
.brand-sns-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 16px;
}
.brand-sns-title-wrap {
    text-align: center;
}
.brand-sns-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}
.brand-sns-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--color-accent1);
}
.brand-sns-desc {
    font-size: 14px;
    color: var(--color-text-sub);
    line-height: 2.0;
    margin-bottom: 16px;
}
.brand-sns-categories {
    margin-bottom: 24px;
    font-size: 14px;
}
.brand-sns-category-link {
    color: var(--color-accent1);
    font-weight: 600;
    transition: color 0.4s ease;
}
.brand-sns-category-link:hover { color: #D97A6E; text-decoration: none; }
.brand-sns-sep { color: var(--color-text-sub); }
.brand-sns-badge {
    display: inline-block;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 4px;
}
.brand-sns-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--color-accent1);
}
.brand-sns-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.brand-sns-icon-link { transition: opacity 0.4s ease; }
.brand-sns-icon-link:hover { opacity: 0.7; text-decoration: none; }
.brand-sns-icon-img { height: 40px; width: auto; }

/* ===== Fashion Events ===== */
.fashion-events {
    padding: 100px 24px;
    background: #fff;
    scroll-margin-top: 60px;
}
.fashion-events-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.fashion-events-grid .cntOther { display: block; }
.fashion-events-grid .bigBnrWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fashion-events-grid .bigBnrWrap li {
    margin: 0 !important;
}
.fashion-events-grid .bigBnrWrap .bnrImg img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}
.fashion-events-grid .bigBnrWrap li:hover .bnrImg img {
    opacity: 0.75;
}
.fashion-events-grid .bigBnrWrap .bnrTxt {
    padding: 8px 4px;
    font-size: 13px;
    color: var(--color-text);
}
.fashion-event-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}
.fashion-event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    text-decoration: none;
}
.fashion-event-card:active {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--shadow-card);
    color: inherit;
    text-decoration: none;
}
.fashion-event-card:focus,
.fashion-event-card:focus-visible {
    outline: none;
    color: inherit;
    text-decoration: none;
}
.fashion-event-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--color-base2);
}
.fashion-event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.fashion-event-card:hover .fashion-event-img {
    transform: scale(1.03);
}
.fashion-event-desc {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ===== Recommended Planning ===== */
.recommended-section {
    padding: 80px 24px;
    background: var(--color-base1);
}
.recommended-inner {
    max-width: 700px;
    margin: 0 auto;
}
.recommended-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.5;
}
.recommended-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.recommended-card {
    width: 200px;
    display: block;
    transition: all 0.4s ease;
}
.recommended-card:hover { transform: translateY(-2px); text-decoration: none; }
.recommended-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-accent1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    z-index: 90;
}
.back-to-top:hover {
    background: #D97A6E;
    transform: translateY(-2px);
}

/* ===== SP Responsive ===== */
@media (max-width: 768px) {

    .op-sticky-nav { display: none; }
    .section { padding: 64px 16px; }
    .section-intro { padding-top: 0px !important; padding-bottom: 24px !important; }
    .intro-text { margin-top: 0; }
    .section-title { font-size: 24px; }

    .page-nav-list li { flex: 0 0 calc(50% - 6px); }
    .page-nav { padding: 32px 16px; margin-top: -16px; }

    .silhouette-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
    .body-type-grid { grid-template-columns: 1fr; }
    .material-point-list { display: flex; flex-direction: column; }
    .material-point-card { padding: 16px; flex-direction: column; text-align: center; gap: 12px; }
    .material-point-header { flex-direction: column; align-items: center; }

    .product-grid { grid-template-columns: 1fr; }
    .product-grid-centered .product-card { width: 100%; }

    .fashion-events-grid .bigBnrWrap { grid-template-columns: 1fr; }
    #section-body-cover, #section-on-off, #section-skin-friendly { padding-left: 0 !important; padding-right: 0 !important; }
    #section-scene { padding-left: 16px !important; padding-right: 16px !important; }

    .footer-genre-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-trust-grid { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }

    .material-point-card { padding: 16px; }

    .campaign-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .onayami-answer br { display: none; }

    .sub-heading-wrap { margin-top: 48px; margin-bottom: 32px; }
}

/* ===== PC: Section backgrounds & padding ===== */
.section.section-intro {
    background: transparent;
    padding-top: 24px;
    padding-bottom: 24px;
}
#section-silhouette { background: #fff; }
#section-material   { background: var(--color-base1); }
#section-concern    { background: #fff; padding-bottom: 0; }
#section-body-cover { padding-top: 20px; background: #fff; }
#section-on-off     { background: #fff; }
#section-skin-friendly { background: #fff; }
#section-scene      { background: var(--color-base1); }
#section-ranking    { background: #fff; }
#section-review     { background: var(--color-base1); }

/* ===== PC: Material section ===== */
.material-point-list { margin-top: 48px; }
.material-point-card { text-decoration: none; color: inherit; }
.material-point-card-arrow { margin-left: auto; color: var(--color-accent1); }

/* ===== PC: Fashion event card components ===== */
#section-body-cover .fashion-event-img-wrap,
#section-on-off     .fashion-event-img-wrap,
#section-skin-friendly .fashion-event-img-wrap {
    aspect-ratio: 1/1;
    background: transparent;
}
.fashion-event-desc {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    line-height: 1.4;
    background: transparent;
    color: var(--color-text);
}
.scene-banner-title { margin-top: 56px; }

/* ===== PC: Card grid variants ===== */
.fashion-event-grid-3col {
    margin-top: 48px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
}
.fashion-event-grid-2col {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
}

/* ===== PC: Scene section cards ===== */
.scene-event-card {
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.scene-event-card .fashion-event-img-wrap {
    aspect-ratio: unset;
    background: unset;
    flex: 1;
    min-height: 0;
}


/* ===== PC: Grid SP overrides ===== */
@media (max-width: 768px) {
    .fashion-event-grid-3col,
    .fashion-event-grid-2col {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }
}
