@charset "UTF-8";

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100% !important; /* common.cssの62.5%を上書き */
}

body {
    font-family: 'Noto Sans JP', sans-serif !important;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px; /* 明示的にサイズを指定 */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/**************** ヘッダー内コンテンツ *****************/

header{
	width:100%;
	position:relative;
}
.header_bg{
	width:100%;
	/*padding-bottom:50%;*/
	/*padding:25% 0;
	background-size: cover;
	background:url('../images/header_bg.jpg') no-repeat center bottom;*/
}

.header_top{
	width:100%;
	position:absolute;
	top:0;
	left:0;
	padding: 1% 0;
	background: rgba(1,18,24,.5);
	z-index: 2;
}

/**************** ヘッダー内コンテンツ end *****************/

/* メインコンテンツ */
.main-content {
    position: relative;
}

.main_image {
    width: 100%;
    aspect-ratio: 221 / 100;
    position: relative;
    overflow: hidden;
}

.main_image .bk-image {
    width: 100%;
}

.decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.left-bottom {
    left: 0;
    bottom: 0;
    rotate: 0deg;
    width: 20vw;
}

.right-top {
    right: 0;
    top: 0;
    width: 26vw;
}

.main_image_inner_contents {
    position: absolute;
    top: 22%;
    right: 0;
    padding-right: 7%;
    z-index: 2;
    text-align: right;
}

.text-wrapper {
    position: relative;
}

.ellipse {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.title-blur {
    width: 100%;
    height: 4.5vw;
    background: rgba(23, 31, 19, 0.7);
    filter: blur(30px);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.catchcopy {
    color: #fff;
    font-size: 3.5vw;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    margin-left: 1rem;
}

.number {
    width: 60vw;
    color: #FAE1AF;
    font-size: 8vw;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    background: linear-gradient(90deg, #5433FF 0%, #A5FECB 0%, #20BDFF 50%, #A5FECB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    text-align: left;
}
  
.number span {
    color: #fff;
    font-size: 4.8vw;
    font-weight: 700;
    -webkit-text-fill-color: #fff;
}

.overall-blur {
    position: absolute;
    width: 70%;
    aspect-ratio: 1 / 1;
    background: rgba(23, 31, 19, 0.7);
    filter: blur(100px);
    left: 35%;
    top: 50%;
    transform: translateY(-50%);
}

.appealBox {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin: 1.5vw 0 0 2.5vw;
    flex-wrap: wrap;
}

.appeal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    aspect-ratio: 1 / 1;
    min-width: 80px;
    min-height: 80px;
    max-width: 120px;
    max-height: 120px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(24px);
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.icon-container img {
    width: 2vw;
    min-width: 24px;
    aspect-ratio: 1 / 1;
}

.appeal span {
    color: #FFFFFF;
    font-size: clamp(12px, 1.5vw, 18px);
    text-align: center;
    line-height: 1.2;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
}

.cta-button-container {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.cta-button {
    display: inline-block;
    padding: 40px 120px;
    background: linear-gradient(90deg, #5433FF 0%, #20BDFF 50%, #A5FECB 100%);
    border-radius: 100px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 0.875;
    letter-spacing: 10%;
    text-align: center;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 6px 10px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.4), 0px 8px 15px 6px rgba(0, 0, 0, 0.2);
}

/* パンくずリスト */
.breadcrumbs .container {  
    max-width: none;    
    padding-left: 64px; 
    padding-right: 64px;   
    font-size: 14px;
    color: #999;
}

.breadcrumbs {
    width: 100%;
    padding: 24px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #999999;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #666666;
}

.breadcrumb-separator {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 8.58%;
    color: #999999;
}

.breadcrumb-current {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #666666;
}

/* 中央ボタン */
.header_contact_btn {
    position: absolute;
    bottom: -55px;
    width: 700px;         
    height: 130px;       
    line-height: 130px;   
    display: block;      
    text-align: center;
    background: linear-gradient(
        90deg,
        #5433FF 0%,
        #A5FECB 35%,
        #20BDFF 70%,
        #A5FECB 100%
        );
    border-radius: 100px; 
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    letter-spacing: 1.2px;
}   

.header_contact_btn:hover {
    opacity: 0.9;
}

.header_contact_area {
    position: relative;
    margin-top: 80px;
    margin-bottom: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* サービス概要セクション */
.service-overview {
    max-width: 1200px;
    margin: 0 auto;     
    padding: 0px 40px 120px;   
    background: #ffffff;
}

.service-overview .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 1500px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: linear-gradient(90deg, #5433FF 0%, #20BDFF 50%, #A5FECB 100%);
    background: linear-gradient(90deg, #5433FF 0%, #20BDFF 50%, #A5FECB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.overview-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #4A5568;
}

.overview-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #34586D;
}

.service-process {
    max-width: 1440px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.process-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    width: 25%;
    min-width: 0;
}

.process-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #4A5568;
    padding: 8px 0;
}

/* セクション共通スタイル */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.label-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #648192;
}

.label-line {
    width: 60px;
    height: 2px;
    background: #648192;
}

.section-title-gradient {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #5433FF 30.5%, #20BDFF 71.1%, #5433FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 動画タイプセクション */
.video-types {
    padding: 80px 0 200px;
    background: url('../images/EBA_business_bg02.jpg') center/cover;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay;
}

.video-types .container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.video-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.video-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    color: #4A5568;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #4A5568;
}

/* 制作フローセクション */
.production-flow {
    padding: 80px 0 160px;
    background: #F8FAFC;
}

.production-flow .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 160px;
}

.step-label {
    font-family: 'DIN 2014', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 0.96;
    text-align: center;
    color: #648192;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    background: #09AFF5;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 0.96;
    text-align: center;
    color: #4A5568;
}

.step-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.03;
    text-align: center;
    color: #648192;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 強みセクション */
.strengths {
    padding: 120px 0 360px;
    background: url('../images/EBA_business_bg03.jpg') center/cover;
    background-color: rgba(248, 250, 252, 0.85);
    background-blend-mode: overlay;
    position: relative;
    padding: 80px 0 200px;
}

.strengths .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
}

.strengths-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 40px 0 280px;
}

.chosen-icon {
    color: #5433FF;
}

.strengths-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 70px;
    width: 100%;
    position: relative;
}

