/* SIMPLE CAROUSEL DESIGN */
.carousel-simple {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 32px auto 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 16px 0 32px 0;
}
.carousel-track {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* transformは不要 */
}
.carousel-avatar {
    width: 80%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    display: none;
    margin: 0 auto;
}
/* 表示中のアバターのみblock */
.carousel-avatar[style*="display: block"] {
    display: block;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 14px;
    background: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-indicator.active {
    width: 30px;
    background: #2a4d7c;
}
/* COST TABLE DESIGN */
.cost-table-wrapper {
    margin: 32px auto;
    max-width: 900px;
    background: #f8fbff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px;
}
.cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.cost-table th, .cost-table td {
    border: 1px solid #e3eaf2;
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}
.cost-table th {
    background: linear-gradient(90deg, #e3f0ff 0%, #f8fbff 100%);
    font-weight: 700;
    color: #2a4d7c;
    font-size: 1.1rem;
}
.cost-table .cost-category {
    width: 28%;
}
.cost-table .cost-free {
    width: 36%;
    background: #f6fff6;
    color: #2a7c4d;
    font-weight: 500;
}
.cost-table .cost-plus {
    width: 36%;
    background: #fff6fa;
    color: #7c2a4d;
    font-weight: 500;
}
.cost-table tr:nth-child(even) td {
    background: #f8fbff;
}
.cost-table tr:hover td {
    background: #e3f0ff;
    transition: background 0.2s;
}
.cost-table td {
    font-size: 0.98rem;
}
.cost-table td strong {
    color: #2a4d7c;
}
.cost-table td em {
    color: #7c2a4d;
    font-style: normal;
}
/* ===== 機能カテゴリ ===== */
.feature-category {
    padding: 64px 0 16px;
}
.feature-category h2 {
    font-size: 32px;
    color: #BFBFBF;
    margin-bottom: 16px;
}
.feature-table {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 12px;
}
.feature-list {
    background: #f5f7fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px 18px;
    min-width: 320px;
    max-width: 480px;
    text-align: left;
}
.feature-list ul {
    list-style: none;
    padding-left: 0;
}
.feature-list li {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 12px;
}
.feature-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #2d8cff;
    font-weight: bold;
}
.feature-list .note {
    color: #1C4EA9;
    font-size: 0.92em;
    font-weight: 600;
    margin-left: 4px;
}
/* DEBUG 2025-09-01-12:34 */

/* ===== リセット ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Segoe UI', 'Hiragino Sans', 'Meiryo', sans-serif;
    background: #f1f1f1;
    color: #222;
}

.content {
    width: 100%;
    overflow: hidden;
    max-width: 600px;
    padding-top: 64px;
    margin: 0 auto;
}

/* ===== ヘッダー ===== */
.header.fixed-header {
    background: #000000;
    border-bottom: 1px solid #252525;
    padding: 8px  0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
    will-change: transform;
}

.header.fixed-header.hide {
    transform: translateY(-100%);
    box-shadow: none;
}

.header.fixed-header.show {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    height: 46px;
}

.header-btn {
    background: #2d8cff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(45,140,255,0.08);
    transition: background 0.2s;
}

.header-btn:hover {
    background: #1769c7;
}

/* ===== ヒーロー ===== */
section {
    background: #fff;
    text-align: center;
}
section.hero {
    padding-top: 20px;
    background-color: #E2E6E7;
}

section img {
    width: 100%;
    display: block;
    margin: 0 auto;
}



/* ===== セクション共通 ===== */

.how-block {
    background-color: black;
    padding:100px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.how-block h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.how-block h4 {
    color: white;
    font-size: 1.1rem;
    padding: 17px 0 20px 0;
}

.how-block p{
    color: white;
    font-size: 0.8rem;
}

.how-img {
    width: 320px;
    max-width: 90vw;
    margin-bottom: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}


.tools-connect p {
    margin-top: 8px;
}

/* ===== ツール連携 ===== */
.tools-icons {
    margin-bottom: 12px;
}

.tool-icon {
    width: 48px;
    height: 48px;
    margin: 0 8px;
    vertical-align: middle;
}

/* ===== WHO IT'S FOR ===== */
.who-for{
    padding: 64px 0 16px;
}
.who-for h2{
    font-size: 32px;
    color: #BFBFBF;
}
.who-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.who-item {
    text-align: left;
}

.who-for p{
    padding: 16px 8px 0;
    font-weight: 800;
}

/* ===== COST ===== */
.cost{
    padding: 64px 0 16px;
}
.cost h2{
    font-size: 32px;
    color: #BFBFBF;
}
.cost-cards-wrapper {
        display: flex;
        gap: 32px;
        justify-content: flex-start;
        margin: 48px 0;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* スクロールバー非表示（全ブラウザ対応） */
    .cost-cards-wrapper {
        scrollbar-width: none; /* Firefox */
    }
    .cost-cards-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
}
.cost-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(40, 60, 120, 0.10);
    padding: 32px 28px 32px 28px;
    min-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    text-align: left;
}
.cost-card-free {
    border: 2px solid #e3e8f0;
}
.cost-card-pro {
    border: 2px solid #2d4cff;
}
.cost-card-header {
    margin-bottom: 16px;
}
.cost-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #2d4cff;
}
.cost-card-free .cost-card-header h3 {
    color: #222;
}
.cost-card-desc {
    font-size: 1rem;
    color: #888;
    margin-top: 4px;
}
.cost-card-popular {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #2d4cff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 4px 12px;
    letter-spacing: 1px;
}
.cost-card-price {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cost-card-yen {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d4cff;
}
.cost-card-free .cost-card-yen {
    color: #222;
}
.cost-card-free-text {
    font-size: 1rem;
    color: #888;
    margin-top: 2px;
}
.cost-card-per {
    font-size: 1rem;
    color: #222;
    margin-top: 2px;
}
.cost-card-monthly {
    font-size: 0.95rem;
    color: #888;
    margin-top: 2px;
}
.cost-card-note {
    font-size: 0.95rem;
    color: #2d4cff;
    margin-bottom: 16px;
}
.cost-card-btn {
    width: 100%;
    display: inline-block;
    background: #2d4cff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 12px 32px;
    margin-bottom: 18px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 60, 120, 0.10);
    transition: background 0.2s;
}
.cost-card-btn:hover {
    background: #1a2fa0;
}
.cost-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}
.cost-card-features li {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}
.cost-card-features li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2d4cff;
    font-size: 1.1rem;
}
.cost-card-free .cost-card-features li:before {
    color: #222;
}

