@import url("./normalize.css");
@import url("./common.css");
@import url("./header.css");
@import url("./footer.css");

/* ============================================================
   追従ボタン分の余白
   ============================================================ */
.Pd26_Main {
    padding-bottom: 72px;
}

/* ============================================================
   製品ヘッドセクション（2カラム）
   ============================================================ */

/* キャッチコピー */
.Pd26_HeadSection_Catch {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto 50px;
}
.Pd26_HeadSection_Catch_Main {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.75;
}
.Pd26_HeadSection_Catch_Sub {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

.Pd26_HeadSection {
    width: 100%;
    padding: 80px 0 40px;
}
.Pd26_HeadSection_Inner {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .Pd26_HeadSection_Catch {
        margin: 0 auto;
    }
    .Pd26_HeadSection_Catch_Main,
    .Pd26_HeadSection_Catch_Sub {
        font-size: 15px;
    }
    .Pd26_HeadSection {
        padding: 24px 0 40px;
    }
    .Pd26_HeadSection_Inner {
        flex-direction: column;
        /* width: 100%; */
        gap: 0;
    }
}

/* --- 左カラム：画像ギャラリー --- */
.Pd26_HeadSection_Gallery {
    width: calc((100% - 40px) / 2);
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    /* SP: 画像が先 */
    .Pd26_HeadSection_Gallery {
        width: 100%;
        order: 2;
    }
}

/* メイン画像 */
.Pd26_productImageMain {
    position: relative;
    width: 100%;
}
.Pd26_ProductDetail_Section_Thumbnail {
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .Pd26_productImageMain {
        max-width: 380px;
        margin: 0 auto;
    }
}

/* 画像ナビゲーション矢印 */
.Pd26_ImgNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.Pd26_ImgNav svg {
    display: block;
}
.Pd26_ImgNav--prev {
    left: 0;
}
.Pd26_ImgNav--next {
    right: 0;
}

/* サムネイルリスト */
.Pd26_productImageList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}
.Pd26_productImageList li {
    width: calc((100% - 10px * 5) / 6);
    cursor: pointer;
    outline: 1px solid #d0d0d0;
    outline-offset: -1px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.Pd26_productImageList li:hover,
.Pd26_productImageList li.is-on {
    outline: 2px solid #0041C0;
    outline-offset: -2px;
}
.Pd26_productImageList li img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .Pd26_productImageList {
        width: 100vw;
        padding: 0 5%;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .Pd26_productImageList li {
        width: 60px;
        flex: 0 0 auto;
    }
}

/* カラー選択（2026新クラス） */
.Pd26_ColorList {
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.Pd26_ColorList_Item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.Pd26_ColorList_Swatch {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 1px solid rgb(0 0 0 / .3);
    box-sizing: border-box;
}
.Pd26_ColorList_Item.is-on .Pd26_ColorList_Swatch {
    outline: 2px solid #383B40;
    outline-offset: 2px;
}
.Pd26_ColorList_Text {
    margin: 0;
    padding: 0 0 3px;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .Pd26_ColorList_Item {
        justify-content: center;
    }
    .Pd26_ColorList_Text {
        font-size: 12px;
    }
}

/* --- 右カラム：商品情報 --- */
.Pd26_HeadSection_Info {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.Pd26_HeadSection_Info_Top {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .Pd26_HeadSection_Info {
        order: 1;
        width: 100%;
        margin: 24px auto 0;
        gap: 16px;
    }
}

/* NEWバッジ+製品名の横並びレイアウト（mock2用） */
.Pd26_ProductName_WithBadge {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.Pd26_ProductName_WithBadge .Pd26_StatusLabels {
    flex-shrink: 0;
}
.Pd26_ProductName_WithBadge .Pd26_ProductName {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .Pd26_ProductName_WithBadge {
        margin: 0 0 15px;
    }
}

/* ステータスラベル */
.Pd26_StatusLabels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.Pd26_ProductInfo_Head_Status_Label {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.08em;
}
.Pd26_ProductInfo_Head_Status_Label.is-new {
    background: #E8000D;
    color: #fff;
}
.Pd26_ProductInfo_Head_Status_Label.is-limited {
    background: #484B50;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .Pd26_ProductInfo_Head_Status_Label {
        font-size: 10px;
    }
}

/* カテゴリ名 */
.Pd26_CatGroup {
    margin: 0 0 10px;
}
.Pd26_CatGroup_Main,
.Pd26_ProductName_FreeText {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .Pd26_CatGroup_Main {
        margin: 0 0 10px;
        font-size: 14px;
    }
}

/* 製品名 */
.Pd26_ProductName {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
}
.Pd26_ProductName_Sub {
    font-size: 14px;
    color: #8D9096;
}

@media screen and (max-width: 768px) {
    .Pd26_ProductName {
        font-size: 18px;
    }
}

/* 価格エリア */
.Pd26_ProductInfo_PriceArea {
    margin-top: 4px;
}
.Pd26_ProductInfo_PriceArea_OpenPrice,
.Pd26_ProductInfo_PriceArea_InputPrice {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}
.Pd26_ProductInfo_PriceArea_OpenPrice_Caption {
    margin: 8px 0 0;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .Pd26_ProductInfo_PriceArea_OpenPrice,
    .Pd26_ProductInfo_PriceArea_InputPrice {
        font-size: 15px;
    }
    .Pd26_ProductInfo_PriceArea_OpenPrice_Caption {
        font-size: 12px;
    }
}

/* シリーズロゴ・受賞ロゴエリア */
.Pd26_SeriesLogoWrap {
    margin: 0 0 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
/* .Pd26_SeriesLogo {
    max-width: 180px;
    height: auto;
    width: auto;
    display: block;
} */

@media screen and (max-width: 768px) {
    .Pd26_SeriesLogoWrap {
        margin: 0 0 16px;
    }
    /* .Pd26_SeriesLogo {
        max-width: 120px;
    } */
}

/* スペックサマリー */
.Pd26_HeadSection_Info_Spec {
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e0e0e0;
}
.Pd26_HeadSpec_Item {
    font-size: 18px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 11px 0;
}

@media screen and (max-width: 768px) {
    .Pd26_HeadSpec_Item {
        font-size: 14px;
    }
}

/* カラー選択・価格エリアのPC/SP表示出し分け */
@media screen and (max-width: 768px) {
    .Pd26_HeadSection_Detail {
        width: 100%;
        margin: 20px 0 0;
        order: 3;
    }
}


/* ============================================================
   関連リンク
   ============================================================ */
.Pd26_RelatedLinks {
    width: 100%;
    /* background: #f5f5f5; */
    padding: 24px 0;
}
.Pd26_RelatedLinks_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.Pd26_RelatedLinks .ProductDetail_Section_RelatedLink {
    margin: 0 10px;
}

/* ============================================================
   キャッチコピー・特徴
   ============================================================ */
.Pd26_CatchSection {
    width: 100%;
    padding: 60px 0;
}
.Pd26_CatchSection_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.Pd26_CatchSection_Main {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.Pd26_CatchSection_Sub {
    font-size: 22px;
    margin: 16px 0 0;
    text-align: center;
}
.Pd26_FeatureList {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}
.Pd26_FeatureList_Item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.Pd26_FeatureList_Item img {
    width: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}

@media screen and (max-width: 768px) {
    .Pd26_CatchSection {
        padding: 40px 0;
    }
    .Pd26_CatchSection_Main {
        font-size: 20px;
        text-align: left;
    }
    .Pd26_CatchSection_Sub {
        font-size: 16px;
        text-align: left;
    }
    .Pd26_FeatureList_Item {
        font-size: 14px;
    }
}

/* ============================================================
   動画セクション
   ============================================================ */
.Pd26_VideoSection {
    width: 100%;
    padding: 40px 0;
    /* margin: 0 0 -85px; */
}
.Pd26_VideoSection_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.Pd26_VideoEmbed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.Pd26_VideoEmbed:not(:first-child) {
    margin: 20px 0 0;
}
.Pd26_VideoEmbed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .Pd26_VideoSection {
        padding: 24px 0;
        margin: 0;
    }
}

.Pd26_VideoSection + .ProductDetail_Section {
    padding-top: 0;
}

/* ============================================================
   キャンペーンバナー
   ============================================================ */
.Pd26_BannerSection {
    width: 100%;
    padding: 0;
    margin: -60px 0 80px;
}
.Pd26_BannerSection_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}
.Pd26_BannerSection_Link {
    display: block;
}
.Pd26_BannerSection_Link:not(:first-child) {
    margin: 20px 0 0;
}
.Pd26_BannerSection_Link img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .Pd26_BannerSection {
        margin: -40px 0 40px;
    }
    .Pd26_BannerSection_Inner {
        width: 90%;
        max-width: 800px;
        padding: 24px 0;
    }
    .Pd26_BannerSection_Dummy {
        aspect-ratio: 2 / 1;
        border-radius: 0;
    }
}

/* ============================================================
   タブナビゲーション
   ============================================================ */
.Pd26_TabsNav {
    width: 100%;
    background: #fff;
}
.Pd26_TabsNav_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #d0d0d0;
}
.Pd26_TabsNav_Item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}
.Pd26_TabsNav_Item::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #0041C0;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
}
.Pd26_TabsNav_Item:hover::before {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .Pd26_TabsNav_Item {
        padding: 14px 8px;
        font-size: 15px;
    }
}

