/*
Theme Name: 社内承継支援機構
Description: 社内承継支援機構のコーポレートサイト用WordPressテーマ
Version: 1.0
Author: Your Name
*/
.sp{
		display: none;
	}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
	color: #333;
	
}
body {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.6;
}

.fv-container {
    position: relative;
    min-height: 100vh;
    background: url('images/haikei.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.fv-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,240,240,0.8) 100%);
    z-index: 1;
}

.fv-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 80vh;
}

.fv-left {
    flex: 1;
    text-align: left;
    position: relative;
}

.fv-right {
    flex: 1;
    text-align: left;
    padding-top: 0;
}

.logo {
    margin: 0 0 30px 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.logo img {
    width: 512px;
    height: auto;
    max-width: 100%;
}

.main-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.main-title .tagline {
    font-size: 29px;
    font-weight: 500;
    color: #333;
    letter-spacing: 1.5px;
    margin-top: 0;
    line-height: 1.3;
    width: 512px;
    max-width: 100%;
    white-space: nowrap;
	
}

.catch-copy {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    margin-top: 0;
    padding-top: 0;
}

.catch-copy p {
    font-size: 16px;
    color: #444;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 220%;
}

.catch-copy .highlight {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    margin-bottom: 0;
}

.scroll-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 250px;
    background: #999;
    margin: 0 auto;
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    z-index: 1;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #333;
    animation: scrollMove 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ナビゲーション */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    height: 75px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
    height: 75px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 75px;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.contact-btn {
    background: #333;
    color: white !important;
    width: 200px;
    height: 75px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn .mail-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-btn:hover {
    background: #555;
    color: white !important;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    display: block;
}

.mobile-contact-btn {
    background: #333;
    color: white !important;
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-contact-btn .mail-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ミッションセクション */
.mission-section {
    background: url('images/haikei_2.webp') center/cover no-repeat;
    padding: 80px 0;
}

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

.mission-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.mission-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.mission-odd {
    background: #1E1E1E;
}

.mission-even {
    background: #3F3F3F;
}

.mission-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon img {
    width: 70px;
}

.mission-left h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    line-height: 1.4;
}

.mission-right {
    background: white;
    padding: 32px;
    display: flex;
    align-items: center;
}

.mission-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-content li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
	font-weight: 300;
}
.mission-content li strong{
    
    color: #333;
    
	font-weight: 600;
}

.mission-content li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    flex-shrink: 0;
    margin-top: 8px;
}

.mission-button {
    text-align: center;
}

.business-btn {
    background: #333;
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    display: inline-block;
}

.business-btn:hover {
    background: #555;
}

/* 新着情報セクション */
.news-section {
    background: white;
    padding: 80px 0;
}

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

.news-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.news-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: 1px solid #eee;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-date {
    font-size: 12px;
    color: #999;
    font-weight: 300;
}

.news-category {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
    background: #333;
}

.news-content {
    flex: 1;
    font-size: 1rem;
    color: #444;
    font-weight: 400;
}

.news-button {
    text-align: center;
}

.more-btn {
    background: #333;
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    display: inline-block;
}

.more-btn:hover {
    background: #555;
}

/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 170px;
    height: auto;
    background: white;
    padding: 8px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.footer-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 300;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ccc;
}

.footer-contact-btn {
    background: white;
    color: #333 !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.footer-contact-btn:hover {
    background: #f0f0f0;
}

.footer-contact-btn .mail-icon {
    width: 16px;
    height: 16px;
}

.footer-contact-btn .arrow-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

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

/* レスポンシブ */
@media (max-width: 1024px) {
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .fv-content {
        padding: 100px 30px 0 30px;
        gap: 60px;
    }

    .logo img {
        width: 400px;
    }

    .main-title .tagline {
        font-size: 24px;
        width: 400px;
    }

    .catch-copy p {
        font-size: 14px;
        line-height: 220%;
    }

    .catch-copy .highlight {
        font-size: 13px;
    }

    .mission-item {
        grid-template-columns: 1fr;
    }
    
    .mission-left {
        padding: 35px;
        gap: 18px;
    }
    
    .mission-right {
        padding: 35px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        align-items: center;
        width: 100%;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 768px) {
	.pc{
	display: none;
}
	.sp{
		display: block;
	}
    .fv-content {
        flex-direction: column;
        padding: 120px 15px 40px 15px;
        gap: 40px;
        text-align: center;
    }

    .fv-left, .fv-right {
        text-align: left;
    }

    .logo {
        margin: 20px 0;
        text-align: center;
    }

    .logo img {
        width: 300px;
    }

    .main-title .tagline {
        font-size: 18px;
        width: 300px;
        text-align: center;
        margin: 0 auto;
    }

    .scroll-indicator {
        display: none;
    }

    .catch-copy p {
        font-size: 14px;
        line-height: 220%;
        text-align: left;
		letter-spacing: -0.3px;
    }

    .catch-copy .highlight {
        font-size: 12px;
    }

    .mission-section {
        padding: 50px 0;
    }
    
    .mission-left {
        padding: 16px;
        gap: 15px;
    }
    
    .mission-right {
        padding: 25px;
    }
    
    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .mission-content li {
        font-size: 0.8rem;
    }

    .news-section {
        padding: 50px 0;
    }
    
    .news-item {
        gap: 8px;
        padding: 18px 0;
    }
    
    .news-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .footer-nav ul {
        gap: 15px;
    }
    
    .footer-contact-btn {
        font-size: 0.75rem;
        padding: 12px 20px;
    }
}