/* 全体のベーススタイル更新 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
    background-color: #f8f9fa;
	font-size:0.9em;
    margin: 0;
    padding: 0;
    color: #333;
}
/* 検索エリアの見出しスタイル */
#search-area h2,
#search-keywords h3,
#keep-list-section h3 {
    color: #333;
    margin-bottom: 5px;
}
#app {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px 100px;
}
.top-image-space{
    margin: 0 0 20px;
}
.tag-button.active {
    background-color: #8e68ef;
    color: white;
}
/* 検索・クリアボタン */
.search-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}
#apply-tags {
    flex: 2;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background-color: #8e68ef;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#clear-tags {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#apply-tags:hover {
    background-color: #754fdc;
}
#clear-tags:hover {
    background-color: #e9ecef;
}
/* セクションヘッダー */
h6 {
    color: #333;
    margin: 20px 0 15px;
    font-weight: 600;
    font-size: 1.2em;
}

/* セクションヘッダー */
h3 {
    color: #333;
    margin: 20px 0 0;
    font-weight: 600;
    font-size: 1.2em;
}

/* セクション区切り線 */
.section-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}
/* 検索結果セクション */
#job-list {
    margin-top: 20px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .site-logo {
        height: 50px; /* モバイルでは少し小さく */
    }
    .search-options {
        flex-direction: column;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    #apply-tags, #clear-tags {
        width: 100%;
    }
	
    .sponsor-text {
        font-size: 9px;
    }
    
    .sponsor-img {
        height: 16px;
    }
}

/* 選択されたエリアタグのスタイル */
.selected-area-tag {
    display: inline-flex;
    align-items: center;
    background-color: #e8f0fe;
    color: #1a73e8;
    padding: 3px 6px;
    border-radius: 5px;
    margin: 4px;
    font-size: 0.8em;
    border: 1px solid #1a73e8;
    transition: all 0.3s ease;
}
.selected-area-tag::before {
    content: '#';
    margin-right: 4px;
    opacity: 0.7;
}
.selected-area-tag .remove-tag:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.selected-area-tag .remove-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}
.selected-area-tag:hover {
    background-color: #1a73e8;
    color: white;
}
/* タグ検索ボタン */
#search-keywords {
    margin: 20px 0;
}
.tag-button {
    display: inline-block;
    padding: 5px 10px;
    margin: 4px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* グリッドレイアウトの調整 */
.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
	padding: 12px;
	width: 100%;
}
/* NEW!! ラベルのスタイル調整 */
.new-label {
    background-color: #F00;
    color: white;
    padding: 2px 6px;
    font-size: 0.7em;
    border-radius: 3px;
    margin: -5px 0 0 0;
    display: inline-block;
    vertical-align: middle;
}
/* 求人リストのスタイル */
.job-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}
.job-item:hover {
    background: #f8f9fa;
}
/* 矢印アイコンのスタイル */
.arrow-icon {
    position: absolute;
    bottom: 14px;
    right: 15px;
    color: #8e68ef;
    font-size: 0.9em;
}
.arrow-icon i{
    font-size: 25px;
    color: #8e68ef;
}
.job-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.job-item h4 {
	margin: 0;
	font-size: 1.0em;
}
.job-item p {
	margin: 5px 0;
	color: #555;
	display: flex;
	align-items: center;
}
.job-item p .icon {
    margin-right: 10px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.job-item p .icon i {
    font-size: 1.0em;
}
#load-more {
	display: block;
	width: 100%;
	padding: 10px;
	margin-top: 20px;
	background-color: #8e68ef;
	color: white;
	text-align: center;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}