.cost-plan {
    background: #f5f7fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px 18px;
    width: 220px;
    text-align: left;
}

.cost-plan h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d8cff;
    margin-bottom: 10px;
}

.cost-plan ul {
    list-style: none;
    padding-left: 0;
}

.cost-plan li {
    font-size: 0.98rem;
    color: #222;
    margin-bottom: 8px;
}

.aim-mentor{
    padding: 64px 0 64px;
}

.aim-mentor h2{
    font-size: 32px;
    color: black;
}

.aim-mentor img{
margin-top: 24px;
    height: auto;
    width: 50%;
}

.aim-mentor .aim-mentor-trial{
margin-top: 24px;
font-size:0.8rem;
 color: #1C4EA9;
 font-weight: 700;
}

.aim-mentor a {
margin-top: 8px;
    display: inline-block;
    width: 70%;
    height: 44px;
    background: linear-gradient(90deg, #2ec6ff 0%, #6fffc2 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(46,198,255,0.12);
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.intergrates{
    padding: 16px 16px 64px;
    font-size: 12px;
    font-weight: 800;
}
/* ===== お問い合わせ ===== */
.contact form {
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact button {
    background: #2d8cff;
    color: #fff;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.contact button:hover {
    background: #1769c7;
}

/* ===== フッター ===== */
.footer {
    background: linear-gradient(180deg, #6ee7e7 0%, #3b82f6 100%);
    color: #222;
    text-align: center;
    padding: 48px 0 32px 0;
}

.footer-inner {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.footer-links {
    display: none;
}

    .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

    .footer-menu a {
    color: #222;
    text-decoration: none;
    font-size: 1.05em;
    margin: 0;
    padding: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

    .footer-menu a:hover {
    color: #2563eb;
}

    .footer-menu a:not(:last-child)::after {
    content: '';
    display: block;
    width: 2px;
    height: 18px;
    background: #6ee7e7;
    margin: 6px auto;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 0 8px;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.sns-icon {
    width: 48px;
    height: 48px;
    margin: 0 8px;
    vertical-align: middle;
    opacity: 1;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
    transition: box-shadow 0.2s, opacity 0.2s;
}

.sns-icon:hover {
    box-shadow: 0 4px 16px rgba(59,130,246,0.18);
    opacity: 0.85;
}

.footer p {
    font-size: 1em;
    color: #222;
    opacity: 1;
    margin-bottom: 0;
}

.awakapp img{
    width: 80px;
    height: auto;
    margin-bottom: 4px;
}

.copyright{
    color: white !important;
    font-size: 10px !important;
}