@charset "utf-8";
/* --- 年齢確認ページ：構成スタイル --- */
.age-check-page {
    background-color: #f8f4f0;
    margin: 0;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
}

.gate-container {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border: 1px solid #e6d5d5;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.gate-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.gate-content {
    padding: 40px 30px;
    text-align: center;
}

.gate-title {
    font-size: 1.8rem;
    color: var(--azuki);
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.gate-text {
    line-height: 2.2;
    margin-bottom: 40px;
    color: #443333;
}

.gate-text .lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
}

/* ボタン */
.gate-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-enter, .btn-exit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 70px;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-enter {
    background-color: var(--azuki);
    color: #fff;
    border-bottom: 5px solid #7a3e3a;
}
.btn-enter:hover {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.btn-exit {
    background-color: #e0e0e0;
    color: #777;
}

/* 求人バナーセクション */
.gate-recruit-section {
    margin-bottom: 40px;
}

.recruit-banner-large {
    display: block;
    background-color: var(--wakakusa);
    color: #fff;
    text-decoration: none;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.recruit-banner-large:hover {
    opacity: 0.95;
    transform: scale(1.01);
}

.recruit-label {
    background: #fff;
    color: var(--wakakusa);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 12px;
    display: inline-block;
}

.recruit-main-text {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.recruit-sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sub-recruit-link {
    margin-top: 15px;
}
.sub-recruit-link a {
    color: var(--azuki);
    font-size: 0.9rem;
    font-weight: bold;
}

/* フッターキーワード */
.gate-footer-keywords {
    font-size: 0.7rem;
    color: #bbb;
    line-height: 1.8;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .gate-container { margin: 0; }
    .gate-buttons { flex-direction: column; align-items: center; }
    .btn-enter, .btn-exit { width: 100%; }
}
