/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 温かみのある落ち着いた配色 */
    --primary-red: #C44536;
    --dark-red: #8B3023;
    --light-red: #D9685D;
    --accent-orange: #E89F71;
    
    /* ニュートラルカラー */
    --black: #2C2C2C;
    --dark-gray: #4A4A4A;
    --gray: #6B6B6B;
    --light-gray: #D4D4D4;
    --white: #FFFFFF;
    --off-white: #F7F5F3;
    --cream: #FBF9F7;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 10px 26px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-red);
}

.mobile-cta {
    margin-top: 18px;
    background: var(--primary-red);
    color: var(--white) !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 30px;
    border: none !important;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 75px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75) 0%, rgba(74, 74, 74, 0.65) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease;
}

.hero-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 45px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 69, 54, 0.3);
}

.btn-secondary {
    padding: 16px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 2;
    opacity: 0.8;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: var(--white);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(250%); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

.title-main {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 8px;
}

.title-sub {
    display: block;
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--cream);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-lead {
    font-size: 18px;
    line-height: 2;
    color: var(--dark-gray);
    margin-top: 25px;
    font-weight: 500;
}

.about-lead strong {
    color: var(--primary-red);
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 60px;
}

.about-text {
    font-size: 16px;
    line-height: 2;
    color: var(--dark-gray);
}

.about-text p {
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-image.main {
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== REASONS SECTION ===== */
.reasons {
    padding: var(--section-padding);
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.reason-card {
    background: var(--off-white);
    padding: 40px 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reason-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.reason-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-gray);
}

/* ===== VALUE SECTION ===== */
.value {
    padding: var(--section-padding);
    background: var(--cream);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.value-image img {
    width: 100%;
    height: auto;
    display: block;
}

.value-text p {
    font-size: 16px;
    line-height: 2;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.value-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== CAREER SECTION ===== */
.career {
    padding: var(--section-padding);
    background: var(--white);
}

.career-path {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.career-step {
    background: var(--off-white);
    padding: 32px 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.career-step:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.step-number {
    min-width: 90px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.step-period {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.step-salary {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.salary-note {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    margin-left: 6px;
}

.step-duties {
    list-style: none;
}

.step-duties li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.step-duties li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.career-note {
    text-align: center;
    margin-top: 35px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== VOICES SECTION ===== */
.voices {
    padding: var(--section-padding);
    background: var(--cream);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.voice-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.voice-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-content {
    padding: 28px 25px;
}

.voice-header {
    margin-bottom: 15px;
}

.voice-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.voice-position {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
}

.voice-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--dark-gray);
}

/* ===== RECRUIT SECTION ===== */
.recruit {
    padding: var(--section-padding);
    background: var(--white);
}

.recruit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.recruit-item {
    background: var(--off-white);
    padding: 32px 28px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.recruit-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.recruit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.recruit-icon i {
    font-size: 24px;
    color: var(--white);
}

.recruit-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.recruit-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--dark-gray);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--section-padding);
    background: var(--cream);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-red);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--dark-gray);
}

/* ===== ENTRY SECTION ===== */
.entry {
    padding: 70px 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.entry-content {
    max-width: 750px;
    margin: 0 auto;
}

.entry-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 22px;
}

.entry-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.entry-buttons {
    margin-bottom: 50px;
}

.btn-entry {
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.entry-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
}

.contact-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.contact-phone {
    font-size: 26px;
    font-weight: 700;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-hours {
    font-size: 13px;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0 25px;
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo p {
    font-size: 15px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--light-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-phone,
.footer-website {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-website a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-website a:hover {
    color: var(--light-red);
    text-decoration: underline;
}

.footer-bottom > p {
    font-size: 12px;
    opacity: 0.7;
}

.contact-website {
    font-size: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-website a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-website a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 69, 54, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(196, 69, 54, 0.4);
}

/* ===== COMMUNITY SECTION ===== */
.community {
    padding: var(--section-padding);
    background: var(--off-white);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.community-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.community-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.community-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.community-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* ===== CAREER STEP WITH IMAGE ===== */
.career-step-with-image {
    background: var(--off-white);
    padding: 32px 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.step-content-with-image {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    align-items: start;
}

.step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
.pc-only {
    display: inline;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recruit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-content-with-image {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .pc-only {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .title-main {
        font-size: 28px;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
    }
    
    .recruit-grid {
        grid-template-columns: 1fr;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .entry-buttons .btn-entry {
        width: 100%;
        justify-content: center;
    }
}
