/*
Theme Name: Nineestion Theme
Description: Custom theme for 9estion LP
Version: 1.1.23
Author: Your Name
*/

/* リセットとベーススタイル */
html,
body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html {
    overflow-y: auto;
    max-width: 100vw;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
    margin: 0 auto;
}

.job-photo img,
.gallery-card img,
.greeting-photo img,
.hero .container img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    color: #c63876;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 18px;
    line-height: 1.4;
}

h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, #f2a6c7 0%, #c63876 100%);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

.pc_br {
    display: block;
}

.sp_br {
    display: none;
    }

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

/* ヘッダー */
header {
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

header h1 {
    color: #333;
    margin-bottom: 5px;
}

header p {
    color: #666;
}

.site-logo {
    margin-bottom: 0;
}

.site-logo .custom-logo {
    max-height: 80px;
    width: auto;
}

.site-logo .custom-logo-link {
    display: inline-block;
}

.site-logo .custom-logo {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
}

header p {
    font-size: 0.9rem;
}

/* メインセクション */
section {
    padding: 88px 0;
    background-color: #fff !important;
}

section:not(#hero):nth-of-type(odd) {
    background-color: #fff !important;
}

section:not(#hero):nth-of-type(even) {
    background-color: #f9f9f9 !important;
}

.section-alt {
    background-color: #f9f9f9 !important;
}

/* ファーストビュー */
.hero {
    background-color: #c63876;
    color: #fff;
    text-align: center;
    padding: 132px 0 124px;
    overflow: clip;
    pointer-events: none;
}

.hero .container {
    padding-top: 12px;
    padding-bottom: 18px;
    pointer-events: none;
}

.hero-income {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto 22px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
}

.income-line {
    display: block;
}

.hero-accent {
    color: #ffe27c;
}

.hero-accent-soft {
    color: #ffe9f5;
    font-weight: 700;
}

.hero-accent-gold {
    font-size: 1.25em;
}

.js section:not(#hero) {
    padding: 88px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    overflow: clip;
}

.js section:not(#hero).visible {
    opacity: 1;
    transform: translateY(0);
}

.js #hero .hero-animate:not(.cta-button) {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

#hero .cta-button {
    animation: hero-cta-wobble 2.1s ease-in-out 0.3s infinite;
    pointer-events: auto;
}