#load-more:hover {
	background-color: #754fdc;
}
/* 勤務地検索ボタン */
.search-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}
.search-options button {
    flex: 1;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.search-options button:hover {
    background-color: #f5f5f5;
}
/* アイコンのスタイル（Font Awesome等のアイコンフォントを使用する場合） */
.search-options button i {
    margin-right: 8px;
    color: #8e68ef;
}
.search-options h3 {
	margin: 0;
	font-size: 1.2em;
}
/* チェックボックスのコンテナスタイル */
.checkbox-container {
	background-color: #ffffff;
	margin: 4px 0;
	width: 100%;
}
/* チェックボックスとラベルのレイアウト */
.checkbox-item {
	display: flex;
	align-items: flex-start;
	padding: 8px 12px;
	background-color: #f8f8f8;
	border-radius: 4px;
	border: 1px solid #eee;
	margin: 2px 0;
	/*min-height: 36px;  最小の高さを設定 */
}
.checkbox-item input[type="checkbox"] {
	flex: 0 0 20px;
	margin-top: 3px;
	margin-right: 8px;
}
.checkbox-item span {
	flex: 1;
	word-break: break-all;
	line-height: 1.4;
}
/* 選択されたエリアタグのスタイル */
#selected-areas {
    /* margin: 0 10px 0; */
    /* min-height: 40px; */
    /* padding: 5px; */
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
/* モーダルのスタイル修正 */
.modal-content {
    position: relative;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    /*padding-bottom: 80px;   フッター分の余白 */
    width: 90%;
    max-width: 600px;
    height: 80vh;  /* 高さを固定 */
    display: flex;  /* 追加 */
    flex-direction: column;  /* 追加 */
}
/* スクロール可能なエリアを作成 */
.modal-body {
    flex: 1;  /* 追加 */
    overflow-y: auto;  /* 追加 */
    padding-right: 10px;  /* スクロールバー用の余白 */
}
.region-header {
	color: #8e68ef;
	font-size: 16px;
	font-weight: bold;
	padding: 8px 0;
	margin: 16px 0 8px;
	border-left: 4px solid #8e68ef;
	padding-left: 12px;
}
.close-modal {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}
/* モーダルアクションボタンのスタイル修正 */
.modal-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px; /* ボタン間の間隔を追加 */
    padding: 15px 20px;
    background-color: white;
    border-top: 1px solid #eee;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    margin: 0 -20px;
    margin-top: auto;
}
/* スクロール時のコンテンツが見切れないように調整 */
.region-section:last-child {
    margin-bottom: 20px;
}
.modal-actions button {
    flex: 1; /* ボタンを均等な幅に */
    padding: 12px 20px; /* パディングを少し大きく */
    border-radius: 20px;
    border: none;
    cursor: pointer;
    min-width: 120px; /* 最小幅を設定 */
    font-size: 15px; /* フォントサイズを少し大きく */
}
.apply-selection {
	background-color: #8e68ef;
	color: white;
}
.clear-selection {
	background-color: #f5f5f5;
	color: #666;
}
/* 第2階層以降の表示スタイル */
.prefecture-item, .prefecture-station {
	margin: 5px 0;
	width: 100%;
}		
.city-list, .line-list, .station-list {
	margin-left: 20px;
	margin-top: 5px;
	padding-left: 10px;
	border-left: 2px solid #8e68ef;

}
/* 第2階層以降のチェックボックスのスタイル */
.city-checkboxes, .line-checkboxes, .station-checkboxes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
	margin-top: 8px;
	width: 100%;
}
.region-section {
	margin-bottom: 20px;
}
.region-section h4 {
	color: #ff69b4;
	border-left: 4px solid #ff69b4;
	padding-left: 8px;
	margin-bottom: 10px;
}
/* カスタムアラートのスタイル */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    max-width: 90%;
    width: 320px;
    text-align: center;
}
.custom-alert-message {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}
.custom-alert-button {
    background-color: #8e68ef;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.custom-alert-button:hover {
    background-color: #754fdc;
}
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}
.no-more-results {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}
.no-more-results p {
    margin: 0;
    font-size: 14px;
}
.load-error {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: #fff3f3;
    border-radius: 8px;
    color: #dc3545;
}
/* キープボタンのスタイル */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.keep-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 5px 5px 5px;
    position: relative;
    position: relative;
    z-index: 2;
    pointer-events: all;
}
.keep-button i {
    font-size: 20px;
    color: #888;
    transition: color 0.3s ease;
}
.keep-button i.fas {
    color: #ffd700;
}
.keep-button * {
    pointer-events: none; /* アイコン自体のクリックイベントを無効化 */
}
/* アイコンの色を統一 */
.job-item .icon i {
    color: #8e68ef !important; /* !importantを使用して確実に上書き */
}
#search-all {
	padding:0 10px;
    background: #FFFFFF;
	border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* エリア検索のスタイル
#search-area {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
 */
/* キープリストのスタイル
#keep-list-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
 */
#keep-list {
    margin-top: 15px;
}
#keep-list .job-item {
    background: white;
    margin-bottom: 10px;
    /*padding: 15px;*/
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}
#keep-list .job-link {
    display: block;
    text-decoration: none;
    color: inherit;
    /*padding: 15px;*/
}
#keep-list .arrow-icon {
    position: absolute;
    bottom: 14px;
    right: 15px;
    color: #8e68ef;
    font-size: 0.9em;
}

#keep-list .arrow-icon i{
    font-size: 25px;
    color: #8e68ef;
}
/* トースト通知のスタイル */
#toast-container {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}
.toast-notification {
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.toast-notification.show {
    opacity: 1;
}
/* キープ追加時は緑系の色 */
.toast-notification.success {
    background-color: rgba(76, 175, 80, 0.9);
}
/* キープ解除時は青系の色 */
.toast-notification.info {
    background-color: rgba(33, 150, 243, 0.9);
}
/* ヘッダースタイル */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-title {
    margin: 0;
    display: flex;
    align-items: center;
}

.site-title a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 50px; /* ロゴの高さを調整 */
    width: auto;
    object-fit: contain;
}

/* メニュートグルボタン */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

/* スライドメニュー */
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 4px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 1001;
}

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

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.menu-item i {
    margin-right: 10px;
    width: 20px;
    color: #8e68ef;
}

