@charset "utf-8";

/* =========================================================================
   nicorico - TreeHouse Cafe
   ========================================================================= */

/* --- Variables --- */
:root {
	--color-bg-main: #d6cfc7; /* Milk latte gray-beige for outer bg */
	--color-bg-dark: #3c2d26; /* Original dark brown */
	--color-text-main: #332b26; /* Dark brown text */
	--color-text-light: #f8f8f8;
	--color-accent: #e67300; /* Original orange/brown accent */
	--color-accent-hover: #ff8811;
	--color-green: #4a7c59; /* Tree/nature green */
	--color-border: #c2b5a3;
	--font-base: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

/* --- Base --- */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-base);
	background-color: var(--color-bg-main);
	color: var(--color-text-main);
	line-height: 1.6;
}

a {
	color: var(--color-green);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

/* --- Layout Containers --- */
.main-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	background-color: #f2ebe1; /* Calm beige */
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

section {
	padding: 40px 0;
	text-align: center;
	border-bottom: 1px dashed var(--color-border);
}

section:last-of-type {
	border-bottom: none;
}

/* --- Typography --- */
h2 {
	color: var(--color-green);
	font-size: 2rem;
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--color-accent);
	border-radius: 2px;
}

.responsive-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 20px;
	border-radius: 8px;
}

.small-img {
	max-width: 560px;
}

/* --- Hero Section --- */
.hero-section {
	padding-top: 0;
	padding-bottom: 20px;
	position: relative;
}

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

.notice-box {
	background-color: var(--color-bg-dark);
	color: var(--color-text-light);
	padding: 20px;
	margin-top: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.notice-box h2 {
	color: var(--color-text-light);
	font-size: 1.5rem;
	margin: 0 0 10px 0;
}

.notice-box h2::after {
	display: none;
}

.notice-box p {
	font-size: 1.25rem;
	margin: 0;
	font-weight: bold;
}

/* --- Greeting Section --- */
.greeting-section {
	padding: 20px 0 30px;
}

/* --- Feature Section --- */
.feature-adomachi {
	margin-bottom: 40px;
}

.feature-details img {
	margin-bottom: 20px;
}

/* --- Gallery Section --- */
.hpb-photomotion {
	margin: 0 auto;
	max-width: 100%;
}
.gallery-img {
	width: 100%;
	max-width: 400px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	transition: transform 0.3s ease;
	cursor: pointer;
}
.gallery-img:hover {
	transform: scale(1.05);
}

/* --- Media Section --- */
.media-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 800px;
	text-align: left;
	font-size: 1.2rem;
}

.media-list li {
	padding: 15px 0;
	border-bottom: 1px dashed var(--color-border);
}

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

.media-list a {
	font-weight: bold;
}

/* --- Guests Section --- */
.guests-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.guest-block {
	flex: 1 1 calc(50% - 20px);
	min-width: 0;
	margin-bottom: 30px;
}

.guest-block h2 {
	font-size: 1.2rem;
	word-break: auto-phrase;
}

.guest-block img {
	width: 100%;
	max-width: 560px;
	height: auto;
}

.youtube-block {
	margin-top: 20px;
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 20px auto 0;
}

.youtube-block iframe {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Access Section --- */
.access-section {
	background-color: var(--color-bg-dark);
	color: #ffffff;
	margin: 0 -20px;
	padding: 60px 20px;
	border-bottom: none;
}

.access-section h2 {
	color: #fff;
}

.access-section h2::after {
	background-color: var(--color-green);
}

.access-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
}

.access-info {
	flex: 1;
	min-width: 350px;
	font-size: 1.1rem;
}

.access-info h3 {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.access-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
	font-size: 1rem;
}

.access-table th, .access-table td {
	padding: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	text-align: left;
	vertical-align: middle;
}

.access-table th {
	width: 25%;
	color: #d6cfc7;
	font-weight: normal;
	white-space: nowrap;
}

.phone {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-accent);
}

.small-text {
	font-size: 0.85rem;
}

.notice-text {
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: normal;
}

.access-info a {
	color: var(--color-accent);
}

.access-info a:hover {
	color: #fff;
}

.btn {
	display: inline-block;
	background-color: var(--color-green);
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 4px;
	margin: 10px 0;
	text-decoration: none !important;
}

.btn:hover {
	background-color: #3b6347;
}

.access-map {
	flex: 1;
	min-width: 300px;
}

.map-img {
	width: 100%;
	border: 4px solid #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-transport-info {
	margin-top: 15px;
	text-align: center;
}

.map-transport-info p {
	margin: 5px 0;
}

/* --- Footer --- */
.site-footer {
	background-color: #2b1f1a;
	color: #999;
	text-align: center;
	padding: 30px 20px;
}

.site-footer p {
	margin: 5px 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	h2 {
		font-size: 1.5rem;
	}
	.media-list {
		font-size: 1rem;
	}
	.access-container {
		flex-direction: column;
	}
	.access-section {
		padding: 40px 20px;
	}
	.hero-image {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: -20px;
		max-width: none;
	}
	.notice-box h2 {
		font-size: 1.25rem;
	}
	.notice-box p {
		font-size: 1.05rem;
	}
	.greeting-section .responsive-img {
		width: 100%;
	}
}
