/* ===================================
   TOPページ新FV用CSS
=================================== */
.button-design{
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-top: 40px;
}

.sp{
	display: none;
}
.c-career{
	margin-bottom: 40px;
}
.c-work{
	margin-top: 0;
}
.c-media .section-header{
	margin-top: 0;
}

/* パンくずリストを非表示（デジタルマーケティングページと同様） */
#breadcrumb {
    display: none !important;
}

/* ===================================
   2段ロゴスライダーセクション
=================================== */

.logo-slider-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.logo-slider-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
	gap: 20px;
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.logo-slider__track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    align-items: center;
    gap: 0px;
}

/* 上段：右から左へ */
.logo-slider--top .logo-slider__track {
    animation: slideRightToLeft 18s linear infinite;
}

/* 下段：左から右へ */
.logo-slider--bottom .logo-slider__track {
    animation: slideLeftToRight 18s linear infinite;
}

.logo-slider__slide {
    flex: 0 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-slider__slide img {
    max-height: 120px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* アニメーション定義 */
@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-70%);
    }
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* ===================================
   c-newsセクション（見出しスタイルのみ追加）
=================================== */

.c-news {
    padding-bottom: 80px;
}

/* デジタルマーケティングページと同じ見出しスタイル（点線なし） */
.c-news .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.c-news .section-label {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.c-news .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #001D39;
    margin: 0;
    line-height: 1.3;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .c-news {
        padding-bottom: 60px;
    }
    
    .c-news .section-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
	.sp{
	display: block;
}
    .c-news {
		padding-top: 0;
        padding-bottom: 60px;
    }
    
    .c-news .section-header {
        margin-bottom: 0px;
    }
    
    .c-news .section-label {
        font-size: 14px;
        margin: 0 0 8px 0;
    }
    
    .c-news .section-title {
        font-size: 24px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 480px) {
    .c-news .section-title {
        font-size: 24px;
    }
}



/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .logo-slider-section {
        padding: 40px 0;
    }
    
    .logo-slider {
        height: 100px;
    }
    
    
    .logo-slider__slide {
        height: 100px;
        padding: 0 15px;
    }
    
    .logo-slider__slide img {
        max-height: 100px;
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .logo-slider-section {
        padding: 20px 0;
    }
    
    .logo-slider {
        height: 100px;
    }
    
    .logo-slider__slide {
        height: unset;
        padding: 0 10px;
    }
    
    .logo-slider__slide img {
        max-height: 100px;
        
    }
}

/* FVメインセクション */
.top-fv-new {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center; /* 上寄せに変更 */
    justify-content: flex-start;
}

.top-fv-new__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-fv-new__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-fv-new__content {
    position: relative;
    z-index: 2; /* オーバーレイ削除でz-indexも調整 */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 56px 0 56px; /* 上80px、左右56px */
	margin-bottom: 120px;
}

.top-fv-new__text-wrapper {
    max-width: 600px;
}

/* メインテキスト */
.top-fv-new__main-text {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0; /* マージン全削除 */
    color: #001D39; /* 指定された黒文字色 */
}

.top-fv-new__text-line {
    display: inline-block;
    position: relative;
}

.top-fv-new__text-line--first {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 0; /* 角丸無し */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-fv-new__text-line--second {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 0; /* 角丸無し */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
    display: inline-block;
}

.top-fv-new__accent {
    color: #37A07A;
    position: relative;
}

/* CTAエリア */
.top-fv-new__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* ===================================
   デジタルマーケティングページと完全同一のCTAボタン
=================================== */

.cta-button-container {
    margin-top: 60px;
    position: relative;
	text-align: center;
}

.cta-badge {
    background: white;
    color: #FF7224;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    white-space: nowrap; /* 改行を防止 */
}

.cta-button {
    background: #FF7224;
    color: white;
    padding: 20px 40px 20px 40px;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(255, 114, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}



.cta-mail-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.cta-button-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

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

/* ===================================
   アニメーション
=================================== */



.top-fv-new__text-line {
    animation: fadeInUp 0.8s ease-out;
}

.top-fv-new__text-line--second {
    animation-delay: 0.2s;
}

.top-fv-new__cta-wrapper {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* 画面幅1200px以上の場合の調整 */
@media screen and (min-width: 1200px) {
    .top-fv-new__content {
        padding: 0px 0px 0px 0px; /* 1200px以上は上80px、 */
    }
}

/* レスポンシブ対応（デジタルマーケティングページと同様） */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 28px;
    }
    
    .cta-count {
        font-size: 18px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 26px 32px 16px 32px;
    }
    
    .cta-button-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
	.cta-button-container{
		margin-top: 32px;
		
	}
    .top-fv-new {
        height: 80vh;
        min-height: 500px;
    }

    .top-fv-new__content {
        padding: 80px 20px 0 20px; /* モバイルも上80px、左右20px */
    }

    .top-fv-new__main-text {
        font-size: clamp(24px, 8vw, 48px); /* モバイルでも最小24px、最大48px */
        margin: 0; /* モバイルでもマージンなし */
    }

    .top-fv-new__text-line--first,
    .top-fv-new__text-line--second {
        padding: 6px 12px;
        margin-top: 8px;
    }

    .top-fv-new__cta-wrapper {
        gap: 12px;
    }

    .cta-badge {
        font-size: 14px;
        padding: 6px 16px;
        top: -18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 22px 28px 12px 28px;
    }
    
    .cta-button-text {
        font-size: 18px;
    }
    
    .cta-mail-icon {
        width: 20px;
        height: 20px;
    }
    
    .cta-arrow-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .top-fv-new__main-text {
        font-size: clamp(20px, 7vw, 48px); /* さらに小さい画面でも対応 */
    }

    .cta-badge {
        font-size: 12px;
        padding: 4px 12px;
        top: -16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 20px 40px;
        gap: 12px;
		display: flex;
        justify-content: center;
	
    }
	.cta-badge {
    
    left: unset;
    transform: unset;
            left: 10%;
        right: 10%;
        
        margin: 0 auto;
		text-align: center;
}
    
    .cta-button-text {
        font-size: 16px;
    }
    
    .cta-mail-icon {
        width: 18px;
        height: 18px;
    }
    
    .cta-arrow-icon {
        width: 22px;
        height: 22px;
    }
}
/* ===================================
   コンセプトセクション
=================================== */
.concept-section {
    padding: 100px 0;
    background: #f8f9fa;
    background-image: radial-gradient(circle, #d7d7d7 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.concept-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

/* セクションヘッダー */
.concept-header {
    text-align: center;
    margin-bottom: 16px;
}

.concept-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
}

.concept-title {
    font-size: 32px;
    font-weight: 900;
    color: #001D39;
    margin: 0 0 24px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 24px;
    display: inline-block;
}

/* 見出し下の点線 */
.concept-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
   background: repeating-linear-gradient(to right, #001d39 0px, #001d39 2px, transparent 4px, transparent 8px);
}

/* リード文 */
.concept-lead {
    text-align: center;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.concept-lead p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 16px 0;
}

.concept-lead p:last-child {
    margin-bottom: 0;
}

/* サービスカード */
.concept-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.concept-card {
    background: #ffffff;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(55, 160, 122, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}


.concept-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.concept-card-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.concept-card-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.concept-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #001D39;
    margin: 0;
    transition: color 0.3s ease;
}

.concept-card-content {
    position: relative;
    z-index: 1;
}

.concept-card-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #001D39;
    margin: 0 0 4px 0;
}

.concept-card-subtitle:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .concept-container {
        padding: 0 40px;
    }
    
    .concept-title {
        font-size: 28px;
    }
    
    .concept-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .concept-section {
        padding: 80px 0;
    }
    
    .concept-container {
        padding: 0 20px;
    }
    
    .concept-header {
        margin-bottom: 0px;
    }
    
    .concept-title {
        font-size: 26px;
    }
    
    .concept-title::after {
        width: 100%;
    }
    
    .concept-lead {
        margin-bottom: 0px;
    }
    
    .concept-lead p {
        font-size: 15px;
        font-weight: 500;
    }
    
    .concept-services {
        gap: 8px;
        margin-top: 32px;
    }
    
    .concept-card {
        padding: 12px;
        text-align: center;
    }
    
    .concept-card-header {
        gap: 10px;
        margin-bottom: 12px;
        justify-content: center;
    }
    
    .concept-card-icon {
        width: 18px;
        height: 18px;
    }
    
    .concept-card-icon img {
        width: 18px;
        height: 18px;
    }
    
    .concept-card-title {
        font-size: 18px;
    }
    
    .concept-card-subtitle {
        font-size: 13px;
        font-weight: 500;
		
    }
}

@media (max-width: 480px) {
    .concept-title {
        font-size: 24px;
    }
    
    .concept-lead p {
        font-size: 14px;
        font-weight: 500;
    }
    
    .concept-card {
        text-align: center;
		display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .concept-card-header {
        gap: 8px;
        justify-content: center;
		flex-direction: column;
    }
	.concept-card-title {
        font-size: 16px;
    }
}

.center{
	align-items: center;
	margin-top: 40px;
}
/* ===================================
   事業紹介セクション
=================================== */
.service-section {
    padding: 100px 0;
    background: #ffffff;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

/* セクションヘッダー */
.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
}

.service-title {
    font-size: 32px;
    font-weight: 900;
    color: #001D39;
    margin: 0 0 24px 0;
    line-height: 1.3;
    display: inline;
}

/* 見出し下の点線削除 */

/* メイン事業セクション */
.service-main {
    margin-bottom: 80px;
    background: #fafafa;
    padding: 40px;
}

.service-main-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-main-left {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.service-main-right {
    flex: 1;
}

.service-main-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.service-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #001D39;
    margin: 0 0 32px 0;
    line-height: 1.3;
	position: relative;
}

.service-main-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 1px;
   background: repeating-linear-gradient(to right, #001d39 0px, #001d39 2px, transparent 4px, transparent 8px);
}

.service-main-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 32px 0;
}

.service-main-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #001625;
    color: white !important;
    border: none;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-main-button:hover .arrow {
    transform: translateX(4px);
}
.service-arrow-icon {
    font-size: 16px;
}

.service-main-button .arrow {
    font-size: 16px;
	transition: transform 0.3s ease;
}

/* 円形図 */
.service-circle-chart {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-chart-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 4つの事業カード */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    overflow: hidden;
}

.service-card:hover {
    /* ホバー効果なし */
}

.service-card-image {
    width: 100%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card-content {
    padding: 16px 8px;
}

.service-card-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #008037;
    margin: 0 0 4px 0;
}

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #001D39;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-card-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #001D39;
    margin: 0;
}

