/* <!-- ### Enjoy Eating コラム CSS #### --> */

/*------------------------------------
SP/PC切り替え
------------------------------------*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.PC-CSS { display: inline-block !important; }
.SP-CSS { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width:599px) {
.PC-CSS { display: none !important; }
.SP-CSS { display: inline-block !important;}
.SP-none{ display: none !important; }
}

@media screen and (max-width: 480px) {
    .sideBnr {
        position: fixed;
        right: unset;
        top: unset;
        bottom: 10px;
        width: 95%;
		display:none;
    }
}

.breadCrumb {
	margin-bottom: 0px;
	border-bottom:1px solid #FFF;
}

.ee-column-title {
	background: #fcf6e6;
	color: #3f3936;
	text-align: center;
	padding: 36px 0 44px;
	margin-top: 115px;
}

.ee-column-title h2 {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.ee-column-title h2 img {
	width: 560px;
	height: auto;
}

.ee-catchphrase {
	display: inline-block;
	background: white;
	color: #3f3936;
	padding: 12px 32px;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	position: relative;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(63, 57, 54, 0.15);
}

.ee-catchphrase::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid white;
}

.ee-column-description {
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 auto;
	text-align: center;
	font-weight: 600;
    
}

.ee-category-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
    width: 100%;
    padding:10px 0;
    background-color: #ffdd84;
}

.ee-category-nav a {
	background: #fff6dc;
	border: 2px solid #ff9d49;
	color: #ff9d49;
	padding: 12px 24px;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 0.95rem;
    line-height: 1;
	text-decoration: none;
	display: inline-block;
}

.ee-category-nav a:hover,
.ee-category-nav a.active {
	background: #ff9d49;
    color: #FFF;
}

/* カテゴリーページ タイトル・説明文 */
.ee-category-page-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	color: #3f3936;
	font-weight: bold;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 3px solid #ff9d49;
}

.ee-category-page-title img {
	width: 32px;
	height: 32px;
	display: block;
}

.ee-category-description {
	line-height: 1.6;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-radius: 8px;
}

/* 記事ページ ヘッダータイトル */
.ee-article-header-title {
	background: #fcf6e6;
	padding: 20px 0;
	width: 100%;
}

.ee-article-header-title .w1080 {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    text-align: left;
    margin: 0 auto;
    width: 1080px;
}

.ee-article-header-title img {
	width: 200px;
	height: auto;
}

.ee-article-header-title p {
	font-size: 0.9rem;
	color: #3f3936;
	font-weight: 600;
	margin: 0;
	line-height: 1.5;
}

/* 記事ページ パンくずリスト */

.ee-article-breadCrumb .breadCrumb{
background-color: #ffefc4;
margin-bottom: 2rem;
}

/* 記事詳細ページ CSS */
.ee-article-detail {
	max-width: 800px;
	margin: 0 auto 3rem;
	padding: 40px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ee-article-header {
	margin-bottom: 40px;
}

.ee-article-title {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	margin: 25px 0;
}

.ee-article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 15px;
}

.ee-article-tag {
	background: linear-gradient(45deg, #ff9d49, #ffb366);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.ee-article-dates {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.ee-article-date {
	color: #666;
	font-size: 0.85rem;
}

.ee-article-title {
	font-size: 2rem;
	font-weight: bold;
	color: #333;
	line-height: 1.4;
	margin-bottom: 30px;
}

.ee-article-eyecatch {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.ee-article-eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ee-article-body {
	line-height: 1.8;
	color: #333;
}

.ee-article-body p {
	margin-bottom: 20px;
	font-size: 1rem;
}

.ee-article-body h2 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin: 40px 0 20px 0;
    padding: 10px 15px;
    background: #ff9d49;
    border-radius: 8px;
    line-height: 1.35;
}

.ee-article-body h3 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	margin: 30px 0 20px 0;
    border-left: 5px solid #ff9d49;
    padding-left: 10px;
    line-height: 1.25;
}

.ee-article-body h4 {
	font-size: 1.1rem;
	font-weight: bold;
	color: #555;
	margin: 25px 0 10px 0;
}

.ee-article-body ul,
.ee-article-body ol {
	margin-bottom: 25px;
	padding-left: 25px;
}

.ee-article-body ul li {
	position: relative;
	list-style: none;
	margin-bottom: 8px;
	padding-left: 15px;
}

