/* ==========================================
   合同会社GCs ウェブサイト スタイルシート
   イメージカラー: rgb(255, 218, 81)
   ========================================== */

/* ==========================================
   リセット & 基本設定
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(255, 218, 81);
    --primary-dark: rgb(230, 190, 50);
    --primary-light: rgb(255, 230, 120);
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --back-color:#F8F6ED;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--back-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}
.flexbox{
    display: flex;
    justify-content: center;
    align-items: center;
}
    .sp{
        display: none !important;
    }
    .pc{
        display: block !important;
    }

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

/* ==========================================
   ナビゲーション
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px var(--shadow-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.contact-btn {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-link.contact-btn::after {
    display: none;
}

.nav-link.contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 218, 81, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
    position: relative;
    min-height: 70vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%); */
    padding-top: 80px;
    img{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        right: 0;
        z-index: -1;
        object-fit: cover;
        object-position: center;
    }
}

.hero-bg-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11rem;
    font-weight: 900;
    color: var(--bg-white);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    letter-spacing: -5px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    .hero-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
        text-align: left;
        .hero-title-main {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            color:var(--bg-white);
            letter-spacing: 3px;
            text-shadow: 1px 1px 10px rgb(0 0 0 / 100%);
        }
        .hero-title-sub {
            font-size: clamp(36px, 7vw, 72px);
            font-weight: 900;
            color: var(--bg-white);
            background-clip: text;
            letter-spacing: 3px;
            text-shadow: 1px 1px 10px rgb(0 0 0 / 100%);
        }
    }
}





.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: var(--text-light);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================
   swiper
   ========================================== */
.top-slider{
    padding: 0;
    .swiper1{
        .swiper-wrapper{
            .swiper-slide{
                img{
                    object-fit: cover;
                    width: 100%;
                    border-radius: 20px;
                    aspect-ratio: 4 / 3;
                }
            }
        }
    }
}
@media(max-width:480px){
.top-slider{
    .swiper1{
        .swiper-wrapper{
            .swiper-slide{
                    width: 100% !important;
                    margin-right: 10px !important;
                    
            }
        }
    }
}
}
/* ページネーション */
.swiper2{
    .swiper-pagination{
        top: 0;
        height: 10%;
        .pagenation-wrapper {
            position: relative;
            font-family: 'Montserrat', sans-serif;
            font-size: 30px;  
            letter-spacing: 2px;  
            margin: 10px;
            height: 100%;
            font-weight: 700;
            color: white;
            top: 20px;
            left: 20px;
        }
    }
        
}

.swiper-pagination-current {
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #ff8a3d; /* 文字色 */
}
.divide {
  position: absolute;
    left: 27px;
    bottom: 14px;
}
.swiper-pagination-total {
  position: absolute;
  left: 40px;
  bottom: 0;
}
/* ==========================================
   ボタン
   ========================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(255, 218, 81, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 218, 81, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   セクション共通
   ========================================== */