.strength-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    flex: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.strength-number {
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'DIN Alternate', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -6%;
    color: #C9EBF2;
    z-index: 1;
}

.strength-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.strength-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.strength-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #09AFF5;
}

.strength-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #4A5568;
}

.strengths-title-main {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(90deg, #5433FF, #20BDF7, #5433FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strengths-subtitle {
    font-size: 60px;  
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;  /* 文字の間隔 */
    margin-top: -8px;
}

.text-grad {
    background: linear-gradient(90deg, #5433FF, #20BDF7, #5433FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 60px;
}

.number-highlight {
    font-size: 120px;
    font-weight: 700;
    line-height: 0.8;
    background: linear-gradient(90deg, #5433FF, #20BDF7, #5433FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0 6px;
}

/* 活用シーンセクション */
.use-cases {
    padding: 80px 0 160px;
    background: #F8FAFC;
}

.use-cases .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding: 0 clamp(24px, 5vw, 80px);
    max-width: 1200px;
}

.use-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.use-case-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    /*box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);*/
}

.use-case-card {
    display: flex;
    gap: 24px;
    padding: 30px 20px 50px;;
    flex: 1;   
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-2px);
}

.use-case-image {
    width: 260px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.use-case-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.use-case-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #4A5568;
}

.use-case-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #4A5568;
}

/* お問い合わせセクション */
.contact-section {
    padding: 120px 0;
    padding-bottom: 160px;
    background: linear-gradient(90deg, #5433FF 0%, #20BDFF 50%, #A5FECB 100%);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-header {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.contact-line {
    width: 60px;
    height: 2px;
    background: #ffffff;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 10%;
    text-align: center;
    color: #ffffff;
}

.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 380px;
    height: 92px;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 4px 0px rgba(0, 0, 0, 0.3);
}

.contact-button svg {
    width: 24px;
    height: 24px;
}

.contact-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 4%;
    color: #2565F0;
}

.contact-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 10%;
    text-align: center;
    color: #2565F0;
}

/* フッター */
.footer {
    background: #324661;
    color: #ffffff;
    position: relative;
}

.footer-content {
    padding: 64px 64px 24px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-address {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: 2.75%;
    text-align: center;
    color: #ffffff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    justify-content: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 0.6px solid #ffffff;
    margin-bottom: 8px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.footer-copyright {
    font-family: 'YuGothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 4%;
    color: #ffffff;
}

.page-top-button {
    position: fixed;
    bottom: 108px;
    right: 23px;
    width: 70px;
    height: 70px;
    background: #31ACD8;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 8px 0px #155F79;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

.page-top-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px 0px #155F79;
}

.page-top-button svg {
    width: 24px;
    height: 24px;
}

.section-header,
.video-card,
.strength-card,
.use-case-card {
    animation: fadeInUp 0.6s ease-out;
}

/* スクロール時のフェードイン効果 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ======== responsive ======== */



/* ======== responsive(1200px) ======== */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-badges {
        gap: 16px;
    }
    
    .badge {
        min-width: 100px;
        padding: 12px;
    }
    
    .service-process {
        gap: 20px;
    }
    
    .video-cards {
        gap: 16px;
    }
    
    .flow-steps {
        gap: 30px;
    }
    
    .strengths-grid {
        gap: 24px;
    }
}

/* ======== responsive(1024px) ======== */
@media screen and (max-width: 1024px) {
    .navbar .container {
        gap: 20px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .badge {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .badge-text {
        font-size: 18px;
    }
    
    .service-process {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-item {
        flex: 1 1 calc(50% - 15px);
    }
    
    .video-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .flow-steps {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .strengths-grid {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .strength-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
    }
    
    .use-case-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .use-case-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* =============================
   Hover無効化（問い合わせボタン以外）
   ============================= */
.nav-link:hover { opacity: 1 !important; cursor: default; }
.breadcrumb-link:hover { color: inherit !important; }
.badge:hover { transform: none !important; background: inherit !important; }
.video-card:hover { transform: none !important; box-shadow: none !important; }
.video-card:hover .card-image img { transform: none !important; }
.strength-card:hover { transform: none !important; box-shadow: none !important; }
.use-case-card:hover { transform: none !important; }
.contact-button:hover { transform: none !important; box-shadow: none !important; }
.footer-link:hover { opacity: 1 !important; }
.page-top-button:hover { transform: none !important; box-shadow: none !important; }

/* .cta-button は問い合わせボタンのためホバー維持 */





/* ヒーローセクション */
/*.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, #5433FF 0%, #20BDFF 50%, #A5FECB 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background {
    position: relative;
    height: 100%;
    background-image: url('../../images/EBA_business_bg01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 20px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 8vw, 123px);
    font-weight: 700;
    line-height: 1.21;
    background: linear-gradient(90deg, #5433FF 0%, #A5FECB 0%, #20BDFF 50%, #A5FECB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}*/