.ee-article-body ul li::before {
    content: "●";
    color: #fbddc2;
    position: absolute;
    left: -11px;
    font-size: 14px;
    top: 1px;
}

.ee-article-body ol li {
	position: relative;
	margin-bottom: 8px;
	padding-left: 10px;
}

.ee-article-body ol {
	counter-reset: ol-counter;
}

.ee-article-body ol li::before {
	counter-increment: ol-counter;
	content: counter(ol-counter) ".";
	color: #ff9d49;
	font-weight: bold;
	position: absolute;
	left: -25px;
	top: 0;
}

.ee-article-body strong {
	font-weight: bold;
	color: #333;
}

.ee-article-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.ee-article-body blockquote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.ee-article-body blockquote p{
    margin-bottom: 0;
}

.ee-article-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ee-article-body th,
.ee-article-body td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.ee-article-body th {
	background: linear-gradient(135deg, #ff9d49, #ffb366);
	color: white;
	font-weight: 600;
}

.ee-article-body tr:hover {
	background-color: #f8f9fa;
}

/* 記事本文内のリンクスタイル */
.ee-article-body a {
	color: #ff6900;
	text-decoration: underline;
}

.ee-article-body a:hover {
	text-decoration: none;
}

/* 注釈スタイル */
.ee-note {
	background-color: #F1F1F1;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 0.8rem;
	line-height: 1.7;
	margin: 20px 0;
}

/* 上付き文字スタイル */
sup {
	font-size: 0.7rem;
    color: #555;
}

.ee-seasonal-foods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 25px 0;
}

.season-item {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #ffb366;
}

.season-item h4 {
	color: #ff9d49;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.season-item p {
	margin: 0;
	font-size: 0.95rem;
}

.ee-recipe {
	background: #fff8f0;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	margin: 25px 0;
}

.ee-recipe h3 {
	color: #d2691e;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.ee-recipe h4 {
	color: #8b4513;
	font-size: 1.1rem;
	margin-bottom: 10px;
	margin-top: 20px;
}

.ee-recipe ul,
.ee-recipe ol {
	background: white;
	padding: 15px 25px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.ee-article-cta {
	background: linear-gradient(135deg, #ff9d49, #ffb366);
	color: white;
	padding: 25px;
	border-radius: 12px;
	margin-top: 30px;
	text-align: center;
}

.ee-article-cta p {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.ee-article-detail {
		padding: 0;
		margin:0;
        box-shadow: none;
	}

	.ee-article-title {
		font-size: 6vw;
		line-height: 1.3;
	}

    .ee-article-header {
    margin-bottom: 5vw;
    }

	.ee-article-body {
		padding: 0;
	}

.ee-article-breadCrumb .breadCrumb{
    margin-bottom: 5vw;
    }

	.ee-article-body p {
		font-size: 4vw;
		line-height: 1.7;
	}

	.ee-article-body h2 {
		font-size: 5vw;
		margin: 6vw 0 4vw 0;
	}

	.ee-article-body h3 {
		font-size: 4.5vw;
		margin: 5vw 0 3vw 0;
	}

	.ee-article-body h4 {
		font-size: 4vw;
		margin: 4vw 0 2vw 0;
	}

	.ee-article-body blockquote {
		font-size: 3.5vw;
		padding: 4vw;
		margin: 4vw 0;
	}

	.ee-article-body li {
		font-size: 4vw;
		margin-bottom: 2vw;
	}

	.ee-article-meta {
		flex-direction: column;
		align-items: flex-start;
        margin-bottom: 2vw;
	}

	.ee-article-tag {
		font-size: 3vw;
		padding: 2vw 3vw;
	}

	.ee-article-date {
		font-size: 3vw;
	}

	.ee-article-eyecatch img {
		height: 100%;
	}

	.ee-seasonal-foods {
		grid-template-columns: 1fr;
	}

	.ee-article-section h2 {
		font-size: 1.4rem;
	}

	.ee-article-section h3 {
		font-size: 1.2rem;
	}

	.ee-recipe {
		padding: 20px 15px;
	}
}

.ee-articles-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 30px;
	margin-bottom: 40px;
	max-width: 1200px;
	margin: 0 auto 40px auto;
}

.ee-article-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.ee-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ee-article-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
}

