/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ローディング画面 */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 300px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

body.loaded-page .loading-screen {
    opacity: 0;
    visibility: hidden;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    opacity: 0;
}

.loaded-page .animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

.loaded-page .hero-badge.animate-fade {
    animation-delay: 0.2s;
}

.loaded-page h1.animate-fade {
    animation-delay: 0.5s;
}

.loaded-page .hero-subtitle.animate-fade {
    animation-delay: 0.8s;
}

.loaded-page .logo.animate-fade {
    animation-delay: 1.1s;
}

.loaded-page .cta-button.animate-fade {
    animation-delay: 1.4s;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

/* ヘッダーとロゴ用のスタイル */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    z-index: 1000;
}

.header-logo {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
}


.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 79, 114, 0.3); /* ネイビーブルーの半透明オーバーレイ */
}

.hero-badge {
    background-color: #fff;
    color: #1B4F72;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
}

.repraise-logo {
    max-width: 300px;
    height: auto;
}

/* CTAボタン */
.cta-container {
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #FF6B35; /* オレンジ */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E55A2B; /* ホバー時の暗いオレンジ */
}

/* レスポンシブ対応 */

/* スマートフォン用の改行 */
.sp-only {
    display: none;
}


/* セクション共通 */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* セクション1 */
.section-1 {
    background-color: #f8f9fa;
}

