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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

h2{
    margin-bottom: 10px;
}

/* ===== 共通スタイル ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
	margin-top: 100px;
}

@media (max-width: 768px) {
.section-header {
	margin-top: 50px;
}
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #c10018;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c10018;
    color: #fff;
}

.btn-primary:hover {
    background-color: #9e0012;
}

.btn-secondary {
    background-color: #333;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #222;
}

.btn-outline {
    border: 2px solid #c10018;
    color: #c10018;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #c10018;
    color: #fff;
}

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav-pc ul {
    display: flex;
}

.nav-pc li {
    margin-left: 30px;
}

.nav-pc a {
    font-weight: 500;
    position: relative;
}

.nav-pc a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #c10018;
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

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

.btn-contact {
    background-color: #c10018;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-contact:hover {
    background-color: #9e0012;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding: 30px;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile li {
    margin-bottom: 20px;
}

.nav-mobile a {
    font-size: 18px;
    font-weight: 500;
}

/* ===== ヒーローエリア ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ===== 事業紹介 ===== */
.services-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.service-image {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.service-text {
    flex: 1;
    padding: 30px;
}

.service-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-text p {
    margin-bottom: 20px;
}

/* ===== 選ばれる理由 ===== */
.strengths {
    background-color: #f8f8f8;
}

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

.strength-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.strength-icon {
    font-size: 36px;
    color: #c10018;
    margin-bottom: 20px;
}

.strength-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ===== 採用情報 ===== */
.recruit-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recruit-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.recruit-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.5s ease;
}

.recruit-banner:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.banner-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

/* ===== お知らせ・ニュース ===== */
.news-content {
    margin-bottom: 30px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-date {
    width: 100px;
    font-size: 14px;
    color: #666;
}

.news-category {
    width: 62px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 3px 0;
    border-radius: 3px;
}

.news-category.recruit {
    background-color: #c10018;
}

.news-category.business {
    background-color: #006eb0;
}

.news-category.event {
    background-color: #f39800;
}

.news-title {
    flex: 1;
    padding-left: 20px;
}

.news-title a:hover {
    color: #c10018;
}

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

/* ===== アクセス・会社概要 ===== */
.company-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-info {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    margin-bottom: 30px;
}

.info-table th, .info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.info-table th {
    width: 30%;
    color: #666;
}

/* ===== フッター ===== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 15px;
	width: 60%;
}

.footer-logo p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

.footer-logo a {
    color: #ccc!important;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav-group {
    flex: 1;
    min-width: 100px;
}

.footer-nav-group h3 {
    font-size: 16px;
    margin:0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

 


.footer-nav-group h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #c10018;
    bottom: 0;
    left: 0;
}

.footer-nav-group ul li {
    margin-bottom: 10px;
}

.footer-nav-group a {
    color: #ccc;
    font-size: 14px;
}

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

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

.social-links {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;	
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px 7px;
    text-align: center;
}

.social-links a:hover {
    background-color: #c10018;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}


.fa-instagram p{
    line-height: 20px;
    padding-top: 8px;
}

.sns-block {
    width: 90px;
    font-size: 14px;
}


.copyright {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin: 0 20px 20px;
    }}

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

	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
	
	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .nav-pc {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-image {
        min-width: 100%;
        display: flex;
    }
    
    .strengths-content {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    

		
	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .news-item {
        flex-wrap: wrap;
    }
    
    .news-date, .news-category {
        margin-bottom: 5px;
    }
    
    .news-date {
            width: 80px;
    }	
	
    .news-title {
        width: 100%;
        padding-left: 15px;
        margin-top: 5px;
        font-size: 15px;
    }
    
    .info-table th {
        width: 33%;
        font-size: 15px;
    }
	
	.pc{
		display: none!important;
	}
	
	.sp{
		display: block!important;
	}
	
.service-card {
    gap: 0px;
}
	
.section-subtitle {
    width: 90%;
    margin: 0 auto;
}

}