/* CSS Variables */
:root {
    --primary-color: #e3fc03;
    --secondary-color: #f2f2f2;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

html, body {
    overscroll-behavior-x: none; /* 横方向のバウンス抑制 */
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    font-size: 4rem;
}

h2 {
    /* font-size: clamp(2rem, 4vw, 3rem); */
    font-size: 3rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 4px;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.primary-button, .cta-button {
    background-color: var(--primary-color);
    color: var(--black);
}

.primary-button:hover, .cta-button:hover {
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: var(--max-width); */
    margin: 0 auto;
    padding: 0 20px;
    padding: 0 40px 0 20px;
}

.nav-logo h2 {
    color: var(--black);
    margin: 0;
    font-size: 1.5rem;
}
.nav-logo > a{
    text-decoration: none;
}
.nav-logo > a > img{
    width: 120px;
    display: block;
    /* margin: -10px 10px; */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 10px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-menu a > img{
    width: 20px;
    /* aspect-ratio: 5/3; */
    aspect-ratio: 1/1;
    height: auto;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
}
.nav-menu li:nth-last-child(1) a{
    font-weight: bold;
}
.nav-menu >li{
    height: fit-content;
    margin: auto 0;
}
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-container > .cta-button{
    padding: 15px 20px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.3rem;
    /* margin-bottom: 2.5rem; */
    color: var(--gray-dark);
}
.hero-content-labels{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.hero-content-labels > li{
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.06);
    list-style: none;
    padding: 5px 10px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 5px;
    font-weight: bold;
    background: linear-gradient(90deg, #00e1ff 0%, #e3fc03 100%);
    color: #fff;
    font-size: 1.1rem;
    color: #000;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-video{
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 10;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.text-highlight{
    font-size: 5.5rem;
    /* color: #e3fc03;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #FFF solid; */
    background: linear-gradient(90deg, #00e1ff 0%, #e3fc03 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.text-highlight > span{
    font-size: 3.5rem;
    margin-left: 5px;
}
.hero-content h1{
    margin-bottom: 0;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-avatars {
    display: flex;
}

.stat-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px;
}

.stat-avatars img:first-child {
    margin-left: 0;
}

.stat-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-text span {
    color: var(--gray-medium);
}

.hero-quote {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 300px;
}

.hero-quote blockquote {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hero-quote cite {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: -1;
}

.hero-brands {
    margin-top: 4rem;
    text-align: center;
}

.hero-brands p {
    margin-bottom: 2rem;
    color: var(--gray-medium);
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* opacity: 0.6; */
}

.brands-container img {
    height: 250px;
    width: auto;
    /* filter: grayscale(100%); */
    /* transition: var(--transition); */
}
.badge-spcial{
    scale: 1.2;
}

.brands-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 85px;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature p {
    margin: 0;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-card p {
    margin: 0;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Courses Section */
.courses-page{
    padding-top: 150px;
}
.courses {
    background-color: var(--secondary-color);
}
.courses > .container{
    padding: 0 0;
}
.section-header{
    padding: 0 20px;
}

.course-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-item.active,
.category-item:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.category-icon {
    font-size: 2rem;
}

.category-item h4 {
    margin: 0;
    font-size: 1.2rem;
}

.category-item span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.courses-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    display: flex;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: space-around;
}
.courses-grid > a{
    text-decoration: none;
    color: #1a1a1a;
    max-width: 350px;
    display: block;
    /* margin: 10px; */
    margin-bottom: 20px;
}
.courses-grid > a:hover{
    color: #e3fc03;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 350px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1420/1000;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.course-content {
    padding: 2rem;
    height: calc(100% - 200px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.course-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.course-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructor img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.instructor span {
    font-weight: 500;
    font-size: 0.9rem;
}

.course-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

.view-all-button {
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    z-index: 3;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--black);
}

.step p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-features span {
    background-color: var(--secondary-color);
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Section */
.team {
    background-color: var(--secondary-color);
}

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

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-flex{
    display: flex;
    justify-content: space-around;
    
}
.team-flex > img{
    width: 50%;
    max-width: 500px;
    margin-right: 40px;
    display: block;
    box-shadow: var(--shadow-lg);
    border: #fff 3px solid;
    border-radius: 20px;
}
.team-flex > img:hover{
    /* scale: 1.1; */
    transform: scale(1.05);
    transition: var(--transition);
}
.team-texts{
    width: 45%;
    max-width: 450px;
}

.member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 300px);
    justify-content: space-between;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-role {
    color: #ff9800;
    
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--gray-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    max-width: 560px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    /* background-color: var(--secondary-color); */
    background-color: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background-color: var(--primary-color);
    color: var(--black);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.pricing-plans{
    display: flex;
    width: fit-content;
    margin: 0 auto;
    gap: 20px;
}
.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    width: fit-content;
    border: #000 2px solid;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.pricing-header p {
    margin-bottom: 2rem;
    color: var(--gray-medium);
}

.pricing-price {
    /* margin-bottom: 2rem; */
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}
.price-amount > span{
    font-size: 1.5rem;
}

.price-period {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    width: fit-content;
    margin: 10px auto 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--secondary-color);
    list-style: none;
}

.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-get-started{
    width: 100%;
    display: block;
    font-size: .85rem;
    text-decoration: none;
    padding: .8rem !important;
    box-shadow: var(--shadow-sm);
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.pricing-button.primary {
    background-color: var(--primary-color);
    color: var(--black);
}

.pricing-button.secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    color: var(--gray-medium);
    font-style: italic;
}



/* pricing new */
.pricing-contents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pricing-content-section{
    width: 45%;
    margin: auto;
    min-width: 340px;
}

.pricing-addons{
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    border: #e3fc03 2px solid;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
}
.pricing-message{
    width: 90%;
    max-width: 800px;
    margin: 10px auto;
    text-align: center;
}
.pricing-addons > h3{
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}
.pricing-addon{
    margin: 20px 0;
    list-style: none;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
}
.pricing-addon-surface{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    /* background-color: #f2f2f2; */
    /* box-shadow: var(--shadow-md); */
    transition: var(--transition);
    cursor: pointer;
}
.pricing-addon-surface > h3{
    font-size: 1rem;
    margin-bottom: 0;
    margin: auto 0;
}
.pricing-addon-surface > span{
    font-size: 1.1rem;
    margin: auto 0;
    display: block;
}

.pricing-addon-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.pricing-addon-description.addon-active {
    max-height: 200px;
    opacity: 1;
}

.pricing-addon-description > p{
    padding: 10px 20px;
    margin-bottom: 0;
}
/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-dark);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.author-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
    font-size: 1rem;
}

.rating {
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq {
    background-color: var(--secondary-color);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 2rem 2rem;
    margin: 0;
}

/* CTA Section */
.cta {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #d4ed02 100%); */
    background-color: #e3fc03;
    color: var(--black);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}
.cta h2 span{
     background: linear-gradient(120deg, #fff 0%, #fff 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 4px;
    font-size: clamp(2.2rem, 4.4vw, 3.85rem);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta .secondary-button {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta .secondary-button:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.cta-feature span {
    font-size: 2rem;
    background-color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.cta-feature p {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 2rem;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-divider {
    height: 1px;
    background-color: #333;
    margin-bottom: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    margin: 0;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.pricing .carousel-dots{
    display: none;
}

/* カルーセル用のCSS追加 */
/* カルーセル用のCSS追加 */
@media (max-width: 1012px) {
    .carousel-container {
        position: relative;
        margin: 0 auto;
        overflow: hidden;
    }
    
    /* 2枚表示用コンテナ */
    .carousel-container.two-cards {
        width: 700px; /* 340px × 2 + 20px gap */
    }
    
    /* 1枚表示用コンテナ */
    .carousel-container.one-card {
        width: 340px;
    }
    
    .pricing-grid {
        position: relative;
        display: flex;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 1040px; /* 340px × 3 + 20px × 2 = 1040px */
    }
    
    .pricing-card {
        /* min-width: 340px; */
        /* max-width: 340px; */
        flex-shrink: 0;
    }
    
    /* ドットナビゲーション */
    .pricing-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 30px;
        padding: 0;
        list-style: none;
    }
    
    .pricing-carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: none;
    }
    
    .pricing-carousel-dot.active {
        background-color: #e3fc03;
    }
    
    .pricing-carousel-dot:hover {
        background-color: #999;
    }

    .products-contents{
        flex-direction: column-reverse;
    }
    .products-lists{
        width: fit-content;
        margin: 0 auto;
    }
    .products-content > a{
        margin-top: 50px;
    }
    .hero-container {
        display: flex;
        /* grid-template-columns: 1fr; */
        flex-direction: column;
        text-align: center;
        max-width: 600px;
    }
    .contact-hero{
        margin: 0 auto;
    }
    .pricing-plans{
        flex-direction: column;
    }
    .whatsapp-link{
        margin: 30px auto !important;
    }
}
@media (max-width: 850px) {
    .nav-logo > a > img{
        width: 110px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    .nav-menu >li{
        /* height: 100%; */
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    .hero-image{
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
    .courses-grid{
        width: fit-content;
        margin: 0 auto;
    }
    .view-all-button{
        margin-top: 40px;
    }

    .nav-menu{
        margin: 0;
        display: none;
        box-shadow: none;
    }
    .nav-menu.active{
        display: flex;
    }

    .brands-container img.brand-badge-1{
        order: 3;
    }
    .brands-container img.badge-spcial{
        order: 1;
        margin: 30px 200px;
    }
    .brands-container img.brand-badge-3{
        order: 2;
    }
    .pricing-card{
        /* margin: 30px 0; */
    }
    .pricing-badge{
        white-space: nowrap;
    }
    .pricing-addons{
        width: 100%;
        padding: 3rem 1rem;
    }
    .team-flex{
        flex-direction: column;
    }
    .team-flex > img{
        width: 100%;
        margin: 30px auto;
        object-fit: cover;
    }
    .team-texts{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .team-texts > h2{
        font-size: 2.8rem;
    }


    /* buy page */
    .products-contents{
        flex-direction: column-reverse;
    }
    .products-lists{
        flex-direction: column;
    }
    .products-content{
        width: 100% !important;
        margin-top: 50px !important;
    }
    .products-content > a{
        /* max-width: 100% !important; */
        margin: 0 auto;
    }
    .count-title-line{
        font-size: 4rem !important;
    }
    .discount-coupon-title{
        font-size: 1.5rem !important;
    }
    #countdown > .time-box{
        width: 70px !important;
    }
    .time-box > .number{
        font-size: 2.5rem !important;
    }
    .discount-coupon{
        flex-direction: column;
        padding: 30px 10px !important;
        width: 95% !important;
    }
    #countdown > .time-box{
        margin: 0 5px !important;
    }

    .contact-hero{
        margin: 0 auto;
    }
    .pricing-card{
        flex-direction: column;
    }
    .pricing > .container > .swiper{
        /* padding-right: 0; */
    }
}
@media (max-width: 650px) {
    .hero-container{
        max-width: 400px;
    }
    .hero-container{
        gap: 0;
    }
    .footer-links {
        gap: 1rem;
    }

    .discount-coupon-container{
        padding: 0 0 30px !important;
    }

    .contact-hero:has(.contact-hero-field.active textarea) button, .contact-hero.message-open button {
        margin-left: 0 !important;
    }
    
    .contact-hero .contact-hero-field:nth-of-type(1),
    .contact-hero-field:has(> input){
    position: static;
    }
    .contact-hero .contact-hero-field:nth-of-type(2),
    .contact-hero-field:has(> select){
    position: static;
    }
    .contact-hero .contact-hero-field:nth-of-type(3),
    .contact-hero-field:has(> input){
    position: static;
    }
    .contact-hero-field input, .contact-hero-field select{
        position: absolute;    /* フォーム下に重ねる */
        left: 0;
        right: 0;              /* ← left/right指定でフォーム幅いっぱいを保証 */
        top: 90% !important;
        width: 100% !important;           /* 親フォーム幅にフィット */
        max-width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all .4s ease;
    
        border: none;
        border-radius: 16px;
        /* min-height: 140px; */
        resize: vertical;
        padding: 12px;
        background: #fff !important;
    
        /* textarea 自体の立体感（フォームから更に“もう一段”浮かす） */
        box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.10);
        z-index: 5;
    
        -webkit-appearance: none;
        appearance: none;
        resize: none;
        outline: none;
    }
    .contact-hero-field.required::before{
        display: none;
    }
    .contact-hero{
        margin-bottom: 160px; /* textarea の高さに合わせて調整 */
        transition: margin-bottom 0.4s ease;
        width: 100% !important;
        justify-content: space-around !important;
    }
    .contact-hero-field i{
        font-size: 30px !important;
    }
    .contact-hero .send-btn{
        margin-left: 0 !important;
    }
    .contact-hero-field input, .contact-hero-field select{
        margin-left: 0 !important;
    }
    .contact-hero-field input, .contact-hero-field select{
        padding: 12px !important;
    }
    .contact-hero-field select {
        /* z-index: 100; */
        font-weight: bold;
        text-align: center;
    }
    .contact-hero {
        overflow: visible;
    }

    .contact-hero-sticky > .contact-hero-field input,.contact-hero-sticky > .contact-hero-field select,.contact-hero-sticky > .contact-hero-field textarea{
        top: auto !important;
        bottom: 100% !important;
        transform: translateY(-10px) !important;
    }
    .contact-hero-sticky::before{
        top: auto !important;
        bottom: -12px;
    }
    .contact-hero-sticky{
        width: 95% !important;
    }
    .contact-hero-sticky{
        margin-bottom: 0!important;
    }
    .contact-hero-field.active > input[type="email"],
    .contact-hero-field.active > select,
    .contact-hero-field.active > input[type="text"],
    .contact-hero-field.active > textarea{
        z-index: 100 !important;
    }
    .cta-form{
        padding: 30px 20px !important;
    }
    .text-highlight{
        font-size: 5rem;
    }
    form.contact-hero.contact-hero-sticky img.emphasize{
        z-index: 9999;
        top: unset !important;
        bottom: 5px;
    }

    .profile > .container{
        flex-direction: column !important;
    }
    .profile-image{
        margin: 0 auto;
    }
    .profile-text{
        width: 100% !important;
        padding: 50px 0 !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-content > h1{
        font-size: 2.8rem;
    }
    .text-highlight > span{
        font-size: 2rem;
        margin-left: 5px;
    }
    .brands-container img.brand-badge-1{
        order: 1;
    }
    .brands-container img.badge-spcial{
        order: 2;
    }
    .brands-container img.brand-badge-3{
        order: 3;
    }
    .about-text > h2{
        font-size: 3rem;
    }
    .section-header{
        margin-bottom: 2rem;
    }
    .courses-cta > form{
        max-width: 95% !important;
        margin: 0 auto; 
        padding: 16px 10px 16px 16px !important;
    }
    .courses-cta > form i{
        font-size: 23px !important;
    }
    .courses-cta > form input[type="email"]{
        font-size: 14px !important;
        margin-right: 0 !important;
    }
    .courses-cta > form .send-btn{
        font-size: 16px !important;
    }
}
@media (max-width: 380px) {
    .pricing-content-section{
        min-width: 320px;
    }
    .pricing-card{
        /* max-width: 320px;
        min-width: 320px; */
    }
    .text-highlight{
        font-size: 4.7rem;
    }
    .hero-content-labels > li{
        font-size: 1rem;
    }
    .hero-btn-contact{
        /* padding: 10px !important; */
        min-width: unset !important;
        flex-direction: column-reverse;
        font-size: .8rem !important;
        padding: 5px !important;
        }
        .hero-btn-contact > i{
            font-size: 2rem !important;
            margin-left: unset !important;
            padding-right: unset !important;
        }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.about-features .feature,
.course-card,
.team-member,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4ed02;
}




/* 
    Policy
*/

.policy{
    padding: 100px 3% 3%;
}
.terms-intros{
    margin: 20px 0;
}
.terms-intros > h2{
    font-size: 1.4rem;
    text-align: center;
}
.policy p{
    font-size: 1rem;
    color: #1a1a1a;
}
.article{
    margin: 20px 0;
}
.article > h3{
    font-size: 1.2rem;
}
.article-sub-list{
    list-style: decimal;
    padding-left: 30px;
}
.article-sub-list > li{
    margin: 10px 0;
}
.article-sub-sub-list{
    list-style: none;
    padding-left: 10px;
}
.article-sub-sub-list > li{
    margin: 5px 0;
}
.privacy-article-footer{
    list-style: none;
    padding-left: 20px;
}
.privacy-article-footer li > span{
    font-weight: bold;
}

.tokushou_ul > h2{
    font-size: 1.4rem;
    margin: 50px 0;
    text-align: center;
}
.tokushou_ul {
    max-width: 800px;
    margin: 0 auto;
}
.tokushou_ul > li{
    list-style: none;
    margin: 30px 0;
}
.tokushou_ul > li > h3{
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-left: #333 solid 7px;
    padding-left: 10px;
}
.tokushou_ul > li > span{
    font-size: 1rem;
    padding-left: 20px;
    display: block;
}
.tokushou_ul > li:nth-last-child(2) > span{
    display: block;
}
.tokushou_ul > li > span > ul > li{
    font-size: .9rem;
    margin: 10px 0;
}
.tokushou_ul > li > span > ul > li > ul{
    padding-left: 10px;
}
.tokushou_ul > li > span > ul > li > ul > li{
    margin: 5px 0;
}
.version-swich{
    margin: 20px auto;
    display: flex;
    width: fit-content;
}
.version-swich > a{
    text-decoration: none;
    color: #fff;
    background-color: #1a1a1a;
    display: block;
    padding: 10px 15px;
    width: fit-content;
    border: #1a1a1a 2px solid;
    border-right: #fff solid 2px;
}.version-swich > a:hover{
    background-color: #fff;
    color: #1a1a1a;
    border-right: #1a1a1a solid 2px;
}
.version-swich > a:nth-child(1){
    /* border-right: #fff solid 1px; */
}
.article-descriptions > ul{
    padding-left: 30px;
}
.article-descriptions > ul > li{
    margin: 5px 0;
}
.article-descriptions > ul > li > a{
    color: #1a1a1a;
}
.article-descriptions > ul > li > a:hover{
    color: #d4ed02;
}


.hidden {
    display: none;
}



/* cta-form */
.cta-form{
    /* width: 80%; */
    margin: 20px auto 50px;
    /* display: none; */
    scroll-margin-top: 150px;
    transition: var(--transition);
    width: 100%;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 20px;
}
.form-fields{
    display: flex;
    justify-content: space-between;
}
.form-fields > .form-field{
    width: 49%;
}
.form-field > input, .form-field > select, .form-field > textarea{
    width: 100%;
    padding: 15px 0;
    border: none;
    text-align: center;
    /* outline: #1a1a1a 2px solid; */
    background-color: #fff;
    border-radius: 10px;
    outline: none;
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.06);
}
.form-field > select{
    font-weight: bold;
}
.form-field{
    margin: 10px 0;
}
.form-field > h3{
    text-align: left;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.form-field > textarea{
    text-align: left;
    resize: none;
    height: 150px;
    padding: 15px;
}
.cta-content > form > button{
    padding: 13px 0;
    display: block;
    width: 100%;
    /* background-color: #1a1a1a; */
    outline: none;
    border: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    /* border: #1a1a1a 2px solid; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.06);
    transition: .3s ease;
}
.cta-content > form > button:hover{
    /* background-color: #fff; */
    /* color: #fff; */
    /* border: #fff 2px solid; */
    background-image: linear-gradient(90deg, #f15120, rgb(238, 180, 3));
}


.header-btn{
    background-color: #e3fc03;
    color: #1a1a1a;
    font-size: 1.2rem;
    display: block;
    padding: 10px 40px 10px 30px;
    width: fit-content;
    text-align: center;

    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
}
.header-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #000000;
    border-right: 4px solid rgb(0, 0, 0);
  }
  .header-btn:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
.hero-btn-contact{
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    /* background-color: var(--primary-color); */
    /* color: var(--black); */
    /* background: linear-gradient(135deg, #FF7F50, #FFB347); */
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    box-shadow: var(--shadow-md);
}
.hero-btn-contact > i{
    margin-left: 10px;
}
.hero-btn-contact:hover{
    /* background-color: #d4ed02; */
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e67247, #e5a03f);
}
.hero-btn-order{
    padding: 13px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}
.hero-btn-order:hover{
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
}



.thank-you-section {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
    padding: 50px 3% 0;
  }
  
  .thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .thank-you-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-home {
    background-color: #e3fc03;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    /* margin-bottom: 30px; */
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
  }
  
  .btn-home:hover {
    background-color: #d4ed02;
  }
  .thank-btn-lists{
      margin: 20px 0;
  }
.thank-btn-lists > li{
    padding: 20px 20px 10px;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
}
.thank-btn-lists > li > p{
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0 !important;
}
.thank-btn-lists > li > a{
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    color: #fff;
    padding: 5px 30px 5px 20px;
    display: block;
    margin: 10px auto;
    width: 160px;
    position: relative;
}
.thank-btn-lists > li > a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}
.thanks-pricing > a{
    background: linear-gradient(135deg, #FF7F50, #FFB347);
}
.thanks-buy > a{
    background: linear-gradient(135deg, #007aff, #00c6ff);
}
.thank-btn-lists > li::before{
    position: absolute;
    top: -12px;
    left: 16px;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    /* background: linear-gradient(135deg, #FF7F50, #FFB347); */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 101;
    pointer-events: none;
}
.thank-btn-lists > li:nth-child(1)::before{
    background: linear-gradient(135deg, #FF7F50, #FFB347);
    content: "Pricing";
}
.thank-btn-lists > li:nth-child(2)::before{
    background: linear-gradient(135deg, #007aff, #00c6ff);
    content: "Purchase";
}




/*  */
/* products page */
/*  */

.products{
    padding-top: 120px;
    padding-bottom: 30px;
}
.products-top{
    padding: 0 3%;
}
.products-top > h2{
    font-size: 2.5rem;
    text-align: center;
}

.products-contents{
    display: flex;
    width: 95%;
    margin: 40px auto;
    max-width: 960px;
}
.tent{
    width: 30%;
    display: inline-block;
    margin: auto 10px;
}
.products-content > a{
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    display: block;
    padding: 0 20px;
    /* box-shadow: var(--shadow-sm); */
}
.products-content > a > img{
    width: 100%;
    display: block;
}
.products-content > a > h2{
    font-size: 1.2rem;
    text-align: center;
    color: #333;
}

.products-lists{
    display: flex;
    /* width: 70%; */
    gap: 30px;
    /* border-left: #6c757d 2px solid; */
    padding-left: 20px;
}
.products-lists > li{
    width: 50%;
    width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
    box-shadow: var(--shadow-md);
    padding: 45px 10px 20px;
    list-style: none;
    border-radius: 20px;
}
.products-lists > li > img{
    width: 60%;
    max-width: 130px;
    aspect-ratio: 1/1;
    height: auto;
    background-color: #fff;
    filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px 2px 4px) drop-shadow(rgba(0, 0, 0, 0.05) 0px 1px 1.5px);
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}
.product-details{
    margin: 15px 0 0;
}
.product-details > h3{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(79, 79, 79);
    text-align: center;
    margin-bottom: 0;
}
.product-details > span{
    font-size: .9rem;
    display: block;
    text-align: center;
    margin-top: -2px;
    color: #999;
    font-weight: 200;
}
.product-price{
    display: block;
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}
.product-include{
    background-color: fff;
    /* box-shadow: var(--shadow-md); */
    width: 100%;
    padding: 10px 3%;
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.product-include > p{
    font-size: 1rem;
    margin-bottom: 0;
    /* color: #333; */
    text-align: center;
    border-radius: 10px;
}
.product-purchase-btn{
    width: 90%;
    background-color: #e3fc03;
    color: #000000;
    padding: 10px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px auto 0;
    box-shadow: var(--shadow-md);
}
.product-purchase-btn:hover{
    background-color: #d4ed02;
}
.product-accept-cards{
    margin: 5px 0;
}
.product-accept-cards > span{
    color: #999;
    font-size: .9rem;
    text-align: center;
    font-weight: 200;
    display: block;
}
.product-accept-cards > ul{
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.product-accept-cards > ul > li{
    margin: auto 5px;
    list-style: none;
    height: fit-content;
}
.product-accept-cards > ul > li > img{
    width: 30px;
    display: block;
    margin: auto 0;
    /* object-fit: cover; */
    border-radius: 3px;
}
.product-accept-cards > ul > li:nth-child(3) > img{
    aspect-ratio: 16/9;
    height: auto;
}.product-accept-cards > ul > li:nth-child(4) > img{
    width: 40px;
}

.discount-coupon{
    width: 90%;
    max-width: 980px;
    margin: 30px auto;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    padding: 30px 80px 40px;
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    display: flex;
}
.discount-coupon-title{
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem !important;
    text-align: center;
    /* margin-bottom: 0; */
}
.count-title-line{
    font-size: 5rem;
    display: block;
    text-align: center;
    line-height: 1;
}
.discount-coupon > span{
    color: #fffefe;
    font-size: 1.3rem;
    text-align: center;
    /* margin: 10px 0 5px; */
    font-weight: bold;
    display: block;

}
#countdown{
    display: flex;
    width: fit-content;
    margin: 10px auto 0;
    margin: auto;
}
#countdown > .time-box > span{
    display: block;
    text-align: center;
}
#countdown > .time-box{
    width: 80px;
    background-color: #fff;
    margin: 0 10px;
    border-radius: 15px;
    padding-bottom: 5px;
}
.time-box > .number{
    font-size: 3rem;
    font-weight: bold;
    color: #dc3545;
}
.time-box > .label{
    margin-top: -7px;
    font-size: .9rem;
    color: #d16d6d;
    font-weight: 300;
}
.products-content {
    display: inline-block;
    margin: auto;
}
.purchase-contact > h2{
    /* text-align: center; */
    font-size: 3rem;
    margin-bottom: 40px;
}

.purchase-contact{
    padding: 120px 0 40px;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
}
.purchase-form-field{
    margin: 20px 0;
}
.purchase-form-field > h3{
    margin-bottom: 10px;
    font-size: 1rem;
}
.purchase-form-field > h3 > span{
    color: red;
}
.purchase-form-field > input[type="text"], .purchase-form-field > input[type="email"]{
    width: 100%;
    padding: 10px 0;
    text-align: center;
    outline: none;
    border: #d9d9d9 2px solid;
    border-radius: 10px;
    font-size: 1.1rem;
}
.purchase-form-field > select{
    -webkit-appearance: none; /* Safari の標準 UI を消す */
    -moz-appearance: none;
    appearance: none;

    width: 100%;
    padding: 10px;             /* ← これで効くようになる */
    border: 2px solid #d9d9d9;
    border-radius: 10px;
    font-size: 1.1rem;
    background-color: #fff;

    text-align: center;
    text-align-last: center;
}
.purchase-form-field > textarea{
    width: 100%;
    resize: none;
    height: 150px;
    outline: none;
    border: #d9d9d9 2px solid;
    border-radius: 10px;
    padding: 10px 3%;
}
.purchase-contact > form > button{
    width: 90%;
    background-color: #e3fc03;
    color: #000000;
    padding: 15px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px auto 0;
    box-shadow: var(--shadow-md);
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
}
.purchase-contact > form > button:hover{
    background-color: #d4ed02;
}

.line-cross{
    text-decoration-line:line-through;
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration-color: #6c757d;
}

.coupon-pop-up {
    display: none; /* 最初は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* overlay */
    z-index: 9999; /* 一番前に */
    justify-content: center;
    align-items: center;
}
  
.close-btn {
    position: absolute;
    top: -5px;
    right: 15px;
    cursor: pointer;
    font-size: 3rem !important;
    font-weight: bold;
    z-index: 999;
    color: #fff;
}
  
.discount-coupon-container >  .discount-coupon{
    position: relative;
    max-width: 900px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    background-image: none;
    padding: 0;
    gap: 20px;
    width: 100% !important;
    margin: 30px auto 0;
}

.discount-coupon-container{
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    position: relative;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    /* padding-bottom: 30px; */
    padding: 20px 30px 30px;
}
.discount-coupon-container > a{
    text-decoration: none;
    background-color: #fff;
    box-shadow: var(--shadow-md);
    padding: 10px 30px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    border-radius: 14px;
    color: #FF5722;
    font-weight: bold;
}






/* hero-field */
/* ================================
    Apple感ベース: カード&タイポ
 ================================ */
.contact-hero{
    --active-field-width: 220px; /* 展開時の横幅 */
    --icon-gap: 12px;

    display: flex;
    align-items: center;
    gap: var(--icon-gap);
    padding: 16px 16px 16px 26px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10), 0 3px 6px rgba(0,0,0,0.06);
    position: relative;    /* textarea を下に重ねるための基準 */
    overflow: visible;     /* 下に伸びるtextareaを見切れさせない */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    flex-wrap: nowrap;     /* 行を増やさない（高さ固定） */
    width: fit-content;
}

    /* ================================
    各フィールド（アイコン＋入力UI）
    ================================ */
.contact-hero-field{
    display: flex;
    align-items: center;
    position: relative;    /* 必須マーク用の基準 */
    min-width: 28px;       /* アイコン幅確保 → Sendが詰まらない土台 */
}

.contact-hero-field i{
    font-size: 20px;
    cursor: pointer;
    color: #555;
    transition: color .3s ease;
}
.contact-hero-field i:hover{ color:#000; }

    /* ================================
    入力UI：input / select（横スライド展開）
    ※ textarea は含めない！
    ================================ */
.contact-hero-field input,
.contact-hero-field select{
    width: 0;
    opacity: 0;
    padding: 8px 12px;
    margin-left: 8px;
    border: none;
    border-radius: 12px;
    background: #f1f1f1;
    transition: all .4s ease;
    font-size: 14px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.contact-hero-field.active input,
.contact-hero-field.active select{
    width: var(--active-field-width);
    opacity: 1;
    margin-right: 10px;
}

    /* ================================
    必須マーク（email / select / name）
    → HTML側で .required を付与している想定
    ================================ */
.contact-hero-field.required::before{
    content: "*";
    color: red;
    font-size: 14px;
    position: absolute;
    left: -10px;
    top: 2px;
}

    /* ================================
    Send ボタン（Appleっぽい軽いボタン）
    ================================ */
.contact-hero button{
    padding: 10px 18px;
    border: none;
    border-radius: 16px;
    background: #007aff;
    color: #fff;
    cursor: pointer;
    transition: background .3s ease;
    margin-left: 8px; /* 通常時の最小余白 */
}
.contact-hero button:hover{ background:#005ecc; }

    /* messageが開いている時だけ、Sendの左に固定幅の余白を確保
    → CSSのみで実現（JS不要）
    :has が使えない環境向けに .message-open も併記（JSで付与済みならそちらでも効く）
    */
.contact-hero:has(.contact-hero-field.active textarea) button,
.contact-hero.message-open button{
    margin-left: calc(var(--active-field-width) + var(--icon-gap));
}
/* message が開いたときだけフォーム下に余白を追加 */
.contact-hero.message-open {
    margin-bottom: 160px; /* textarea の高さに合わせて調整 */
    transition: margin-bottom 0.4s ease;
  }
  
    /* ================================
    textarea（message）：フォーム下に“二段目”で出す
    重要：
    - 親 .contact-hero を基準に absolute 配置
    - 横幅は常にフォームいっぱい
    ================================ */

    /* message を含むフィールドだけは position: static にして
    textarea の containing block を .contact-hero にする */
.contact-hero .contact-hero-field:nth-of-type(4),
.contact-hero-field:has(> textarea){
    position: static;
}

.contact-hero-field textarea{
    position: absolute;    /* フォーム下に重ねる */
    left: 0;
    right: 0;              /* ← left/right指定でフォーム幅いっぱいを保証 */
    top: 100%;
    width: auto;           /* 親フォーム幅にフィット */
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;

    border: none;
    border-radius: 16px;
    min-height: 140px;
    resize: vertical;
    padding: 12px;
    background: #fff;

    /* textarea 自体の立体感（フォームから更に“もう一段”浮かす） */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.10);
    z-index: 5;

    -webkit-appearance: none;
    appearance: none;
    resize: none;
    outline: none;
}

    /* textarea をアクティブ時のみ表示（ふわっと下に現れる） */
.contact-hero-field.active textarea{
    opacity: 1;
    transform: translateY(10px);
}

    /* ================================
    互換性・保険
    ================================ */
    /* Safari 古めの flex-gap 対策の軽いフォールバック */
@supports not (gap: 12px){
.contact-hero{ column-gap: var(--icon-gap); }
.contact-hero-field{ margin-right: var(--icon-gap); }
.contact-hero-field:last-of-type{ margin-right: 0; }
}

/* 既存の Send ボタンデザインをベースにカスタマイズ */
.contact-hero .send-btn {
    display: flex;
    flex-direction: column; /* アイコンの上に文字 */
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #007aff, #00c6ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px; /* アイコンと文字の間隔 */
    margin-left: 8px; /* 以前の margin-left そのまま維持 */
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  }
  
  .contact-hero .send-btn i {
    font-size: 20px;
  }
  
  .contact-hero .send-btn:hover {
    background: linear-gradient(135deg, #005ecc, #0092dd);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  }
  

/* 下固定フォーム */
.contact-hero-sticky {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: 900px; /* 元フォームの幅に合わせる */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    padding: 16px 16px 16px 26px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  /* 必要に応じて textarea 展開も対応 */
  .contact-hero-sticky textarea {
    max-height: 100px;
  }
  

  .contact-hero-sticky {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: 900px;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    padding: 16px 16px 16px 26px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
  }
  
  /* message 展開時に textarea が上に広がる */
  .contact-hero-sticky.message-open textarea,
  .contact-hero.message-open textarea {
    position: absolute;
    bottom: 100%; /* 上方向に展開 */
    left: 0;
    width: 100%;
    max-height: 150px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 1001;
  }

  .scroll-to-top{
      display: none;
  }
  /* 元フォーム & 固定フォーム共通ラベル */
.contact-hero::before {
    content: "Free Consultant";
    position: absolute;
    top: -12px;
    left: 16px;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    /* background: linear-gradient(135deg, #FF7F50, #FFB347); */
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 101; /* フォームより上に */
    pointer-events: none;
  }
  
  /* 固定フォームに影響しないように transform はフォーム内だけで完結 */
  .contact-hero-sticky::before {
    top: -12px; /* 固定フォーム上部にラベル */
  }
  
  .cta-button {
    display: inline-flex;       /* ボタン内をフレックスに */
    align-items: center;        /* テキストとアイコンを縦中央揃え */
    gap: 0.5rem;                /* テキストとアイコンの間隔 */
    padding: 0.8rem 1.2rem;     /* お好みで */
    font-size: 1rem;            /* お好みで */
    cursor: pointer;
  }
  

  





  


  /* Swiper 全体に左右余白を作る */
.swiper {
    padding-left: 50px;   /* 左余白 */
    padding-right: 50px;  /* 右余白 */
  }
  
  /* 各スライド */
  .swiper-slide {
    width: 300px;          /* 固定幅で左右見切れを作る */
    display: flex;
    align-items: flex-start;  /* 画像上揃え */
    justify-content: center;
  }
  
  /* スライド内画像 */
  .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  img.emphasize {
    position: absolute;
    width: 30px;
    top: -30px;
    left: -3px;
  }
  

.courses-cta{
    margin: 50px auto 0;
    width: fit-content;
}
.courses-cta > form{
    width: fit-content;
    max-width: 900px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    padding: 16px 16px 16px 26px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    /* position: relative; */
    border-radius: 20px;
}
.courses-cta > form input[type="email"]{
    width: var(--active-field-width);
    opacity: 1;
    margin-right: 10px;
    padding: 8px 12px;
    margin-left: 8px;
    border: none;
    border-radius: 12px;
    background: #f1f1f1;
    transition: all .4s ease;
    font-size: 16px;
    outline: none;
    /* -webkit-appearance: none; */
    appearance: none;
}
.courses-cta > form i{
    font-size: 30px;
    cursor: pointer;
    color: #555;
    transition: color .3s ease;
}
.courses-cta-field.required{
    display: flex;
}
.courses-cta-field.required > i{
    display: block;
    margin: auto 5px;
}
.courses-cta > form .send-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    /* background: linear-gradient(135deg, #007aff, #00c6ff); */
    background-image: linear-gradient(90deg, #FF5722, rgba(255, 190, 0, 1));
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    margin-left: 8px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
}
.courses-cta > form .send-btn > img{
    position: absolute;
    top: -15px;
    left: -18px;
}

.tap-logo-container {
    position: relative; /* この span を基準に配置 */
    display: inline-block; /* input のレイアウトに影響しない */
  }
  
  .tap-logo-container > .sticky-tap-logo {
    width: 35px;
    position: absolute;
    top: -36px;   /* アイコンの上あたり */
    left: -30px;
    /* transform: translateX(-50%); */
    z-index: 2;
    pointer-events: none; /* クリックを邪魔しない */
  }


/*  */
/* profile */
/*  */
.profile{
    background-color: #e3fc03;
    overflow: hidden;
    padding: 0;
}
.profile > img{
    background-color: #fff;
}
.profile > .container {
    display: flex;
    justify-content: space-around;
    max-width: 860px;
    margin: 0 auto;
    gap: 20px;
    flex-direction: row-reverse;
}
.profile-image {
    background: #fff;
    width: fit-content;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: relative;
    width: 300px;
    height: 300px;
    top: 30px;
}
.profile-image > img {
    position: absolute;
    width: 345px;
    height: 345px;
    right: -21px;
    bottom: -18px;
}
.profile-text {
    width: 60%;
    max-width: 500px;
    height: fit-content;
    margin: auto 0;
    font-weight: bold;
    color: #000;
    padding: 10px 0;
}

.pricing-pages{
    background-color: #e3fc03;
    color: #000;
    padding: 5px 20px;
    width: 200px;
    text-align: center;
    font-size: 1.4rem;
    margin: 10px auto;
    font-weight: bold;
    border-radius: 5px;
}


.whatsapp-link{
    /* display: flex; */
    margin: 30px 0;
    max-width: 350px;
}
.whatsapp-link > a{
    display: flex;
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
}
.whatsapp-link > a > img{
    width: 80px;
    position: absolute;
    top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
}
.chat-space{
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    /* background-color: #19301d; */
    height: fit-content;
    border-radius: 10px;
    margin: auto 0;
    padding: 10px 20px 10px 110px;
    width: 100%;
    /* border: #000000 2px solid; */
    box-shadow: var(--shadow-md);
    position: relative;
    /* z-index: 1; */
}
.chat-space::after{
    background-color: #28a745;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 5px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    box-shadow: var(--shadow-md);
}
.chat-space > span{
    display: block;
    margin: auto 0;
    color: #000000;
    /* color: #fff; */
    font-weight: bold;
    font-size: 1.3rem;
}
.chat-space > img{
    width: 40px;
    /* aspect-ratio: 1/1.16; */
    height: auto;
    display: block;
}
.whatsapp-link-sticky {
    position: fixed;
    bottom: 20px;   /* 画面下からの距離 */
    right: 20px;    /* 画面右からの距離 */
    z-index: 9999;  /* 手前に出す */
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: block;
}
.footer-logo > img{
    width: 250px;
    margin-bottom: 20px;
}