section {
    position: relative;
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

/* ==========================================
   代表挨拶セクション
   ========================================== */
.about {
    background-color: var(--bg-light);
    .container{
        width: 80%;
        margin: 0 auto;
        
        .about-content{
            .about-image{
                .about-image-placeholder{
                    img{
                            object-fit: cover;
                            height: 100%;
                            border-radius: 20px;
                        }
                }
            }
        }
    }
    @media (max-width: 480px) {
        .container{
        width: 95%;
        }
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.about-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 2;
}
/* ==========================================
   About-us
   ========================================== */
.about-us{
    .container{
        .abouto-content{
            .about-text{
                width: 80%;
                margin: 0 auto 50px auto;
             
                .section-subtitle{
                    margin-bottom: 0;
                    text-align: start;
                }
                .section-title{
                    margin-bottom: 0;
                }
            }
               @media (max-width: 480px) {
                    .about-text{
                        width: 95%;
                    }
                }
            .about-image{
                width: 90%;
                margin: 0 auto;
                max-width: 1500px;
                .about-image-placeholder{
                    width: 100%;
                    align-items: flex-start;
                    aspect-ratio: auto;
                    background: none;
                    justify-content: left;
                    border-radius: 20px;
                    .about-image-text{
                        color: black;
                        background-color: var(--primary-color);
                        border-radius: 20px;
                        height: auto;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                            img{
                                width: 100%;
                                aspect-ratio: 3 / 2;
                                object-fit: cover;
                                border-radius: 20px 20px 0 0;
                                margin-bottom: 15px;
                            }
                        .about-image-text-box{
                            height: 380px;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            h3{
                                font-size: clamp(1rem, 7vw, 3rem);
                                margin-bottom: 10px;
                                line-height: 1;
                                padding: 0 1rem;
                                text-align: center;
                            }
                            h4{
                                font-size: clamp(0.8rem, 5vw, 1.4rem);
                                margin-bottom: 15px;
                                line-height: 1;
                                padding: 0 1rem;
                            }
                            P{
                                font-size: clamp(0.8rem, 3vw, 1rem);
                                padding: 0 1rem 1rem 1rem;
                                line-height: 1.5;
                            }
                        }
                        @media(min-width:1200px){
                            .about-image-text-box{
                                height: 500px;
                            }
                        }
                    }                    
                }
            }
               @media (max-width: 480px) {
                    .about-image{
                        width: 100%;
                        .about-image-placeholder{
                            .about-image-text{                           
                                .about-image-text-box{
                                    height: 300px;
                                    h4{
                                        margin-bottom: 0;
                                    }
                                    p{
                                        line-height: 1.5;
                                    } 
                                    }
                            }
                        }
                    }
                }
        }
    }
    .swiper-button-next,.swiper-button-prev{
            color: black;
            background-color: white;
            border-radius: 50%;
            padding: 0.7rem;
            top: 100%;
            width: 50px;
            height: 50px;
        }
        .swiper-button-next{
            right: calc(49% - 50px);
        }
        .swiper-button-prev{
            left: calc(49% - 50px);
        }
    @media(min-width:1200px){
        .swiper-button-next,.swiper-button-prev{
            display: none;
        }
    }
    @media(min-width:769px){
        .swiper-button-next,.swiper-button-prev{
            top:95%;
        }
    }
    @media(max-width:480px){
        .swiper-button-next,.swiper-button-prev{
            display: none;
        }
    }
}

/* ==========================================
   事業内容セクション
   ========================================== */
.services {
    position: relative;
    .container {
        width: 90%;
        }
    .services-bg-text {
        position: absolute;
        z-index: -10;
        top: 80%;
        width: 100%;
        text-align: center;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        font-size: clamp(100px, 20vw, 300px);
        font-weight: 900;
        color: rgb(0 0 0 / 17%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
    }
    .about-description{
        text-align: center;
        font-size: 1.3rem;
        width: 60%;
        margin: 0 auto;
    }
}

.service-main {
    margin: 80px 0;
    padding: 60px;
    background-color:rgb(255 255 255);
    background-blend-mode:lighten;
    background-size: cover;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 218, 81, 0.3);
    .service-main-icon{
        .fa-microphone:before {
            color: black;
        }
    }
}

.service-main-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-main-badge {
    display: inline-block;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--bg-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.service-main-icon {
    font-size: 80px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-main-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 40px;
}

.service-main-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.service-main-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-main-features i {
    font-size: 20px;
    color: var(--text-dark);
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.service-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    text-align: left;
    padding-left: 20px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 14px;
}

.service-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ==========================================
   実績セクション (WORKS)
   ========================================== */
.works {
    background-color: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.work-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.work-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.5);
}

.work-content {
    padding: 30px;
}

.work-category {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.work-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.work-date {
    font-size: 13px;
    color: var(--text-light);
}

.works-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 218, 81, 0.1);
    border-radius: 10px;
}

.works-note p {
    color: var(--text-gray);
    font-size: 14px;
}

.works-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ==========================================
   SNSセクション
   ========================================== */
.sns {
    position: relative;
    .sns-bg-text {
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: -10;
        top: 240%;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        font-size: clamp(100px, 20vw, 300px);
        font-weight: 900;
        color: rgb(0 0 0 / 17%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
}
    .container{
        #youtube-latest-videos{
            display: flex;
            width: 95%;
            margin: 0 auto 3rem auto;
            gap: 3rem;
            .youtube-video-item{
                width: calc((100% / 5) - 2rem);
            }
        }
        .youtube-thumbnail{
            width: 70%;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
            iframe{
                width: 100%;
                height: 100%;
            }
        }
        .youtube-link{
            display: block;
            width: 60%;
            margin: 2rem auto 0 auto;
            a{
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 1rem;
            }
        }
        
@media (max-width: 480px) {
        .youtube-thumbnail{
            width: 100%;
            margin: 0 auto;
        }
        .youtube-area{
            display: none;
        }
        .youtube-link{
            width: 90%;
        }
        }
    }
}

.sns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.sns-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sns-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.sns-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bg-white);
}