.menu-item:hover,
.menu-item.active {
    background-color: #f8f9fa;
}

/* オーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* フッタースタイル */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    z-index: 999;
}

.footer-nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 0.8em;
    transition: 0.3s;
}

.footer-nav i {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #8e68ef;
}

.footer-nav a.active {
    color: #8e68ef;
}

/* トップへ戻るボタンアニメーション */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

#to-top {
    animation: float 2s ease-in-out infinite;
}

/* メインコンテンツの調整 */
body {
    padding-top: 60px;
    padding-bottom: 70px;
}

/* 共通のコンテンツラッパー */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* About ページのスタイル */
.about-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-content h3 {
    color: #8e68ef;
    margin-top: 20px;
}

.about-content ul {
    list-style: none;
    padding-left: 20px;
}

.about-content ul li {
    margin: 10px 0;
    position: relative;
}

.about-content ul li:before {
    content: "•";
    color: #8e68ef;
    position: absolute;
    left: -15px;
}

/* プライバシーポリシーページのスタイル */
.privacy-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-content h3, .privacy-content h4 {
    color: #8e68ef;
    margin-top: 20px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 20px;
}

.privacy-content ul li {
    margin: 10px 0;
    position: relative;
}

.privacy-content ul li:before {
    content: "•";
    color: #8e68ef;
    position: absolute;
    left: -15px;
}

/* サイトマップページのスタイル */
.sitemap-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sitemap-group {
    margin-bottom: 30px;
}

.sitemap-group h3 {
    color: #8e68ef;
    margin-bottom: 15px;
}

.sitemap-group ul {
    list-style: none;
    padding-left: 20px;
}

.sitemap-group ul li {
    margin: 10px 0;
}

.sitemap-group ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-group ul li a:hover {
    color: #8e68ef;
}
/* ローディング表示のスタイル */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #f8f9fa;
    border-bottom-color: #8e68ef;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ローディング終了時のアニメーション */
.loader-container.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* スポンサーロゴ */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sponsor-content {
    display: flex;
    flex-direction: column;  /* テキストとロゴを縦に配置 */
    align-items: flex-start;  /* 左寄せ */
    gap: 3px;  /* テキストとロゴの間隔 */
	margin: 11px 0 -9px ;
}

.sponsor-text {
    font-size: 9px;
    color: #666;
}

.sponsor-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* キープのスタイル */
.no-keeps {
	text-align: center;
	padding: 20px;
	color: #666;
	background: #f8f9fa;
	border-radius: 8px;
	margin: 20px 0;
}

#keep-list-section {
	max-width: 800px;
	margin: 20px auto;
}

#keep-list-section h3 {
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #8e68ef;
}

/* キープ数バッジのスタイル */
.keep-badge {
    position: absolute;
    top: -5px;
    right: -15px;
    background-color: #8e68ef;
    color: white;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: none;  /* デフォルトは非表示 */
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* フッターのリンク位置調整 */
.footer-nav a {
    position: relative;  /* バッジの位置決めのため */
}

/* フェードインアニメーション用のスタイル */
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #app全体をフェードイン対象とする */
#app {
    animation: fadeInAnimation 0.6s ease-out forwards;
    opacity: 0;  /* 初期状態は非表示 */
}

/* セクションごとの段階的なフェードイン */
#search-all {
    animation: fadeInAnimation 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

#job-list {
    animation: fadeInAnimation 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

/* about.phpのコンテンツ */
.about-section {
    animation: fadeInAnimation 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* privacypolicy.phpのコンテンツ */
.privacy-section {
    animation: fadeInAnimation 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* keep.phpのコンテンツ */
#keep-list-section {
    animation: fadeInAnimation 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* sitemap.phpのコンテンツ */
.sitemap-section {
    animation: fadeInAnimation 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* モーダル表示アニメーション */
@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* モーダル本体のアニメーション */
.modal {
    animation: overlayFadeIn 0.3s ease-out;
}

.modal-content {
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

/* タップハイライトのみを透明に */
* {
    -webkit-tap-highlight-color: transparent;
}

/* リンクの基本スタイル */
a {
    color: #000000;
    text-decoration: none;
}

/* アクティブ状態（タップ時）の背景だけを透明に */
a:active {
    background-color: transparent;
}

/* フッターワイドバナー固定スタイル */
#line-banner {
  width: 100%;
  background-color: #06C755;
  position: fixed;
  bottom: 55px;
  left: 0;
  right: 0;
  z-index: 98;
}

#line-banner a {
  display: block;
  max-width: 652px;
  margin: 0 auto;
}

#line-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* 検索項目の開閉用スタイル */
.toggle-icon {
    color: #999;
    transition: transform 0.3s ease;
	margin-top:20px;
}

.toggle-icon i {
    font-size: 14px;
}

.search-section-header:hover .toggle-icon {
    color: #666;
}

.search-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.search-section-content.open {
    max-height: 1000px;
}

.search-section {
    position: relative;
}

.search-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}