.ee-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ee-article-card:hover .ee-article-image img {
	transform: scale(1.05);
}

.ee-article-tag {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(0, 175, 152, 0.9);
	color: white;
	padding: 0.3em 1em 0.4em;
    border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
}



/* カテゴリー別のタグ色 */
.ee-article-card[data-category="home-cooking"] .ee-article-tag,
.ee-article-tag[data-category="home-cooking"] {
	background: rgb(223, 145, 22);
}

.ee-article-card[data-category="pneumonia-prevention"] .ee-article-tag,
.ee-article-tag[data-category="pneumonia-prevention"] {
	background: rgba(255, 126, 64);
}

.ee-article-card[data-category="resident-stories"] .ee-article-tag,
.ee-article-tag[data-category="resident-stories"] {
	background: rgb(247, 88, 93);
}

.ee-article-card[data-category="other"] .ee-article-tag,
.ee-article-tag[data-category="other"] {
	background: rgba(0, 175, 152);
}


.ee-article-detail .ee-article-tag {
	position:static;
    font-size: 1rem;
    border-radius: 100px;
    padding: 2px 1em;
}

.ee-article-content {
	padding: 20px;
}

.ee-article-dates {
	display: flex;
	gap: 12px;
	margin-bottom: 6px;
	font-size: 0.7rem;
	color: #aaa;
}

.ee-article-date {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ee-article-date::before {
	content: '';
	width: 12px;
	height: 12px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.6;
}

.ee-article-date.post-date::before {
	background-image: url('../img/enjoy/ee-column_icon_posted_at.svg');
}

.ee-article-date.edit-date::before {
	background-image: url('../img/enjoy/ee-column_icon_updated_at.svg');
}

.ee-article-title {
	font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 10px 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.ee-article-detail .ee-article-title {
	font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: none;
}

.ee-article-link {
	color: #ff9d49;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	transition: color 0.3s ease;
	position: absolute;
	bottom: 12px;
	right: 12px;
}

.ee-article-link:hover {
	color: #e68a3a;
}

.ee-article-link::after {
	content: '→';
	transition: transform 0.3s ease;
}

.ee-article-link:hover::after {
	transform: translateX(2px);
}

/* おすすめ記事セクション */
.ee-recommended-section {
	margin: 60px auto;
	max-width: 1200px;
}

.ee-recommended-section .ee-section-title {
	font-size: 2rem!important;
	font-weight: bold;
	text-align: center;
	color: #333;
	margin-bottom: 40px;
	position: relative;
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
}

.ee-recommended-section .ee-section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: linear-gradient(45deg, #ff9d49, #ffb366);
	margin: 15px auto 0;
	border-radius: 2px;
}

.ee-recommended-section .ee-articles-grid {
/* 	grid-template-columns: repeat(3, 1fr) !important; */
}

@media (max-width: 1024px) {
	.ee-articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.ee-column-title {
		margin-top: 77px;
        padding: 6vw 7vw 8vw;
	}
	
	.ee-column-title h2 {
		font-size: 2.2rem;
        margin-bottom: 3vw;
	}
	
	.ee-column-title h2 img {
		width: 100%;
		height: auto;
	}
	
	.ee-catchphrase {
		font-size: 3.8vw;
        box-shadow: 0 1px 12px rgb(187 171 132 / 15%);
        margin-bottom: 5vw;
        padding: 2vw 6vw;
	}
	
	.ee-category-nav {
		padding: 0;
	}
	
	.ee-articles-grid {
		grid-template-columns: 1fr !important;
		gap: 4vw;
		padding: 0;
		max-width: 100%;
        margin: 0 auto 0px auto;
	}

.ee-article-content {
    padding: 3vw 5vw 2vw 5vw;
}

.ee-column-description {
    font-size: 3.4vw;
    line-height: 1.45;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
}

	.ee-article-card {
		width: 100%;
		margin-bottom: 4vw;
	}

    .ee-article-title {
    font-size: 4.7vw;
    margin: 3vw 0;}

}

/* 施設募集セクション */
.ee-facility-recruit {
    background: #fcf8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 60px 0;
    text-align: center;
}

.ee-facility-title {
    font-size: 1.3rem!important;
    font-weight: bold;
    color: #ff9d49;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0!important;
    text-align: left;
}

.ee-facility-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
}

.ee-facility-btn {
    display: inline-block;
    background: #ff9d49;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 157, 73, 0.3);
}

.ee-facility-btn:hover {
    background: #e68a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 157, 73, 0.4);
    color: white;
}

/* Contact Section */
.ee-contact-section {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.ee-contact-lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ff9d49;
    text-align: center;
}

.ee-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ee-contact-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 280px;
    box-sizing: border-box;
    white-space: nowrap;
}

