/* リセットとベース設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 20px;
}

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

/* プロフィールカード */
.profile-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.2);
}

/* プロフィールヘッダー */
.profile-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.profile-image {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(251, 191, 36, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #fbbf24;
    color: #1e3a8a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-company {
    font-size: 19px;
    color: rgba(251, 191, 36, 1);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.profile-title {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 5px;
    font-weight: 600;
}

.profile-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* 基本情報セクション */
.basic-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
}

.basic-info-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    border-left-color: #fbbf24;
}

.info-item i {
    font-size: 18px;
    color: #3b82f6;
    min-width: 20px;
}

.info-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #3b82f6;
}

/* 基本情報セクション */
.basic-info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-top: 3px solid #fbbf24;
}

.basic-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #1e3a8a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    border-left-color: #fbbf24;
}

.info-item i {
    font-size: 24px;
    color: #1e3a8a;
    min-width: 24px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #3b82f6;
}

/* プロフィールコンテンツ */
.profile-content {
    padding: 40px 30px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #fbbf24;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #fbbf24;
    border-radius: 50%;
    margin-right: 12px;
}

/* 自己紹介セクション */
.about-section {
    margin-bottom: 40px;
}

.about-text p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
    font-size: 15px;
}

/* スキルセクション */
.skills-section {
    margin-bottom: 40px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.35);
}

/* 趣味セクション */
.hobbies-section {
    margin-bottom: 40px;
}

.hobbies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.hobby-item {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #fbbf24;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hobby-item:hover {
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.hobby-item i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.hobby-item span {
    font-size: 14px;
    font-weight: 600;
}

/* ビジョンセクション */
.vision-section {
    margin-bottom: 40px;
}

.vision-text {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 28px;
    border-radius: 15px;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.vision-text::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    opacity: 0.3;
}

/* SNSセクション */
.social-section {
    margin-bottom: 30px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.social-link.line {
    background: linear-gradient(135deg, #00c300 0%, #00a000 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #ff0050 0%, #000000 100%);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-link.podcast {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.social-link i {
    font-size: 22px;
    margin-right: 10px;
}

/* 事業・サービス紹介セクション */
.services-section {
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 100%);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-color: #fbbf24;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: #fbbf24;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.service-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.service-catchphrase {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.service-details {
    margin-top: 20px;
}

.service-item {
    margin-bottom: 18px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 3px solid #d1d5db;
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-item h4 i {
    color: #3b82f6;
}

.service-item.recommend {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 3px solid #3b82f6;
}

.service-item.recommend h4 {
    color: #1e3a8a;
}

.service-item.recommend h4 i {
    color: #fbbf24;
}

.service-item p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.service-item ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.service-item ul li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 5px;
}

.service-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
}

.service-link i {
    font-size: 16px;
}

/* 経歴セクション */
.career-section {
    margin-bottom: 40px;
}

.career-timeline {
    position: relative;
    padding-left: 30px;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1e3a8a 0%, #fbbf24 100%);
}

.career-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.career-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border: 3px solid #1e3a8a;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.career-period {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 15px;
}

.career-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.career-position {
    font-size: 15px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
}

.career-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

.career-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.career-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
}

.career-link i {
    font-size: 12px;
}

/* 求めている人セクション */
.target-section {
    margin-bottom: 40px;
}

.target-cards {
    display: grid;
    gap: 20px;
}

.target-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 100%);
}

.target-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-color: #fbbf24;
}

.target-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.target-icon i {
    font-size: 24px;
    color: #fbbf24;
}

.target-service {
    font-size: 19px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

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

.persona-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
}

.persona-item:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(5px);
}

.persona-item i {
    font-size: 16px;
    color: #3b82f6;
    min-width: 20px;
}

.persona-item span {
    font-size: 14px;
    color: #1e3a8a;
    font-weight: 600;
}

/* 事業・サービス紹介セクション */
.services-section {
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 100%);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-color: #fbbf24;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: #fbbf24;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.service-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.service-catchphrase {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.service-details {
    margin-top: 20px;
}

.service-item {
    margin-bottom: 18px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 3px solid #d1d5db;
}

.service-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-item h4 i {
    color: #3b82f6;
}

.service-item.recommend {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 3px solid #3b82f6;
}

.service-item.recommend h4 {
    color: #1e3a8a;
}

.service-item.recommend h4 i {
    color: #fbbf24;
}

.service-item p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.service-item ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.service-item ul li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 5px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.service-link i {
    font-size: 14px;
}

/* お問い合わせセクション */
.contact-section {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.email-contact {
    margin-bottom: 20px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #1e3a8a;
    border-radius: 30px;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.email-link i {
    font-size: 18px;
}

.contact-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.45);
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-content p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e3a8a;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option:first-child {
    background: linear-gradient(135deg, #00c300 0%, #00a000 100%);
}

.contact-option:last-child {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-option i {
    font-size: 20px;
    margin-right: 10px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
    }
    
    .profile-header {
        padding: 30px 20px;
    }
    
    .basic-info-section {
        padding: 20px 15px;
    }
    
    .basic-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item {
        padding: 12px 15px;
    }
    
    .profile-image img {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 26px;
    }
    
    .profile-title {
        font-size: 16px;
    }
    
    .basic-info-section {
        padding: 20px 15px;
    }
    
    .basic-info-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-item {
        padding: 10px 12px;
    }
    
    .info-item i {
        font-size: 16px;
    }
    
    .info-item a {
        font-size: 13px;
    }
    
    .profile-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 19px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .social-link {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .hobbies-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-container {
        justify-content: center;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 19px;
    }
    
    .service-links {
        flex-direction: column;
    }
    
    .service-link {
        min-width: 100%;
    }
    
    .career-timeline {
        padding-left: 25px;
    }
    
    .career-item {
        padding-left: 20px;
    }
    
    .career-title {
        font-size: 16px;
    }
    
    .target-icon {
        width: 45px;
        height: 45px;
    }
    
    .target-icon i {
        font-size: 20px;
    }
    
    .target-service {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .basic-info-section {
        padding: 15px 10px;
    }
    
    .info-item {
        padding: 8px 10px;
    }
    
    .info-item a {
        font-size: 12px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .hobbies-container {
        grid-template-columns: 1fr;
    }
    
    .skill-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-catchphrase {
        font-size: 14px;
    }
    
    .service-item h4 {
        font-size: 14px;
    }
    
    .career-title {
        font-size: 15px;
    }
    
    .career-position {
        font-size: 14px;
    }
    
    .career-description {
        font-size: 13px;
    }
    
    .target-service {
        font-size: 16px;
    }
    
    .persona-item {
        padding: 8px 12px;
    }
    
    .persona-item span {
        font-size: 13px;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.6s ease;
}

.skill-tag, .hobby-item, .social-link {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.skill-tag:nth-child(1) { animation-delay: 0.1s; }
.skill-tag:nth-child(2) { animation-delay: 0.2s; }
.skill-tag:nth-child(3) { animation-delay: 0.3s; }
.skill-tag:nth-child(4) { animation-delay: 0.4s; }
.skill-tag:nth-child(5) { animation-delay: 0.5s; }
.skill-tag:nth-child(6) { animation-delay: 0.6s; }
.skill-tag:nth-child(7) { animation-delay: 0.7s; }
.skill-tag:nth-child(8) { animation-delay: 0.8s; }
