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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans CJK JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img{
	width: 100%;
}


/* ===== ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–å¯¾å¿œ ===== */

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


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




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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    line-height: 0.9rem;
    box-shadow: 0 4px 15px rgb(127 139 195 / 80%);
    padding: 1.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-line {
    background: #00B900;
    color: white!important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-line:hover {
    background: #009900;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
/*
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo h1 {
    color: #667eea;
    display: flex;
    padding-left: 1rem;
}

.logo img{
    width: 50vw;	
	max-width: 250px;
}

/* Hero Section */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1c339b 0%, #806dc9 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding-top: 4rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 69vw;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgb(0 0 0);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}


.hero-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* Event Banner */
.event-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.event-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-content p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 80px 15px;
}

.section-header {
    text-align: center;
    /* margin-bottom: 30px; */
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 11px;
    margin-bottom: 4rem;
    font-weight: bold;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-image {
    height: auto;
    background: #e9ecef;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.feature-image img{
    border-radius: 12px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Work Content Section */
.work-content {
    background: white;
}

.work-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.work-flow-image {
    height: auto;
    background: #e9ecef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.work-flow-image img{
    border-radius: 16px;	
}


.flow-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 10px;
}

.flow-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #8f829c4a;
}

.flow-time {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.flow-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.5rem;
    text-align: left;
    font-weight: bold;
}

.flow-content p {
    color: #666;
}



/* Voices Section */
.voices {
    background: #f8f9fa;
}

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

.voice-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.voice-image {
    width: 39vw;
    max-width: 300px;
    height: auto;
    background: #e9ecef;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.voice-image img{
    border-radius: 50%;	
}

.voice-profile {
    margin-bottom: 20px;
}

.voice-profile h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.voice-profile p {
    color: #888;
    font-size: 0.9rem;
}

blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #667eea;
}


/* Job Info Section */
.job-info {
    background: #f8f9fa;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.job-image {
    height: initial;
    background: #e9ecef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.job-image img{
    border-radius: 16px;
}

.job-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 10px;
}

.job-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.job-item p {
    color: #666;
    line-height: 1.6;
}

.job-item ul {
    list-style: none;
    padding-left: 0;
}

.job-item li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.job-item li:before {
    content: "✔";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-item small {
    color: #888;
    font-size: 0.85rem;
}




/*---faq-----*/


/* â‘¥ã‚ˆãã‚ã‚‹è³ªå• */
  .faq {
    background-color: #f8f9fa;
  }
  
  .faq-items {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .toggle-icon {
    font-size: 24px;
    color: #764ba2;
    transition: all 0.3s ease;
  }
  
  .faq-answer {
    background-color: #f8f9fa;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-question {
    background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
    color: #fff;
  }
  
  .faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #fff;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
  }
  














/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta form{
	margin: 0 20px;
	max-width: 700px;
	width: 87%;
}

.cta h2{
	color: #fff;
}

.required{
	color: #fff;
}

.cta-header ::after{
	background-color: #fff;
}

.cta-header p{
    font-size: 1.4rem;
    margin-top: 0.5rem;
    background-color: #f8ff8d;
    color: #806dc9;
    margin-bottom: 1rem;
    padding: 0.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-content{
    border: solid 4px #fff;
    padding: 20px;
    width: 95%;
    max-width: 800px;
    margin: 1.2rem auto 2rem;
    border-radius: 16px;
}

@media (max-width: 768px) {
.cta-content{
    margin: 4.2rem auto 4rem;
}
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    /* margin-bottom: 2rem; */
    opacity: 0.9;
}

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

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    margin-top: 30px;
    width: 100%;
    font-size: 1rem;
}


.phone-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
}

/* Company Section */
.company {
    background: white;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-image {
    height: auto;
    background: #e9ecef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.company-image img{
    border-radius: 16px;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.company-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-details p {
    margin-bottom: 0.5rem;
}

.company-info{
    margin: 0 10px;
}

/* Footer */

/* 
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 14px 0;
}
.footer p{
	font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        /* padding: 0 15px; */
        width: 100%;
        display: flex;
        flex-direction: column;
    }
	
	.hero-image img{
		width: 100%;
	}
	
	.hero-text{
		text-align: center;
		right: -0px;
		position: relative;
	}

    .hero-title {
        font-size: 7.5vw!important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
	
	.hero-buttons p {
		font-size: 1.8rem;
		border-bottom: solid 2px;
		padding-bottom: 6px;
		display: inline-table;
		margin-bottom: 0.9rem;
		position: relative;
		top: 3px;
		padding-left: 8px;
		line-height: 1.8rem;
		width: 80vw;
	}
	
	.hero-buttons small{
		font-size: 1rem;
		display: block;
		top: 1px;
		position: relative;
	}

    .btn {
        width: 100%;
        /* max-width: 300px; */
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .work-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-flow-image {
        order: -1;
    }

    .voices-grid {
        grid-template-columns: 1fr;
    }

    .job-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-number {
        font-size: 2.5rem;
        margin: 0;
    }

    .flow-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .feature-item {
        padding: 20px;
    }

    .voice-item {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .event-content h2 {
        font-size: 1.2rem;
    }
	
	.cta-header p{
		font-size: 1rem;
		padding: 0.2rem 1rem;
	}
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.feature-item:hover .feature-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.voice-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}


/*---ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–pc----*/

@media (min-width: 769px) {
	
	.hero{
		justify-content: flex-end;
	}
	.hero-content{
        padding-top: 23vw;
        padding-left: 3vw;
		margin-right: 2rem;
	}
	
	
	.hero-image{
		justify-content: flex-start;
		max-width: 80vw;
	}
	
	.hero-buttons a{
		width: 100%;
		padding-top: 2rem;
		line-height: 1.3rem;
		font-size: 1.5rem;
	}
	
	.hero-buttons p{
		font-size: 2.5rem;
	}
	
	.hero-note{
		font-size: 1.3rem;
	}
	
	.cta-content{
		margin-top: 6rem;
		margin-bottom: 4rem;
	}
	
	.contact-info p{
		font-size: 1.5rem;
	}
	
	.phone-number {
    font-size: 4rem!important;
}
}	
	



/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/*---å¿œå‹Ÿãƒ•ã‚©ãƒ¼ãƒ ---*/

       label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        input[type="text"],
        input[type="date"],
        input[type="tel"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Ensures padding doesn't affect width */
            font-size: 16px;
			background-color: #fff;
        }
        .radio-group {
            margin-bottom: 20px;
            border: 1px solid #ccc;
            padding: 15px;
            border-radius: 4px;
            background-color: #f9f9f9;
        }
        .radio-group label {
            font-weight: normal;
            display: block; /* Makes each radio button appear on a new line */
            margin-bottom: 10px;
            cursor: pointer;
            font-size: 1rem;
            text-align: left;
            display: flex;
            flex-direction: row;
            align-items: center;
        }
         .radio-group input[type="radio"] {
             margin-right: 10px;
             cursor: pointer;
			background-color: #fff;
			 display: block!important;
         }
        button {
            background-color: #3498db;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 17px;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #2980b9;
        }
        /* Required field indicator */
        label.required::after {
            content: " *";
            color: red;
            font-weight: normal;
        }



input[type="date"]{
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
	background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    min-width: 0;              /* 追加 */
    -webkit-appearance: none;  /* 追加 */
    appearance: none;          /* 追加 */
	background-color: #fff;
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 2vw!important;
    }
}

@media only screen and (max-width: 767px) {
    .footer_upper_nav {
        margin-top: 20vw;
        padding: 0 3vw;
    }
}

.timerHidden{ display: none;}
.timerVisible{ display: block;}