/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* font
----------------------------------------------- */
:root {
--mincho:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif; /* font-family: var(--mincho); */
--gothic:游ゴシック体, YuGothic, 'Yu Gothic', "游ゴシック Medium", "Yu Gothic Medium", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; /* font-family: var(--gothic); */
}


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

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


@media (max-width: 768px) {
	.sp{
		display: block!important;
	}
	
	.pc{
		display: none!important;
	}
}







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

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

a {
    text-decoration: none;
    color: #0076d1;
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 40px;
    color: #0076d1;
    position: relative;
    padding-bottom: 15px;
}

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

/* ===== ヘッダー ===== */
.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;
}

@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 769px) {
.header-inner {
    margin: 0 auto;
    width: 90%;
}
}


.logo img {
    height: 45px;
}

@media (max-width: 768px) {
.nav-pc{
    display: none;
}
}

.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 a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
    font-weight: 500;
}

.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 Section */
.hero {
    height: 700px;
    background-image: url("images/top_pc_bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    color: #fff;
    max-width: 600px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: #d80000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff0000;
    color: #fff;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 20px;
}

.cta-button.line {
    background-color: #06C755;
}

.cta-button.line:hover {
    background-color: #05a849;
}

/* Why Work With Us */
.why-work {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

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

@media (max-width: 768px) {
.benefit-icon{
	margin-bottom: 20px;
}
}


.benefit-icon img{
    border-radius: 10px 10px 0 0;
}

.benefit-item p{
    padding: 0 30px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: #0076d1;
}

/* Job Types */
.job-types {
    padding: 80px 0;
}

.job-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.job-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-image {
    height: 100%;
}

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

.job-content {
    padding: 30px;
    margin-bottom: 20px;
}

.job-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0076d1;
}

.job-section {
    margin-bottom: 20px;
}

.job-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-block {
    display: flex;
    align-items: center;
}

.time {
    font-weight: 700;
    width: 60px;
}

.secondary-button {
    display: inline-block;
    color: #0076d1;
    border: 2px solid #0076d1;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #0076d1;
    color: #fff;
}

/* Employee Interview */
.employee-interview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.interview-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.interview-image {
    flex: 0 0 150px;
    margin-right: 30px;
}

.interview-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.interview-content {
    flex: 1;
}

.interview-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #0076d1;
}

.interview-role {
    margin-bottom: 15px;
    color: #777;
    font-size: 16px;
}

.interview-text {
    font-size: 16px;
    line-height: 1.8;
}

/* Career Path */
.career-path {
    padding: 80px 0;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.career-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.career-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0076d1;
    text-align: center;
}

.career-path-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.path-step {
    text-align: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0076d1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 10px;
}

.path-arrow {
    margin: 0 15px;
    font-size: 24px;
    color: #0076d1;
}

@media (max-width: 768px) {
.path-arrow {
    margin: 0 3px;
}
}

.career-note {
    grid-column: span 2;
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid #0076d1;
}

.career-note h4 {
    color: #0076d1;
    margin-bottom: 10px;
}

/* Benefits & Conditions */
.benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-table {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.benefit-label {
    flex: 0 0 200px;
    font-weight: 700;
    color: #0076d1;
}

.benefit-value {
    flex: 1;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f7ff;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #0076d1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #0076d1;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Apply CTA */
.apply-cta {
    padding: 80px 0;
    background-color: #f0f7ff;
    text-align: center;
}

.apply-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: #777;
	margin-top: 50px;
}

.back-links {
    margin-top: 20px;
}

/* ===== フッター ===== */
.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;
}

li{
    list-style:none;
}

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


/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 32px;
    }
    
    .job-card {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .job-image {
        height: auto;
    }
    
    .interview-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .interview-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .career-note {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .nav {
        margin-top: 15px;
    }
    
    .hero {
        height: 600px;
        /*margin-top: 120px;*/
    background-position: 0 50%;
    background-image: url("images/top_sp_bg.webp");
    }
	

    
    .hero-title {
        font-size: 28px;
    }
    
    .benefit-row {
        flex-direction: column;
    }
    
    .benefit-label {
        margin-bottom: 5px;
        flex: 0;
    }
    
    .apply-buttons {
        flex-direction: column;
    }
}	
	
/* エントリーフォーム */

#entry h1{
	  text-align: center;
	  color: #333;
	margin-bottom: 50px;
}

.entry_innner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        input[type="text"],
        input[type="tel"],
        input[type="date"],
        select {
            width: calc(100% - 22px)!important;
            padding: 10px!important;
            margin-bottom: 20px!important;
            border: 1px solid #ccc!important;
            border-radius: 4px!important;
            box-sizing: border-box!important;
		    font-size: 18px;
        }
        .radio-group label {
            font-weight: normal;
            margin-right: 15px;
			margin-bottom: 10px;
		    position: relative;
		    top: 5px;
        }
        .radio-group input[type="radio"] {
            margin-right: 5px;
        }
        button[type="submit"] {
            background-color: #28a745;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
			max-width: 500px;
        }
        button[type="submit"]:hover {
            background-color: #218838;
        }
        .form-group {
            margin-bottom: 1.5em;
        }

.radio-group{
	display: flex;
	align-items: center;
}


/*エントリーフォームend*/