/* 詳しく見るボタン */
.service-more-wrapper {
    text-align: center;
}

.service-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #001625;
    color: white !important;
    border: none;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-more-button:hover .arrow {
    transform: translateX(4px);
}


.service-more-button .arrow {
    font-size: 16px;
	transition: transform 0.3s ease;
}




/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-container {
        padding: 0 40px;
    }
    
    .service-main-content {
        gap: 60px;
		flex-direction: column;
    }
    
    .service-circle-chart {
        width: 320px;
        height: 320px;
    }
    
    .service-cards {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .service-section {
        padding: 80px 0;
    }
    
    .service-container {
        padding: 0 20px;
    }
    
    .service-header {
        margin-bottom: 40px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .service-main {
        margin-bottom: 60px;
		padding: 16px;
		padding-bottom: 40px;
    }
    
    .service-main-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-main-title {
        font-size: 24px;
    }
    
    .service-main-description {
        font-size: 15px;
    }
    
    .service-circle-chart {
        
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .service-card-image {
        /* 高さ指定なし */
    }
    
    .service-card-content {
        padding: 24px 0;
    }
    
    .service-card-title {
        font-size: 24px;
    }
    
    .service-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
	.service-card-category{
		font-size: 10px;
	}
    .service-title {
        font-size: 24px;
    }
    
    .service-main-title {
        font-size: 24px;
    }
    
    .service-circle-chart {
        width: 100%;
    }
    
    .service-main-button,
    .service-more-button {
        font-size: 16px;
        padding: 20px 48px;
    }
}
/* ===================================
   StockSun提携セクション
=================================== */
.stocksun-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
	padding-bottom: 0;
}

.stocksun-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* ロゴセクション */
.stocksun-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.teikei-image {
    width: 800px;
    height: auto;
    object-fit: contain;
}

/* メインタイトル */
.stocksun-title {
    font-size: 32px;
    font-weight: 900;
    color: #001D39;
    margin: 0 0 32px 0;
    line-height: 1.3;
}

/* 説明文 */
.stocksun-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 60px 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

/* 実績数字 */
.stocksun-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 64px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* アイコン追加 */
.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-label {
    font-size: 24px;
    font-weight: 700;
    color: #001D39;
    margin: 0 0 16px 0;
}

.stat-number {
	font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #001D39;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.stat-unit {
    font-size: 24px;
    font-weight: 600;
    color: #001D39;
}

/* 代表紹介 */
.representative-section {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    text-align: left;
    background: #fafafa;
    padding: 40px;
	margin-bottom: 40px;
}

.representative-image {
    flex-shrink: 0;
    width: 300px;
}

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

.representative-content {
    flex: 1;
}

.representative-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.representative-name {
    font-size: 28px;
    font-weight: 900;
    color: #001D39;
    margin: 0;
}

.representative-name-en {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #008037;
    margin: 0;
    text-transform: lowercase;
}

.representative-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.representative-list li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #001D39;
    margin: 0 0 10px 0;
    padding-left: 16px;
    position: relative;
}

