/* Hero Section */
.hero {
    min-height: 60vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-badge {
    font-size: 73px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: baseline;
	padding-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.badge-highlight {
    color: #11B981;
    font-size: 1.15em;
}

.badge-zero {
	font-family: 'TASA Orbiter','Noto Sans JP', sans-serif;
	font-weight: 700;
    color: #11B981;
    font-size: 1.6em;
	position: relative;
    top: 0.05em;
}

.badge-normal {
    color: #212121;
}

.hero-subtitle {
    font-size: 50px;
    color: #212121;
    font-weight: 800;
    margin: -20px 0 -80px 0px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    color: #11B981;
    margin: 0;
    position: relative;
    line-height: 1.1;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-title .kanji-small {
    font-size: 0.92em;
}

.hero-title::after {
    content: '+';
    position: absolute;
    top: -18px;
    right: 93px;
    font-size: 0.7em;
    font-weight: 400;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff8b27;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 45px;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    gap: 12px;
    align-self: flex-start;
    margin-top: 10px;
    text-align: center;
    min-width: 400px;
    opacity: 0;
    animation: floatInUp 0.8s ease-out 2.8s both;
}

/* ホバー時はアニメーションなし（カーソルのみ変化） */

.hero-cta-arrow {
    font-size: 20px;
    font-weight: 900;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateX(-60px);
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: floatInUp 0.3s ease-out 1.4s both;
}
.hero-main-image-sp {
	display: none;
}

.hero-side-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    z-index: 2;
    opacity: 0;
}

.hero-left-image {
    left: -160px;
    top: 230px;
    width: 250px;
    animation: fadeInLeft 0.3s ease-out 1.7s both;
}

.hero-right-image {
    right: -50px;
    top: 325px;
    width: 130px;
    animation: fadeInRight 0.3s ease-out 1.9s both;
}
.text-relative {
	position: relative;
}
.hero-cta-text-above {
    position: absolute;
    top: 440px;
    left: 17px;
    font-size: 23px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    animation: floatInUpSmall 0.8s ease-out 3.3s both;
}

@keyframes floatInUpSmall {
    from {
        opacity: 0;
        transform: translateY(12.5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}