.pain-points {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pain-point {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pain-point-icon {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pain-point:hover .pain-point-icon {
    transform: scale(1.1);
}

.pain-point-icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.pain-point p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

.solution-message {
    text-align: center;
    margin: 3rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1B4F72;
}

.solution-quote {
    font-size: 1.2rem;
    color: #FF6B35;
    margin-top: 1.5rem;
    font-weight: 600;
}

.features {
    max-width: 1000px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.feature-item:hover .feature-icon-container {
    transform: scale(1.05);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-img {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #1B4F72;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* レスポンシブ対応 */


/* セクション2 */
.section-2 {
    background-color: #fff;
}

.section-2-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-2-text {
    text-align: center;
    margin-bottom: 3rem;
}

.section-2-quote {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1B4F72;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.section-2-intro {
    font-size: 1.2rem;
    color: #333;
    margin-top: 2rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: #f4f9fb;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.card-icon img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.section-2-message {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #FF6B35;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-2-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-2-note p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* レスポンシブ対応 */


/* セクション3 */
.section-3 {
    background-color: #f8f9fa;
}

.secrets-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.secret-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.secret-icon {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    margin-right: 2rem;
}

.secret-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.secret-content {
    flex-grow: 1;
}

.secret-content h3 {
    font-size: 1.4rem;
    color: #1B4F72;
    margin-bottom: 1rem;
}

.secret-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */

/* PCのみの改行 */
.pc-only {
    display: inline;
}


/* セクション4 */
.section-4 {
    background-color: #fff;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    margin-bottom: 1.5rem;
}

.company-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-info {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: #1B4F72;
    opacity: 0.2;
    font-family: serif;
}

.quote {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* セクション5 */
.section-5 {
    background-color: #f8f9fa;
}

.process-flow {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1B4F72;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.process-arrow {
    text-align: center;
    margin: 1rem 0;
}

.arrow-icon {
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

/* レスポンシブ対応 */

/* セクション6 */
.section-6 {
    background-color: #fff;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4F72;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 48%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

.pricing-cta {
    text-align: center;
}

/* レスポンシブ対応 */

/* セクション7 */
.section-7 {
    background-color: #f8f9fa;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.portfolio-price {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.instagram-portfolio {
    margin-top: 4rem;
}

.instagram-title {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.instagram-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.instagram-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.instagram-info {
    padding: 1.5rem;
}

.instagram-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.instagram-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* セクション8 */
.section-8 {
    background-color: #fff;
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #1B4F72;
    color: #fff;
    font-weight: 700;
}

.header-cell {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell.text {
    text-align: left;
    border-right: 1px solid #e9ecef;
}

.comparison-cell.highlight {
    background-color: rgba(27, 79, 114, 0.1);
    color: #1B4F72;
    font-weight: 700;
    font-size: 1.5rem;
}

.comparison-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */


/* セクション9 */
.section-9 {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #1B4F72;
    font-weight: 700;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding: 1.5rem;
    margin: 0;
}

/* レスポンシブ対応 */

/* セクション10 */
.section-10 {
    background-color: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* 問い合わせ方法が1つの場合のスタイル */
.contact-methods.single-method {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    text-align: center;
}

.contact-method h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    background-color: #1B4F72;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #16405d;
}

.contact-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* フッター */
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo .repraise-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0.3rem 0;
    color: #fff;
}

.company-name, .address {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact {
    margin: 1rem 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF6B35;
}

.footer-slogan {
    font-style: italic;
    margin-top: 1rem !important;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* レスポンシブ対応 */

/* セクション6：料金表 */
.section-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.option-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.option-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.option-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.option-price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.meo-plan {
    margin-bottom: 40px;
}

.meo-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.meo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meo-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.meo-price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.pricing-note {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* グラフィック制作とInstagram制作 */
.graphics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.graphics-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.graphics-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.graphics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.graphics-price {
    font-weight: 700;
}

.instagram-service {
    margin-bottom: 40px;
}

.instagram-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.instagram-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instagram-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.instagram-price {
    font-weight: 700;
}



/* メディアクエリを統合 */
@media (max-width: 768px) {
    /* ヘッダー */
    .header {
        padding: 10px 20px;
    }
    
    /* ヒーローセクション */
    .hero .container {
        padding: 0;
    }
    .hero h1 {
        font-size: 2rem;
        padding: 8px 15px;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 4px 10px;
    }
    .hero-badge {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .repraise-logo {
        max-width: 150px;
    }
    
    /* 表示制御 */
    .sp-only {
        display: inline;
    }
    .pc-only {
        display: none;
    }
    
    /* セクション共通 */
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* セクション1 */
    .pain-point {
        padding: 1.5rem;
    }
    .pain-point p {
        font-size: 1rem;
    }
    .solution-message {
        font-size: 1.1rem;
        margin: 2rem 0;
    }
    .solution-quote {
        font-size: 1rem;
    }
    .features-title {
        font-size: 1.5rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-item {
        padding: 1.5rem;
    }
    .feature-icon-container {
        height: 150px;
    }
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    /* セクション2 */
    .section-2-quote {
        font-size: 1.2rem;
    }
    .section-2-intro {
        font-size: 1.1rem;
    }
    .features-grid {
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .card-icon {
        height: 150px;
    }
    .card-icon img {
        width: 60%;
    }
    .feature-card h3 {
        font-size: 1.1rem;
    }
    .feature-description {
        font-size: 0.85rem;
    }
    .section-2-message {
        font-size: 1.1rem;
    }
    .section-2-note p {
        font-size: 1rem;
    }
    
    /* セクション3 */
    .secret-item {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    .secret-icon {
        margin: 0 auto 1.5rem;
        width: 100%;
    }
    .secret-content h3 {
        font-size: 1.2rem;
    }
    .secret-content p {
        font-size: 1rem;
    }
    
    /* セクション4 */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .company-info h3 {
        font-size: 1.2rem;
    }
    .quote {
        font-size: 1rem;
    }
    
    /* セクション5 */
    .process-step {
        padding: 1.5rem;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    .step-content h3 {
        font-size: 1.1rem;
    }
    .step-content p {
        font-size: 0.9rem;
    }
    .arrow-icon {
        width: 25px;
        height: 25px;
    }
    
    /* セクション6 */
    .pricing-card {
        padding: 2rem;
    }
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    .amount {
        font-size: 2rem;
    }
    .pricing-features {
        flex-direction: column;
    }
    .pricing-features ul {
        width: 100%;
    }
    .pricing-features ul:last-child {
        margin-bottom: 0;
    }
    .pricing-features li {
        font-size: 1rem;
    }
    
    /* セクション7 */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portfolio-image {
        height: 180px;
    }
    .instagram-image {
        height: 200px;
    }
    .instagram-title {
        font-size: 1.5rem;
    }
    
    /* セクション8 */
    .comparison-header {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .header-cell {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
    .comparison-cell {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .comparison-cell.highlight {        color: #1B4F72;
        font-size: 1.3rem;
    }
    
    /* セクション9 */
    .faq-question {
        padding: 1.2rem;
    }
    .faq-question h3 {
        font-size: 1.1rem;
    }
    .faq-toggle {
        font-size: 1.3rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* セクション10 */
    .contact-info {
        padding: 2rem;
    }
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-methods.single-method {
        max-width: 100%;
    }
    .contact-method h3 {
        font-size: 1.2rem;
    }
    .contact-button {
        padding: 0.8rem 1.5rem;
    }
    
    /* フッター */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-info {
        text-align: center;
        margin: 0 auto;
    }
    .footer-contact {
        margin: 0.8rem 0;
    }
    .footer-slogan {
        margin-top: 1.2rem !important;
        font-size: 1rem;
    }
    .footer-logo {
        margin: 0 auto;
    }
    
    /* 料金表 */
    .section-subtitle {
        font-size: 20px;
        margin: 30px 0 15px;
    }
    .options-grid {
        grid-template-columns: 1fr;
    }
    .option-content h4 {
        font-size: 16px;
    }
    .option-price {
        font-size: 20px;
    }
    .meo-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* グラフィック制作とInstagram制作 */
    .graphics-grid {
        grid-template-columns: 1fr;
    }
    .graphics-row,
    .instagram-row {
        font-size: 14px;
    }
}

/* スマートフォン向けメディアクエリ */
@media (max-width: 480px) {
    /* セクション1 */
    .feature-icon-container {
        height: 120px;
    }
    .pain-point {
        flex-direction: column;
        text-align: center;
    }
    .pain-point-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
        height: auto;
    }
    
    /* セクション2 */
    .features-grid {
        grid-template-columns: 1fr;
    }
    .card-icon {
        height: 180px;
    }
    .section-2-note p {
        font-size: 0.95rem;
    }
    
    /* セクション8 */
    .comparison-header {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .header-cell {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .comparison-cell {
        padding: 0.8rem;
        font-size: 0.8rem;
        min-height: 60px;
    }
    .comparison-cell.highlight {        color: #1B4F72;
        font-size: 1.1rem;
    }
    
    /* 料金表 */
    .section-subtitle {
        font-size: 18px;
    }
    .option-content h4 {
        font-size: 15px;
    }
    .option-price {
        font-size: 18px;
    }
    
    /* グラフィック制作とInstagram制作 */
    .graphics-row,
    .instagram-row {
        font-size: 13px;
    }
}

/* Contact Form 7のスタイル */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* 送信中のスピナーアニメーションのカスタマイズ */
.wpcf7 .wpcf7-spinner {
    position: absolute;
    right: 50%;
    margin-top: 10px;
    transform: translateX(50%);
    background-color: #FF6B35;
    opacity: 0.75;
}

/* スピナーが表示されている間はボタンのスタイルを変更しない */
.wpcf7 .wpcf7-submit.submitting {
    opacity: 0.7;
    cursor: wait;
}

/* ローディング画面と競合しないようにする */
.wpcf7 .submitting + .loading-screen,
.wpcf7 .submitting ~ .loading-screen {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative; /* スピナーの位置決めのため */
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    text-align: left;
}

/* 必須ラベルのスタイル */
.wpcf7-form .req {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    font-weight: 700;
}

/* 任意ラベルのスタイル */
.wpcf7-form .any {
    color: #888;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    font-weight: 400;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus {
    outline: none;
    border-color: #1B4F72;
}

.wpcf7-form .wpcf7-textarea {
    height: 150px;
}

/* ラジオボタンのスタイル改善 */
.wpcf7-radio {
    display: flex;
    gap: 1.5rem;
}

.wpcf7-radio .wpcf7-list-item {
    margin: 0;
}

.wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wpcf7-radio input[type="radio"] {
    margin-right: 0.5rem;
}

/* スパム対策のスタイル改善 */
.wpcf7-quiz-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wpcf7-form .wpcf7-submit {
    display: inline-block;
    background-color: #FF6B35; /* オレンジ */
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto 0;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #E55A2B; /* ホバー時の暗いオレンジ */
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: left;
}

.wpcf7-response-output {
    margin: 2rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-align: center;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #dc3232;
    background-color: rgba(220, 50, 50, 0.1);
}

.wpcf7-mail-sent-ok {
    border: 2px solid #46b450;
    background-color: rgba(70, 180, 80, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .wpcf7 {
        max-width: 100%;
    }
    
    .wpcf7-form .wpcf7-text,
    .wpcf7-form .wpcf7-textarea {
        padding: 10px;
        font-size: 15px;
    }
    
    .wpcf7-form .wpcf7-submit {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .wpcf7-radio {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Contact Form 7の追加スタイル - レイアウト調整 */
.contact-method .wpcf7 {
    margin-bottom: 1rem;
}