.representative-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 600;
}

.representative-list li:last-child {
    margin-bottom: 0;
}
.sns-list{
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
.sns-list img{
	width: 30px;
}
/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .stocksun-container {
        padding: 0 40px;
    }
    
    .teikei-image {
        width: 600px;
    }
    
    .stocksun-stats {
        gap: 40px;
		flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 60px;
    }
    
    .stat-unit {
        font-size: 20px;
    }
    
    .stat-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .representative-section {
        gap: 40px;
    }
    
    .representative-image {
        width: 240px;
    }
}

@media (max-width: 767px) {
	.sns-list{
		margin-bottom: 24px;
	}
    .stocksun-section {
        padding: 80px 0;
    }
    
    .stocksun-container {
        padding: 0 20px;
    }
    
    .teikei-image {
        width: 100%;
        max-width: 500px;
    }
    
    .stocksun-title {
        font-size: 26px;
    }
    
    .stocksun-description {
        font-size: 15px;
    }
    
    .stocksun-stats {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-unit {
        font-size: 18px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .representative-section {
        flex-direction: column;
        gap: 24px;
        text-align: center;
		padding: 16px;
		margin-bottom: 40px;
    }
    
    .representative-image {
        width: 200px;
        margin: 0 auto;
    }
    
    .representative-content {
        text-align: left;
    }
    
    .representative-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .representative-name {
        font-size: 24px;
    }
    
    .representative-name-en {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .teikei-image {
        width: 100%;
        max-width: 400px;
    }
    
    .stocksun-title {
        font-size: 24px;
    }
    
    .stocksun-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 64px;
    }
    
    .stat-unit {
        font-size: 16px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .representative-name {
        font-size: 22px;
    }
    
    .representative-list li {
        font-size: 14px;
    }
}

.p-member{
	background-color: white;
	background: unset;
	padding-bottom: 80px;
}
/* ===================================
   支援実績セクション（統一見出しスタイル）
=================================== */
.works-section {
    padding: 100px 0;
    background: #ffffff;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

/* 統一された見出しスタイル */
.works-header {
    text-align: center;
    margin-bottom: 60px;
}

.works-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
}

.works-title {
    font-size: 32px;
    font-weight: 900;
    color: #001D39;
    margin: 0 0 24px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 24px;
    display: inline;
}



/* 説明文 */
.works-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 60px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .works-container {
        padding: 0 40px;
    }
    
    .works-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .works-section {
        padding: 80px 16px;
		padding-top: 40px;
    }
    
    .works-container {
        padding: 0px;
    }
    
    .works-header {
        margin-bottom: 40px;
    }
    
    .works-title {
        font-size: 26px;
    }
    
    .works-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .works-title {
        font-size: 24px;
    }
    
    .works-description {
        font-size: 14px;
    }
}
/* ===================================
   メディアセクション（統一見出しスタイル）
=================================== */
.media-section {
    padding: 100px 0;
    background: #EAF2F0;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

/* 統一された見出しスタイル */
.media-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-category {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #008037;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
}

.media-title {
    font-size: 32px;
    font-weight: 900;
    color: #001D39;
    margin: 0 0 24px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 24px;
    display: inline;
}



/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .media-container {
        padding: 0 40px;
    }
    
    .media-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .media-section {
        padding: 80px 16px;
		padding-top: 40px;
    }
    
    .media-container {
        padding: 0 20px;
    }
    
    .media-header {
        margin-bottom: 40px;
    }
    
    .media-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .media-title {
        font-size: 24px;
    }
}


.c-media > div {
    padding: unset;
}


