* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
line-height: 1.8;
color: #2c2c2c;
background-color: #fafafa;
font-size: 16px;
}

.main-header-wrapper {
background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
position: sticky;
top: 0;
z-index: 1000;
}

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

.brand-logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.site-logo-image {
border-radius: 50%;
border: 3px solid #ffffff;
object-fit: cover;
}

.site-main-title {
font-size: 26px;
color: #ffffff;
font-weight: 700;
letter-spacing: 1px;
}

.primary-navigation-menu {
flex-grow: 1;
display: flex;
justify-content: center;
}

.nav-menu-list {
list-style: none;
display: flex;
gap: 35px;
}

.nav-link-item {
color: #ffffff;
text-decoration: none;
font-size: 17px;
font-weight: 600;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
}

.nav-link-item:hover {
background-color: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
}

.nav-link-item.active-page {
background-color: rgba(255, 255, 255, 0.25);
}

.font-control-button {
background-color: #ffffff;
color: #d32f2f;
border: none;
padding: 10px 18px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.font-control-button:hover {
background-color: #ffebee;
transform: scale(1.05);
}

.hero-banner-section {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/1.jpg');
background-size: cover;
background-position: center;
min-height: 520px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #ffffff;
position: relative;
}

.hero-content-overlay {
max-width: 900px;
padding: 40px;
}

.hero-main-heading {
font-size: 52px;
margin-bottom: 25px;
font-weight: 800;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subheading-text {
font-size: 22px;
margin-bottom: 35px;
line-height: 1.6;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-cta-button {
display: inline-block;
background-color: #d32f2f;
color: #ffffff;
padding: 16px 40px;
text-decoration: none;
border-radius: 50px;
font-size: 18px;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.hero-cta-button:hover {
background-color: #b71c1c;
transform: translateY(-4px);
box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
}

.main-content-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 60px 30px;
}

.section-container-width {
max-width: 1200px;
margin: 0 auto;
}

.featured-posts-section {
padding: 60px 0;
}

.section-heading-title {
font-size: 38px;
margin-bottom: 45px;
text-align: center;
color: #d32f2f;
font-weight: 700;
position: relative;
padding-bottom: 20px;
}

.section-heading-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background-color: #d32f2f;
border-radius: 2px;
}

.posts-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 35px;
}

.post-card-item {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.post-card-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-thumbnail-image {
width: 100%;
height: 280px;
object-fit: cover;
}

.post-card-content {
padding: 28px;
}

.post-card-title {
font-size: 22px;
margin-bottom: 16px;
color: #2c2c2c;
font-weight: 700;
line-height: 1.4;
}

.post-excerpt-text {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.read-more-link {
color: #d32f2f;
text-decoration: none;
font-weight: 700;
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
}

.read-more-link:hover {
color: #b71c1c;
transform: translateX(5px);
}

.expert-interview-section {
background-color: #fff3e0;
padding: 60px 0;
margin: 60px 0;
border-radius: 12px;
}

.interview-content-box {
display: flex;
gap: 40px;
align-items: flex-start;
flex-wrap: wrap;
}

.expert-photo-image {
border-radius: 12px;
object-fit: cover;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interview-text-content {
flex: 1;
min-width: 300px;
}

.expert-name-title {
font-size: 28px;
color: #d32f2f;
margin-bottom: 10px;
font-weight: 700;
}

.expert-role-subtitle {
font-size: 18px;
color: #666;
margin-bottom: 25px;
font-style: italic;
}

.expert-quote-block {
background-color: #ffffff;
padding: 25px;
border-left: 5px solid #d32f2f;
margin: 25px 0;
border-radius: 8px;
font-style: italic;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.interview-question-text {
margin-top: 25px;
margin-bottom: 12px;
font-size: 18px;
}

.interview-answer-text {
line-height: 1.8;
color: #555;
}

.regional-cuisine-section {
padding: 60px 0;
}

.regions-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.region-card-box {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.region-card-box:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.region-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.region-name-title {
padding: 25px 25px 15px;
font-size: 24px;
color: #d32f2f;
font-weight: 700;
}

.region-description-text {
padding: 0 25px 25px;
color: #666;
line-height: 1.7;
}

.services-info-section {
background-color: #f5f5f5;
padding: 60px 0;
margin: 60px 0;
border-radius: 12px;
}

.services-grid-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.service-item-box {
background: #ffffff;
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

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

.service-icon-symbol {
font-size: 48px;
display: block;
margin-bottom: 20px;
}

.service-item-box h3 {
font-size: 22px;
margin-bottom: 15px;
color: #d32f2f;
font-weight: 700;
}

.service-item-box p {
color: #666;
line-height: 1.7;
}

.faq-section-wrapper {
padding: 60px 0;
}

.faq-list-container {
max-width: 900px;
margin: 0 auto;
}

.faq-item-block {
background: #ffffff;
padding: 30px;
margin-bottom: 20px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
border-left: 5px solid #d32f2f;
}

.faq-question-title {
font-size: 20px;
margin-bottom: 15px;
color: #d32f2f;
font-weight: 700;
}

.faq-answer-text {
color: #666;
line-height: 1.8;
}

.site-footer-section {
background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
color: #ffffff;
padding: 60px 30px 30px;
margin-top: 80px;
}

.footer-content-container {
max-width: 1400px;
margin: 0 auto;
}

.footer-columns-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-column-block {
}

.footer-heading-title {
font-size: 20px;
margin-bottom: 20px;
color: #ffffff;
font-weight: 700;
}

.footer-description-text {
color: #cccccc;
line-height: 1.7;
margin-bottom: 15px;
}

.footer-reg-number {
color: #999999;
font-size: 14px;
}

.footer-links-list {
list-style: none;
}

.footer-links-list li {
margin-bottom: 12px;
}

.footer-link-item {
color: #cccccc;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-link-item:hover {
color: #d32f2f;
}

.footer-contact-info {
color: #cccccc;
margin-bottom: 12px;
line-height: 1.7;
}

.footer-bottom-bar {
border-top: 1px solid #444444;
padding-top: 25px;
text-align: center;
}

.copyright-text {
color: #999999;
font-size: 14px;
}

.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(44, 44, 44, 0.98);
color: #ffffff;
padding: 25px;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
z-index: 10000;
display: none;
}

.cookie-consent-banner.show-banner {
display: block;
animation: slideUpBanner 0.5s ease;
}

@keyframes slideUpBanner {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-banner-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.cookie-banner-text {
flex: 1;
min-width: 300px;
line-height: 1.7;
}

.cookie-policy-link {
color: #ffab91;
text-decoration: underline;
}

.cookie-banner-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 25px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-accept-btn {
background-color: #d32f2f;
color: #ffffff;
}

.cookie-accept-btn:hover {
background-color: #b71c1c;
transform: scale(1.05);
}

.cookie-customize-btn {
background-color: #757575;
color: #ffffff;
}

.cookie-customize-btn:hover {
background-color: #616161;
}

.cookie-reject-btn {
background-color: transparent;
color: #ffffff;
border: 2px solid #ffffff;
}

.cookie-reject-btn:hover {
background-color: rgba(255, 255, 255, 0.1);
}

.page-title-section {
background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
padding: 80px 30px;
text-align: center;
color: #ffffff;
margin-bottom: 60px;
}

.page-main-heading {
font-size: 48px;
margin-bottom: 20px;
font-weight: 800;
}

.page-subtitle-text {
font-size: 20px;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.blog-page-layout {
}

.blog-posts-listing {
display: flex;
flex-direction: column;
gap: 50px;
}

.blog-post-card-full {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.blog-post-card-full:hover {
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-image-large {
width: 100%;
height: 450px;
object-fit: cover;
}

.blog-post-details {
padding: 25px 35px 0;
display: flex;
gap: 20px;
align-items: center;
}

.post-date-label {
color: #999;
font-size: 14px;
}

.post-category-tag {
background-color: #d32f2f;
color: #ffffff;
padding: 5px 15px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
}

.blog-post-heading {
padding: 20px 35px 0;
font-size: 32px;
color: #2c2c2c;
font-weight: 700;
line-height: 1.4;
}

.blog-post-excerpt-full {
padding: 20px 35px 35px;
color: #666;
line-height: 1.8;
font-size: 17px;
}

.blog-read-more-btn {
margin: 0 35px 35px;
display: inline-block;
background-color: #d32f2f;
color: #ffffff;
padding: 14px 35px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
transition: all 0.3s ease;
}

.blog-read-more-btn:hover {
background-color: #b71c1c;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.about-page-content {
}

.mission-statement-section {
padding: 40px 0 60px;
}

.mission-content-box {
max-width: 900px;
margin: 0 auto;
background: #ffffff;
padding: 50px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-heading {
font-size: 32px;
color: #d32f2f;
margin-bottom: 30px;
font-weight: 700;
text-align: center;
}

.mission-text-paragraph {
color: #666;
line-height: 1.9;
margin-bottom: 20px;
font-size: 17px;
}

.team-members-section {
padding: 60px 0;
}

.team-grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.team-member-card {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
text-align: center;
transition: all 0.3s ease;
}

.team-member-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member-card h3 {
padding: 25px 25px 10px;
font-size: 24px;
color: #2c2c2c;
font-weight: 700;
}

.member-position {
padding: 0 25px 15px;
color: #d32f2f;
font-weight: 600;
font-size: 16px;
}

.member-bio-text {
padding: 0 25px 30px;
color: #666;
line-height: 1.7;
}

.values-section {
padding: 60px 0;
background-color: #f5f5f5;
margin: 60px 0;
border-radius: 12px;
}

.values-grid-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.value-item-box {
background: #ffffff;
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-icon-display {
font-size: 48px;
display: block;
margin-bottom: 20px;
}

.value-item-box h4 {
font-size: 22px;
margin-bottom: 15px;
color: #d32f2f;
font-weight: 700;
}

.value-item-box p {
color: #666;
line-height: 1.7;
}

.company-info-section {
padding: 40px 0;
}

.company-details-box {
max-width: 800px;
margin: 0 auto;
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-details-box p {
margin-bottom: 15px;
line-height: 1.8;
color: #666;
}

.contact-page-layout {
}

.contact-content-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info-section {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
height: fit-content;
}

.contact-section-title {
font-size: 28px;
color: #d32f2f;
margin-bottom: 30px;
font-weight: 700;
}

.contact-details-list {
}

.contact-item-row {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}

.contact-icon-label {
font-size: 24px;
min-width: 30px;
}

.contact-text-info h4 {
font-size: 18px;
margin-bottom: 8px;
color: #2c2c2c;
font-weight: 700;
}

.contact-text-info p {
color: #666;
line-height: 1.7;
}

.business-hours-box {
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid #f0f0f0;
}

.business-hours-box h4 {
font-size: 20px;
margin-bottom: 15px;
color: #d32f2f;
font-weight: 700;
}

.business-hours-box p {
color: #666;
margin-bottom: 10px;
line-height: 1.7;
}

.contact-form-section {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
}

.form-group-item {
margin-bottom: 25px;
}

.form-label-text {
display: block;
margin-bottom: 10px;
font-weight: 600;
color: #2c2c2c;
font-size: 16px;
}

.form-input-field {
width: 100%;
padding: 14px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
transition: all 0.3s ease;
font-family: inherit;
}

.form-input-field:focus {
outline: none;
border-color: #d32f2f;
box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-textarea-field {
width: 100%;
padding: 14px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
resize: vertical;
font-family: inherit;
transition: all 0.3s ease;
}

.form-textarea-field:focus {
outline: none;
border-color: #d32f2f;
box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-submit-button {
background-color: #d32f2f;
color: #ffffff;
padding: 16px 40px;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}

.form-submit-button:hover {
background-color: #b71c1c;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.modal-overlay-background {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
}

.modal-overlay-background.show-modal {
display: flex;
justify-content: center;
align-items: center;
animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.modal-content-box {
background-color: #ffffff;
padding: 50px;
border-radius: 12px;
max-width: 500px;
text-align: center;
position: relative;
animation: slideDownModal 0.3s ease;
}

@keyframes slideDownModal {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.modal-close-button {
position: absolute;
top: 20px;
right: 25px;
font-size: 32px;
font-weight: bold;
color: #999;
cursor: pointer;
transition: color 0.3s ease;
}

.modal-close-button:hover {
color: #d32f2f;
}

.modal-heading-text {
font-size: 32px;
color: #d32f2f;
margin-bottom: 20px;
font-weight: 700;
}

.modal-message-text {
font-size: 18px;
color: #666;
line-height: 1.7;
}

.post-full-article-wrapper {
}

.post-header-section {
background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
padding: 60px 30px;
color: #ffffff;
margin-bottom: 0;
}

.post-title-main {
font-size: 44px;
margin-bottom: 25px;
font-weight: 800;
line-height: 1.3;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

.post-meta-information {
display: flex;
gap: 25px;
flex-wrap: wrap;
font-size: 15px;
max-width: 1000px;
margin: 0 auto;
}

.post-author-name {
}

.post-publish-date {
}

.post-category-badge {
background-color: rgba(255, 255, 255, 0.2);
padding: 5px 15px;
border-radius: 20px;
}

.post-featured-image-container {
max-width: 1400px;
margin: 0 auto;
}

.post-hero-image {
width: 100%;
height: 600px;
object-fit: cover;
}

.post-content-container {
max-width: 900px;
margin: 0 auto;
padding: 60px 30px;
}

.post-text-content {
background: #ffffff;
padding: 50px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-intro-paragraph {
font-size: 19px;
line-height: 1.9;
color: #555;
margin-bottom: 35px;
font-weight: 500;
}

.post-section-heading {
font-size: 30px;
color: #d32f2f;
margin-top: 45px;
margin-bottom: 20px;
font-weight: 700;
}

.post-subsection-heading {
font-size: 24px;
color: #2c2c2c;
margin-top: 30px;
margin-bottom: 15px;
font-weight: 700;
}

.post-text-content p {
line-height: 1.9;
margin-bottom: 20px;
color: #555;
font-size: 17px;
}

.post-navigation-links {
margin-top: 50px;
text-align: center;
}

.back-to-blog-link {
display: inline-block;
color: #d32f2f;
text-decoration: none;
font-size: 18px;
font-weight: 700;
padding: 14px 35px;
border: 2px solid #d32f2f;
border-radius: 8px;
transition: all 0.3s ease;
}

.back-to-blog-link:hover {
background-color: #d32f2f;
color: #ffffff;
transform: translateY(-2px);
}

@media (max-width: 1024px) {
.contact-content-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.header-top-container {
flex-direction: column;
gap: 20px;
}
.nav-menu-list {
flex-direction: column;
gap: 15px;
text-align: center;
}
.hero-main-heading {
font-size: 36px;
}
.hero-subheading-text {
font-size: 18px;
}
.posts-grid-layout {
grid-template-columns: 1fr;
}
.interview-content-box {
flex-direction: column;
}
.expert-photo-image {
width: 100%;
max-width: 400px;
margin: 0 auto;
}
.regions-grid-layout {
grid-template-columns: 1fr;
}
.services-grid-wrapper {
grid-template-columns: 1fr;
}
.team-grid-layout {
grid-template-columns: 1fr;
}
.values-grid-wrapper {
grid-template-columns: 1fr;
}
.cookie-banner-content {
flex-direction: column;
}
.cookie-banner-buttons {
width: 100%;
}
.cookie-btn {
flex: 1;
}
.page-main-heading {
font-size: 36px;
}
.blog-post-image-large {
height: 300px;
}
.post-title-main {
font-size: 32px;
}
.post-hero-image {
height: 350px;
}
.post-text-content {
padding: 30px;
}
}

@media (max-width: 480px) {
.site-main-title {
font-size: 20px;
}
.hero-main-heading {
font-size: 28px;
}
.section-heading-title {
font-size: 28px;
}
.post-card-title {
font-size: 19px;
}
.expert-name-title {
font-size: 24px;
}
.page-main-heading {
font-size: 28px;
}
.blog-post-heading {
font-size: 26px;
padding: 20px 25px 0;
}
.blog-post-excerpt-full {
padding: 20px 25px 25px;
}
.blog-read-more-btn {
margin: 0 25px 25px;
}
.post-title-main {
font-size: 26px;
}
.post-section-heading {
font-size: 24px;
}
.modal-content-box {
padding: 30px;
margin: 20px;
}
}