@charset "UTF-8";
/*
Theme Name: Microcopy LP Theme
Author: Gemini
Version: 1.0.0
*/

/* -------------------------------------------
   Reset & Base
------------------------------------------- */
:root {
    --main-blue: #0966f4;
    --dark-blue: #0b1644;
    --accent-orange: #f39c12; /* 元のデザインに合わせ調整 */
    --accent-yellow: #f1c40f;
    --text-color: #333333;
    --bg-gray: #f7f8fb;
    --font-sans: "Noto Sans JP", sans-serif;
    --font-serif: "Noto Serif JP", serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.text-center { text-align: center; }
.pc-only { display: block; }
.sp-only { display: none; }

@media screen and (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: block; }
}

/* -------------------------------------------
   Header
------------------------------------------- */
.header-bar {
    background: linear-gradient(90deg, #748efe, #4284f3);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 100;
}
.header-bar:hover {
    background: linear-gradient(90deg, #8097ff, #5a95f5);
}

/* Animation */
.fadeInUp {
    animation: fadeInUpAni 0.8s forwards;
}
@keyframes fadeInUpAni {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------
   FV (Hero Section)
------------------------------------------- */
.fv-section {
    background-color: var(--bg-gray);
    padding-bottom: 40px;
    overflow: hidden;
}

.fv-bg {
    /* 背景画像をアップロードしてここにパスを指定 */
    background-image: url('images/hero-bg.png'); 
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-bottom: 60px;
}

.fv-heading {
    text-align: center;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

.fv-sub-catch {
    font-size: 24px;
    display: inline-block;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fv-main-catch {
    font-size: 56px;
    background: linear-gradient(82.04deg, #0766f4 -6.93%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.fv-impact-text {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

/* Icon List */
.fv-icon-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.fv-icon-item {
    font-size: 14px;
    padding: 4px 12px;
    border: 1px solid rgba(0,0,0,0.6);
    border-radius: 4px;
    font-weight: 500;
    background: rgba(255,255,255,0.8);
}

/* FV Offer Box */
.fv-offer-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 20px;
}

.offer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.offer-img img {
    max-width: 250px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
}

.offer-heading {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--dark-blue);
}

.offer-heading .highlight {
    color: var(--main-blue);
    font-size: 1.3em;
}

/* SP Responsive for FV */
@media screen and (max-width: 768px) {
    .fv-sub-catch { font-size: 16px; }
    .fv-main-catch { font-size: 32px; }
    .offer-flex { flex-direction: column; }
    .offer-img img { max-width: 180px; }
    .offer-heading { font-size: 20px; text-align: center; }
}

/* Arrow */
.arrow-bottom {
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #ccc;
    border-right: 4px solid #ccc;
    transform: rotate(45deg);
    margin: 30px auto 0;
    animation: shake 2s infinite;
}
@keyframes shake {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* -------------------------------------------
   Infinity Scroll
------------------------------------------- */
.infinity-scroll-section {
    background: #d3d3d3;
    padding: 20px 0;
    overflow: hidden;
}
.scroll-infinity__wrap { display: flex; }
.scroll-infinity__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear;
}
.scroll-infinity__item {
    padding: 0 30px;
    width: 200px; /* Adjust based on logo size */
}
.scroll-infinity__item img {
    width: 100%;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: 0.3s;
}
.scroll-infinity__item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes infinity-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* -------------------------------------------
   Sections Common
------------------------------------------- */
.section-gray { background-color: var(--bg-gray); padding: 60px 0; }
.section-white { background-color: #fff; padding: 60px 0; }

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
    color: var(--dark-blue);
}
.section-title-sub {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-blue);
    margin-bottom: 20px;
}
.section-lead {
    font-size: 18px;
    text-align: center;
}
.marker-blue {
    background: linear-gradient(transparent 60%, #a8dbf8 60%);
}
.spacer-50 { height: 50px; }

/* Problems Box */
.problems-box {
    background: #fff;
    border: 2px solid #ddd;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.problems-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: #ddd;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.check-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 1.5em;
    position: relative;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}
.check-list li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-blue);
    position: absolute;
    left: 0;
    top: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.feature-num {
    font-size: 40px;
    font-family: "Century Gothic", sans-serif;
    color: var(--main-blue);
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--main-blue);
    display: inline-block;
}
.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 15px;
    text-align: left;
}

/* CTA Main */
.section-cta-main {
    padding: 60px 0 100px;
}
.cta-card {
    background: linear-gradient(135deg, #0966f4, #0b1644);
    color: white;
    border-radius: 15px;
    padding: 5px; /* Border like effect */
    box-shadow: 0 15px 40px rgba(9, 102, 244, 0.3);
}
.cta-header {
    text-align: center;
    padding: 30px 20px 10px;
}
.cta-title {
    color: #fff;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.cta-big {
    font-size: 32px;
    color: var(--accent-yellow);
    display: block;
    margin-top: 10px;
}
.cta-body {
    background: #fff;
    color: #333;
    border-radius: 0 0 12px 12px;
    padding: 40px;
}
.cta-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.cta-img-col img {
    max-width: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.cta-lead {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Form Styles */
.optin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.optin-form input[type="email"] {
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}
.btn-submit, .btn-cta, .btn-floating {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background: linear-gradient(to bottom, #f39c12, #d35400);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 0 #a04000;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.btn-submit:hover, .btn-cta:hover, .btn-floating:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #a04000;
    opacity: 1;
}
.cta-privacy {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .cta-flex { flex-direction: column; }
    .cta-big { font-size: 24px; }
}

/* Floating Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 300px;
}
.btn-floating {
    font-size: 16px;
    padding: 15px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    box-shadow: 0 4px 0 #1f618d;
}
.btn-floating:hover {
    box-shadow: 0 2px 0 #1f618d;
}
@media screen and (max-width: 500px) {
    .floating-cta {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
    }
}

/* Footer */
.site-footer {
    background: #333;
    color: #ccc;
    padding: 30px 0 80px; /* space for floating btn */
    text-align: center;
    font-size: 12px;
}
.footer-links a {
    margin: 0 10px;
    color: #fff;
}
.copyright { margin-top: 20px; }