.ee-btn-facility {
    background: #F39800;
    color: #fff;
    border: 2px solid #F39800;
}

.ee-btn-facility:hover {
    background: #fff;
    color: #F39800;
}

.ee-btn-eating {
    background: #fff;
    color: #ff9d49;
    border: 2px solid #ff9d49;
}

.ee-btn-eating:hover {
    background: #ff9d49;
    color: #fff;
}

.ee-contact-tel {
    background: #fff;
    display: inline-block;
    padding: 15px 0;
    border-radius: 8px;
    line-height: 1;
    border: 1px solid #eee;
    width: 100%;
}

.ee-tel-label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.ee-tel-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
}

.ee-tel-icon {
    width: 1em;
    height: auto;
    vertical-align: middle;
    transform: translateY(-2px);
}

.ee-tel-time {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Layout - Main & Sidebar */
.ee-layout-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.ee-main-column {
    width: calc(100% - 340px);
}

.ee-sidebar-column {
    width: 300px;
    flex-shrink: 0;
}

/* Sidebar Recommended Articles */
.ee-sidebar-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9d49;
    color: #333;
}

.ee-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.ee-sidebar-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ee-sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ee-sidebar-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ee-sidebar-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.ee-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ee-sidebar-image .ee-article-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
}

.ee-sidebar-card:hover .ee-sidebar-image img {
    transform: scale(1.05);
}

.ee-sidebar-content {
    padding: 15px;
}

.ee-sidebar-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.ee-sidebar-article-title {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar Banner */
.ee-sidebar-banner {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.ee-sidebar-banner a {
    display: block;
}

.ee-sidebar-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ee-sidebar-banner a:hover img {
    transform: scale(1.05);
}

/* Sidebar Title */
.ee-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #3f3936;
}

.ee-sidebar-title img {
    width: 30px;
    height: 30px;
    display: block;
}

/* Sidebar Categories */
.ee-sidebar-categories {
    background: #fff;
    border-radius: 8px;
    padding: 20px 20px 15px 20px;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.1);
}

.ee-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ee-category-list li {
    border-bottom: 1px solid #eee;
}

.ee-category-list li:last-child {
    border-bottom: none;
}

.ee-category-list a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.ee-category-list a::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    color: #ff9d49;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.ee-category-list a:hover {
    color: #ff9d49;
    padding-left: 25px;
}

.ee-category-list a:hover::before {
    transform: translateX(5px);
}

/* Sidebar About Section */
.ee-sidebar-about {
    background: #fcf6e6;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

/* Sidebar Recommended Section */
.ee-sidebar-recommended {
    margin-top: 30px;
}

/* Author Info Section */
.ee-author-info {
    border: 1px solid #ffceab;
    border-radius: 12px;
    padding: 20px;
    margin: 40px 0;
}

.ee-author-header {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 20px;
    align-items: center;
}

.ee-author-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.ee-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ee-author-basic {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ee-author-basic-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ee-author-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #ff9d49;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.ee-author-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3f3936;
    margin: 0;
}

.ee-author-position {
    font-size: 1rem;
    color: #ff9d49;
    font-weight: 600;
    margin: 0;
}

.ee-author-credentials {
    line-height: 1.4;
}

.ee-author-qualifications {
    font-size: 0.9rem;
    color: #3f3936;
    margin-bottom: 5px;
}

.ee-author-bio {
    font-size: 0.9rem;
    color: #3f3936;
    line-height: 1.65;
}

.ee-sidebar-about .ee-catchphrase {
        display: inline-block;
    background: white;
    color: #3f3936;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 0px;
    box-shadow: 0 2px 8px rgba(63, 57, 54, 0.1);
}

.ee-sidebar-about .ee-catchphrase::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.ee-sidebar-about h3 {
    margin: 15px 0;
}

.ee-sidebar-about h3 img {
    width: 100%;
    height: auto;
    max-width: 280px;
}

.ee-sidebar-about p {
    font-size: 0.8rem;
    line-height: 1.65;
    color: #3f3936;
    text-align: left;
    margin: 15px 0 0 0;
}

/* Index Page Column Section */
.ee-column-section {
    background: #fcf6e6;
    padding: 60px 0;
    margin: 80px 0 0;
}

.ee-column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ee-column-header img.enjoy_eating-title {
    width: 450px;
    max-width: 45%;
    height: auto;
    flex-shrink: 0;
}

.ee-column-header-text {
    flex: 1;
    text-align: left;
}

.ee-column-header-text h3 {
    font-size: 1.5rem;
    color: #3f3936;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.ee-column-header-text p {
    font-size: 1rem;
    color: #3f3936;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.ee-column-header-text p:last-child {
    margin-bottom: 0;
}

.ee-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    background: #27a5a4;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    float: right;
    clear: both;
}

