@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
        /* リセットCSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

		:root {
	    --primary-color: #0086c9;
   		--secondary-color: #dd5519;
   		--primary-light: #47c5f1;
    	--secondary-light: #e99953;
    	--primary-super-light: #f2f9fc;
    	--secondary-super-light: #fff8f3;
		--primary-dark: #003268;
    	--accent-color: #ff0000;
    	--text-dark: #3f3225;
    	--text-light: #8c8c8c;
    	--white: #fff;
    	--shadow: 0 4px 20px rgba(0,0,0,0.1);
    	--border-radius: 12px;
    	--transition: all 0.3s ease;
		}

        
        
        body {
            font-family: "Noto Sans JP", sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #fff;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* ヘッダー */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--primary-super-light);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
        }
        
        .header-container {
            max-width: 1184px !important;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        .logo {
            margin: 0;
			padding: 0;
        }
		.logo img{ 
			width: 250px;
		}
        
        .header-nav a {
            color: var(--text-dark);
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .header-nav a:hover {
            color: var(--primary-color);
        }
        
        /* メインコンテナ */
        .container {
            max-width: 1184px !important;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ヒーローセクション */
        .hero-section {
            margin-top: 80px;
            padding: 3rem 0;
            background: linear-gradient(135deg, #f2f9fc 0%, #fff8f3 100%);
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-text {
            padding: 2rem 0;
        }
        
        .feature-icon {
            width: fit-content;
            height: 40px;
            background-image: linear-gradient(240deg, #47c5f1, #0086c9);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
			padding: 0 20px;
            color: white;
			font-weight: 600;
            font-size: 1.0rem;
        }
        
        .hero-title {
            font-size: 1.9rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.4;
        }
        
        .hero-lead {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        /*
        .button-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        */
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 36px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
            min-width: 150px;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .hero-image {
            text-align: center;
        }
        
        .hero-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* プロフィールセクション */
        .profile-section {
            padding: 4rem 0;
            background: var(--white);
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background: var(--text-light);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .profiles {
/*            display: grid;
            grid-template-columns: 1fr 1fr;*/
			display: flex;
			justify-content: center;
            gap: 3rem;
        }
        
        .profile-card {
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
			display: flex;
			justify-content: space-between;
			gap: 30px;
        }
        .interview-person-a-card{ background: var(--primary-super-light);}
		.interview-person-b-card{ background: var(--secondary-super-light);}

        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--text-dark);
        }

		.profile-avatar img{ border-radius: 60px;}
		.profile-detail{
			text-align: left;
			width: calc(100% - 120px);
		}

        .profile-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }

		.profile-name span{ font-size: 0.7rem; margin: 0 0 0 20px;}

		.interview-person-a{ color: var(--primary-color);}
		.interview-person-b{ color: var(--secondary-color);}
        
        .profile-title {
            font-size: 0.8rem;
			font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .profile-bio {
            font-size: 0.9rem;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* インタビューセクション */
        .interview-section,
		.interview_imgs {
            padding: 4rem 0;
        }
        
		.interview_imgs{
			text-align: center;
		}
        .interview-theme {
            text-align: left;
            margin-bottom: 3rem;
        }
        
        .theme-icon {
            width: fit-content;
            height: 40px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin: 0 0 1.0rem;
			padding: 0 20px;
            font-size: 1.0rem;
			font-weight: 600;
			background: var(--white);
		}
        
		.theme-color-a{
		    color: var(--primary-color);
			border: 2px solid var(--primary-light);
		}
		.theme-color-b{
            color: var(--secondary-color);
			border: 2px solid var(--secondary-light);
		}

        .theme-title {
            font-size: 2.0rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .theme-lead {
            font-size: 1.0rem;
            color: var(--text-light);
            max-width: 100%;
            margin: 0 auto;
        }
        
        .qa-list {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .qa-item {
            margin-bottom: 3rem;
            overflow: hidden;
        }

.interview-answer-a{ border-left: 5px solid var(--primary-light);}
.interview-answer-b{ border-left: 5px solid var(--secondary-light);}
        
        .question {
            color: var(--text-dark);
            padding: 1.5rem;
            font-weight: bold;
            position: relative;
        }
        
        .question::before {
            content: 'Q';
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .question-text {
            margin-left: 2.5rem;
        }
        
        .answer {
            padding: 2rem 1.5rem;
            position: relative;
        }
        
        .answer::before {
            content: 'A';
            position: absolute;
            left: 1.5rem;
            top: 2rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .interview-answer-a .answer::before {
            color: var(--primary-color);
        }

        .interview-answer-b .answer::before {
            color: var(--secondary-color);
        }

		.answer-text {
            margin-left: 2.5rem;
            line-height: 1.8;
        }

        /* 対談チャット風デザイン */
        .chat-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .chat-message {
            display: flex;
            margin-bottom: 2rem;
            align-items: flex-start;
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Aさん（左側）のスタイル */
        .chat-message.person-a {
            flex-direction: row;
        }
        
        .chat-message.person-a .chat-avatar {
            margin-right: 1rem;
        }
        
        .chat-message.person-a .chat-bubble {
            background: var(--primary-super-light);
            color: var(--text-dark);
			border:1px solid var(--primary-light);
            border-radius: 0px 20px 20px 20px;
        }
        
        /* Bさん（右側）のスタイル */
        .chat-message.person-b {
            flex-direction: row-reverse;
        }
        
        .chat-message.person-b .chat-avatar {
            margin-left: 1rem;
        }
        
        .chat-message.person-b .chat-bubble {
            background: var(--secondary-super-light);
            color: var(--text-dark);
			border:1px solid var(--secondary-light);
            border-radius: 20px 0px 20px 20px;
        }
                
        /* アバター */
        .chat-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .chat-avatar.avatar-a {
            background: var(--white);
			border: 1px solid;
			border-color: var(--text-light);
        }
        
        .chat-avatar.avatar-b {
            background: var(--white);
			border: 1px solid;
			border-color: var(--text-light);
        }
        
        /* 吹き出し */
        .chat-content {
            flex: 1;
            max-width: 70%;
        }
        
        .chat-bubble {
            position: relative;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .chat-name {
            font-size: 0.8rem;
            color: #666;
            font-weight: bold;
            margin-bottom: 0.2rem;
        }
        
        .person-b .chat-name {
            text-align: right;
        }
        
        .chat-time {
            font-size: 0.7rem;
            color: #999;
            margin-top: 0.3rem;
        }
        
        .person-b .chat-time {
            text-align: right;
        }

		.chat-img{
			margin: 0 auto 2rem;
			padding: 2rem 0;
		}
        
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            
            .chat-container {
                padding: 1rem;
                margin: 0 10px;
            }
            
            .chat-content {
                max-width: 85%;
            }
            
            .chat-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .chat-bubble {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        
        /* インサイトセクション 
        .insight-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f2f9fc 0%, #fff8f3 100%);
		}
        
        .insights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .insight-card {
            padding: 2rem;
            border-radius: 10px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
			background: var(--white);
        }
        
        .insight-card:hover {
            transform: translateY(-5px);
        }
        
        .insight-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem 0;
            color: white;
            font-size: 1.5rem;
        }
        
        .insight-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .insight-summary {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.8;
        }*/
        
        /* CTAセクション */
        .cta-section {
            padding: 4rem 0;
            background: var(--white);
            text-align: center;
        }
        
        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }
        
        .cta-lead {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .btn-white:hover {
            background: transparent;
			background-color: var(--primary-light);
            color: var(--white);
        }
        
        .btn-outline {
            background: transparent;
            background-color: var(--white);
            border: 2px solid var(--text-light);
			color: var(--text-dark);
        }
        
        .btn-outline:hover {
            background: var(--primary-super-light);
            color: var(--primary-color);
			border-color: var(--primary-color);
        }
        
        /* フッター */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
        }

		.footer-logo img{ width: 150px;}
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        
        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            text-align: left;
            padding-top: 1rem;
			border-top:1px solid var(--white);
            color: var(--white);
            font-size: 0.9rem;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .header-nav {
                display: flex;
                gap: 1rem;
            }
            
            .header-nav a {
                margin-left: 0;
                font-size: 0.9rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            /*
            .button-group {
                flex-direction: column;
            }
            */
            .profiles {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .insights {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
			
			.profile-card{ display: block;}
			.profile-detail{ width: 100%;}
			.chat-container{ padding: 0;}
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-section {
                padding: 2rem 0;
            }
            
            .profile-section,
            .interview-section,
            .insight-section,
            .cta-section {
                padding: 3rem 0;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .qa-item {
                margin-bottom: 2rem;
            }
            
            .question,
            .answer {
                padding: 1rem;
            }
            
            .question-text,
            .answer-text {
                margin-left: 2rem;
            }
        }




        .header-shadow {
            box-shadow: var(--box-shadow-sm);
          }

          .header-shadow {
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          }
          
          :root {
            --box-shadow-xs:
              0 1px 2px 0 rgba(10, 13, 18, 0.05);
            --box-shadow-sm:
              0 1px 3px 0 rgba(10, 13, 18, 0.1),
              0 1px 2px -1px rgba(10, 13, 18, 0.1);
            --box-shadow-md:
              0 4px 6px -1px rgba(10, 13, 18, 0.1),
              0 2px 4px -2px rgba(10, 13, 18, 0.06);
            --box-shadow-lg:
              0 12px 16px -4px rgba(10, 13, 18, 0.08),
              0 4px 6px -2px rgba(10, 13, 18, 0.03),
              0 2px 2px -1px rgba(10, 13, 18, 0.04);
            --box-shadow-xl:
              0 20px 24px -4px rgba(10, 13, 18, 0.08),
              0 8px 8px -4px rgba(10, 13, 18, 0.03),
              0 3px 3px -1.5px rgba(10, 13, 18, 0.04);
          }

          .help-cta .faq-cta-button {
            padding: 1.25rem 2.5rem;
            font-size: 1.125rem;
          }

          /* FAQ CTA Button */
.faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem 1.1rem;
    background-color: #0086C9;
    line-height: 1;
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
  }
  
  .faq-cta-button:hover {
    background-color: #065986;
    box-shadow: var(--box-shadow-md);
  }
  
  .faq-cta-button:active {
    transform: translateY(0);
  }


  /* Footer Text Link */
.footer-text-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-text-link:hover {
    color: #C3D2EA;
  }
  
  .footer-text-link:hover img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(8%) saturate(1000%)
      hue-rotate(180deg) brightness(92%) contrast(92%);
  }
  
  .footer-text-link--icon {
    gap: 0.375rem;
  }