/* =================================================================
   LOVIT Theme - Complete Stylesheet
   ================================================================= */

/* =================================================================
   Global Variables & Reset (Hybrid Theme)
   ================================================================= */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f4f6f8;
    --text-main: #1a1a1a;
    --text-sub: #555555;
    --border-color: #e0e0e0;

    /* Branding */
    --accent-gradient: linear-gradient(135deg, #FF2E63, #08D9D6);
    --accent-color: #3B82F6;

    /* Hero Specific */
    --hero-bg: #050505;
    --hero-text: #ffffff;

    --font-en: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --header-height: 80px;
    --section-padding: 140px;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-en), var(--font-jp);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s var(--easing);
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mt-1 {
	margin-top: 1rem;
}

.mt-2 {
	margin-top: 2rem;
}

.mt-3 {
	margin-top: 3rem;
}

.mb-1 {
	margin-bottom: 1rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

/* =================================================================
   Typography
   ================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
    text-transform: uppercase;
    position: relative;
    padding-left: 3rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}

/* =================================================================
   Layout Utilities
   ================================================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* =================================================================
   Header
   ================================================================= */

body.page .header, body.single .header {
    color: #000;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: background-color 0.3s ease, padding 0.3s ease;
    color: #fff;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    color: #000;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: inherit;
}

.nav-menu ul {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: inherit;
    letter-spacing: 0.05em;
    position: relative;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.nav-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle .bar:nth-child(1) {
    top: 0;
}

.nav-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle .bar:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =================================================================
   Hero Section (Dark)
   ================================================================= */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-bg);
    overflow: hidden;
    color: var(--hero-text);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: screen;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: #FF2E63;
    top: -150px;
    right: -100px;
    opacity: 0.4;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: #08D9D6;
    bottom: -100px;
    left: -50px;
    opacity: 0.4;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-sub {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 7vw;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* =================================================================
   About Section
   ================================================================= */
.about {
    background: var(--bg-color);
}

.about-text {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.5;
    color: #000;
    max-width: 900px;
}

.about-text span {
    color: var(--accent-color);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-text {
    display: inline-block;
    margin-top: 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* =================================================================
   Service Section
   ================================================================= */
.service {
    background: var(--bg-secondary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /*transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);*/
}

.service-card:hover {
    /*transform: translateY(-15px);*/
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-num {
    font-size: 4rem;
    font-weight: 900;
    color: #f0f0f0;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* =================================================================
   Value/Strength
   ================================================================= */
.value-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    flex: 1 1 300px;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /*display: inline-block;*/
	display: inline-flex;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 50%;
    color: var(--accent-color);
}

/* =================================================================
   News Section
   ================================================================= */
.news-list {
    border-top: 2px solid #000;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    color: var(--text-main);
}

/*.news-item:hover {
    background: #fafafa;
}*/

.news-date {
    font-weight: 700;
    color: #999;
    font-size: 0.9rem;
    width: 140px;
}

.news-cat {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    background: #000;
    color: #fff;
    border-radius: 100px;
    margin-right: 2rem;
    font-weight: 700;
}

.news-title {
    flex: 1;
    font-weight: 600;
}


/* =================================================================
   ページネーション
   ================================================================= */

div.news_pagenation_area {
	width: 100%;
	height: 30px;
	margin: 2rem 0;
}

div.news_pagenation_area ul.page-numbers {
	list-style: none;
	margin-bottom: 0;
	text-align: center;
	padding: 0;
}

div.news_pagenation_area ul.page-numbers li {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	padding: 10px;
	width: 30px;
    height: 30px;
}

div.news_pagenation_area ul.page-numbers li:last-child {
	margin-right: 0;
}

div.news_pagenation_area ul.page-numbers li .page-numbers {
	display: block;
	background: #E2E2E2;
	color: #000;
	width: 100%;
	height: 100%;
	width: 30px;
}

div.news_pagenation_area ul.page-numbers li span.current {
	display: block;
	width: 100%;
	height: 100%;
}

div.news_pagenation_area ul.page-numbers li .prev, div.news_pagenation_area ul.page-numbers li .next {
	width: 70px;
}

div.news_pagenation_area ul.page-numbers li span.page-numbers {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
    position: absolute;
    font-size: 15px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;
    border-radius: 50vh;
    color: #FFF;
    width: 100%;
    height: 100%;
    line-height: 28px;
    background: #000;
}

div.news_pagenation_area ul.page-numbers li a.page-numbers {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
    position: absolute;
    font-size: 15px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;
    border-radius: 50vh;
    color: #000;
    width: 100%;
    height: 100%;
    line-height: 28px;
	background: #DCDCDC;
	text-decoration: none;
}

div.news_pagenation_area ul.page-numbers li i {
	display: block;
    position: absolute;
    font-size: 13px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 100%;
    height: 100%;
    line-height: 31px;
}

/* =================================================================
   CTA Section
   ================================================================= */
.cta-section {
    text-align: center;
    background: #000;
    color: #fff;
}

.cta-section h2,
.cta-section p {
    color: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 4rem;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    font-size: 1.2rem;
    transition: transform 0.3s var(--easing);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

/* =================================================================
   Footer
   ================================================================= */
.footer {
    padding: 4rem 0;
    background: #000;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

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

/* =================================================================
   Page Header (Subpages)
   ================================================================= */
.page-header {
    height: 40vh;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    position: relative;
    z-index: 2;
}

/* =================================================================
   About Page - Mission & Vision
   ================================================================= */
.mission-vision {
    background: #000;
    color: #fff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.mv-box {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.mv-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.mv-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.4;
    background: linear-gradient(to right, #fff 20%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* =================================================================
   About Page - Profile Grid
   ================================================================= */
.profile-section {
    background: #fff;
    padding: 8rem 0;
}

.profile-grid-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    border-top: 1px solid #eee;
}

.profile-row-label {
    padding: 2rem 0;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.profile-row-content {
    padding: 2rem 0 2rem 2rem;
    border-bottom: 1px solid #eee;
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* =================================================================
   About Page - CEO Message
   ================================================================= */
.message-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.message-wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.message-content {
    flex: 1;
}

.message-image {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 4px;
    position: relative;
}

.message-image:before {
    background-image: url(/wp-content/uploads/2023/07/pc_girl_02.png);
    background-position: 50%;
    background-size: cover;
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 100%;
}

.message-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.message-body p {
    margin-bottom: 1.5rem;
    color: var(--text-sub);
}

.ceo-sign {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.ceo-role {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 900;
}

/* =================================================================
   Service Detail Page
   ================================================================= */
.service-detail-item {
    margin-bottom: 7rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-img.service-01:before {
	background-image: url(/wp-content/uploads/2026/02/service_01.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-img.service-02:before {
	background-image: url(/wp-content/uploads/2026/02/service_02.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-img.service-03:before {
	background-image: url(/wp-content/uploads/2026/02/service_03.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-img.service-04:before {
	background-image: url(/wp-content/uploads/2026/02/service_04.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-img.service-05:before {
	background-image: url(/wp-content/uploads/2026/02/service_05.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-img.service-06:before {
	background-image: url(/wp-content/uploads/2026/02/service_06.png);
	background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
	content: "";
	height: 80%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 80%;
}

.service-desc {
    flex: 1;
}

.service-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =================================================================
   Company Profile Table (Legacy Support)
   ================================================================= */
.company-profile {
    width: 100%;
    border-collapse: collapse;
}

.company-profile th,
.company-profile td {
    padding: 1.5rem 0;
    text-align: left;
    vertical-align: top;
}

.company-profile th {
    width: 150px;
    color: var(--text-main);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.company-profile td {
    color: var(--text-sub);
    border-bottom: 1px solid var(--border-color);
}

/* =================================================================
   Pricvacy Policy（プライバシーポリシー）
   ================================================================= */

.privacy-policy-section {
    padding: 8rem 0;
    background: #fff;
}

/* =================================================================
   Terms of Service（利用規約）
   ================================================================= */

.terms-section {
    padding: 8rem 0;
    background: #fff;
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 12vw;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .scroll-indicator {
        bottom: 5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 8rem 2rem;
        transition: right 0.4s var(--easing);
        color: #fff;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .nav-link {
        font-size: 1.5rem;
        color: #fff;
    }

    .mv-title {
        font-size: 2rem;
    }

    .profile-grid-container {
        display: block;
    }

    .profile-row-label {
        padding-bottom: 0.5rem;
        border-bottom: none;
        color: var(--accent-color);
    }

    .profile-row-content {
        padding: 0 0 2rem 0;
    }

    .message-wrap {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .message-image {
        width: 100%;
        height: 300px;
        flex: none;
    }

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
        margin-bottom: 4rem;
    }

    .service-img {
        width: 100%;
        height: 250px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* =================================================================
   GSAP Animation Classes
   These classes are used as selectors by main.js for animations.
   No default styles needed - elements visible by default.
   ================================================================= */