/* ============================================================
   主な機能（横並びカード）
   ============================================================ */
.Pd26_Feature {
    width: 100%;
    padding: 80px 0;
}
.Pd26_Feature_Inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.Pd26_Feature_Headline {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 6px;
    line-height: 1.4;
}
.Pd26_Feature_Headline span {
    display: block;
    font-size: 13px;
    color: #8D9096;
    margin-top: 8px;
}
.Pd26_Feature_List {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.Pd26_Feature_Item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}
.Pd26_Feature_Item:last-child {
    border-bottom: none;
}
.Pd26_Feature_Item:nth-child(even) {
    flex-direction: row-reverse;
}
.Pd26_Feature_Item_ImgWrap {
    width: calc((100% - 40px) / 2);
    flex-shrink: 0;
}
.Pd26_Feature_Item_Img {
    width: 100%;
    height: auto;
    display: block;
}
.Pd26_Feature_Item_Body {
    width: calc((100% - 40px) / 2);
}
.Pd26_Feature_Item_Title {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 0 20px;
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
}
.Pd26_Feature_Item_Title::before {
    content: '';
    width: 50px;
    height: 5px;
    background-color: #0041C0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.Pd26_Feature_Item_Title::after {
    content: '';
    width: calc(100% - 60px);
    height: 1px;
    background-color: #ccc;
    position: absolute;
    left: 60px;
    bottom: 2px;
    z-index: 0;
}
.Pd26_Feature_Item_Desc {
    font-size: 16px;
    line-height: 2;
    margin: 0 0 25px;
}
.Pd26_Feature_Item_Link {
    display: inline-block;
    position: relative;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: #0041C0;
    border-radius: 60px;
    padding: 16px 60px;
    text-align: center;
    transition: opacity 0.2s;
}
.Pd26_Feature_Item_Link::after {
    content: "▶";
    font-size: 10px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.Pd26_Feature_Item_Link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .Pd26_Feature {
        padding: 56px 0;
    }
    .Pd26_Feature_Headline {
        font-size: 24px;
        margin-bottom: 36px;
    }
    .Pd26_Feature_Item {
        flex-direction: column;
        gap: 20px;
        padding: 32px 0;
        border: none;
    }
    .Pd26_Feature_Item:first-child {
        padding-top: 0;
    }
    .Pd26_Feature_Item:nth-child(even) {
        flex-direction: column;
    }
    .Pd26_Feature_Item_ImgWrap {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
    .Pd26_Feature_Item_Body {
        width: 100%;
    }
    .Pd26_Feature_Item_Title {
        font-size: 20px;
    }
    .Pd26_Feature_Item_Desc {
        font-size: 14px;
        line-height: 1.7;
    }
    .Pd26_Feature_Item_Link {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ============================================================
   追従購入ボタン
   ============================================================ */
.Pd26_StickyBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    background: rgb(255 255 255 / .9);
    border-top: 1px solid #ccc;
}
.Pd26_StickyBtn_Link {
    display: block;
    position: relative;
    max-width: 354px;
    padding: 18px 48px;
    margin: 0 auto;
    background: #FFC53D;
    border-radius: 36px;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: opacity 0.2s;
}
.Pd26_StickyBtn_Link svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.Pd26_StickyBtn_Link:hover {
    opacity: 0.85;
}
@media screen and (max-width: 768px) {
    .Pd26_StickyBtn {
        padding: 10px;
    }
    .Pd26_StickyBtn_Link {
        max-width: 280px;
        padding: 10px 48px;
        font-size: 16px;
    }
}

/* ============================================================
   utility
   ============================================================ */
@media screen and (min-width: 769px) {
    .only_sp {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .only_pc {
        display: none;
    }
}