.ee-detail-link:hover {
    background: #e68a3a;
    color: white;
    transform: translateY(-2px);
}

.ee-column-subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFF;
    margin: 40px auto;
    padding: 8px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    background: #ffc94a;
    border-radius: 500px;
}

.ee-subtitle-icon-left,
.ee-subtitle-icon-right {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.ee-subtitle-icon-left{
    transform: rotate(-15deg);
}

.ee-subtitle-icon-right{
    transform: rotate(15deg);
}

.ee-column-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffc94a;
}

.ee-column-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ee-column-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ee-column-more {
    text-align: center;
    margin-top: 40px;
}

.ee-more-link {
    display: inline-block;
    background: #ff9d49;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 157, 73, 0.3);
}

.ee-more-link:hover {
    background: #e68a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 157, 73, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .ee-facility-recruit {
        padding: 6vw;
        margin: 8vw 0;
    }
    .ee-facility-title {
        font-size: 5vw;
    }
    .ee-facility-text {
        font-size: 3.8vw;
    }
    .ee-facility-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 4vw;
        font-size: 4vw;
    }

/* 記事ページ ヘッダータイトル モバイル */
.ee-article-header-title {
	padding: 4vw 0 2vw;
}

.ee-article-header-title .w1080 {
	flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1vw;
        width: 100%;
}

.ee-article-header-title img {
	width: 60vw;
	max-width: 300px;
}

.ee-article-header-title p {
	font-size: 3vw;
}

/* カテゴリーページ タイトル・説明文 モバイル */
.ee-category-page-title {
	gap: 2vw;
	font-size: 6vw;
	margin-bottom: 4vw;
	padding-bottom: 2vw;
	border-bottom-width: 2px;
}

.ee-category-page-title img {
	width: 6vw;
	height: 6vw;
}

.ee-category-description {
	font-size: 3.8vw;
	line-height: 1.7;
	margin-bottom: 6vw;
	padding: 0;
}

