/* ==================================================
=====================TOPページ========================
================================================== */

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #fdf7e3 0%, #f6e3cd 80%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #ae4480;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.primary-btn {
    background-color: #ae4480;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #d975a9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secondary-btn {
    background-color: #ffffff;
    color: #ae4480;
    border: 2px solid #ae4480;
}

.secondary-btn:hover {
    background-color: #d975a9;
    color: #ffffff;
	border: 2px solid #d975a9;
	transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ai-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 4つの簡単なステップセクション */
.process-flow {
    padding: 4rem 0;
    background-color: #ffffff;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.process-flow h2, .features h2, .feature-card h2 {margin-bottom: 3rem;}

.step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #ae4480;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tech-tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #ae4480;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* サービスの特徴セクション */
.features {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-icon img {
    width: 40%;
	height: auto;
}

.feature-card h3 {
    color: #333;
    margin: 1rem 0;
}

.feature-card p {
    color: #666;
}

/* 介護に関するお悩みを解決セクション */
.contact {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact h2 {margin-bottom: 1rem;}

.membership {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background-color: #fdf7e3;
	border-radius: 15px;
	border: 2px solid #f6e3cd;
}

.membership p {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 2rem;
	font-weight: 600;
}

.membership_button_box {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.new_button {
	background-color: #5ea344;
	color: #ffffff;
	border: none;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(50,50,50,0.5);
}

.new_button:hover {
	background-color: #b0cf00;
	transform: translateY(-2px);
}

.login_button {
	background-color: #ffffff;
	color: #5ea344;
	border: 2px solid #5ea344;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(50,50,50,0.5);
}

.login_button:hover {
	background-color: #b0cf00;
	color: #ffffff;
	border: 2px solid #b0cf00;
	transform: translateY(-2px);
}

.servicesgrid_area {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 0 auto 3rem;
}

.service-icon {
	width: 25%;
	margin: 0 auto 1rem;
}

.service-card-large {
	color: #ffffff;
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card-large h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.service-card-large p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
	color: #ffffff;
}

.service-card-large h4 {
	margin-top: 1rem;
	color: #ffffff;
}

.bg_col_1 {background: #ae4480;}

.bg_col_2 {background: #d975a9;}

.servicesgrid_button, .cta-button {
	background-color: #ffffff;
	border: none;
	padding: 1rem 2rem;
	border-radius: 0.6rem;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(50,50,50, 0.5);
}

.servicesgrid_button:hover, .cta-button:hover {
	background-color: #fdf7e3;
	border-radius: 3rem;
}

.text_col_1 {color: #ae4480;}

.text_col_2 {color: #d975a9;}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-card h3 {
    color: #ae4480;
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background-color: #e0e0e0;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #999;
}

.contact-btn {
    background-color: #ae4480;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #d975a9;
}

.phone-number {
    font-size: 1.5rem;
    color: #ae4480;
    font-weight: bold;
    margin-top: 1rem;
}

/* おすすめの利用の流れ */
.recommend_flow {
	background-color: #f8f9fa;
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
	margin-top: 3rem;
}

.recommend_flow h2 {margin-bottom: 3rem;}

.recommend_flow h4 {
	margin-top: 2rem;
	font-size: 1.2rem;
}

.flow_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.arrow_box {width: 2%;}

.step_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 28%;
}

.step_box h3 {
	font-size: 1.6rem;
	color: #ae4480;
	margin: 0.5rem 0;
}
.step_box p {
	color: #333;
	text-align: center;
}

/* アセスメントモーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

.assessment-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #ae4480;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.progress-bar {
    background-color: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 2rem 0;
}

.progress-fill {
    background-color: #ae4480;
    height: 100%;
    border-radius: 5px;
    transition: #ffffff 0.3s;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.prev-btn {
    background-color: #e0e0e0;
    color: #333;
}

.next-btn, .submit-btn {
    background-color: #ae4480;
    color: #ffffff;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.category-title {
    color: #ae4480;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
}

.category-items {
    display: grid;
    gap: 1rem;
}

.form-submit-area {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.form-submit-area .submit-btn {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}


/* ==================================================
====================チャット部分=======================
================================================== */
.chat-area-wrap {
	background-color: #ffffff;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	margin-top: 2rem;
	overflow: hidden;
	max-height: 600px;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
}

.chat-input-area {
	display: block;
	background-color: #fafafa;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
}

.chat-container {
    background: #ffffff;
    border-radius: 18px;
    max-width: 90%;
    margin: 0 auto;
    display: block;
    height: 100%;
    min-height: 70vh;
	padding-bottom: 2rem;
	overflow: scroll;
}

.chat-messages {
    padding: 1.5rem;
    background: #ffffff;
    display: flex;
	flex: 1;
    flex-direction: column;
    gap: 1.5rem;
	min-height: auto;
}

.assessment-section .chat-messages {max-height: 40vh;}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
	margin-bottom: 1.5rem;
    animation: fadeInUp 0.3s ease-out;
}

.chat-message.bot-message, .chat-message.ai-message {justify-content: flex-start;}

.chat-message.user-message {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.chat-input-container {
	display: flex;
	gap: 0.75rem;
	align-items: flex-end;
}

.chat-input {
	flex: 1;
	padding: 1rem;
	border-radius: 25px;
	font-size: 1rem;
	resize: none;
	min-height: 50px;
	max-height: 100px;
	font-family: inherit;
}

.chat-input:focus {
	outline: none;
	border-color: #ae4480;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar, .ai-message .message-avatar {background-color: #ae4480;}

.user-message .message-avatar {background-color: #4caf50;}

.message-content, .message-bubble {
    max-width: 70%;
    padding: 1rem;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.message {
	margin-bottom: 1rem;
	display: flex;
	align-items: flex-start;
}

.message.bot {justify-content: flex-start;}

.message.user {justify-content: flex-end;}

.bot-message .message-content, .ai-message .message-content {
    background-color: #fdf7e3;
    border: 1px solid #e0e0e0;
    color: #333;
}

.user-message .message-content {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333;
}

.chat-message.explanation .message-content {
    background-color: #fbeef2;
    border: 1px solid #eabad0;
	color: #333;
}

.chat-buttons {
    display: grid;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
	margin: 1rem;
	padding: 1.5rem;
}

.chat-option-btn {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.chat-option-btn:hover {
    background-color: #fdf7e3;
    border-color: #ae4480;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.chat-skip-btn {
    padding: 0.75rem 1.5rem;
    background-color: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: #5f6368;
    margin: 1rem 0 2pem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.chat-skip-btn:hover {
	color : #ffffff;
    background-color: #aaa;
    transform: translateY(-1px);
}

.chat-back-btn {
    padding: 0.75rem 1.5rem;
    background-color: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: #ff9800;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
}

.chat-back-btn:hover {
    background-color: #ff9800;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255,152,0,0.3);
}

.chat-text-input {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.chat-text-input textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

.chat-text-input textarea:focus {
    outline: none;
    border-color: #ae4480;
    box-shadow: 0 0 0 3px rgba(25,118,210,0.1);
}

.chat-input-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.chat-submit-btn {
    padding: 1rem 2rem;
    background-color: #5ea344;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(50,50,50,0.5);
}

.chat-submit-btn:hover {
    background-color: #b0cf00;
    transform: translateY(-2px);
}

.chat-help {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 2rem auto;
}

.chat-help h4 {
    color: #ae4480;
    margin-bottom: 1rem;
}

.chat-help ul {
    list-style: none;
    padding: 0;
}

.chat-help li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.chat-help li:before {
    content: "•";
    color: #ae4480;
    position: absolute;
    left: 0;
}

.chat-help li:last-child {
    border-bottom: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* チャットボットのスクロールバーカスタマイズ */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-buttons .secondary-btn {
    flex: 1;
    max-width: 150px;
}

.form-buttons .auth-btn {
    flex: 1;
    max-width: 200px;
}


/* ==================================================
=============AIチャットボット介護相談ページ===============
================================================== */

.chat-interface {overflow: hidden;}

.consultation-cta {
	background: #ae4480;
	color: #ffffff;
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	margin-top: 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.consultation-cta h3 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.consultation-cta p {
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.send-btn {
	background-color: #5ea344;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.send-btn:hover {
	background-color: #b0cf00;
	transform: scale(1.05);
}

.send-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	transform: none;
}

/* ==================================================
==================お試し要介護度判定====================
================================================== */
.chat-input-container {
	display: flex;
	gap: 0.75rem;
	align-items: flex-end;
}

.assessment-section .option-btn {
	background: #5ea344;
	color: #ffffff;
	border: none;
	padding: 1.2rem 2rem;
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1.1rem;
	font-weight: 500;
	min-width: 250px;
	width: 100%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(50,50,50,0.5);
}

.assessment-section .option-btn:hover {
	background-color: #b0cf00;
	transform: translateY(-2px);
}

.assessment-section .option-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* 会員登録メリット表示 */
.auth-benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.auth-benefits h3 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* ログインページ専用スタイル */
.auth-options {
    margin: 2rem 0;
}

.forgot-password {
    text-align: center;
    margin-bottom: 1.5rem;
}

.forgot-link {
    color: #ae4480;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
}

.social-divider {
    position: relative;
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.social-divider::after {
    content: 'または';
    background-color: #ffffff;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.social-btn {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: #ae4480;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
}

.google-btn .social-icon {
    background-color: #db4437;
}

.line-btn .social-icon {
    background-color: #00c300;
}

/* ゲストアクセス */
.guest-access {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.guest-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.guest-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.guest-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.guest-services {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guest-btn {
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.guest-btn:hover {
    border-color: #ae4480;
    background-color: #e3f2fd;
    transform: translateY(-1px);
}

.service-icon {
    font-size: 1.2rem;
}

.guest-note {
    color: #999;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* モーダルスタイル（パスワードリセット用） */
.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    color: #ae4480;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 0.9rem;
}

/*　＝＝＝＝ レスポンシブデザイン　＝＝＝＝ */
@media (max-width: 768px) {

/* ==================================================
=====================TOPページ========================
================================================== */
/* ヒーローセクション */
.hero {padding: 2.5rem 0;}

.hero-content h2 {font-size: 2rem;}

.hero-content p {font-size: 1rem;}

.cta-buttons {justify-content: center;}

.hero .container {grid-template-columns: 1fr; text-align: center;}
	
.primary-btn, .secondary-btn {padding: 1rem;}
	
/* サービスの特徴セクション */
.feature-card {padding: 1rem;}

.feature-icon img {width: 25%;}

/* 介護に関するお悩みを解決セクション */
.service-card-large {padding: 1rem;}

.servicesgrid_area {
	display: flex;
	flex-direction: column;
	margin: 0 auto 3rem;
}

/* おすすめの利用の流れ */
.recommend_flow {padding: 1.5rem;}
	
.recommend_flow h2 {margin-bottom: 1rem;}

.recommend_flow h4 {font-size: 1rem;}

.flow_wrap {flex-direction: column; gap: 1rem;}

.arrow_box {width: 25%;}

.step_box {width: 100%;}

    
.timeline {grid-template-columns: 1fr;}
    
.timeline::before {display: none;}
    
.contact-options {grid-template-columns: 1fr;}
    
.nav-links {display: none;}
    
.chat-container {height: 50vh; margin: 0 1rem 2rem;}
    
.chat-header, .chat-help {margin: 0 1rem;}
    
.message-content {max-width: 85%;}
    
.chat-buttons {gap: 0.75rem;}
    
.chat-option-btn {padding: 1rem; font-size: 1rem;}
    
.chat-input-buttons {flex-direction: column; gap: 0.5rem;}
    
.chat-submit-btn, .chat-skip-btn {width: 100%; padding: 1rem;}

/* ==================================================
=============AIチャットボット介護相談ページ===============
================================================== */
.ai-consultation-header {padding: 2rem 1rem;}

.chat-interface {margin: 1rem 0; max-height: 500px;}

.message-content {max-width: 85%;}

.chat-input-container {flex-direction: column; gap: 1rem;}

.send-btn {align-self: flex-end;}
	
.primary-btn, .secondary-btn {padding: 1rem 0.5rem;}
    
   /* 認証ページのレスポンシブ */
.auth-section {padding: 2rem 0 0;}
	
.auth-container {margin: 0; padding: 1.5rem;}
    
.auth-links {gap: 0.5rem;}
	
.auth-btn {padding: 1rem 0.5rem;}
    
.auth-link {padding: 0.5rem; font-size: 0.9rem;}
    
.benefits-grid {grid-template-columns: 1fr;}
    
.guest-services {gap: 0.5rem;}
    
.guest-btn {font-size: 0.85rem; padding: 0.75rem;}

}
