@charset "UTF-8";

/**
 * monitor/style.css
 * スタートモニター募集ページ専用スタイル
 */

/*--------------------------------------------------
  Page Hero
--------------------------------------------------*/
.page-hero {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F1E9 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.page-title {
    font-size: 3rem;
    color: var(--text-main);
    font-family: 'Noto Serif JP', serif;
    line-height: 1.3;
}

/*--------------------------------------------------
  Monitor Intro
--------------------------------------------------*/
.monitor-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.monitor-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.large-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-main);
    margin: 30px 0;
    font-family: 'Noto Serif JP', serif;
}

/*--------------------------------------------------
  Offer Section (特典料金)
--------------------------------------------------*/
.offer-box {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
    text-align: center;
    margin-top: 50px;
}

.offer-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Noto Serif JP', serif;
}

.price-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.price-card-item {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(138, 176, 158, 0.15);
    transition: transform 0.3s;
}

.price-card-item:hover {
    transform: translateY(-5px);
}

.price-card-item h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-family: 'Noto Serif JP', serif;
}

.price-value-box {
    margin: 20px 0;
}

.price-old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #a0958d;
    display: block;
    margin-bottom: 5px;
}

.price-new {
    font-size: 2.2rem;
    font-weight: bold;
    color: #c65e28; /* アクセントのあるオレンジブラウン */
    font-family: 'Outfit', sans-serif;
}

.price-new small {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: normal;
    margin-left: 3px;
}

.price-desc-text {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.5;
}

/*--------------------------------------------------
  Conditions (応募条件)
--------------------------------------------------*/
.condition-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.condition-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 45px;
}

.condition-item {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
}

.condition-check-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.condition-body h4 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--text-main);
    font-family: 'Noto Serif JP', serif;
}

.condition-body p {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin: 0;
    line-height: 1.6;
}

.line-btn-inline {
    margin-top: 12px;
}

.btn-line-small-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(6, 199, 85, 0.2);
    transition: all 0.3s ease;
}

.btn-line-small-inline:hover {
    background: #05b24c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.35);
}

.btn-line-small-inline svg {
    display: block;
}

/*--------------------------------------------------
  Hero Split Layout & Layered Mockups
--------------------------------------------------*/
.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
}

.hero-text-col {
    flex: 1;
    max-width: 550px;
}

.hero-image-col {
    flex: 1;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin: 25px 0 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-actions .btn-main {
    box-shadow: 0 10px 25px rgba(138, 176, 158, 0.3);
}

/* Layered Mockups */
.layered-mockups {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 380px;
}

.mockup-item {
    position: absolute;
    width: 330px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0.4s, box-shadow 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.mockup-salon {
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-3deg);
}

.mockup-fortune {
    top: 40px;
    right: 0;
    z-index: 2;
    transform: rotate(3deg);
}

.mockup-cafe {
    bottom: 0;
    left: 80px;
    z-index: 3;
    transform: rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Hover Zoom & Pull to Front */
.mockup-item:hover {
    z-index: 10;
    transform: scale(1.06) translateY(-8px) rotate(0deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

/* Browser Frame Chrome Simulation */
.browser-frame {
    border: 1px solid rgba(0,0,0,0.08);
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
}

.chrome-header {
    background: #eef2f5;
    padding: 5px 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-end;
}

.chrome-tabs {
    display: flex;
    align-items: center;
    gap: 3px;
}

.chrome-tab {
    background: rgba(0, 0, 0, 0.03);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    width: 35px;
    height: 10px;
    border: 1px solid transparent;
    border-bottom: none;
}

.chrome-tab.active {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.chrome-tab-add {
    color: #8a9097;
    font-size: 0.65rem;
    padding: 0 2px;
    cursor: default;
    user-select: none;
    line-height: 1;
    margin-bottom: 1px;
}

.browser-frame img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/*--------------------------------------------------
  Responsive
--------------------------------------------------*/

/* 【TB】 1024px 以下 */
@media screen and (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }

    .offer-box {
        padding: 40px 30px;
    }

    .price-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-split-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-text-col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-col {
        height: 380px;
        width: 100%;
    }

    .layered-mockups {
        margin: 0 auto;
    }
}

/* 【SM】 768px 以下 */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 100px 0 80px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .condition-item {
        padding: 25px;
        gap: 15px;
    }
}

/* 【SP】 479px 以下 */
@media screen and (max-width: 479px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .price-new {
        font-size: 1.8rem;
    }

    .condition-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-actions .btn-main,
    .hero-actions .btn-sub {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .layered-mockups {
        width: 100%;
        max-width: 320px;
        height: 280px;
    }

    .mockup-item {
        width: 200px;
    }

    .browser-frame img {
        height: 125px;
    }

    .mockup-salon {
        top: 0;
        left: 0;
    }

    .mockup-fortune {
        top: 30px;
        right: 0;
    }

    .mockup-cafe {
        bottom: 0;
        left: 40px;
    }
}