.ee-article-detail .ee-article-title {
	font-size: 6vw;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 3vw;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.ee-category-nav {
    display: flex;
    justify-content: left;
    gap: 3vw;
    margin-bottom: 6vw;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding:3vw;
    box-sizing: border-box;
}

.ee-category-nav::-webkit-scrollbar {
    display: none;
}

.ee-category-nav a {
    padding: 2vw 3vw 2vw;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 3.8vw;
    white-space: nowrap;
    line-height: 1;
    border: 1px solid #ff9d49;
	text-decoration: none;
	display: inline-block;
}


    /* Contact Section Mobile */
    .ee-contact-section {
        padding: 6vw;
        margin: 8vw 0;
    }

    .ee-contact-lead {
        font-size: 3.8vw;
        margin-bottom: 6vw;
        text-align: left;
    }

    .ee-contact-buttons {
        flex-direction: column;
        gap: 4vw;
    }

    .ee-contact-btn {
        width: 100%;
        padding: 4vw;
        font-size: 3.8vw;
        text-align: center;
    }

    .ee-contact-tel {
        width: 100%;
        box-sizing: border-box;
        padding: 6vw;
    }

    .ee-tel-label {
        font-size: 3.2vw;
    }

    .ee-tel-number {
        font-size: 8vw;
    }

    .ee-tel-time {
        font-size: 3vw;
    }

    /* Layout Mobile */
    .ee-layout-container {
        flex-direction: column;
        gap: 0;
    }

    .ee-main-column {
        width: 100%;
    }

    .ee-sidebar-column {
        width: 100%;
        margin-top: 8vw;
    }

    .ee-sidebar-title {
        font-size: 5vw;
        margin-bottom: 4vw;
        border-bottom-width: 1px;
    }

    .ee-sidebar-list {
        gap: 4vw;
    }

    .ee-sidebar-card {
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .ee-sidebar-content {
        padding: 4vw;
    }

    .ee-sidebar-date {
        font-size: 3vw;
        margin-bottom: 1vw;
    }

    .ee-sidebar-article-title {
        font-size: 3.8vw;
    }

    /* Sidebar Banner Mobile */
    .ee-sidebar-banner {
        margin-bottom: 6vw;
    }

    /* Sidebar Categories Mobile */
    .ee-sidebar-categories {
        padding: 4vw;
    }

    .ee-category-list a {
        font-size: 3.8vw;
        padding: 3vw 0 3vw 5vw;
    }

    .ee-category-list a:hover {
        padding-left: 6vw;
    }

    /* Sidebar About Mobile */
    .ee-sidebar-about {
        padding: 5vw;
        margin-top: 6vw;
    }

    .ee-sidebar-about .ee-catchphrase {
        font-size: 3.5vw;
        padding: 2vw 5vw;
        margin-bottom: 4vw;
    }

    .ee-sidebar-about h3 {
        margin: 4vw 0;
    }

    .ee-sidebar-about p {
        font-size: 3.5vw;
        line-height: 1.6;
        margin-top: 4vw;
    }

    /* Author Info Mobile */
    .ee-author-info {
        padding: 5vw;
    }

    .ee-author-header {
        gap: 3vw;
        margin-bottom: 4vw;
    }

    .ee-author-photo {
        width: 25vw;
        height: 25vw;
    }

    .ee-author-basic {
        gap: 1.5vw;
    }

    .ee-author-basic-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5vw;
    }

    .ee-author-title {
        font-size: 3vw;
        padding: 1vw 3vw;
    }

    .ee-author-name {
        font-size: 5vw;
    }

    .ee-author-position {
        font-size: 4vw;
    }

    .ee-author-qualifications,
    .ee-author-bio {
        font-size: 3.5vw;
    }

    /* Index Page Column Section Mobile */
    .ee-column-section {
        padding: 8vw 0;
        margin: 10vw 0 0;
    }

    .ee-column-header {
        flex-direction: column;
        margin-bottom: 6vw;
        padding: 0 4vw;
        gap: 4vw;
    }

    .ee-column-header img.enjoy_eating-title {
        width: 90%;
        max-width: 100%;
    }

    .ee-column-header-text {
        text-align: left;
    }

    .ee-column-header-text h3 {
        font-size: 4vw;
        line-height: 1.55;
        margin: 0 0 4vw 0;
    }

    .ee-column-header-text p {
        font-size: 3.4vw;
        line-height: 1.65;
        margin: 0 0 3vw 0;
    }

    .ee-column-header-text p:last-child {
        margin-bottom: 0;
    }

    .ee-detail-link {
        font-size: 3.8vw;
        margin-top: 0;
        padding: 3vw 8vw;
        float: right;
    }

    .ee-column-subtitle {
        font-size: 5.8vw;
        margin: 6vw auto;
        padding: 2vw 0;
        width: 90%;
        gap: 2vw;
    }

    .ee-subtitle-icon-left,
    .ee-subtitle-icon-right {
        width: 8vw;
        height: 8vw;
    }

    .ee-column-subtitle::after {
        bottom: -3vw;
        border-left-width: 3vw;
        border-right-width: 3vw;
        border-top-width: 4vw;
    }

    .ee-column-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0;
        margin: 0;
    }

    .ee-column-slider::-webkit-scrollbar {
        display: none;
    }

    .ee-column-articles {
        display: flex;
        gap: 4vw;
        padding: 0 4vw;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
    }

    .ee-column-articles .ee-article-card {
        flex: 0 0 90vw;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .ee-column-more {
        margin-top: 6vw;
        padding: 0 4vw;
    }

    .ee-more-link {
        width: 100%;
        box-sizing: border-box;
        padding: 4vw;
        font-size: 4vw;
    }
}