.hero-income,
.main-copy,
.sub-copy,
.amazon-note {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.hero.has-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h2::after {
    content: none;
}

.main-copy {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.sub-copy {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.amazon-note {
    font-size: 0.9rem;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 14px;
    border-radius: 5px;
}

.cta-button {
    display: table;
    background: linear-gradient(135deg, #2fe06f 0%, #10b552 100%);
    color: #fff;
    padding: 18px 34px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    border: 2px solid rgba(255, 255, 255, 0.72);
    transition: transform 0.2s, filter 0.2s;
    margin: 28px auto 0;
    text-align: center;
    transform-origin: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    animation: cta-bounce 0.72s ease-in-out 1;
}

#hero .cta-button:hover {
    transform: none;
    animation: hero-cta-hover 0.7s ease-in-out infinite;
}

/* キャンペーン */
.campaign {
    background: linear-gradient(180deg, #fff2f8 0%, #fff9fc 100%) !important;
}

.campaign .container {
    max-width: 980px;
}

.campaign-label {
    display: table;
    margin: 0 auto 20px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c63876 0%, #ef7aad 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(198, 56, 118, 0.22);
}

.campaign-lead,
.campaign-note {
    text-align: center;
}

.campaign-lead {
    max-width: 720px;
    margin: 0 auto 32px;
}

.campaign-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.campaign-item {
    padding: 32px 28px;
    background: #fff;
    border: 2px solid rgba(198, 56, 118, 0.2);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(198, 56, 118, 0.12);
    text-align: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.campaign-item::before {
    content: "特典";
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(198, 56, 118, 0.1);
    color: #c63876;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
}

.campaign-item h3 {
    color: #c63876;
    margin-bottom: 12px;
    font-size: 1.32rem;
}

.campaign-item p,
.campaign-note {
    margin-bottom: 0;
}

.campaign-note {
    margin-bottom: 14px;
    font-size: 1.02rem;
    font-weight: 700;
    color: #333;
}

/* 悩み訴求 */
.pain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pain-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: calc(50% - 10px);
    min-width: 250px;
    text-align: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.solution-desc {
    text-align: center;
}

.pain-item h3 {
    color: #c63876;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.5;
}

.pain-item h3::before {
    content: "✔";
    flex: 0 0 auto;
    width: auto;
    height: auto;
    background: none;
    border: 0;
    color: #ffe27c;
    font-size: 1.05em;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.pain-item h3::after {
    content: none;
}

.pain-cta {
    margin-top: 28px;
}

.pain-cta-note {
    margin-top: 18px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333333;
}

/* ドライバー仕事風景ギャラリー */
.photo-gallery {
    background-color: #f9f9f9;
}

.photo-gallery .container {
    max-width: 1200px;
}

.gallery-lead {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.photo-gallery,
.photo-gallery .container,
.photo-gallery .gallery-grid {
    overflow: visible;
}

.gallery-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-card h3 {
    padding: 16px 16px 8px;
    margin: 0;
    font-size: 1.15rem;
    color: #c63876;
}

.gallery-card p {
    padding: 0 16px 16px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 求人内容 */
.job-details .lead {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.income-model .container {
    max-width: 980px;
}

.income-model-list,
.income-case-list {
    display: grid;
    gap: 24px;
}

.income-model-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.income-model-card,
.income-case {
    background: #fff;
    border: 1px solid rgba(198, 56, 118, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    padding: 28px 26px;
}

.income-model-card {
    position: relative;
    padding-top: 76px;
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
    border: 3px solid #c63876;
    box-shadow: 0 16px 30px rgba(198, 56, 118, 0.08);
    text-align: center;
    overflow: visible;
}

.income-model-label,
.income-case-title {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(198, 56, 118, 0.1);
    color: #c63876;
    font-weight: 700;
}

.income-model-label {
    position: absolute;
    top: -3px;
    left: 50%;
    min-width: 190px;
    margin: 0;
    padding: 14px 22px 16px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: linear-gradient(90deg, #c63876 0%, #e76aa1 100%);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 22px rgba(198, 56, 118, 0.16);
}

.income-case-title {
    padding: 0;
    background: none;
    border-radius: 0;
    color: #20253a;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.income-model-value,
.income-case-meta {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.7;
    color: #333;
}

.income-model-value {
    margin-bottom: 0;
    color: #20253a;
    font-size: 1.4rem;
    font-weight: 800;
}

.income-model-value-stack {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.income-model-condition,
.income-model-arrow,
.income-model-amount {
    display: block;
}

.income-model-condition {
    font-size: 1.02rem;
    font-weight: 700;
    color: #333;
}

.income-model-arrow {
    color: #c63876;
    font-size: 1.5rem;
    line-height: 1;
}

.income-model-amount {
    color: #c63876;
    line-height: 1.2;
}

.income-model-amount-label {
    font-size: 1.05rem;
    font-weight: 700;
}

.income-model-amount-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 0 5px;
}

.income-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.income-case {
    background: linear-gradient(180deg, #fffaf2 0%, #fffdf8 100%);
    border: 2px solid rgba(255, 226, 124, 0.7);
    text-align: center;
}

.income-case-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.income-case-person,
.income-case-work,
.income-case-income {
    display: block;
}

.income-case-person {
    color: #333;
}

.income-case-work {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff4bf;
    color: #7c5a00;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.income-case-income {
    color: #c63876;
    font-weight: 800;
    line-height: 1.1;
}

.income-case-income-label {
    font-size: 1.05rem;
    font-weight: 700;
}

.income-case-income-value {
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 0 5px;
}

.income-case-comment {
    margin-bottom: 0;
    line-height: 1.9;
}

.job-details .container {
    max-width: 980px;
}

.job-info {
    background-color: #fff;
    padding: 26px 28px;
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(198, 56, 118, 0.08);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.job-info h3 {
    color: #c63876;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid #c63876;
}

.job-info p {
    margin-bottom: 0;
    line-height: 1.9;
}

/* 解決提案 */
.solution ul {
    text-align: center;
}

.solution li {
    background-color: #fff;
    padding: 28px 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.solution ul,
.solution li {
    opacity: 1;
    transform: none;
}

.solution li h3 {
    color: #c63876;
}

/* 1日の流れ */
.daily-flow .lead {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.daily-flow,
.daily-flow .container,
.daily-flow .flow-steps {
    overflow: visible;
}

.step {
    background-color: #fff;
    padding: 26px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    text-align: center;
    border: 1px solid rgba(198, 56, 118, 0.08);
    transition: opacity 0.7s ease, transform 0.7s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    align-items: center;
    position: relative;
}

.step .time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(198, 56, 118, 0.1);
    color: #c63876;
    font-size: 0.92rem;
    font-weight: bold;
}

.step h3 {
    color: #c63876;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    line-height: 1.35;
}

.step h3::before {
    content: "🕒";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.35;
    transform: translateY(-1px);
}

.step p {
    margin-bottom: 0;
    line-height: 1.8;
    color: #555;
    max-width: 40em;
}

/* 横方向のはみ出しのみ抑制 */
section,
.container,
.job-info,
.company-card,
.photo-gallery,
.gallery-grid,
.flow-steps,
.faq-list {
    min-height: 0;
    max-height: none;
    height: auto;
    overflow-x: hidden;
}

.flow-note {
    margin-top: 28px;
    text-align: center;
    line-height: 1.8;
    font-weight: 700;
    color: #c63876;
}

/* 選ばれる理由 */
.reasons {
    background: linear-gradient(180deg, #fff6fb 0%, #fff 100%);
}

.reason-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.reason-card {
    background: #fff;
    border-top: 4px solid #c63876;
    border-radius: 18px;
    padding: 34px 28px 28px;
    box-shadow: 0 12px 28px rgba(198, 56, 118, 0.08);
    text-align: center;
}

.reason-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e76aa1 0%, #c63876 100%);
    color: #fff;
    font-size: 2rem;
    line-height: 72px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(198, 56, 118, 0.16);
}

.reason-card h3 {
    color: #20253a;
    font-size: 1.25rem;
    line-height: 1.45;
}

.reason-card p {
    margin-bottom: 0;
    line-height: 1.9;
    color: #555;
}

.reason-note {
    margin-top: 34px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #c63876;
}

/* 会社概要 */
.company-profile .container {
    max-width: 980px;
}

.company-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 34px 32px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(198, 56, 118, 0.1);
}

.company-list {
    margin: 0;
}

.company-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.company-row:first-child {
    padding-top: 0;
}

.company-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.company-row dt {
    color: #c63876;
    font-weight: bold;
}

.company-row dd {
    margin: 0;
    line-height: 1.8;
}

/* 代表挨拶 */
.greeting .container {
    max-width: 940px;
}

.greeting-profile {
    display: block;
}

.greeting-photo img {
    width: 100%;
    max-width: 240px;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

.greeting-desc {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 36px 34px 32px;
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
    border: 1px solid rgba(198, 56, 118, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(198, 56, 118, 0.08);
}

.greeting-photo {
    justify-self: center;
    width: 100%;
    grid-column: 1;
    align-self: start;
}

.greeting-copy {
    grid-column: 2;
}

.greeting-desc::before {
    content: "MESSAGE";
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 6px 14px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, #f2a6c7 0%, #c63876 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.greeting-desc p {
    margin-bottom: 18px;
    line-height: 1.95;
    text-align: center;
}

.greeting-desc p:first-of-type {
    margin-top: 0;
}

.greeting-desc p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq,
.faq .container,
.faq .faq-list {
    overflow: visible;
}

.faq-item {
    margin-bottom: 28px;
    transition: opacity 0.7s ease, transform 0.7s ease;
    background: #fff;
    border: 1px solid rgba(198, 56, 118, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    color: #c63876;
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 22px;
    position: relative;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: #c63876;
    font-size: 1.6rem;
    font-weight: 500;
}

.faq-item.is-open summary::after,
.faq-item.is-closing summary::after {
    content: "-";
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-answer > p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    opacity: 0;
    line-height: 1.9;
    color: #555;
    transition: opacity 0.25s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
    opacity: 1;
    padding: 0 22px 22px;
}

/* CTA */
.cta {
    background: linear-gradient(180deg, #fff4f9 0%, #ffe9f3 100%);
    color: #333;
    text-align: center;
}

.cta h2 {
    color: #c63876;
}

.cta h2::after {
    background: linear-gradient(90deg, #f2a6c7 0%, #c63876 100%);
}

.cta-lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.9;
}

.cta-sub {
    margin: 18px 0 10px;
    text-align: center;
    color: #7b4a61;
}

.insta-button {
    display: table;
    background-color: #fff;
    color: #c63876;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 999px;
    margin: 28px auto 0;
    border: 1px solid rgba(198, 56, 118, 0.28);
    box-shadow: 0 8px 18px rgba(198, 56, 118, 0.08);
    transition: transform 0.2s, background-color 0.2s;
    transform-origin: center;
}
a.pp {
    margin-top: 40px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #333;
}

.insta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
    animation: cta-bounce 0.72s ease-in-out 1;
}

.js .pain-item,
.js .campaign-item,
.js .job-info,
.js .step,
.js .gallery-card,
.js .faq-item {
    opacity: 0;
    transform: translateY(28px);
}

.js section.visible .pain-item,
.js section.visible .campaign-item,
.js section.visible .job-info,
.js section.visible .step,
.js section.visible .gallery-card,
.js section.visible .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.js section.visible .pain-item:nth-child(2),
.js section.visible .campaign-item:nth-child(2),
.js section.visible .job-info:nth-of-type(2),
.js section.visible .step:nth-child(2),
.js section.visible .gallery-card:nth-child(2),
.js section.visible .faq-item:nth-child(2) {
    transition-delay: 0.08s;
}

.js section.visible .pain-item:nth-child(3),
.js section.visible .job-info:nth-of-type(3),
.js section.visible .step:nth-child(3),
.js section.visible .gallery-card:nth-child(3),
.js section.visible .faq-item:nth-child(3) {
    transition-delay: 0.16s;
}

.js section.visible .pain-item:nth-child(4),
.js section.visible .job-info:nth-of-type(4),
.js section.visible .step:nth-child(4) {
    transition-delay: 0.24s;
}

.js section.visible .job-info:nth-of-type(5) {
    transition-delay: 0.32s;
}

.js section.visible .job-info:nth-of-type(6) {
    transition-delay: 0.4s;
}

.js section.visible .job-info:nth-of-type(7) {
    transition-delay: 0.48s;
}

@keyframes cta-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-4px);
    }
    45% {
        transform: translateY(-1px);
    }
    70% {
        transform: translateY(0);
    }
}

@keyframes hero-cta-wobble {
    0% {
        transform: scaleX(1);
    }
    12% {
        transform: scaleX(1.08);
    }
    24% {
        transform: scaleX(0.97);
    }
    36% {
        transform: scaleX(1.05);
    }
    48% {
        transform: scaleX(0.99);
    }
    60%,
    100% {
        transform: scaleX(1);
    }
}

@keyframes hero-cta-hover {
    0%,
    100% {
        transform: scaleX(1);
    }
    18% {
        transform: scaleX(1.12);
    }
    36% {
        transform: scaleX(0.96);
    }
    54% {
        transform: scaleX(1.08);
    }
    72% {
        transform: scaleX(0.98);
    }
}

/* フッター */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 10px;
}
