@charset "utf-8";
/**
 * ユーザ登録用
 * 
 * create: 2025-11-27
 * update: 2025-11-27
 * 
 * @package     yonde
 * @author      ik
 * @copyright   Copyright (c) 2025 , NetReal
 * @version     yonde 1.00
 */


/* ==========================================
   カスタム色変数
   ========================================== */
:root {
    --color-primary-green: #389a6e;
    --color-dark-green: #276f4d;
    --color-light-green: #57b38a;
    --color-lighter-green: #cfebd3;
    --color-bg-cream: #fffcf1;
    --color-pink: #FA6775;
    --color-red: #c2203d;
    --color-yellow: #e3ea85;
    --color-text-dark: #000000;
    --color-text-gray: #666666;
    --header-height: 85px;
}

/* ==========================================
   基本スタイル
   ========================================== */
body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

section[id] {
    scroll-margin-top: var(--header-height);
}

/* ==========================================
   Header
   ========================================== */
.header-custom {
    background-color: var(--color-bg-cream) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-custom .navbar {
    height: 100%;
    padding: 0;
}

.header-custom .container {
    height: 100%;
}

.logo-img {
    width: 136.5px;
    height: auto;
}

.header-custom .nav-link {
    color: var(--color-text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
}

.header-custom .nav-link:hover,
.header-custom .nav-link.active {
    color: var(--color-primary-green) !important;
}

.btn-login {
    background-color: var(--color-red);
    color: white !important;
    border: none;
    padding: 0.72rem 1.44rem;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #a01a31;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(to right, #2d523f 0%, #389a6e 35%, #389a6e 100%);
    color: white;
    padding: 3rem 0;
}

.footer-icon {
    font-size: 2.2rem;
    margin-right: 0.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-company {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.footer-company p {
    margin-bottom: 0.25rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    margin: 0;
}

/* ==========================================
   Page Content (Contact, FAQ共通)
   ========================================== */
.page-content {
    padding-top: calc(var(--header-height) + 1rem);
    min-height: 100vh;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #555;
}

/* ==========================================
   レスポンシブ対応
   ========================================== */
@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }

    /* ハンバーガーメニュー展開時のスタイル */
    .navbar-collapse {
        background-color: var(--color-bg-cream);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* ログインボタンをモバイルでフル幅に */
    .navbar-collapse .btn-login {
        width: 100%;
        margin-top: 1rem;
    }
}
