@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: color: rgb(105, 104, 104);
	width:100%;
	overflow-x: hidden !important;
font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: #212529 !important;
}
a:hover{
opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
img {
	vertical-align: bottom;
}
.mb {
	display:none;
}
.f-sp,.f-sp2 {
	display:none;
}
/* ==============================
ヘッダー
============================== */
.header {
/*             background: linear-gradient(90deg, #00d4aa 0%, #1e88e5 100%); */
	background-color:#fff;
            padding: 15px 0;
            position: fixed;
    top: 0;
    z-index: 100;
	width:100%;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
            pointer-events: none;
        }
        
        .header-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .logo {
            display: flex;
            align-items: center;
            width: 15%;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover {
            opacity: 0.8;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            opacity: 0.8;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* モバイルメニュー */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #19226c;
            font-size: 30px;
            cursor: pointer;
            padding: 5px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(90deg, #00d4aa 0%, #1e88e5 100%);
                flex-direction: column;
                gap: 0;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }
            
            .nav.active {
                display: flex;
            }
            
            .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                text-align: center;
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .header {
                position: relative;
            }
        }
        
        /* アニメーション効果 */
        .header {
            animation: headerSlideDown 0.8s ease-out;
        }
        
        .logo {
            animation: logoFadeIn 1s ease-out 0.2s both;
        }
        
        .nav-link {
            animation: navItemFadeIn 0.6s ease-out both;
        }
        
        .nav-link:nth-child(1) { animation-delay: 0.4s; }
        .nav-link:nth-child(2) { animation-delay: 0.5s; }
        .nav-link:nth-child(3) { animation-delay: 0.6s; }
        .nav-link:nth-child(4) { animation-delay: 0.7s; }
        .nav-link:nth-child(5) { animation-delay: 0.8s; }
        .nav-link:nth-child(6) { animation-delay: 0.9s; }
        
        @keyframes headerSlideDown {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes logoFadeIn {
            0% {
                opacity: 0;
                transform: translateX(-30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes navItemFadeIn {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* ==============================
TOP
============================== */
.fv-top-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a237e 0%, #151f42 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            width: 50%;
            padding: 0 60px;
            z-index: 2;
        }
        
        .hero-image {
            width: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image img {
            max-width: 80%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            animation: slideInRight 1s ease-out 0.5s both;
        }
        
        .tagline {
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .main-title {
            color: white;
            font-size: 6rem;
            font-weight: bold;
            line-height: 0.9;
            margin-bottom: 40px;
            overflow: hidden;
        }
        
        .main-title .word {
            display: inline-block;
            overflow: hidden;
        }
        
        .main-title .letter {
            display: inline-block;
            transform: translateY(100%);
            animation: slideInUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
        }
        
        .main-title .word:nth-child(1) .letter {
            animation-delay: 0.6s;
        }
        
        .main-title .word:nth-child(2) .letter {
            animation-delay: 0.8s;
        }
        
        /* 各文字に個別の遅延を設定 */
        .letter:nth-child(1) { animation-delay: inherit; }
        .letter:nth-child(2) { animation-delay: calc(var(--base-delay, 0.6s) + 0.05s); }
        .letter:nth-child(3) { animation-delay: calc(var(--base-delay, 0.6s) + 0.1s); }
        .letter:nth-child(4) { animation-delay: calc(var(--base-delay, 0.6s) + 0.15s); }
        .letter:nth-child(5) { animation-delay: calc(var(--base-delay, 0.6s) + 0.2s); }
        .letter:nth-child(6) { animation-delay: calc(var(--base-delay, 0.6s) + 0.25s); }
        .letter:nth-child(7) { animation-delay: calc(var(--base-delay, 0.6s) + 0.3s); }
        
        .word:nth-child(1) { --base-delay: 0.6s; }
        .word:nth-child(2) { --base-delay: 1.1s; }

        /* 背景装飾 */
        .bg-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            animation: rotate 20s linear infinite;
        }
        
        .bg-decoration::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 15s linear infinite reverse;
        }
        
        /* パーティクル効果 */
        .particle {
            position: absolute;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }
        
        .particle:nth-child(1) {
            width: 4px;
            height: 4px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .particle:nth-child(2) {
            width: 6px;
            height: 6px;
            top: 60%;
            left: 20%;
            animation-delay: 2s;
        }
        
        .particle:nth-child(3) {
            width: 3px;
            height: 3px;
            top: 40%;
            left: 90%;
            animation-delay: 4s;
        }
        
        /* キーフレームアニメーション */
        @keyframes slideInUp {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            0% {
                transform: translateY(30px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInRight {
            0% {
                transform: translateX(100px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes rotate {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px);
                opacity: 1;
            }
        }
        
        /* グローエフェクト */
        .main-title {
            text-shadow: 0 0 2px rgba(255,255,255,0.5);
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content, .hero-image {
                width: 100%;
                padding: 20px;
            }
            
            .main-title {
                font-size: 80px;
            }
            
            .tagline {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .main-title {
                font-size: 60px;
            }
            
            .hero-content {
                padding: 20px;
            }
        }
.fv-bottom-img {
    display: flex;
}
/* ==================================================================


Next Frontierとは


================================================================== */
.next-f {
            min-height: auto;
            background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 20%, #42a5f5 40%, #00437b 60%, #151f42 80%, #151f42 100%);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 80px 40px;
            text-align: center;
            overflow: hidden;
        }
        
        /* 背景の幾何学パターン */
        .next-f::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            animation: patternMove 20s linear infinite;
        }
        
        /* 浮遊する装飾要素 */
        .next-f::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            top: 20%;
            right: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .shape {
            position: absolute;
            background: rgba(255,255,255,0.05);
            animation: floatUpDown 6s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 15%;
            left: 5%;
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 90%;
            border-radius: 10px;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 85%;
            border-radius: 50%;
            animation-delay: 4s;
        }
        
        .content-wrapper {
            max-width: 100%;
            width: 100%;
            z-index: 10;
            position: relative;
        }
        
        .section-tag {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
.section-subtitle2 {
color: #fff;
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 40px;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.8s ease-out 0.4s both;
}
        .main-title2 {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            font-style: italic;
            line-height: 1.2;
            margin-bottom: 30px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .title-word {
            display: inline-block;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .title-letter {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUpLetter 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
        }
        
        .title-word:nth-child(1) .title-letter { animation-delay: 0.6s; }
        .title-word:nth-child(2) .title-letter { animation-delay: 0.8s; }
        .title-word:nth-child(3) .title-letter { animation-delay: 1.0s; }
        .title-word:nth-child(4) .title-letter { animation-delay: 1.2s; }
        
        .title-letter:nth-child(1) { animation-delay: calc(var(--base-delay, 0.6s) + 0s); }
        .title-letter:nth-child(2) { animation-delay: calc(var(--base-delay, 0.6s) + 0.05s); }
        .title-letter:nth-child(3) { animation-delay: calc(var(--base-delay, 0.6s) + 0.1s); }
        .title-letter:nth-child(4) { animation-delay: calc(var(--base-delay, 0.6s) + 0.15s); }
        .title-letter:nth-child(5) { animation-delay: calc(var(--base-delay, 0.6s) + 0.2s); }
        .title-letter:nth-child(6) { animation-delay: calc(var(--base-delay, 0.6s) + 0.25s); }
        .title-letter:nth-child(7) { animation-delay: calc(var(--base-delay, 0.6s) + 0.3s); }
        .title-letter:nth-child(8) { animation-delay: calc(var(--base-delay, 0.6s) + 0.35s); }
        
        .title-word:nth-child(1) { --base-delay: 0.6s; }
        .title-word:nth-child(2) { --base-delay: 0.9s; }
        .title-word:nth-child(3) { --base-delay: 1.2s; }
        .title-word:nth-child(4) { --base-delay: 1.5s; }
        .description-text {
            color: rgba(255,255,255,0.85);
            font-size: 1rem;
            font-weight: bold;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .description-text:nth-of-type(1) { animation: fadeInUp 0.8s ease-out 2.0s both; }
        .description-text:nth-of-type(2) { animation: fadeInUp 0.8s ease-out 2.2s both; }
        .description-text:nth-of-type(3) { animation: fadeInUp 0.8s ease-out 2.4s both; }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            background: rgb(255 255 255 / 94%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: #1d60bb !important;
            padding: 9px 24px;
            font-size: 16px;
            font-weight: 400;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 2.6s both;
            margin-top: 20px;
        }
.cta-button2 {
    background: rgb(79 137 219);
    color: #ffffff !important;
}
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
			color:#fff !important;
        }
        .cta-button2:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgb(79 137 219);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
			color:rgb(79 137 219) !important;
        }   
        .cta-button::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover::after {
            transform: translateX(5px);
        }
        
        /* パーティクル効果 */
        .particle {
            position: absolute;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            pointer-events: none;
            animation: particleFloat 8s linear infinite;
        }
        
        .particle:nth-child(1) {
            width: 3px;
            height: 3px;
            top: 80%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .particle:nth-child(2) {
            width: 2px;
            height: 2px;
            top: 20%;
            left: 80%;
            animation-delay: 3s;
        }
        
        .particle:nth-child(3) {
            width: 4px;
            height: 4px;
            top: 60%;
            left: 5%;
            animation-delay: 6s;
        }
        
        /* キーフレームアニメーション */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUpLetter {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes patternMove {
            0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
            100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        @keyframes floatUpDown {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-30px);
                opacity: 0.8;
            }
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(0px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh);
                opacity: 0;
            }
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .next-f {
                padding: 60px 20px;
            }
            
            .main-title2 {
                font-size: 48px;
            }
            
            .description-text {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .main-title2 {
                font-size: 36px;
                margin-bottom: 20px;
            }
            .description-text {
                font-size: 15px;
                margin-bottom: 30px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 14px;
            }
        }
/* ==================================================================


SERVICE　事業内容


================================================================== */
/* 共通セクションスタイル */
        .section {
            min-height: auto;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .section-container {
            max-width: 1263px;
            margin: 0 auto;
            position: relative;
        }
        
        /* セクション別背景色 */
        .service-section, .company-section, .member-section, .recruit-section {
            background: #f8fafb;
        }
        /* ヘッダー部分 */
        .section-header {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        /* COMPANYとRECRUITのヘッダーを右揃え */
        .company-section .section-header,
        .recruit-section .section-header {
            text-align: right;
        }
        
        .section-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            overflow: hidden;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        /* セクション別タイトル色 */
       .section-title {
            color: #26c6da;
        }
        .section-title-letter {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUpLetter 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
        }
        
        .section-title-letter:nth-child(1) { animation-delay: 0.3s; }
        .section-title-letter:nth-child(2) { animation-delay: 0.35s; }
        .section-title-letter:nth-child(3) { animation-delay: 0.4s; }
        .section-title-letter:nth-child(4) { animation-delay: 0.45s; }
        .section-title-letter:nth-child(5) { animation-delay: 0.5s; }
        .section-title-letter:nth-child(6) { animation-delay: 0.55s; }
        .section-title-letter:nth-child(7) { animation-delay: 0.6s; }
        .section-title-letter:nth-child(8) { animation-delay: 0.65s; }
        
        .section-subtitle {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out 0.8s both;
        }
        
        /* セクション別サブタイトル色 */
        .section-subtitle {
            color: #666;
        }
        
        /* メインコンテンツ */
        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        /* 交互配置用のクラス */
        .reverse-layout {
            direction: rtl;
        }
        
        .reverse-layout > * {
            direction: ltr;
        }
        
        .section-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            opacity: 0;
            animation: slideInFromSide 1s ease-out 0.6s both;
        }
        
        /* 左からのスライドイン */
        .slide-left .section-image-wrapper {
            transform: translateX(-50px);
        }
        
        /* 右からのスライドイン */
        .slide-right .section-image-wrapper {
            transform: translateX(50px);
        }
        
        .section-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .section-image-wrapper:hover .section-image {
            transform: scale(1.05);
        }
        
        .section-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(38, 198, 218, 0.1) 0%, rgba(92, 107, 192, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .section-image-wrapper:hover::before {
            opacity: 1;
        }
        
        .section-text-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 1.2s both;
        }
        .section-main-text {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #26c6da 0%, #42a5f5 50%, #5c6bc0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            transform: translateY(30px);
            animation: serviceFadeInUp 0.8s ease-out 1.2s both;
        }
.font-bold {
    font-size: 1.4rem;
}
        .section-description {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        /* セクション別説明文色 */
        .service-section .section-description,
        .member-section .section-description {
            color: #666;
        }
        
        /* 装飾要素 */
        .section-decoration {
            position: absolute;
            pointer-events: none;
            border-radius: 50%;
            opacity: 0.1;
            animation: sectionFloat 8s ease-in-out infinite;
        }
        
        .decoration-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            background: rgb(38 198 218);
        }
        
        .decoration-2 {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 5%;
            background: currentColor;
            animation-delay: 2s;
        }
        
        .decoration-3 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 5%;
            background: rgb(131 222 255);
            animation-delay: 4s;
        }
        
        /* アニメーション定義 */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUpLetter {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInFromSide {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes sectionFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .section-content {
                gap: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 20px;
            }
            
            .section-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            
            /* モバイルでは交互配置を無効化 */
            .reverse-layout .section-content {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 48px;
            }
            
            .section-main-text {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 36px;
                letter-spacing: 2px;
            }
            
            .section-main-text {
                font-size: 24px;
            }
            
            .section-description {
                font-size: 14px;
            }
        }
/* 装飾 */
.service-description:nth-of-type(1) { animation: serviceFadeInUp 0.6s ease-out 1.4s both; }
        .service-description:nth-of-type(2) { animation: serviceFadeInUp 0.6s ease-out 1.6s both; }
        .service-description:nth-of-type(3) { animation: serviceFadeInUp 0.6s ease-out 1.8s both; }
        
        /* 装飾要素 */
        .service-decoration {
            position: absolute;
            pointer-events: none;
        }
        
        .service-decoration-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(38, 198, 218, 0.1), rgba(66, 165, 245, 0.1));
            border-radius: 50%;
            top: 10%;
            right: 10%;
            animation: serviceFloat 8s ease-in-out infinite;
        }
        
        .service-decoration-2 {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(92, 107, 192, 0.1), rgba(126, 87, 194, 0.1));
            border-radius: 20px;
            bottom: 20%;
            left: 5%;
            animation: serviceFloat 6s ease-in-out infinite 2s;
        }
        
        .service-decoration-3 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(66, 165, 245, 0.1), rgba(38, 198, 218, 0.1));
            border-radius: 50%;
            top: 60%;
            right: 5%;
            animation: serviceFloat 10s ease-in-out infinite 4s;
        }
        
        /* パーティクル効果 */
        .service-particle {
            position: absolute;
            background: linear-gradient(135deg, #26c6da, #42a5f5);
            border-radius: 50%;
            pointer-events: none;
            animation: serviceParticleFloat 12s linear infinite;
        }
        
        .service-particle:nth-child(1) {
            width: 4px;
            height: 4px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .service-particle:nth-child(2) {
            width: 6px;
            height: 6px;
            top: 70%;
            left: 90%;
            animation-delay: 4s;
        }
        
        .service-particle:nth-child(3) {
            width: 3px;
            height: 3px;
            top: 40%;
            left: 80%;
            animation-delay: 8s;
        }
        
        /* アニメーション定義 */
        @keyframes serviceFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes serviceSlideUpLetter {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes serviceSlideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes serviceFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }
        
        @keyframes serviceParticleFloat {
            0% {
                transform: translateY(0px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh);
                opacity: 0;
            }
        }
/* ==================================================================


FOOTER　フッター


================================================================== */
.footer {
            background: linear-gradient(90deg, #4f89db 0%, #151f40 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
	    z-index: 10;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
            pointer-events: none;
        }
.footer-box {
    display: flex;
	justify-content: center;
	margin-bottom: 5rem;
	width: 30%;
}
.footer-box a {
	display: block;
    background-color: #fff;
    border-radius: 5px;
    color: black;
    width: 75%;
	position: relative;
    margin: 0.5rem;
	padding: 1rem;
}
.footer-box-in h4 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #26c6da 0%, #1d2a4c 50%, #5c6bc0 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
}
.footer-box-in p {
    font-size: 0.8rem;
}
.arrow {
    font-size: 1.2rem;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #26c6da 0%, #42a5f5 50%, #5c6bc0 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: bold;
}
.footer-list {
    width: 90%;
    margin: 1rem auto;
}
.footer-list ul {
    display: flex;
	justify-content: right;
}
.ddd {
    display: inherit !important;
    text-align: right;
    font-size: 0.8rem;
	margin-top: 2rem;
}
.ddd li {
    margin-top: 1rem;
}
.footer-list li {
    margin-left: 2rem;
}
.footer-list a {
    color: #fff !important;
}
.footer-last {
    text-align: center;
    border-top: 1px solid #fff;
    width: 90%;
    margin: auto;
    padding-top: 1rem;
	font-size: 0.8rem;
	margin-top: 4rem;
}
        /* デモ用のボディコンテンツ */
        .demo-content {
            padding: 100px 20px;
            text-align: center;
            color: #666;
        }
.footer-in {
    display: flex;
    justify-content: space-between;
}
.add-footer {
    width: 70%;
}
#form .service-title {
    padding: 3rem 0;
}
.wpcf7-form-control-wrap {
    display: block;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after { content: none !important; }
.wpcf7-list-item-label { padding-left: 0 !important; }

/* 入力と文字を横並び＆間隔を “gap” で一元管理 */
.wpcf7-list-item > label{
  display: inline-flex;
  align-items: center;
  gap: .45em;          /* ← ここが「入力と文字」の間隔 */
  line-height: 1.4;
}

/* 入力要素の不要なマージンを排除 */
.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"]{
  margin: 0;
  vertical-align: middle;
}