/* visa/css/style.css */
/* リセット＆ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ヘッダー */
header {
    background-color: #2a5c91;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo small {
    font-size: 0.7em;
    display: block;
    font-weight: normal;
    margin-top: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* パンくずリスト */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2a5c91;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ヒーローセクション */
.subpage-hero {
    background: linear-gradient(rgba(42, 92, 145, 0.8), rgba(42, 92, 145, 0.8)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.subpage-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.subpage-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* メインコンテンツ */
.subpage-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
}

.content-main {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #2a5c91;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    font-size: 1.5rem;
}

/* サービスハイライト */
.service-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

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

.highlight-item i {
    font-size: 2.5rem;
    color: #2a5c91;
    margin-bottom: 15px;
}

.highlight-item h3 {
    color: #2a5c91;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* 特徴グリッド */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    background-color: #2a5c91;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #2a5c91;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ビザカテゴリー */
.visa-categories {
    margin-top: 30px;
}

.category-card {
    margin-bottom: 30px;
}

.category-title {
    background-color: #2a5c91;
    color: white;
    padding: 12px 20px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
}

.category-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.category-title.active::after {
    content: '-';
}

.visa-list {
    display: none;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

.visa-list.active {
    display: block;
}

.visa-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
}

.visa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.visa-item h4 {
    color: #2a5c91;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.visa-item p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.visa-details {
    display: flex;
    justify-content: flex-end;
    font-size: 0.9rem;
}

.visa-time {
    color: #e67e22;
    font-weight: bold;
}

/* プロセスステップ */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #2a5c91;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2a5c91;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
}

/* FAQリスト */
.faq-list {
    border-top: 1px solid #e2e8f0;
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.faq-question {
    color: #2a5c91;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #e67e22;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer.show {
    display: block;
}

.faq-answer ul, 
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* サイドバー */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    color: #2a5c91;
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #2a5c91;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.sidebar-widget a:hover {
    color: #e67e22;
}

.contact-box {
    background-color: #2a5c91;
    color: white;
    padding: 25px;
    border-radius: 8px;
}

.contact-box h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* フッター */
footer {
    background-color: #2a5c91;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* レスポンシブ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 10px;
        white-space: normal;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    nav ul li {
        margin: 0 10px 5px 0;
    }
    
    .subpage-hero h1 {
        font-size: 1.8rem;
    }
    
    .subpage-hero p {
        font-size: 1rem;
    }
    
    .subpage-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .service-highlight {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        padding: 20px;
    }
}/* visa/css/style.css */
/* リセット＆ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ヘッダー */
header {
    background-color: #2a5c91;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo small {
    font-size: 0.7em;
    display: block;
    font-weight: normal;
    margin-top: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* パンくずリスト */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2a5c91;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ヒーローセクション */
.subpage-hero {
    background: linear-gradient(rgba(42, 92, 145, 0.8), rgba(42, 92, 145, 0.8)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.subpage-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.subpage-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* メインコンテンツ */
.subpage-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
}

.content-main {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #2a5c91;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    font-size: 1.5rem;
}

/* サービスハイライト */
.service-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

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

.highlight-item i {
    font-size: 2.5rem;
    color: #2a5c91;
    margin-bottom: 15px;
}

.highlight-item h3 {
    color: #2a5c91;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* 特徴グリッド */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    background-color: #2a5c91;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #2a5c91;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ビザカテゴリー */
.visa-categories {
    margin-top: 30px;
}

.category-card {
    margin-bottom: 30px;
}

.category-title {
    background-color: #2a5c91;
    color: white;
    padding: 12px 20px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
}

.category-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.category-title.active::after {
    content: '-';
}

.visa-list {
    display: none;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

.visa-list.active {
    display: block;
}

.visa-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
}

.visa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.visa-item h4 {
    color: #2a5c91;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.visa-item p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.visa-details {
    display: flex;
    justify-content: flex-end;
    font-size: 0.9rem;
}

.visa-time {
    color: #e67e22;
    font-weight: bold;
}

/* プロセスステップ */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #2a5c91;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2a5c91;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
}

/* FAQリスト */
.faq-list {
    border-top: 1px solid #e2e8f0;
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.faq-question {
    color: #2a5c91;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #e67e22;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer.show {
    display: block;
}

.faq-answer ul, 
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* サイドバー */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    color: #2a5c91;
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #2a5c91;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.sidebar-widget a:hover {
    color: #e67e22;
}

.contact-box {
    background-color: #2a5c91;
    color: white;
    padding: 25px;
    border-radius: 8px;
}

.contact-box h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* フッター */
footer {
    background-color: #2a5c91;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* レスポンシブ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 10px;
        white-space: normal;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    nav ul li {
        margin: 0 10px 5px 0;
    }
    
    .subpage-hero h1 {
        font-size: 1.8rem;
    }
    
    .subpage-hero p {
        font-size: 1rem;
    }
    
    .subpage-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .service-highlight {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        padding: 20px;
    }
}