@charset "utf-8";

/* ================================================= */
/* 1. Reset & Base Settings (destyle.css + Custom) */
/* ================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");

*, ::before, ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    margin: 0;
    background-color: #fff;
    color: #333;
    font-family: "Noto Sans JP", 'メイリオ', Meiryo, sans-serif !important;
    font-weight: 400;
}

@media screen and (min-width:961px) {
    body { font-size: 15px; }
}

main { display: block; }
img, svg, iframe { vertical-align: bottom; max-width: 100%; }
a { text-decoration: none; color: inherit; background-color: transparent; }
button { cursor: pointer; -webkit-appearance: none; appearance: none; background: none; }

/* ================================================= */
/* 2. Layout (Header , Common Wrapper) */
/* ================================================= */
header {
    background-color: #182d7c;
    padding: 8px;
}


.njLpWrap {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
}

.custom-width {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (min-width:961px) {
    .njLpWrap { margin-top: 80px; }
}

.target-products-header {
    background-color: var(--vaio-blue) !important;
    border-color: var(--vaio-blue) !important;
    color: #ffffff !important;
    padding: 25px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 100px;
}

.target-products-header .main-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.target-products-header .sub-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 767px) {
    .target-products-header .main-title {
        font-size: 1.1rem;
    }
    .target-products-header .sub-text {
        font-size: 0.75rem;
    }
    .vaio-card {
        padding: 20px;
    }
}


/* ================================================= */
/* 3. VAIO Custom Styles (追記分) */
/* ================================================= */

:root {
    --vaio-blue: #002D5E; /* VAIO勝色 */
}

/* ヒーローセクション */
.vaio-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541807084-5c52b6b3adef?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-sub { letter-spacing: 0.3em; font-size: 0.9rem; margin-bottom: 10px; }
.hero-title { font-size: 2.5rem; font-weight: bold; }

.vaio-padding { padding: 20px 0; }

.vaio-card {
    background: #fff;
    padding: 30px;
    border-top: 4px solid #002D5E;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.card-label { color: #bbb; font-style: italic; font-size: 0.8rem; margin-bottom: 10px; display: block; }

.vaio-video-box {
    background-color: #002D5E;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.vaio-quality-card {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
}

.vaio-quality-card .card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

.shorts-container {
    position: relative;
    width: 100%;
    padding-top: 177.77%; 
    background-color: #000;
    overflow: hidden;
}

.shorts-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.vaio-quality-card {
    transition: all 0.3s ease;
}


@media screen and (min-width: 576px) and (max-width: 767px) {
    .vaio-quality-grid .col-md-4 {
        width: 50%;
    }
}

.italic { font-style: italic; }

.vaio-series-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.vaio-series-card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc; 
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03); 
}

.vaio-series-link:hover .vaio-series-card {
    border-color: var(--kachiiro) !important; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.vaio-series-card .view-more {
    color: var(--kachiiro);
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: auto; 
}

@media screen and (max-width: 767px) {
    .vaio-series-card {
        padding: 25px;
    }
    .vaio-series-card h3 {
        font-size: 1.1rem;
    }
}




/* ページトップボタン */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#pageTop a {
    display: block;
    z-index: 999;
    padding: 8px;
    border-radius: 60px;
    width: 70px;
    height: 70px;
    background-color: #9FD6D2;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}

body footer.mt-5 {
    background-color: #182d7c !important;
    color: #ffffff !important;
    border: none !important;
    display: block !important;
    margin: 0 calc(50% - 50vw) 0 !important;
    padding: 0 !important;
    clear: both !important;
}

body footer.mt-5 div {
    background-color: transparent !important;
    border: none !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

body footer.mt-5 small {
    font-weight: normal !important;
    border: none !important;
    color: #fff !important;
}