.sns-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.sns-icon.twitter {
    background-color: #1DA1F2;
}

.sns-icon.facebook {
    background-color: #1877F2;
}

.sns-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    flex: 1;
}

.sns-date {
    font-size: 12px;
    color: var(--text-light);
}

.sns-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 218, 81, 0.1);
    border-radius: 10px;
}

.sns-note p {
    color: var(--text-gray);
    font-size: 14px;
}

.sns-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ==========================================
   Q&Aセクション
   ========================================== */
.faq {
    background-color: var(--bg-light);
    .faq-bg-text {
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: 0;
        top: 560%;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        font-size: clamp(100px, 20vw, 300px);
        font-weight: 900;
        color: rgb(0 0 0 / 17%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    flex-direction: column;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: var(--bg-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
}

/* ==========================================
   料金表セクション
   ========================================== */
.pricing {
    position: relative;
    .pricing-bg-text {
            position: absolute;
            text-align: center;
            width: 100%;
            z-index: -10;
            top: 166%;
            transform: translate(-50%, -50%);
            font-family: 'Poppins', sans-serif;
            font-size: clamp(100px, 20vw, 300px);
            font-weight: 900;
            color: rgb(0 0 0 / 17%);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
    }
}

.pricing-grid {
    display: flex;
    gap: 40px;
    width: 95%;
    margin: 0 auto;
    flex-wrap: wrap;
    .fp-section{
        width: 100%;
    }
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 50px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% / 4) - 2rem);
    a{
        margin-top: auto;
    }
}
@media (max-width:1200px) {
    .pricing-card {
        width: calc((100% / 2) - 2rem);
        }
}
@media (max-width:800px) {
    .pricing-card {
        width: 100%;
        }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 20px 60px rgba(255, 218, 81, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background-color: var(--text-dark);
    color: var(--bg-white);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-icon {
    color: var(--text-dark);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.pricing-plans {
    margin-bottom: 30px;
    .flexbox{
        gap: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        .pricing-plan {
            border-bottom: none;
        }
    }
}

.pricing-plan {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-plan:last-child {
    border-bottom: none;
}

.pricing-plan-name {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.pricing-card.featured .pricing-plan-name {
    color: var(--text-dark);
}

.pricing-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-unit {
    font-size: 13px;
    color: var(--text-gray);
}

.pricing-card.featured .pricing-unit {
    color: var(--text-dark);
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-card.featured .pricing-features li {
    color: var(--text-dark);
}

.pricing-features i {
    font-size: 16px;
    color: var(--primary-color);
}

.pricing-card.featured .pricing-features i {
    color: var(--text-dark);
}

.pricing-note {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 218, 81, 0.1);
    border-radius: 15px;
}

.pricing-note p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 8px;
}
/* ==========================================
　　活動実績
   ========================================== */
.media{
    .media-bg-text{
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: -10;
        top: 185%;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        font-size: clamp(100px, 20vw, 300px);
        font-weight: 900;
        color: rgb(0 0 0 / 17%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
    }
    .media-wrap{
        width: 90%;
        margin: 0 auto;
        max-width: 1200px;
        .media-wrap__con{
            .media-wrap__con__list{
                padding-left: 0;
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
                justify-content: space-around;
                li{
                    width: calc((100% / 4) - 2rem);
                    a{
                        .media-wrap__con__list__item__img{
                            img{
                                aspect-ratio: 4 / 5;
                                object-fit: cover;
                                border-radius: 20px;
                            }
                            @media(max-width:1200px){
                                img{
                                    aspect-ratio: 3 / 2;
                                }
                            }

                        }
                        .media-wrap__con__list__item__txt{
                            display: flex;
                            flex-direction: column;
                            
                            .media-category{
                                font-size: 0.8rem;
                            }
                            .media-date{
                                    margin-top: auto;
                            }
                            
                        }
                    }
                }
                li:nth-child(n+5) { /* 5番目以降の要素 */
                    display: block; /* PCでは表示 */
                }
                @media(max-width:1200px){
                    li{width: calc((100% / 2) - 2rem);}
                }
            }
            @media(max-width:580px){
                    .media-wrap__con__list{
                        flex-direction: column;
                        li{
                            width: 100%;
                        }
                    }
                }
            .btn{
                width: 300px;
                    margin: 4rem auto 1rem auto;
                    display: block;
                a{
                    display: flex;
                    justify-content: center;
                    gap: 1rem;
                }
            }
        }
    }
}
/* ==========================================
   お問い合わせセクション
   ========================================== */
.contact {
    position: relative;
    /* background-color: var(--bg-light); */
    overflow: hidden;
    .contact-bg-text {
        position: absolute;
        text-align: center;
        width: 100%;
        top: 425%;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        font-size: clamp(100px, 15vw, 300px);
        font-weight: 900;
        color: rgb(0 0 0 / 17%);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }
    .container{
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
            width: 60%;
            margin: 0 auto; 
            z-index: 10;
            position: relative;
            .contact-info h3 {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 20px;
                color: var(--text-dark);
            }

            .contact-info > p {
                font-size: 15px;
                color: var(--text-gray);
                line-height: 1.9;
                margin-bottom: 40px;
            }

            .contact-info-items {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .contact-info-item {
                display: flex;
                gap: 20px;
                align-items: start;
            }
        }
    }

}



.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.required {
    color: #e74c3c;
}

.form-group input,

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 218, 81, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}


/* ==========================================
   フッター
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-logo p {
    font-size: 14px;
    color: var(--text-light);
}

.footer-link-group h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link-group ul li {
    margin-bottom: 12px;
}

.footer-link-group ul li a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-link-group ul li a:hover {
    color: var(--primary-color);
}

.footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */

/* タブレット */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        padding: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    section {
        padding: 50px 0;
    }

    .hero-bg-text {
        font-size: 60px;
        line-height: 1;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-main {
        padding: 40px 30px;
    }

    .services-grid,
    .works-grid,
    .sns-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title-main {
        font-size: 24px;
    }

    .hero-title-sub {
        font-size: 32px;
    }

    .service-main {
        padding: 30px 20px;
    }

    .service-card,
    .work-card,
    .sns-card,
    .pricing-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   Link　BTN
   ========================================== */
.rectuit-link{
    position: fixed;
    z-index: 1000;
    bottom: 5%;
    width: 100%;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;

    .link-btn{
        display: block;
        width: 90%;
        margin: 0 auto;
        background-color: var(--primary-color);
        border-radius: 20px;
        padding: 1rem;
        color: black;
    }
}